Spade

Mini Shell

Directory:~$ /proc/self/root/home/lmsyaran/public_html/administrator/components/com_hikashop/helpers/
Upload File

[Home] [System Details] [Kill Me]
Current File:~$ //proc/self/root/home/lmsyaran/public_html/administrator/components/com_hikashop/helpers/update.php

<?php
/**
 * @package	HikaShop for Joomla!
 * @version	2.2.3
 * @author	hikashop.com
 * @copyright	(C) 2010-2013 HIKARI SOFTWARE. All rights reserved.
 * @license	GNU/GPLv3 http://www.gnu.org/licenses/gpl-3.0.html
 */
defined('_JEXEC') or die('Restricted access');
?><?php
class hikashopUpdateHelper{
	var $db;
	function hikashopUpdateHelper(){
		$this->db = JFactory::getDBO();
		jimport('joomla.filesystem.folder');
		jimport('joomla.filesystem.file');
		$this->update = JRequest::getBool('update');
		$this->freshinstall = JRequest::getBool('freshinstall');
	}
	function addDefaultModules(){
	}

	function createUploadFolders(){
		$file = hikashop_get('class.file');
		$path = $file->getPath('file');
		if(!JFile::exists($path.'.htaccess')){
			$text = 'deny from all';
			JFile::write($path.'.htaccess',$text);
		}
		$path = $file->getPath('image');
	}


	function installExtensions(){
		$path = HIKASHOP_BACK.'extensions';
		jimport('joomla.filesystem.folder');
		$dirs = JFolder::folders( $path );

		if(version_compare(JVERSION,'1.6.0') < ''){
			$query = "SELECT CONCAT(`folder`,`element`) FROM #__plugins WHERE
`folder` IN (
'hikashop','hikashoppayment','hikashopshipping'
)  OR `element` LIKE '%hikashop%' OR (`folder`='system'
AND `element` IN
('vm_redirect','reds_redirect','mijo_redirect','custom_price','custom_quantity_tax','nossloutsidecheckout'))";
			$query .= " UNION SELECT `module` FROM #__modules WHERE `module`
LIKE '%hikashop%'";
			$this->db->setQuery($query);
			$existingExtensions = $this->db->loadResultArray();
		}else{
			$this->db->setQuery("SELECT CONCAT(`folder`,`element`) FROM
#__extensions WHERE `folder` IN (
'hikashop','hikashoppayment','hikashopshipping'
) OR `element` LIKE '%hikashop%' OR (`folder`='system'
AND `element` IN
('vm_redirect','reds_redirect','mijo_redirect','custom_price','custom_quantity_tax','nossloutsidecheckout'))");
			if(!HIKASHOP_J25){
				$existingExtensions = $this->db->loadResultArray();
			} else {
				$existingExtensions = $this->db->loadColumn();
			}
		}
		if(empty($existingExtensions))
			$existingExtensions = array();

		$success = array();
		$plugins = array();
		$modules = array();
		$extensioninfo = array(
			'mod_hikashop' => array('HikaShop Content
Module')
			,'mod_hikashop_cart' => array('HikaShop Cart
Module')
			,'mod_hikashop_currency' => array('HikaShop Currency
Switcher Module')
			,'mod_hikashop_filter' => array('HikaShop Filter
Module',0,0)
			,'mod_hikashop_wishlist' => array('HikaShop Wishlist
Module',0,0)
			,'plg_acymailing_hikashop' => array('AcyMailing :
HikaShop integration',0,1,1)
			,'plg_content_hikashopsocial' => array('Hikashop
Social Networks Plugin',0,0)
			,'plg_editors-xtd_hikashopproduct' => array('Hikashop
product tag insertion plugin',0,1)
			,'plg_hikashop_acymailing' => array('HikaShop trigger
for AcyMailing filters',0,1)
			,'plg_hikashop_datafeed' => array('Hikashop Products
Cron Update Plugin',0,0)
			,'plg_hikashop_google_products' => array('Hikashop
Google Products Plugin',0,1)
			,'plg_hikashop_group' => array('HikaShop group
plugin',0,1)
			,'plg_hikashop_history' => array('HikaShop order
history plugin',0,1)
			,'plg_hikashop_massaction_address' => array('Hikashop
Massaction Address Plugin',0,1)
			,'plg_hikashop_massaction_category' => array('Hikashop
Massaction Category Plugin',0,1)
			,'plg_hikashop_massaction_order' => array('Hikashop
Massaction Order Plugin',0,1)
			,'plg_hikashop_massaction_product' => array('Hikashop
Massaction Product Plugin',0,1)
			,'plg_hikashop_massaction_user' => array('Hikashop
Massaction User Plugin',0,1)
			,'plg_hikashop_order_auto_cancel' => array('Hikashop
Orders Automatic Cancel Plugin',0,0)
			,'plg_hikashop_out_of_stock' => array('HikaShop Out of
stock notification Plugin',0,0)
			,'plg_hikashop_rates' => array('HikaShop rates auto
update plugin',0,1)
			,'plg_hikashop_shippingmanual_prices' =>
array('HikaShop Shipping manual - Prices per product
plugin',0,1)
			,'plg_hikashop_user_account' => array('HikaShop joomla
user account link plugin',0,1)
			,'plg_hikashop_userpoints' => array('HikaShop User
Points plugin',0,1)
			,'plg_hikashop_validate_free_order' => array('HikaShop
Free orders validation Plugin',0,1)
			,'plg_hikashop_waitlist_notify' => array('HikaShop
Product Wait List Notification plugin',0,0)
			,'plg_hikashoppayment_alertpay' => array('HikaShop
Payza payment plugin',0,0)
			,'plg_hikashoppayment_alipay' => array('HikaShop
AliPay payment plugin',0,0)
			,'plg_hikashoppayment_amazon' => array('HikaShop
Amazon payment plugin',0,0)
			,'plg_hikashoppayment_alphauserpoints' =>
array('Hikashop AlphaUserPoints Plugin',0,0)
			,'plg_hikashoppayment_atos' => array('HikaShop SIPS
Atos payment plugin',0,0)
			,'plg_hikashoppayment_authorize' => array('HikaShop
Authorize.net payment plugin',0,0)
			,'plg_hikashoppayment_banktransfer' => array('HikaShop
bank transfer payment plugin',0,0)
			,'plg_hikashoppayment_be2bill' => array('HikaShop
Be2Bill payment plugin',0,0)
			,'plg_hikashoppayment_beanstream' => array('HikaShop
Beanstream payment plugin',0,0)
			,'plg_hikashoppayment_bf_rbsbusinessgateway' =>
array('HikaShop WorldPay Business Gateway payment plugin',0,0)
			,'plg_hikashoppayment_bf_rbsglobalgateway' =>
array('HikaShop WorldPay Global Gateway payment plugin',0,0)
			,'plg_hikashoppayment_bluepaid' => array('HikaShop
Bluepaid payment plugin',0,0)
			,'plg_hikashoppayment_borgun' => array('HikaShop
Borgun payment plugin',0,0)
			,'plg_hikashoppayment_cardsave' => array('HikaShop
CardSave payment plugin',0,0)
			,'plg_hikashoppayment_ceca' => array('HikaShop CECA
payment plugin',0,0)
			,'plg_hikashoppayment_check' => array('HikaShop check
payment plugin',0,0)
			,'plg_hikashoppayment_cmcic' => array('HikaShop CM-CIC
payment plugin',0,0)
			,'plg_hikashoppayment_collectondelivery' =>
array('HikaShop collect on delivery payment plugin',0,0)
			,'plg_hikashoppayment_common' => array('HikaShop
common payment API plugin',0,1)
			,'plg_hikashoppayment_creditcard' => array('HikaShop
credit card payment plugin',0,0)
			,'plg_hikashoppayment_epay' => array('HikaShop ePay
payment plugin',0,0)
			,'plg_hikashoppayment_eselect' => array('HikaShop
eSelect/Moneris payment plugin',0,0)
			,'plg_hikashoppayment_eway' => array('HikaShop eWAY
payment plugin',0,0)
			,'plg_hikashoppayment_ewayrapid' => array('HikaShop
eWAY (Rapid 3.0) payment plugin',0,0)
			,'plg_hikashoppayment_firstdata' => array('HikaShop
First Data payment plugin',0,0)
			,'plg_hikashoppayment_googlecheckout' =>
array('HikaShop Google Checkout payment plugin',0,0)
			,'plg_hikashoppayment_hsbc' => array('HikaShop HSBC
payment plugin',0,0)
			,'plg_hikashoppayment_innovativegateway' =>
array('HikaShop Innovative Gateway payment plugin',0,0)
			,'plg_hikashoppayment_ipaydna' => array('HikaShop
iPayDNA payment plugin',0,0)
			,'plg_hikashoppayment_iveri' => array('HikaShop iVeri
payment plugin',0,0)
			,'plg_hikashoppayment_liqpay' => array('HikaShop
LiqPay payment plugin',0,0)
			,'plg_hikashoppayment_migsvpc' => array('HikaShop MIGS
VPC payment plugin',0,0)
			,'plg_hikashoppayment_moneybookers' => array('HikaShop
Moneybookers payment plugin',0,0)
			,'plg_hikashoppayment_netgiro' => array('HikaShop
NetGiro payment plugin',0,0)
			,'plg_hikashoppayment_nets' => array('HikaShop NETS
payment plugin',0,0)
			,'plg_hikashoppayment_ogone' => array('HikaShop Ogone
payment plugin',0,0)
			,'plg_hikashoppayment_okpay' => array('HikaShop OKPay
payment plugin',0,0)
			,'plg_hikashoppayment_paybox' => array('HikaShop
PayBox payment plugin',0,0)
			,'plg_hikashoppayment_payjunction' => array('HikaShop
PayJunction payment plugin',0,0)
			,'plg_hikashoppayment_paymentexpress' =>
array('HikaShop Payment Express payment plugin',0,0)
			,'plg_hikashoppayment_paypal' => array('HikaShop
Paypal payment plugin',0,0)
			,'plg_hikashoppayment_paypalpro' => array('HikaShop
PayPal Pro payment plugin',0,0)
			,'plg_hikashoppayment_postfinance' => array('HikaShop
Post Finance payment plugin',0,0)
			,'plg_hikashoppayment_privat24' => array('HikaShop
Privat24 payment plugin',0,0)
			,'plg_hikashoppayment_pxpay' => array('HikaShop PxPay
payment plugin',0,0)
			,'plg_hikashoppayment_sagepay' => array('HikaShop Sage
Pay payment plugin',0,0)
			,'plg_hikashoppayment_servired' => array('HikaShop
Servired payment plugin',0,0)
			,'plg_hikashoppayment_sofort' => array('HikaShop
Sofort payment plugin',0,0)
			,'plg_hikashoppayment_userpoints' => array('HikaShop
User Points payment plugin',0,0)
			,'plg_hikashoppayment_virtualmerchant' =>
array('HikaShop VirtualMerchant payment plugin',0,0)
			,'plg_hikashoppayment_webmoney' => array('HikaShop
Webmoney payment plugin',0,0)
			,'plg_hikashoppayment_westernunion' => array('HikaShop
Western Union payment plugin',0,0)
			,'plg_hikashopshipping_aupost' => array('HikaShop
Australia Post shipping plugin',0,0)
			,'plg_hikashopshipping_canadapost' => array('HikaShop
Canada Post shipping plugin',0,0)
			,'plg_hikashopshipping_fedex' => array('HikaShop Fedex
shipping plugin',0,0)
			,'plg_hikashopshipping_manual' => array('HikaShop
manual shipping plugin',0,0)
			,'plg_hikashopshipping_ups' => array('HikaShop UPS
shipping plugin',0,0)
			,'plg_hikashopshipping_usps' => array('HikaShop USPS
shipping plugin',0,0)
			,'plg_quickicons_hikashop' => array('HikaShop
Quickicon plugin',0,1)
			,'plg_search_hikashop_categories' => array('HikaShop
categories search plugin',0,1)
			,'plg_search_hikashop_products' => array('HikaShop
products search plugin',0,1)
			,'plg_system_custom_price' => array('HikaShop Donation
plugin',0,0)
			,'plg_system_custom_quantity_tax' => array('HikaShop
tax calculations override plugin',0,0)
			,'plg_system_hikashopaffiliate' => array('HikaShop
affiliate plugin',0,1)
			,'plg_system_hikashopanalytics' => array('HikaShop
Google Analytics plugin',0,0)
			,'plg_system_hikashopgeolocation' => array('HikaShop
geolocation plugin',0,1)
			,'plg_system_hikashopmassaction' => array('HikaShop
massaction plugin',0,1)
			,'plg_system_hikashopproductinsert' => array('HikaShop
product tag translation plugin',0,1)
			,'plg_system_hikashopproducttag' => array('HikaShop
Microdata on Product Page plugin',0,0)
			,'plg_system_hikashopregistrationredirect' =>
array('Redirect Joomla registration to HikaShop Plugin',0,0)
			,'plg_system_hikashopuser' => array('HikaShop user
synchronization plugin',0,1)
			,'plg_system_nossloutsidecheckout' => array('HikaShop
no SSL outside checkout plugin',0,0)
			,'plg_system_vm_redirect' => array('VirtueMart
Fallback Redirect Plugin',0,0)
			,'plg_system_mijo_redirect' => array('Mijoshop
Fallback Redirect Plugin',0,0)
			,'plg_system_reds_redirect' => array('Redshop Fallback
Redirect Plugin',0,0)
		);

		$listTables = $this->db->getTableList();
		$this->errors=array();
		foreach($dirs as $oneDir){
			$arguments = explode('_',$oneDir);
			if(!isset($extensioninfo[$oneDir])) continue;
			$report = true;
			if(!empty($extensioninfo[$oneDir][3])){
				$report = false;
			}
			$prefix = array_shift($arguments);
			if($prefix == 'plg'){
				$newPlugin = new stdClass();
				$newPlugin->name = $oneDir;
				if(isset($extensioninfo[$oneDir][0])) $newPlugin->name =
$extensioninfo[$oneDir][0];
				$newPlugin->type = 'plugin';
				$newPlugin->folder = array_shift($arguments);
				$newPlugin->element = implode('_',$arguments);
				$newPlugin->enabled = 1;

				if(isset($extensioninfo[$oneDir][2])){
					if(is_numeric($extensioninfo[$oneDir][2])) $newPlugin->enabled =
$extensioninfo[$oneDir][2];
				}
				$newPlugin->params = '{}';
				$newPlugin->ordering = 0;
				if(isset($extensioninfo[$oneDir][1])) $newPlugin->ordering =
$extensioninfo[$oneDir][1];

				if(!hikashop_createDir(HIKASHOP_ROOT.'plugins'.DS.$newPlugin->folder,$report))
continue;

				if(version_compare(JVERSION,'1.6.0','<')){
					$destinationFolder =
HIKASHOP_ROOT.'plugins'.DS.$newPlugin->folder;
				}else{
					$destinationFolder =
HIKASHOP_ROOT.'plugins'.DS.$newPlugin->folder.DS.$newPlugin->element;
					if(!hikashop_createDir($destinationFolder)) continue;
				}

				if(!$this->copyFolder($path.DS.$oneDir,$destinationFolder))
continue;

				if(in_array($newPlugin->folder.$newPlugin->element,$existingExtensions))
continue;

				$plugins[] = $newPlugin;

			}elseif($prefix == 'mod'){
				$newModule = new stdClass();
				$newModule->name = $oneDir;
				if(isset($extensioninfo[$oneDir][0])) $newModule->name =
$extensioninfo[$oneDir][0];
				$newModule->type = 'module';
				$newModule->folder = '';
				$newModule->element = $oneDir;
				$newModule->enabled = 1;
				$newModule->params = '{}';
				$newModule->ordering = 0;
				if(isset($extensioninfo[$oneDir][1])) $newModule->ordering =
$extensioninfo[$oneDir][1];

				$destinationFolder = HIKASHOP_ROOT.'modules'.DS.$oneDir;

				if(!hikashop_createDir($destinationFolder)) continue;

				if(!$this->copyFolder($path.DS.$oneDir,$destinationFolder))
continue;


				if($newModule->element=='mod_hikashop_filter'){
					$this->db->setQuery('SELECT id FROM
'.hikashop_table('menu',false).' WHERE
alias=\'hikashop-menu-for-products-listing\'');
					$menu_id = $this->db->loadResult();
					if($menu_id){
						$fileContent =
JFile::read($destinationFolder.DS.'mod_hikashop_filter.xml');
						if(!empty($fileContent)){
							$fileContent = str_replace('name="itemid"
type="text"
default=""','name="itemid"
type="text"
default="'.$menu_id.'"',$fileContent);
							JFile::write($destinationFolder.DS.'mod_hikashop_filter.xml',$fileContent);
						}
					}
				}


				if(in_array($newModule->element,$existingExtensions)) continue;
				$modules[] = $newModule;
			}else{
				hikashop_display('Could not handle :
'.$oneDir,'error');
			}
		}

		if(!empty($this->errors))
hikashop_display($this->errors,'error');

		if(version_compare(JVERSION,'1.6.0','<')){
			$extensions = $plugins;
		}else{
			$extensions = array_merge($plugins,$modules);
		}

		$success = array();
		if(!empty($extensions)){
			if(version_compare(JVERSION,'1.6.0','<')){
				$queryExtensions = 'INSERT INTO `#__plugins`
(`name`,`element`,`folder`,`published`,`ordering`) VALUES ';
			}else{
				$queryExtensions = 'INSERT INTO `#__extensions`
(`name`,`element`,`folder`,`enabled`,`ordering`,`type`,`access`) VALUES
';
			}

			foreach($extensions as $oneExt){
				$queryExtensions .=
'('.$this->db->Quote($oneExt->name).','.$this->db->Quote($oneExt->element).','.$this->db->Quote($oneExt->folder).','.$oneExt->enabled.','.$oneExt->ordering;
				if(version_compare(JVERSION,'1.6.0','>='))
$queryExtensions .=
','.$this->db->Quote($oneExt->type).',1';
				$queryExtensions .= '),';
				if($oneExt->type!='module'){
					$success[] =
JText::sprintf('PLUG_INSTALLED',$oneExt->name);
				}
			}
			$queryExtensions = trim($queryExtensions,',');

			$this->db->setQuery($queryExtensions);
			$this->db->query();
		}

		if(!empty($modules)){
			foreach($modules as $oneModule){
				if(version_compare(JVERSION,'1.6.0','<')){
					$queryModule = 'INSERT INTO `#__modules`
(`title`,`position`,`published`,`module`) VALUES ';
					$queryModule .=
'('.$this->db->Quote($oneModule->name).",'left',0,".$this->db->Quote($oneModule->element).")";
				}else{
					$queryModule = 'INSERT INTO `#__modules`
(`title`,`position`,`published`,`module`,`access`,`language`) VALUES
';
					$queryModule .=
'('.$this->db->Quote($oneModule->name).",'position-7',0,".$this->db->Quote($oneModule->element).",1,'*')";
				}
				$this->db->setQuery($queryModule);
				$this->db->query();
				$moduleId = $this->db->insertid();

				$this->db->setQuery('INSERT IGNORE INTO `#__modules_menu`
(`moduleid`,`menuid`) VALUES ('.$moduleId.',0)');
				$this->db->query();

				$success[] =
JText::sprintf('MODULE_INSTALLED',$oneModule->name);
			}
		}

		if(!empty($success)) hikashop_display($success,'success');
	}

	function copyFolder($from,$to){
		$return = true;

		$allFiles = JFolder::files($from);
		foreach($allFiles as $oneFile){
			if(file_exists($to.DS.'index.html') && $oneFile ==
'index.html') continue;
			if(JFile::copy($from.DS.$oneFile,$to.DS.$oneFile) !== true){
				$this->errors[] = 'Could not copy the file from
'.$from.DS.$oneFile.' to '.$to.DS.$oneFile;
				$return = false;
			}
			if(version_compare(JVERSION,'1.6.0','<')
&& substr($oneFile,-4) == '.xml') {
				$data = file_get_contents($to.DS.$oneFile);
				if(strpos($data, '<extension ') !== false) {
					$data = str_replace(array('<extension
','</extension>','version="2.5"'),
array('<install
','</install>','version="1.5"'),
$data);
					JFile::write($to.DS.$oneFile, $data);
				}
			}
		}
		$allFolders = JFolder::folders($from);
		if(!empty($allFolders)){
			foreach($allFolders as $oneFolder){
				if(!hikashop_createDir($to.DS.$oneFolder)) continue;
				if(!$this->copyFolder($from.DS.$oneFolder,$to.DS.$oneFolder))
$return = false;
			}
		}
		return $return;
	}

	function installMenu($code = ''){
		if(empty($code)){
			$lang = JFactory::getLanguage();
			$code = $lang->getTag();
		}
		$path =
JLanguage::getLanguagePath(JPATH_ROOT).DS.$code.DS.$code.'.com_hikashop.ini';
		if(!file_exists($path)) return;
		$content = file_get_contents($path);
		if(empty($content)) return;

		$menuFileContent =
'COM_HIKASHOP="HikaShop"'."\r\n".'HIKASHOP="HikaShop"'."\r\n";
		$menuStrings =
array('PRODUCTS','CATEGORIES','USERS','ORDERS','CONFIGURATION','DISCOUNTS','HELP','UPDATE_ABOUT');
		foreach($menuStrings as $oneString){
			preg_match('#(\n|\r)(HIKA_)?'.$oneString.'="(.*)"#i',$content,$matches);
			if(empty($matches[3])) continue;
			if(version_compare(JVERSION,'1.6.0','<')){
				$menuFileContent .=
'COM_HIKASHOP.'.$oneString.'="'.$matches[3].'"'."\r\n";
			}else{
				$menuFileContent .=
$oneString.'="'.$matches[3].'"'."\r\n";
			}
		}

		preg_match_all('#(\n|\r)(COM_HIKASHOP_.*)="(.*)"#iU',$content,$matches);

		if(!empty($matches)){
			$menuFileContent .= implode('',$matches[0]);
		}
		$menuFileContent.="\r\n".'COM_HIKASHOP_CONFIGURATION="HikaShop"';


		if(version_compare(JVERSION,'1.6.0','<')){
			$menuPath =
HIKASHOP_ROOT.'administrator'.DS.'language'.DS.$code.DS.$code.'.com_hikashop.menu.ini';
			if(!JFile::write($menuPath, $menuFileContent)){
				hikashop_display(JText::sprintf('FAIL_SAVE',$menuPath),'error');
			}
			$menuPath =
HIKASHOP_ROOT.'administrator'.DS.'language'.DS.$code.DS.$code.'.com_hikashop.ini';
		}else{
			$menuPath =
HIKASHOP_ROOT.'administrator'.DS.'language'.DS.$code.DS.$code.'.com_hikashop.sys.ini';
		}
		if(!JFile::write($menuPath, $menuFileContent)){
			hikashop_display(JText::sprintf('FAIL_SAVE',$menuPath),'error');
		}
	}

	function _installOne($folder){
		if(empty($folder)) return false;
		unset($GLOBALS['_JREQUEST']['installtype']);
		unset($GLOBALS['_JREQUEST']['install_directory']);
		JRequest::setVar('installtype','folder');
		JRequest::setVar('install_directory',$folder);
		$_REQUEST['installtype']='folder';
		$_REQUEST['install_directory']=$folder;
		$controller = new JController(array('base_path'=>
		HIKASHOP_ROOT.'administrator'.DS.'components'.DS.'com_installer','name'=>'Installer','default_task'
		=> 'installform'));
		$model  = $controller->getModel('Install');
		return $model->install();
	}
	function getUrl(){
		$urls = parse_url(HIKASHOP_LIVE);
		$lurl =
preg_replace('#^www2?\.#Ui','',$urls['host'],1);
		if(!empty($urls['path'])) $lurl .= $urls['path'];
		return strtolower(rtrim($lurl,'/'));
	}
	function addJoomfishElements($force=true){
		$dstFolder =
rtrim(JPATH_ADMINISTRATOR,DS).DS.'components'.DS.'com_joomfish'.DS.'contentelements'.DS;
		if(JFolder::exists($dstFolder)){
			$srcFolder = HIKASHOP_BACK.'translations'.DS;
			$files = JFolder::files($srcFolder);
			if(!empty($files)){
				foreach($files as $file){
					if($force || !file_exists($dstFolder.$file))
JFile::copy($srcFolder.$file,$dstFolder.$file);
				}
			}
		}
		$dstFolder =
rtrim(JPATH_ADMINISTRATOR,DS).DS.'components'.DS.'com_falang'.DS.'contentelements'.DS;
		if(JFolder::exists($dstFolder)){
			$srcFolder = HIKASHOP_BACK.'falang'.DS;
			$files = JFolder::files($srcFolder);
			if(!empty($files)){
				foreach($files as $file){
					if($force || !file_exists($dstFolder.$file))
JFile::copy($srcFolder.$file,$dstFolder.$file);
				}
			}
		}
		return true;
	}

	function addUpdateSite(){
		if(version_compare(JVERSION,'1.6.0','<')) return
false;
		$config = hikashop_config();
		$newconfig = new stdClass();
		$newconfig->website = HIKASHOP_LIVE;
		$config->save($newconfig);
		$query="SELECT update_site_id FROM #__update_sites WHERE location
LIKE '%hikashop%' AND type LIKE 'extension'";
		$this->db->setQuery($query);
		$update_site_id = $this->db->loadResult();
		$object = new stdClass();
		$object->name='Hikashop';
		$object->type='extension';
		if(hikashop_level(1)){
			$object->location='http://www.hikashop.com/component/updateme/updatexml/component-hikashop/version-'.$config->get('version').'/level-'.$config->get('level').'/li-'.urlencode(base64_encode(HIKASHOP_LIVE)).'/file-extension.xml';
		}else{
			$object->location='http://www.hikashop.com/component/updateme/updatexml/component-hikashop/level-'.$config->get('level').'/file-extension.xml';
		}
		$object->enabled=1;
		if(empty($update_site_id)){
			$this->db->insertObject("#__update_sites",$object);
			$update_site_id = $this->db->insertid();
		}else{
			$object->update_site_id = $update_site_id;
			$this->db->updateObject("#__update_sites",$object,'update_site_id');
		}
		$query="SELECT extension_id FROM #__extensions WHERE `name` LIKE
'hikashop' AND type LIKE 'component'";
		$this->db->setQuery($query);
		$extension_id = $this->db->loadResult();
		if(empty($update_site_id) OR empty($extension_id))  return false;
		$query='INSERT IGNORE INTO #__update_sites_extensions
(update_site_id, extension_id) values
('.$update_site_id.','.$extension_id.')';
		$this->db->setQuery($query);
		$this->db->query();
		return true;
	}

	function addDefaultData(){
		if(version_compare(JVERSION,'1.6','<')){
			$query = 'DELETE FROM `#__components` WHERE `admin_menu_link` LIKE
\'%option=com\_hikashop%\' AND `parent`!=0';
			$this->db->setQuery($query);
			$this->db->query();
			$query = 'SELECT id FROM `#__components` WHERE
`option`=\'com_hikashop\' AND `parent`=0';
			$this->db->setQuery($query);
			$parent = (int)$this->db->loadResult();
			$query  = "INSERT IGNORE INTO `#__components`
(`admin_menu_link`,`admin_menu_img`,`admin_menu_alt`,`name`,`ordering`,`parent`)
VALUES
			('option=com_hikashop&amp;ctrl=product','../includes/js/ThemeOffice/document.png','Products','Products',1,".$parent."),
			('option=com_hikashop&amp;ctrl=category&amp;filter_id=product','../includes/js/ThemeOffice/sections.png','Categories','Categories',2,".$parent."),
			('option=com_hikashop&amp;ctrl=user&amp;filter_partner=0','../includes/js/ThemeOffice/user.png','Users','Users',3,".$parent."),
			('option=com_hikashop&amp;ctrl=order&amp;order_type=sale&amp;filter_partner=0','../includes/js/ThemeOffice/content.png','Orders','Orders',4,".$parent."),
			('option=com_hikashop&amp;ctrl=config','../includes/js/ThemeOffice/config.png','Configuration','Configuration',5,".$parent."),
			('option=com_hikashop&amp;ctrl=discount','../includes/js/ThemeOffice/credits.png','Discounts','Discounts',6,".$parent."),
			('option=com_hikashop&amp;ctrl=documentation','../includes/js/ThemeOffice/help.png','Help','Help',7,".$parent."),
			('option=com_hikashop&amp;ctrl=update','../includes/js/ThemeOffice/install.png','Update
/ About','Update / About',8,".$parent.");";
			$this->db->setQuery($query);
			$this->db->query();

			$query="SELECT a.id FROM
".hikashop_table('components',false).' AS a WHERE
a.option=\''.HIKASHOP_COMPONENT.'\'';
			$this->db->setQuery($query);
			$componentid = $this->db->loadResult();
			$query='UPDATE '.hikashop_table('menu',false).'
SET componentid = '.$componentid.' WHERE menutype =
'.$this->db->quote('hikashop_default');
			$this->db->setQuery($query);
			$this->db->query();

		}else{
			$query = 'SELECT * FROM `#__menu` WHERE `title` IN
(\'com_hikashop\',\'hikashop\',\'HikaShop\')
AND `parent_id`=1 AND menutype IN
(\'main\',\'mainmenu\',\'menu\')';
			$this->db->setQuery($query);
			$parentData = $this->db->loadObject();
			$parent = $parentData->id;
			$query = 'SELECT id FROM `#__menu` WHERE
`parent_id`='.(int)$parent;
			$this->db->setQuery($query);
			if(!HIKASHOP_J25){
				$submenu = $this->db->loadResultArray();
			} else {
				$submenu = $this->db->loadColumn();
			}
			$old=count($submenu);
			$query = 'DELETE FROM `#__menu` WHERE
`parent_id`='.(int)$parent;
			$this->db->setQuery($query);
			$this->db->query();
			$query = 'UPDATE `#__menu` SET `rgt`=`rgt`-'.($old*2).'
WHERE `rgt`>='.$parentData->rgt;
			$this->db->setQuery($query);
			$this->db->query();
			$query = 'UPDATE `#__menu` SET `rgt`=`rgt`+16 WHERE
`rgt`>='.$parentData->rgt;
			$this->db->setQuery($query);
			$this->db->query();
			$query = 'UPDATE `#__menu` SET `lft`=`lft`+16 WHERE
`lft`>'.$parentData->lft;
			$this->db->setQuery($query);
			$this->db->query();
			$left = $parentData->lft;
			$cid = $parentData->component_id;
			$query  = "INSERT IGNORE INTO `#__menu`
(`type`,`link`,`menutype`,`img`,`alias`,`title`,`client_id`,`parent_id`,`level`,`language`,`lft`,`rgt`,`component_id`)
VALUES
			('component','index.php?option=com_hikashop&ctrl=product','menu','./templates/bluestork/images/menu/icon-16-article.png','Products','Products',1,".(int)$parent.",2,'*',".($left+1).",".($left+2).",".$cid."),
			('component','index.php?option=com_hikashop&ctrl=category&filter_id=product','menu','./templates/bluestork/images/menu/icon-16-category.png','Categories','Categories',1,".(int)$parent.",2,'*',".($left+3).",".($left+4).",".$cid."),
			('component','index.php?option=com_hikashop&ctrl=user&filter_partner=0','menu','./templates/bluestork/images/menu/icon-16-user.png','Users','Users',1,".(int)$parent.",2,'*',".($left+5).",".($left+6).",".$cid."),
			('component','index.php?option=com_hikashop&ctrl=order&order_type=sale&filter_partner=0','menu','./templates/bluestork/images/menu/icon-16-content.png','Orders','Orders',1,".(int)$parent.",2,'*',".($left+7).",".($left+8).",".$cid."),
			('component','index.php?option=com_hikashop&ctrl=config','menu','./templates/bluestork/images/menu/icon-16-config.png','Configuration','Configuration',1,".(int)$parent.",2,'*',".($left+9).",".($left+10).",".$cid."),
			('component','index.php?option=com_hikashop&ctrl=discount','menu','./templates/bluestork/images/menu/icon-16-default.png','Discounts','Discounts',1,".(int)$parent.",2,'*',".($left+11).",".($left+12).",".$cid."),
			('component','index.php?option=com_hikashop&ctrl=documentation','menu','./templates/bluestork/images/menu/icon-16-help.png','Help','Help',1,".(int)$parent.",2,'*',".($left+13).",".($left+14).",".$cid."),
			('component','index.php?option=com_hikashop&ctrl=update','menu','./templates/bluestork/images/menu/icon-16-help-jrd.png','Update
/ About','Update /
About',1,".(int)$parent.",2,'*',".($left+15).",".($left+16).",".$cid.");
			";
			$this->db->setQuery($query);
			$this->db->query();
			$query='UPDATE '.hikashop_table('menu',false).'
SET component_id = '.$cid.' WHERE menutype =
'.$this->db->quote('hikashop_default');
			$this->db->setQuery($query);
			$this->db->query();
		}

		$query = 'INSERT IGNORE INTO `#__hikashop_user`
(`user_email`,`user_cms_id`,`user_created`) SELECT `email`,
`id`,'.time().' FROM `#__users`';
		$this->db->setQuery($query);
		$this->db->query();

		$query="INSERT IGNORE INTO `#__hikashop_category` (`category_id`,
`category_parent_id`, `category_type`, `category_name`,
`category_description`, `category_published`, `category_ordering`,
`category_left`, `category_right`, `category_depth`, `category_namekey`)
VALUES
(1, 0, 'root', 'ROOT', '', 0, 0, 1, 22, 0,
'root'),
(2, 1, 'product', 'product category', '', 1,
1, 2, 3, 1, 'product'),
(3, 1, 'tax', 'taxation category', '', 1, 2,
4, 7, 1, 'tax'),
(4, 1, 'status', 'order status', '', 1, 3, 8,
19, 1, 'status'),
(5, 4, 'status', 'created', 'When a customer
finishes a checkout, an order is created with the status created', 1,
1, 9, 10, 2, 'created'),
(6, 4, 'status', 'confirmed', 'When the payment is
confirmed or that the payment is done at delivery the order becomes
confirmed', 1, 2, 11, 12, 2, 'confirmed'),
(7, 4, 'status', 'cancelled', 'When an order is
cancelled before receiving a payment', 1, 3, 13, 14, 2,
'cancelled'),
(8, 4, 'status', 'refunded', 'When an order is
cancelled after receiving a payment', 1, 4, 15, 16, 2,
'refunded'),
(9, 4, 'status', 'shipped', 'When an order has
been shipped', 1, 5, 17, 18, 2, 'shipped'),
(10, 1, 'manufacturer', 'manufacturer', '',
1, 5, 20, 21, 1, 'manufacturer'),
(11, 3, 'tax', 'Default tax category', '', 1,
1, 5, 6, 2, 'default_tax');";
		$this->db->setQuery($query);
		$this->db->query();

		$query=<<<EOD
INSERT IGNORE INTO `#__hikashop_field` (`field_table`, `field_realname`,
`field_namekey`, `field_type`, `field_value`, `field_published`,
`field_ordering`, `field_options`, `field_core`, `field_required`,
`field_backend`, `field_frontcomp`, `field_default`,
`field_backend_listing`) VALUES
('address', 'Title', 'address_title',
'singledropdown',
'Mr::HIKA_TITLE_MR\nMrs::HIKA_TITLE_MRS\nMiss::HIKA_TITLE_MISS\nMs::HIKA_TITLE_MS\nDr::HIKA_TITLE_DR',
1, 1,
'a:5:{s:12:"errormessage";s:0:"";s:4:"cols";s:0:"";s:4:"rows";s:0:"";s:4:"size";s:0:"";s:6:"format";s:0:"";}',
1, 1, 1, 1, '', 0),
('address', 'Firstname', 'address_firstname',
'text', '', 1, 2,
'a:5:{s:12:"errormessage";s:0:"";s:4:"cols";s:0:"";s:4:"rows";s:0:"";s:4:"size";s:0:"";s:6:"format";s:0:"";}',
1, 1, 1, 1, '', 0),
('address', 'Middle name',
'address_middle_name', 'text', '', 0, 3,
'a:5:{s:12:"errormessage";s:0:"";s:4:"cols";s:0:"";s:4:"rows";s:0:"";s:4:"size";s:0:"";s:6:"format";s:0:"";}',
1, 0, 1, 1, '', 0),
('address', 'Lastname', 'address_lastname',
'text', '', 1, 4,
'a:5:{s:12:"errormessage";s:0:"";s:4:"cols";s:0:"";s:4:"rows";s:0:"";s:4:"size";s:0:"";s:6:"format";s:0:"";}',
1, 1, 1, 1, '', 0),
('address', 'Company', 'address_company',
'text', '', 0, 5,
'a:5:{s:12:"errormessage";s:0:"";s:4:"cols";s:0:"";s:4:"rows";s:0:"";s:4:"size";s:0:"";s:6:"format";s:0:"";}',
1, 0, 1, 1, '', 0),
('address', 'Street', 'address_street',
'text', '', 1, 6,
'a:5:{s:12:"errormessage";s:0:"";s:4:"cols";s:0:"";s:4:"rows";s:0:"";s:4:"size";s:0:"";s:6:"format";s:0:"";}',
1, 1, 1, 1, '', 0),
('address', 'Complement', 'address_street2',
'text', '', 0, 7,
'a:5:{s:12:"errormessage";s:0:"";s:4:"cols";s:0:"";s:4:"rows";s:0:"";s:4:"size";s:0:"";s:6:"format";s:0:"";}',
1, 0, 1, 1, '', 0),
('address', 'Post code', 'address_post_code',
'text', '', 1, 8,
'a:5:{s:12:"errormessage";s:0:"";s:4:"cols";s:0:"";s:4:"rows";s:0:"";s:4:"size";s:0:"";s:6:"format";s:0:"";}',
1, 0, 1, 1, '', 0),
('address', 'City', 'address_city',
'text', '', 1, 9,
'a:5:{s:12:"errormessage";s:0:"";s:4:"cols";s:0:"";s:4:"rows";s:0:"";s:4:"size";s:0:"";s:6:"format";s:0:"";}',
1, 1, 1, 1, '', 0),
('address', 'Telephone', 'address_telephone',
'text', '', 1, 10,
'a:5:{s:12:"errormessage";s:0:"";s:4:"cols";s:0:"";s:4:"rows";s:0:"";s:4:"size";s:0:"";s:6:"format";s:0:"";}',
1, 1, 1, 1, '', 0),
('address', 'Telephone',
'address_telephone2', 'text', '', 0, 11,
'a:5:{s:12:"errormessage";s:0:"";s:4:"cols";s:0:"";s:4:"rows";s:0:"";s:4:"size";s:0:"";s:6:"format";s:0:"";}',
1, 0, 1, 1, '', 0),
('address', 'Fax', 'address_fax',
'text', '', 0, 12,
'a:5:{s:12:"errormessage";s:0:"";s:4:"cols";s:0:"";s:4:"rows";s:0:"";s:4:"size";s:0:"";s:6:"format";s:0:"";}',
1, 0, 1, 1, '', 0),
('address', 'State', 'address_state',
'zone', '', 1, 13,
'a:6:{s:12:"errormessage";s:0:"";s:4:"cols";s:0:"";s:4:"rows";s:0:"";s:9:"zone_type";s:5:"state";s:4:"size";s:0:"";s:6:"format";s:0:"";}',
1, 1, 1, 1, 'state_Rh__ne_1375', 0),
('address', 'Country', 'address_country',
'zone', '', 1, 14,
'a:6:{s:12:"errormessage";s:0:"";s:4:"cols";s:0:"";s:4:"rows";s:0:"";s:9:"zone_type";s:7:"country";s:4:"size";s:0:"";s:6:"format";s:0:"";}',
1, 1, 1, 1, 'country_France_73', 0),
('address', 'VAT number', 'address_vat',
'text', '', 0, 15,
'a:6:{s:12:"errormessage";s:0:"";s:4:"cols";s:0:"";s:4:"rows";s:0:"";s:9:"zone_type";s:7:"country";s:4:"size";s:0:"";s:6:"format";s:0:"";}',
1, 0, 1, 1, '', 0);
EOD;

		$this->db->setQuery($query);
		$this->db->query();

		$query=<<<EOD
INSERT IGNORE INTO `#__hikashop_widget` (`widget_id`, `widget_name`,
`widget_params`, `widget_published`, `widget_ordering`, `widget_access`)
VALUES
(1, 'Last seven orders',
'O:8:"stdClass":27:{s:7:"display";s:7:"listing";s:9:"date_type";s:7:"created";s:10:"date_group";s:5:"%j
%Y";s:10:"periodType";s:14:"proposedPeriod";s:14:"proposedPeriod";s:9:"thisMonth";s:6:"period";s:1:"0";s:7:"content";s:6:"orders";s:7:"filters";s:45:"a:1:{s:14:"a.order_status";a:1:{i:0;s:0:"";}}";s:15:"category_childs";s:1:"0";s:9:"customers";s:14:"best_customers";s:15:"customers_order";s:5:"sales";s:8:"partners";s:14:"last_customers";s:14:"partners_order";s:5:"sales";s:12:"compare_with";s:7:"periods";s:14:"period_compare";s:4:"none";s:5:"limit";s:1:"7";s:6:"region";s:5:"world";s:6:"format";s:5:"UTF-8";s:10:"map_source";s:8:"shipping";s:12:"product_data";s:5:"sales";s:16:"product_order_by";s:4:"best";s:15:"orders_order_by";s:4:"last";s:8:"compares";N;s:10:"categories";s:3:"all";s:8:"products";s:6:"a:0:{}";s:7:"coupons";s:6:"a:0:{}";s:6:"status";s:0:"";}',
1, 1, 'all'),
(2, 'Sales this month',
'O:8:"stdClass":27:{s:7:"display";s:5:"graph";s:9:"date_type";s:7:"created";s:10:"date_group";s:5:"%j
%Y";s:10:"periodType";s:14:"proposedPeriod";s:14:"proposedPeriod";s:9:"thisMonth";s:6:"period";s:1:"0";s:7:"content";s:5:"sales";s:7:"filters";s:45:"a:1:{s:14:"a.order_status";a:1:{i:0;s:0:"";}}";s:15:"category_childs";s:1:"0";s:9:"customers";s:14:"last_customers";s:15:"customers_order";s:5:"sales";s:8:"partners";s:14:"last_customers";s:14:"partners_order";s:5:"sales";s:12:"compare_with";s:7:"periods";s:14:"period_compare";s:4:"none";s:5:"limit";s:1:"7";s:6:"region";s:5:"world";s:6:"format";s:5:"UTF-8";s:10:"map_source";s:8:"shipping";s:12:"product_data";s:5:"sales";s:16:"product_order_by";s:4:"best";s:15:"orders_order_by";s:4:"last";s:8:"compares";N;s:10:"categories";s:3:"all";s:8:"products";s:6:"a:0:{}";s:7:"coupons";s:6:"a:0:{}";s:6:"status";s:0:"";}',
1, 2, 'all'),
(3, 'Main Statistics',
'O:8:"stdClass":6:{s:7:"display";s:5:"table";s:10:"categories";s:3:"all";s:7:"coupons";s:6:"a:0:{}";s:5:"table";a:5:{i:0;O:8:"stdClass":2:{s:8:"row_name";s:16:"Sales
this
month";s:13:"widget_params";O:8:"stdClass":15:{s:10:"periodType";s:14:"proposedPeriod";s:14:"proposedPeriod";s:9:"thisMonth";s:5:"start";s:0:"";s:3:"end";s:0:"";s:6:"period";s:1:"0";s:7:"content";s:5:"sales";s:7:"filters";s:45:"a:1:{s:14:"a.order_status";a:1:{i:0;s:0:"";}}";s:7:"payment";s:9:"_multiple";s:15:"category_childs";s:1:"0";s:9:"customers";s:13:"last_customer";s:8:"apply_on";s:7:"product";s:7:"display";s:5:"table";s:10:"categories";s:3:"all";s:8:"products";s:6:"a:0:{}";s:7:"coupons";s:6:"a:0:{}";}}i:1;O:8:"stdClass":2:{s:8:"row_name";s:22:"Best
product this
year";s:13:"widget_params";O:8:"stdClass":14:{s:10:"periodType";s:14:"proposedPeriod";s:14:"proposedPeriod";s:8:"thisYear";s:5:"start";s:0:"";s:3:"end";s:0:"";s:6:"period";s:1:"0";s:7:"content";s:4:"best";s:7:"filters";s:45:"a:1:{s:14:"a.order_status";a:1:{i:0;s:0:"";}}";s:15:"category_childs";s:1:"0";s:9:"customers";s:13:"last_customer";s:8:"apply_on";s:7:"product";s:7:"display";s:5:"table";s:10:"categories";s:3:"all";s:8:"products";s:6:"a:0:{}";s:7:"coupons";s:6:"a:0:{}";}}i:2;O:8:"stdClass":2:{s:8:"row_name";s:22:"Best
customer all
time";s:13:"widget_params";O:8:"stdClass":15:{s:10:"periodType";s:14:"proposedPeriod";s:14:"proposedPeriod";s:3:"all";s:5:"start";s:1:"0";s:3:"end";s:1:"0";s:6:"period";s:1:"0";s:7:"content";s:9:"customers";s:7:"filters";s:45:"a:1:{s:14:"a.order_status";a:1:{i:0;s:0:"";}}";s:15:"category_childs";s:1:"0";s:9:"customers";s:13:"best_customer";s:8:"partners";s:13:"last_partners";s:8:"apply_on";s:7:"product";s:7:"display";s:5:"table";s:10:"categories";s:3:"all";s:8:"products";s:6:"a:0:{}";s:7:"coupons";s:6:"a:0:{}";}}i:3;O:8:"stdClass":2:{s:8:"row_name";s:20:"Orders
created
today";s:13:"widget_params";O:8:"stdClass":15:{s:10:"periodType";s:14:"proposedPeriod";s:14:"proposedPeriod";s:5:"today";s:5:"start";s:0:"";s:3:"end";s:0:"";s:6:"period";s:1:"0";s:7:"content";s:6:"orders";s:7:"filters";s:72:"a:1:{s:14:"a.order_status";a:2:{i:0;s:7:"created";i:1;s:9:"confirmed";}}";s:7:"payment";s:9:"_multiple";s:15:"category_childs";s:1:"0";s:9:"customers";s:13:"last_customer";s:8:"apply_on";s:7:"product";s:7:"display";s:5:"table";s:10:"categories";s:3:"all";s:8:"products";s:6:"a:0:{}";s:7:"coupons";s:6:"a:0:{}";}}i:4;O:8:"stdClass":2:{s:8:"row_name";s:24:"Best
category this
month";s:13:"widget_params";O:8:"stdClass":15:{s:10:"periodType";s:14:"proposedPeriod";s:14:"proposedPeriod";s:8:"thisWeek";s:5:"start";s:0:"";s:3:"end";s:0:"";s:6:"period";s:1:"0";s:7:"content";s:4:"best";s:7:"filters";s:45:"a:1:{s:14:"a.order_status";a:1:{i:0;s:0:"";}}";s:7:"payment";s:9:"_multiple";s:15:"category_childs";s:1:"0";s:9:"customers";s:13:"last_customer";s:8:"apply_on";s:8:"category";s:7:"display";s:5:"table";s:10:"categories";s:3:"all";s:8:"products";s:6:"a:0:{}";s:7:"coupons";s:6:"a:0:{}";}}}s:6:"status";s:0:"";s:8:"products";s:6:"a:0:{}";}',
1, 3, 'all'),
(4, 'Weekly performance',
'O:8:"stdClass":27:{s:7:"display";s:5:"gauge";s:9:"date_type";s:7:"created";s:10:"date_group";s:5:"%u
%Y";s:10:"periodType";s:14:"proposedPeriod";s:14:"proposedPeriod";s:3:"all";s:6:"period";s:1:"0";s:7:"content";s:5:"sales";s:7:"filters";s:45:"a:1:{s:14:"a.order_status";a:1:{i:0;s:0:"";}}";s:15:"category_childs";s:1:"0";s:9:"customers";s:14:"last_customers";s:15:"customers_order";s:5:"sales";s:8:"partners";s:14:"last_customers";s:14:"partners_order";s:5:"sales";s:12:"compare_with";s:7:"periods";s:14:"period_compare";s:4:"none";s:5:"limit";s:1:"7";s:6:"region";s:5:"world";s:6:"format";s:5:"UTF-8";s:10:"map_source";s:8:"shipping";s:12:"product_data";s:5:"sales";s:16:"product_order_by";s:4:"best";s:15:"orders_order_by";s:4:"last";s:8:"compares";N;s:10:"categories";s:3:"all";s:8:"products";s:6:"a:0:{}";s:7:"coupons";s:6:"a:0:{}";s:6:"status";s:0:"";}',
0, 4, 'all'),
(5, 'Top sales',
'O:8:"stdClass":27:{s:7:"display";s:7:"listing";s:9:"date_type";s:7:"created";s:10:"date_group";s:5:"%j
%Y";s:10:"periodType";s:14:"proposedPeriod";s:14:"proposedPeriod";s:9:"thisMonth";s:6:"period";s:1:"0";s:7:"content";s:8:"products";s:7:"filters";s:45:"a:1:{s:14:"a.order_status";a:1:{i:0;s:0:"";}}";s:15:"category_childs";s:1:"0";s:9:"customers";s:14:"last_customers";s:15:"customers_order";s:5:"sales";s:8:"partners";s:14:"last_customers";s:14:"partners_order";s:5:"sales";s:12:"compare_with";s:7:"periods";s:14:"period_compare";s:4:"none";s:5:"limit";s:1:"7";s:6:"region";s:5:"world";s:6:"format";s:5:"UTF-8";s:10:"map_source";s:8:"shipping";s:12:"product_data";s:5:"sales";s:16:"product_order_by";s:4:"best";s:15:"orders_order_by";s:4:"last";s:8:"compares";N;s:10:"categories";s:3:"all";s:8:"products";s:6:"a:0:{}";s:7:"coupons";s:6:"a:0:{}";s:6:"status";s:0:"";}',
0, 5, 'all'),
(6, 'Orders statuses this week',
'O:8:"stdClass":27:{s:7:"display";s:3:"pie";s:9:"date_type";s:7:"created";s:10:"date_group";s:5:"%j
%Y";s:10:"periodType";s:14:"proposedPeriod";s:14:"proposedPeriod";s:8:"thisWeek";s:6:"period";s:1:"0";s:7:"content";s:6:"orders";s:7:"filters";s:45:"a:1:{s:14:"a.order_status";a:1:{i:0;s:0:"";}}";s:15:"category_childs";s:1:"0";s:9:"customers";s:14:"last_customers";s:15:"customers_order";s:5:"sales";s:8:"partners";s:14:"last_customers";s:14:"partners_order";s:5:"sales";s:12:"compare_with";s:7:"periods";s:14:"period_compare";s:4:"none";s:5:"limit";s:1:"7";s:6:"region";s:5:"world";s:6:"format";s:5:"UTF-8";s:10:"map_source";s:8:"shipping";s:12:"product_data";s:5:"sales";s:16:"product_order_by";s:4:"best";s:15:"orders_order_by";s:4:"last";s:8:"compares";N;s:10:"categories";s:3:"all";s:8:"products";s:6:"a:0:{}";s:7:"coupons";s:6:"a:0:{}";s:6:"status";s:0:"";}',
0, 6, 'all'),
(7, 'Sales comparison between this year vs last year',
'O:8:"stdClass":27:{s:7:"display";s:4:"area";s:9:"date_type";s:7:"created";s:10:"date_group";s:5:"%j
%Y";s:10:"periodType";s:14:"proposedPeriod";s:14:"proposedPeriod";s:9:"thisMonth";s:6:"period";s:1:"0";s:7:"content";s:5:"sales";s:7:"filters";s:45:"a:1:{s:14:"a.order_status";a:1:{i:0;s:0:"";}}";s:15:"category_childs";s:1:"0";s:9:"customers";s:14:"last_customers";s:15:"customers_order";s:5:"sales";s:8:"partners";s:14:"last_customers";s:14:"partners_order";s:5:"sales";s:12:"compare_with";s:7:"periods";s:14:"period_compare";s:9:"last_year";s:5:"limit";s:1:"7";s:6:"region";s:5:"world";s:6:"format";s:5:"UTF-8";s:10:"map_source";s:8:"shipping";s:12:"product_data";s:5:"sales";s:16:"product_order_by";s:4:"best";s:15:"orders_order_by";s:4:"last";s:8:"compares";N;s:10:"categories";s:3:"all";s:8:"products";s:6:"a:0:{}";s:7:"coupons";s:6:"a:0:{}";s:6:"status";s:0:"";}',
0, 7, 'all'),
(8, 'Five best categories over the last two weeks',
'O:8:"stdClass":27:{s:7:"display";s:4:"line";s:9:"date_type";s:7:"created";s:10:"date_group";s:5:"%j
%Y";s:10:"periodType";s:14:"specificPeriod";s:5:"start";i:1342367760;s:3:"end";i:1343663760;s:6:"period";s:7:"1296000";s:7:"content";s:6:"orders";s:7:"filters";s:45:"a:1:{s:14:"a.order_status";a:1:{i:0;s:0:"";}}";s:15:"category_childs";s:1:"0";s:9:"customers";s:14:"last_customers";s:15:"customers_order";s:5:"sales";s:8:"partners";s:14:"last_customers";s:14:"partners_order";s:5:"sales";s:12:"compare_with";s:6:"values";s:8:"compares";s:50:"a:1:{s:13:"c.category_id";s:15:"c.category_name";}";s:5:"limit";s:1:"5";s:6:"region";s:5:"world";s:6:"format";s:5:"UTF-8";s:10:"map_source";s:8:"shipping";s:12:"product_data";s:5:"sales";s:16:"product_order_by";s:4:"best";s:15:"orders_order_by";s:4:"last";s:10:"categories";s:3:"all";s:8:"products";s:6:"a:0:{}";s:7:"coupons";s:6:"a:0:{}";s:6:"status";s:0:"";}',
0, 8, 'all'),
(9, 'Map',
'O:8:"stdClass":27:{s:7:"display";s:3:"map";s:9:"date_type";s:7:"created";s:10:"date_group";s:5:"%j
%Y";s:10:"periodType";s:14:"proposedPeriod";s:14:"proposedPeriod";s:3:"all";s:6:"period";s:1:"0";s:7:"content";s:6:"orders";s:7:"filters";s:45:"a:1:{s:14:"a.order_status";a:1:{i:0;s:0:"";}}";s:15:"category_childs";s:1:"0";s:9:"customers";s:14:"best_customers";s:15:"customers_order";s:5:"sales";s:8:"partners";s:14:"last_customers";s:14:"partners_order";s:5:"sales";s:12:"compare_with";s:7:"periods";s:14:"period_compare";s:4:"none";s:5:"limit";s:1:"5";s:6:"region";s:5:"world";s:6:"format";s:5:"UTF-8";s:10:"map_source";s:7:"billing";s:12:"product_data";s:5:"sales";s:16:"product_order_by";s:4:"best";s:15:"orders_order_by";s:4:"best";s:8:"compares";N;s:10:"categories";s:3:"all";s:8:"products";s:6:"a:0:{}";s:7:"coupons";s:6:"a:0:{}";s:6:"status";s:0:"";}',
0, 9, 'all'),
(10, 'Orders by currency',
'O:8:"stdClass":26:{s:7:"display";s:6:"column";s:9:"date_type";s:7:"created";s:10:"date_group";s:5:"%j
%Y";s:10:"periodType";s:14:"proposedPeriod";s:14:"proposedPeriod";s:8:"thisWeek";s:6:"period";s:1:"0";s:7:"content";s:6:"orders";s:7:"filters";s:90:"a:2:{s:14:"a.order_status";a:1:{i:0;s:0:"";}s:19:"a.order_currency_id";a:1:{i:0;s:1:"1";}}";s:15:"category_childs";s:1:"0";s:9:"customers";s:14:"last_customers";s:15:"customers_order";s:5:"sales";s:8:"partners";s:14:"last_customers";s:14:"partners_order";s:5:"sales";s:12:"compare_with";s:6:"values";s:8:"compares";s:56:"a:1:{s:19:"a.order_currency_id";s:15:"d.currency_name";}";s:5:"limit";s:1:"7";s:6:"region";s:5:"world";s:6:"format";s:5:"UTF-8";s:10:"map_source";s:8:"shipping";s:12:"product_data";s:5:"sales";s:16:"product_order_by";s:4:"best";s:15:"orders_order_by";s:4:"last";s:10:"categories";s:3:"all";s:8:"products";s:6:"a:0:{}";s:7:"coupons";s:6:"a:0:{}";s:6:"status";s:0:"";}',
0, 10, 'all'),
(11, 'Order to ship',
'O:8:"stdClass":27:{s:7:"display";s:7:"listing";s:9:"date_type";s:7:"created";s:10:"date_group";s:5:"%j
%Y";s:10:"periodType";s:14:"proposedPeriod";s:14:"proposedPeriod";s:3:"all";s:6:"period";s:1:"0";s:7:"content";s:6:"orders";s:7:"filters";s:54:"a:1:{s:14:"a.order_status";a:1:{i:0;s:9:"confirmed";}}";s:15:"category_childs";s:1:"0";s:9:"customers";s:14:"last_customers";s:15:"customers_order";s:5:"sales";s:8:"partners";s:14:"last_customers";s:14:"partners_order";s:5:"sales";s:12:"compare_with";s:7:"periods";s:14:"period_compare";s:4:"none";s:5:"limit";s:0:"";s:6:"region";s:5:"world";s:6:"format";s:5:"UTF-8";s:10:"map_source";s:8:"shipping";s:12:"product_data";s:5:"sales";s:16:"product_order_by";s:4:"best";s:15:"orders_order_by";s:4:"last";s:8:"compares";N;s:10:"categories";s:3:"all";s:8:"products";s:6:"a:0:{}";s:7:"coupons";s:6:"a:0:{}";s:6:"status";s:0:"";}',
0, 11, 'all');
EOD;
		$this->db->setQuery($query);
		$this->db->query();

		$query = <<<EOD
INSERT IGNORE INTO `#__hikashop_currency` (`currency_id`,
`currency_symbol`, `currency_code`, `currency_format`, `currency_name`,
`currency_published`, `currency_displayed`, `currency_locale`) VALUES
(1, '€', 'EUR', '%n', 'Euro',
1,1,
'a:13:{s:17:"mon_decimal_point";s:1:",";s:17:"mon_thousands_sep";s:1:".";s:12:"mon_grouping";s:1:"3";s:13:"positive_sign";s:0:"";s:13:"negative_sign";s:1:"-";s:15:"int_frac_digits";i:2;s:11:"frac_digits";i:2;s:13:"p_cs_precedes";i:0;s:14:"p_sep_by_space";i:1;s:13:"n_cs_precedes";i:0;s:14:"n_sep_by_space";i:1;s:11:"p_sign_posn";i:1;s:11:"n_sign_posn";i:1;}'),
(2, '\$', 'USD', '%n', 'United States
dollar', 1, 1,
'a:13:{s:17:"mon_decimal_point";s:1:".";s:17:"mon_thousands_sep";s:1:",";s:12:"mon_grouping";s:1:"3";s:13:"positive_sign";s:0:"";s:13:"negative_sign";s:1:"-";s:15:"int_frac_digits";i:2;s:11:"frac_digits";i:2;s:13:"p_cs_precedes";i:1;s:14:"p_sep_by_space";i:0;s:13:"n_cs_precedes";i:1;s:14:"n_sep_by_space";i:0;s:11:"p_sign_posn";i:4;s:11:"n_sign_posn";i:4;}'),
(3, '¥', 'JPY', '%n', 'Japanese
yen', 0, 0,
'a:13:{s:17:"mon_decimal_point";s:1:",";s:17:"mon_thousands_sep";s:1:"
";s:12:"mon_grouping";s:1:"4";s:13:"positive_sign";s:0:"";s:13:"negative_sign";s:1:"-";s:15:"int_frac_digits";i:0;s:11:"frac_digits";i:0;s:13:"p_cs_precedes";i:0;s:14:"p_sep_by_space";i:1;s:13:"n_cs_precedes";i:0;s:14:"n_sep_by_space";i:1;s:11:"p_sign_posn";i:1;s:11:"n_sign_posn";i:1;}'),
(4, '£', 'GBP', '%n', 'British
pound', 0, 0,
'a:13:{s:17:"mon_decimal_point";s:1:".";s:17:"mon_thousands_sep";s:1:",";s:12:"mon_grouping";s:1:"3";s:13:"positive_sign";s:0:"";s:13:"negative_sign";s:1:"-";s:15:"int_frac_digits";i:2;s:11:"frac_digits";i:2;s:13:"p_cs_precedes";i:1;s:14:"p_sep_by_space";i:1;s:13:"n_cs_precedes";i:1;s:14:"n_sep_by_space";i:1;s:11:"p_sign_posn";i:1;s:11:"n_sign_posn";i:1;}'),
(5, '\$', 'CAD', '%i', 'Canadian
dollar', 0, 0,
'a:13:{s:17:"mon_decimal_point";s:1:".";s:17:"mon_thousands_sep";s:1:",";s:12:"mon_grouping";s:1:"3";s:13:"positive_sign";s:0:"";s:13:"negative_sign";s:1:"-";s:15:"int_frac_digits";i:2;s:11:"frac_digits";i:2;s:13:"p_cs_precedes";i:1;s:14:"p_sep_by_space";i:0;s:13:"n_cs_precedes";i:1;s:14:"n_sep_by_space";i:0;s:11:"p_sign_posn";i:4;s:11:"n_sign_posn";i:4;}'),
(6, '\$', 'AUD', '%i', 'Australian
dollar', 0, 0,
'a:13:{s:17:"mon_decimal_point";s:1:".";s:17:"mon_thousands_sep";s:1:",";s:12:"mon_grouping";s:1:"3";s:13:"positive_sign";s:0:"";s:13:"negative_sign";s:1:"-";s:15:"int_frac_digits";i:2;s:11:"frac_digits";i:2;s:13:"p_cs_precedes";i:1;s:14:"p_sep_by_space";i:0;s:13:"n_cs_precedes";i:1;s:14:"n_sep_by_space";i:0;s:11:"p_sign_posn";i:4;s:11:"n_sign_posn";i:4;}'),
(7, '\$', 'NZD', '%i', 'New Zealand
dollar', 0, 0,
'a:13:{s:17:"mon_decimal_point";s:1:",";s:17:"mon_thousands_sep";s:1:".";s:12:"mon_grouping";s:1:"3";s:13:"positive_sign";s:0:"";s:13:"negative_sign";s:1:"-";s:15:"int_frac_digits";i:2;s:11:"frac_digits";i:2;s:13:"p_cs_precedes";i:1;s:14:"p_sep_by_space";i:0;s:13:"n_cs_precedes";i:1;s:14:"n_sep_by_space";i:0;s:11:"p_sign_posn";i:4;s:11:"n_sign_posn";i:4;}'),
(8, '؋', 'AFN', '%i', 'Afghan
afghani', 0, 0, ''),
(9, 'Lek', 'ALL', '%i', 'Albanian
lek', 0, 0, ''),
(10, 'د.ج', 'DZD', '%i', 'Algerian
dinar', 0, 0, ''),
(11, 'Kz ', 'AOA', '%i', 'Angolan
kwanza', 0, 0, ''),
(12, '\$', 'ARS', '%i', 'Argentine
peso', 0, 0, ''),
(13, 'դր.', 'AMD', '%i', 'Armenian
dram', 0, 0, ''),
(14, 'ƒ', 'AWG', '%i', 'Aruban
florin', 0, 0, ''),
(15, 'ман', 'AZN', '%i', 'Azerbaijani
manat', 0, 0, ''),
(16, '\$', 'BSD', '%i', 'Bahamian
dollar', 0, 0, ''),
(17, 'ب.د', 'BHD', '%i', 'Bahraini
dinar', 0, 0, ''),
(18, '৳', 'BDT', '%i', 'Bangladeshi
taka', 0, 0, ''),
(19, '\$', 'BBD', '%i', 'Barbadian
dollar', 0, 0, ''),
(20, 'p.', 'BYR', '%i', 'Belarusian
ruble', 0, 0, ''),
(21, 'BZ\$', 'BZD', '%i', 'Belize
dollar', 0, 0, ''),
(22, '\$', 'BMD', '%i', 'Bermudian
dollar', 0, 0, ''),
(23, 'BTN', 'BTN', '%i', 'Bhutanese
ngultrum', 0, 0, ''),
(24, '\$b', 'BOB', '%i', 'Bolivian
boliviano', 0, 0, ''),
(25, 'XBA', 'XBA', '%i', 'Bond
Markets', 0, 0, ''),
(26, 'KM', 'BAM', '%i', 'Bosnia and
Herzegovina convert', 0, 0, ''),
(27, 'P', 'BWP', '%i', 'Botswana
pula', 0, 0, ''),
(28, 'R$', 'BRL', '%i', 'Brazilian
real', 0, 0, ''),
(29, '\$', 'BND', '%i', 'Brunei
dollar', 0, 0, ''),
(30, 'лв', 'BGN', '%i', 'Bulgarian
lev', 0, 0, ''),
(31, 'Fr ', 'BIF', '%i', 'Burundian
franc', 0, 0, ''),
(32, '៛', 'KHR', '%i', 'Cambodian
riel', 0, 0, ''),
(33, '\$', 'CVE', '%i', 'Cape Verdean
escudo', 0, 0, ''),
(34, '\$', 'KYD', '%i', 'Cayman Islands
dollar', 0, 0, ''),
(35, 'Fr ', 'XAF', '%i', 'Central
African CFA franc', 0, 0, ''),
(36, 'Fr ', 'XPF', '%i', 'CFP
franc', 0, 0, ''),
(37, '\$', 'CLP', '%i', 'Chilean
peso', 0, 0, ''),
(38, '元', 'CNY', '%i', 'Chinese
renminbi yuan', 0, 0, ''),
(39, 'XTS', 'XTS', '%i', 'Codes
specif', 0, 0, ''),
(40, '\$', 'COP', '%i', 'Colombian
peso', 0, 0, ''),
(41, 'Fr ', 'KMF', '%i', 'Comorian
franc', 0, 0, ''),
(42, 'Fr ', 'CDF', '%i', 'Congolese
franc', 0, 0, ''),
(43, '₡', 'CRC', '%i', 'Costa Rican
colón', 0, 0, ''),
(44, 'kn', 'HRK', '%i', 'Croatian
kuna', 0, 0, ''),
(45, '₱', 'CUP', '%i', 'Cuban
peso', 0, 0, ''),
(46, 'Kč', 'CZK', '%i', 'Czech
koruna', 0, 0, ''),
(47, 'kr', 'DKK', '%i', 'Danish
krone', 0, 0, ''),
(48, 'Fr ', 'DJF', '%i', 'Djiboutian
franc', 0, 0, ''),
(49, 'RD\$', 'DOP', '%i', 'Dominican
peso', 0, 0, ''),
(50, '\$', 'XCD', '%i', 'East Caribbean
dollar', 0, 0, ''),
(51, '£', 'EGP', '%i', 'Egyptian
pound', 0, 0, ''),
(52, 'Nfk ', 'ERN', '%i', 'Eritrean
nakfa', 0, 0, ''),
(53, 'kr', 'EEK', '%i', 'Estonian
kroon', 0, 0, ''),
(54, 'ETB', 'ETB', '%i', 'Ethiopian
birr', 0, 0, ''),
(55, 'XBB', 'XBB', '%i', 'European
Mon', 0, 0, ''),
(56, 'XBD', 'XBD', '%i', 'European
Uni', 0, 0, ''),
(57, 'XBC', 'XBC', '%i', 'European
Uni', 0, 0, ''),
(58, '£', 'FKP', '%i', 'Falkland
pound', 0, 0, ''),
(59, '$', 'FJD', '%i', 'Fijian
dollar', 0, 0, ''),
(60, 'D ', 'GMD', '%i', 'Gambian
dalasi', 0, 0, ''),
(61, 'ლ', 'GEL', '%i', 'Georgian
lari', 0, 0, ''),
(62, '₵', 'GHS', '%i', 'Ghanaian
cedi', 0, 0, ''),
(63, '£', 'GIP', '%i', 'Gibraltar
pound', 0, 0, ''),
(64, 'Gold', 'XAU', '%i', 'Gold',
0, 0, ''),
(65, 'Q', 'GTQ', '%i', 'Guatemalan
quetzal', 0, 0, ''),
(66, 'GWP', 'GWP', '%i',
'Guinea-Bissa', 0, 0, ''),
(67, 'Fr ', 'GNF', '%i', 'Guinean
franc', 0, 0, ''),
(68, '$', 'GYD', '%i', 'Guyanese
dollar', 0, 0, ''),
(69, 'G ', 'HTG', '%i', 'Haitian
gourde', 0, 0, ''),
(70, 'L', 'HNL', '%i', 'Honduran
lempira', 0, 0, ''),
(71, '元', 'HKD', '%i', 'Hong Kong
dollar', 0, 0, ''),
(72, 'Ft', 'HUF', '%i', 'Hungarian
forint', 0, 0, ''),
(73, 'kr', 'ISK', '%i', 'Icelandic
króna', 0, 0, ''),
(74, '₨', 'INR', '%i', 'Indian
rupee', 0, 0, ''),
(75, 'Rp', 'IDR', '%i', 'Indonesian
rupiah', 0, 0, ''),
(76, '﷼', 'IRR', '%i', 'Iranian
rial', 0, 0, ''),
(77, 'ع.د', 'IQD', '%i', 'Iraqi
dinar', 0, 0, ''),
(78, '₪', 'ILS', '%i', 'Israeli new
sheqel', 0, 0, ''),
(79, 'J$', 'JMD', '%i', 'Jamaican
dollar', 0, 0, ''),
(80, 'د.ا', 'JOD', '%i', 'Jordanian
dinar', 0, 0, ''),
(81, 'лв', 'KZT', '%i', 'Kazakhstani
tenge', 0, 0, ''),
(82, 'Sh ', 'KES', '%i', 'Kenyan
shilling', 0, 0, ''),
(83, 'د.ك', 'KWD', '%i', 'Kuwaiti
dinar', 0, 0, ''),
(84, 'лв', 'KGS', '%i', 'Kyrgyzstani
som', 0, 0, ''),
(85, '₭', 'LAK', '%i', 'Lao kip',
0, 0, ''),
(86, 'Ls', 'LVL', '%i', 'Latvian
lats', 0, 0, ''),
(87, '£', 'LBP', '%i', 'Lebanese
pound', 0, 0, ''),
(88, 'L ', 'LSL', '%i', 'Lesotho
loti', 0, 0, ''),
(89, '$', 'LRD', '%i', 'Liberian
dollar', 0, 0, ''),
(90, 'ل.د', 'LYD', '%i', 'Libyan
dinar', 0, 0, ''),
(91, 'Lt', 'LTL', '%i', 'Lithuanian
litas', 0, 0, ''),
(92, 'P ', 'MOP', '%i', 'Macanese
pataca', 0, 0, ''),
(93, 'ден', 'MKD', '%i', 'Macedonian
denar', 0, 0, ''),
(94, 'MGA', 'MGA', '%i', 'Malagasy
ariary', 0, 0, ''),
(95, 'MK ', 'MWK', '%i', 'Malawian
kwacha', 0, 0, ''),
(96, 'RM', 'MYR', '%i', 'Malaysian
ringgit', 0, 0, ''),
(97, 'ރ.', 'MVR', '%i', 'Maldivian
rufiyaa', 0, 0, ''),
(98, 'UM ', 'MRO', '%i', 'Mauritanian
ouguiya', 0, 0, ''),
(99, '₨', 'MUR', '%i', 'Mauritian
rupee', 0, 0, ''),
(100, '\$', 'MXN', '%i', 'Mexican
peso', 0, 0, ''),
(101, 'MXV', 'MXV', '%i', 'Mexican
Unid', 0, 0, ''),
(102, 'L ', 'MDL', '%i', 'Moldovan
leu', 0, 0, ''),
(103, '₮', 'MNT', '%i', 'Mongolian
tögrög', 0, 0, ''),
(104, 'د.م.', 'MAD', '%i', 'Moroccan
dirham', 0, 0, ''),
(105, 'MT', 'MZN', '%i', 'Mozambican
metical', 0, 0, ''),
(106, 'BOV', 'BOV', '%i', 'Mvdol',
0, 0, ''),
(107, 'K ', 'MMK', '%i', 'Myanmar
kyat', 0, 0, ''),
(108, '\$', 'NAD', '%i', 'Namibian
dollar', 0, 0, ''),
(109, '₨', 'NPR', '%i', 'Nepalese
rupee', 0, 0, ''),
(110, 'ƒ', 'ANG', '%i', 'Netherlands
Antillean gulden', 0, 0, ''),
(111, 'NT\$', 'TWD', '%i', 'New Taiwan
dollar', 0, 0, ''),
(112, 'C\$', 'NIO', '%i', 'Nicaraguan
córdoba', 0, 0, ''),
(113, '₦', 'NGN', '%i', 'Nigerian
naira', 0, 0, ''),
(114, '₩', 'KPW', '%i', 'North Korean
won', 0, 0, ''),
(115, 'kr', 'NOK', '%i', 'Norwegian
krone', 0, 0, ''),
(116, '﷼', 'OMR', '%i', 'Omani
rial', 0, 0, ''),
(117, '₨', 'PKR', '%i', 'Pakistani
rupee', 0, 0, ''),
(118, 'XPD', 'XPD', '%i',
'Palladium', 0, 0, ''),
(119, 'B/.', 'PAB', '%i', 'Panamanian
balboa', 0, 0, ''),
(120, 'K ', 'PGK', '%i', 'Papua New
Guinean kina', 0, 0, ''),
(121, '₲', 'PYG', '%i', 'Paraguayan
guaraní', 0, 0, ''),
(122, 'S/.', 'PEN', '%i', 'Peruvian
nuevo sol', 0, 0, ''),
(123, '₱', 'PHP', '%i', 'Philippine
peso', 0, 0, ''),
(124, 'XPT', 'XPT', '%i',
'Platinum', 0, 0, ''),
(125, 'zł', 'PLN', '%i', 'Polish
Złoty', 0, 0, ''),
(126, '﷼', 'QAR', '%i', 'Qatari
riyal', 0, 0, ''),
(127, 'lei', 'RON', '%i', 'Romanian
leu', 0, 0, ''),
(128, 'руб', 'RUB', '%i', 'Russian
ruble', 0, 0, ''),
(129, 'Fr ', 'RWF', '%i', 'Rwandan
franc', 0, 0, ''),
(130, '£', 'SHP', '%i', 'Saint Helenian
pound', 0, 0, ''),
(131, '$', 'SVC', '%i', 'Salvadoran
colón', 0, 0, ''),
(132, 'T ', 'WST', '%i', 'Samoan
tala', 0, 0, ''),
(133, 'Db ', 'STD', '%i', 'São Tomé
and Príncipe dobra', 0, 0, ''),
(134, '﷼', 'SAR', '%i', 'Saudi
riyal', 0, 0, ''),
(135, 'XDR', 'XDR', '%i', 'SDR', 0,
0, ''),
(136, 'Дин.', 'RSD', '%i', 'Serbian
dinar', 0, 0, ''),
(137, '₨', 'SCR', '%i', 'Seychellois
rupee', 0, 0, ''),
(138, 'Le ', 'SLL', '%i', 'Sierra
Leonean leone', 0, 0, ''),
(139, 'XAG', 'XAG', '%i', 'Silver',
0, 0, ''),
(140, '\$', 'SGD', '%i', 'Singapore
dollar', 0, 0, ''),
(141, 'Sk ', 'SKK', '%i', 'Slovak
koruna', 0, 0, ''),
(142, '\$', 'SBD', '%i', 'Solomon
Islands dollar', 0, 0, ''),
(143, 'S', 'SOS', '%i', 'Somali
shilling', 0, 0, ''),
(144, 'R', 'ZAR', '%i', 'South African
rand', 0, 0, ''),
(145, '₩', 'KRW', '%i', 'South Korean
won', 0, 0, ''),
(146, '₨', 'LKR', '%i', 'Sri Lankan
rupee', 0, 0, ''),
(147, '£ ', 'SDG', '%i', 'Sudanese
pound', 0, 0, ''),
(148, '$', 'SRD', '%i', 'Surinamese
dollar', 0, 0, ''),
(149, 'L ', 'SZL', '%i', 'Swazi
lilangeni', 0, 0, ''),
(150, 'kr', 'SEK', '%i', 'Swedish
krona', 0, 0, ''),
(151, 'CHF', 'CHF', '%i', 'Swiss
franc', 0, 0, ''),
(152, '£', 'SYP', '%i', 'Syrian
pound', 0, 0, ''),
(153, 'ЅМ', 'TJS', '%i', 'Tajikistani
somoni', 0, 0, ''),
(154, 'Sh ', 'TZS', '%i', 'Tanzanian
shilling', 0, 0, ''),
(155, '฿', 'THB', '%i', 'Thai
baht', 0, 0, ''),
(156, 'XXX', 'XXX', '%i', 'The codes
as', 0, 0, ''),
(157, 'T$ ', 'TOP', '%i', 'Tongan
paʻanga', 0, 0, ''),
(158, 'TT$', 'TTD', '%i', 'Trinidad and
Tobago dollar', 0, 0, ''),
(159, 'د.ت', 'TND', '%i', 'Tunisian
dinar', 0, 0, ''),
(160, 'YTL', 'TRY', '%i', 'Turkish new
lira', 0, 0, ''),
(161, 'm ', 'TMM', '%i', 'Turkmenistani
manat', 0, 0, ''),
(162, 'Sh ', 'UGX', '%i', 'Ugandan
shilling', 0, 0, ''),
(163, 'XFU', 'XFU', '%i',
'UIC-Franc', 0, 0, ''),
(164, '₴', 'UAH', '%i', 'Ukrainian
hryvnia', 0, 0, ''),
(165, 'COU', 'COU', '%i', 'Unidad de
Va', 0, 0, ''),
(166, 'CLF', 'CLF', '%i', 'Unidades de
', 0, 0, ''),
(167, 'د.إ', 'AED', '%i', 'United Arab
Emirates dirham', 0, 0, ''),
(168, 'UYI', 'UYI', '%i', 'Uruguay
Peso', 0, 0, ''),
(169, '\$', 'UYU', '%i', 'Uruguayan
peso', 0, 0, ''),
(170, '\$', 'USN', '%i', 'US Dollar
(Next Day)', 0, 0, ''),
(171, '\$', 'USS', '%i', 'US Dollar
(Second Day)', 0, 0, ''),
(172, 'лв', 'UZS', '%i', 'Uzbekistani
som', 0, 0, ''),
(173, 'Vt ', 'VUV', '%i', 'Vanuatu
vatu', 0, 0, ''),
(174, 'Bs', 'VEF', '%i', 'Venezuelan
bolívar', 0, 0, ''),
(175, '₫', 'VND', '%i', 'Vietnamese
Dong', 0, 0, ''),
(176, 'Fr ', 'XOF', '%i', 'West African
CFA franc', 0, 0, ''),
(177, '€', 'CHE', '%i', 'WIR
Euro', 0, 0, ''),
(178, 'CHW', 'CHW', '%i', 'WIR
Franc', 0, 0, ''),
(179, '﷼', 'YER', '%i', 'Yemeni
rial', 0, 0, ''),
(180, 'ZK ', 'ZMK', '%i', 'Zambian
kwacha', 0, 0, ''),
(181, 'Z\$', 'ZWD', '%i', 'Zimbabwean
dollar', 0, 0, '');
EOD;
		$this->db->setQuery($query);
		$this->db->query();

		$query="
INSERT IGNORE INTO `#__hikashop_zone` (`zone_id`, `zone_namekey`,
`zone_name`, `zone_name_english`, `zone_code_2`, `zone_code_3`,
`zone_type`, `zone_published`) VALUES
(1, 'country_Afghanistan_1', 'افغانستان',
'Afghanistan', 'AF', 'AFG',
'country', 1),
(2, 'country_Albania_2', 'Shqipëria',
'Albania', 'AL', 'ALB', 'country',
1),
(3, 'country_Algeria_3', 'الجزائر',
'Algeria', 'DZ', 'DZA', 'country',
1),
(4, 'country_American_Samoa_4', 'American Samoa',
'American Samoa', 'AS', 'ASM',
'country', 1),
(5, 'country_Andorra_5', 'Andorra',
'Andorra', 'AD', 'AND', 'country',
1),
(6, 'country_Angola_6', 'Angola', 'Angola',
'AO', 'AGO', 'country', 1),
(7, 'country_Anguilla_7', 'Anguilla',
'Anguilla', 'AI', 'AIA', 'country',
1),
(8, 'country_Antarctica_8', 'Antarctica',
'Antarctica', 'AQ', 'ATA',
'country', 1),
(9, 'country_Antigua_and_Barbuda_9', 'Antigua and
Barbuda', 'Antigua and Barbuda', 'AG',
'ATG', 'country', 1),
(10, 'country_Argentina_10', 'Argentina',
'Argentina', 'AR', 'ARG',
'country', 1),
(11, 'country_Armenia_11', 'Հայաստան',
'Armenia', 'AM', 'ARM', 'country',
1),
(12, 'country_Aruba_12', 'Aruba', 'Aruba',
'AW', 'ABW', 'country', 1),
(13, 'country_Australia_13', 'Australia',
'Australia', 'AU', 'AUS',
'country', 1),
(14, 'country_Austria_14', 'Österreich',
'Austria', 'AT', 'AUT', 'country',
1),
(15, 'country_Azerbaijan_15', 'Azərbaycan',
'Azerbaijan', 'AZ', 'AZE',
'country', 1),
(16, 'country_Bahamas_16', 'Bahamas',
'Bahamas', 'BS', 'BHS', 'country',
1),
(17, 'country_Bahrain_17', 'البحرين',
'Bahrain', 'BH', 'BHR', 'country',
1),
(18, 'country_Bangladesh_18',
'বাংলাদেশ''', 'Bangladesh',
'BD', 'BGD', 'country', 1),
(19, 'country_Barbados_19', 'Barbados',
'Barbados', 'BB', 'BRB', 'country',
1),
(20, 'country_Belarus_20', 'Беларусь',
'Belarus', 'BY', 'BLR', 'country',
1),
(21, 'country_Belgium_21', 'België • Belgique •
Belgien', 'Belgium', 'BE', 'BEL',
'country', 1),
(22, 'country_Belize_22', 'Belize', 'Belize',
'BZ', 'BLZ', 'country', 1),
(23, 'country_Benin_23', 'Bénin', 'Benin',
'BJ', 'BEN', 'country', 1),
(24, 'country_Bermuda_24', 'Bermuda',
'Bermuda', 'BM', 'BMU', 'country',
1),
(25, 'country_Bhutan_25',
'འབྲུག་ཡུལ་', 'Bhutan',
'BT', 'BTN', 'country', 1),
(26, 'country_Bolivia_26', 'Wuliwya • Volívia •
Buliwya', 'Bolivia', 'BO', 'BOL',
'country', 1),
(27, 'country_Bosnia_and_Herzegowina_27', 'Bosna i
Hercegovina', 'Bosnia and Herzegowina', 'BA',
'BIH', 'country', 1),
(28, 'country_Botswana_28', 'Botswana',
'Botswana', 'BW', 'BWA', 'country',
1),
(29, 'country_Bouvet_Island_29', 'Bouvet Island',
'Bouvet Island', 'BV', 'BVT',
'country', 1),
(30, 'country_Brazil_30', 'Brazil', 'Brazil',
'BR', 'BRA', 'country', 1),
(31, 'country_British_Indian_Ocean_Territory_31', 'British
Indian Ocean Territory', 'British Indian Ocean Territory',
'IO', 'IOT', 'country', 1),
(32, 'country_Brunei_Darussalam_32', 'Brunei
Darussalam', 'Brunei Darussalam', 'BN',
'BRN', 'country', 1),
(33, 'country_Bulgaria_33', 'България',
'Bulgaria', 'BG', 'BGR', 'country',
1),
(34, 'country_Burkina_Faso_34', 'Burkina Faso',
'Burkina Faso', 'BF', 'BFA',
'country', 1),
(35, 'country_Burundi_35', 'Uburundi',
'Burundi', 'BI', 'BDI', 'country',
1),
(36, 'country_Cambodia_36', 'កម្ពុជា',
'Cambodia', 'KH', 'KHM', 'country',
1),
(37, 'country_Cameroon_37', 'Cameroun',
'Cameroon', 'CM', 'CMR', 'country',
1),
(38, 'country_Canada_38', 'Canada', 'Canada',
'CA', 'CAN', 'country', 1),
(39, 'country_Cape_Verde_39', 'Cabo Verde', 'Cape
Verde', 'CV', 'CPV', 'country', 1),
(40, 'country_Cayman_Islands_40', 'Cayman Islands',
'Cayman Islands', 'KY', 'CYM',
'country', 1),
(41, 'country_Central_African_Republic_41', 'Centrafrique
• Bêafrîka', 'Central African Republic', 'CF',
'CAF', 'country', 1),
(42, 'country_Chad_42', 'Tchad • تشاد',
'Chad', 'TD', 'TCD', 'country',
1),
(43, 'country_Chile_43', 'Chile', 'Chile',
'CL', 'CHL', 'country', 1),
(44, 'country_China_44', '中國 • 中国',
'China', 'CN', 'CHN', 'country',
1),
(45, 'country_Christmas_Island_45', 'Christmas Island',
'Christmas Island', 'CX', 'CXR',
'country', 1),
(46, 'country_Cocos__Keeling__Islands_46', 'Cocos (Keeling)
Islands', 'Cocos (Keeling) Islands', 'CC',
'CCK', 'country', 1),
(47, 'country_Colombia_47', 'Colombia',
'Colombia', 'CO', 'COL', 'country',
1),
(48, 'country_Comoros_48', 'Komori • Comores • جزر
القمر', 'Comoros', 'KM', 'COM',
'country', 1),
(49, 'country_Congo_49', 'Congo', 'Congo',
'CG', 'COG', 'country', 1),
(50, 'country_Cook_Islands_50', 'Cook Islands',
'Cook Islands', 'CK', 'COK',
'country', 1),
(51, 'country_Costa_Rica_51', 'Costa Rica', 'Costa
Rica', 'CR', 'CRI', 'country', 1),
(52, 'country_Cote_D_Ivoire_52', 'Cote
D''Ivoire', 'Cote D''Ivoire',
'CI', 'CIV', 'country', 1),
(53, 'country_Croatia_53', 'Hrvatska',
'Croatia', 'HR', 'HRV', 'country',
1),
(54, 'country_Cuba_54', 'Cuba', 'Cuba',
'CU', 'CUB', 'country', 1),
(55, 'country_Cyprus_55', 'Κύπρος • Kıbrıs',
'Cyprus', 'CY', 'CYP', 'country',
1),
(56, 'country_Czech_Republic_56', 'Česko', 'Czech
Republic', 'CZ', 'CZE', 'country', 1),
(57, 'country_Denmark_57', 'Danmark',
'Denmark', 'DK', 'DNK', 'country',
1),
(58, 'country_Djibouti_58', 'جيبوتي',
'Djibouti', 'DJ', 'DJI', 'country',
1),
(59, 'country_Dominica_59', 'Dominica',
'Dominica', 'DM', 'DMA', 'country',
1),
(60, 'country_Dominican_Republic_60', 'República
Dominicana', 'Dominican Republic', 'DO',
'DOM', 'country', 1),
(61, 'country_East_Timor_61', 'Timór-Leste',
'East Timor', 'TP', 'TMP',
'country', 1),
(62, 'country_Ecuador_62', 'Ecuador',
'Ecuador', 'EC', 'ECU', 'country',
1),
(63, 'country_Egypt_63', 'مصر', 'Egypt',
'EG', 'EGY', 'country', 1),
(64, 'country_El_Salvador_64', 'El Salvador', 'El
Salvador', 'SV', 'SLV', 'country', 1),
(65, 'country_Equatorial_Guinea_65', 'Guinée
équatoriale', 'Equatorial Guinea', 'GQ',
'GNQ', 'country', 1),
(66, 'country_Eritrea_66', 'ኤርትራ •
إرتريا', 'Eritrea', 'ER', 'ERI',
'country', 1),
(67, 'country_Estonia_67', 'Eesti',
'Estonia', 'EE', 'EST', 'country',
1),
(68, 'country_Ethiopia_68', 'ኢትዮጵያ',
'Ethiopia', 'ET', 'ETH', 'country',
1),
(69, 'country_Falkland_Islands__Malvinas__69', 'Falkland
Islands (Malvinas)', 'Falkland Islands (Malvinas)',
'FK', 'FLK', 'country', 1),
(70, 'country_Faroe_Islands_70', 'Faroe Islands',
'Faroe Islands', 'FO', 'FRO',
'country', 1),
(71, 'country_Fiji_71', 'Viti • फ़िजी',
'Fiji', 'FJ', 'FJI', 'country',
1),
(72, 'country_Finland_72', 'Suomi',
'Finland', 'FI', 'FIN', 'country',
1),
(73, 'country_France_73', 'France', 'France',
'FR', 'FRA', 'country', 1),
(74, 'country_France__Metropolitan_74', 'France,
Metropolitan', 'France, Metropolitan', 'FX',
'FXX', 'country', 0),
(75, 'country_French_Guiana_75', 'French Guiana',
'French Guiana', 'GF', 'GUF',
'country', 1),
(76, 'country_French_Polynesia_76', 'French Polynesia',
'French Polynesia', 'PF', 'PYF',
'country', 1),
(77, 'country_French_Southern_Territories_77', 'French
Southern Territories', 'French Southern Territories',
'TF', 'ATF', 'country', 1),
(78, 'country_Gabon_78', 'Gabon', 'Gabon',
'GA', 'GAB', 'country', 1),
(79, 'country_Gambia_79', 'Gambia', 'Gambia',
'GM', 'GMB', 'country', 1),
(80, 'country_Georgia_80',
'საქართველო', 'Georgia',
'GE', 'GEO', 'country', 1),
(81, 'country_Germany_81', 'Deutschland',
'Germany', 'DE', 'DEU', 'country',
1),
(82, 'country_Ghana_82', 'Ghana', 'Ghana',
'GH', 'GHA', 'country', 1),
(83, 'country_Gibraltar_83', 'Gibraltar',
'Gibraltar', 'GI', 'GIB',
'country', 1),
(84, 'country_Greece_84', 'Ελλάδα',
'Greece', 'GR', 'GRC', 'country',
1),
(85, 'country_Greenland_85', 'Greenland',
'Greenland', 'GL', 'GRL',
'country', 1),
(86, 'country_Grenada_86', 'Grenada',
'Grenada', 'GD', 'GRD', 'country',
1),
(87, 'country_Guadeloupe_87', 'Guadeloupe',
'Guadeloupe', 'GP', 'GLP', 'state',
1),
(88, 'country_Guam_88', 'Guam', 'Guam',
'GU', 'GUM', 'country', 1),
(89, 'country_Guatemala_89', 'Guatemala',
'Guatemala', 'GT', 'GTM',
'country', 1),
(90, 'country_Guinea_90', 'Guinée',
'Guinea', 'GN', 'GIN', 'country',
1),
(91, 'country_Guinea_Bissau_91', 'Guiné-Bissau',
'Guinea-Bissau', 'GW', 'GNB',
'country', 1),
(92, 'country_Guyana_92', 'Guyana', 'Guyana',
'GY', 'GUY', 'country', 1),
(93, 'country_Haiti_93', 'Haïti • Ayiti',
'Haiti', 'HT', 'HTI', 'country',
1),
(94, 'country_Heard_and_McDonald_Islands_94', 'Heard and
McDonald Islands', 'Heard and McDonald Islands',
'HM', 'HMD', 'country', 1),
(95, 'country_Honduras_95', 'Honduras',
'Honduras', 'HN', 'HND', 'country',
1),
(96, 'country_Hong_Kong_96', '香港', 'Hong
Kong', 'HK', 'HKG', 'country', 1),
(97, 'country_Hungary_97', 'Magyarország',
'Hungary', 'HU', 'HUN', 'country',
1),
(98, 'country_Iceland_98', 'Ísland',
'Iceland', 'IS', 'ISL', 'country',
1),
(99, 'country_India_99', 'भारत',
'India', 'IN', 'IND', 'country',
1),
(100, 'country_Indonesia_100', 'Indonesia',
'Indonesia', 'ID', 'IDN',
'country', 1),
(101, 'country_Iran_101', 'ايران',
'Iran', 'IR', 'IRN', 'country',
1),
(102, 'country_Iraq_102', 'عێراق •
العراق', 'Iraq', 'IQ', 'IRQ',
'country', 1),
(103, 'country_Ireland_103', 'Éire',
'Ireland', 'IE', 'IRL', 'country',
1),
(104, 'country_Israel_104', 'إسرائيل •
ישראל', 'Israel', 'IL', 'ISR',
'country', 1),
(105, 'country_Italy_105', 'Italia', 'Italy',
'IT', 'ITA', 'country', 1),
(106, 'country_Jamaica_106', 'Jamaica',
'Jamaica', 'JM', 'JAM', 'country',
1),
(107, 'country_Japan_107', '日本', 'Japan',
'JP', 'JPN', 'country', 1),
(108, 'country_Jordan_108', 'الأردنّ',
'Jordan', 'JO', 'JOR', 'country',
1),
(109, 'country_Kazakhstan_109', 'Қазақстан',
'Kazakhstan', 'KZ', 'KAZ',
'country', 1),
(110, 'country_Kenya_110', 'Kenya', 'Kenya',
'KE', 'KEN', 'country', 1),
(111, 'country_Kiribati_111', 'Kiribati',
'Kiribati', 'KI', 'KIR', 'country',
1),
(112, 'country_Korea__North_112', '북조선',
'Korea, North', 'KP', 'PRK',
'country', 1),
(113, 'country_Korea__South_113', '한국',
'Korea, South', 'KR', 'KOR',
'country', 1),
(114, 'country_Kuwait_114', 'الكويت',
'Kuwait', 'KW', 'KWT', 'country',
1),
(115, 'country_Kyrgyzstan_115', 'Кыргызстан',
'Kyrgyzstan', 'KG', 'KGZ',
'country', 1),
(116, 'country_Laos_116', 'ເມືອງລາວ',
'Laos', 'LA', 'LAO', 'country',
1),
(117, 'country_Latvia_117', 'Latvija',
'Latvia', 'LV', 'LVA', 'country',
1),
(118, 'country_Lebanon_118', 'لبنان',
'Lebanon', 'LB', 'LBN', 'country',
1),
(119, 'country_Lesotho_119', 'Lesotho',
'Lesotho', 'LS', 'LSO', 'country',
1),
(120, 'country_Liberia_120', 'Liberia',
'Liberia', 'LR', 'LBR', 'country',
1),
(121, 'country_Libyan_Arab_Jamahiriya_121', 'Libyan Arab
Jamahiriya', 'Libyan Arab Jamahiriya', 'LY',
'LBY', 'country', 1),
(122, 'country_Liechtenstein_122', 'Liechtenstein',
'Liechtenstein', 'LI', 'LIE',
'country', 1),
(123, 'country_Lithuania_123', 'Lietuva',
'Lithuania', 'LT', 'LTU',
'country', 1),
(124, 'country_Luxembourg_124', 'Luxemburg •
Lëtzebuerg', 'Luxembourg', 'LU', 'LUX',
'country', 1),
(125, 'country_Macau_125', '澳门 • 澳門',
'Macau', 'MO', 'MAC', 'country',
1),
(126, 'country_Macedonia_126', 'Македонија',
'Macedonia', 'MK', 'MKD',
'country', 1),
(127, 'country_Madagascar_127', 'Madagasikara',
'Madagascar', 'MG', 'MDG',
'country', 1),
(128, 'country_Malawi_128', 'Malaŵi',
'Malawi', 'MW', 'MWI', 'country',
1),
(129, 'country_Malaysia_129', 'Malaysia',
'Malaysia', 'MY', 'MYS', 'country',
1),
(130, 'country_Maldives_130',
'ދިވެހިރާއްޖެ', 'Maldives', 'MV',
'MDV', 'country', 1),
(131, 'country_Mali_131', 'Mali', 'Mali',
'ML', 'MLI', 'country', 1),
(132, 'country_Malta_132', 'Malta', 'Malta',
'MT', 'MLT', 'country', 1),
(133, 'country_Marshall_Islands_133', 'Aelōn̄ in
M̧ajeļ', 'Marshall Islands', 'MH',
'MHL', 'country', 1),
(134, 'country_Martinique_134', 'Martinique',
'Martinique', 'MQ', 'MTQ', 'state',
1),
(135, 'country_Mauritania_135', 'موريتانيا •
Mauritanie', 'Mauritania', 'MR', 'MRT',
'country', 1),
(136, 'country_Mauritius_136', 'Maurice',
'Mauritius', 'MU', 'MUS',
'country', 1),
(137, 'country_Mayotte_137', 'Mayotte',
'Mayotte', 'YT', 'MYT', 'country',
1),
(138, 'country_Mexico_138', 'México • Mēxihco',
'Mexico', 'MX', 'MEX', 'country',
1),
(139, 'country_Micronesia_139', 'Micronesia',
'Micronesia', 'FM', 'FSM',
'country', 1),
(140, 'country_Moldova_140', 'Moldova',
'Moldova', 'MD', 'MDA', 'country',
1),
(141, 'country_Monaco_141', 'Monaco',
'Monaco', 'MC', 'MCO', 'country',
1),
(142, 'country_Mongolia_142', 'Монгол улс',
'Mongolia', 'MN', 'MNG', 'country',
1),
(143, 'country_Montserrat_143', 'Montserrat',
'Montserrat', 'MS', 'MSR',
'country', 1),
(144, 'country_Morocco_144', 'المغرب',
'Morocco', 'MA', 'MAR', 'country',
1),
(145, 'country_Mozambique_145', 'Moçambique',
'Mozambique', 'MZ', 'MOZ',
'country', 1),
(146, 'country_Myanmar_146', 'Myanmar',
'Myanmar', 'MM', 'MMR', 'country',
1),
(147, 'country_Namibia_147', 'Namibia',
'Namibia', 'NA', 'NAM', 'country',
1),
(148, 'country_Nauru_148', 'Nauru', 'Nauru',
'NR', 'NRU', 'country', 1),
(149, 'country_Nepal_149', 'नेपाल',
'Nepal', 'NP', 'NPL', 'country',
1),
(150, 'country_Netherlands_150', 'Nederland',
'Netherlands', 'NL', 'NLD',
'country', 1),
(151, 'country_Netherlands_Antilles_151', 'Netherlands
Antilles', 'Netherlands Antilles', 'AN',
'ANT', 'country', 1),
(152, 'country_New_Caledonia_152',
'Nouvelle-Calédonie', 'New Caledonia', 'NC',
'NCL', 'country', 1),
(153, 'country_New_Zealand_153', 'Aotearoa', 'New
Zealand', 'NZ', 'NZL', 'country', 1),
(154, 'country_Nicaragua_154', 'Nicaragua',
'Nicaragua', 'NI', 'NIC',
'country', 1),
(155, 'country_Niger_155', 'Niger', 'Niger',
'NE', 'NER', 'country', 1),
(156, 'country_Nigeria_156', 'Nigeria',
'Nigeria', 'NG', 'NGA', 'country',
1),
(157, 'country_Niue_157', 'Niue', 'Niue',
'NU', 'NIU', 'country', 1),
(158, 'country_Norfolk_Island_158', 'Norfolk Island',
'Norfolk Island', 'NF', 'NFK',
'country', 1),
(159, 'country_Northern_Mariana_Islands_159', 'Northern
Mariana Islands', 'Northern Mariana Islands',
'MP', 'MNP', 'country', 1),
(160, 'country_Norway_160', 'Norge / Noreg',
'Norway', 'NO', 'NOR', 'country',
1),
(161, 'country_Oman_161', 'عمان', 'Oman',
'OM', 'OMN', 'country', 1),
(162, 'country_Pakistan_162', 'پاکستان',
'Pakistan', 'PK', 'PAK', 'country',
1),
(163, 'country_Palau_163', 'Belau', 'Palau',
'PW', 'PLW', 'country', 1),
(164, 'country_Panama_164', 'Panamá',
'Panama', 'PA', 'PAN', 'country',
1),
(165, 'country_Papua_New_Guinea_165', 'Papua Niugini',
'Papua New Guinea', 'PG', 'PNG',
'country', 1),
(166, 'country_Paraguay_166', 'Paraguái',
'Paraguay', 'PY', 'PRY', 'country',
1),
(167, 'country_Peru_167', 'Perú', 'Peru',
'PE', 'PER', 'country', 1),
(168, 'country_Philippines_168', 'Pilipinas',
'Philippines', 'PH', 'PHL',
'country', 1),
(169, 'country_Pitcairn_169', 'Pitcairn',
'Pitcairn', 'PN', 'PCN', 'country',
1),
(170, 'country_Poland_170', 'Polska',
'Poland', 'PL', 'POL', 'country',
1),
(171, 'country_Portugal_171', 'Portugal',
'Portugal', 'PT', 'PRT', 'country',
1),
(172, 'country_Puerto_Rico_172', 'Puerto Rico',
'Puerto Rico', 'PR', 'PRI',
'country', 1),
(173, 'country_Qatar_173', 'دولة قطر',
'Qatar', 'QA', 'QAT', 'country',
1),
(174, 'country_Reunion_174', 'Reunion',
'Reunion', 'RE', 'REU', 'state',
1),
(175, 'country_Romania_175', 'România',
'Romania', 'RO', 'ROM', 'country',
1),
(176, 'country_Russia_176', 'Россия',
'Russia', 'RU', 'RUS', 'country',
1),
(177, 'country_Rwanda_177', 'Rwanda',
'Rwanda', 'RW', 'RWA', 'country',
1),
(178, 'country_Saint_Kitts_and_Nevis_178', 'Saint Kitts and
Nevis', 'Saint Kitts and Nevis', 'KN',
'KNA', 'country', 1),
(179, 'country_Saint_Lucia_179', 'Saint Lucia',
'Saint Lucia', 'LC', 'LCA',
'country', 1),
(180, 'country_Saint_Vincent_and_the_Grenadines_180', 'Saint
Vincent and the Grenadines', 'Saint Vincent and the
Grenadines', 'VC', 'VCT', 'country',
1),
(181, 'country_Samoa_181', 'Sāmoa', 'Samoa',
'WS', 'WSM', 'country', 1),
(182, 'country_San_Marino_182', 'San Marino', 'San
Marino', 'SM', 'SMR', 'country', 1),
(183, 'country_Sao_Tome_and_Principe_183', 'São Tomé e
Príncipe', 'Sao Tome and Principe', 'ST',
'STP', 'country', 1),
(184, 'country_Saudi_Arabia_184', 'العربية
السعودية', 'Saudi Arabia', 'SA',
'SAU', 'country', 1),
(185, 'country_Senegal_185', 'Sénégal',
'Senegal', 'SN', 'SEN', 'country',
1),
(186, 'country_Seychelles_186', 'Sesel',
'Seychelles', 'SC', 'SYC',
'country', 1),
(187, 'country_Sierra_Leone_187', 'Sierra Leone',
'Sierra Leone', 'SL', 'SLE',
'country', 1),
(188, 'country_Singapore_188', '新加坡 • Singapura •
சிங்கப்பூர்', 'Singapore',
'SG', 'SGP', 'country', 1),
(189, 'country_Slovakia_189', 'Slovensko',
'Slovakia', 'SK', 'SVK', 'country',
1),
(190, 'country_Slovenia_190', 'Slovenija',
'Slovenia', 'SI', 'SVN', 'country',
1),
(191, 'country_Solomon_Islands_191', 'Solomon Islands',
'Solomon Islands', 'SB', 'SLB',
'country', 1),
(192, 'country_Somalia_192', 'Soomaaliya •
الصومال', 'Somalia', 'SO', 'SOM',
'country', 1),
(193, 'country_South_Africa_193', 'Suid-Afrika',
'South Africa', 'ZA', 'ZAF',
'country', 1),
(194, 'country_South_Georgia_and_the_South_Sandwich_Islands_194',
'South Georgia and the South Sandwich Islands', 'South
Georgia and the South Sandwich Islands', 'GS',
'SGS', 'country', 0),
(195, 'country_Spain_195', 'España',
'Spain', 'ES', 'ESP', 'country',
1),
(196, 'country_Sri_Lanka_196', 'ශ්‍රී
ලංකාව • இலங்கை', 'Sri Lanka',
'LK', 'LKA', 'country', 1),
(197, 'country_St__Helena_197', 'St. Helena', 'St.
Helena', 'SH', 'SHN', 'country', 1),
(198, 'country_St__Pierre_and_Miquelon_198', 'St. Pierre and
Miquelon', 'St. Pierre and Miquelon', 'PM',
'SPM', 'country', 1),
(199, 'country_Sudan_199', 'السودان',
'Sudan', 'SD', 'SDN', 'country',
1),
(200, 'country_Suriname_200', 'Suriname',
'Suriname', 'SR', 'SUR', 'country',
1),
(201, 'country_Svalbard_and_Jan_Mayen_Islands_201',
'Svalbard and Jan Mayen Islands', 'Svalbard and Jan Mayen
Islands', 'SJ', 'SJM', 'country', 1),
(202, 'country_Swaziland_202', 'eSwatini',
'Swaziland', 'SZ', 'SWZ',
'country', 1),
(203, 'country_Sweden_203', 'Sverige',
'Sweden', 'SE', 'SWE', 'country',
1),
(204, 'country_Switzerland_204', 'Schweiz • Suisse •
Svizzera • Svizra', 'Switzerland', 'CH',
'CHE', 'country', 1),
(205, 'country_Syrian_Arab_Republic_205',
'سورية‎', 'Syrian Arab Republic',
'SY', 'SYR', 'country', 1),
(206, 'country_Taiwan_206', '臺灣 • 台灣',
'Taiwan', 'TW', 'TWN', 'country',
1),
(207, 'country_Tajikistan_207', 'Тоҷикистон',
'Tajikistan', 'TJ', 'TJK',
'country', 1),
(208, 'country_Tanzania_208', 'Tanzania',
'Tanzania', 'TZ', 'TZA', 'country',
1),
(209, 'country_Thailand_209',
'ประเทศไทย', 'Thailand',
'TH', 'THA', 'country', 1),
(210, 'country_Togo_210', 'Togo', 'Togo',
'TG', 'TGO', 'country', 1),
(211, 'country_Tokelau_211', 'Tokelau',
'Tokelau', 'TK', 'TKL', 'country',
1),
(212, 'country_Tonga_212', 'Tonga', 'Tonga',
'TO', 'TON', 'country', 1),
(213, 'country_Trinidad_and_Tobago_213', 'Trinidad and
Tobago', 'Trinidad and Tobago', 'TT',
'TTO', 'country', 1),
(214, 'country_Tunisia_214', 'تونس‎',
'Tunisia', 'TN', 'TUN', 'country',
1),
(215, 'country_Turkey_215', 'Türkiye',
'Turkey', 'TR', 'TUR', 'country',
1),
(216, 'country_Turkmenistan_216', 'Türkmenistan',
'Turkmenistan', 'TM', 'TKM',
'country', 1),
(217, 'country_Turks_and_Caicos_Islands_217', 'Turks and
Caicos Islands', 'Turks and Caicos Islands', 'TC',
'TCA', 'country', 1),
(218, 'country_Tuvalu_218', 'Tuvalu',
'Tuvalu', 'TV', 'TUV', 'country',
1),
(219, 'country_Uganda_219', 'Uganda',
'Uganda', 'UG', 'UGA', 'country',
1),
(220, 'country_Ukraine_220', 'Україна',
'Ukraine', 'UA', 'UKR', 'country',
1),
(221, 'country_United_Arab_Emirates_221', 'الإمارات
العربية المتحدة', 'United Arab Emirates',
'AE', 'ARE', 'country', 1),
(222, 'country_United_Kingdom_222', 'United Kingdom',
'United Kingdom', 'GB', 'GBR',
'country', 1),
(223, 'country_United_States_of_America_223', 'United States
of America', 'United States of America', 'US',
'USA', 'country', 1),
(224, 'country_United_States_Minor_Outlying_Islands_224',
'United States Minor Outlying Islands', 'United States Minor
Outlying Islands', 'UM', 'UMI',
'country', 1),
(225, 'country_Uruguay_225', 'Uruguay',
'Uruguay', 'UY', 'URY', 'country',
1),
(226, 'country_Uzbekistan_226', 'Oʻzbekiston',
'Uzbekistan', 'UZ', 'UZB',
'country', 1),
(227, 'country_Vanuatu_227', 'Vanuatu',
'Vanuatu', 'VU', 'VUT', 'country',
1),
(228, 'country_Vatican_City_State__Holy_See__228',
'Vaticanum', 'Vatican City State', 'VA',
'VAT', 'country', 1),
(229, 'country_Venezuela_229', 'Venezuela',
'Venezuela', 'VE', 'VEN',
'country', 1),
(230, 'country_Vietnam_230', 'Việt Nam',
'Vietnam', 'VN', 'VNM', 'country',
1),
(231, 'country_Virgin_Islands__British__231', 'Virgin
Islands (British)', 'Virgin Islands (British)',
'VG', 'VGB', 'country', 1),
(232, 'country_Virgin_Islands__U_S___232', 'Virgin Islands
(U.S.)', 'Virgin Islands (U.S.)', 'VI',
'VIR', 'country', 1),
(233, 'country_Wallis_and_Futuna_Islands_233', 'Wallis and
Futuna Islands', 'Wallis and Futuna Islands',
'WF', 'WLF', 'country', 1),
(234, 'country_Western_Sahara_234', 'الصحراء
الغربية', 'Western Sahara', 'EH',
'ESH', 'country', 1),
(235, 'country_Yemen_235', 'اليمن',
'Yemen', 'YE', 'YEM', 'country',
1),
(236, 'country_Yugoslavia_236', 'Yugoslavia',
'Yugoslavia', 'YU', 'YUG',
'country', 0),
(237, 'country_Zaire_237', 'Zaire', 'Zaire',
'ZR', 'ZAR', 'country', 1),
(238, 'country_Zambia_238', 'Zambia',
'Zambia', 'ZM', 'ZMB', 'country',
1),
(239, 'country_Zimbabwe_239', 'Zimbabwe',
'Zimbabwe', 'ZW', 'ZWE', 'country',
1),
(240, 'state_______________240', 'بد خشان',
'بد خشان', '', 'BDS',
'state', 1),
(241, 'state______________241', 'بادغیس',
'بادغیس', '', 'BDG', 'state',
1),
(242, 'state____________242', 'بغلان',
'بغلان', '', 'BGL', 'state',
1),
(243, 'state________243', 'بلخ', 'بلخ',
'', 'BAL', 'state', 1),
(244, 'state______________244', 'بامیان',
'بامیان', '', 'BAM', 'state',
1),
(245, 'state________________245', 'دایکندی',
'دایکندی', '', 'DAY',
'state', 1),
(246, 'state__________246', 'فراه',
'فراه', '', 'FRA', 'state',
1),
(247, 'state______________247', 'فارياب',
'فارياب', '', 'FYB', 'state',
1),
(248, 'state__________248', 'غزنى',
'غزنى', '', 'GHA', 'state',
1),
(249, 'state________249', 'غور', 'غور',
'', 'GHO', 'state', 1),
(250, 'state____________250', 'هلمند',
'هلمند', '', 'HEL', 'state',
1),
(251, 'state__________251', 'هرات',
'هرات', '', 'HER', 'state',
1),
(252, 'state______________252', 'جوزجان',
'جوزجان', '', 'JOW', 'state',
1),
(253, 'state__________253', 'کابل',
'کابل', '', 'KAB', 'state',
1),
(254, 'state______________254', 'قندھار',
'قندھار', '', 'KAN', 'state',
1),
(255, 'state______________255', 'کاپيسا',
'کاپيسا', '', 'KAP', 'state',
1),
(256, 'state__________256', 'خوست',
'خوست', '', 'KHO', 'state',
1),
(257, 'state____________257', 'کُنَر',
'کُنَر', '', 'KNR', 'state',
1),
(258, 'state____________258', 'كندوز',
'كندوز', '', 'KDZ', 'state',
1),
(259, 'state____________259', 'لغمان',
'لغمان', '', 'LAG', 'state',
1),
(260, 'state__________260', 'لوګر',
'لوګر', '', 'LOW', 'state',
1),
(261, 'state________________261', 'ننگرهار',
'ننگرهار', '', 'NAN',
'state', 1),
(262, 'state______________262', 'نیمروز',
'نیمروز', '', 'NIM', 'state',
1),
(263, 'state________________263', 'نورستان',
'نورستان', '', 'NUR',
'state', 1),
(264, 'state________________264', 'ؤروزگان',
'ؤروزگان', '', 'ORU',
'state', 1),
(265, 'state____________265', 'پکتیا',
'پکتیا', '', 'PIA', 'state',
1),
(266, 'state______________266', 'پکتيکا',
'پکتيکا', '', 'PKA', 'state',
1),
(267, 'state_______________267', 'پنج شیر',
'پنج شیر', '', 'PAN',
'state', 1),
(268, 'state____________268', 'پروان',
'پروان', '', 'PAR', 'state',
1),
(269, 'state______________269', 'سمنگان',
'سمنگان', '', 'SAM', 'state',
1),
(270, 'state___________270', 'سر پل', 'سر
پل', '', 'SAR', 'state', 1),
(271, 'state__________271', 'تخار',
'تخار', '', 'TAK', 'state',
1),
(272, 'state__________272', 'وردک',
'وردک', '', 'WAR', 'state',
1),
(273, 'state__________273', 'زابل',
'زابل', '', 'ZAB', 'state',
1),
(274, 'state_Beratit_274', 'Beratit',
'Beratit', '', 'BR', 'state', 1),
(275, 'state_Bulqiz__s_275', 'Bulqizës',
'Bulqizës', '', 'BU', 'state',
1),
(276, 'state_Dibr__s_276', 'Dibrës',
'Dibrës', '', 'DI', 'state', 1),
(277, 'state_Delvin__s_277', 'Delvinës',
'Delvinës', '', 'DL', 'state',
1),
(278, 'state_Durr__sit_278', 'Durrësit',
'Durrësit', '', 'DR', 'state',
1),
(279, 'state_Devollit_279', 'Devollit',
'Devollit', '', 'DV', 'state', 1),
(280, 'state_Elbasanit_280', 'Elbasanit',
'Elbasanit', '', 'EL', 'state',
1),
(281, 'state_Kolonj__s_281', 'Kolonjës',
'Kolonjës', '', 'ER', 'state',
1),
(282, 'state_Fierit_282', 'Fierit', 'Fierit',
'', 'FR', 'state', 1),
(283, 'state_Gjirokastr__s_283', 'Gjirokastrës',
'Gjirokastrës', '', 'GJ', 'state',
1),
(284, 'state_Gramshit_284', 'Gramshit',
'Gramshit', '', 'GR', 'state', 1),
(285, 'state_Hasit_285', 'Hasit', 'Hasit',
'', 'HA', 'state', 1),
(286, 'state_Kavaj__s_286', 'Kavajës',
'Kavajës', '', 'KA', 'state', 1),
(287, 'state_Kurbinit_287', 'Kurbinit',
'Kurbinit', '', 'KB', 'state', 1),
(288, 'state_Ku__ov__s_288', 'Kuçovës',
'Kuçovës', '', 'KC', 'state',
1),
(289, 'state_Kor____s_289', 'Korçës',
'Korçës', '', 'KO', 'state', 1),
(290, 'state_Kruj__s_290', 'Krujës',
'Krujës', '', 'KR', 'state', 1),
(291, 'state_Kuk__sit_291', 'Kukësit',
'Kukësit', '', 'KU', 'state', 1),
(292, 'state_Librazhdit_292', 'Librazhdit',
'Librazhdit', '', 'LB', 'state',
1),
(293, 'state_Lezh__s_293', 'Lezhës',
'Lezhës', '', 'LE', 'state', 1),
(294, 'state_Lushnj__s_294', 'Lushnjës',
'Lushnjës', '', 'LU', 'state',
1),
(295, 'state_Mallakastr__s_295', 'Mallakastrës',
'Mallakastrës', '', 'MK', 'state',
1),
(296, 'state_Mal__sis___s___Madhe_296', 'Malësisë së
Madhe', 'Malësisë së Madhe', '',
'MM', 'state', 1),
(297, 'state_Mirdit__s_297', 'Mirditës',
'Mirditës', '', 'MR', 'state',
1),
(298, 'state_Matit_298', 'Matit', 'Matit',
'', 'MT', 'state', 1),
(299, 'state_Pogradecit_299', 'Pogradecit',
'Pogradecit', '', 'PG', 'state',
1),
(300, 'state_Peqinit_300', 'Peqinit',
'Peqinit', '', 'PQ', 'state', 1),
(301, 'state_P__rmetit_301', 'Përmetit',
'Përmetit', '', 'PR', 'state',
1),
(302, 'state_Puk__s_302', 'Pukës', 'Pukës',
'', 'PU', 'state', 1),
(303, 'state_Shkodr__s_303', 'Shkodrës',
'Shkodrës', '', 'SH', 'state',
1),
(304, 'state_Skraparit_304', 'Skraparit',
'Skraparit', '', 'SK', 'state',
1),
(305, 'state_Sarand__s_305', 'Sarandës',
'Sarandës', '', 'SR', 'state',
1),
(306, 'state_Tepelen__s_306', 'Tepelenës',
'Tepelenës', '', 'TE', 'state',
1),
(307, 'state_Tropoj__s_307', 'Tropojës',
'Tropojës', '', 'TP', 'state',
1),
(308, 'state_Tiran__s_308', 'Tiranës',
'Tiranës', '', 'TR', 'state', 1),
(309, 'state_Vlor__s_309', 'Vlorës',
'Vlorës', '', 'VL', 'state', 1),
(310, 'state_______________________310', 'ولاية
أدرار', 'ولاية أدرار', '',
'01', 'state', 1),
(311, 'state_______________________311', 'ولاية
الشلف', 'ولاية الشلف', '',
'02', 'state', 1),
(312, 'state___________________________312', 'ولاية
الأغواط', 'ولاية الأغواط', '',
'03', 'state', 1),
(313, 'state________________________________313',
'ولاية أم البواقي', 'ولاية أم
البواقي', '', '04', 'state', 1),
(314, 'state_______________________314', 'ولاية
باتنة', 'ولاية باتنة', '',
'05', 'state', 1),
(315, 'state_______________________315', 'ولاية
بجاية', 'ولاية بجاية', '',
'06', 'state', 1),
(316, 'state_______________________316', 'ولاية
بسكرة', 'ولاية بسكرة', '',
'07', 'state', 1),
(317, 'state_____________________317', 'ولاية
بشار', 'ولاية بشار', '',
'08', 'state', 1),
(318, 'state___________________318',
'البليدة‎', 'البليدة‎', '',
'09', 'state', 1),
(319, 'state___________________________319', 'ولاية
البويرة', 'ولاية البويرة', '',
'10', 'state', 1),
(320, 'state___________________________320', 'ولاية
تمنراست', 'ولاية تمنراست', '',
'11', 'state', 1),
(321, 'state_____________________321', 'ولاية
تبسة', 'ولاية تبسة', '',
'12', 'state', 1),
(322, 'state______________322', 'تلمسان',
'تلمسان', '', '13', 'state',
1),
(323, 'state_______________________323', 'ولاية
تيارت', 'ولاية تيارت', '',
'14', 'state', 1),
(324, 'state_________________324', 'تيزي وزو',
'تيزي وزو', '', '15',
'state', 1),
(325, 'state___________________________325', 'ولاية
الجزائر', 'ولاية الجزائر', '',
'16', 'state', 1),
(326, 'state________________________________326',
'ولاية عين الدفلى', 'ولاية عين
الدفلى', '', '17', 'state', 1),
(327, 'state_____________________327', 'ولاية
جيجل', 'ولاية جيجل', '',
'18', 'state', 1),
(328, 'state_____________________328', 'ولاية
سطيف', 'ولاية سطيف', '',
'19', 'state', 1),
(329, 'state_______________________329', 'ولاية
سعيدة', 'ولاية سعيدة', '',
'20', 'state', 1),
(330, 'state__________________330', 'السكيكدة',
'السكيكدة', '', '21',
'state', 1),
(331, 'state__________________________________331',
'ولاية سيدي بلعباس', 'ولاية سيدي
بلعباس', '', '22', 'state', 1),
(332, 'state_______________________332', 'ولاية
عنابة', 'ولاية عنابة', '',
'23', 'state', 1),
(333, 'state_______________________333', 'ولاية
قالمة', 'ولاية قالمة', '',
'24', 'state', 1),
(334, 'state________________334', 'قسنطينة',
'قسنطينة', '', '25',
'state', 1),
(335, 'state_________________________335', 'ولاية
المدية', 'ولاية المدية', '',
'26', 'state', 1),
(336, 'state___________________________336', 'ولاية
مستغانم', 'ولاية مستغانم', '',
'27', 'state', 1),
(337, 'state___________________________337', 'ولاية
المسيلة', 'ولاية المسيلة', '',
'28', 'state', 1),
(338, 'state_______________________338', 'ولاية
معسكر', 'ولاية معسكر', '',
'29', 'state', 1),
(339, 'state____________339', 'ورقلة',
'ورقلة', '', '30', 'state',
1),
(340, 'state____________340', 'وهران',
'وهران', '', '31', 'state',
1),
(341, 'state_______________________341', 'ولاية
البيض', 'ولاية البيض', '',
'32', 'state', 1),
(342, 'state_______________________342', 'ولاية
اليزي', 'ولاية اليزي', '',
'33', 'state', 1),
(343, 'state____________________________________343',
'ولاية برج بوعريريج', 'ولاية برج
بوعريريج', '', '34', 'state',
1),
(344, 'state___________________________344', 'ولاية
بومرداس', 'ولاية بومرداس', '',
'35', 'state', 1),
(345, 'state_________________________345', 'ولاية
الطارف', 'ولاية الطارف', '',
'36', 'state', 1),
(346, 'state____________346', 'تندوف',
'تندوف', '', '37', 'state',
1),
(347, 'state___________________________347', 'ولاية
تسمسيلت', 'ولاية تسمسيلت', '',
'38', 'state', 1),
(348, 'state_________________________348', 'ولاية
الوادي', 'ولاية الوادي', '',
'39', 'state', 1),
(349, 'state_______________________349', 'ولاية
خنشلة', 'ولاية خنشلة', '',
'40', 'state', 1),
(350, 'state______________________________350', 'ولاية
سوق أهراس', 'ولاية سوق أهراس',
'', '41', 'state', 1),
(351, 'state_________________________351', 'ولاية
تيبازة', 'ولاية تيبازة', '',
'42', 'state', 1),
(352, 'state_____________________352', 'ولاية
ميلة', 'ولاية ميلة', '',
'43', 'state', 1),
(353, 'state________________________________353',
'ولاية عين الدفلى', 'ولاية عين
الدفلى', '', '44', 'state', 1),
(354, 'state___________________________354', 'ولاية
النعامة', 'ولاية النعامة', '',
'45', 'state', 1),
(355, 'state________________________________355',
'ولاية عين تموشنت', 'ولاية عين
تموشنت', '', '46', 'state', 1),
(356, 'state_________________________356', 'ولاية
غرداية', 'ولاية غرداية', '',
'47', 'state', 1),
(357, 'state_________________________357', 'ولاية
غليزان', 'ولاية غليزان', '',
'48', 'state', 1),
(358, 'state_Eastern_358', 'Eastern',
'Eastern', '', 'EA', 'state', 1),
(359, 'state_Manu_a_359', 'Manu''a',
'Manu''a', '', 'MA',
'state', 1),
(360, 'state_Rose_Island_360', 'Rose Island',
'Rose Island', '', 'RI', 'state',
1),
(361, 'state_Swains_Island_361', 'Swains Island',
'Swains Island', '', 'SI', 'state',
1),
(362, 'state_Western_362', 'Western',
'Western', '', 'WE', 'state', 1),
(363, 'state_Andorra_la_Vella_363', 'Andorra la Vella',
'Andorra la Vella', '', 'AN',
'state', 1),
(364, 'state_Canillo_364', 'Canillo',
'Canillo', '', 'CA', 'state', 1),
(365, 'state_Encamp_365', 'Encamp', 'Encamp',
'', 'EN', 'state', 1),
(366, 'state_Escaldes_Engordany_366',
'Escaldes-Engordany', 'Escaldes-Engordany',
'', 'LE', 'state', 1),
(367, 'state_La_Massana_367', 'La Massana', 'La
Massana', '', 'LM', 'state', 1),
(368, 'state_Ordino_368', 'Ordino', 'Ordino',
'', 'OR', 'state', 1),
(369, 'state_Sant_Juli___de_L__ria_369', 'Sant Juliá de
Lória', 'Sant Juliá de Lória', '',
'SJ', 'state', 1),
(370, 'state_Bengo_370', 'Bengo', 'Bengo',
'', 'BGO', 'state', 1),
(371, 'state_Benguela_371', 'Benguela',
'Benguela', '', 'BGU', 'state',
1),
(372, 'state_Bi___372', 'Bié', 'Bié',
'', 'BIE', 'state', 1),
(373, 'state_Cabinda_373', 'Cabinda',
'Cabinda', '', 'CAB', 'state', 1),
(374, 'state_Cuando_Cubango_374', 'Cuando Cubango',
'Cuando Cubango', '', 'CCU',
'state', 1),
(375, 'state_Cuanza_Norte_375', 'Cuanza Norte',
'Cuanza Norte', '', 'CNO', 'state',
1),
(376, 'state_Cuanza_Sul_376', 'Cuanza Sul',
'Cuanza Sul', '', 'CUS', 'state',
1),
(377, 'state_Cunene_377', 'Cunene', 'Cunene',
'', 'CNN', 'state', 1),
(378, 'state_Huambo_378', 'Huambo', 'Huambo',
'', 'HUA', 'state', 1),
(379, 'state_Hu__la_379', 'Huíla', 'Huíla',
'', 'HUI', 'state', 1),
(380, 'state_Luanda_380', 'Luanda', 'Luanda',
'', 'LUA', 'state', 1),
(381, 'state_Lunda_Norte_381', 'Lunda Norte',
'Lunda Norte', '', 'LNO', 'state',
1),
(382, 'state_Lunda_Sul_382', 'Lunda Sul', 'Lunda
Sul', '', 'LSU', 'state', 1),
(383, 'state_Malanje_383', 'Malanje',
'Malanje', '', 'MAL', 'state', 1),
(384, 'state_Moxico_384', 'Moxico', 'Moxico',
'', 'MOX', 'state', 1),
(385, 'state_Namibe_385', 'Namibe', 'Namibe',
'', 'NAM', 'state', 1),
(386, 'state_U__ge_386', 'Uíge', 'Uíge',
'', 'UIG', 'state', 1),
(387, 'state_Zaire_387', 'Zaire', 'Zaire',
'', 'ZAI', 'state', 1),
(388, 'state_Barbuda_388', 'Barbuda',
'Barbuda', '', 'BAR', 'state', 1),
(389, 'state_Saint_George_389', 'Saint George',
'Saint George', '', 'SGE', 'state',
1),
(390, 'state_Saint_John_390', 'Saint John', 'Saint
John', '', 'SJO', 'state', 1),
(391, 'state_Saint_Mary_391', 'Saint Mary', 'Saint
Mary', '', 'SMA', 'state', 1),
(392, 'state_Saint_Paul_392', 'Saint Paul', 'Saint
Paul', '', 'SPA', 'state', 1),
(393, 'state_Saint_Peter_393', 'Saint Peter',
'Saint Peter', '', 'SPE', 'state',
1),
(394, 'state_Saint_Philip_394', 'Saint Philip',
'Saint Philip', '', 'SPH', 'state',
1),
(395, 'state_Salta_395', 'Salta', 'Salta',
'', 'A', 'state', 1),
(396, 'state_Buenos_Aires_Province_396', 'Buenos Aires
Province', 'Buenos Aires Province', '',
'B', 'state', 1),
(397, 'state_Capital_Federal_397', 'Capital Federal',
'Capital Federal', '', 'C',
'state', 1),
(398, 'state_San_Luis_398', 'San Luis', 'San
Luis', '', 'D', 'state', 1),
(399, 'state_Entre_R__os_399', 'Entre Ríos',
'Entre Ríos', '', 'E', 'state',
1),
(400, 'state_La_Rioja_400', 'La Rioja', 'La
Rioja', '', 'F', 'state', 1),
(401, 'state_Santiago_del_Estero_401', 'Santiago del
Estero', 'Santiago del Estero', '', 'G',
'state', 1),
(402, 'state_Chaco_402', 'Chaco', 'Chaco',
'', 'H', 'state', 1),
(403, 'state_San_Juan_403', 'San Juan', 'San
Juan', '', 'J', 'state', 1),
(404, 'state_Catamarca_404', 'Catamarca',
'Catamarca', '', 'K', 'state', 1),
(405, 'state_La_Pampa_405', 'La Pampa', 'La
Pampa', '', 'L', 'state', 1),
(406, 'state_Mendoza_406', 'Mendoza',
'Mendoza', '', 'M', 'state', 1),
(407, 'state_Misiones_407', 'Misiones',
'Misiones', '', 'N', 'state', 1),
(408, 'state_Formosa_408', 'Formosa',
'Formosa', '', 'P', 'state', 1),
(409, 'state_Neuqu__n_409', 'Neuquén',
'Neuquén', '', 'Q', 'state', 1),
(410, 'state_R__o_Negro_410', 'Río Negro', 'Río
Negro', '', 'R', 'state', 1),
(411, 'state_Santa_Fe_411', 'Santa Fe', 'Santa
Fe', '', 'S', 'state', 1),
(412, 'state_Tucum__n_412', 'Tucumán',
'Tucumán', '', 'T', 'state', 1),
(413, 'state_Chubut_413', 'Chubut', 'Chubut',
'', 'U', 'state', 1),
(414, 'state_Tierra_del_Fuego_414', 'Tierra del Fuego',
'Tierra del Fuego', '', 'V',
'state', 1),
(415, 'state_Corrientes_415', 'Corrientes',
'Corrientes', '', 'W', 'state',
1),
(416, 'state_C__rdoba_416', 'Córdoba',
'Córdoba', '', 'X', 'state', 1),
(417, 'state_Jujuy_417', 'Jujuy', 'Jujuy',
'', 'Y', 'state', 1),
(418, 'state_Santa_Cruz_418', 'Santa Cruz', 'Santa
Cruz', '', 'Z', 'state', 1),
(419, 'state____________________419',
'Արագածոտն', 'Արագածոտն',
'', 'AG', 'state', 1),
(420, 'state______________420', 'Արարատ',
'Արարատ', '', 'AR', 'state',
1),
(421, 'state________________421', 'Արմավիր',
'Արմավիր', '', 'AV',
'state', 1),
(422, 'state____________422', 'Երևան',
'Երևան', '', 'ER', 'state',
1),
(423, 'state________________________423',
'Գեղարքունիք', 'Գեղարքունիք',
'', 'GR', 'state', 1),
(424, 'state______________424', 'Կոտայք',
'Կոտայք', '', 'KT', 'state',
1),
(425, 'state__________425', 'Լոռի',
'Լոռի', '', 'LO', 'state', 1),
(426, 'state____________426', 'Շիրակ',
'Շիրակ', '', 'SH', 'state',
1),
(427, 'state________________427', 'Սյունիք',
'Սյունիք', '', 'SU',
'state', 1),
(428, 'state______________428', 'Տավուշ',
'Տավուշ', '', 'TV', 'state',
1),
(429, 'state___________________429', 'Վայոց
Ձոր', 'Վայոց Ձոր', '', 'VD',
'state', 1),
(430, 'state_Australian_Capital_Territory_430', 'Australian
Capital Territory', 'Australian Capital Territory',
'', 'ACT', 'state', 1),
(431, 'state_New_South_Wales_431', 'New South Wales',
'New South Wales', '', 'NSW',
'state', 1),
(432, 'state_Northern_Territory_432', 'Northern
Territory', 'Northern Territory', '',
'NT', 'state', 1),
(433, 'state_Queensland_433', 'Queensland',
'Queensland', '', 'QLD', 'state',
1),
(434, 'state_South_Australia_434', 'South Australia',
'South Australia', '', 'SA',
'state', 1),
(435, 'state_Tasmania_435', 'Tasmania',
'Tasmania', '', 'TAS', 'state',
1),
(436, 'state_Victoria_436', 'Victoria',
'Victoria', '', 'VIC', 'state',
1),
(437, 'state_Western_Australia_437', 'Western
Australia', 'Western Australia', '',
'WA', 'state', 1),
(438, 'state_Burgenland_438', 'Burgenland',
'Burgenland', '', '1', 'state',
1),
(439, 'state_K__rnten_439', 'Kärnten',
'Kärnten', '', '2', 'state', 1),
(440, 'state_Nieder__sterreich_440',
'Niederösterreich', 'Niederösterreich', '',
'3', 'state', 1),
(441, 'state_Ober__sterreich_441', 'Oberösterreich',
'Oberösterreich', '', '4',
'state', 1),
(442, 'state_Salzburg_442', 'Salzburg',
'Salzburg', '', '5', 'state', 1),
(443, 'state_Steiermark_443', 'Steiermark',
'Steiermark', '', '6', 'state',
1),
(444, 'state_Tirol_444', 'Tirol', 'Tirol',
'', '7', 'state', 1),
(445, 'state_Voralberg_445', 'Voralberg',
'Voralberg', '', '8', 'state', 1),
(446, 'state_Wien_446', 'Wien', 'Wien',
'', '9', 'state', 1),
(447, 'state___li_Bayraml___447', 'Əli Bayramlı',
'Əli Bayramlı', '', 'AB',
'state', 1),
(448, 'state_Ab__eron_448', 'Abşeron',
'Abşeron', '', 'ABS', 'state',
1),
(449, 'state_A__cab__di_449', 'Ağcabədi',
'Ağcabədi', '', 'AGC', 'state',
1),
(450, 'state_A__dam_450', 'Ağdam', 'Ağdam',
'', 'AGM', 'state', 1),
(451, 'state_A__da___451', 'Ağdaş',
'Ağdaş', '', 'AGS', 'state', 1),
(452, 'state_A__stafa_452', 'Ağstafa',
'Ağstafa', '', 'AGA', 'state',
1),
(453, 'state_A__su_453', 'Ağsu', 'Ağsu',
'', 'AGU', 'state', 1),
(454, 'state_Astara_454', 'Astara', 'Astara',
'', 'AST', 'state', 1),
(455, 'state_Bak___455', 'Bakı', 'Bakı',
'', 'BA', 'state', 1),
(456, 'state_Bab__k_456', 'Babək', 'Babək',
'', 'BAB', 'state', 1),
(457, 'state_Balak__n_457', 'Balakən',
'Balakən', '', 'BAL', 'state',
1),
(458, 'state_B__rd___458', 'Bərdə',
'Bərdə', '', 'BAR', 'state', 1),
(459, 'state_Beyl__qan_459', 'Beyləqan',
'Beyləqan', '', 'BEY', 'state',
1),
(460, 'state_Bil__suvar_460', 'Biləsuvar',
'Biləsuvar', '', 'BIL', 'state',
1),
(461, 'state_C__bray__l_461', 'Cəbrayıl',
'Cəbrayıl', '', 'CAB', 'state',
1),
(462, 'state_C__lilabab_462', 'Cəlilabab',
'Cəlilabab', '', 'CAL', 'state',
1),
(463, 'state_Julfa_463', 'Julfa', 'Julfa',
'', 'CUL', 'state', 1),
(464, 'state_Da__k__s__n_464', 'Daşkəsən',
'Daşkəsən', '', 'DAS', 'state',
1),
(465, 'state_D__v____i_465', 'Dəvəçi',
'Dəvəçi', '', 'DAV', 'state',
1),
(466, 'state_F__zuli_466', 'Füzuli',
'Füzuli', '', 'FUZ', 'state', 1),
(467, 'state_G__nc___467', 'Gəncə',
'Gəncə', '', 'GA', 'state', 1),
(468, 'state_G__d__b__y_468', 'Gədəbəy',
'Gədəbəy', '', 'GAD', 'state',
1),
(469, 'state_Goranboy_469', 'Goranboy',
'Goranboy', '', 'GOR', 'state',
1),
(470, 'state_G__y__ay_470', 'Göyçay',
'Göyçay', '', 'GOY', 'state',
1),
(471, 'state_Hac__qabul_471', 'Hacıqabul',
'Hacıqabul', '', 'HAC', 'state',
1),
(472, 'state___mi__li_472', 'İmişli',
'İmişli', '', 'IMI', 'state',
1),
(473, 'state___smay__ll___473', 'İsmayıllı',
'İsmayıllı', '', 'ISM', 'state',
1),
(474, 'state_K__lb__c__r_474', 'Kəlbəcər',
'Kəlbəcər', '', 'KAL', 'state',
1),
(475, 'state_K__rd__mir_475', 'Kürdəmir',
'Kürdəmir', '', 'KUR', 'state',
1),
(476, 'state_L__nk__ran_476', 'Lənkəran',
'Lənkəran', '', 'LA', 'state',
1),
(477, 'state_La____n_477', 'Laçın',
'Laçın', '', 'LAC', 'state', 1),
(478, 'state_L__nk__ran_478', 'Lənkəran',
'Lənkəran', '', 'LAN', 'state',
1),
(479, 'state_Lerik_479', 'Lerik', 'Lerik',
'', 'LER', 'state', 1),
(480, 'state_Masall___480', 'Masallı',
'Masallı', '', 'MAS', 'state',
1),
(481, 'state_Ming____evir_481', 'Mingəçevir',
'Mingəçevir', '', 'MI', 'state',
1),
(482, 'state_Naftalan_482', 'Naftalan',
'Naftalan', '', 'NA', 'state', 1),
(483, 'state_Neft__ala_483', 'Neftçala',
'Neftçala', '', 'NEF', 'state',
1),
(484, 'state_O__uz_484', 'Oğuz', 'Oğuz',
'', 'OGU', 'state', 1),
(485, 'state_Ordubad_485', 'Ordubad',
'Ordubad', '', 'ORD', 'state', 1),
(486, 'state_Q__b__l___486', 'Qəbələ',
'Qəbələ', '', 'QAB', 'state',
1),
(487, 'state_Qax_487', 'Qax', 'Qax',
'', 'QAX', 'state', 1),
(488, 'state_Qazax_488', 'Qazax', 'Qazax',
'', 'QAZ', 'state', 1),
(489, 'state_Qobustan_489', 'Qobustan',
'Qobustan', '', 'QOB', 'state',
1),
(490, 'state_Quba_490', 'Quba', 'Quba',
'', 'QBA', 'state', 1),
(491, 'state_Qubadl___491', 'Qubadlı',
'Qubadlı', '', 'QBI', 'state',
1),
(492, 'state_Qusar_492', 'Qusar', 'Qusar',
'', 'QUS', 'state', 1),
(493, 'state_____ki_493', 'Şəki', 'Şəki',
'', 'SA', 'state', 1),
(494, 'state_Saatl___494', 'Saatlı',
'Saatlı', '', 'SAT', 'state', 1),
(495, 'state_Sabirabad_495', 'Sabirabad',
'Sabirabad', '', 'SAB', 'state',
1),
(496, 'state_S__d__r__k_496', 'Sədərək',
'Sədərək', '', 'SAD', 'state',
1),
(497, 'state___ahbuz_497', 'Şahbuz',
'Şahbuz', '', 'SAH', 'state', 1),
(498, 'state_____ki_498', 'Şəki', 'Şəki',
'', 'SAK', 'state', 1),
(499, 'state_Salyan_499', 'Salyan', 'Salyan',
'', 'SAL', 'state', 1);";
		$this->db->setQuery($query);
		$this->db->query();

		$query="
INSERT IGNORE INTO `#__hikashop_zone` (`zone_id`, `zone_namekey`,
`zone_name`, `zone_name_english`, `zone_code_2`, `zone_code_3`,
`zone_type`, `zone_published`) VALUES
(500, 'state_Sumqay__t_500', 'Sumqayıt',
'Sumqayıt', '', 'SM', 'state',
1),
(501, 'state___amax___501', 'Şamaxı',
'Şamaxı', '', 'SMI', 'state',
1),
(502, 'state_____mkir_502', 'Şəmkir',
'Şəmkir', '', 'SKR', 'state',
1),
(503, 'state_Samux_503', 'Samux', 'Samux',
'', 'SMX', 'state', 1),
(504, 'state_____rur_504', 'Şərur',
'Şərur', '', 'SAR', 'state', 1),
(505, 'state_Siy__z__n_505', 'Siyəzən',
'Siyəzən', '', 'SIY', 'state',
1),
(506, 'state___u__a__City__506', 'Şuşa (City)',
'Şuşa (City)', '', 'SS', 'state',
1),
(507, 'state___u__a_507', 'Şuşa', 'Şuşa',
'', 'SUS', 'state', 1),
(508, 'state_T__rt__r_508', 'Tərtər',
'Tərtər', '', 'TAR', 'state',
1),
(509, 'state_Tovuz_509', 'Tovuz', 'Tovuz',
'', 'TOV', 'state', 1),
(510, 'state_Ucar_510', 'Ucar', 'Ucar',
'', 'UCA', 'state', 1),
(511, 'state_Xank__ndi_511', 'Xankəndi',
'Xankəndi', '', 'XA', 'state',
1),
(512, 'state_Xa__maz_512', 'Xaçmaz',
'Xaçmaz', '', 'XAC', 'state', 1),
(513, 'state_Xanlar_513', 'Xanlar', 'Xanlar',
'', 'XAN', 'state', 1),
(514, 'state_X__z___514', 'Xızı', 'Xızı',
'', 'XIZ', 'state', 1),
(515, 'state_Xocal___515', 'Xocalı',
'Xocalı', '', 'XCI', 'state', 1),
(516, 'state_Xocav__nd_516', 'Xocavənd',
'Xocavənd', '', 'XVD', 'state',
1),
(517, 'state_Yard__ml___517', 'Yardımlı',
'Yardımlı', '', 'YAR', 'state',
1),
(518, 'state_Yevlax__City__518', 'Yevlax (City)',
'Yevlax (City)', '', 'YE', 'state',
1),
(519, 'state_Yevlax_519', 'Yevlax', 'Yevlax',
'', 'YEV', 'state', 1),
(520, 'state_Z__ngilan_520', 'Zəngilan',
'Zəngilan', '', 'ZAN', 'state',
1),
(521, 'state_Zaqatala_521', 'Zaqatala',
'Zaqatala', '', 'ZAQ', 'state',
1),
(522, 'state_Z__rdab_522', 'Zərdab',
'Zərdab', '', 'ZAR', 'state', 1),
(523, 'state_Nakhichevan_523', 'Nakhichevan',
'Nakhichevan', '', 'NX', 'state',
1),
(524, 'state_Acklins_and_Crooked_Islands_524', 'Acklins and
Crooked Islands', 'Acklins and Crooked Islands',
'', 'AC', 'state', 1),
(525, 'state_Bimini_525', 'Bimini', 'Bimini',
'', 'BI', 'state', 1),
(526, 'state_Cat_Island_526', 'Cat Island', 'Cat
Island', '', 'CI', 'state', 1),
(527, 'state_Exuma_527', 'Exuma', 'Exuma',
'', 'EX', 'state', 1),
(528, 'state_Freeport_528', 'Freeport',
'Freeport', '', 'FR', 'state', 1),
(529, 'state_Fresh_Creek_529', 'Fresh Creek',
'Fresh Creek', '', 'FC', 'state',
1),
(530, 'state_Governor_s_Harbour_530', 'Governor''s
Harbour', 'Governor''s Harbour', '',
'GH', 'state', 1),
(531, 'state_Green_Turtle_Cay_531', 'Green Turtle Cay',
'Green Turtle Cay', '', 'GT',
'state', 1),
(532, 'state_Harbour_Island_532', 'Harbour Island',
'Harbour Island', '', 'HI',
'state', 1),
(533, 'state_High_Rock_533', 'High Rock', 'High
Rock', '', 'HR', 'state', 1),
(534, 'state_Inagua_534', 'Inagua', 'Inagua',
'', 'IN', 'state', 1),
(535, 'state_Kemps_Bay_535', 'Kemps Bay', 'Kemps
Bay', '', 'KB', 'state', 1),
(536, 'state_Long_Island_536', 'Long Island',
'Long Island', '', 'LI', 'state',
1),
(537, 'state_Marsh_Harbour_537', 'Marsh Harbour',
'Marsh Harbour', '', 'MH', 'state',
1),
(538, 'state_Mayaguana_538', 'Mayaguana',
'Mayaguana', '', 'MA', 'state',
1),
(539, 'state_New_Providence_539', 'New Providence',
'New Providence', '', 'NP',
'state', 1),
(540, 'state_Nicholls_Town_and_Berry_Islands_540', 'Nicholls
Town and Berry Islands', 'Nicholls Town and Berry Islands',
'', 'NT', 'state', 1),
(541, 'state_Ragged_Island_541', 'Ragged Island',
'Ragged Island', '', 'RI', 'state',
1),
(542, 'state_Rock_Sound_542', 'Rock Sound', 'Rock
Sound', '', 'RS', 'state', 1),
(543, 'state_San_Salvador_and_Rum_Cay_543', 'San Salvador
and Rum Cay', 'San Salvador and Rum Cay', '',
'SS', 'state', 1),
(544, 'state_Sandy_Point_544', 'Sandy Point',
'Sandy Point', '', 'SP', 'state',
1),
(545, 'state__________545', 'الحد',
'الحد', '', '01', 'state', 1),
(546, 'state______________546', 'المحرق',
'المحرق', '', '02', 'state',
1),
(547, 'state________________547', 'المنامة',
'المنامة', '', '03',
'state', 1),
(548, 'state_____________548', 'جد حفص',
'جد حفص', '', '04', 'state',
1),
(549, 'state_________________________________549',
'المنطقة الشمالية', 'المنطقة
الشمالية', '', '05', 'state',
1),
(550, 'state__________550', 'سترة',
'سترة', '', '06', 'state', 1),
(551, 'state_____________________________551',
'المنطقة الوسطى', 'المنطقة
الوسطى', '', '07', 'state', 1),
(552, 'state_____________________552', 'مدينة
عيسى', 'مدينة عيسى', '',
'08', 'state', 1),
(553, 'state________________________________________________553',
'الرفاع والمنطقة الجنوبية',
'الرفاع والمنطقة الجنوبية', '',
'09', 'state', 1),
(554, 'state_______________________________554',
'المنطقة الغربية', 'المنطقة
الغربية', '', '10', 'state', 1),
(555, 'state_________________555', 'جزر حوار',
'جزر حوار', '', '11',
'state', 1),
(556, 'state___________________556', 'مدينة
حمد', 'مدينة حمد', '', '12',
'state', 1),
(557, 'state_Bandarban_557', 'Bandarban',
'Bandarban', '', '01', 'state',
1),
(558, 'state_Barguna_558', 'Barguna',
'Barguna', '', '02', 'state', 1),
(559, 'state_Bogra_559', 'Bogra', 'Bogra',
'', '03', 'state', 1),
(560, 'state_Brahmanbaria_560', 'Brahmanbaria',
'Brahmanbaria', '', '04', 'state',
1),
(561, 'state_Bagerhat_561', 'Bagerhat',
'Bagerhat', '', '05', 'state', 1),
(562, 'state_Barisal_562', 'Barisal',
'Barisal', '', '06', 'state', 1),
(563, 'state_Bhola_563', 'Bhola', 'Bhola',
'', '07', 'state', 1),
(564, 'state_Comilla_564', 'Comilla',
'Comilla', '', '08', 'state', 1),
(565, 'state_Chandpur_565', 'Chandpur',
'Chandpur', '', '09', 'state', 1),
(566, 'state_Chittagong_566', 'Chittagong',
'Chittagong', '', '10', 'state',
1),
(567, 'state_Cox_s_Bazar_567', 'Cox''s
Bazar', 'Cox''s Bazar', '',
'11', 'state', 1),
(568, 'state_Chuadanga_568', 'Chuadanga',
'Chuadanga', '', '12', 'state',
1),
(569, 'state_Dhaka_569', 'Dhaka', 'Dhaka',
'', '13', 'state', 1),
(570, 'state_Dinajpur_570', 'Dinajpur',
'Dinajpur', '', '14', 'state', 1),
(571, 'state_Faridpur_571', 'Faridpur',
'Faridpur', '', '15', 'state', 1),
(572, 'state_Feni_572', 'Feni', 'Feni',
'', '16', 'state', 1),
(573, 'state_Gopalganj_573', 'Gopalganj',
'Gopalganj', '', '17', 'state',
1),
(574, 'state_Gazipur_574', 'Gazipur',
'Gazipur', '', '18', 'state', 1),
(575, 'state_Gaibandha_575', 'Gaibandha',
'Gaibandha', '', '19', 'state',
1),
(576, 'state_Habiganj_576', 'Habiganj',
'Habiganj', '', '20', 'state', 1),
(577, 'state_Jamalpur_577', 'Jamalpur',
'Jamalpur', '', '21', 'state', 1),
(578, 'state_Jessore_578', 'Jessore',
'Jessore', '', '22', 'state', 1),
(579, 'state_Jhenaidah_579', 'Jhenaidah',
'Jhenaidah', '', '23', 'state',
1),
(580, 'state_Jaipurhat_580', 'Jaipurhat',
'Jaipurhat', '', '24', 'state',
1),
(581, 'state_Jhalakati_581', 'Jhalakati',
'Jhalakati', '', '25', 'state',
1),
(582, 'state_Kishoreganj_582', 'Kishoreganj',
'Kishoreganj', '', '26', 'state',
1),
(583, 'state_Khulna_583', 'Khulna', 'Khulna',
'', '27', 'state', 1),
(584, 'state_Kurigram_584', 'Kurigram',
'Kurigram', '', '28', 'state', 1),
(585, 'state_Khagrachari_585', 'Khagrachari',
'Khagrachari', '', '29', 'state',
1),
(586, 'state_Kushtia_586', 'Kushtia',
'Kushtia', '', '30', 'state', 1),
(587, 'state_Lakshmipur_587', 'Lakshmipur',
'Lakshmipur', '', '31', 'state',
1),
(588, 'state_Lalmonirhat_588', 'Lalmonirhat',
'Lalmonirhat', '', '32', 'state',
1),
(589, 'state_Manikganj_589', 'Manikganj',
'Manikganj', '', '33', 'state',
1),
(590, 'state_Mymensingh_590', 'Mymensingh',
'Mymensingh', '', '34', 'state',
1),
(591, 'state_Munshiganj_591', 'Munshiganj',
'Munshiganj', '', '35', 'state',
1),
(592, 'state_Madaripur_592', 'Madaripur',
'Madaripur', '', '36', 'state',
1),
(593, 'state_Magura_593', 'Magura', 'Magura',
'', '37', 'state', 1),
(594, 'state_Moulvibazar_594', 'Moulvibazar',
'Moulvibazar', '', '38', 'state',
1),
(595, 'state_Meherpur_595', 'Meherpur',
'Meherpur', '', '39', 'state', 1),
(596, 'state_Narayanganj_596', 'Narayanganj',
'Narayanganj', '', '40', 'state',
1),
(597, 'state_Netrakona_597', 'Netrakona',
'Netrakona', '', '41', 'state',
1),
(598, 'state_Narsingdi_598', 'Narsingdi',
'Narsingdi', '', '42', 'state',
1),
(599, 'state_Narail_599', 'Narail', 'Narail',
'', '43', 'state', 1),
(600, 'state_Natore_600', 'Natore', 'Natore',
'', '44', 'state', 1),
(601, 'state_Nawabganj_601', 'Nawabganj',
'Nawabganj', '', '45', 'state',
1),
(602, 'state_Nilphamari_602', 'Nilphamari',
'Nilphamari', '', '46', 'state',
1),
(603, 'state_Noakhali_603', 'Noakhali',
'Noakhali', '', '47', 'state', 1),
(604, 'state_Naogaon_604', 'Naogaon',
'Naogaon', '', '48', 'state', 1),
(605, 'state_Pabna_605', 'Pabna', 'Pabna',
'', '49', 'state', 1),
(606, 'state_Pirojpur_606', 'Pirojpur',
'Pirojpur', '', '50', 'state', 1),
(607, 'state_Patuakhali_607', 'Patuakhali',
'Patuakhali', '', '51', 'state',
1),
(608, 'state_Panchagarh_608', 'Panchagarh',
'Panchagarh', '', '52', 'state',
1),
(609, 'state_Rajbari_609', 'Rajbari',
'Rajbari', '', '53', 'state', 1),
(610, 'state_Rajshahi_610', 'Rajshahi',
'Rajshahi', '', '54', 'state', 1),
(611, 'state_Rangpur_611', 'Rangpur',
'Rangpur', '', '55', 'state', 1),
(612, 'state_Rangamati_612', 'Rangamati',
'Rangamati', '', '56', 'state',
1),
(613, 'state_Sherpur_613', 'Sherpur',
'Sherpur', '', '57', 'state', 1),
(614, 'state_Satkhira_614', 'Satkhira',
'Satkhira', '', '58', 'state', 1),
(615, 'state_Sirajganj_615', 'Sirajganj',
'Sirajganj', '', '59', 'state',
1),
(616, 'state_Sylhet_616', 'Sylhet', 'Sylhet',
'', '60', 'state', 1),
(617, 'state_Sunamganj_617', 'Sunamganj',
'Sunamganj', '', '61', 'state',
1),
(618, 'state_Shariatpur_618', 'Shariatpur',
'Shariatpur', '', '62', 'state',
1),
(619, 'state_Tangail_619', 'Tangail',
'Tangail', '', '63', 'state', 1),
(620, 'state_Thakurgaon_620', 'Thakurgaon',
'Thakurgaon', '', '64', 'state',
1),
(621, 'state_Saint_Andrew_621', 'Saint Andrew',
'Saint Andrew', '', 'A', 'state',
1),
(622, 'state_Christ_Church_622', 'Christ Church',
'Christ Church', '', 'C', 'state',
1),
(623, 'state_Saint_Peter_623', 'Saint Peter',
'Saint Peter', '', 'E', 'state',
1),
(624, 'state_Saint_George_624', 'Saint George',
'Saint George', '', 'G', 'state',
1),
(625, 'state_Saint_John_625', 'Saint John', 'Saint
John', '', 'J', 'state', 1),
(626, 'state_Saint_Lucy_626', 'Saint Lucy', 'Saint
Lucy', '', 'L', 'state', 1),
(627, 'state_Saint_Michael_627', 'Saint Michael',
'Saint Michael', '', 'M', 'state',
1),
(628, 'state_Saint_Joseph_628', 'Saint Joseph',
'Saint Joseph', '', 'O', 'state',
1),
(629, 'state_Saint_Philip_629', 'Saint Philip',
'Saint Philip', '', 'P', 'state',
1),
(630, 'state_Saint_James_630', 'Saint James',
'Saint James', '', 'S', 'state',
1),
(631, 'state_Saint_Thomas_631', 'Saint Thomas',
'Saint Thomas', '', 'T', 'state',
1),
(632, 'state_______________________________________632',
'Брэ́сцкая во́бласць', 'Брэ́сцкая
во́бласць', '', 'BR', 'state',
1),
(633, 'state___________________________________________633',
'Го́мельская во́бласць',
'Го́мельская во́бласць', '',
'HO', 'state', 1),
(634, 'state_____________________________________________634',
'Гро́дзенская во́бласць',
'Гро́дзенская во́бласць', '',
'HR', 'state', 1),
(635, 'state___________________________________________635',
'Магілёўская во́бласць',
'Магілёўская во́бласць', '',
'MA', 'state', 1),
(636, 'state_____________________________________636',
'Мі́нская во́бласць', 'Мі́нская
во́бласць', '', 'MI', 'state',
1),
(637, 'state_________________________________________637',
'Ві́цебская во́бласць',
'Ві́цебская во́бласць', '',
'VI', 'state', 1),
(638, 'state_Brussel_638', 'Brussel',
'Brussel', '', 'BRU', 'state', 1),
(639, 'state_Antwerpen_639', 'Antwerpen',
'Antwerpen', '', 'VAN', 'state',
1),
(640, 'state_Vlaams_Brabant_640', 'Vlaams-Brabant',
'Vlaams-Brabant', '', 'VBR',
'state', 1),
(641, 'state_Limburg_641', 'Limburg',
'Limburg', '', 'VLI', 'state', 1),
(642, 'state_Oost_Vlaanderen_642', 'Oost-Vlaanderen',
'Oost-Vlaanderen', '', 'VOV',
'state', 1),
(643, 'state_West_Vlaanderen_643', 'West-Vlaanderen',
'West-Vlaanderen', '', 'VWV',
'state', 1),
(644, 'state_Brabant_Wallon_644', 'Brabant Wallon',
'Brabant Wallon', '', 'WBR',
'state', 1),
(645, 'state_Hainaut_645', 'Hainaut',
'Hainaut', '', 'WHT', 'state', 1),
(646, 'state_Li__ge_L__ttich_646', 'Liège/Lüttich',
'Liège/Lüttich', '', 'WLG',
'state', 1),
(647, 'state_Luxembourg_647', 'Luxembourg',
'Luxembourg', '', 'WLX', 'state',
1),
(648, 'state_Namur_648', 'Namur', 'Namur',
'', 'WNA', 'state', 1),
(649, 'state_Belize_District_649', 'Belize District',
'Belize District', '', 'BZ',
'state', 1),
(650, 'state_Cayo_District_650', 'Cayo District',
'Cayo District', '', 'CY', 'state',
1),
(651, 'state_Corozal_District_651', 'Corozal District',
'Corozal District', '', 'CZL',
'state', 1),
(652, 'state_Orange_Walk_District_652', 'Orange Walk
District', 'Orange Walk District', '',
'OW', 'state', 1),
(653, 'state_Stann_Creek_District_653', 'Stann Creek
District', 'Stann Creek District', '',
'SC', 'state', 1),
(654, 'state_Toledo_District_654', 'Toledo District',
'Toledo District', '', 'TOL',
'state', 1),
(655, 'state_Alibori_655', 'Alibori',
'Alibori', '', 'AL', 'state', 1),
(656, 'state_Atakora_656', 'Atakora',
'Atakora', '', 'AK', 'state', 1),
(657, 'state_Atlantique_657', 'Atlantique',
'Atlantique', '', 'AQ', 'state',
1),
(658, 'state_Borgou_658', 'Borgou', 'Borgou',
'', 'BO', 'state', 1),
(659, 'state_Collines_659', 'Collines',
'Collines', '', 'CO', 'state', 1),
(660, 'state_Donga_660', 'Donga', 'Donga',
'', 'DO', 'state', 1),
(661, 'state_Kouffo_661', 'Kouffo', 'Kouffo',
'', 'KO', 'state', 1),
(662, 'state_Littoral_662', 'Littoral',
'Littoral', '', 'LI', 'state', 1),
(663, 'state_Mono_663', 'Mono', 'Mono',
'', 'MO', 'state', 1),
(664, 'state_Ou__m___664', 'Ouémé',
'Ouémé', '', 'OU', 'state', 1),
(665, 'state_Plateau_665', 'Plateau',
'Plateau', '', 'PL', 'state', 1),
(666, 'state_Zou_666', 'Zou', 'Zou',
'', 'ZO', 'state', 1),
(667, 'state_Devonshire_667', 'Devonshire',
'Devonshire', '', 'DEV', 'state',
1),
(668, 'state_Hamilton_City_668', 'Hamilton City',
'Hamilton City', '', 'HA', 'state',
1),
(669, 'state_Hamilton_669', 'Hamilton',
'Hamilton', '', 'HAM', 'state',
1),
(670, 'state_Paget_670', 'Paget', 'Paget',
'', 'PAG', 'state', 1),
(671, 'state_Pembroke_671', 'Pembroke',
'Pembroke', '', 'PEM', 'state',
1),
(672, 'state_Sandys_672', 'Sandys', 'Sandys',
'', 'SAN', 'state', 1),
(673, 'state_Saint_George_City_673', 'Saint George
City', 'Saint George City', '', 'SG',
'state', 1),
(674, 'state_Saint_George_s_674', 'Saint
George''s', 'Saint George''s',
'', 'SGE', 'state', 1),
(675, 'state_Smiths_675', 'Smiths', 'Smiths',
'', 'SMI', 'state', 1),
(676, 'state_Southampton_676', 'Southampton',
'Southampton', '', 'SOU', 'state',
1),
(677, 'state_Warwick_677', 'Warwick',
'Warwick', '', 'WAR', 'state', 1),
(678, 'state_Paro_678', 'Paro', 'Paro',
'', '11', 'state', 1),
(679, 'state_Chukha_679', 'Chukha', 'Chukha',
'', '12', 'state', 1),
(680, 'state_Haa_680', 'Haa', 'Haa',
'', '13', 'state', 1),
(681, 'state_Samtse_681', 'Samtse', 'Samtse',
'', '14', 'state', 1),
(682, 'state_Thimphu_682', 'Thimphu',
'Thimphu', '', '15', 'state', 1),
(683, 'state_Tsirang_683', 'Tsirang',
'Tsirang', '', '21', 'state', 1),
(684, 'state_Dagana_684', 'Dagana', 'Dagana',
'', '22', 'state', 1),
(685, 'state_Punakha_685', 'Punakha',
'Punakha', '', '23', 'state', 1),
(686, 'state_Wangdue_Phodrang_686', 'Wangdue Phodrang',
'Wangdue Phodrang', '', '24',
'state', 1),
(687, 'state_Sarpang_687', 'Sarpang',
'Sarpang', '', '31', 'state', 1),
(688, 'state_Trongsa_688', 'Trongsa',
'Trongsa', '', '32', 'state', 1),
(689, 'state_Bumthang_689', 'Bumthang',
'Bumthang', '', '33', 'state', 1),
(690, 'state_Zhemgang_690', 'Zhemgang',
'Zhemgang', '', '34', 'state', 1),
(691, 'state_Trashigang_691', 'Trashigang',
'Trashigang', '', '41', 'state',
1),
(692, 'state_Mongar_692', 'Mongar', 'Mongar',
'', '42', 'state', 1),
(693, 'state_Pemagatshel_693', 'Pemagatshel',
'Pemagatshel', '', '43', 'state',
1),
(694, 'state_Luentse_694', 'Luentse',
'Luentse', '', '44', 'state', 1),
(695, 'state_Samdrup_Jongkhar_695', 'Samdrup Jongkhar',
'Samdrup Jongkhar', '', '45',
'state', 1),
(696, 'state_Gasa_696', 'Gasa', 'Gasa',
'', 'GA', 'state', 1),
(697, 'state_Trashiyangse_697', 'Trashiyangse',
'Trashiyangse', '', 'TY', 'state',
1),
(698, 'state_El_Beni_698', 'El Beni', 'El
Beni', '', 'B', 'state', 1),
(699, 'state_Cochabamba_699', 'Cochabamba',
'Cochabamba', '', 'C', 'state',
1),
(700, 'state_Chuquisaca_700', 'Chuquisaca',
'Chuquisaca', '', 'H', 'state',
1),
(701, 'state_La_Paz_701', 'La Paz', 'La Paz',
'', 'L', 'state', 1),
(702, 'state_Pando_702', 'Pando', 'Pando',
'', 'N', 'state', 1),
(703, 'state_Oruro_703', 'Oruro', 'Oruro',
'', 'O', 'state', 1),
(704, 'state_Potos___704', 'Potosí',
'Potosí', '', 'P', 'state', 1),
(705, 'state_Santa_Cruz_705', 'Santa Cruz', 'Santa
Cruz', '', 'S', 'state', 1),
(706, 'state_Tarija_706', 'Tarija', 'Tarija',
'', 'T', 'state', 1),
(707, 'state_Central_707', 'Central',
'Central', '', 'CE', 'state', 1),
(708, 'state_Ghanzi_708', 'Ghanzi', 'Ghanzi',
'', 'GH', 'state', 1),
(709, 'state_Kgalagadi_709', 'Kgalagadi',
'Kgalagadi', '', 'KG', 'state',
1),
(710, 'state_Kgatleng_710', 'Kgatleng',
'Kgatleng', '', 'KL', 'state', 1),
(711, 'state_Kweneng_711', 'Kweneng',
'Kweneng', '', 'KW', 'state', 1),
(712, 'state_North_East_712', 'North-East',
'North-East', '', 'NE', 'state',
1),
(713, 'state_North_West_713', 'North-West',
'North-West', '', 'NW', 'state',
1),
(714, 'state_South_East_714', 'South-East',
'South-East', '', 'SE', 'state',
1),
(715, 'state_Southern_715', 'Southern',
'Southern', '', 'SO', 'state', 1),
(716, 'state_Acre_716', 'Acre', 'Acre',
'', 'AC', 'state', 1),
(717, 'state_Alagoas_717', 'Alagoas',
'Alagoas', '', 'AL', 'state', 1),
(718, 'state_Amaz__nia_718', 'Amazônia',
'Amazônia', '', 'AM', 'state',
1),
(719, 'state_Amap___719', 'Amapá', 'Amapá',
'', 'AP', 'state', 1),
(720, 'state_Bahia_720', 'Bahia', 'Bahia',
'', 'BA', 'state', 1),
(721, 'state_Cear___721', 'Ceará', 'Ceará',
'', 'CE', 'state', 1),
(722, 'state_Distrito_Federal_722', 'Distrito Federal',
'Distrito Federal', '', 'DF',
'state', 1),
(723, 'state_Esp__rito_Santo_723', 'Espírito Santo',
'Espírito Santo', '', 'ES',
'state', 1),
(724, 'state_Goi__s_724', 'Goiás', 'Goiás',
'', 'GO', 'state', 1),
(725, 'state_Maranh__o_725', 'Maranhão',
'Maranhão', '', 'MA', 'state',
1),
(726, 'state_Minas_Gerais_726', 'Minas Gerais',
'Minas Gerais', '', 'MG', 'state',
1),
(727, 'state_Mato_Grosso_do_Sul_727', 'Mato Grosso do
Sul', 'Mato Grosso do Sul', '', 'MS',
'state', 1),
(728, 'state_Mato_Grosso_728', 'Mato Grosso',
'Mato Grosso', '', 'MT', 'state',
1),
(729, 'state_Par___729', 'Pará', 'Pará',
'', 'PA', 'state', 1),
(730, 'state_Para__ba_730', 'Paraíba',
'Paraíba', '', 'PB', 'state', 1),
(731, 'state_Pernambuco_731', 'Pernambuco',
'Pernambuco', '', 'PE', 'state',
1),
(732, 'state_Piau___732', 'Piauí', 'Piauí',
'', 'PI', 'state', 1),
(733, 'state_Paran___733', 'Paraná',
'Paraná', '', 'PR', 'state', 1),
(734, 'state_Rio_de_Janeiro_734', 'Rio de Janeiro',
'Rio de Janeiro', '', 'RJ',
'state', 1),
(735, 'state_Rio_Grande_do_Norte_735', 'Rio Grande do
Norte', 'Rio Grande do Norte', '', 'RN',
'state', 1),
(736, 'state_Rond__nia_736', 'Rondônia',
'Rondônia', '', 'RO', 'state',
1),
(737, 'state_Roraima_737', 'Roraima',
'Roraima', '', 'RR', 'state', 1),
(738, 'state_Rio_Grande_do_Sul_738', 'Rio Grande do
Sul', 'Rio Grande do Sul', '', 'RS',
'state', 1),
(739, 'state_Santa_Catarina_739', 'Santa Catarina',
'Santa Catarina', '', 'SC',
'state', 1),
(740, 'state_Sergipe_740', 'Sergipe',
'Sergipe', '', 'SE', 'state', 1),
(741, 'state_S__o_Paulo_741', 'São Paulo', 'São
Paulo', '', 'SP', 'state', 1),
(742, 'state_Tocantins_742', 'Tocantins',
'Tocantins', '', 'TO', 'state',
1),
(743, 'state_Peros_Banhos_743', 'Peros Banhos',
'Peros Banhos', '', 'PB', 'state',
1),
(744, 'state_Salomon_Islands_744', 'Salomon Islands',
'Salomon Islands', '', 'SI',
'state', 1),
(745, 'state_Nelsons_Island_745', 'Nelsons Island',
'Nelsons Island', '', 'NI',
'state', 1),
(746, 'state_Three_Brothers_746', 'Three Brothers',
'Three Brothers', '', 'TB',
'state', 1),
(747, 'state_Eagle_Islands_747', 'Eagle Islands',
'Eagle Islands', '', 'EA', 'state',
1),
(748, 'state_Danger_Island_748', 'Danger Island',
'Danger Island', '', 'DI', 'state',
1),
(749, 'state_Egmont_Islands_749', 'Egmont Islands',
'Egmont Islands', '', 'EG',
'state', 1),
(750, 'state_Diego_Garcia_750', 'Diego Garcia',
'Diego Garcia', '', 'DG', 'state',
1),
(751, 'state_Belait_751', 'Belait', 'Belait',
'', 'BE', 'state', 1),
(752, 'state_Brunei_Muara_752', 'Brunei-Muara',
'Brunei-Muara', '', 'BM', 'state',
1),
(753, 'state_Temburong_753', 'Temburong',
'Temburong', '', 'TE', 'state',
1),
(754, 'state_Tutong_754', 'Tutong', 'Tutong',
'', 'TU', 'state', 1),
(755, 'state_Blagoevgrad_755', 'Blagoevgrad',
'Blagoevgrad', '', '01', 'state',
1),
(756, 'state_Burgas_756', 'Burgas', 'Burgas',
'', '02', 'state', 1),
(757, 'state_Varna_757', 'Varna', 'Varna',
'', '03', 'state', 1),
(758, 'state_Veliko_Tarnovo_758', 'Veliko Tarnovo',
'Veliko Tarnovo', '', '04',
'state', 1),
(759, 'state_Vidin_759', 'Vidin', 'Vidin',
'', '05', 'state', 1),
(760, 'state_Vratsa_760', 'Vratsa', 'Vratsa',
'', '06', 'state', 1),
(761, 'state_Gabrovo_761', 'Gabrovo',
'Gabrovo', '', '07', 'state', 1),
(762, 'state_Dobrich_762', 'Dobrich',
'Dobrich', '', '08', 'state', 1),
(763, 'state_Kardzhali_763', 'Kardzhali',
'Kardzhali', '', '09', 'state',
1),
(764, 'state_Kyustendil_764', 'Kyustendil',
'Kyustendil', '', '10', 'state',
1),
(765, 'state_Lovech_765', 'Lovech', 'Lovech',
'', '11', 'state', 1),
(766, 'state_Montana_766', 'Montana',
'Montana', '', '12', 'state', 1),
(767, 'state_Pazardzhik_767', 'Pazardzhik',
'Pazardzhik', '', '13', 'state',
1),
(768, 'state_Pernik_768', 'Pernik', 'Pernik',
'', '14', 'state', 1),
(769, 'state_Pleven_769', 'Pleven', 'Pleven',
'', '15', 'state', 1),
(770, 'state_Plovdiv_770', 'Plovdiv',
'Plovdiv', '', '16', 'state', 1),
(771, 'state_Razgrad_771', 'Razgrad',
'Razgrad', '', '17', 'state', 1),
(772, 'state_Ruse_772', 'Ruse', 'Ruse',
'', '18', 'state', 1),
(773, 'state_Silistra_773', 'Silistra',
'Silistra', '', '19', 'state', 1),
(774, 'state_Sliven_774', 'Sliven', 'Sliven',
'', '20', 'state', 1),
(775, 'state_Smolyan_775', 'Smolyan',
'Smolyan', '', '21', 'state', 1),
(776, 'state_Sofia_776', 'Sofia', 'Sofia',
'', '23', 'state', 1),
(777, 'state_Sofia_Province_777', 'Sofia Province',
'Sofia Province', '', '22',
'state', 1),
(778, 'state_Stara_Zagora_778', 'Stara Zagora',
'Stara Zagora', '', '24', 'state',
1),
(779, 'state_Targovishte_779', 'Targovishte',
'Targovishte', '', '25', 'state',
1),
(780, 'state_Haskovo_780', 'Haskovo',
'Haskovo', '', '26', 'state', 1),
(781, 'state_Shumen_781', 'Shumen', 'Shumen',
'', '27', 'state', 1),
(782, 'state_Yambol_782', 'Yambol', 'Yambol',
'', '28', 'state', 1),
(783, 'state_Bal___783', 'Balé', 'Balé',
'', 'BAL', 'state', 1),
(784, 'state_Bam_784', 'Bam', 'Bam',
'', 'BAM', 'state', 1),
(785, 'state_Banwa_785', 'Banwa', 'Banwa',
'', 'BAN', 'state', 1),
(786, 'state_Baz__ga_786', 'Bazèga',
'Bazèga', '', 'BAZ', 'state', 1),
(787, 'state_Bougouriba_787', 'Bougouriba',
'Bougouriba', '', 'BGR', 'state',
1),
(788, 'state_Boulgou_788', 'Boulgou',
'Boulgou', '', 'BLG', 'state', 1),
(789, 'state_Boulkiemd___789', 'Boulkiemdé',
'Boulkiemdé', '', 'BLK', 'state',
1),
(790, 'state_Komo___790', 'Komoé', 'Komoé',
'', 'COM', 'state', 1),
(791, 'state_Ganzourgou_791', 'Ganzourgou',
'Ganzourgou', '', 'GAN', 'state',
1),
(792, 'state_Gnagna_792', 'Gnagna', 'Gnagna',
'', 'GNA', 'state', 1),
(793, 'state_Gourma_793', 'Gourma', 'Gourma',
'', 'GOU', 'state', 1),
(794, 'state_Houet_794', 'Houet', 'Houet',
'', 'HOU', 'state', 1),
(795, 'state_Ioba_795', 'Ioba', 'Ioba',
'', 'IOB', 'state', 1),
(796, 'state_Kadiogo_796', 'Kadiogo',
'Kadiogo', '', 'KAD', 'state', 1),
(797, 'state_K__n__dougou_797', 'Kénédougou',
'Kénédougou', '', 'KEN', 'state',
1),
(798, 'state_Komondjari_798', 'Komondjari',
'Komondjari', '', 'KMD', 'state',
1),
(799, 'state_Kompienga_799', 'Kompienga',
'Kompienga', '', 'KMP', 'state',
1),
(800, 'state_Koulp__logo_800', 'Koulpélogo',
'Koulpélogo', '', 'KOP', 'state',
1),
(801, 'state_Kossi_801', 'Kossi', 'Kossi',
'', 'KOS', 'state', 1),
(802, 'state_Kouritenga_802', 'Kouritenga',
'Kouritenga', '', 'KOT', 'state',
1),
(803, 'state_Kourw__ogo_803', 'Kourwéogo',
'Kourwéogo', '', 'KOW', 'state',
1),
(804, 'state_L__raba_804', 'Léraba',
'Léraba', '', 'LER', 'state', 1),
(805, 'state_Loroum_805', 'Loroum', 'Loroum',
'', 'LOR', 'state', 1),
(806, 'state_Mouhoun_806', 'Mouhoun',
'Mouhoun', '', 'MOU', 'state', 1),
(807, 'state_Namentenga_807', 'Namentenga',
'Namentenga', '', 'NAM', 'state',
1),
(808, 'state_Naouri_808', 'Naouri', 'Naouri',
'', 'NAO', 'state', 1),
(809, 'state_Nayala_809', 'Nayala', 'Nayala',
'', 'NAY', 'state', 1),
(810, 'state_Noumbiel_810', 'Noumbiel',
'Noumbiel', '', 'NOU', 'state',
1),
(811, 'state_Oubritenga_811', 'Oubritenga',
'Oubritenga', '', 'OUB', 'state',
1),
(812, 'state_Oudalan_812', 'Oudalan',
'Oudalan', '', 'OUD', 'state', 1),
(813, 'state_Passor___813', 'Passoré',
'Passoré', '', 'PAS', 'state',
1),
(814, 'state_Poni_814', 'Poni', 'Poni',
'', 'PON', 'state', 1),
(815, 'state_S__no_815', 'Séno', 'Séno',
'', 'SEN', 'state', 1),
(816, 'state_Sissili_816', 'Sissili',
'Sissili', '', 'SIS', 'state', 1),
(817, 'state_Sanmatenga_817', 'Sanmatenga',
'Sanmatenga', '', 'SMT', 'state',
1),
(818, 'state_Sangui___818', 'Sanguié',
'Sanguié', '', 'SNG', 'state',
1),
(819, 'state_Soum_819', 'Soum', 'Soum',
'', 'SOM', 'state', 1),
(820, 'state_Sourou_820', 'Sourou', 'Sourou',
'', 'SOR', 'state', 1),
(821, 'state_Tapoa_821', 'Tapoa', 'Tapoa',
'', 'TAP', 'state', 1),
(822, 'state_Tui_822', 'Tui', 'Tui',
'', 'TUI', 'state', 1),
(823, 'state_Yagha_823', 'Yagha', 'Yagha',
'', 'YAG', 'state', 1),
(824, 'state_Yatenga_824', 'Yatenga',
'Yatenga', '', 'YAT', 'state', 1),
(825, 'state_Ziro_825', 'Ziro', 'Ziro',
'', 'ZIR', 'state', 1),
(826, 'state_Zondoma_826', 'Zondoma',
'Zondoma', '', 'ZON', 'state', 1),
(827, 'state_Zoundw__ogo_827', 'Zoundwéogo',
'Zoundwéogo', '', 'ZOU', 'state',
1),
(828, 'state_Bubanza_828', 'Bubanza',
'Bubanza', '', 'BB', 'state', 1),
(829, 'state_Bujumbura_Mairie_829', 'Bujumbura Mairie',
'Bujumbura Mairie', '', 'BJ',
'state', 1),
(830, 'state_Bururi_830', 'Bururi', 'Bururi',
'', 'BR', 'state', 1),
(831, 'state_Cankuzo_831', 'Cankuzo',
'Cankuzo', '', 'CA', 'state', 1),
(832, 'state_Cibitoke_832', 'Cibitoke',
'Cibitoke', '', 'CI', 'state', 1),
(833, 'state_Gitega_833', 'Gitega', 'Gitega',
'', 'GI', 'state', 1),
(834, 'state_Karuzi_834', 'Karuzi', 'Karuzi',
'', 'KR', 'state', 1),
(835, 'state_Kayanza_835', 'Kayanza',
'Kayanza', '', 'KY', 'state', 1),
(836, 'state_Kirundo_836', 'Kirundo',
'Kirundo', '', 'KI', 'state', 1),
(837, 'state_Makamba_837', 'Makamba',
'Makamba', '', 'MA', 'state', 1),
(838, 'state_Muramvya_838', 'Muramvya',
'Muramvya', '', 'MU', 'state', 1),
(839, 'state_Muyinga_839', 'Muyinga',
'Muyinga', '', 'MY', 'state', 1),
(840, 'state_Mwaro_840', 'Mwaro', 'Mwaro',
'', 'MW', 'state', 1),
(841, 'state_Ngozi_841', 'Ngozi', 'Ngozi',
'', 'NG', 'state', 1),
(842, 'state_Rutana_842', 'Rutana', 'Rutana',
'', 'RT', 'state', 1),
(843, 'state_Ruyigi_843', 'Ruyigi', 'Ruyigi',
'', 'RY', 'state', 1),
(844, 'state_Adamaoua_844', 'Adamaoua',
'Adamaoua', '', 'AD', 'state', 1),
(845, 'state_Centre_845', 'Centre', 'Centre',
'', 'CE', 'state', 1),
(846, 'state_Extr__me_Nord_846', 'Extrême-Nord',
'Extrême-Nord', '', 'EN', 'state',
1),
(847, 'state_Est_847', 'Est', 'Est',
'', 'ES', 'state', 1),
(848, 'state_Littoral_848', 'Littoral',
'Littoral', '', 'LT', 'state', 1),
(849, 'state_Nord_849', 'Nord', 'Nord',
'', 'NO', 'state', 1),
(850, 'state_Nord_Ouest_850', 'Nord-Ouest',
'Nord-Ouest', '', 'NW', 'state',
1),
(851, 'state_Ouest_851', 'Ouest', 'Ouest',
'', 'OU', 'state', 1),
(852, 'state_Sud_852', 'Sud', 'Sud',
'', 'SU', 'state', 1),
(853, 'state_Sud_Ouest_853', 'Sud-Ouest',
'Sud-Ouest', '', 'SW', 'state',
1),
(854, 'state_Alberta_854', 'Alberta',
'Alberta', 'AB', 'AB', 'state',
1),
(855, 'state_British_Columbia_855', 'British Columbia',
'British Columbia', 'BC', 'BC',
'state', 1),
(856, 'state_Manitoba_856', 'Manitoba',
'Manitoba', 'MB', 'MB', 'state',
1),
(857, 'state_New_Brunswick_857', 'New Brunswick',
'New Brunswick', 'NB', 'NB',
'state', 1),
(858, 'state_Newfoundland_and_Labrador_858', 'Newfoundland
and Labrador', 'Newfoundland and Labrador', 'NL',
'NL', 'state', 1),
(859, 'state_Nova_Scotia_859', 'Nova Scotia',
'Nova Scotia', 'NS', 'NS', 'state',
1),
(860, 'state_Northwest_Territories_860', 'Northwest
Territories', 'Northwest Territories', 'NT',
'NT', 'state', 1),
(861, 'state_Nunavut_861', 'Nunavut',
'Nunavut', 'NU', 'NU', 'state',
1),
(862, 'state_Ontario_862', 'Ontario',
'Ontario', 'ON', 'ON', 'state',
1),
(863, 'state_Prince_Edward_Island_863', 'Prince Edward
Island', 'Prince Edward Island', 'PE',
'PE', 'state', 1),
(864, 'state_Quebec_864', 'Quebec', 'Quebec',
'QC', 'QC', 'state', 1),
(865, 'state_Saskatchewan_865', 'Saskatchewan',
'Saskatchewan', 'SK', 'SK',
'state', 1),
(866, 'state_Yukon_Territory_866', 'Yukon Territory',
'Yukon Territory', 'YT', 'YT',
'state', 1),
(867, 'state_Brava_867', 'Brava', 'Brava',
'', 'BR', 'state', 1),
(868, 'state_Boa_Vista_868', 'Boa Vista', 'Boa
Vista', '', 'BV', 'state', 1),
(869, 'state_Santa_Catarina_869', 'Santa Catarina',
'Santa Catarina', '', 'CA',
'state', 1),
(870, 'state_Santa_Cruz_870', 'Santa Cruz', 'Santa
Cruz', '', 'CR', 'state', 1),
(871, 'state_Calheta_de_S__o_Miguel_871', 'Calheta de São
Miguel', 'Calheta de São Miguel', '',
'CS', 'state', 1),
(872, 'state_Maio_872', 'Maio', 'Maio',
'', 'MA', 'state', 1),
(873, 'state_Mosteiros_873', 'Mosteiros',
'Mosteiros', '', 'MO', 'state',
1),
(874, 'state_Pa__l_874', 'Paúl', 'Paúl',
'', 'PA', 'state', 1),
(875, 'state_Porto_Novo_875', 'Porto Novo', 'Porto
Novo', '', 'PN', 'state', 1),
(876, 'state_Praia_876', 'Praia', 'Praia',
'', 'PR', 'state', 1),
(877, 'state_Ribeira_Grande_877', 'Ribeira Grande',
'Ribeira Grande', '', 'RG',
'state', 1),
(878, 'state_S__o_Domingos_878', 'São Domingos',
'São Domingos', '', 'SD', 'state',
1),
(879, 'state_S__o_Filipe_879', 'São Filipe',
'São Filipe', '', 'SF', 'state',
1),
(880, 'state_Sal_880', 'Sal', 'Sal',
'', 'SL', 'state', 1),
(881, 'state_S__o_Nicolau_881', 'São Nicolau',
'São Nicolau', '', 'SN', 'state',
1),
(882, 'state_S__o_Vicente_882', 'São Vicente',
'São Vicente', '', 'SV', 'state',
1),
(883, 'state_Tarrafal_883', 'Tarrafal',
'Tarrafal', '', 'TA', 'state', 1),
(884, 'state_Creek_884', 'Creek', 'Creek',
'', 'CR', 'state', 1),
(886, 'state_Midland_886', 'Midland',
'Midland', '', 'MI', 'state', 1),
(887, 'state_South_Town_887', 'South Town', 'South
Town', '', 'SO', 'state', 1),
(888, 'state_Spot_Bay_888', 'Spot Bay', 'Spot
Bay', '', 'SP', 'state', 1),
(889, 'state_Stake_Bay_889', 'Stake Bay', 'Stake
Bay', '', 'ST', 'state', 1),
(890, 'state_West_End_890', 'West End', 'West
End', '', 'WD', 'state', 1),
(891, 'state_Western_891', 'Western',
'Western', '', 'WN', 'state', 1),
(892, 'state_Ouham_892', 'Ouham', 'Ouham',
'', 'AC ', 'state', 1),
(893, 'state_Bamingui_Bangoran_893',
'Bamingui-Bangoran', 'Bamingui-Bangoran', '',
'BB ', 'state', 1),
(894, 'state_Bangui_894', 'Bangui', 'Bangui',
'', 'BGF', 'state', 1),
(895, 'state_Basse_Kotto_895', 'Basse-Kotto',
'Basse-Kotto', '', 'BK ', 'state',
1),
(896, 'state_Haute_Kotto_896', 'Haute-Kotto',
'Haute-Kotto', '', 'HK ', 'state',
1),
(897, 'state_Haut_Mbomou_897', 'Haut-Mbomou',
'Haut-Mbomou', '', 'HM ', 'state',
1),
(898, 'state_Mamb__r___Kad_____898',
'Mambéré-Kadéï', 'Mambéré-Kadéï', '',
'HS ', 'state', 1),
(899, 'state_Nana_Gr__bizi_899', 'Nana-Grébizi',
'Nana-Grébizi', '', 'KB ',
'state', 1),
(900, 'state_K__mo_900', 'Kémo', 'Kémo',
'', 'KG ', 'state', 1),
(901, 'state_Lobaye_901', 'Lobaye', 'Lobaye',
'', 'LB ', 'state', 1),
(902, 'state_Mbomou_902', 'Mbomou', 'Mbomou',
'', 'MB ', 'state', 1),
(903, 'state_Ombella_M_Poko_903',
'Ombella-M''Poko',
'Ombella-M''Poko', '', 'MP ',
'state', 1),
(904, 'state_Nana_Mamb__r___904', 'Nana-Mambéré',
'Nana-Mambéré', '', 'NM ',
'state', 1),
(905, 'state_Ouham_Pend___905', 'Ouham-Pendé',
'Ouham-Pendé', '', 'OP ', 'state',
1),
(906, 'state_Sangha_Mba__r___906', 'Sangha-Mbaéré',
'Sangha-Mbaéré', '', 'SE ',
'state', 1),
(907, 'state_Ouaka_907', 'Ouaka', 'Ouaka',
'', 'UK ', 'state', 1),
(908, 'state_Vakaga_908', 'Vakaga', 'Vakaga',
'', 'VR ', 'state', 1),
(909, 'state_Batha_909', 'Batha', 'Batha',
'', 'BA ', 'state', 1),
(910, 'state_Borkou_Ennedi_Tibesti_910',
'Borkou-Ennedi-Tibesti', 'Borkou-Ennedi-Tibesti',
'', 'BET', 'state', 1),
(911, 'state_Biltine_911', 'Biltine',
'Biltine', '', 'BI ', 'state', 1),
(912, 'state_Chari_Baguirmi_912', 'Chari-Baguirmi',
'Chari-Baguirmi', '', 'CB ',
'state', 1),
(913, 'state_Gu__ra_913', 'Guéra', 'Guéra',
'', 'GR ', 'state', 1),
(914, 'state_Kanem_914', 'Kanem', 'Kanem',
'', 'KA ', 'state', 1),
(915, 'state_Lac_915', 'Lac', 'Lac',
'', 'LC ', 'state', 1),
(916, 'state_Logone_Oriental_916', 'Logone-Oriental',
'Logone-Oriental', '', 'LR ',
'state', 1),
(917, 'state_Logone_Occidental_917',
'Logone-Occidental', 'Logone-Occidental', '',
'LO ', 'state', 1),
(918, 'state_Moyen_Chari_918', 'Moyen-Chari',
'Moyen-Chari', '', 'MC ', 'state',
1),
(919, 'state_Mayo_K__bbi_919', 'Mayo-Kébbi',
'Mayo-Kébbi', '', 'MK ', 'state',
1),
(920, 'state_Ouadda___920', 'Ouaddaï',
'Ouaddaï', '', 'OD ', 'state',
1),
(921, 'state_Salamat_921', 'Salamat',
'Salamat', '', 'SA ', 'state', 1),
(922, 'state_Tandjil___922', 'Tandjilé',
'Tandjilé', '', 'TA ', 'state',
1),
(923, 'state_Ais__n_del_General_Carlos_Iba__ez_923', 'Aisén
del General Carlos Ibañez', 'Aisén del General Carlos
Ibañez', '', 'AI', 'state', 1),
(924, 'state_Antofagasta_924', 'Antofagasta',
'Antofagasta', '', 'AN', 'state',
1),
(925, 'state_La_Araucan__a_925', 'La Araucanía',
'La Araucanía', '', 'AR', 'state',
1),
(926, 'state_Atacama_926', 'Atacama',
'Atacama', '', 'AT', 'state', 1),
(927, 'state_Biob__o_927', 'Biobío',
'Biobío', '', 'BI', 'state', 1),
(928, 'state_Coquimbo_928', 'Coquimbo',
'Coquimbo', '', 'CO', 'state', 1),
(929, 'state_Libertador_Bernardo_O_Higgins_929', 'Libertador
Bernardo O''Higgins', 'Libertador Bernardo
O''Higgins', '', 'LI',
'state', 1),
(930, 'state_Los_Lagos_930', 'Los Lagos', 'Los
Lagos', '', 'LL', 'state', 1),
(931, 'state_Magallanes_y_de_la_Antartica_931', 'Magallanes
y de la Antartica', 'Magallanes y de la Antartica',
'', 'MA', 'state', 1),
(932, 'state_Maule_932', 'Maule', 'Maule',
'', 'ML', 'state', 1),
(933, 'state_Metropolitana_de_Santiago_933', 'Metropolitana
de Santiago', 'Metropolitana de Santiago', '',
'RM', 'state', 1),
(934, 'state_Tarapac___934', 'Tarapacá',
'Tarapacá', '', 'TA', 'state',
1),
(935, 'state_Valpara__so_935', 'Valparaíso',
'Valparaíso', '', 'VS', 'state',
1),
(936, 'state________936', '北京', '北京',
'', '11', 'state', 1),
(937, 'state________937', '天津', '天津',
'', '12', 'state', 1),
(938, 'state________938', '河北', '河北',
'', '13', 'state', 1),
(939, 'state________939', '山西', '山西',
'', '14', 'state', 1),
(940, 'state____________________940',
'内蒙古自治区', '内蒙古自治区',
'', '15', 'state', 1),
(941, 'state________941', '辽宁', '辽宁',
'', '21', 'state', 1),
(942, 'state________942', '吉林', '吉林',
'', '22', 'state', 1),
(943, 'state______________943', '黑龙江省',
'黑龙江省', '', '23', 'state',
1),
(944, 'state________944', '上海', '上海',
'', '31', 'state', 1),
(945, 'state________945', '江苏', '江苏',
'', '32', 'state', 1),
(946, 'state________946', '浙江', '浙江',
'', '33', 'state', 1),
(947, 'state________947', '安徽', '安徽',
'', '34', 'state', 1),
(948, 'state________948', '福建', '福建',
'', '35', 'state', 1),
(949, 'state________949', '江西', '江西',
'', '36', 'state', 1),
(950, 'state________950', '山东', '山东',
'', '37', 'state', 1),
(951, 'state________951', '河南', '河南',
'', '41', 'state', 1),
(952, 'state________952', '湖北', '湖北',
'', '42', 'state', 1),
(953, 'state________953', '湖南', '湖南',
'', '43', 'state', 1),
(954, 'state________954', '广东', '广东',
'', '44', 'state', 1),
(955, 'state_______________________955',
'广西壮族自治区', '广西壮族自治区',
'', '45', 'state', 1),
(956, 'state________956', '海南', '海南',
'', '46', 'state', 1),
(957, 'state________957', '重庆', '重庆',
'', '50', 'state', 1),
(958, 'state________958', '四川', '四川',
'', '51', 'state', 1),
(959, 'state________959', '贵州', '贵州',
'', '52', 'state', 1),
(960, 'state________960', '云南', '云南',
'', '53', 'state', 1),
(961, 'state_________________961', '西藏自治区',
'西藏自治区', '', '54',
'state', 1),
(962, 'state________962', '陕西', '陕西',
'', '61', 'state', 1),
(963, 'state________963', '甘肃', '甘肃',
'', '62', 'state', 1),
(964, 'state________964', '青海', '青海',
'', '63', 'state', 1),
(965, 'state________965', '宁夏', '宁夏',
'', '64', 'state', 1),
(966, 'state________966', '新疆', '新疆',
'', '65', 'state', 1),
(967, 'state________967', '臺灣', '臺灣',
'', '71', 'state', 1),
(968, 'state________968', '香港', '香港',
'', '91', 'state', 1),
(969, 'state________969', '澳門', '澳門',
'', '92', 'state', 1),
(970, 'state_Direction_Island_970', 'Direction Island',
'Direction Island', '', 'D',
'state', 1),
(971, 'state_Home_Island_971', 'Home Island',
'Home Island', '', 'H', 'state',
1),
(972, 'state_Horsburgh_Island_972', 'Horsburgh Island',
'Horsburgh Island', '', 'O',
'state', 1),
(973, 'state_South_Island_973', 'South Island',
'South Island', '', 'S', 'state',
1),
(974, 'state_West_Island_974', 'West Island',
'West Island', '', 'W', 'state',
1),
(975, 'state_Amazonas_975', 'Amazonas',
'Amazonas', '', 'AMA', 'state',
1),
(976, 'state_Antioquia_976', 'Antioquia',
'Antioquia', '', 'ANT', 'state',
1),
(977, 'state_Arauca_977', 'Arauca', 'Arauca',
'', 'ARA', 'state', 1),
(978, 'state_Atl__ntico_978', 'Atlántico',
'Atlántico', '', 'ATL', 'state',
1),
(979, 'state_Bol__var_979', 'Bolívar',
'Bolívar', '', 'BOL', 'state',
1),
(980, 'state_Boyac___980', 'Boyacá',
'Boyacá', '', 'BOY', 'state', 1),
(981, 'state_Caldas_981', 'Caldas', 'Caldas',
'', 'CAL', 'state', 1),
(982, 'state_Caquet___982', 'Caquetá',
'Caquetá', '', 'CAQ', 'state',
1),
(983, 'state_Casanare_983', 'Casanare',
'Casanare', '', 'CAS', 'state',
1),
(984, 'state_Cauca_984', 'Cauca', 'Cauca',
'', 'CAU', 'state', 1),
(985, 'state_Cesar_985', 'Cesar', 'Cesar',
'', 'CES', 'state', 1),
(986, 'state_Choc___986', 'Chocó', 'Chocó',
'', 'CHO', 'state', 1),
(987, 'state_C__rdoba_987', 'Córdoba',
'Córdoba', '', 'COR', 'state',
1),
(988, 'state_Cundinamarca_988', 'Cundinamarca',
'Cundinamarca', '', 'CUN', 'state',
1),
(989, 'state_Bogot___Distrito_Capital_989', 'Bogotá
Distrito Capital', 'Bogotá Distrito Capital', '',
'DC', 'state', 1),
(990, 'state_Guain__a_990', 'Guainía',
'Guainía', '', 'GUA', 'state',
1),
(991, 'state_Guaviare_991', 'Guaviare',
'Guaviare', '', 'GUV', 'state',
1),
(993, 'state_La_Guajira_993', 'La Guajira', 'La
Guajira', '', 'LAG', 'state', 1),
(994, 'state_Magdalena_994', 'Magdalena',
'Magdalena', '', 'MAG', 'state',
1),
(995, 'state_Meta_995', 'Meta', 'Meta',
'', 'MET', 'state', 1),
(996, 'state_Nari__o_996', 'Nariño',
'Nariño', '', 'NAR', 'state', 1),
(997, 'state_Norte_de_Santander_997', 'Norte de
Santander', 'Norte de Santander', '',
'NSA', 'state', 1),
(998, 'state_Putumayo_998', 'Putumayo',
'Putumayo', '', 'PUT', 'state',
1),
(999, 'state_Quind__o_999', 'Quindío',
'Quindío', '', 'QUI', 'state',
1);";
		$this->db->setQuery($query);
		$this->db->query();

		$query="
INSERT IGNORE INTO `#__hikashop_zone` (`zone_id`, `zone_namekey`,
`zone_name`, `zone_name_english`, `zone_code_2`, `zone_code_3`,
`zone_type`, `zone_published`) VALUES
(1000, 'state_Risaralda_1000', 'Risaralda',
'Risaralda', '', 'RIS', 'state',
1),
(1001, 'state_Santander_1001', 'Santander',
'Santander', '', 'SAN', 'state',
1),
(1002, 'state_San_Andr__s_y_Providencia_1002', 'San Andrés
y Providencia', 'San Andrés y Providencia', '',
'SAP', 'state', 1),
(1003, 'state_Sucre_1003', 'Sucre', 'Sucre',
'', 'SUC', 'state', 1),
(1004, 'state_Tolima_1004', 'Tolima',
'Tolima', '', 'TOL', 'state', 1),
(1005, 'state_Valle_del_Cauca_1005', 'Valle del Cauca',
'Valle del Cauca', '', 'VAC',
'state', 1),
(1006, 'state_Vaup__s_1006', 'Vaupés',
'Vaupés', '', 'VAU', 'state', 1),
(1007, 'state_Vichada_1007', 'Vichada',
'Vichada', '', 'VID', 'state', 1),
(1008, 'state_Anjouan_1008', 'Anjouan',
'Anjouan', '', 'A', 'state', 1),
(1009, 'state_Grande_Comore_1009', 'Grande Comore',
'Grande Comore', '', 'G', 'state',
1),
(1010, 'state_Moh__li_1010', 'Mohéli',
'Mohéli', '', 'M', 'state', 1),
(1011, 'state_Congo_Central_1011', 'Congo-Central',
'Congo-Central', '', 'BC', 'state',
1),
(1012, 'state_Bandundu_1012', 'Bandundu',
'Bandundu', '', 'BN', 'state', 1),
(1013, 'state___quateur_1013', 'Équateur',
'Équateur', '', 'EQ', 'state',
1),
(1014, 'state_Katanga_1014', 'Katanga',
'Katanga', '', 'KA', 'state', 1),
(1015, 'state_Kasai_Oriental_1015', 'Kasai-Oriental',
'Kasai-Oriental', '', 'KE',
'state', 1),
(1016, 'state_Kinshasa_1016', 'Kinshasa',
'Kinshasa', '', 'KN', 'state', 1),
(1017, 'state_Kasai_Occidental_1017',
'Kasai-Occidental', 'Kasai-Occidental', '',
'KW', 'state', 1),
(1018, 'state_Maniema_1018', 'Maniema',
'Maniema', '', 'MA', 'state', 1),
(1019, 'state_Nord_Kivu_1019', 'Nord-Kivu',
'Nord-Kivu', '', 'NK', 'state',
1),
(1020, 'state_Orientale_1020', 'Orientale',
'Orientale', '', 'OR', 'state',
1),
(1021, 'state_Sud_Kivu_1021', 'Sud-Kivu',
'Sud-Kivu', '', 'SK', 'state', 1),
(1022, 'state_Pukapuka_1022', 'Pukapuka',
'Pukapuka', '', 'PU', 'state', 1),
(1023, 'state_Rakahanga_1023', 'Rakahanga',
'Rakahanga', '', 'RK', 'state',
1),
(1024, 'state_Manihiki_1024', 'Manihiki',
'Manihiki', '', 'MK', 'state', 1),
(1025, 'state_Penrhyn_1025', 'Penrhyn',
'Penrhyn', '', 'PE', 'state', 1),
(1026, 'state_Nassau_Island_1026', 'Nassau Island',
'Nassau Island', '', 'NI', 'state',
1),
(1027, 'state_Surwarrow_1027', 'Surwarrow',
'Surwarrow', '', 'SU', 'state',
1),
(1028, 'state_Palmerston_1028', 'Palmerston',
'Palmerston', '', 'PA', 'state',
1),
(1029, 'state_Aitutaki_1029', 'Aitutaki',
'Aitutaki', '', 'AI', 'state', 1),
(1030, 'state_Manuae_1030', 'Manuae',
'Manuae', '', 'MA', 'state', 1),
(1031, 'state_Takutea_1031', 'Takutea',
'Takutea', '', 'TA', 'state', 1),
(1032, 'state_Mitiaro_1032', 'Mitiaro',
'Mitiaro', '', 'MT', 'state', 1),
(1033, 'state_Atiu_1033', 'Atiu', 'Atiu',
'', 'AT', 'state', 1),
(1034, 'state_Mauke_1034', 'Mauke', 'Mauke',
'', 'MU', 'state', 1),
(1035, 'state_Rarotonga_1035', 'Rarotonga',
'Rarotonga', '', 'RR', 'state',
1),
(1036, 'state_Mangaia_1036', 'Mangaia',
'Mangaia', '', 'MG', 'state', 1),
(1037, 'state_Alajuela_1037', 'Alajuela',
'Alajuela', '', 'A', 'state', 1),
(1038, 'state_Cartago_1038', 'Cartago',
'Cartago', '', 'C', 'state', 1),
(1039, 'state_Guanacaste_1039', 'Guanacaste',
'Guanacaste', '', 'G', 'state',
1),
(1040, 'state_Heredia_1040', 'Heredia',
'Heredia', '', 'H', 'state', 1),
(1041, 'state_Lim__n_1041', 'Limón',
'Limón', '', 'L', 'state', 1),
(1042, 'state_Puntarenas_1042', 'Puntarenas',
'Puntarenas', '', 'P', 'state',
1),
(1043, 'state_San_Jos___1043', 'San José', 'San
José', '', 'SJ', 'state', 1),
(1044, 'state_Lagunes_1044', 'Lagunes',
'Lagunes', '', '01', 'state', 1),
(1045, 'state_Haut_Sassandra_1045', 'Haut-Sassandra',
'Haut-Sassandra', '', '02',
'state', 1),
(1046, 'state_Savanes_1046', 'Savanes',
'Savanes', '', '03', 'state', 1),
(1047, 'state_Vall__e_du_Bandama_1047', 'Vallée du
Bandama', 'Vallée du Bandama', '',
'04', 'state', 1),
(1048, 'state_Moyen_Como___1048', 'Moyen-Comoé',
'Moyen-Comoé', '', '05', 'state',
1),
(1049, 'state_Dix_Huit_1049', 'Dix-Huit',
'Dix-Huit', '', '06', 'state', 1),
(1050, 'state_Lacs_1050', 'Lacs', 'Lacs',
'', '07', 'state', 1),
(1051, 'state_Zanzan_1051', 'Zanzan',
'Zanzan', '', '08', 'state', 1),
(1052, 'state_Bas_Sassandra_1052', 'Bas-Sassandra',
'Bas-Sassandra', '', '09', 'state',
1),
(1053, 'state_Dengu__l___1053', 'Denguélé',
'Denguélé', '', '10', 'state',
1),
(1054, 'state_N_zi_Como___1054',
'N''zi-Comoé', 'N''zi-Comoé',
'', '11', 'state', 1),
(1055, 'state_Marahou___1055', 'Marahoué',
'Marahoué', '', '12', 'state',
1),
(1056, 'state_Sud_Como___1056', 'Sud-Comoé',
'Sud-Comoé', '', '13', 'state',
1),
(1057, 'state_Worodouqou_1057', 'Worodouqou',
'Worodouqou', '', '14', 'state',
1),
(1058, 'state_Sud_Bandama_1058', 'Sud-Bandama',
'Sud-Bandama', '', '15', 'state',
1),
(1059, 'state_Agn__bi_1059', 'Agnébi',
'Agnébi', '', '16', 'state', 1),
(1060, 'state_Bafing_1060', 'Bafing',
'Bafing', '', '17', 'state', 1),
(1061, 'state_Fromager_1061', 'Fromager',
'Fromager', '', '18', 'state', 1),
(1062, 'state_Moyen_Cavally_1062', 'Moyen-Cavally',
'Moyen-Cavally', '', '19', 'state',
1),
(1063, 'state_Zagreba__ka___upanija_1063', 'Zagrebačka
županija', 'Zagrebačka županija', '',
'01', 'state', 1),
(1064, 'state_Krapinsko_zagorska___upanija_1064',
'Krapinsko-zagorska županija', 'Krapinsko-zagorska
županija', '', '02', 'state', 1),
(1065, 'state_Sisa__ko_moslava__ka___upanija_1065',
'Sisačko-moslavačka županija', 'Sisačko-moslavačka
županija', '', '03', 'state', 1),
(1066, 'state_Karlova__ka___upanija_1066', 'Karlovačka
županija', 'Karlovačka županija', '',
'04', 'state', 1),
(1067, 'state_Vara__dinska___upanija_1067', 'Varaždinska
županija', 'Varaždinska županija', '',
'05', 'state', 1),
(1068, 'state_Koprivni__ko_kri__eva__ka___upanija_1068',
'Koprivničko-križevačka županija',
'Koprivničko-križevačka županija', '',
'06', 'state', 1),
(1069, 'state_Bjelovarsko_bilogorska___upanija_1069',
'Bjelovarsko-bilogorska županija', 'Bjelovarsko-bilogorska
županija', '', '07', 'state', 1),
(1070, 'state_Primorsko_goranska___upanija_1070',
'Primorsko-goranska županija', 'Primorsko-goranska
županija', '', '08', 'state', 1),
(1071, 'state_Li__ko_senjska___upanija_1071',
'Ličko-senjska županija', 'Ličko-senjska županija',
'', '09', 'state', 1),
(1072, 'state_Viroviti__ko_podravska___upanija_1072',
'Virovitičko-podravska županija', 'Virovitičko-podravska
županija', '', '10', 'state', 1),
(1073, 'state_Po__e__ko_slavonska___upanija_1073',
'Požeško-slavonska županija', 'Požeško-slavonska
županija', '', '11', 'state', 1),
(1074, 'state_Brodsko_posavska___upanija_1074',
'Brodsko-posavska županija', 'Brodsko-posavska
županija', '', '12', 'state', 1),
(1075, 'state_Zadarska___upanija_1075', 'Zadarska
županija', 'Zadarska županija', '',
'13', 'state', 1),
(1076, 'state_Osje__ko_baranjska___upanija_1076',
'Osječko-baranjska županija', 'Osječko-baranjska
županija', '', '14', 'state', 1),
(1077, 'state___ibensko_kninska___upanija_1077',
'Šibensko-kninska županija', 'Šibensko-kninska
županija', '', '15', 'state', 1),
(1078, 'state_Vukovarsko_srijemska___upanija_1078',
'Vukovarsko-srijemska županija', 'Vukovarsko-srijemska
županija', '', '16', 'state', 1),
(1079, 'state_Splitsko_dalmatinska___upanija_1079',
'Splitsko-dalmatinska županija', 'Splitsko-dalmatinska
županija', '', '17', 'state', 1),
(1080, 'state_Istarska___upanija_1080', 'Istarska
županija', 'Istarska županija', '',
'18', 'state', 1),
(1081, 'state_Dubrova__ko_neretvanska___upanija_1081',
'Dubrovačko-neretvanska županija',
'Dubrovačko-neretvanska županija', '',
'19', 'state', 1),
(1082, 'state_Me__imurska___upanija_1082', 'Međimurska
županija', 'Međimurska županija', '',
'20', 'state', 1),
(1083, 'state_Zagreb_1083', 'Zagreb',
'Zagreb', '', '21', 'state', 1),
(1084, 'state_Pinar_del_R__o_1084', 'Pinar del Río',
'Pinar del Río', '', '01',
'state', 1),
(1085, 'state_La_Habana_1085', 'La Habana', 'La
Habana', '', '02', 'state', 1),
(1086, 'state_Ciudad_de_La_Habana_1086', 'Ciudad de La
Habana', 'Ciudad de La Habana', '',
'03', 'state', 1),
(1087, 'state_Matanzas_1087', 'Matanzas',
'Matanzas', '', '04', 'state', 1),
(1088, 'state_Villa_Clara_1088', 'Villa Clara',
'Villa Clara', '', '05', 'state',
1),
(1089, 'state_Cienfuegos_1089', 'Cienfuegos',
'Cienfuegos', '', '06', 'state',
1),
(1090, 'state_Sancti_Sp__ritus_1090', 'Sancti
Spíritus', 'Sancti Spíritus', '',
'07', 'state', 1),
(1091, 'state_Ciego_de___vila_1091', 'Ciego de Ávila',
'Ciego de Ávila', '', '08',
'state', 1),
(1092, 'state_Camag__ey_1092', 'Camagüey',
'Camagüey', '', '09', 'state',
1),
(1093, 'state_Las_Tunas_1093', 'Las Tunas', 'Las
Tunas', '', '10', 'state', 1),
(1094, 'state_Holgu__n_1094', 'Holguín',
'Holguín', '', '11', 'state', 1),
(1095, 'state_Granma_1095', 'Granma',
'Granma', '', '12', 'state', 1),
(1096, 'state_Santiago_de_Cuba_1096', 'Santiago de
Cuba', 'Santiago de Cuba', '', '13',
'state', 1),
(1097, 'state_Guant__namo_1097', 'Guantánamo',
'Guantánamo', '', '14', 'state',
1),
(1098, 'state_Isla_de_la_Juventud_1098', 'Isla de la
Juventud', 'Isla de la Juventud', '',
'99', 'state', 1),
(1099, 'state_________v_______1099', 'Κερύvεια',
'Κερύvεια', '', '01',
'state', 1),
(1100, 'state__________________1100',
'Λευκωσία', 'Λευκωσία', '',
'02', 'state', 1),
(1101, 'state______________________1101',
'Αμμόχωστος', 'Αμμόχωστος',
'', '03', 'state', 1),
(1102, 'state________________1102', 'Λάρνακα',
'Λάρνακα', '', '04',
'state', 1),
(1103, 'state________________1103', 'Λεμεσός',
'Λεμεσός', '', '05',
'state', 1),
(1104, 'state____________1104', 'Πάφος',
'Πάφος', '', '06', 'state',
1),
(1105, 'state_Jiho__esk___kraj_1105', 'Jihočeský
kraj', 'Jihočeský kraj', '', 'JC',
'state', 1),
(1106, 'state_Jihomoravsk___kraj_1106', 'Jihomoravský
kraj', 'Jihomoravský kraj', '', 'JM',
'state', 1),
(1107, 'state_Karlovarsk___kraj_1107', 'Karlovarský
kraj', 'Karlovarský kraj', '', 'KA',
'state', 1),
(1108, 'state_Vyso__ina_kraj_1108', 'Vysočina kraj',
'Vysočina kraj', '', 'VY',
'state', 1),
(1109, 'state_Kr__lov__hradeck___kraj_1109',
'Královéhradecký kraj', 'Královéhradecký kraj',
'', 'KR', 'state', 1),
(1110, 'state_Libereck___kraj_1110', 'Liberecký kraj',
'Liberecký kraj', '', 'LI',
'state', 1),
(1111, 'state_Moravskoslezsk___kraj_1111', 'Moravskoslezský
kraj', 'Moravskoslezský kraj', '',
'MO', 'state', 1),
(1112, 'state_Olomouck___kraj_1112', 'Olomoucký kraj',
'Olomoucký kraj', '', 'OL',
'state', 1),
(1113, 'state_Pardubick___kraj_1113', 'Pardubický
kraj', 'Pardubický kraj', '', 'PA',
'state', 1),
(1114, 'state_Plze__sk___kraj_1114', 'Plzeňský kraj',
'Plzeňský kraj', '', 'PL',
'state', 1),
(1115, 'state_Hlavn___m__sto_Praha_1115', 'Hlavní město
Praha', 'Hlavní město Praha', '',
'PR', 'state', 1),
(1116, 'state_St__edo__esk___kraj_1116', 'Středočeský
kraj', 'Středočeský kraj', '', 'ST',
'state', 1),
(1117, 'state___steck___kraj_1117', 'Ústecký kraj',
'Ústecký kraj', '', 'US',
'state', 1),
(1118, 'state_Zl__nsk___kraj_1118', 'Zlínský kraj',
'Zlínský kraj', '', 'ZL',
'state', 1),
(1119, 'state_Bornholms_Regionskommune_1119', 'Bornholms
Regionskommune', 'Bornholms Regionskommune', '',
'040', 'state', 1),
(1120, 'state_K__benhavn_1120', 'København',
'København', '', '101', 'state',
1),
(1121, 'state_Frederiksberg_1121', 'Frederiksberg',
'Frederiksberg', '', '147',
'state', 1),
(1122, 'state___rhus_Amt_1122', 'Århus Amt',
'Århus Amt', '', '070', 'state',
1),
(1123, 'state_K__benhavns_Amt_1123', 'Københavns Amt',
'Københavns Amt', '', '015',
'state', 1),
(1124, 'state_Frederiksborg_Amt_1124', 'Frederiksborg
Amt', 'Frederiksborg Amt', '', '020',
'state', 1),
(1125, 'state_Fyns_Amt_1125', 'Fyns Amt', 'Fyns
Amt', '', '042', 'state', 1),
(1126, 'state_Nordjyllands_Amt_1126', 'Nordjyllands
Amt', 'Nordjyllands Amt', '', '080',
'state', 1),
(1127, 'state_Ribe_Amt_1127', 'Ribe Amt', 'Ribe
Amt', '', '055', 'state', 1),
(1128, 'state_Ringkj__bing_Amt_1128', 'Ringkjøbing
Amt', 'Ringkjøbing Amt', '', '065',
'state', 1),
(1129, 'state_Roskilde_Amt_1129', 'Roskilde Amt',
'Roskilde Amt', '', '025', 'state',
1),
(1130, 'state_S__nderjyllands_Amt_1130', 'Sønderjyllands
Amt', 'Sønderjyllands Amt', '', '050',
'state', 1),
(1131, 'state_Storstr__ms_Amt_1131', 'Storstrøms Amt',
'Storstrøms Amt', '', '035',
'state', 1),
(1132, 'state_Vejle_Amt_1132', 'Vejle Amt', 'Vejle
Amt', '', '060', 'state', 1),
(1133, 'state_Vestsj__llands_Amt_1133', 'Vestsjællands
Amt', 'Vestsjællands Amt', '', '030',
'state', 1),
(1134, 'state_Viborg_Amt_1134', 'Viborg Amt',
'Viborg Amt', '', '076', 'state',
1),
(1135, 'state_Region_d_Ali_Sabieh_1135', 'Region
d''Ali Sabieh', 'Region d''Ali Sabieh',
'', 'AS', 'state', 1),
(1136, 'state_Region_d_Arta_1136', 'Region
d''Arta', 'Region d''Arta',
'', 'AR', 'state', 1),
(1137, 'state_Region_de_Dikhil_1137', 'Region de
Dikhil', 'Region de Dikhil', '', 'DI',
'state', 1),
(1138, 'state_Ville_de_Djibouti_1138', 'Ville de
Djibouti', 'Ville de Djibouti', '',
'DJ', 'state', 1),
(1139, 'state_Region_d_Obock_1139', 'Region
d''Obock', 'Region d''Obock',
'', 'OB', 'state', 1),
(1140, 'state_Region_de_Tadjourah_1140', 'Region de
Tadjourah', 'Region de Tadjourah', '',
'TA', 'state', 1),
(1141, 'state_Saint_Andrew_Parish_1141', 'Saint Andrew
Parish', 'Saint Andrew Parish', '',
'AND', 'state', 1),
(1142, 'state_Saint_David_Parish_1142', 'Saint David
Parish', 'Saint David Parish', '',
'DAV', 'state', 1),
(1143, 'state_Saint_George_Parish_1143', 'Saint George
Parish', 'Saint George Parish', '',
'GEO', 'state', 1),
(1144, 'state_Saint_John_Parish_1144', 'Saint John
Parish', 'Saint John Parish', '', 'JOH',
'state', 1),
(1145, 'state_Saint_Joseph_Parish_1145', 'Saint Joseph
Parish', 'Saint Joseph Parish', '',
'JOS', 'state', 1),
(1146, 'state_Saint_Luke_Parish_1146', 'Saint Luke
Parish', 'Saint Luke Parish', '', 'LUK',
'state', 1),
(1147, 'state_Saint_Mark_Parish_1147', 'Saint Mark
Parish', 'Saint Mark Parish', '', 'MAR',
'state', 1),
(1148, 'state_Saint_Patrick_Parish_1148', 'Saint Patrick
Parish', 'Saint Patrick Parish', '',
'PAT', 'state', 1),
(1149, 'state_Saint_Paul_Parish_1149', 'Saint Paul
Parish', 'Saint Paul Parish', '', 'PAU',
'state', 1),
(1150, 'state_Saint_Peter_Parish_1150', 'Saint Peter
Parish', 'Saint Peter Parish', '',
'PET', 'state', 1),
(1151, 'state_Distrito_Nacional_1151', 'Distrito
Nacional', 'Distrito Nacional', '',
'01', 'state', 1),
(1152, 'state___zua_1152', 'Ázua', 'Ázua',
'', '02', 'state', 1),
(1153, 'state_Baoruco_1153', 'Baoruco',
'Baoruco', '', '03', 'state', 1),
(1154, 'state_Barahona_1154', 'Barahona',
'Barahona', '', '04', 'state', 1),
(1155, 'state_Dajab__n_1155', 'Dajabón',
'Dajabón', '', '05', 'state', 1),
(1156, 'state_Duarte_1156', 'Duarte',
'Duarte', '', '06', 'state', 1),
(1157, 'state_El__as_Pi__a_1157', 'Elías Piña',
'Elías Piña', '', '07', 'state',
1),
(1158, 'state_El_Seibo_1158', 'El Seibo', 'El
Seibo', '', '08', 'state', 1),
(1159, 'state_Espaillat_1159', 'Espaillat',
'Espaillat', '', '09', 'state',
1),
(1160, 'state_Independencia_1160', 'Independencia',
'Independencia', '', '10', 'state',
1),
(1161, 'state_La_Altagracia_1161', 'La Altagracia',
'La Altagracia', '', '11', 'state',
1),
(1162, 'state_La_Romana_1162', 'La Romana', 'La
Romana', '', '12', 'state', 1),
(1163, 'state_La_Vega_1163', 'La Vega', 'La
Vega', '', '13', 'state', 1),
(1164, 'state_Mar__a_Trinidad_S__nchez_1164', 'María
Trinidad Sánchez', 'María Trinidad Sánchez',
'', '14', 'state', 1),
(1165, 'state_Monte_Cristi_1165', 'Monte Cristi',
'Monte Cristi', '', '15', 'state',
1),
(1166, 'state_Pedernales_1166', 'Pedernales',
'Pedernales', '', '16', 'state',
1),
(1167, 'state_Peravia_1167', 'Peravia',
'Peravia', '', '17', 'state', 1),
(1168, 'state_Puerto_Plata_1168', 'Puerto Plata',
'Puerto Plata', '', '18', 'state',
1),
(1169, 'state_Salcedo_1169', 'Salcedo',
'Salcedo', '', '19', 'state', 1),
(1170, 'state_Saman___1170', 'Samaná',
'Samaná', '', '20', 'state', 1),
(1171, 'state_San_Crist__bal_1171', 'San Cristóbal',
'San Cristóbal', '', '21',
'state', 1),
(1172, 'state_San_Juan_1172', 'San Juan', 'San
Juan', '', '22', 'state', 1),
(1173, 'state_San_Pedro_de_Macor__s_1173', 'San Pedro de
Macorís', 'San Pedro de Macorís', '',
'23', 'state', 1),
(1174, 'state_S__nchez_Ram__rez_1174', 'Sánchez
Ramírez', 'Sánchez Ramírez', '',
'24', 'state', 1),
(1175, 'state_Santiago_1175', 'Santiago',
'Santiago', '', '25', 'state', 1),
(1176, 'state_Santiago_Rodr__guez_1176', 'Santiago
Rodríguez', 'Santiago Rodríguez', '',
'26', 'state', 1),
(1177, 'state_Valverde_1177', 'Valverde',
'Valverde', '', '27', 'state', 1),
(1178, 'state_Monse__or_Nouel_1178', 'Monseñor Nouel',
'Monseñor Nouel', '', '28',
'state', 1),
(1179, 'state_Monte_Plata_1179', 'Monte Plata',
'Monte Plata', '', '29', 'state',
1),
(1180, 'state_Hato_Mayor_1180', 'Hato Mayor',
'Hato Mayor', '', '30', 'state',
1),
(1181, 'state_Aileu_1181', 'Aileu', 'Aileu',
'', 'AL', 'state', 1),
(1182, 'state_Ainaro_1182', 'Ainaro',
'Ainaro', '', 'AN', 'state', 1),
(1183, 'state_Baucau_1183', 'Baucau',
'Baucau', '', 'BA', 'state', 1),
(1184, 'state_Bobonaro_1184', 'Bobonaro',
'Bobonaro', '', 'BO', 'state', 1),
(1185, 'state_Cova_Lima_1185', 'Cova-Lima',
'Cova-Lima', '', 'CO', 'state',
1),
(1186, 'state_Dili_1186', 'Dili', 'Dili',
'', 'DI', 'state', 1),
(1187, 'state_Ermera_1187', 'Ermera',
'Ermera', '', 'ER', 'state', 1),
(1188, 'state_Lautem_1188', 'Lautem',
'Lautem', '', 'LA', 'state', 1),
(1189, 'state_Liqui_____1189', 'Liquiçá',
'Liquiçá', '', 'LI', 'state',
1),
(1190, 'state_Manufahi_1190', 'Manufahi',
'Manufahi', '', 'MF', 'state', 1),
(1191, 'state_Manatuto_1191', 'Manatuto',
'Manatuto', '', 'MT', 'state', 1),
(1192, 'state_Oecussi_1192', 'Oecussi',
'Oecussi', '', 'OE', 'state', 1),
(1193, 'state_Viqueque_1193', 'Viqueque',
'Viqueque', '', 'VI', 'state', 1),
(1194, 'state_Azuay_1194', 'Azuay', 'Azuay',
'', 'A', 'state', 1),
(1195, 'state_Bol__var_1195', 'Bolívar',
'Bolívar', '', 'B', 'state', 1),
(1196, 'state_Carchi_1196', 'Carchi',
'Carchi', '', 'C', 'state', 1),
(1197, 'state_Orellana_1197', 'Orellana',
'Orellana', '', 'D', 'state', 1),
(1198, 'state_Esmeraldas_1198', 'Esmeraldas',
'Esmeraldas', '', 'E', 'state',
1),
(1199, 'state_Ca__ar_1199', 'Cañar',
'Cañar', '', 'F', 'state', 1),
(1200, 'state_Guayas_1200', 'Guayas',
'Guayas', '', 'G', 'state', 1),
(1201, 'state_Chimborazo_1201', 'Chimborazo',
'Chimborazo', '', 'H', 'state',
1),
(1202, 'state_Imbabura_1202', 'Imbabura',
'Imbabura', '', 'I', 'state', 1),
(1203, 'state_Loja_1203', 'Loja', 'Loja',
'', 'L', 'state', 1),
(1204, 'state_Manab___1204', 'Manabí',
'Manabí', '', 'M', 'state', 1),
(1205, 'state_Napo_1205', 'Napo', 'Napo',
'', 'N', 'state', 1),
(1206, 'state_El_Oro_1206', 'El Oro', 'El
Oro', '', 'O', 'state', 1),
(1207, 'state_Pichincha_1207', 'Pichincha',
'Pichincha', '', 'P', 'state', 1),
(1208, 'state_Los_R__os_1208', 'Los Ríos', 'Los
Ríos', '', 'R', 'state', 1),
(1209, 'state_Morona_Santiago_1209', 'Morona-Santiago',
'Morona-Santiago', '', 'S',
'state', 1),
(1210, 'state_Tungurahua_1210', 'Tungurahua',
'Tungurahua', '', 'T', 'state',
1),
(1211, 'state_Sucumb__os_1211', 'Sucumbíos',
'Sucumbíos', '', 'U', 'state',
1),
(1212, 'state_Gal__pagos_1212', 'Galápagos',
'Galápagos', '', 'W', 'state',
1),
(1213, 'state_Cotopaxi_1213', 'Cotopaxi',
'Cotopaxi', '', 'X', 'state', 1),
(1214, 'state_Pastaza_1214', 'Pastaza',
'Pastaza', '', 'Y', 'state', 1),
(1215, 'state_Zamora_Chinchipe_1215',
'Zamora-Chinchipe', 'Zamora-Chinchipe', '',
'Z', 'state', 1),
(1216, 'state______________________1216',
'الإسكندرية', 'الإسكندرية',
'', 'ALX', 'state', 1),
(1217, 'state____________1217', 'أسوان',
'أسوان', '', 'ASN', 'state',
1),
(1218, 'state____________1218', 'أسيوط',
'أسيوط', '', 'AST', 'state',
1),
(1219, 'state_________________________1219', 'البحر
الأحمر', 'البحر الأحمر', '',
'BA', 'state', 1),
(1220, 'state________________1220', 'البحيرة',
'البحيرة', '', 'BH',
'state', 1),
(1221, 'state_________________1221', 'بني سويف',
'بني سويف', '', 'BNS',
'state', 1),
(1222, 'state________________1222', 'القاهرة',
'القاهرة', '', 'C', 'state',
1),
(1223, 'state__________________1223',
'الدقهلية', 'الدقهلية', '',
'DK', 'state', 1),
(1224, 'state____________1224', 'دمياط',
'دمياط', '', 'DT', 'state',
1),
(1225, 'state______________1225', 'الفيوم',
'الفيوم', '', 'FYM', 'state',
1),
(1226, 'state________________1226', 'الغربية',
'الغربية', '', 'GH',
'state', 1),
(1227, 'state______________1227', 'الجيزة',
'الجيزة', '', 'GZ', 'state',
1),
(1228, 'state________________________1228',
'الإسماعيلية', 'الإسماعيلية',
'', 'IS', 'state', 1),
(1229, 'state_____________________1229', 'جنوب
سيناء', 'جنوب سيناء', '',
'JS', 'state', 1),
(1230, 'state____________________1230',
'القليوبية', 'القليوبية',
'', 'KB', 'state', 1),
(1231, 'state___________________1231', 'كفر
الشيخ', 'كفر الشيخ', '',
'KFS', 'state', 1),
(1232, 'state________1232', 'قنا',
'قنا', '', 'KN', 'state', 1),
(1233, 'state___________________________1233', 'محافظة
المنيا', 'محافظة المنيا', '',
'MN', 'state', 1),
(1234, 'state__________________1234',
'المنوفية', 'المنوفية', '',
'MNF', 'state', 1),
(1235, 'state____________1235', 'مطروح',
'مطروح', '', 'MT', 'state',
1),
(1236, 'state______________________________1236',
'محافظة بور سعيد', 'محافظة بور
سعيد', '', 'PTS', 'state', 1),
(1237, 'state_________________________1237', 'محافظة
سوهاج', 'محافظة سوهاج', '',
'SHG', 'state', 1),
(1238, 'state___________________________________1238',
'المحافظة الشرقيّة', 'المحافظة
الشرقيّة', '', 'SHR', 'state',
1),
(1239, 'state_____________________1239', 'شمال
سيناء', 'شمال سيناء', '',
'SIN', 'state', 1),
(1240, 'state______________1240', 'السويس',
'السويس', '', 'SUZ', 'state',
1),
(1241, 'state___________________________1241', 'الوادى
الجديد', 'الوادى الجديد', '',
'WAD', 'state', 1),
(1242, 'state_Ahuachap__n_1242', 'Ahuachapán',
'Ahuachapán', '', 'AH', 'state',
1),
(1243, 'state_Caba__as_1243', 'Cabañas',
'Cabañas', '', 'CA', 'state', 1),
(1244, 'state_Chalatenango_1244', 'Chalatenango',
'Chalatenango', '', 'CH', 'state',
1),
(1245, 'state_Cuscatl__n_1245', 'Cuscatlán',
'Cuscatlán', '', 'CU', 'state',
1),
(1246, 'state_La_Libertad_1246', 'La Libertad',
'La Libertad', '', 'LI', 'state',
1),
(1247, 'state_Moraz__n_1247', 'Morazán',
'Morazán', '', 'MO', 'state', 1),
(1248, 'state_La_Paz_1248', 'La Paz', 'La
Paz', '', 'PA', 'state', 1),
(1249, 'state_Santa_Ana_1249', 'Santa Ana', 'Santa
Ana', '', 'SA', 'state', 1),
(1250, 'state_San_Miguel_1250', 'San Miguel', 'San
Miguel', '', 'SM', 'state', 1),
(1251, 'state_Sonsonate_1251', 'Sonsonate',
'Sonsonate', '', 'SO', 'state',
1),
(1252, 'state_San_Salvador_1252', 'San Salvador',
'San Salvador', '', 'SS', 'state',
1),
(1253, 'state_San_Vicente_1253', 'San Vicente',
'San Vicente', '', 'SV', 'state',
1),
(1254, 'state_La_Uni__n_1254', 'La Unión', 'La
Unión', '', 'UN', 'state', 1),
(1255, 'state_Usulut__n_1255', 'Usulután',
'Usulután', '', 'US', 'state',
1),
(1256, 'state_Annob__n_1256', 'Annobón',
'Annobón', '', 'AN', 'state', 1),
(1257, 'state_Bioko_Norte_1257', 'Bioko Norte',
'Bioko Norte', '', 'BN', 'state',
1),
(1258, 'state_Bioko_Sur_1258', 'Bioko Sur', 'Bioko
Sur', '', 'BS', 'state', 1),
(1259, 'state_Centro_Sur_1259', 'Centro Sur',
'Centro Sur', '', 'CS', 'state',
1),
(1260, 'state_Ki___Ntem_1260', 'Kié-Ntem',
'Kié-Ntem', '', 'KN', 'state',
1),
(1261, 'state_Litoral_1261', 'Litoral',
'Litoral', '', 'LI', 'state', 1),
(1262, 'state_Wele_Nzas_1262', 'Wele-Nzas',
'Wele-Nzas', '', 'WN', 'state',
1),
(1263, 'state_Zoba_Anseba_1263', 'Zoba Anseba',
'Zoba Anseba', '', 'AN', 'state',
1),
(1264, 'state_Zoba_Debubawi_Keyih_Bahri_1264', 'Zoba
Debubawi Keyih Bahri', 'Zoba Debubawi Keyih Bahri',
'', 'DK', 'state', 1),
(1265, 'state_Zoba_Debub_1265', 'Zoba Debub',
'Zoba Debub', '', 'DU', 'state',
1),
(1266, 'state_Zoba_Gash_Barka_1266', 'Zoba Gash-Barka',
'Zoba Gash-Barka', '', 'GB',
'state', 1),
(1267, 'state_Zoba_Ma_akel_1267', 'Zoba
Ma''akel', 'Zoba Ma''akel',
'', 'MA', 'state', 1),
(1268, 'state_Zoba_Semienawi_Keyih_Bahri_1268', 'Zoba
Semienawi Keyih Bahri', 'Zoba Semienawi Keyih Bahri',
'', 'SK', 'state', 1),
(1269, 'state_Harju_maakond_1269', 'Harju maakond',
'Harju maakond', '', '37', 'state',
1),
(1270, 'state_Hiiu_maakond_1270', 'Hiiu maakond',
'Hiiu maakond', '', '39', 'state',
1),
(1271, 'state_Ida_Viru_maakond_1271', 'Ida-Viru
maakond', 'Ida-Viru maakond', '', '44',
'state', 1),
(1272, 'state_J__geva_maakond_1272', 'Jõgeva maakond',
'Jõgeva maakond', '', '49',
'state', 1),
(1273, 'state_J__rva_maakond_1273', 'Järva maakond',
'Järva maakond', '', '51',
'state', 1),
(1274, 'state_L____ne_maakond_1274', 'Lääne maakond',
'Lääne maakond', '', '57',
'state', 1),
(1275, 'state_L____ne_Viru_maakond_1275', 'Lääne-Viru
maakond', 'Lääne-Viru maakond', '',
'59', 'state', 1),
(1276, 'state_P__lva_maakond_1276', 'Põlva maakond',
'Põlva maakond', '', '65',
'state', 1),
(1277, 'state_P__rnu_maakond_1277', 'Pärnu maakond',
'Pärnu maakond', '', '67',
'state', 1),
(1278, 'state_Rapla_maakond_1278', 'Rapla maakond',
'Rapla maakond', '', '70', 'state',
1),
(1279, 'state_Saare_maakond_1279', 'Saare maakond',
'Saare maakond', '', '74', 'state',
1),
(1280, 'state_Tartu_maakond_1280', 'Tartu maakond',
'Tartu maakond', '', '78', 'state',
1),
(1281, 'state_Valga_maakond_1281', 'Valga maakond',
'Valga maakond', '', '82', 'state',
1),
(1282, 'state_Viljandi_maakond_1282', 'Viljandi
maakond', 'Viljandi maakond', '', '84',
'state', 1),
(1283, 'state_V__ru_maakond_1283', 'Võru maakond',
'Võru maakond', '', '86', 'state',
1),
(1284, 'state_____________________1284', 'አዲስ
አበባ', 'አዲስ አበባ', '',
'AA', 'state', 1),
(1285, 'state___________1285', 'አፋር',
'አፋር', '', 'AF', 'state',
1),
(1286, 'state___________1286', 'አማራ',
'አማራ', '', 'AH', 'state',
1),
(1287, 'state______________________________1287',
'ቤንሻንጉል-ጉምዝ',
'ቤንሻንጉል-ጉምዝ', '', 'BG',
'state', 1),
(1288, 'state______________1288', 'ድሬዳዋ',
'ድሬዳዋ', '', 'DD', 'state',
1),
(1289, 'state___________________________1289', 'ጋምቤላ
ሕዝቦች', 'ጋምቤላ ሕዝቦች', '',
'GB', 'state', 1),
(1290, 'state_____________________1290', 'ሀረሪ
ሕዝብ', 'ሀረሪ ሕዝብ', '',
'HR', 'state', 1),
(1291, 'state______________1291', 'ኦሮሚያ',
'ኦሮሚያ', '', 'OR', 'state',
1),
(1292, 'state___________1292', 'ሶማሌ',
'ሶማሌ', '', 'SM', 'state',
1),
(1293,
'state___________________________________________________________1293',
'ደቡብ ብሔሮች ብሔረሰቦችና ሕዝቦች',
'ደቡብ ብሔሮች ብሔረሰቦችና ሕዝቦች',
'', 'SN', 'state', 1),
(1294, 'state______________1294', 'ትግራይ',
'ትግራይ', '', 'TG', 'state',
1),
(1295, 'state_Central_1295', 'Central',
'Central', '', 'C', 'state', 1),
(1296, 'state_Northern_1296', 'Northern',
'Northern', '', 'E', 'state', 1),
(1297, 'state_Eastern_1297', 'Eastern',
'Eastern', '', 'N', 'state', 1),
(1298, 'state_Rotuma_1298', 'Rotuma',
'Rotuma', '', 'R', 'state', 1),
(1299, 'state_Western_1299', 'Western',
'Western', '', 'W', 'state', 1),
(1300, 'state_Ahvenanmaan_maakunta_1300', 'Ahvenanmaan
maakunta', 'Ahvenanmaan maakunta', '',
'AL', 'state', 1),
(1301, 'state_Etel___Suomen_l____ni_1301', 'Etelä-Suomen
lääni', 'Etelä-Suomen lääni', '',
'ES', 'state', 1),
(1302, 'state_It___Suomen_l____ni_1302', 'Itä-Suomen
lääni', 'Itä-Suomen lääni', '',
'IS', 'state', 1),
(1303, 'state_Lapin_l____ni_1303', 'Lapin lääni',
'Lapin lääni', '', 'LL', 'state',
1),
(1304, 'state_L__nsi_Suomen_l____ni_1304', 'Länsi-Suomen
lääni', 'Länsi-Suomen lääni', '',
'LS', 'state', 1),
(1305, 'state_Oulun_l____ni_1305', 'Oulun lääni',
'Oulun lääni', '', 'OL', 'state',
1),
(1306, 'state_Ain_1306', 'Ain', 'Ain',
'', '01', 'state', 1),
(1307, 'state_Aisne_1307', 'Aisne', 'Aisne',
'', '02', 'state', 1),
(1308, 'state_Allier_1308', 'Allier',
'Allier', '', '03', 'state', 1),
(1309, 'state_Alpes_de_Haute_Provence_1309',
'Alpes-de-Haute-Provence', 'Alpes-de-Haute-Provence',
'', '04', 'state', 1),
(1310, 'state_Hautes_Alpes_1310', 'Hautes-Alpes',
'Hautes-Alpes', '', '05', 'state',
1),
(1311, 'state_Alpes_Maritimes_1311', 'Alpes-Maritimes',
'Alpes-Maritimes', '', '06',
'state', 1),
(1312, 'state_Ard__che_1312', 'Ardèche',
'Ardèche', '', '07', 'state', 1),
(1313, 'state_Ardennes_1313', 'Ardennes',
'Ardennes', '', '08', 'state', 1),
(1314, 'state_Ari__ge_1314', 'Ariège',
'Ariège', '', '09', 'state', 1),
(1315, 'state_Aube_1315', 'Aube', 'Aube',
'', '10', 'state', 1),
(1316, 'state_Aude_1316', 'Aude', 'Aude',
'', '11', 'state', 1),
(1317, 'state_Aveyron_1317', 'Aveyron',
'Aveyron', '', '12', 'state', 1),
(1318, 'state_Bouches_du_Rh__ne_1318',
'Bouches-du-Rhône', 'Bouches-du-Rhône', '',
'13', 'state', 1),
(1319, 'state_Calvados_1319', 'Calvados',
'Calvados', '', '14', 'state', 1),
(1320, 'state_Cantal_1320', 'Cantal',
'Cantal', '', '15', 'state', 1),
(1321, 'state_Charente_1321', 'Charente',
'Charente', '', '16', 'state', 1),
(1322, 'state_Charente_Maritime_1322',
'Charente-Maritime', 'Charente-Maritime', '',
'17', 'state', 1),
(1323, 'state_Cher_1323', 'Cher', 'Cher',
'', '18', 'state', 1),
(1324, 'state_Corr__ze_1324', 'Corrèze',
'Corrèze', '', '19', 'state', 1),
(1325, 'state_C__te_d_Or_1325',
'Côte-d''Or', 'Côte-d''Or',
'', '21', 'state', 1),
(1326, 'state_C__tes_d_Armor_1326',
'Côtes-d''Armor',
'Côtes-d''Armor', '', '22',
'state', 1),
(1327, 'state_Creuse_1327', 'Creuse',
'Creuse', '', '23', 'state', 1),
(1328, 'state_Dordogne_1328', 'Dordogne',
'Dordogne', '', '24', 'state', 1),
(1329, 'state_Doubs_1329', 'Doubs', 'Doubs',
'', '25', 'state', 1),
(1330, 'state_Dr__me_1330', 'Drôme',
'Drôme', '', '26', 'state', 1),
(1331, 'state_Eure_1331', 'Eure', 'Eure',
'', '27', 'state', 1),
(1332, 'state_Eure_et_Loir_1332', 'Eure-et-Loir',
'Eure-et-Loir', '', '28', 'state',
1),
(1333, 'state_Finist__re_1333', 'Finistère',
'Finistère', '', '29', 'state',
1),
(1334, 'state_Corse_du_Sud_1334', 'Corse-du-Sud',
'Corse-du-Sud', '', '2A', 'state',
1),
(1335, 'state_Haute_Corse_1335', 'Haute-Corse',
'Haute-Corse', '', '2B', 'state',
1),
(1336, 'state_Gard_1336', 'Gard', 'Gard',
'', '30', 'state', 1),
(1337, 'state_Haute_Garonne_1337', 'Haute-Garonne',
'Haute-Garonne', '', '31', 'state',
1),
(1338, 'state_Gers_1338', 'Gers', 'Gers',
'', '32', 'state', 1),
(1339, 'state_Gironde_1339', 'Gironde',
'Gironde', '', '33', 'state', 1),
(1340, 'state_H__rault_1340', 'Hérault',
'Hérault', '', '34', 'state', 1),
(1341, 'state_Ille_et_Vilaine_1341', 'Ille-et-Vilaine',
'Ille-et-Vilaine', '', '35',
'state', 1),
(1342, 'state_Indre_1342', 'Indre', 'Indre',
'', '36', 'state', 1),
(1343, 'state_Indre_et_Loire_1343', 'Indre-et-Loire',
'Indre-et-Loire', '', '37',
'state', 1),
(1344, 'state_Is__re_1344', 'Isère',
'Isère', '', '38', 'state', 1),
(1345, 'state_Jura_1345', 'Jura', 'Jura',
'', '39', 'state', 1),
(1346, 'state_Landes_1346', 'Landes',
'Landes', '', '40', 'state', 1),
(1347, 'state_Loir_et_Cher_1347', 'Loir-et-Cher',
'Loir-et-Cher', '', '41', 'state',
1),
(1348, 'state_Loire_1348', 'Loire', 'Loire',
'', '42', 'state', 1),
(1349, 'state_Haute_Loire_1349', 'Haute-Loire',
'Haute-Loire', '', '43', 'state',
1),
(1350, 'state_Loire_Atlantique_1350',
'Loire-Atlantique', 'Loire-Atlantique', '',
'44', 'state', 1),
(1351, 'state_Loiret_1351', 'Loiret',
'Loiret', '', '45', 'state', 1),
(1352, 'state_Lot_1352', 'Lot', 'Lot',
'', '46', 'state', 1),
(1353, 'state_Lot_et_Garonne_1353', 'Lot-et-Garonne',
'Lot-et-Garonne', '', '47',
'state', 1),
(1354, 'state_Loz__re_1354', 'Lozère',
'Lozère', '', '48', 'state', 1),
(1355, 'state_Maine_et_Loire_1355', 'Maine-et-Loire',
'Maine-et-Loire', '', '49',
'state', 1),
(1356, 'state_Manche_1356', 'Manche',
'Manche', '', '50', 'state', 1),
(1357, 'state_Marne_1357', 'Marne', 'Marne',
'', '51', 'state', 1),
(1358, 'state_Haute_Marne_1358', 'Haute-Marne',
'Haute-Marne', '', '52', 'state',
1),
(1359, 'state_Mayenne_1359', 'Mayenne',
'Mayenne', '', '53', 'state', 1),
(1360, 'state_Meurthe_et_Moselle_1360',
'Meurthe-et-Moselle', 'Meurthe-et-Moselle',
'', '54', 'state', 1),
(1361, 'state_Meuse_1361', 'Meuse', 'Meuse',
'', '55', 'state', 1),
(1362, 'state_Morbihan_1362', 'Morbihan',
'Morbihan', '', '56', 'state', 1),
(1363, 'state_Moselle_1363', 'Moselle',
'Moselle', '', '57', 'state', 1),
(1364, 'state_Ni__vre_1364', 'Nièvre',
'Nièvre', '', '58', 'state', 1),
(1365, 'state_Nord_1365', 'Nord', 'Nord',
'', '59', 'state', 1),
(1366, 'state_Oise_1366', 'Oise', 'Oise',
'', '60', 'state', 1),
(1367, 'state_Orne_1367', 'Orne', 'Orne',
'', '61', 'state', 1),
(1368, 'state_Pas_de_Calais_1368', 'Pas-de-Calais',
'Pas-de-Calais', '', '62', 'state',
1),
(1369, 'state_Puy_de_D__me_1369', 'Puy-de-Dôme',
'Puy-de-Dôme', '', '63', 'state',
1),
(1370, 'state_Pyr__n__es_Atlantiques_1370',
'Pyrénées-Atlantiques', 'Pyrénées-Atlantiques',
'', '64', 'state', 1),
(1371, 'state_Hautes_Pyr__n__es_1371',
'Hautes-Pyrénées', 'Hautes-Pyrénées', '',
'65', 'state', 1),
(1372, 'state_Pyr__n__es_Orientales_1372',
'Pyrénées-Orientales', 'Pyrénées-Orientales',
'', '66', 'state', 1),
(1373, 'state_Bas_Rhin_1373', 'Bas-Rhin',
'Bas-Rhin', '', '67', 'state', 1),
(1374, 'state_Haut_Rhin_1374', 'Haut-Rhin',
'Haut-Rhin', '', '68', 'state',
1),
(1375, 'state_Rh__ne_1375', 'Rhône',
'Rhône', '', '69', 'state', 1),
(1376, 'state_Haute_Sa__ne_1376', 'Haute-Saône',
'Haute-Saône', '', '70', 'state',
1),
(1377, 'state_Sa__ne_et_Loire_1377', 'Saône-et-Loire',
'Saône-et-Loire', '', '71',
'state', 1),
(1378, 'state_Sarthe_1378', 'Sarthe',
'Sarthe', '', '72', 'state', 1),
(1379, 'state_Savoie_1379', 'Savoie',
'Savoie', '', '73', 'state', 1),
(1380, 'state_Haute_Savoie_1380', 'Haute-Savoie',
'Haute-Savoie', '', '74', 'state',
1),
(1381, 'state_Paris_1381', 'Paris', 'Paris',
'', '75', 'state', 1),
(1382, 'state_Seine_Maritime_1382', 'Seine-Maritime',
'Seine-Maritime', '', '76',
'state', 1),
(1383, 'state_Seine_et_Marne_1383', 'Seine-et-Marne',
'Seine-et-Marne', '', '77',
'state', 1),
(1384, 'state_Yvelines_1384', 'Yvelines',
'Yvelines', '', '78', 'state', 1),
(1385, 'state_Deux_S__vres_1385', 'Deux-Sèvres',
'Deux-Sèvres', '', '79', 'state',
1),
(1386, 'state_Somme_1386', 'Somme', 'Somme',
'', '80', 'state', 1),
(1387, 'state_Tarn_1387', 'Tarn', 'Tarn',
'', '81', 'state', 1),
(1388, 'state_Tarn_et_Garonne_1388', 'Tarn-et-Garonne',
'Tarn-et-Garonne', '', '82',
'state', 1),
(1389, 'state_Var_1389', 'Var', 'Var',
'', '83', 'state', 1),
(1390, 'state_Vaucluse_1390', 'Vaucluse',
'Vaucluse', '', '84', 'state', 1),
(1391, 'state_Vend__e_1391', 'Vendée',
'Vendée', '', '85', 'state', 1),
(1392, 'state_Vienne_1392', 'Vienne',
'Vienne', '', '86', 'state', 1),
(1393, 'state_Haute_Vienne_1393', 'Haute-Vienne',
'Haute-Vienne', '', '87', 'state',
1),
(1394, 'state_Vosges_1394', 'Vosges',
'Vosges', '', '88', 'state', 1),
(1395, 'state_Yonne_1395', 'Yonne', 'Yonne',
'', '89', 'state', 1),
(1396, 'state_Territoire_de_Belfort_1396', 'Territoire de
Belfort', 'Territoire de Belfort', '',
'90', 'state', 1),
(1397, 'state_Essonne_1397', 'Essonne',
'Essonne', '', '91', 'state', 1),
(1398, 'state_Hauts_de_Seine_1398', 'Hauts-de-Seine',
'Hauts-de-Seine', '', '92',
'state', 1),
(1399, 'state_Seine_Saint_Denis_1399',
'Seine-Saint-Denis', 'Seine-Saint-Denis', '',
'93', 'state', 1),
(1400, 'state_Val_de_Marne_1400', 'Val-de-Marne',
'Val-de-Marne', '', '94', 'state',
1),
(1401, 'state_Val_d_Oise_1401',
'Val-d''Oise', 'Val-d''Oise',
'', '95', 'state', 1),
(1402,
'state_Territoire_des_Nouvelle_Cal__donie_et_Dependances_1402',
'Territoire des Nouvelle-Calédonie et Dependances',
'Territoire des Nouvelle-Calédonie et Dependances',
'', 'NC', 'state', 1),
(1403, 'state_Polyn__sie_Fran__aise_1403', 'Polynésie
Française', 'Polynésie Française', '',
'PF', 'state', 1),
(1404, 'state_Saint_Pierre_et_Miquelon_1404', 'Saint-Pierre
et Miquelon', 'Saint-Pierre et Miquelon', '',
'PM', 'state', 1),
(1405, 'state_Terres_australes_et_antarctiques_fran__aises_1405',
'Terres australes et antarctiques françaises', 'Terres
australes et antarctiques françaises', '', 'TF',
'state', 1),
(1406, 'state_Mayotte_1406', 'Mayotte',
'Mayotte', '', 'YT', 'state', 1),
(1407, 'state_Territoire_des___les_Wallis_et_Futuna_1407',
'Territoire des îles Wallis et Futuna', 'Territoire des
îles Wallis et Futuna', '', 'WF',
'state', 1),
(1408, 'state_Archipel_des_Marquises_1408', 'Archipel des
Marquises', 'Archipel des Marquises', '',
'M', 'state', 1),
(1409, 'state_Archipel_des_Tuamotu_1409', 'Archipel des
Tuamotu', 'Archipel des Tuamotu', '',
'T', 'state', 1),
(1410, 'state_Archipel_des_Tubuai_1410', 'Archipel des
Tubuai', 'Archipel des Tubuai', '', 'I',
'state', 1),
(1411, 'state_Iles_du_Vent_1411', 'Iles du Vent',
'Iles du Vent', '', 'V', 'state',
1),
(1412, 'state_Iles_Sous_le_Vent__1412', 'Iles Sous-le-Vent
', 'Iles Sous-le-Vent ', '', 'S',
'state', 1),
(1413, 'state_Iles_Crozet_1413', 'Iles Crozet',
'Iles Crozet', '', 'C', 'state',
1),
(1414, 'state_Iles_Kerguelen_1414', 'Iles Kerguelen',
'Iles Kerguelen', '', 'K', 'state',
1),
(1415, 'state_Ile_Amsterdam_1415', 'Ile Amsterdam',
'Ile Amsterdam', '', 'A', 'state',
1),
(1416, 'state_Ile_Saint_Paul_1416', 'Ile Saint-Paul',
'Ile Saint-Paul', '', 'P', 'state',
1),
(1417, 'state_Adelie_Land_1417', 'Adelie Land',
'Adelie Land', '', 'D', 'state',
1),
(1418, 'state_Estuaire_1418', 'Estuaire',
'Estuaire', '', 'ES', 'state', 1),
(1419, 'state_Haut_Ogooue_1419', 'Haut-Ogooue',
'Haut-Ogooue', '', 'HO', 'state',
1),
(1420, 'state_Moyen_Ogooue_1420', 'Moyen-Ogooue',
'Moyen-Ogooue', '', 'MO', 'state',
1),
(1421, 'state_Ngounie_1421', 'Ngounie',
'Ngounie', '', 'NG', 'state', 1),
(1422, 'state_Nyanga_1422', 'Nyanga',
'Nyanga', '', 'NY', 'state', 1),
(1423, 'state_Ogooue_Ivindo_1423', 'Ogooue-Ivindo',
'Ogooue-Ivindo', '', 'OI', 'state',
1),
(1424, 'state_Ogooue_Lolo_1424', 'Ogooue-Lolo',
'Ogooue-Lolo', '', 'OL', 'state',
1),
(1425, 'state_Ogooue_Maritime_1425', 'Ogooue-Maritime',
'Ogooue-Maritime', '', 'OM',
'state', 1),
(1426, 'state_Woleu_Ntem_1426', 'Woleu-Ntem',
'Woleu-Ntem', '', 'WN', 'state',
1),
(1427, 'state_Ashanti_1427', 'Ashanti',
'Ashanti', '', 'AH', 'state', 1),
(1428, 'state_Brong_Ahafo_1428', 'Brong-Ahafo',
'Brong-Ahafo', '', 'BA', 'state',
1),
(1429, 'state_Central_1429', 'Central',
'Central', '', 'CP', 'state', 1),
(1430, 'state_Eastern_1430', 'Eastern',
'Eastern', '', 'EP', 'state', 1),
(1431, 'state_Greater_Accra_1431', 'Greater Accra',
'Greater Accra', '', 'AA', 'state',
1),
(1432, 'state_Northern_1432', 'Northern',
'Northern', '', 'NP', 'state', 1),
(1433, 'state_Upper_East_1433', 'Upper East',
'Upper East', '', 'UE', 'state',
1),
(1434, 'state_Upper_West_1434', 'Upper West',
'Upper West', '', 'UW', 'state',
1),
(1435, 'state_Volta_1435', 'Volta', 'Volta',
'', 'TV', 'state', 1),
(1436, 'state_Western_1436', 'Western',
'Western', '', 'WP', 'state', 1),
(1437, 'state__________________________1437',
'აფხაზეთი', 'აფხაზეთი',
'', 'AB', 'state', 1),
(1438, 'state_________________1438', 'აჭარა',
'აჭარა', '', 'AJ',
'state', 1),
(1439, 'state_________________1439', 'გურია',
'გურია', '', 'GU',
'state', 1),
(1440, 'state_______________________1440',
'იმერეთი', 'იმერეთი',
'', 'IM', 'state', 1),
(1441, 'state____________________1441',
'კახეთი', 'კახეთი',
'', 'KA', 'state', 1),
(1442, 'state____________________________________1442',
'ქვემო ქართლი', 'ქვემო
ქართლი', '', 'KK', 'state',
1),
(1443, 'state_____________________________________________1443',
'მცხეთა-მთიანეთი',
'მცხეთა-მთიანეთი', '',
'MM', 'state', 1),
(1444,
'state_________________________________________________________________________________1444',
'რაჭა-ლეჩხუმი და ქვემო
სვანეთი', 'რაჭა-ლეჩხუმი
და ქვემო სვანეთი', '',
'RL', 'state', 1),
(1445, 'state_____________________________________________1445',
'სამცხე-ჯავახეთი',
'სამცხე-ჯავახეთი', '',
'SJ', 'state', 1),
(1446, 'state_________________________________1446',
'შიდა ქართლი', 'შიდა
ქართლი', '', 'SK', 'state',
1),
(1447,
'state________________________________________________________________1447',
'სამეგრელო-ზემო სვანეთი',
'სამეგრელო-ზემო სვანეთი',
'', 'SZ', 'state', 1),
(1448, 'state_______________________1448',
'თბილისი', 'თბილისი',
'', 'TB', 'state', 1),
(1449, 'state_Berlin_1449', 'Berlin',
'Berlin', '', 'BE', 'state', 1),
(1450, 'state_Brandenburg_1450', 'Brandenburg',
'Brandenburg', '', 'BR', 'state',
1),
(1451, 'state_Baden_W__rttemberg_1451',
'Baden-Württemberg', 'Baden-Württemberg',
'', 'BW', 'state', 1),
(1452, 'state_Bayern_1452', 'Bayern',
'Bayern', '', 'BY', 'state', 1),
(1453, 'state_Bremen_1453', 'Bremen',
'Bremen', '', 'HB', 'state', 1),
(1454, 'state_Hessen_1454', 'Hessen',
'Hessen', '', 'HE', 'state', 1),
(1455, 'state_Hamburg_1455', 'Hamburg',
'Hamburg', '', 'HH', 'state', 1),
(1456, 'state_Mecklenburg_Vorpommern_1456',
'Mecklenburg-Vorpommern', 'Mecklenburg-Vorpommern',
'', 'MV', 'state', 1),
(1457, 'state_Niedersachsen_1457', 'Niedersachsen',
'Niedersachsen', '', 'NI', 'state',
1),
(1458, 'state_Nordrhein_Westfalen_1458',
'Nordrhein-Westfalen', 'Nordrhein-Westfalen',
'', 'NW', 'state', 1),
(1459, 'state_Rheinland_Pfalz_1459', 'Rheinland-Pfalz',
'Rheinland-Pfalz', '', 'RP',
'state', 1),
(1460, 'state_Schleswig_Holstein_1460',
'Schleswig-Holstein', 'Schleswig-Holstein',
'', 'SH', 'state', 1),
(1461, 'state_Saarland_1461', 'Saarland',
'Saarland', '', 'SL', 'state', 1),
(1462, 'state_Sachsen_1462', 'Sachsen',
'Sachsen', '', 'SN', 'state', 1),
(1463, 'state_Sachsen_Anhalt_1463', 'Sachsen-Anhalt',
'Sachsen-Anhalt', '', 'ST',
'state', 1),
(1464, 'state_Th__ringen_1464', 'Thüringen',
'Thüringen', '', 'TH', 'state',
1),
(1475, 'state________________________________1475',
'Αιτωλοακαρνανία',
'Αιτωλοακαρνανία', '', '01',
'state', 1),
(1476, 'state________________1476', 'Βοιωτία',
'Βοιωτία', '', '03',
'state', 1),
(1477, 'state______________1477', 'Εύβοια',
'Εύβοια', '', '04', 'state',
1),
(1478, 'state____________________1478',
'Ευρυτανία', 'Ευρυτανία',
'', '05', 'state', 1),
(1479, 'state__________________1479',
'Φθιώτιδα', 'Φθιώτιδα', '',
'06', 'state', 1),
(1480, 'state______________1480', 'Φωκίδα',
'Φωκίδα', '', '07', 'state',
1),
(1481, 'state__________________1481',
'Αργολίδα', 'Αργολίδα', '',
'11', 'state', 1),
(1482, 'state________________1482', 'Αρκαδία',
'Αρκαδία', '', '12',
'state', 1),
(1483, 'state_____________1483', 'Ἀχαΐα',
'Ἀχαΐα', '', '13', 'state',
1),
(1484, 'state____________1484', 'Ηλεία',
'Ηλεία', '', '14', 'state',
1),
(1485, 'state__________________1485',
'Κορινθία', 'Κορινθία', '',
'15', 'state', 1),
(1486, 'state________________1486', 'Λακωνία',
'Λακωνία', '', '16',
'state', 1),
(1487, 'state__________________1487',
'Μεσσηνία', 'Μεσσηνία', '',
'17', 'state', 1),
(1488, 'state__________________1488',
'Ζάκυνθος', 'Ζάκυνθος', '',
'21', 'state', 1),
(1489, 'state________________1489', 'Κέρκυρα',
'Κέρκυρα', '', '22',
'state', 1),
(1490, 'state______________________1490',
'Κεφαλλονιά', 'Κεφαλλονιά',
'', '23', 'state', 1),
(1491, 'state________________1491', 'Λευκάδα',
'Λευκάδα', '', '24',
'state', 1),
(1492, 'state__________1492', 'Άρτα',
'Άρτα', '', '31', 'state', 1),
(1493, 'state____________________1493',
'Θεσπρωτία', 'Θεσπρωτία',
'', '32', 'state', 1),
(1494, 'state__________________1494',
'Ιωάννινα', 'Ιωάννινα', '',
'33', 'state', 1),
(1495, 'state________________1495', 'Πρεβεζα',
'Πρεβεζα', '', '34',
'state', 1),
(1496, 'state__________________1496',
'Καρδίτσα', 'Καρδίτσα', '',
'41', 'state', 1),
(1497, 'state______________1497', 'Λάρισα',
'Λάρισα', '', '42', 'state',
1),
(1498, 'state__________________1498',
'Μαγνησία', 'Μαγνησία', '',
'43', 'state', 1),
(1499, 'state________________1499', 'Τρίκαλα',
'Τρίκαλα', '', '44',
'state', 1);";
		$this->db->setQuery($query);
		$this->db->query();

		$query="
INSERT IGNORE INTO `#__hikashop_zone` (`zone_id`, `zone_namekey`,
`zone_name`, `zone_name_english`, `zone_code_2`, `zone_code_3`,
`zone_type`, `zone_published`) VALUES
(1500, 'state________________1500', 'Γρεβενά',
'Γρεβενά', '', '51',
'state', 1),
(1501, 'state____________1501', 'Δράμα',
'Δράμα', '', '52', 'state',
1),
(1502, 'state______________1502', 'Ημαθία',
'Ημαθία', '', '53', 'state',
1),
(1503, 'state________________________1503',
'Θεσσαλονίκη', 'Θεσσαλονίκη',
'', '54', 'state', 1),
(1504, 'state______________1504', 'Καβάλα',
'Καβάλα', '', '55', 'state',
1),
(1505, 'state__________________1505',
'Καστοριά', 'Καστοριά', '',
'56', 'state', 1),
(1506, 'state______________1506', 'Κιλκίς',
'Κιλκίς', '', '57', 'state',
1),
(1507, 'state______________1507', 'Κοζάνη',
'Κοζάνη', '', '58', 'state',
1),
(1508, 'state____________1508', 'Πέλλα',
'Πέλλα', '', '59', 'state',
1),
(1509, 'state______________1509', 'Πιερία',
'Πιερία', '', '61', 'state',
1),
(1510, 'state______________1510', 'Σερρών',
'Σερρών', '', '62', 'state',
1),
(1511, 'state________________1511', 'Φλώρινα',
'Φλώρινα', '', '63',
'state', 1),
(1512, 'state____________________1512',
'Χαλκιδική', 'Χαλκιδική',
'', '64', 'state', 1),
(1513, 'state___________________1513', 'Όρος
Άθως', 'Όρος Άθως', '',
'69', 'state', 1),
(1514, 'state____________1514', 'Έβρος',
'Έβρος', '', '71', 'state',
1),
(1515, 'state____________1515', 'Ξάνθη',
'Ξάνθη', '', '72', 'state',
1),
(1516, 'state______________1516', 'Ροδόπη',
'Ροδόπη', '', '73', 'state',
1),
(1517, 'state______________________1517',
'Δωδεκάνησα', 'Δωδεκάνησα',
'', '81', 'state', 1),
(1518, 'state__________________1518',
'Κυκλάδες', 'Κυκλάδες', '',
'82', 'state', 1),
(1519, 'state______________1519', 'Λέσβου',
'Λέσβου', '', '83', 'state',
1),
(1520, 'state____________1520', 'Σάμος',
'Σάμος', '', '84', 'state',
1),
(1521, 'state__________1521', 'Χίος',
'Χίος', '', '85', 'state', 1),
(1522, 'state__________________1522',
'Ηράκλειο', 'Ηράκλειο', '',
'91', 'state', 1),
(1523, 'state______________1523', 'Λασίθι',
'Λασίθι', '', '92', 'state',
1),
(1524, 'state________________1524', 'Ρεθύμνο',
'Ρεθύμνο', '', '93',
'state', 1),
(1525, 'state______________1525', 'Χανίων',
'Χανίων', '', '94', 'state',
1),
(1526, 'state______________1526', 'Αττική',
'Αττική', '', 'A1', 'state',
1),
(1527, 'state_Avannaa_1527', 'Avannaa',
'Avannaa', '', 'A', 'state', 1),
(1528, 'state_Tunu__1528', 'Tunu ', 'Tunu ',
'', 'T', 'state', 1),
(1529, 'state_Kitaa_1529', 'Kitaa', 'Kitaa',
'', 'K', 'state', 1),
(1531, 'state_Saint_David_1531', 'Saint David',
'Saint David', '', 'D', 'state',
1),
(1534, 'state_Saint_Mark_1534', 'Saint Mark',
'Saint Mark', '', 'M', 'state',
1),
(1535, 'state_Saint_Patrick_1535', 'Saint Patrick',
'Saint Patrick', '', 'P', 'state',
1),
(1536, 'state_Alta_Verapaz_1536', 'Alta Verapaz',
'Alta Verapaz', '', 'AV', 'state',
1),
(1537, 'state_Baja_Verapaz_1537', 'Baja Verapaz',
'Baja Verapaz', '', 'BV', 'state',
1),
(1538, 'state_Chimaltenango_1538', 'Chimaltenango',
'Chimaltenango', '', 'CM', 'state',
1),
(1539, 'state_Chiquimula_1539', 'Chiquimula',
'Chiquimula', '', 'CQ', 'state',
1),
(1540, 'state_Escuintla_1540', 'Escuintla',
'Escuintla', '', 'ES', 'state',
1),
(1541, 'state_Guatemala_1541', 'Guatemala',
'Guatemala', '', 'GU', 'state',
1),
(1542, 'state_Huehuetenango_1542', 'Huehuetenango',
'Huehuetenango', '', 'HU', 'state',
1),
(1543, 'state_Izabal_1543', 'Izabal',
'Izabal', '', 'IZ', 'state', 1),
(1544, 'state_Jalapa_1544', 'Jalapa',
'Jalapa', '', 'JA', 'state', 1),
(1545, 'state_Jutiapa_1545', 'Jutiapa',
'Jutiapa', '', 'JU', 'state', 1),
(1546, 'state_El_Pet__n_1546', 'El Petén', 'El
Petén', '', 'PE', 'state', 1),
(1547, 'state_El_Progreso_1547', 'El Progreso',
'El Progreso', '', 'PR', 'state',
1),
(1548, 'state_El_Quich___1548', 'El Quiché', 'El
Quiché', '', 'QC', 'state', 1),
(1549, 'state_Quetzaltenango_1549', 'Quetzaltenango',
'Quetzaltenango', '', 'QZ',
'state', 1),
(1550, 'state_Retalhuleu_1550', 'Retalhuleu',
'Retalhuleu', '', 'RE', 'state',
1),
(1551, 'state_Sacatep__quez_1551', 'Sacatepéquez',
'Sacatepéquez', '', 'SA', 'state',
1),
(1552, 'state_San_Marcos_1552', 'San Marcos', 'San
Marcos', '', 'SM', 'state', 1),
(1553, 'state_Solol___1553', 'Sololá',
'Sololá', '', 'SO', 'state', 1),
(1554, 'state_Santa_Rosa_1554', 'Santa Rosa',
'Santa Rosa', '', 'SR', 'state',
1),
(1555, 'state_Suchitep__quez_1555', 'Suchitepéquez',
'Suchitepéquez', '', 'SU',
'state', 1),
(1556, 'state_Totonicap__n_1556', 'Totonicapán',
'Totonicapán', '', 'TO', 'state',
1),
(1557, 'state_Zacapa_1557', 'Zacapa',
'Zacapa', '', 'ZA', 'state', 1),
(1558, 'state_Beyla_1558', 'Beyla', 'Beyla',
'', 'BE', 'state', 1),
(1559, 'state_Boffa_1559', 'Boffa', 'Boffa',
'', 'BF', 'state', 1),
(1560, 'state_Bok___1560', 'Boké', 'Boké',
'', 'BK', 'state', 1),
(1561, 'state_Coyah_1561', 'Coyah', 'Coyah',
'', 'CO', 'state', 1),
(1562, 'state_Dabola_1562', 'Dabola',
'Dabola', '', 'DB', 'state', 1),
(1563, 'state_Dinguiraye_1563', 'Dinguiraye',
'Dinguiraye', '', 'DI', 'state',
1),
(1564, 'state_Dalaba_1564', 'Dalaba',
'Dalaba', '', 'DL', 'state', 1),
(1565, 'state_Dubr__ka_1565', 'Dubréka',
'Dubréka', '', 'DU', 'state', 1),
(1566, 'state_Faranah_1566', 'Faranah',
'Faranah', '', 'FA', 'state', 1),
(1567, 'state_For__cariah_1567', 'Forécariah',
'Forécariah', '', 'FO', 'state',
1),
(1568, 'state_Fria_1568', 'Fria', 'Fria',
'', 'FR', 'state', 1),
(1569, 'state_Gaoual_1569', 'Gaoual',
'Gaoual', '', 'GA', 'state', 1),
(1570, 'state_Gu__k__dou_1570', 'Guékédou',
'Guékédou', '', 'GU', 'state',
1),
(1571, 'state_Kankan_1571', 'Kankan',
'Kankan', '', 'KA', 'state', 1),
(1572, 'state_Koubia_1572', 'Koubia',
'Koubia', '', 'KB', 'state', 1),
(1573, 'state_Kindia_1573', 'Kindia',
'Kindia', '', 'KD', 'state', 1),
(1574, 'state_K__rouan___1574', 'Kérouané',
'Kérouané', '', 'KE', 'state',
1),
(1575, 'state_Koundara_1575', 'Koundara',
'Koundara', '', 'KN', 'state', 1),
(1576, 'state_Kouroussa_1576', 'Kouroussa',
'Kouroussa', '', 'KO', 'state',
1),
(1577, 'state_Kissidougou_1577', 'Kissidougou',
'Kissidougou', '', 'KS', 'state',
1),
(1578, 'state_Lab___1578', 'Labé', 'Labé',
'', 'LA', 'state', 1),
(1579, 'state_L__louma_1579', 'Lélouma',
'Lélouma', '', 'LE', 'state', 1),
(1580, 'state_Lola_1580', 'Lola', 'Lola',
'', 'LO', 'state', 1),
(1581, 'state_Macenta_1581', 'Macenta',
'Macenta', '', 'MC', 'state', 1),
(1582, 'state_Mandiana_1582', 'Mandiana',
'Mandiana', '', 'MD', 'state', 1),
(1583, 'state_Mali_1583', 'Mali', 'Mali',
'', 'ML', 'state', 1),
(1584, 'state_Mamou_1584', 'Mamou', 'Mamou',
'', 'MM', 'state', 1),
(1585, 'state_Nz__r__kor___1585', 'Nzérékoré',
'Nzérékoré', '', 'NZ', 'state',
1),
(1586, 'state_Pita_1586', 'Pita', 'Pita',
'', 'PI', 'state', 1),
(1587, 'state_Siguiri_1587', 'Siguiri',
'Siguiri', '', 'SI', 'state', 1),
(1588, 'state_T__lim__l___1588', 'Télimélé',
'Télimélé', '', 'TE', 'state',
1),
(1589, 'state_Tougu___1589', 'Tougué',
'Tougué', '', 'TO', 'state', 1),
(1590, 'state_Yomou_1590', 'Yomou', 'Yomou',
'', 'YO', 'state', 1),
(1591, 'state_Bafata_1591', 'Bafata',
'Bafata', '', 'BF', 'state', 1),
(1592, 'state_Biombo_1592', 'Biombo',
'Biombo', '', 'BB', 'state', 1),
(1593, 'state_Bissau_1593', 'Bissau',
'Bissau', '', 'BS', 'state', 1),
(1594, 'state_Bolama_1594', 'Bolama',
'Bolama', '', 'BL', 'state', 1),
(1595, 'state_Cacheu_1595', 'Cacheu',
'Cacheu', '', 'CA', 'state', 1),
(1596, 'state_Gabu_1596', 'Gabu', 'Gabu',
'', 'GA', 'state', 1),
(1597, 'state_Oio_1597', 'Oio', 'Oio',
'', 'OI', 'state', 1),
(1598, 'state_Quinara_1598', 'Quinara',
'Quinara', '', 'QU', 'state', 1),
(1599, 'state_Tombali_1599', 'Tombali',
'Tombali', '', 'TO', 'state', 1),
(1600, 'state_Barima_Waini_1600', 'Barima-Waini',
'Barima-Waini', '', 'BA', 'state',
1),
(1601, 'state_Cuyuni_Mazaruni_1601', 'Cuyuni-Mazaruni',
'Cuyuni-Mazaruni', '', 'CU',
'state', 1),
(1602, 'state_Demerara_Mahaica_1602',
'Demerara-Mahaica', 'Demerara-Mahaica', '',
'DE', 'state', 1),
(1603, 'state_East_Berbice_Corentyne_1603', 'East
Berbice-Corentyne', 'East Berbice-Corentyne', '',
'EB', 'state', 1),
(1604, 'state_Essequibo_Islands_West_Demerara_1604',
'Essequibo Islands-West Demerara', 'Essequibo Islands-West
Demerara', '', 'ES', 'state', 1),
(1605, 'state_Mahaica_Berbice_1605', 'Mahaica-Berbice',
'Mahaica-Berbice', '', 'MA',
'state', 1),
(1606, 'state_Pomeroon_Supenaam_1606',
'Pomeroon-Supenaam', 'Pomeroon-Supenaam', '',
'PM', 'state', 1),
(1607, 'state_Potaro_Siparuni_1607', 'Potaro-Siparuni',
'Potaro-Siparuni', '', 'PT',
'state', 1),
(1608, 'state_Upper_Demerara_Berbice_1608', 'Upper
Demerara-Berbice', 'Upper Demerara-Berbice', '',
'UD', 'state', 1),
(1609, 'state_Upper_Takutu_Upper_Essequibo_1609', 'Upper
Takutu-Upper Essequibo', 'Upper Takutu-Upper Essequibo',
'', 'UT', 'state', 1),
(1610, 'state_Artibonite_1610', 'Artibonite',
'Artibonite', '', 'AR', 'state',
1),
(1612, 'state_Grand_Anse_1612',
'Grand''Anse', 'Grand''Anse',
'', 'GA', 'state', 1),
(1613, 'state_Nippes_1613', 'Nippes',
'Nippes', '', 'NI', 'state', 1),
(1614, 'state_Nord_1614', 'Nord', 'Nord',
'', 'ND', 'state', 1),
(1615, 'state_Nord_Est_1615', 'Nord-Est',
'Nord-Est', '', 'NE', 'state', 1),
(1616, 'state_Nord_Ouest_1616', 'Nord-Ouest',
'Nord-Ouest', '', 'NO', 'state',
1),
(1618, 'state_Sud_1618', 'Sud', 'Sud',
'', 'SD', 'state', 1),
(1619, 'state_Sud_Est_1619', 'Sud-Est',
'Sud-Est', '', 'SE', 'state', 1),
(1620, 'state_Flat_Island_1620', 'Flat Island',
'Flat Island', '', 'F', 'state',
1),
(1621, 'state_McDonald_Island_1621', 'McDonald Island',
'McDonald Island', '', 'M',
'state', 1),
(1622, 'state_Shag_Island_1622', 'Shag Island',
'Shag Island', '', 'S', 'state',
1),
(1623, 'state_Heard_Island_1623', 'Heard Island',
'Heard Island', '', 'H', 'state',
1),
(1624, 'state_Atl__ntida_1624', 'Atlántida',
'Atlántida', '', 'AT', 'state',
1),
(1625, 'state_Choluteca_1625', 'Choluteca',
'Choluteca', '', 'CH', 'state',
1),
(1626, 'state_Col__n_1626', 'Colón',
'Colón', '', 'CL', 'state', 1),
(1627, 'state_Comayagua_1627', 'Comayagua',
'Comayagua', '', 'CM', 'state',
1),
(1628, 'state_Cop__n_1628', 'Copán',
'Copán', '', 'CP', 'state', 1),
(1629, 'state_Cort__s_1629', 'Cortés',
'Cortés', '', 'CR', 'state', 1),
(1630, 'state_El_Para__so_1630', 'El Paraíso',
'El Paraíso', '', 'EP', 'state',
1),
(1631, 'state_Francisco_Moraz__n_1631', 'Francisco
Morazán', 'Francisco Morazán', '',
'FM', 'state', 1),
(1632, 'state_Gracias_a_Dios_1632', 'Gracias a Dios',
'Gracias a Dios', '', 'GD',
'state', 1),
(1633, 'state_Islas_de_la_Bah__a_1633', 'Islas de la
Bahía', 'Islas de la Bahía', '', 'IB',
'state', 1),
(1634, 'state_Intibuc___1634', 'Intibucá',
'Intibucá', '', 'IN', 'state',
1),
(1635, 'state_Lempira_1635', 'Lempira',
'Lempira', '', 'LE', 'state', 1),
(1636, 'state_La_Paz_1636', 'La Paz', 'La
Paz', '', 'LP', 'state', 1),
(1637, 'state_Ocotepeque_1637', 'Ocotepeque',
'Ocotepeque', '', 'OC', 'state',
1),
(1638, 'state_Olancho_1638', 'Olancho',
'Olancho', '', 'OL', 'state', 1),
(1639, 'state_Santa_B__rbara_1639', 'Santa Bárbara',
'Santa Bárbara', '', 'SB',
'state', 1),
(1640, 'state_Valle_1640', 'Valle', 'Valle',
'', 'VA', 'state', 1),
(1641, 'state_Yoro_1641', 'Yoro', 'Yoro',
'', 'YO', 'state', 1),
(1642, 'state___________1642', '中西區',
'中西區', '', 'HCW', 'state',
1),
(1643, 'state________1643', '東區',
'東區', '', 'HEA', 'state', 1),
(1644, 'state________1644', '南區',
'南區', '', 'HSO', 'state', 1),
(1645, 'state___________1645', '灣仔區',
'灣仔區', '', 'HWC', 'state',
1),
(1646, 'state______________1646', '九龍城區',
'九龍城區', '', 'KKC', 'state',
1),
(1647, 'state___________1647', '觀塘區',
'觀塘區', '', 'KKT', 'state',
1),
(1648, 'state______________1648', '深水埗區',
'深水埗區', '', 'KSS', 'state',
1),
(1649, 'state______________1649', '黃大仙區',
'黃大仙區', '', 'KWT', 'state',
1),
(1650, 'state______________1650', '油尖旺區',
'油尖旺區', '', 'KYT', 'state',
1),
(1651, 'state___________1651', '離島區',
'離島區', '', 'NIS', 'state',
1),
(1652, 'state___________1652', '葵青區',
'葵青區', '', 'NKT', 'state',
1),
(1653, 'state________1653', '北區',
'北區', '', 'NNO', 'state', 1),
(1654, 'state___________1654', '西貢區',
'西貢區', '', 'NSK', 'state',
1),
(1655, 'state___________1655', '沙田區',
'沙田區', '', 'NST', 'state',
1),
(1656, 'state___________1656', '大埔區',
'大埔區', '', 'NTP', 'state',
1),
(1657, 'state___________1657', '荃灣區',
'荃灣區', '', 'NTW', 'state',
1),
(1658, 'state___________1658', '屯門區',
'屯門區', '', 'NTM', 'state',
1),
(1659, 'state___________1659', '元朗區',
'元朗區', '', 'NYL', 'state',
1),
(1660, 'state_Baranja_megye_1660', 'Baranja megye',
'Baranja megye', '', 'BA', 'state',
1),
(1661, 'state_B__k__scsaba_1661', 'Békéscsaba',
'Békéscsaba', '', 'BC', 'state',
1),
(1662, 'state_B__k__s_megye_1662', 'Békés megye',
'Békés megye', '', 'BE', 'state',
1),
(1663, 'state_B__cs_Kiskun_megye_1663', 'Bács-Kiskun
megye', 'Bács-Kiskun megye', '', 'BK',
'state', 1),
(1664, 'state_Budapest_1664', 'Budapest',
'Budapest', '', 'BU', 'state', 1),
(1665, 'state_Borsod_Aba__j_Zempl__n_megye_1665',
'Borsod-Abaúj-Zemplén megye', 'Borsod-Abaúj-Zemplén
megye', '', 'BZ', 'state', 1),
(1666, 'state_Csongr__d_megye_1666', 'Csongrád megye',
'Csongrád megye', '', 'CS',
'state', 1),
(1667, 'state_Debrecen_1667', 'Debrecen',
'Debrecen', '', 'DE', 'state', 1),
(1668, 'state_Duna__jv__ros_1668', 'Dunaújváros',
'Dunaújváros', '', 'DU', 'state',
1),
(1669, 'state_Eger_1669', 'Eger', 'Eger',
'', 'EG', 'state', 1),
(1670, 'state_Fej__r_megye_1670', 'Fejér megye',
'Fejér megye', '', 'FE', 'state',
1),
(1671, 'state_Gy__r_Moson_Sopron_megye_1671',
'Győr-Moson-Sopron megye', 'Győr-Moson-Sopron megye',
'', 'GS', 'state', 1),
(1672, 'state_Gy__r_1672', 'Győr', 'Győr',
'', 'GY', 'state', 1),
(1673, 'state_Hajd___Bihar_megye_1673', 'Hajdú-Bihar
megye', 'Hajdú-Bihar megye', '', 'HB',
'state', 1),
(1674, 'state_Heves_megye_1674', 'Heves megye',
'Heves megye', '', 'HE', 'state',
1),
(1675, 'state_H__dmez__v__s__rhely_1675',
'Hódmezővásárhely', 'Hódmezővásárhely',
'', 'HV', 'state', 1),
(1676, 'state_J__sz_Nagykun_Szolnok_megye_1676',
'Jász-Nagykun-Szolnok megye', 'Jász-Nagykun-Szolnok
megye', '', 'JN', 'state', 1),
(1677, 'state_Kom__rom_Esztergom_megye_1677',
'Komárom-Esztergom megye', 'Komárom-Esztergom megye',
'', 'KE', 'state', 1),
(1678, 'state_Kecskem__t_1678', 'Kecskemét',
'Kecskemét', '', 'KM', 'state',
1),
(1679, 'state_Kaposv__r_1679', 'Kaposvár',
'Kaposvár', '', 'KV', 'state',
1),
(1680, 'state_Miskolc_1680', 'Miskolc',
'Miskolc', '', 'MI', 'state', 1),
(1681, 'state_Nagykanizsa_1681', 'Nagykanizsa',
'Nagykanizsa', '', 'NK', 'state',
1),
(1682, 'state_N__gr__d_megye_1682', 'Nógrád megye',
'Nógrád megye', '', 'NO',
'state', 1),
(1683, 'state_Ny__regyh__za_1683', 'Nyíregyháza',
'Nyíregyháza', '', 'NY', 'state',
1),
(1684, 'state_Pest_megye_1684', 'Pest megye',
'Pest megye', '', 'PE', 'state',
1),
(1685, 'state_P__cs_1685', 'Pécs', 'Pécs',
'', 'PS', 'state', 1),
(1686, 'state_Szeged_1686', 'Szeged',
'Szeged', '', 'SD', 'state', 1),
(1687, 'state_Sz__kesfeh__rv__r_1687',
'Székesfehérvár', 'Székesfehérvár', '',
'SF', 'state', 1),
(1688, 'state_Szombathely_1688', 'Szombathely',
'Szombathely', '', 'SH', 'state',
1),
(1689, 'state_Szolnok_1689', 'Szolnok',
'Szolnok', '', 'SK', 'state', 1),
(1690, 'state_Sopron_1690', 'Sopron',
'Sopron', '', 'SN', 'state', 1),
(1691, 'state_Somogy_megye_1691', 'Somogy megye',
'Somogy megye', '', 'SO', 'state',
1),
(1692, 'state_Szeksz__rd_1692', 'Szekszárd',
'Szekszárd', '', 'SS', 'state',
1),
(1693, 'state_Salg__tarj__n_1693', 'Salgótarján',
'Salgótarján', '', 'ST', 'state',
1),
(1694, 'state_Szabolcs_Szatm__r_Bereg_megye_1694',
'Szabolcs-Szatmár-Bereg megye', 'Szabolcs-Szatmár-Bereg
megye', '', 'SZ', 'state', 1),
(1695, 'state_Tatab__nya_1695', 'Tatabánya',
'Tatabánya', '', 'TB', 'state',
1),
(1696, 'state_Tolna_megye_1696', 'Tolna megye',
'Tolna megye', '', 'TO', 'state',
1),
(1697, 'state_Vas_megye_1697', 'Vas megye', 'Vas
megye', '', 'VA', 'state', 1),
(1698, 'state_Veszpr__m_megye_1698', 'Veszprém megye',
'Veszprém megye', '', 'VE',
'state', 1),
(1699, 'state_Veszpr__m_1699', 'Veszprém',
'Veszprém', '', 'VM', 'state',
1),
(1700, 'state_Zala_megye_1700', 'Zala megye',
'Zala megye', '', 'ZA', 'state',
1),
(1701, 'state_Zalaegerszeg_1701', 'Zalaegerszeg',
'Zalaegerszeg', '', 'ZE', 'state',
1),
(1702, 'state_H__fu__borgarsv____i___1702',
'Höfuðborgarsvæðið', 'Höfuðborgarsvæðið',
'', '1', 'state', 1),
(1703, 'state_Su__urnes_1703', 'Suðurnes',
'Suðurnes', '', '2', 'state', 1),
(1704, 'state_Vesturland_1704', 'Vesturland',
'Vesturland', '', '3', 'state',
1),
(1705, 'state_Vestfir__ir_1705', 'Vestfirðir',
'Vestfirðir', '', '4', 'state',
1),
(1706, 'state_Nor__urland_vestra_1706', 'Norðurland
vestra', 'Norðurland vestra', '', '5',
'state', 1),
(1707, 'state_Nor__urland_eystra_1707', 'Norðurland
eystra', 'Norðurland eystra', '', '6',
'state', 1),
(1708, 'state_Austfir__ir_1708', 'Austfirðir',
'Austfirðir', '', '7', 'state',
1),
(1709, 'state_Su__urland_1709', 'Suðurland',
'Suðurland', '', '8', 'state',
1),
(1710,
'state_________________________________________________________________1710',
'अंडमान और निकोबार
द्वीप', 'अंडमान और
निकोबार द्वीप', '',
'IN-AN', 'state', 1),
(1711, 'state_______________________________________1711',
'ఆంధ్ర ప్రదేశ్', 'ఆంధ్ర
ప్రదేశ్', '', 'IN-AP',
'state', 1),
(1712, 'state__________________________________________1712',
'अरुणाचल प्रदेश',
'अरुणाचल प्रदेश', '',
'IN-AR', 'state', 1),
(1713, 'state___________1713', 'অসম',
'অসম', '', 'IN-AS', 'state',
1),
(1714, 'state_________________1714', 'बिहार',
'बिहार', '', 'IN-BR',
'state', 1),
(1715, 'state_______________________1715',
'चंडीगढ़', 'चंडीगढ़',
'', 'IN-CH', 'state', 1),
(1716, 'state_____________________________1716',
'छत्तीसगढ़',
'छत्तीसगढ़', '', 'IN-CT',
'state', 1),
(1717, 'state_______________________________1717',
'દમણ અને દિવ', 'દમણ અને
દિવ', '', 'IN-DD', 'state', 1),
(1718, 'state____________________1718',
'दिल्ली', 'दिल्ली',
'', 'IN-DL', 'state', 1),
(1719,
'state_____________________________________________________1719',
'દાદરા અને નગર હવેલી',
'દાદરા અને નગર હવેલી',
'', 'IN-DN', 'state', 1),
(1720, 'state______________1720', 'गोंय',
'गोंय', '', 'IN-GA',
'state', 1),
(1721, 'state____________________1721',
'ગુજરાત', 'ગુજરાત',
'', 'IN-GJ', 'state', 1),
(1722, 'state_______________________________________1722',
'हिमाचल प्रदेश', 'हिमाचल
प्रदेश', '', 'IN-HP',
'state', 1),
(1723, 'state_______________________1723',
'हरियाणा', 'हरियाणा',
'', 'IN-HR', 'state', 1),
(1724, 'state____________________1724',
'झारखंड', 'झारखंड',
'', 'IN-JH', 'state', 1),
(1725, 'state___________________________________________1725',
'जम्मू और कश्मीर',
'जम्मू और कश्मीर', '',
'IN-JK', 'state', 1),
(1726, 'state____________________1726',
'ಕನಾ೯ಟಕ', 'ಕನಾ೯ಟಕ',
'', 'IN-KA', 'state', 1),
(1727, 'state_________________1727', 'കേരളം',
'കേരളം', '', 'IN-KL',
'state', 1),
(1728, 'state________________________________1728',
'ലക്ഷദ്വീപ്',
'ലക്ഷദ്വീപ്', '',
'IN-LD', 'state', 1),
(1729, 'state____________________1729',
'मेघालय', 'मेघालय',
'', 'IN-ML', 'state', 1),
(1730, 'state________________________________1730',
'महाराष्ट्र',
'महाराष्ट्र', '',
'IN-MH', 'state', 1),
(1731, 'state____________________1731',
'मणिपुर', 'मणिपुर',
'', 'IN-MN', 'state', 1),
(1732, 'state_________________________________1732',
'मध्य प्रदेश', 'मध्य
प्रदेश', '', 'IN-MP',
'state', 1),
(1733, 'state_______________________1733',
'मिज़ोरम', 'मिज़ोरम',
'', 'IN-MZ', 'state', 1),
(1734, 'state__________________________1734',
'नागालैंड', 'नागालैंड',
'', 'IN-NL', 'state', 1),
(1735, 'state____________________1735',
'उड़ीसा', 'उड़ीसा',
'', 'IN-OR', 'state', 1),
(1736, 'state_________________1736', 'ਪੰਜਾਬ',
'ਪੰਜਾਬ', '', 'IN-PB',
'state', 1),
(1737, 'state________________________________1737',
'புதுச்சேரி',
'புதுச்சேரி', '',
'IN-PY', 'state', 1),
(1738, 'state__________________________1738',
'राजस्थान', 'राजस्थान',
'', 'IN-RJ', 'state', 1),
(1739, 'state_______________________1739',
'सिक्किम', 'सिक्किम',
'', 'IN-SK', 'state', 1),
(1740, 'state______________________________1740',
'தமிழ் நாடு', 'தமிழ்
நாடு', '', 'IN-TN', 'state',
1),
(1741, 'state__________________________1741',
'ত্রিপুরা', 'ত্রিপুরা',
'', 'IN-TR', 'state', 1),
(1742, 'state_____________________________1742',
'उत्तरांचल',
'उत्तरांचल', '', 'IN-UL',
'state', 1),
(1743, 'state____________________________________1743',
'उत्तर प्रदेश', 'उत्तर
प्रदेश', '', 'IN-UP',
'state', 1),
(1744, 'state________________________________1744',
'পশ্চিমবঙ্গ',
'পশ্চিমবঙ্গ', '',
'IN-WB', 'state', 1),
(1745, 'state_Aceh_1745', 'Aceh', 'Aceh',
'', 'AC', 'state', 1),
(1746, 'state_Bali_1746', 'Bali', 'Bali',
'', 'BA', 'state', 1),
(1747, 'state_Bangka_Belitung_1747', 'Bangka-Belitung',
'Bangka-Belitung', '', 'BB',
'state', 1),
(1748, 'state_Bengkulu_1748', 'Bengkulu',
'Bengkulu', '', 'BE', 'state', 1),
(1749, 'state_Banten_1749', 'Banten',
'Banten', '', 'BT', 'state', 1),
(1750, 'state_Gorontalo_1750', 'Gorontalo',
'Gorontalo', '', 'GO', 'state',
1),
(1751, 'state_Papua_1751', 'Papua', 'Papua',
'', 'IJ', 'state', 1),
(1752, 'state_Jambi_1752', 'Jambi', 'Jambi',
'', 'JA', 'state', 1),
(1753, 'state_Jawa_Timur_1753', 'Jawa Timur',
'Jawa Timur', '', 'JI', 'state',
1),
(1754, 'state_Jakarta_Raya_1754', 'Jakarta Raya',
'Jakarta Raya', '', 'JK', 'state',
1),
(1755, 'state_Jawa_Barat_1755', 'Jawa Barat',
'Jawa Barat', '', 'JR', 'state',
1),
(1756, 'state_Jawa_Tengah_1756', 'Jawa Tengah',
'Jawa Tengah', '', 'JT', 'state',
1),
(1757, 'state_Kalimantan_Barat_1757', 'Kalimantan
Barat', 'Kalimantan Barat', '', 'KB',
'state', 1),
(1758, 'state_Kalimantan_Timur_1758', 'Kalimantan
Timur', 'Kalimantan Timur', '', 'KI',
'state', 1),
(1759, 'state_Kalimantan_Selatan_1759', 'Kalimantan
Selatan', 'Kalimantan Selatan', '',
'KS', 'state', 1),
(1760, 'state_Kalimantan_Tengah_1760', 'Kalimantan
Tengah', 'Kalimantan Tengah', '', 'KT',
'state', 1),
(1761, 'state_Lampung_1761', 'Lampung',
'Lampung', '', 'LA', 'state', 1),
(1762, 'state_Maluku_1762', 'Maluku',
'Maluku', '', 'MA', 'state', 1),
(1763, 'state_Maluku_Utara_1763', 'Maluku Utara',
'Maluku Utara', '', 'MU', 'state',
1),
(1764, 'state_Nusa_Tenggara_Barat_1764', 'Nusa Tenggara
Barat', 'Nusa Tenggara Barat', '', 'NB',
'state', 1),
(1765, 'state_Nusa_Tenggara_Timur_1765', 'Nusa Tenggara
Timur', 'Nusa Tenggara Timur', '', 'NT',
'state', 1),
(1766, 'state_Riau_1766', 'Riau', 'Riau',
'', 'RI', 'state', 1),
(1767, 'state_Sumatera_Barat_1767', 'Sumatera Barat',
'Sumatera Barat', '', 'SB',
'state', 1),
(1768, 'state_Sulawesi_Tenggara_1768', 'Sulawesi
Tenggara', 'Sulawesi Tenggara', '',
'SG', 'state', 1),
(1769, 'state_Sumatera_Selatan_1769', 'Sumatera
Selatan', 'Sumatera Selatan', '', 'SL',
'state', 1),
(1770, 'state_Sulawesi_Selatan_1770', 'Sulawesi
Selatan', 'Sulawesi Selatan', '', 'SN',
'state', 1),
(1771, 'state_Sulawesi_Tengah_1771', 'Sulawesi Tengah',
'Sulawesi Tengah', '', 'ST',
'state', 1),
(1772, 'state_Sulawesi_Utara_1772', 'Sulawesi Utara',
'Sulawesi Utara', '', 'SW',
'state', 1),
(1773, 'state_Sumatera_Utara_1773', 'Sumatera Utara',
'Sumatera Utara', '', 'SU',
'state', 1),
(1774, 'state_Yogyakarta_1774', 'Yogyakarta',
'Yogyakarta', '', 'YO', 'state',
1),
(1775, 'state__________________________________________1775',
'محافظة آذربایجان شرقي', 'محافظة
آذربایجان شرقي', '', '01',
'state', 1),
(1776, 'state__________________________________________1776',
'محافظة آذربایجان غربي', 'محافظة
آذربایجان غربي', '', '02',
'state', 1),
(1777, 'state___________________________1777', 'محافظة
اردبیل', 'محافظة اردبیل', '',
'03', 'state', 1),
(1778, 'state___________________________1778', 'محافظة
اصفهان', 'محافظة اصفهان', '',
'04', 'state', 1),
(1779, 'state_________________________1779', 'محافظة
ایلام', 'محافظة ایلام', '',
'05', 'state', 1),
(1780, 'state_________________________1780', 'محافظة
بوشهر', 'محافظة بوشهر', '',
'06', 'state', 1),
(1781, 'state_________________________1781', 'محافظة
طهران', 'محافظة طهران', '',
'07', 'state', 1),
(1782,
'state_______________________________________________1782',
'محافظة چهارمحل و بختیاري',
'محافظة چهارمحل و بختیاري', '',
'08', 'state', 1),
(1783, 'state____________________________________1783',
'محافظة خراسان رضوي', 'محافظة
خراسان رضوي', '', '09',
'state', 1),
(1784, 'state_____________________________1784',
'محافظة خوزستان', 'محافظة
خوزستان', '', '10', 'state', 1),
(1785, 'state_________________________1785', 'محافظة
زنجان', 'محافظة زنجان', '',
'11', 'state', 1),
(1786, 'state_________________________1786', 'محافظة
سمنان', 'محافظة سمنان', '',
'12', 'state', 1),
(1787,
'state________________________________________________1787',
'محافظة سيستان وبلوتشستان',
'محافظة سيستان وبلوتشستان', '',
'13', 'state', 1),
(1788, 'state_______________________1788', 'محافظة
فارس', 'محافظة فارس', '',
'14', 'state', 1),
(1789, 'state_________________________1789', 'محافظة
کرمان', 'محافظة کرمان', '',
'15', 'state', 1),
(1790, 'state_____________________________1790',
'محافظة کردستان', 'محافظة
کردستان', '', '16', 'state', 1),
(1791, 'state_______________________________1791',
'محافظة کرمانشاه', 'محافظة
کرمانشاه', '', '17', 'state',
1),
(1792,
'state____________________________________________________1792',
'محافظة کهکیلویه و بویر أحمد',
'محافظة کهکیلویه و بویر أحمد',
'', '18', 'state', 1),
(1793, 'state_________________________1793', 'محافظة
گیلان', 'محافظة گیلان', '',
'19', 'state', 1),
(1794, 'state___________________________1794', 'محافظة
لرستان', 'محافظة لرستان', '',
'20', 'state', 1),
(1795, 'state_______________________________1795',
'محافظة مازندران', 'محافظة
مازندران', '', '21', 'state',
1),
(1796, 'state_________________________1796', 'محافظة
مرکزي', 'محافظة مرکزي', '',
'22', 'state', 1),
(1797, 'state_____________________________1797',
'محافظة هرمزگان', 'محافظة
هرمزگان', '', '23', 'state', 1),
(1798, 'state_________________________1798', 'محافظة
همدان', 'محافظة همدان', '',
'24', 'state', 1),
(1799, 'state_____________________1799', 'محافظة
یزد', 'محافظة یزد', '',
'25', 'state', 1),
(1800, 'state___________________1800', 'محافظة
قم', 'محافظة قم', '', '26',
'state', 1),
(1801, 'state___________________________1801', 'محافظة
گلستان', 'محافظة گلستان', '',
'27', 'state', 1),
(1802, 'state_________________________1802', 'محافظة
قزوين', 'محافظة قزوين', '',
'28', 'state', 1),
(1803, 'state_____________________________1803',
'محافظة الأنبار', 'محافظة
الأنبار', '', 'AN', 'state', 1),
(1804, 'state____________1804', 'أربيل',
'أربيل', '', 'AR', 'state',
1),
(1805, 'state___________________________1805', 'محافظة
البصرة', 'محافظة البصرة', '',
'BA', 'state', 1),
(1806, 'state__________1806', 'بابل',
'بابل', '', 'BB', 'state', 1),
(1807, 'state_________________________1807', 'محافظة
بغداد', 'محافظة بغداد', '',
'BG', 'state', 1),
(1808, 'state__________1808', 'دهوك',
'دهوك', '', 'DA', 'state', 1),
(1809, 'state____________1809', 'ديالى',
'ديالى', '', 'DI', 'state',
1),
(1810, 'state_____________1810', 'ذي قار',
'ذي قار', '', 'DQ', 'state',
1),
(1811, 'state______________1811', 'كربلاء',
'كربلاء', '', 'KA', 'state',
1),
(1812, 'state____________1812', 'ميسان',
'ميسان', '', 'MA', 'state',
1),
(1813, 'state______________1813', 'المثنى',
'المثنى', '', 'MU', 'state',
1),
(1814, 'state____________1814', 'النجف',
'النجف', '', 'NA', 'state',
1),
(1815, 'state____________1815', 'نینوى',
'نینوى', '', 'NI', 'state',
1),
(1816, 'state__________________1816',
'القادسية', 'القادسية', '',
'QA', 'state', 1),
(1817, 'state_____________________1817', 'صلاح
الدين', 'صلاح الدين', '',
'SD', 'state', 1),
(1818, 'state___________________________________1818',
'محافظة السليمانية', 'محافظة
السليمانية', '', 'SW',
'state', 1),
(1819, 'state________________1819', 'التأمیم',
'التأمیم', '', 'TS',
'state', 1),
(1820, 'state__________1820', 'واسط',
'واسط', '', 'WA', 'state', 1),
(1821, 'state_Corcaigh_1821', 'Corcaigh', 'County
Cork', '', 'C', 'state', 1),
(1822, 'state_Contae_an_Chl__ir_1822', 'Contae an
Chláir', 'County Clare', '', 'CE',
'state', 1),
(1823, 'state_An_Cabh__n_1823', 'An Cabhán',
'County Cavan', '', 'CN', 'state',
1),
(1824, 'state_Ceatharlach_1824', 'Ceatharlach',
'County Carlow', '', 'CW', 'state',
1),
(1825, 'state_Baile___tha_Cliath_1825', 'Baile Átha
Cliath', 'County Dublin', '', 'D',
'state', 1),
(1826, 'state_D__n_na_nGall_1826', 'Dún na nGall',
'County Donegal', '', 'DL',
'state', 1),
(1827, 'state_Gaillimh_1827', 'Gaillimh', 'County
Galway', '', 'G', 'state', 1),
(1828, 'state_Cill_Dara_1828', 'Cill Dara',
'County Kildare', '', 'KE',
'state', 1),
(1829, 'state_Cill_Chainnigh_1829', 'Cill Chainnigh',
'County Kilkenny', '', 'KK',
'state', 1),
(1830, 'state_Contae_Chiarra___1830', 'Contae
Chiarraí', 'County Kerry', '', 'KY',
'state', 1),
(1831, 'state_An_Longfort_1831', 'An Longfort',
'County Longford', '', 'LD',
'state', 1),
(1832, 'state_Contae_L___1832', 'Contae Lú',
'County Louth', '', 'LH', 'state',
1),
(1833, 'state_Luimneach_1833', 'Luimneach',
'County Limerick', '', 'LK',
'state', 1),
(1834, 'state_Contae_Liatroma_1834', 'Contae Liatroma',
'County Leitrim', '', 'LM',
'state', 1),
(1835, 'state_Contae_Laoise_1835', 'Contae Laoise',
'County Laois', '', 'LS', 'state',
1),
(1836, 'state_Contae_na_M___1836', 'Contae na Mí',
'County Meath', '', 'MH', 'state',
1),
(1837, 'state_Muineach__n_1837', 'Muineachán',
'County Monaghan', '', 'MN',
'state', 1),
(1838, 'state_Contae_Mhaigh_Eo_1838', 'Contae Mhaigh
Eo', 'County Monaghan', '', 'MO',
'state', 1),
(1839, 'state_Contae_U__bh_Fhail___1839', 'Contae Uíbh
Fhailí', 'County Offaly', '', 'OY',
'state', 1),
(1840, 'state_Ros_Com__in_1840', 'Ros Comáin',
'County Roscommon', '', 'RN',
'state', 1),
(1841, 'state_Sligeach_1841', 'Sligeach', 'County
Sligo', '', 'SO', 'state', 1),
(1842, 'state_Tiobraid___rann_1842', 'Tiobraid Árann',
'County Tipperary', '', 'TA',
'state', 1),
(1843, 'state_Port_Lairge_1843', 'Port Lairge',
'County Waterford', '', 'WD',
'state', 1),
(1844, 'state_Contae_na_hIarmh___1844', 'Contae na
hIarmhí', 'County Westmeath', '', 'WH',
'state', 1),
(1845, 'state_Cill_Mhant__in_1845', 'Cill Mhantáin',
'County Wicklow', '', 'WW',
'state', 1),
(1846, 'state_Loch_Garman_1846', 'Loch Garman',
'County Wexford', '', 'WX',
'state', 1),
(1847, 'state_____________________1847', 'מחוז
הדרום', 'מחוז הדרום', '', 'D
', 'state', 1),
(1848, 'state___________________1848', 'מחוז
חיפה', 'מחוז חיפה', '',
'HA', 'state', 1),
(1849, 'state________________1849', 'ירושלים',
'ירושלים', '', 'JM',
'state', 1),
(1850, 'state_____________________1850', 'מחוז
המרכז', 'מחוז המרכז', '', 'M
', 'state', 1),
(1851, 'state______________________1851', 'תל
אביב-יפו', 'תל אביב-יפו', '',
'TA', 'state', 1),
(1852, 'state_____________________1852', 'מחוז
הצפון', 'מחוז הצפון', '', 'Z
', 'state', 1),
(1853, 'state_Agrigento_1853', 'Agrigento',
'Agrigento', '', 'AG', 'state',
1),
(1854, 'state_Alessandria_1854', 'Alessandria',
'Alessandria', '', 'AL', 'state',
1),
(1855, 'state_Ancona_1855', 'Ancona',
'Ancona', '', 'AN', 'state', 1),
(1856, 'state_Valle_d_Aosta_1856', 'Valle
d''Aosta', 'Valle d''Aosta',
'', 'AO', 'state', 1),
(1857, 'state_Ascoli_Piceno_1857', 'Ascoli Piceno',
'Ascoli Piceno', '', 'AP', 'state',
1),
(1858, 'state_L_Aquila_1858', 'L''Aquila',
'L''Aquila', '', 'AQ',
'state', 1),
(1859, 'state_Arezzo_1859', 'Arezzo',
'Arezzo', '', 'AR', 'state', 1),
(1860, 'state_Asti_1860', 'Asti', 'Asti',
'', 'AT', 'state', 1),
(1861, 'state_Avellino_1861', 'Avellino',
'Avellino', '', 'AV', 'state', 1),
(1862, 'state_Bari_1862', 'Bari', 'Bari',
'', 'BA', 'state', 1),
(1863, 'state_Bergamo_1863', 'Bergamo',
'Bergamo', '', 'BG', 'state', 1),
(1864, 'state_Biella_1864', 'Biella',
'Biella', '', 'BI', 'state', 1),
(1865, 'state_Belluno_1865', 'Belluno',
'Belluno', '', 'BL', 'state', 1),
(1866, 'state_Benevento_1866', 'Benevento',
'Benevento', '', 'BN', 'state',
1),
(1867, 'state_Bologna_1867', 'Bologna',
'Bologna', '', 'BO', 'state', 1),
(1868, 'state_Brindisi_1868', 'Brindisi',
'Brindisi', '', 'BR', 'state', 1),
(1869, 'state_Brescia_1869', 'Brescia',
'Brescia', '', 'BS', 'state', 1),
(1870, 'state_Barletta_Andria_Trani_1870',
'Barletta-Andria-Trani', 'Barletta-Andria-Trani',
'', 'BT', 'state', 1),
(1871, 'state_Alto_Adige_1871', 'Alto Adige',
'Alto Adige', '', 'BZ', 'state',
1),
(1872, 'state_Cagliari_1872', 'Cagliari',
'Cagliari', '', 'CA', 'state', 1),
(1873, 'state_Campobasso_1873', 'Campobasso',
'Campobasso', '', 'CB', 'state',
1),
(1874, 'state_Caserta_1874', 'Caserta',
'Caserta', '', 'CE', 'state', 1),
(1875, 'state_Chieti_1875', 'Chieti',
'Chieti', '', 'CH', 'state', 1),
(1876, 'state_Carbonia_Iglesias_1876',
'Carbonia-Iglesias', 'Carbonia-Iglesias', '',
'CI', 'state', 1),
(1877, 'state_Caltanissetta_1877', 'Caltanissetta',
'Caltanissetta', '', 'CL', 'state',
1),
(1878, 'state_Cuneo_1878', 'Cuneo', 'Cuneo',
'', 'CN', 'state', 1),
(1879, 'state_Como_1879', 'Como', 'Como',
'', 'CO', 'state', 1),
(1880, 'state_Cremona_1880', 'Cremona',
'Cremona', '', 'CR', 'state', 1),
(1881, 'state_Cosenza_1881', 'Cosenza',
'Cosenza', '', 'CS', 'state', 1),
(1882, 'state_Catania_1882', 'Catania',
'Catania', '', 'CT', 'state', 1),
(1883, 'state_Catanzaro_1883', 'Catanzaro',
'Catanzaro', '', 'CZ', 'state',
1),
(1884, 'state_Enna_1884', 'Enna', 'Enna',
'', 'EN', 'state', 1),
(1885, 'state_Ferrara_1885', 'Ferrara',
'Ferrara', '', 'FE', 'state', 1),
(1886, 'state_Foggia_1886', 'Foggia',
'Foggia', '', 'FG', 'state', 1),
(1887, 'state_Firenze_1887', 'Firenze',
'Firenze', '', 'FI', 'state', 1),
(1888, 'state_Fermo_1888', 'Fermo', 'Fermo',
'', 'FM', 'state', 1),
(1889, 'state_Forl___Cesena_1889', 'Forlì-Cesena',
'Forlì-Cesena', '', 'FO', 'state',
1),
(1890, 'state_Frosinone_1890', 'Frosinone',
'Frosinone', '', 'FR', 'state',
1),
(1891, 'state_Genova_1891', 'Genova',
'Genova', '', 'GE', 'state', 1),
(1892, 'state_Gorizia_1892', 'Gorizia',
'Gorizia', '', 'GO', 'state', 1),
(1893, 'state_Grosseto_1893', 'Grosseto',
'Grosseto', '', 'GR', 'state', 1),
(1894, 'state_Imperia_1894', 'Imperia',
'Imperia', '', 'IM', 'state', 1),
(1895, 'state_Isernia_1895', 'Isernia',
'Isernia', '', 'IS', 'state', 1),
(1896, 'state_Crotone_1896', 'Crotone',
'Crotone', '', 'KR', 'state', 1),
(1897, 'state_Lecco_1897', 'Lecco', 'Lecco',
'', 'LC', 'state', 1),
(1898, 'state_Lecce_1898', 'Lecce', 'Lecce',
'', 'LE', 'state', 1),
(1899, 'state_Livorno_1899', 'Livorno',
'Livorno', '', 'LI', 'state', 1),
(1900, 'state_Lodi_1900', 'Lodi', 'Lodi',
'', 'LO', 'state', 1),
(1901, 'state_Latina_1901', 'Latina',
'Latina', '', 'LT', 'state', 1),
(1902, 'state_Lucca_1902', 'Lucca', 'Lucca',
'', 'LU', 'state', 1),
(1903, 'state_Macerata_1903', 'Macerata',
'Macerata', '', 'MC', 'state', 1),
(1904, 'state_Medio_Campidano_1904', 'Medio Campidano',
'Medio Campidano', '', 'MD',
'state', 1),
(1905, 'state_Messina_1905', 'Messina',
'Messina', '', 'ME', 'state', 1),
(1906, 'state_Milano_1906', 'Milano',
'Milano', '', 'MI', 'state', 1),
(1907, 'state_Mantova_1907', 'Mantova',
'Mantova', '', 'MN', 'state', 1),
(1908, 'state_Modena_1908', 'Modena',
'Modena', '', 'MO', 'state', 1),
(1909, 'state_Massa_Carrara_1909', 'Massa-Carrara',
'Massa-Carrara', '', 'MS', 'state',
1),
(1910, 'state_Matera_1910', 'Matera',
'Matera', '', 'MT', 'state', 1),
(1911, 'state_Monza_e_Brianza_1911', 'Monza e Brianza',
'Monza e Brianza', '', 'MZ',
'state', 1),
(1912, 'state_Napoli_1912', 'Napoli',
'Napoli', '', 'NA', 'state', 1),
(1913, 'state_Novara_1913', 'Novara',
'Novara', '', 'NO', 'state', 1),
(1914, 'state_Nuoro_1914', 'Nuoro', 'Nuoro',
'', 'NU', 'state', 1),
(1915, 'state_Ogliastra_1915', 'Ogliastra',
'Ogliastra', '', 'OG', 'state',
1),
(1916, 'state_Oristano_1916', 'Oristano',
'Oristano', '', 'OR', 'state', 1),
(1917, 'state_Olbia_Tempio_1917', 'Olbia-Tempio',
'Olbia-Tempio', '', 'OT', 'state',
1),
(1918, 'state_Palermo_1918', 'Palermo',
'Palermo', '', 'PA', 'state', 1),
(1919, 'state_Piacenza_1919', 'Piacenza',
'Piacenza', '', 'PC', 'state', 1),
(1920, 'state_Padova_1920', 'Padova',
'Padova', '', 'PD', 'state', 1),
(1921, 'state_Pescara_1921', 'Pescara',
'Pescara', '', 'PE', 'state', 1),
(1922, 'state_Perugia_1922', 'Perugia',
'Perugia', '', 'PG', 'state', 1),
(1923, 'state_Pisa_1923', 'Pisa', 'Pisa',
'', 'PI', 'state', 1),
(1924, 'state_Pordenone_1924', 'Pordenone',
'Pordenone', '', 'PN', 'state',
1),
(1925, 'state_Prato_1925', 'Prato', 'Prato',
'', 'PO', 'state', 1),
(1926, 'state_Parma_1926', 'Parma', 'Parma',
'', 'PR', 'state', 1),
(1927, 'state_Pesaro_e_Urbino_1927', 'Pesaro e Urbino',
'Pesaro e Urbino', '', 'PS',
'state', 1),
(1928, 'state_Pistoia_1928', 'Pistoia',
'Pistoia', '', 'PT', 'state', 1),
(1929, 'state_Pavia_1929', 'Pavia', 'Pavia',
'', 'PV', 'state', 1),
(1930, 'state_Potenza_1930', 'Potenza',
'Potenza', '', 'PZ', 'state', 1),
(1931, 'state_Ravenna_1931', 'Ravenna',
'Ravenna', '', 'RA', 'state', 1),
(1932, 'state_Reggio_Calabria_1932', 'Reggio Calabria',
'Reggio Calabria', '', 'RC',
'state', 1),
(1933, 'state_Reggio_Emilia_1933', 'Reggio Emilia',
'Reggio Emilia', '', 'RE', 'state',
1),
(1934, 'state_Ragusa_1934', 'Ragusa',
'Ragusa', '', 'RG', 'state', 1),
(1935, 'state_Rieti_1935', 'Rieti', 'Rieti',
'', 'RI', 'state', 1),
(1936, 'state_Roma_1936', 'Roma', 'Roma',
'', 'RM', 'state', 1),
(1937, 'state_Rimini_1937', 'Rimini',
'Rimini', '', 'RN', 'state', 1),
(1938, 'state_Rovigo_1938', 'Rovigo',
'Rovigo', '', 'RO', 'state', 1),
(1939, 'state_Salerno_1939', 'Salerno',
'Salerno', '', 'SA', 'state', 1),
(1940, 'state_Siena_1940', 'Siena', 'Siena',
'', 'SI', 'state', 1),
(1941, 'state_Sondrio_1941', 'Sondrio',
'Sondrio', '', 'SO', 'state', 1),
(1942, 'state_La_Spezia_1942', 'La Spezia', 'La
Spezia', '', 'SP', 'state', 1),
(1943, 'state_Siracusa_1943', 'Siracusa',
'Siracusa', '', 'SR', 'state', 1),
(1944, 'state_Sassari_1944', 'Sassari',
'Sassari', '', 'SS', 'state', 1),
(1945, 'state_Savona_1945', 'Savona',
'Savona', '', 'SV', 'state', 1),
(1946, 'state_Taranto_1946', 'Taranto',
'Taranto', '', 'TA', 'state', 1),
(1947, 'state_Teramo_1947', 'Teramo',
'Teramo', '', 'TE', 'state', 1),
(1948, 'state_Trento_1948', 'Trento',
'Trento', '', 'TN', 'state', 1),
(1949, 'state_Torino_1949', 'Torino',
'Torino', '', 'TO', 'state', 1),
(1950, 'state_Trapani_1950', 'Trapani',
'Trapani', '', 'TP', 'state', 1),
(1951, 'state_Terni_1951', 'Terni', 'Terni',
'', 'TR', 'state', 1),
(1952, 'state_Trieste_1952', 'Trieste',
'Trieste', '', 'TS', 'state', 1),
(1953, 'state_Treviso_1953', 'Treviso',
'Treviso', '', 'TV', 'state', 1),
(1954, 'state_Udine_1954', 'Udine', 'Udine',
'', 'UD', 'state', 1),
(1955, 'state_Varese_1955', 'Varese',
'Varese', '', 'VA', 'state', 1),
(1956, 'state_Verbano_Cusio_Ossola_1956',
'Verbano-Cusio-Ossola', 'Verbano-Cusio-Ossola',
'', 'VB', 'state', 1),
(1957, 'state_Vercelli_1957', 'Vercelli',
'Vercelli', '', 'VC', 'state', 1),
(1958, 'state_Venezia_1958', 'Venezia',
'Venezia', '', 'VE', 'state', 1),
(1959, 'state_Vicenza_1959', 'Vicenza',
'Vicenza', '', 'VI', 'state', 1),
(1960, 'state_Verona_1960', 'Verona',
'Verona', '', 'VR', 'state', 1),
(1961, 'state_Viterbo_1961', 'Viterbo',
'Viterbo', '', 'VT', 'state', 1),
(1962, 'state_Vibo_Valentia_1962', 'Vibo Valentia',
'Vibo Valentia', '', 'VV', 'state',
1),
(1963, 'state_Lucea_1971', 'Hanover',
'Hanover', '', '01', 'state', 1),
(1964, 'state_Black_River_1973', 'Saint Elizabeth',
'Saint Elizabeth', '', '02',
'state', 1),
(1965, 'state_Montego_Bay_1970', 'Saint James',
'Saint James', '', '03', 'state',
1),
(1966, 'state_Falmouth_1969', 'Trelawny',
'Trelawny', '', '04', 'state', 1),
(1967, 'state_Savanna_la_Mar_1972', 'Westmoreland',
'Westmoreland', '', '05', 'state',
1),
(1968, 'state_May_Pen_1975', 'Clarendon',
'Clarendon', '', '06', 'state',
1),
(1969, 'state_Mandeville_1974', 'Manchester',
'Manchester', '', '07', 'state',
1),
(1970, 'state_Saint_Ann_s_Bay_1968', 'Saint Ann',
'Saint Ann', '', '08', 'state',
1),
(1971, 'state_Spanish_Town_1976', 'Saint Catherine',
'Saint Catherine', '', '09',
'state', 1),
(1972, 'state_Port_Maria_1967', 'Saint Mary',
'Saint Mary', '', '10', 'state',
1),
(1973, 'state_Kingston_1963', 'Kingston',
'Kingston', '', '11', 'state', 1),
(1974, 'state_Port_Antonio_1966', 'Portland',
'Portland', '', '12', 'state', 1),
(1975, 'state_Half_Way_Tree_1964', 'Saint Andrew',
'Saint Andrew', '', '13', 'state',
1),
(1976, 'state_Morant_Bay_1965', 'Saint Thomas',
'Saint Thomas', '', '14', 'state',
1),
(1977, 'state___________1977', '北海道',
'1', '', '01', 'state', 1),
(1978, 'state________1978', '青森県', '2',
'', '02', 'state', 1),
(1979, 'state________1979', '岩手県', '3',
'', '03', 'state', 1),
(1980, 'state________1980', '宮城県', '4',
'', '04', 'state', 1),
(1981, 'state________1981', '秋田県', '5',
'', '05', 'state', 1),
(1982, 'state________1982', '山形県', '6',
'', '06', 'state', 1),
(1983, 'state________1983', '福島県', '7',
'', '07', 'state', 1),
(1984, 'state________1984', '茨城県', '8',
'', '08', 'state', 1),
(1985, 'state________1985', '栃木県', '9',
'', '09', 'state', 1),
(1986, 'state________1986', '群馬県',
'10', '', '10', 'state', 1),
(1987, 'state________1987', '埼玉県',
'11', '', '11', 'state', 1),
(1988, 'state________1988', '千葉県',
'12', '', '12', 'state', 1),
(1989, 'state________1989', '東京都',
'13', '', '13', 'state', 1),
(1990, 'state___________1990', '神奈川県',
'14', '', '14', 'state', 1),
(1991, 'state________1991', '新潟県',
'15', '', '15', 'state', 1),
(1992, 'state________1992', '富山県',
'16', '', '16', 'state', 1),
(1993, 'state________1993', '石川県',
'17', '', '17', 'state', 1),
(1994, 'state________1994', '福井県',
'18', '', '18', 'state', 1),
(1995, 'state________1995', '山梨県',
'19', '', '19', 'state', 1),
(1996, 'state________1996', '長野県',
'20', '', '20', 'state', 1),
(1997, 'state________1997', '岐阜県',
'21', '', '21', 'state', 1),
(1998, 'state________1998', '静岡県',
'22', '', '22', 'state', 1),
(1999, 'state________1999', '愛知県',
'23', '', '23', 'state',
1);";
		$this->db->setQuery($query);
		$this->db->query();

		$query="
INSERT IGNORE INTO `#__hikashop_zone` (`zone_id`, `zone_namekey`,
`zone_name`, `zone_name_english`, `zone_code_2`, `zone_code_3`,
`zone_type`, `zone_published`) VALUES
(2000, 'state________2000', '三重県',
'24', '', '24', 'state', 1),
(2001, 'state________2001', '滋賀県',
'25', '', '25', 'state', 1),
(2002, 'state________2002', '京都府',
'26', '', '26', 'state', 1),
(2003, 'state________2003', '大阪府',
'27', '', '27', 'state', 1),
(2004, 'state________2004', '兵庫県',
'28', '', '28', 'state', 1),
(2005, 'state________2005', '奈良県',
'29', '', '29', 'state', 1),
(2006, 'state___________2006', '和歌山県',
'30', '', '30', 'state', 1),
(2007, 'state________2007', '鳥取県',
'31', '', '31', 'state', 1),
(2008, 'state________2008', '島根県',
'32', '', '32', 'state', 1),
(2009, 'state________2009', '岡山県',
'33', '', '33', 'state', 1),
(2010, 'state________2010', '広島県',
'34', '', '34', 'state', 1),
(2011, 'state________2011', '山口県',
'35', '', '35', 'state', 1),
(2012, 'state________2012', '徳島県',
'36', '', '36', 'state', 1),
(2013, 'state________2013', '香川県',
'37', '', '37', 'state', 1),
(2014, 'state________2014', '愛媛県',
'38', '', '38', 'state', 1),
(2015, 'state________2015', '高知県',
'39', '', '39', 'state', 1),
(2016, 'state________2016', '福岡県',
'40', '', '40', 'state', 1),
(2017, 'state________2017', '佐賀県',
'41', '', '41', 'state', 1),
(2018, 'state________2018', '長崎県',
'42', '', '42', 'state', 1),
(2019, 'state________2019', '熊本県',
'43', '', '43', 'state', 1),
(2020, 'state________2020', '大分県',
'44', '', '44', 'state', 1),
(2021, 'state________2021', '宮崎県',
'45', '', '45', 'state', 1),
(2022, 'state___________2022', '鹿児島',
'46', '', '46', 'state', 1),
(2023, 'state________2023', '沖縄県',
'47', '', '47', 'state', 1),
(2024, 'state_________________________2024', 'محافظة
عجلون', 'محافظة عجلون', '',
'AJ', 'state', 1),
(2025, 'state_____________________________2025',
'محافظة العاصمة', 'محافظة
العاصمة', '', 'AM', 'state', 1),
(2026, 'state___________________________2026', 'محافظة
العقبة', 'محافظة العقبة', '',
'AQ', 'state', 1),
(2027, 'state_____________________________2027',
'محافظة الطفيلة', 'محافظة
الطفيلة', '', 'AT', 'state', 1),
(2028, 'state_____________________________2028',
'محافظة الزرقاء', 'محافظة
الزرقاء', '', 'AZ', 'state', 1),
(2029, 'state_____________________________2029',
'محافظة البلقاء', 'محافظة
البلقاء', '', 'BA', 'state', 1),
(2030, 'state_____________________2030', 'محافظة
جرش', 'محافظة جرش', '',
'JA', 'state', 1),
(2031, 'state_______________________2031', 'محافظة
إربد', 'محافظة إربد', '',
'JR', 'state', 1),
(2032, 'state_________________________2032', 'محافظة
الكرك', 'محافظة الكرك', '',
'KA', 'state', 1),
(2033, 'state___________________________2033', 'محافظة
المفرق', 'محافظة المفرق', '',
'MA', 'state', 1),
(2034, 'state_________________________2034', 'محافظة
مادبا', 'محافظة مادبا', '',
'MD', 'state', 1),
(2035, 'state_______________________2035', 'محافظة
معان', 'محافظة معان', '',
'MN', 'state', 1),
(2036, 'state______________2036', 'Алматы',
'Алматы', '', 'AL', 'state',
1),
(2037, 'state_Almaty_City_2037', 'Almaty City',
'Almaty City', '', 'AC', 'state',
1),
(2038, 'state______________2038', 'Ақмола',
'Ақмола', '', 'AM', 'state',
1),
(2039, 'state______________2039', 'Ақтөбе',
'Ақтөбе', '', 'AQ', 'state',
1),
(2040, 'state______________2040', 'Астана',
'Астана', '', 'AS', 'state',
1),
(2041, 'state______________2041', 'Атырау',
'Атырау', '', 'AT', 'state',
1),
(2042, 'state_______________________________2042',
'Батыс Қазақстан', 'Батыс
Қазақстан', '', 'BA', 'state',
1),
(2043, 'state__________________2043',
'Байқоңыр', 'Байқоңыр', '',
'BY', 'state', 1),
(2044, 'state____________________2044',
'Маңғыстау', 'Маңғыстау',
'', 'MA', 'state', 1),
(2045, 'state_____________________________________2045',
'Оңтүстік Қазақстан', 'Оңтүстік
Қазақстан', '', 'ON', 'state',
1),
(2046, 'state__________________2046',
'Павлодар', 'Павлодар', '',
'PA', 'state', 1),
(2047, 'state____________________2047',
'Қарағанды', 'Қарағанды',
'', 'QA', 'state', 1),
(2048, 'state__________________2048',
'Қостанай', 'Қостанай', '',
'QO', 'state', 1),
(2049, 'state____________________2049',
'Қызылорда', 'Қызылорда',
'', 'QY', 'state', 1),
(2050, 'state_______________________________2050',
'Шығыс Қазақстан', 'Шығыс
Қазақстан', '', 'SH', 'state',
1),
(2051, 'state_______________________________________2051',
'Солтүстік Қазақстан', 'Солтүстік
Қазақстан', '', 'SO', 'state',
1),
(2052, 'state______________2052', 'Жамбыл',
'Жамбыл', '', 'ZH', 'state',
1),
(2053, 'state_Nairobi_2053', 'Nairobi',
'Nairobi', '', '110', 'state', 1),
(2054, 'state_Central_2054', 'Central',
'Central', '', '200', 'state', 1),
(2055, 'state_Mombasa_2055', 'Mombasa',
'Mombasa', '', '300', 'state', 1),
(2056, 'state_Eastern_2056', 'Eastern',
'Eastern', '', '400', 'state', 1),
(2057, 'state_North_Eastern_2057', 'North Eastern',
'North Eastern', '', '500',
'state', 1),
(2058, 'state_Nyanza_2058', 'Nyanza',
'Nyanza', '', '600', 'state', 1),
(2059, 'state_Rift_Valley_2059', 'Rift Valley',
'Rift Valley', '', '700', 'state',
1),
(2060, 'state_Western_2060', 'Western',
'Western', '', '900', 'state', 1),
(2061, 'state_Gilbert_Islands_2061', 'Gilbert Islands',
'Gilbert Islands', '', 'G',
'state', 1),
(2062, 'state_Line_Islands_2062', 'Line Islands',
'Line Islands', '', 'L', 'state',
1),
(2063, 'state_Phoenix_Islands_2063', 'Phoenix Islands',
'Phoenix Islands', '', 'P',
'state', 1),
(2064, 'state___________2064', '자강도',
'자강도', '', 'CHA', 'state',
1),
(2065, 'state_______________2065', '함경 북도',
'함경 북도', '', 'HAB',
'state', 1),
(2066, 'state_______________2066', '함경 남도',
'함경 남도', '', 'HAN',
'state', 1),
(2067, 'state_______________2067', '황해 북도',
'황해 북도', '', 'HWB',
'state', 1),
(2068, 'state_______________2068', '황해 남도',
'황해 남도', '', 'HWN',
'state', 1),
(2069, 'state___________2069', '강원도',
'강원도', '', 'KAN', 'state',
1),
(2070, 'state___________2070', '개성시',
'개성시', '', 'KAE', 'state',
1),
(2071, 'state__________________2071', '라선
직할시', '라선 직할시', '',
'NAJ', 'state', 1),
(2072, 'state__________________2072', '남포
특급시', '남포 특급시', '',
'NAM', 'state', 1),
(2073, 'state_______________2073', '평안 북도',
'평안 북도', '', 'PYB',
'state', 1),
(2074, 'state_______________2074', '평안 남도',
'평안 남도', '', 'PYN',
'state', 1),
(2075, 'state__________________2075', '평양
직할시', '평양 직할시', '',
'PYO', 'state', 1),
(2076, 'state___________2076', '량강도',
'량강도', '', 'YAN', 'state',
1),
(2077, 'state_________________2077', '서울특별시',
'서울특별시', '', '11',
'state', 1),
(2078, 'state__________________2078', '부산
광역시', '부산 광역시', '',
'26', 'state', 1),
(2079, 'state__________________2079', '대구
광역시', '대구 광역시', '',
'27', 'state', 1),
(2080, 'state_________________2080', '인천광역시',
'인천광역시', '', '28',
'state', 1),
(2081, 'state__________________2081', '광주
광역시', '광주 광역시', '',
'29', 'state', 1),
(2082, 'state__________________2082', '대전
광역시', '대전 광역시', '',
'30', 'state', 1),
(2083, 'state__________________2083', '울산
광역시', '울산 광역시', '',
'31', 'state', 1),
(2084, 'state___________2084', '경기도',
'경기도', '', '41', 'state',
1),
(2085, 'state___________2085', '강원도',
'강원도', '', '42', 'state',
1),
(2086, 'state_______________2086', '충청 북도',
'충청 북도', '', '43', 'state',
1),
(2087, 'state_______________2087', '충청 남도',
'충청 남도', '', '44', 'state',
1),
(2088, 'state_______________2088', '전라 북도',
'전라 북도', '', '45', 'state',
1),
(2089, 'state_______________2089', '전라 남도',
'전라 남도', '', '46', 'state',
1),
(2090, 'state_______________2090', '경상 북도',
'경상 북도', '', '47', 'state',
1),
(2091, 'state_______________2091', '경상 남도',
'경상 남도', '', '48', 'state',
1),
(2092, 'state_______________________2092',
'제주특별자치도', '제주특별자치도',
'', '49', 'state', 1),
(2093, 'state________________2093', 'الاحمدي',
'الاحمدي', '', 'AH',
'state', 1),
(2094, 'state____________________2094',
'الفروانية', 'الفروانية',
'', 'FA', 'state', 1),
(2095, 'state________________2095', 'الجهراء',
'الجهراء', '', 'JA',
'state', 1),
(2096, 'state________________2096', 'ألعاصمه',
'ألعاصمه', '', 'KU',
'state', 1),
(2097, 'state__________2097', 'حولي',
'حولي', '', 'HW', 'state', 1),
(2098, 'state_________________________2098', 'مبارك
الكبير', 'مبارك الكبير', '',
'MU', 'state', 1),
(2099, 'state_____________________________2099',
'Баткен областы', 'Баткен
областы', '', 'B', 'state', 1),
(2100, 'state_______________________2100', 'Чүй
областы', 'Чүй областы', '',
'C', 'state', 1),
(2101, 'state______________2101', 'Бишкек',
'Бишкек', '', 'GB', 'state',
1),
(2102, 'state____________________________________2102',
'Жалал-Абад областы', 'Жалал-Абад
областы', '', 'J', 'state', 1),
(2103, 'state___________________________2103', 'Нарын
областы', 'Нарын областы', '',
'N', 'state', 1),
(2104, 'state_____________________2104', 'Ош
областы', 'Ош областы', '',
'O', 'state', 1),
(2105, 'state___________________________2105', 'Талас
областы', 'Талас областы', '',
'T', 'state', 1),
(2106, 'state________________________________2106',
'Ысык-Көл областы', 'Ысык-Көл
областы', '', 'Y', 'state', 1),
(2107, 'state_______________________2107',
'ອັດຕະປື', 'ອັດຕະປື',
'', 'AT', 'state', 1),
(2108, 'state_______________________2108',
'ບໍ່ແກ້ວ', 'ບໍ່ແກ້ວ',
'', 'BK', 'state', 1),
(2109, 'state_____________________________2109',
'ບໍລິຄໍາໄຊ',
'ບໍລິຄໍາໄຊ', '', 'BL',
'state', 1),
(2110, 'state__________________________2110',
'ຈໍາປາສັກ', 'ຈໍາປາສັກ',
'', 'CH', 'state', 1),
(2111, 'state____________________2111',
'ຫົວພັນ', 'ຫົວພັນ',
'', 'HO', 'state', 1),
(2112, 'state_______________________2112',
'ຄໍາມ່ວນ', 'ຄໍາມ່ວນ',
'', 'KH', 'state', 1),
(2113, 'state________________________________2113',
'ຫລວງນໍ້າທາ',
'ຫລວງນໍ້າທາ', '', 'LM',
'state', 1),
(2114, 'state_____________________________2114',
'ຫລວງພະບາງ',
'ຫລວງພະບາງ', '', 'LP',
'state', 1),
(2115, 'state_______________________2115',
'ອຸດົມໄຊ', 'ອຸດົມໄຊ',
'', 'OU', 'state', 1),
(2116, 'state_______________________2116',
'ຜົງສາລີ', 'ຜົງສາລີ',
'', 'PH', 'state', 1),
(2117, 'state_______________________2117',
'ສາລະວັນ', 'ສາລະວັນ',
'', 'SL', 'state', 1),
(2118, 'state___________________________________2118',
'ສະຫວັນນະເຂດ',
'ສະຫວັນນະເຂດ', '',
'SV', 'state', 1),
(2119, 'state____________________2119',
'ວຽງຈັນ', 'ວຽງຈັນ',
'', 'VI', 'state', 1),
(2120, 'state____________________2120',
'ວຽງຈັນ', 'ວຽງຈັນ',
'', 'VT', 'state', 1),
(2121, 'state__________________________2121',
'ໄຊຍະບູລີ', 'ໄຊຍະບູລີ',
'', 'XA', 'state', 1),
(2122, 'state_________________2122', 'ເຊກອງ',
'ເຊກອງ', '', 'XE',
'state', 1),
(2123, 'state_______________________2123',
'ຊຽງຂວາງ', 'ຊຽງຂວາງ',
'', 'XI', 'state', 1),
(2124, 'state__________________________2124',
'ໄຊສົມບູນ', 'ໄຊສົມບູນ',
'', 'XN', 'state', 1),
(2125, 'state_Aizkraukles_rajons_2125', 'Aizkraukles
rajons', 'Aizkraukles rajons', '', 'AI',
'state', 1),
(2126, 'state_Al__ksnes_rajons_2126', 'Alūksnes
rajons', 'Alūksnes rajons', '', 'AL',
'state', 1),
(2127, 'state_Balvu_rajons_2127', 'Balvu rajons',
'Balvu rajons', '', 'BL', 'state',
1),
(2128, 'state_Bauskas_rajons_2128', 'Bauskas rajons',
'Bauskas rajons', '', 'BU',
'state', 1),
(2129, 'state_C__su_rajons_2129', 'Cēsu rajons',
'Cēsu rajons', '', 'CE', 'state',
1),
(2130, 'state_Daugavpils_rajons_2130', 'Daugavpils
rajons', 'Daugavpils rajons', '', 'DA',
'state', 1),
(2131, 'state_Daugpilis_2131', 'Daugpilis',
'Daugpilis', '', 'DGV', 'state',
1),
(2132, 'state_Dobeles_rajons_2132', 'Dobeles rajons',
'Dobeles rajons', '', 'DO',
'state', 1),
(2133, 'state_Gulbenes_rajons_2133', 'Gulbenes rajons',
'Gulbenes rajons', '', 'GU',
'state', 1),
(2134, 'state_Jelgava_2134', 'Jelgava',
'Jelgava', '', 'JEL', 'state', 1),
(2135, 'state_J__kabpils_rajons_2135', 'Jēkabpils
rajons', 'Jēkabpils rajons', '', 'JK',
'state', 1),
(2136, 'state_Jelgavas_rajons_2136', 'Jelgavas rajons',
'Jelgavas rajons', '', 'JL',
'state', 1),
(2137, 'state_J__rmala_2137', 'Jūrmala',
'Jūrmala', '', 'JUR', 'state',
1),
(2138, 'state_Kr__slavas_rajons_2138', 'Krāslavas
rajons', 'Krāslavas rajons', '', 'KR',
'state', 1),
(2139, 'state_Kuld__gas_rajons_2139', 'Kuldīgas
rajons', 'Kuldīgas rajons', '', 'KU',
'state', 1),
(2140, 'state_Liep__jas_rajons_2140', 'Liepājas
rajons', 'Liepājas rajons', '', 'LE',
'state', 1),
(2141, 'state_Limba__u_rajons_2141', 'Limbažu rajons',
'Limbažu rajons', '', 'LM',
'state', 1),
(2142, 'state_Liepoja_2142', 'Liepoja',
'Liepoja', '', 'LPX', 'state', 1),
(2143, 'state_Ludzas_rajons_2143', 'Ludzas rajons',
'Ludzas rajons', '', 'LU', 'state',
1),
(2144, 'state_Madonas_rajons_2144', 'Madonas rajons',
'Madonas rajons', '', 'MA',
'state', 1),
(2145, 'state_Ogres_rajons_2145', 'Ogres rajons',
'Ogres rajons', '', 'OG', 'state',
1),
(2146, 'state_Prei__u_rajons_2146', 'Preiļu rajons',
'Preiļu rajons', '', 'PR',
'state', 1),
(2147, 'state_R__zeknes_rajons_2147', 'Rēzeknes
rajons', 'Rēzeknes rajons', '', 'RE',
'state', 1),
(2148, 'state_R__zekne_2148', 'Rēzekne',
'Rēzekne', '', 'REZ', 'state',
1),
(2149, 'state_R__gas_rajons_2149', 'Rīgas rajons',
'Rīgas rajons', '', 'RI', 'state',
1),
(2150, 'state_R__ga_2150', 'Rīga', 'Rīga',
'', 'RIX', 'state', 1),
(2151, 'state_Saldus_rajons_2151', 'Saldus rajons',
'Saldus rajons', '', 'SA', 'state',
1),
(2152, 'state_Talsu_rajons_2152', 'Talsu rajons',
'Talsu rajons', '', 'TA', 'state',
1),
(2153, 'state_Tukuma_rajons_2153', 'Tukuma rajons',
'Tukuma rajons', '', 'TU', 'state',
1),
(2154, 'state_Ventspils_rajons_2154', 'Ventspils
rajons', 'Ventspils rajons', '', 'VE',
'state', 1),
(2155, 'state_Ventspils_2155', 'Ventspils',
'Ventspils', '', 'VEN', 'state',
1),
(2156, 'state_Valkas_rajons_2156', 'Valkas rajons',
'Valkas rajons', '', 'VK', 'state',
1),
(2157, 'state_Valmieras_rajons_2157', 'Valmieras
rajons', 'Valmieras rajons', '', 'VM',
'state', 1),
(2158, 'state_Maseru_2158', 'Maseru',
'Maseru', '', 'A', 'state', 1),
(2159, 'state_Butha_Buthe_2159', 'Butha-Buthe',
'Butha-Buthe', '', 'B', 'state',
1),
(2160, 'state_Leribe_2160', 'Leribe',
'Leribe', '', 'C', 'state', 1),
(2161, 'state_Berea_2161', 'Berea', 'Berea',
'', 'D', 'state', 1),
(2162, 'state_Mafeteng_2162', 'Mafeteng',
'Mafeteng', '', 'E', 'state', 1),
(2163, 'state_Mohale_s_Hoek_2163', 'Mohale''s
Hoek', 'Mohale''s Hoek', '',
'F', 'state', 1),
(2164, 'state_Quthing_2164', 'Quthing',
'Quthing', '', 'G', 'state', 1),
(2165, 'state_Qacha_s_Nek_2165', 'Qacha''s
Nek', 'Qacha''s Nek', '', 'H',
'state', 1),
(2166, 'state_Mokhotlong_2166', 'Mokhotlong',
'Mokhotlong', '', 'J', 'state',
1),
(2167, 'state_Thaba_Tseka_2167', 'Thaba-Tseka',
'Thaba-Tseka', '', 'K', 'state',
1),
(2168, 'state_Bong_2168', 'Bong', 'Bong',
'', 'BG', 'state', 1),
(2169, 'state_Bomi_2169', 'Bomi', 'Bomi',
'', 'BM', 'state', 1),
(2170, 'state_Grand_Cape_Mount_2170', 'Grand Cape
Mount', 'Grand Cape Mount', '', 'CM',
'state', 1),
(2171, 'state_Grand_Bassa_2171', 'Grand Bassa',
'Grand Bassa', '', 'GB', 'state',
1),
(2172, 'state_Grand_Gedeh_2172', 'Grand Gedeh',
'Grand Gedeh', '', 'GG', 'state',
1),
(2173, 'state_Grand_Kru_2173', 'Grand Kru', 'Grand
Kru', '', 'GK', 'state', 1),
(2174, 'state_Gbarpolu_2174', 'Gbarpolu',
'Gbarpolu', '', 'GP', 'state', 1),
(2175, 'state_Lofa_2175', 'Lofa', 'Lofa',
'', 'LO', 'state', 1),
(2176, 'state_Margibi_2176', 'Margibi',
'Margibi', '', 'MG', 'state', 1),
(2177, 'state_Montserrado_2177', 'Montserrado',
'Montserrado', '', 'MO', 'state',
1),
(2178, 'state_Maryland_2178', 'Maryland',
'Maryland', '', 'MY', 'state', 1),
(2179, 'state_Nimba_2179', 'Nimba', 'Nimba',
'', 'NI', 'state', 1),
(2180, 'state_River_Gee_2180', 'River Gee', 'River
Gee', '', 'RG', 'state', 1),
(2181, 'state_Rivercess_2181', 'Rivercess',
'Rivercess', '', 'RI', 'state',
1),
(2182, 'state_Sinoe_2182', 'Sinoe', 'Sinoe',
'', 'SI', 'state', 1),
(2183, 'state_Ajd__biy___2183', 'Ajdābiyā',
'Ajdābiyā', '', 'AJ', 'state',
1),
(2184, 'state_Bangh__z___2184', 'Banghāzī',
'Banghāzī', '', 'BA', 'state',
1),
(2185, 'state_Al_Bu__n__n_2185', 'Al Buţnān',
'Al Buţnān', '', 'BU', 'state',
1),
(2186, 'state_Ban___Wal__d_2186', 'Banī Walīd',
'Banī Walīd', '', 'BW', 'state',
1),
(2187, 'state_Darnah_2187', 'Darnah',
'Darnah', '', 'DR', 'state', 1),
(2188, 'state_Ghad__mis_2188', 'Ghadāmis',
'Ghadāmis', '', 'GD', 'state',
1),
(2189, 'state_Ghary__n_2189', 'Gharyān',
'Gharyān', '', 'GR', 'state', 1),
(2190, 'state_Gh__t_2190', 'Ghāt', 'Ghāt',
'', 'GT', 'state', 1),
(2191, 'state_Al____iz__m_al_Akh___ar_2191', 'Al Ḩizām al
Akhḑar', 'Al Ḩizām al Akhḑar', '',
'HZ', 'state', 1),
(2192, 'state_Al_Jabal_al_Akh___ar_2192', 'Al Jabal al
Akhḑar', 'Al Jabal al Akhḑar', '',
'JA', 'state', 1),
(2193, 'state_Jaghb__b_2193', 'Jaghbūb',
'Jaghbūb', '', 'JB', 'state', 1),
(2194, 'state_Al_Jif__rah_2194', 'Al Jifārah',
'Al Jifārah', '', 'JI', 'state',
1),
(2195, 'state_Al_Jufrah_2195', 'Al Jufrah', 'Al
Jufrah', '', 'JU', 'state', 1),
(2196, 'state_Al_Kufrah_2196', 'Al Kufrah', 'Al
Kufrah', '', 'KF', 'state', 1),
(2197, 'state_Al_Marqab_2197', 'Al Marqab', 'Al
Marqab', '', 'MB', 'state', 1),
(2198, 'state_Mi__r__tah_2198', 'Mişrātah',
'Mişrātah', '', 'MI', 'state',
1),
(2199, 'state_Al_Marj_2199', 'Al Marj', 'Al
Marj', '', 'MJ', 'state', 1),
(2200, 'state_Murzuq_2200', 'Murzuq',
'Murzuq', '', 'MQ', 'state', 1),
(2201, 'state_Mizdah_2201', 'Mizdah',
'Mizdah', '', 'MZ', 'state', 1),
(2202, 'state_N__l__t_2202', 'Nālūt',
'Nālūt', '', 'NL', 'state', 1),
(2203, 'state_An_Nuqa___al_Khams_2203', 'An Nuqaţ al
Khams', 'An Nuqaţ al Khams', '', 'NQ',
'state', 1),
(2204, 'state_Al_Qubbah_2204', 'Al Qubbah', 'Al
Qubbah', '', 'QB', 'state', 1),
(2205, 'state_Al_Qa__r__n_2205', 'Al Qaţrūn',
'Al Qaţrūn', '', 'QT', 'state',
1),
(2206, 'state_Sabh___2206', 'Sabhā',
'Sabhā', '', 'SB', 'state', 1),
(2207, 'state_Ash_Sh____i_2207', 'Ash Shāţi',
'Ash Shāţi', '', 'SH', 'state',
1),
(2208, 'state_Surt_2208', 'Surt', 'Surt',
'', 'SR', 'state', 1),
(2209, 'state___abr__tah___urm__n_2209', 'Şabrātah
Şurmān', 'Şabrātah Şurmān', '',
'SS', 'state', 1),
(2210, 'state___ar__bulus_2210', 'Ţarābulus',
'Ţarābulus', '', 'TB', 'state',
1),
(2211, 'state_Tarh__nah_Masall__tah_2211',
'Tarhūnah-Masallātah', 'Tarhūnah-Masallātah',
'', 'TM', 'state', 1),
(2212, 'state_T__j__r___wa_an_Naw________al_Arb_____2212',
'Tājūrā wa an Nawāḩī al Arbāʻ', 'Tājūrā wa an
Nawāḩī al Arbāʻ', '', 'TN',
'state', 1),
(2213, 'state_Al_W_____ah_2213', 'Al Wāḩah',
'Al Wāḩah', '', 'WA', 'state',
1),
(2214, 'state_W__d___al____ay__t_2214', 'Wādī al
Ḩayāt', 'Wādī al Ḩayāt', '',
'WD', 'state', 1),
(2215, 'state_Yafran_J__d___2215', 'Yafran-Jādū',
'Yafran-Jādū', '', 'YJ', 'state',
1),
(2216, 'state_Az_Z__wiyah_2216', 'Az Zāwiyah',
'Az Zāwiyah', '', 'ZA', 'state',
1),
(2217, 'state_Balzers_2217', 'Balzers',
'Balzers', '', 'B', 'state', 1),
(2218, 'state_Eschen_2218', 'Eschen',
'Eschen', '', 'E', 'state', 1),
(2219, 'state_Gamprin_2219', 'Gamprin',
'Gamprin', '', 'G', 'state', 1),
(2220, 'state_Mauren_2220', 'Mauren',
'Mauren', '', 'M', 'state', 1),
(2221, 'state_Planken_2221', 'Planken',
'Planken', '', 'P', 'state', 1),
(2222, 'state_Ruggell_2222', 'Ruggell',
'Ruggell', '', 'R', 'state', 1),
(2223, 'state_Schaan_2223', 'Schaan',
'Schaan', '', 'A', 'state', 1),
(2224, 'state_Schellenberg_2224', 'Schellenberg',
'Schellenberg', '', 'L', 'state',
1),
(2225, 'state_Triesen_2225', 'Triesen',
'Triesen', '', 'N', 'state', 1),
(2226, 'state_Triesenberg_2226', 'Triesenberg',
'Triesenberg', '', 'T', 'state',
1),
(2227, 'state_Vaduz_2227', 'Vaduz', 'Vaduz',
'', 'V', 'state', 1),
(2228, 'state_Alytaus_Apskritis_2228', 'Alytaus
Apskritis', 'Alytaus Apskritis', '',
'AL', 'state', 1),
(2229, 'state_Klaip__dos_Apskritis_2229', 'Klaipėdos
Apskritis', 'Klaipėdos Apskritis', '',
'KL', 'state', 1),
(2230, 'state_Kauno_Apskritis_2230', 'Kauno Apskritis',
'Kauno Apskritis', '', 'KU',
'state', 1),
(2231, 'state_Marijampol__s_Apskritis_2231', 'Marijampolės
Apskritis', 'Marijampolės Apskritis', '',
'MR', 'state', 1),
(2232, 'state_Panev____io_Apskritis_2232', 'Panevėžio
Apskritis', 'Panevėžio Apskritis', '',
'PN', 'state', 1),
(2233, 'state___iauli___Apskritis_2233', 'Šiaulių
Apskritis', 'Šiaulių Apskritis', '',
'SA', 'state', 1),
(2234, 'state_Taurag__s_Apskritis_2234', 'Tauragės
Apskritis', 'Tauragės Apskritis', '',
'TA', 'state', 1),
(2235, 'state_Tel__i___Apskritis_2235', 'Telšių
Apskritis', 'Telšių Apskritis', '',
'TE', 'state', 1),
(2236, 'state_Utenos_Apskritis_2236', 'Utenos
Apskritis', 'Utenos Apskritis', '',
'UT', 'state', 1),
(2237, 'state_Vilniaus_Apskritis_2237', 'Vilniaus
Apskritis', 'Vilniaus Apskritis', '',
'VL', 'state', 1),
(2238, 'state_Diekirch_2238', 'Diekirch',
'Diekirch', '', 'D', 'state', 1),
(2239, 'state_Grevenmacher_2239', 'Grevenmacher',
'Grevenmacher', '', 'G', 'state',
1),
(2240, 'state_Luxemburg_2240', 'Luxemburg',
'Luxemburg', '', 'L', 'state', 1),
(2241, 'state___________2241', '海島市',
'海島市', '', 'I', 'state', 1),
(2242, 'state___________2242', '澳門市',
'澳門市', '', 'M', 'state', 1),
(2243, 'state_Berovo_2243', 'Berovo',
'Berovo', '', 'BR', 'state', 1),
(2244, 'state___________________________________2244',
'Чешиново-Облешево',
'Чешиново-Облешево', '',
'CH', 'state', 1),
(2245, 'state________________2245', 'Делчево',
'Делчево', '', 'DL',
'state', 1),
(2246, 'state__________________2246',
'Карбинци', 'Карбинци', '',
'KB', 'state', 1),
(2247, 'state______________2247', 'Кочани',
'Кочани', '', 'OC', 'state',
1),
(2248, 'state______________2248', 'Лозово',
'Лозово', '', 'LO', 'state',
1),
(2249, 'state_______________________________________2249',
'Македонска каменица',
'Македонска каменица', '',
'MK', 'state', 1),
(2250, 'state________________2250', 'Пехчево',
'Пехчево', '', 'PH',
'state', 1),
(2251, 'state____________________2251',
'Пробиштип', 'Пробиштип',
'', 'PT', 'state', 1),
(2252, 'state__________2252', 'Штип',
'Штип', '', 'ST', 'state', 1),
(2253, 'state_________________________2253', 'Свети
Николе', 'Свети Николе', '',
'SL', 'state', 1),
(2254, 'state______________2254', 'Виница',
'Виница', '', 'NI', 'state',
1),
(2255, 'state________________2255', 'Зрновци',
'Зрновци', '', 'ZR',
'state', 1),
(2256, 'state________________2256', 'Кратово',
'Кратово', '', 'KY',
'state', 1),
(2257, 'state___________________________2257', 'Крива
Паланка', 'Крива Паланка', '',
'KZ', 'state', 1),
(2258, 'state__________________2258',
'Куманово', 'Куманово', '',
'UM', 'state', 1),
(2259, 'state________________2259', 'Липково',
'Липково', '', 'LI',
'state', 1),
(2260, 'state__________________2260',
'Ранковце', 'Ранковце', '',
'RN', 'state', 1),
(2261, 'state_________________________________2261',
'Старо Нагоричане', 'Старо
Нагоричане', '', 'NA',
'state', 1),
(2262, 'state______________2262', 'Битола',
'Битола', '', 'TL', 'state',
1),
(2263, 'state_______________________2263', 'Демир
Хисар', 'Демир Хисар', '',
'DM', 'state', 1),
(2264, 'state________________2264', 'Долнени',
'Долнени', '', 'DE',
'state', 1),
(2265, 'state__________________________2265',
'Кривогаштани', 'Кривогаштани',
'', 'KG', 'state', 1),
(2266, 'state________________2266', 'Крушево',
'Крушево', '', 'KS',
'state', 1),
(2267, 'state______________2267', 'Могила',
'Могила', '', 'MG', 'state',
1),
(2268, 'state______________2268', 'Новаци',
'Новаци', '', 'NV', 'state',
1),
(2269, 'state______________2269', 'Прилеп',
'Прилеп', '', 'PP', 'state',
1),
(2270, 'state____________2270', 'Ресен',
'Ресен', '', 'RE', 'state',
1),
(2271, 'state__________________2271',
'Боговиње', 'Боговиње', '',
'VJ', 'state', 1),
(2272, 'state__________________2272',
'Брвеница', 'Брвеница', '',
'BN', 'state', 1),
(2273, 'state__________________2273',
'Гостивар', 'Гостивар', '',
'GT', 'state', 1),
(2274, 'state____________________2274',
'Јегуновце', 'Јегуновце',
'', 'JG', 'state', 1),
(2275, 'state__________________________________2275',
'Маврово и Ростуша', 'Маврово и
Ростуша', '', 'MR', 'state', 1),
(2276, 'state______________2276', 'Теарце',
'Теарце', '', 'TR', 'state',
1),
(2277, 'state______________2277', 'Тетово',
'Тетово', '', 'ET', 'state',
1),
(2278, 'state____________________2278',
'Врапчиште', 'Врапчиште',
'', 'VH', 'state', 1),
(2279, 'state______________2279', 'Желино',
'Желино', '', 'ZE', 'state',
1),
(2280, 'state__________________2280',
'Аеродром', 'Аеродром', '',
'AD', 'state', 1),
(2281, 'state____________________2281',
'Арачиново', 'Арачиново',
'', 'AR', 'state', 1),
(2282, 'state____________2282', 'Бутел',
'Бутел', '', 'BU', 'state',
1),
(2283, 'state__________2283', 'Чаир',
'Чаир', '', 'CI', 'state', 1),
(2284, 'state______________2284', 'Центар',
'Центар', '', 'CE', 'state',
1),
(2285, 'state___________________________2285', 'Чучер
Сандево', 'Чучер Сандево', '',
'CS', 'state', 1),
(2286, 'state___________________2286', 'Гази
Баба', 'Гази Баба', '',
'GB', 'state', 1),
(2287, 'state_________________________2287', 'Ѓорче
Петров', 'Ѓорче Петров', '',
'GP', 'state', 1),
(2288, 'state________________2288', 'Илинден',
'Илинден', '', 'IL',
'state', 1),
(2289, 'state______________2289', 'Карпош',
'Карпош', '', 'KX', 'state',
1),
(2290, 'state_______________________2290', 'Кисела
Вода', 'Кисела Вода', '',
'VD', 'state', 1),
(2291, 'state__________________2291',
'Петровец', 'Петровец', '',
'PE', 'state', 1),
(2292, 'state____________2292', 'Сарај',
'Сарај', '', 'AJ', 'state',
1),
(2293, 'state________________2293', 'Сопиште',
'Сопиште', '', 'SS',
'state', 1),
(2294, 'state________________________2294',
'Студеничани', 'Студеничани',
'', 'SU', 'state', 1),
(2295, 'state_________________________2295', 'Шуто
Оризари', 'Шуто Оризари', '',
'SO', 'state', 1),
(2296, 'state______________________2296',
'Зелениково', 'Зелениково',
'', 'ZK', 'state', 1),
(2297, 'state__________________2297',
'Богданци', 'Богданци', '',
'BG', 'state', 1),
(2298, 'state__________________2298',
'Босилово', 'Босилово', '',
'BS', 'state', 1),
(2299, 'state____________________2299',
'Гевгелија', 'Гевгелија',
'', 'GV', 'state', 1),
(2300, 'state____________2300', 'Конче',
'Конче', '', 'KN', 'state',
1),
(2301, 'state___________________2301', 'Ново
Село', 'Ново Село', '',
'NS', 'state', 1),
(2302, 'state________________2302', 'Радовиш',
'Радовиш', '', 'RV',
'state', 1),
(2303, 'state_______________________2303', 'Стар
Дојран', 'Стар Дојран', '',
'SD', 'state', 1),
(2304, 'state__________________2304',
'Струмица', 'Струмица', '',
'RU', 'state', 1),
(2305, 'state____________________2305',
'Валандово', 'Валандово',
'', 'VA', 'state', 1),
(2306, 'state__________________2306',
'Василево', 'Василево', '',
'VL', 'state', 1),
(2307, 'state_______________________2307', 'Центар
Жупа', 'Центар Жупа', '',
'CZ', 'state', 1),
(2308, 'state____________2308', 'Дебар',
'Дебар', '', 'DB', 'state',
1),
(2309, 'state________________2309', 'Дебарца',
'Дебарца', '', 'DA',
'state', 1),
(2310, 'state________________2310', 'Другово',
'Другово', '', 'DR',
'state', 1),
(2311, 'state______________2311', 'Кичево',
'Кичево', '', 'KH', 'state',
1),
(2312, 'state_______________________________2312',
'Македонски Брод', 'Македонски
Брод', '', 'MD', 'state', 1),
(2313, 'state____________2313', 'Охрид',
'Охрид', '', 'OD', 'state',
1),
(2314, 'state________________2314', 'Осломеј',
'Осломеј', '', 'OS',
'state', 1),
(2315, 'state__________________2315',
'Пласница', 'Пласница', '',
'PN', 'state', 1),
(2316, 'state______________2316', 'Струга',
'Струга', '', 'UG', 'state',
1),
(2317, 'state________________2317', 'Вевчани',
'Вевчани', '', 'VV',
'state', 1),
(2318, 'state______________________2318',
'Вранештица', 'Вранештица',
'', 'VC', 'state', 1),
(2319, 'state____________2319', 'Зајас',
'Зајас', '', 'ZA', 'state',
1),
(2320, 'state____________2320', 'Чашка',
'Чашка', '', 'CA', 'state',
1),
(2321, 'state_________________________2321', 'Демир
Капија', 'Демир Капија', '',
'DK', 'state', 1),
(2322, 'state________________2322', 'Градско',
'Градско', '', 'GR',
'state', 1),
(2323, 'state____________________2323',
'Кавадарци', 'Кавадарци',
'', 'AV', 'state', 1),
(2324, 'state__________________2324',
'Неготино', 'Неготино', '',
'NG', 'state', 1),
(2325, 'state________________2325', 'Росоман',
'Росоман', '', 'RM',
'state', 1),
(2326, 'state____________2326', 'Велес',
'Велес', '', 'VE', 'state',
1),
(2327, 'state_Toamasina_2327', 'Toamasina',
'Toamasina', '', 'A', 'state', 1),
(2328, 'state_Antsiranana_2328', 'Antsiranana',
'Antsiranana', '', 'D', 'state',
1),
(2329, 'state_Fianarantsoa_2329', 'Fianarantsoa',
'Fianarantsoa', '', 'F', 'state',
1),
(2330, 'state_Mahajanga_2330', 'Mahajanga',
'Mahajanga', '', 'M', 'state', 1),
(2331, 'state_Antananarivo_2331', 'Antananarivo',
'Antananarivo', '', 'T', 'state',
1),
(2332, 'state_Toliara_2332', 'Toliara',
'Toliara', '', 'U', 'state', 1),
(2333, 'state_Balaka_2333', 'Balaka',
'Balaka', '', 'BA', 'state', 1),
(2334, 'state_Blantyre_2334', 'Blantyre',
'Blantyre', '', 'BL', 'state', 1),
(2336, 'state_Chikwawa_2336', 'Chikwawa',
'Chikwawa', '', 'CK', 'state', 1),
(2337, 'state_Chiradzulu_2337', 'Chiradzulu',
'Chiradzulu', '', 'CR', 'state',
1),
(2338, 'state_Chitipa_2338', 'Chitipa',
'Chitipa', '', 'CT', 'state', 1),
(2339, 'state_Dedza_2339', 'Dedza', 'Dedza',
'', 'DE', 'state', 1),
(2340, 'state_Dowa_2340', 'Dowa', 'Dowa',
'', 'DO', 'state', 1),
(2341, 'state_Karonga_2341', 'Karonga',
'Karonga', '', 'KR', 'state', 1),
(2342, 'state_Kasungu_2342', 'Kasungu',
'Kasungu', '', 'KS', 'state', 1),
(2343, 'state_Likoma_Island_2343', 'Likoma Island',
'Likoma Island', '', 'LK', 'state',
1),
(2344, 'state_Lilongwe_2344', 'Lilongwe',
'Lilongwe', '', 'LI', 'state', 1),
(2345, 'state_Machinga_2345', 'Machinga',
'Machinga', '', 'MH', 'state', 1),
(2346, 'state_Mangochi_2346', 'Mangochi',
'Mangochi', '', 'MG', 'state', 1),
(2347, 'state_Mchinji_2347', 'Mchinji',
'Mchinji', '', 'MC', 'state', 1),
(2348, 'state_Mulanje_2348', 'Mulanje',
'Mulanje', '', 'MU', 'state', 1),
(2349, 'state_Mwanza_2349', 'Mwanza',
'Mwanza', '', 'MW', 'state', 1),
(2350, 'state_Mzimba_2350', 'Mzimba',
'Mzimba', '', 'MZ', 'state', 1),
(2351, 'state_Northern_2351', 'Northern',
'Northern', '', 'N', 'state', 1),
(2352, 'state_Nkhata_2352', 'Nkhata',
'Nkhata', '', 'NB', 'state', 1),
(2353, 'state_Nkhotakota_2353', 'Nkhotakota',
'Nkhotakota', '', 'NK', 'state',
1),
(2354, 'state_Nsanje_2354', 'Nsanje',
'Nsanje', '', 'NS', 'state', 1),
(2355, 'state_Ntcheu_2355', 'Ntcheu',
'Ntcheu', '', 'NU', 'state', 1),
(2356, 'state_Ntchisi_2356', 'Ntchisi',
'Ntchisi', '', 'NI', 'state', 1),
(2357, 'state_Phalombe_2357', 'Phalombe',
'Phalombe', '', 'PH', 'state', 1),
(2358, 'state_Rumphi_2358', 'Rumphi',
'Rumphi', '', 'RU', 'state', 1),
(2359, 'state_Southern_2359', 'Southern',
'Southern', '', 'S', 'state', 1),
(2360, 'state_Salima_2360', 'Salima',
'Salima', '', 'SA', 'state', 1),
(2361, 'state_Thyolo_2361', 'Thyolo',
'Thyolo', '', 'TH', 'state', 1),
(2362, 'state_Zomba_2362', 'Zomba', 'Zomba',
'', 'ZO', 'state', 1),
(2363, 'state_Johor_Darul_Takzim_2363', 'Johor Darul
Takzim', 'Johor Darul Takzim', '', '01',
'state', 1),
(2364, 'state_Kedah_Darul_Aman_2364', 'Kedah Darul
Aman', 'Kedah Darul Aman', '', '02',
'state', 1),
(2365, 'state_Kelantan_Darul_Naim_2365', 'Kelantan Darul
Naim', 'Kelantan Darul Naim', '', '03',
'state', 1),
(2366, 'state_Melaka_Negeri_Bersejarah_2366', 'Melaka Negeri
Bersejarah', 'Melaka Negeri Bersejarah', '',
'04', 'state', 1),
(2367, 'state_Negeri_Sembilan_Darul_Khusus_2367', 'Negeri
Sembilan Darul Khusus', 'Negeri Sembilan Darul Khusus',
'', '05', 'state', 1),
(2368, 'state_Pahang_Darul_Makmur_2368', 'Pahang Darul
Makmur', 'Pahang Darul Makmur', '',
'06', 'state', 1),
(2369, 'state_Pulau_Pinang_2369', 'Pulau Pinang',
'Pulau Pinang', '', '07', 'state',
1),
(2370, 'state_Perak_Darul_Ridzuan_2370', 'Perak Darul
Ridzuan', 'Perak Darul Ridzuan', '',
'08', 'state', 1),
(2371, 'state_Perlis_Indera_Kayangan_2371', 'Perlis Indera
Kayangan', 'Perlis Indera Kayangan', '',
'09', 'state', 1),
(2372, 'state_Selangor_Darul_Ehsan_2372', 'Selangor Darul
Ehsan', 'Selangor Darul Ehsan', '',
'10', 'state', 1),
(2373, 'state_Terengganu_Darul_Iman_2373', 'Terengganu Darul
Iman', 'Terengganu Darul Iman', '',
'11', 'state', 1),
(2374, 'state_Sabah_Negeri_Di_Bawah_Bayu_2374', 'Sabah
Negeri Di Bawah Bayu', 'Sabah Negeri Di Bawah Bayu',
'', '12', 'state', 1),
(2375, 'state_Sarawak_Bumi_Kenyalang_2375', 'Sarawak Bumi
Kenyalang', 'Sarawak Bumi Kenyalang', '',
'13', 'state', 1),
(2376, 'state_Wilayah_Persekutuan_Kuala_Lumpur_2376',
'Wilayah Persekutuan Kuala Lumpur', 'Wilayah Persekutuan
Kuala Lumpur', '', '14', 'state', 1),
(2377, 'state_Wilayah_Persekutuan_Labuan_2377', 'Wilayah
Persekutuan Labuan', 'Wilayah Persekutuan Labuan',
'', '15', 'state', 1),
(2378, 'state_Wilayah_Persekutuan_Putrajaya_2378', 'Wilayah
Persekutuan Putrajaya', 'Wilayah Persekutuan Putrajaya',
'', '16', 'state', 1),
(2379, 'state_Thiladhunmathi_Uthuru_2379', 'Thiladhunmathi
Uthuru', 'Thiladhunmathi Uthuru', '',
'THU', 'state', 1),
(2380, 'state_Thiladhunmathi_Dhekunu_2380', 'Thiladhunmathi
Dhekunu', 'Thiladhunmathi Dhekunu', '',
'THD', 'state', 1),
(2381, 'state_Miladhunmadulu_Uthuru_2381', 'Miladhunmadulu
Uthuru', 'Miladhunmadulu Uthuru', '',
'MLU', 'state', 1),
(2382, 'state_Miladhunmadulu_Dhekunu_2382', 'Miladhunmadulu
Dhekunu', 'Miladhunmadulu Dhekunu', '',
'MLD', 'state', 1),
(2383, 'state_Maalhosmadulu_Uthuru_2383', 'Maalhosmadulu
Uthuru', 'Maalhosmadulu Uthuru', '',
'MAU', 'state', 1),
(2384, 'state_Maalhosmadulu_Dhekunu_2384', 'Maalhosmadulu
Dhekunu', 'Maalhosmadulu Dhekunu', '',
'MAD', 'state', 1),
(2385, 'state_Faadhippolhu_2385', 'Faadhippolhu',
'Faadhippolhu', '', 'FAA', 'state',
1),
(2386, 'state_Male_Atoll_2386', 'Male Atoll',
'Male Atoll', '', 'MAA', 'state',
1),
(2387, 'state_Ari_Atoll_Uthuru_2387', 'Ari Atoll
Uthuru', 'Ari Atoll Uthuru', '', 'AAU',
'state', 1),
(2388, 'state_Ari_Atoll_Dheknu_2388', 'Ari Atoll
Dheknu', 'Ari Atoll Dheknu', '', 'AAD',
'state', 1),
(2389, 'state_Felidhe_Atoll_2389', 'Felidhe Atoll',
'Felidhe Atoll', '', 'FEA',
'state', 1),
(2390, 'state_Mulaku_Atoll_2390', 'Mulaku Atoll',
'Mulaku Atoll', '', 'MUA', 'state',
1),
(2391, 'state_Nilandhe_Atoll_Uthuru_2391', 'Nilandhe Atoll
Uthuru', 'Nilandhe Atoll Uthuru', '',
'NAU', 'state', 1),
(2392, 'state_Nilandhe_Atoll_Dhekunu_2392', 'Nilandhe Atoll
Dhekunu', 'Nilandhe Atoll Dhekunu', '',
'NAD', 'state', 1),
(2393, 'state_Kolhumadulu_2393', 'Kolhumadulu',
'Kolhumadulu', '', 'KLH', 'state',
1),
(2394, 'state_Hadhdhunmathi_2394', 'Hadhdhunmathi',
'Hadhdhunmathi', '', 'HDH',
'state', 1),
(2395, 'state_Huvadhu_Atoll_Uthuru_2395', 'Huvadhu Atoll
Uthuru', 'Huvadhu Atoll Uthuru', '',
'HAU', 'state', 1),
(2396, 'state_Huvadhu_Atoll_Dhekunu_2396', 'Huvadhu Atoll
Dhekunu', 'Huvadhu Atoll Dhekunu', '',
'HAD', 'state', 1),
(2397, 'state_Fua_Mulaku_2397', 'Fua Mulaku', 'Fua
Mulaku', '', 'FMU', 'state', 1),
(2398, 'state_Addu_2398', 'Addu', 'Addu',
'', 'ADD', 'state', 1),
(2399, 'state_Kayes_2399', 'Kayes', 'Kayes',
'', '1', 'state', 1),
(2400, 'state_Koulikoro_2400', 'Koulikoro',
'Koulikoro', '', '2', 'state', 1),
(2401, 'state_Sikasso_2401', 'Sikasso',
'Sikasso', '', '3', 'state', 1),
(2402, 'state_S__gou_2402', 'Ségou',
'Ségou', '', '4', 'state', 1),
(2403, 'state_Mopti_2403', 'Mopti', 'Mopti',
'', '5', 'state', 1),
(2404, 'state_Tombouctou_2404', 'Tombouctou',
'Tombouctou', '', '6', 'state',
1),
(2405, 'state_Gao_2405', 'Gao', 'Gao',
'', '7', 'state', 1),
(2406, 'state_Kidal_2406', 'Kidal', 'Kidal',
'', '8', 'state', 1),
(2407, 'state_Bamako_2407', 'Bamako',
'Bamako', '', 'BK0', 'state', 1),
(2408, 'state_malta_2408', '  ', '  ',
'', 'MLT', 'state', 1),
(2409, 'state_gozo_2409', 'Gozo', 'Gozo',
'', 'GZO', 'state', 1),
(2476, 'state_Ailuk_2476', 'Ailuk', 'Ailuk',
'', 'ALK', 'state', 1),
(2477, 'state_Ailinglapalap_2477', 'Ailinglapalap',
'Ailinglapalap', '', 'ALL',
'state', 1),
(2478, 'state_Arno_2478', 'Arno', 'Arno',
'', 'ARN', 'state', 1),
(2479, 'state_Aur_2479', 'Aur', 'Aur',
'', 'AUR', 'state', 1),
(2480, 'state_Ebon_2480', 'Ebon', 'Ebon',
'', 'EBO', 'state', 1),
(2481, 'state_Eniwetok_2481', 'Eniwetok',
'Eniwetok', '', 'ENI', 'state',
1),
(2482, 'state_Jabat_2482', 'Jabat', 'Jabat',
'', 'JAB', 'state', 1),
(2483, 'state_Jaluit_2483', 'Jaluit',
'Jaluit', '', 'JAL', 'state', 1),
(2484, 'state_Kili_2484', 'Kili', 'Kili',
'', 'KIL', 'state', 1),
(2485, 'state_Kwajalein_2485', 'Kwajalein',
'Kwajalein', '', 'KWA', 'state',
1),
(2486, 'state_Lae_2486', 'Lae', 'Lae',
'', 'LAE', 'state', 1),
(2487, 'state_Lib_2487', 'Lib', 'Lib',
'', 'LIB', 'state', 1),
(2488, 'state_Likiep_2488', 'Likiep',
'Likiep', '', 'LIK', 'state', 1),
(2489, 'state_Majuro_2489', 'Majuro',
'Majuro', '', 'MAJ', 'state', 1),
(2490, 'state_Maloelap_2490', 'Maloelap',
'Maloelap', '', 'MAL', 'state',
1),
(2491, 'state_Mejit_2491', 'Mejit', 'Mejit',
'', 'MEJ', 'state', 1),
(2492, 'state_Mili_2492', 'Mili', 'Mili',
'', 'MIL', 'state', 1),
(2493, 'state_Namorik_2493', 'Namorik',
'Namorik', '', 'NMK', 'state', 1),
(2494, 'state_Namu_2494', 'Namu', 'Namu',
'', 'NMU', 'state', 1),
(2495, 'state_Rongelap_2495', 'Rongelap',
'Rongelap', '', 'RON', 'state',
1),
(2496, 'state_Ujae_2496', 'Ujae', 'Ujae',
'', 'UJA', 'state', 1),
(2497, 'state_Ujelang_2497', 'Ujelang',
'Ujelang', '', 'UJL', 'state', 1),
(2498, 'state_Utirik_2498', 'Utirik',
'Utirik', '', 'UTI', 'state', 1),
(2499, 'state_Wotje_2499', 'Wotje', 'Wotje',
'', 'WTJ', 'state', 1);";
		$this->db->setQuery($query);
		$this->db->query();

		$query="
INSERT IGNORE INTO `#__hikashop_zone` (`zone_id`, `zone_namekey`,
`zone_name`, `zone_name_english`, `zone_code_2`, `zone_code_3`,
`zone_type`, `zone_published`) VALUES
(2500, 'state_Wotho_2500', 'Wotho', 'Wotho',
'', 'WTN', 'state', 1),
(2501, 'state____________________________________2501',
'ولاية الحوض الشرقي', 'ولاية الحوض
الشرقي', '', '01', 'state', 1),
(2502, 'state____________________________________2502',
'ولاية الحوض الغربي', 'ولاية الحوض
الغربي', '', '02', 'state', 1),
(2503, 'state___________________________2503', 'ولاية
العصابة', 'ولاية العصابة', '',
'03', 'state', 1),
(2504, 'state_______________________2504', 'ولاية
كركول', 'ولاية كركول', '',
'04', 'state', 1),
(2505, 'state_____________________________2505', 'ولاية
البراكنة', 'ولاية البراكنة',
'', '05', 'state', 1),
(2506, 'state_____________________________2506', 'ولاية
الترارزة', 'ولاية الترارزة',
'', '06', 'state', 1),
(2507, 'state_______________________2507', 'ولاية
آدرار', 'ولاية آدرار', '',
'07', 'state', 1),
(2508, 'state______________________________________2508',
'ولاية داخلت نواذيبو', 'ولاية
داخلت نواذيبو', '', '08',
'state', 1),
(2509, 'state_______________________2509', 'ولاية
تكانت', 'ولاية تكانت', '',
'09', 'state', 1),
(2510, 'state______________________________2510',
'ولاية كيدي ماغة', 'ولاية كيدي
ماغة', '', '10', 'state', 1),
(2511, 'state______________________________2511',
'ولاية تيرس زمور', 'ولاية تيرس
زمور', '', '11', 'state', 1),
(2512, 'state___________________________2512', 'ولاية
إينشيري', 'ولاية إينشيري', '',
'12', 'state', 1),
(2513, 'state________________2513', 'نواكشوط',
'نواكشوط', '', 'NKC',
'state', 1),
(2514, 'state_Agalega_Islands_2514', 'Agalega Islands',
'Agalega Islands', '', 'AG',
'state', 1),
(2515, 'state_Black_River_2515', 'Black River',
'Black River', '', 'BL', 'state',
1),
(2516, 'state_Beau_Bassin_Rose_Hill_2516', 'Beau Bassin-Rose
Hill', 'Beau Bassin-Rose Hill', '',
'BR', 'state', 1),
(2517, 'state_Cargados_Carajos_Shoals_2517', 'Cargados
Carajos Shoals', 'Cargados Carajos Shoals', '',
'CC', 'state', 1),
(2518, 'state_Curepipe_2518', 'Curepipe',
'Curepipe', '', 'CU', 'state', 1),
(2519, 'state_Flacq_2519', 'Flacq', 'Flacq',
'', 'FL', 'state', 1),
(2520, 'state_Grand_Port_2520', 'Grand Port',
'Grand Port', '', 'GP', 'state',
1),
(2521, 'state_Moka_2521', 'Moka', 'Moka',
'', 'MO', 'state', 1),
(2522, 'state_Pamplemousses_2522', 'Pamplemousses',
'Pamplemousses', '', 'PA', 'state',
1),
(2523, 'state_Port_Louis_2523', 'Port Louis',
'Port Louis', '', 'PL', 'state',
1),
(2524, 'state_Port_Louis_City_2524', 'Port Louis City',
'Port Louis City', '', 'PU',
'state', 1),
(2525, 'state_Plaines_Wilhems_2525', 'Plaines Wilhems',
'Plaines Wilhems', '', 'PW',
'state', 1),
(2526, 'state_Quatre_Bornes_2526', 'Quatre Bornes',
'Quatre Bornes', '', 'QB', 'state',
1),
(2527, 'state_Rodrigues_2527', 'Rodrigues',
'Rodrigues', '', 'RO', 'state',
1),
(2528, 'state_Riviere_du_Rempart_2528', 'Riviere du
Rempart', 'Riviere du Rempart', '',
'RR', 'state', 1),
(2529, 'state_Savanne_2529', 'Savanne',
'Savanne', '', 'SA', 'state', 1),
(2530, 'state_Vacoas_Phoenix_2530', 'Vacoas-Phoenix',
'Vacoas-Phoenix', '', 'VP',
'state', 1),
(2531, 'state_Aguascalientes_2531', 'Aguascalientes',
'Aguascalientes', '', 'AGU',
'state', 1),
(2532, 'state_Baja_California_2532', 'Baja California',
'Baja California', '', 'BCN',
'state', 1),
(2533, 'state_Baja_California_Sur_2533', 'Baja California
Sur', 'Baja California Sur', '', 'BCS',
'state', 1),
(2534, 'state_Campeche_2534', 'Campeche',
'Campeche', '', 'CAM', 'state',
1),
(2535, 'state_Chihuahua_2535', 'Chihuahua',
'Chihuahua', '', 'CHH', 'state',
1),
(2536, 'state_Chiapas_2536', 'Chiapas',
'Chiapas', '', 'CHP', 'state', 1),
(2537, 'state_Coahuila_2537', 'Coahuila',
'Coahuila', '', 'COA', 'state',
1),
(2538, 'state_Colima_2538', 'Colima',
'Colima', '', 'COL', 'state', 1),
(2539, 'state_Distrito_Federal_2539', 'Distrito
Federal', 'Distrito Federal', '', 'DIF',
'state', 1),
(2540, 'state_Durango_2540', 'Durango',
'Durango', '', 'DUR', 'state', 1),
(2541, 'state_Guerrero_2541', 'Guerrero',
'Guerrero', '', 'GRO', 'state',
1),
(2542, 'state_Guanajuato_2542', 'Guanajuato',
'Guanajuato', '', 'GUA', 'state',
1),
(2543, 'state_Hidalgo_2543', 'Hidalgo',
'Hidalgo', '', 'HID', 'state', 1),
(2544, 'state_Jalisco_2544', 'Jalisco',
'Jalisco', '', 'JAL', 'state', 1),
(2545, 'state_Mexico_2545', 'Estado de México',
'Estado de México', '', 'MEX',
'state', 1),
(2546, 'state_Michoac__n_2546', 'Michoacán',
'Michoacán', '', 'MIC', 'state',
1),
(2547, 'state_Morelos_2547', 'Morelos',
'Morelos', '', 'MOR', 'state', 1),
(2548, 'state_Nayarit_2548', 'Nayarit',
'Nayarit', '', 'NAY', 'state', 1),
(2549, 'state_Nuevo_Le__n_2549', 'Nuevo León',
'Nuevo León', '', 'NLE', 'state',
1),
(2550, 'state_Oaxaca_2550', 'Oaxaca',
'Oaxaca', '', 'OAX', 'state', 1),
(2551, 'state_Puebla_2551', 'Puebla',
'Puebla', '', 'PUE', 'state', 1),
(2552, 'state_Quer__taro_2552', 'Querétaro',
'Querétaro', '', 'QUE', 'state',
1),
(2553, 'state_Quintana_Roo_2553', 'Quintana Roo',
'Quintana Roo', '', 'ROO', 'state',
1),
(2554, 'state_Sinaloa_2554', 'Sinaloa',
'Sinaloa', '', 'SIN', 'state', 1),
(2555, 'state_San_Luis_Potos___2555', 'San Luis
Potosí', 'San Luis Potosí', '', 'SLP',
'state', 1),
(2556, 'state_Sonora_2556', 'Sonora',
'Sonora', '', 'SON', 'state', 1),
(2557, 'state_Tabasco_2557', 'Tabasco',
'Tabasco', '', 'TAB', 'state', 1),
(2558, 'state_Tamaulipas_2558', 'Tamaulipas',
'Tamaulipas', '', 'TAM', 'state',
1),
(2559, 'state_Tlaxcala_2559', 'Tlaxcala',
'Tlaxcala', '', 'TLA', 'state',
1),
(2560, 'state_Veracruz_2560', 'Veracruz',
'Veracruz', '', 'VER', 'state',
1),
(2561, 'state_Yucatan_2561', 'Yucatan',
'Yucatan', '', 'YUC', 'state', 1),
(2562, 'state_Zacatecas_2562', 'Zacatecas',
'Zacatecas', '', 'ZAC', 'state',
1),
(2563, 'state_Kosrae_2563', 'Kosrae',
'Kosrae', '', 'KSA', 'state', 1),
(2564, 'state_Pohnpei_2564', 'Pohnpei',
'Pohnpei', '', 'PNI', 'state', 1),
(2565, 'state_Chuuk_2565', 'Chuuk', 'Chuuk',
'', 'TRK', 'state', 1),
(2566, 'state_Yap_2566', 'Yap', 'Yap',
'', 'YAP', 'state', 1),
(2567, 'state_B__l__i_2567', 'Bălţi',
'Bălţi', '', 'BA', 'state', 1),
(2568, 'state_Cahul_2568', 'Cahul', 'Cahul',
'', 'CA', 'state', 1),
(2569, 'state_Chi__in__u_2569', 'Chişinău',
'Chişinău', '', 'CU', 'state',
1),
(2570, 'state_Edine___2570', 'Edineţ',
'Edineţ', '', 'ED', 'state', 1),
(2571, 'state_G__g__uzia_2571', 'Găgăuzia',
'Găgăuzia', '', 'GA', 'state',
1),
(2572, 'state_L__pu__na_2572', 'Lăpuşna',
'Lăpuşna', '', 'LA', 'state',
1),
(2573, 'state_Orhei_2573', 'Orhei', 'Orhei',
'', 'OR', 'state', 1),
(2574, 'state_St__nga_Nistrului_2574', 'Stânga
Nistrului', 'Stânga Nistrului', '',
'SN', 'state', 1),
(2575, 'state_Soroca_2575', 'Soroca',
'Soroca', '', 'SO', 'state', 1),
(2576, 'state_Tighina_2576', 'Tighina',
'Tighina', '', 'TI', 'state', 1),
(2577, 'state_Ungheni_2577', 'Ungheni',
'Ungheni', '', 'UN', 'state', 1),
(2578, 'state_Monte_Carlo_2578', 'Monte Carlo',
'Monte Carlo', '', 'MC', 'state',
1),
(2579, 'state_La_Rousse_2579', 'La Rousse', 'La
Rousse', '', 'LR', 'state', 1),
(2580, 'state_Larvotto_2580', 'Larvotto',
'Larvotto', '', 'LA', 'state', 1),
(2581, 'state_Monaco_Ville_2581', 'Monaco Ville',
'Monaco Ville', '', 'MV', 'state',
1),
(2582, 'state_Saint_Michel_2582', 'Saint Michel',
'Saint Michel', '', 'SM', 'state',
1),
(2583, 'state_Condamine_2583', 'Condamine',
'Condamine', '', 'CO', 'state',
1),
(2584, 'state_La_Colle_2584', 'La Colle', 'La
Colle', '', 'LC', 'state', 1),
(2585, 'state_Les_R__voires_2585', 'Les Révoires',
'Les Révoires', '', 'RE', 'state',
1),
(2586, 'state_Moneghetti_2586', 'Moneghetti',
'Moneghetti', '', 'MO', 'state',
1),
(2587, 'state_Fontvieille_2587', 'Fontvieille',
'Fontvieille', '', 'FV', 'state',
1),
(2588, 'state________________________2588',
'Улаанбаатар', 'Улаанбаатар',
'', '1', 'state', 1),
(2589, 'state_______________________2589', 'Орхон
аймаг', 'Орхон аймаг', '',
'035', 'state', 1),
(2590, 'state________________________________2590',
'Дархан-Уул аймаг', 'Дархан-Уул
аймаг', '', '037', 'state', 1),
(2591, 'state_________________________2591', 'Хэнтий
аймаг', 'Хэнтий аймаг', '',
'039', 'state', 1),
(2592, 'state___________________________2592',
'Хөвсгөл аймаг', 'Хөвсгөл
аймаг', '', '041', 'state', 1),
(2593, 'state_____________________2593', 'Ховд
аймаг', 'Ховд аймаг', '',
'043', 'state', 1),
(2594, 'state___________________2594', 'Увс
аймаг', 'Увс аймаг', '',
'046', 'state', 1),
(2595, 'state___________________2595', 'Төв
аймаг', 'Төв аймаг', '',
'047', 'state', 1),
(2596, 'state___________________________2596',
'Сэлэнгэ аймаг', 'Сэлэнгэ
аймаг', '', '049', 'state', 1),
(2597, 'state_______________________________2597',
'Сүхбаатар аймаг', 'Сүхбаатар
аймаг', '', '051', 'state', 1),
(2598, 'state_____________________________2598',
'Өмнөговь аймаг', 'Өмнөговь
аймаг', '', '053', 'state', 1),
(2599, 'state_________________________________2599',
'Өвөрхангай аймаг', 'Өвөрхангай
аймаг', '', '055', 'state', 1),
(2600, 'state_________________________2600', 'Завхан
аймаг', 'Завхан аймаг', '',
'057', 'state', 1),
(2601, 'state_____________________________2601',
'Дундговь аймаг', 'Дундговь
аймаг', '', '059', 'state', 1),
(2602, 'state_________________________2602', 'Дорнод
аймаг', 'Дорнод аймаг', '',
'061', 'state', 1),
(2603, 'state_______________________________2603',
'Дорноговь аймаг', 'Дорноговь
аймаг', '', '063', 'state', 1),
(2604, 'state_________________________________2604',
'Говьсүмбэр аймаг', 'Говьсүмбэр
аймаг', '', '064', 'state', 1),
(2605, 'state________________________________2605',
'Говь-Алтай аймаг', 'Говь-Алтай
аймаг', '', '065', 'state', 1),
(2606, 'state_________________________2606', 'Булган
аймаг', 'Булган аймаг', '',
'067', 'state', 1),
(2607, 'state_________________________________2607',
'Баянхонгор аймаг', 'Баянхонгор
аймаг', '', '069', 'state', 1),
(2608, 'state________________________________2608',
'Баян Өлгий аймаг', 'Баян Өлгий
аймаг', '', '071', 'state', 1),
(2609, 'state_____________________________2609',
'Архангай аймаг', 'Архангай
аймаг', '', '073', 'state', 1),
(2610, 'state_Saint_Anthony_2610', 'Saint Anthony',
'Saint Anthony', '', 'A', 'state',
1),
(2611, 'state_Saint_Georges_2611', 'Saint Georges',
'Saint Georges', '', 'G', 'state',
1),
(2612, 'state_Saint_Peter_2612', 'Saint Peter',
'Saint Peter', '', 'P', 'state',
1),
(2613, 'state_Niassa_2613', 'Niassa',
'Niassa', '', 'A', 'state', 1),
(2614, 'state_Manica_2614', 'Manica',
'Manica', '', 'B', 'state', 1),
(2615, 'state_Gaza_2615', 'Gaza', 'Gaza',
'', 'G', 'state', 1),
(2616, 'state_Inhambane_2616', 'Inhambane',
'Inhambane', '', 'I', 'state', 1),
(2617, 'state_Maputo_2617', 'Maputo',
'Maputo', '', 'L', 'state', 1),
(2618, 'state_Maputo_cidade_2618', 'Maputo cidade',
'Maputo cidade', '', 'MPM',
'state', 1),
(2619, 'state_Nampula_2619', 'Nampula',
'Nampula', '', 'N', 'state', 1),
(2620, 'state_Cabo_Delgado_2620', 'Cabo Delgado',
'Cabo Delgado', '', 'P', 'state',
1),
(2621, 'state_Zamb__zia_2621', 'Zambézia',
'Zambézia', '', 'Q', 'state', 1),
(2622, 'state_Sofala_2622', 'Sofala',
'Sofala', '', 'S', 'state', 1),
(2623, 'state_Tete_2623', 'Tete', 'Tete',
'', 'T', 'state', 1),
(2624, 'state_________________________________________2624',
'ဧရာ၀တီတိုင္‌း',
'ဧရာ၀တီတိုင္‌း', '',
'AY', 'state', 1),
(2625, 'state______________________________________2625',
'ပဲခူးတုိင္‌း',
'ပဲခူးတုိင္‌း', '',
'BG', 'state', 1),
(2626, 'state_________________________________________2626',
'မကေ္ဝးတိုင္‌း',
'မကေ္ဝးတိုင္‌း', '',
'MG', 'state', 1),
(2627, 'state____________________________________________2627',
'မန္တလေးတုိင္‌း',
'မန္တလေးတုိင္‌း', '',
'MD', 'state', 1),
(2628,
'state___________________________________________________________2628',
'စစ္‌ကုိင္‌း‌တုိင္‌း',
'စစ္‌ကုိင္‌း‌တုိင္‌း',
'', 'SG', 'state', 1),
(2629,
'state_______________________________________________2629',
'တနင္သာရိတုိင္‌း',
'တနင္သာရိတုိင္‌း', '',
'TN', 'state', 1),
(2630,
'state__________________________________________________2630',
'ရန္‌ကုန္‌တုိင္‌း',
'ရန္‌ကုန္‌တုိင္‌း', '',
'YG', 'state', 1),
(2631,
'state_____________________________________________________2631',
'ခ္ယင္‌းပ္ရည္‌နယ္‌',
'ခ္ယင္‌းပ္ရည္‌နယ္‌',
'', 'CH', 'state', 1),
(2632,
'state_____________________________________________________2632',
'ကခ္ယင္‌ပ္ရည္‌နယ္‌',
'ကခ္ယင္‌ပ္ရည္‌နယ္‌',
'', 'KC', 'state', 1),
(2633,
'state_______________________________________________2633',
'ကယား‌ပ္ရည္‌နယ္‌',
'ကယား‌ပ္ရည္‌နယ္‌', '',
'KH', 'state', 1),
(2634,
'state__________________________________________________2634',
'ကရင္‌‌ပ္ရည္‌နယ္‌',
'ကရင္‌‌ပ္ရည္‌နယ္‌', '',
'KN', 'state', 1),
(2635,
'state__________________________________________________2635',
'မ္ဝန္‌ပ္ရည္‌နယ္‌',
'မ္ဝန္‌ပ္ရည္‌နယ္‌', '',
'MN', 'state', 1),
(2636,
'state_____________________________________________________2636',
'ရခုိင္‌ပ္ရည္‌နယ္‌',
'ရခုိင္‌ပ္ရည္‌နယ္‌',
'', 'RK', 'state', 1),
(2637,
'state__________________________________________________2637',
'ရုမ္‌းပ္ရည္‌နယ္‌',
'ရုမ္‌းပ္ရည္‌နယ္‌', '',
'SH', 'state', 1),
(2638, 'state_Caprivi_2638', 'Caprivi',
'Caprivi', '', 'CA', 'state', 1),
(2639, 'state_Erongo_2639', 'Erongo',
'Erongo', '', 'ER', 'state', 1),
(2640, 'state_Hardap_2640', 'Hardap',
'Hardap', '', 'HA', 'state', 1),
(2641, 'state_Karas_2641', 'Karas', 'Karas',
'', 'KA', 'state', 1),
(2642, 'state_Khomas_2642', 'Khomas',
'Khomas', '', 'KH', 'state', 1),
(2643, 'state_Kunene_2643', 'Kunene',
'Kunene', '', 'KU', 'state', 1),
(2644, 'state_Otjozondjupa_2644', 'Otjozondjupa',
'Otjozondjupa', '', 'OD', 'state',
1),
(2645, 'state_Omaheke_2645', 'Omaheke',
'Omaheke', '', 'OH', 'state', 1),
(2646, 'state_Okavango_2646', 'Okavango',
'Okavango', '', 'OK', 'state', 1),
(2647, 'state_Oshana_2647', 'Oshana',
'Oshana', '', 'ON', 'state', 1),
(2648, 'state_Omusati_2648', 'Omusati',
'Omusati', '', 'OS', 'state', 1),
(2649, 'state_Oshikoto_2649', 'Oshikoto',
'Oshikoto', '', 'OT', 'state', 1),
(2650, 'state_Ohangwena_2650', 'Ohangwena',
'Ohangwena', '', 'OW', 'state',
1),
(2651, 'state_Aiwo_2651', 'Aiwo', 'Aiwo',
'', 'AO', 'state', 1),
(2652, 'state_Anabar_2652', 'Anabar',
'Anabar', '', 'AA', 'state', 1),
(2653, 'state_Anetan_2653', 'Anetan',
'Anetan', '', 'AT', 'state', 1),
(2654, 'state_Anibare_2654', 'Anibare',
'Anibare', '', 'AI', 'state', 1),
(2655, 'state_Baiti_2655', 'Baiti', 'Baiti',
'', 'BA', 'state', 1),
(2656, 'state_Boe_2656', 'Boe', 'Boe',
'', 'BO', 'state', 1),
(2657, 'state_Buada_2657', 'Buada', 'Buada',
'', 'BU', 'state', 1),
(2658, 'state_Denigomodu_2658', 'Denigomodu',
'Denigomodu', '', 'DE', 'state',
1),
(2659, 'state_Ewa_2659', 'Ewa', 'Ewa',
'', 'EW', 'state', 1),
(2660, 'state_Ijuw_2660', 'Ijuw', 'Ijuw',
'', 'IJ', 'state', 1),
(2661, 'state_Meneng_2661', 'Meneng',
'Meneng', '', 'ME', 'state', 1),
(2662, 'state_Nibok_2662', 'Nibok', 'Nibok',
'', 'NI', 'state', 1),
(2663, 'state_Uaboe_2663', 'Uaboe', 'Uaboe',
'', 'UA', 'state', 1),
(2664, 'state_Yaren_2664', 'Yaren', 'Yaren',
'', 'YA', 'state', 1),
(2665, 'state_Bagmati_2665', 'Bagmati',
'Bagmati', '', 'BA', 'state', 1),
(2666, 'state_Bheri_2666', 'Bheri', 'Bheri',
'', 'BH', 'state', 1),
(2667, 'state_Dhawalagiri_2667', 'Dhawalagiri',
'Dhawalagiri', '', 'DH', 'state',
1),
(2668, 'state_Gandaki_2668', 'Gandaki',
'Gandaki', '', 'GA', 'state', 1),
(2669, 'state_Janakpur_2669', 'Janakpur',
'Janakpur', '', 'JA', 'state', 1),
(2670, 'state_Karnali_2670', 'Karnali',
'Karnali', '', 'KA', 'state', 1),
(2671, 'state_Kosi_2671', 'Kosi', 'Kosi',
'', 'KO', 'state', 1),
(2672, 'state_Lumbini_2672', 'Lumbini',
'Lumbini', '', 'LU', 'state', 1),
(2673, 'state_Mahakali_2673', 'Mahakali',
'Mahakali', '', 'MA', 'state', 1),
(2674, 'state_Mechi_2674', 'Mechi', 'Mechi',
'', 'ME', 'state', 1),
(2675, 'state_Narayani_2675', 'Narayani',
'Narayani', '', 'NA', 'state', 1),
(2676, 'state_Rapti_2676', 'Rapti', 'Rapti',
'', 'RA', 'state', 1),
(2677, 'state_Sagarmatha_2677', 'Sagarmatha',
'Sagarmatha', '', 'SA', 'state',
1),
(2678, 'state_Seti_2678', 'Seti', 'Seti',
'', 'SE', 'state', 1),
(2679, 'state_Drenthe_2679', 'Drenthe',
'Drenthe', '', 'DR', 'state', 1),
(2680, 'state_Flevoland_2680', 'Flevoland',
'Flevoland', '', 'FL', 'state',
1),
(2681, 'state_Friesland_2681', 'Friesland',
'Friesland', '', 'FR', 'state',
1),
(2682, 'state_Gelderland_2682', 'Gelderland',
'Gelderland', '', 'GE', 'state',
1),
(2683, 'state_Groningen_2683', 'Groningen',
'Groningen', '', 'GR', 'state',
1),
(2684, 'state_Limburg_2684', 'Limburg',
'Limburg', '', 'LI', 'state', 1),
(2685, 'state_Noord_Brabant_2685', 'Noord-Brabant',
'Noord-Brabant', '', 'NB', 'state',
1),
(2686, 'state_Noord_Holland_2686', 'Noord-Holland',
'Noord-Holland', '', 'NH', 'state',
1),
(2687, 'state_Overijssel_2687', 'Overijssel',
'Overijssel', '', 'OV', 'state',
1),
(2688, 'state_Utrecht_2688', 'Utrecht',
'Utrecht', '', 'UT', 'state', 1),
(2689, 'state_Zeeland_2689', 'Zeeland',
'Zeeland', '', 'ZE', 'state', 1),
(2690, 'state_Zuid_Holland_2690', 'Zuid-Holland',
'Zuid-Holland', '', 'ZH', 'state',
1),
(2691, 'state_Province_des___les_2691', 'Province des
Îles', 'Province des Îles', '', 'L',
'state', 1),
(2692, 'state_Province_Nord_2692', 'Province Nord',
'Province Nord', '', 'N', 'state',
1),
(2693, 'state_Province_Sud_2693', 'Province Sud',
'Province Sud', '', 'S', 'state',
1),
(2694, 'state_Auckland_2694', 'Auckland',
'Auckland', '', 'AUK', 'state',
1),
(2695, 'state_Bay_of_Plenty_2695', 'Bay of Plenty',
'Bay of Plenty', '', 'BOP',
'state', 1),
(2696, 'state_Canterbury_2696', 'Canterbury',
'Canterbury', '', 'CAN', 'state',
1),
(2697, 'state_Gisborne_2697', 'Gisborne',
'Gisborne', '', 'GIS', 'state',
1),
(2698, 'state_Hawke_s_Bay_2698', 'Hawke''s
Bay', 'Hawke''s Bay', '',
'HKB', 'state', 1),
(2699, 'state_Marlborough_2699', 'Marlborough',
'Marlborough', '', 'MBH', 'state',
1),
(2700, 'state_Manawatu_Wanganui_2700',
'Manawatu-Wanganui', 'Manawatu-Wanganui', '',
'MWT', 'state', 1),
(2701, 'state_Nelson_2701', 'Nelson',
'Nelson', '', 'NSN', 'state', 1),
(2702, 'state_Northland_2702', 'Northland',
'Northland', '', 'NTL', 'state',
1),
(2703, 'state_Otago_2703', 'Otago', 'Otago',
'', 'OTA', 'state', 1),
(2704, 'state_Southland_2704', 'Southland',
'Southland', '', 'STL', 'state',
1),
(2705, 'state_Tasman_2705', 'Tasman',
'Tasman', '', 'TAS', 'state', 1),
(2706, 'state_Taranaki_2706', 'Taranaki',
'Taranaki', '', 'TKI', 'state',
1),
(2707, 'state_Wellington_2707', 'Wellington',
'Wellington', '', 'WGN', 'state',
1),
(2708, 'state_Waikato_2708', 'Waikato',
'Waikato', '', 'WKO', 'state', 1),
(2709, 'state_West_Coast_2709', 'West Coast',
'West Coast', '', 'WTC', 'state',
1),
(2710, 'state_Atl__ntico_Norte_2710', 'Atlántico
Norte', 'Atlántico Norte', '', 'AN',
'state', 1),
(2711, 'state_Atl__ntico_Sur_2711', 'Atlántico Sur',
'Atlántico Sur', '', 'AS',
'state', 1),
(2712, 'state_Boaco_2712', 'Boaco', 'Boaco',
'', 'BO', 'state', 1),
(2713, 'state_Carazo_2713', 'Carazo',
'Carazo', '', 'CA', 'state', 1),
(2714, 'state_Chinandega_2714', 'Chinandega',
'Chinandega', '', 'CI', 'state',
1),
(2715, 'state_Chontales_2715', 'Chontales',
'Chontales', '', 'CO', 'state',
1),
(2716, 'state_Estel___2716', 'Estelí',
'Estelí', '', 'ES', 'state', 1),
(2717, 'state_Granada_2717', 'Granada',
'Granada', '', 'GR', 'state', 1),
(2718, 'state_Jinotega_2718', 'Jinotega',
'Jinotega', '', 'JI', 'state', 1),
(2719, 'state_Le__n_2719', 'León', 'León',
'', 'LE', 'state', 1),
(2720, 'state_Madriz_2720', 'Madriz',
'Madriz', '', 'MD', 'state', 1),
(2721, 'state_Managua_2721', 'Managua',
'Managua', '', 'MN', 'state', 1),
(2722, 'state_Masaya_2722', 'Masaya',
'Masaya', '', 'MS', 'state', 1),
(2723, 'state_Matagalpa_2723', 'Matagalpa',
'Matagalpa', '', 'MT', 'state',
1),
(2724, 'state_Nueva_Segovia_2724', 'Nueva Segovia',
'Nueva Segovia', '', 'NS', 'state',
1),
(2725, 'state_Rivas_2725', 'Rivas', 'Rivas',
'', 'RI', 'state', 1),
(2726, 'state_R__o_San_Juan_2726', 'Río San Juan',
'Río San Juan', '', 'SJ', 'state',
1),
(2727, 'state_Agadez_2727', 'Agadez',
'Agadez', '', '1', 'state', 1),
(2728, 'state_Daffa_2728', 'Daffa', 'Daffa',
'', '2', 'state', 1),
(2729, 'state_Dosso_2729', 'Dosso', 'Dosso',
'', '3', 'state', 1),
(2730, 'state_Maradi_2730', 'Maradi',
'Maradi', '', '4', 'state', 1),
(2731, 'state_Tahoua_2731', 'Tahoua',
'Tahoua', '', '5', 'state', 1),
(2732, 'state_Tillab__ry_2732', 'Tillabéry',
'Tillabéry', '', '6', 'state',
1),
(2733, 'state_Zinder_2733', 'Zinder',
'Zinder', '', '7', 'state', 1),
(2734, 'state_Niamey_2734', 'Niamey',
'Niamey', '', '8', 'state', 1),
(2735, 'state_Abia_State_2735', 'Abia State',
'Abia State', '', 'AB', 'state',
1),
(2736, 'state_Adamawa_State_2736', 'Adamawa State',
'Adamawa State', '', 'AD', 'state',
1),
(2737, 'state_Akwa_Ibom_State_2737', 'Akwa Ibom State',
'Akwa Ibom State', '', 'AK',
'state', 1),
(2738, 'state_Anambra_State_2738', 'Anambra State',
'Anambra State', '', 'AN', 'state',
1),
(2739, 'state_Bauchi_State_2739', 'Bauchi State',
'Bauchi State', '', 'BA', 'state',
1),
(2740, 'state_Benue_State_2740', 'Benue State',
'Benue State', '', 'BE', 'state',
1),
(2741, 'state_Borno_State_2741', 'Borno State',
'Borno State', '', 'BO', 'state',
1),
(2742, 'state_Bayelsa_State_2742', 'Bayelsa State',
'Bayelsa State', '', 'BY', 'state',
1),
(2743, 'state_Cross_River_State_2743', 'Cross River
State', 'Cross River State', '', 'CR',
'state', 1),
(2744, 'state_Delta_State_2744', 'Delta State',
'Delta State', '', 'DE', 'state',
1),
(2745, 'state_Ebonyi_State_2745', 'Ebonyi State',
'Ebonyi State', '', 'EB', 'state',
1),
(2746, 'state_Edo_State_2746', 'Edo State', 'Edo
State', '', 'ED', 'state', 1),
(2747, 'state_Ekiti_State_2747', 'Ekiti State',
'Ekiti State', '', 'EK', 'state',
1),
(2748, 'state_Enugu_State_2748', 'Enugu State',
'Enugu State', '', 'EN', 'state',
1),
(2749, 'state_Gombe_State_2749', 'Gombe State',
'Gombe State', '', 'GO', 'state',
1),
(2750, 'state_Imo_State_2750', 'Imo State', 'Imo
State', '', 'IM', 'state', 1),
(2751, 'state_Jigawa_State_2751', 'Jigawa State',
'Jigawa State', '', 'JI', 'state',
1),
(2752, 'state_Kebbi_State_2752', 'Kebbi State',
'Kebbi State', '', 'KB', 'state',
1),
(2753, 'state_Kaduna_State_2753', 'Kaduna State',
'Kaduna State', '', 'KD', 'state',
1),
(2754, 'state_Kano_State_2754', 'Kano State',
'Kano State', '', 'KN', 'state',
1),
(2755, 'state_Kogi_State_2755', 'Kogi State',
'Kogi State', '', 'KO', 'state',
1),
(2756, 'state_Katsina_State_2756', 'Katsina State',
'Katsina State', '', 'KT', 'state',
1),
(2757, 'state_Kwara_State_2757', 'Kwara State',
'Kwara State', '', 'KW', 'state',
1),
(2758, 'state_Lagos_State_2758', 'Lagos State',
'Lagos State', '', 'LA', 'state',
1),
(2759, 'state_Nassarawa_State_2759', 'Nassarawa State',
'Nassarawa State', '', 'NA',
'state', 1),
(2760, 'state_Niger_State_2760', 'Niger State',
'Niger State', '', 'NI', 'state',
1),
(2761, 'state_Ogun_State_2761', 'Ogun State',
'Ogun State', '', 'OG', 'state',
1),
(2762, 'state_Ondo_State_2762', 'Ondo State',
'Ondo State', '', 'ON', 'state',
1),
(2763, 'state_Osun_State_2763', 'Osun State',
'Osun State', '', 'OS', 'state',
1),
(2764, 'state_Oyo_State_2764', 'Oyo State', 'Oyo
State', '', 'OY', 'state', 1),
(2765, 'state_Plateau_State_2765', 'Plateau State',
'Plateau State', '', 'PL', 'state',
1),
(2766, 'state_Rivers_State_2766', 'Rivers State',
'Rivers State', '', 'RI', 'state',
1),
(2767, 'state_Sokoto_State_2767', 'Sokoto State',
'Sokoto State', '', 'SO', 'state',
1),
(2768, 'state_Taraba_State_2768', 'Taraba State',
'Taraba State', '', 'TA', 'state',
1),
(2769, 'state_Zamfara_State_2769', 'Zamfara State',
'Zamfara State', '', 'ZA', 'state',
1),
(2770, 'state_Northern_Islands_2770', 'Northern
Islands', 'Northern Islands', '', 'N',
'state', 1),
(2771, 'state_Rota_2771', 'Rota', 'Rota',
'', 'R', 'state', 1),
(2772, 'state_Saipan_2772', 'Saipan',
'Saipan', '', 'S', 'state', 1),
(2773, 'state_Tinian_2773', 'Tinian',
'Tinian', '', 'T', 'state', 1),
(2774, 'state___stfold_fylke_2774', 'Østfold fylke',
'Østfold fylke', '', '01',
'state', 1),
(2775, 'state_Akershus_fylke_2775', 'Akershus fylke',
'Akershus fylke', '', '02',
'state', 1),
(2776, 'state_Oslo_fylke_2776', 'Oslo fylke',
'Oslo fylke', '', '03', 'state',
1),
(2777, 'state_Hedmark_fylke_2777', 'Hedmark fylke',
'Hedmark fylke', '', '04', 'state',
1),
(2778, 'state_Oppland_fylke_2778', 'Oppland fylke',
'Oppland fylke', '', '05', 'state',
1),
(2779, 'state_Buskerud_fylke_2779', 'Buskerud fylke',
'Buskerud fylke', '', '06',
'state', 1),
(2780, 'state_Vestfold_fylke_2780', 'Vestfold fylke',
'Vestfold fylke', '', '07',
'state', 1),
(2781, 'state_Telemark_fylke_2781', 'Telemark fylke',
'Telemark fylke', '', '08',
'state', 1),
(2782, 'state_Aust_Agder_fylke_2782', 'Aust-Agder
fylke', 'Aust-Agder fylke', '', '09',
'state', 1),
(2783, 'state_Vest_Agder_fylke_2783', 'Vest-Agder
fylke', 'Vest-Agder fylke', '', '10',
'state', 1),
(2784, 'state_Rogaland_fylke_2784', 'Rogaland fylke',
'Rogaland fylke', '', '11',
'state', 1),
(2785, 'state_Hordaland_fylke_2785', 'Hordaland fylke',
'Hordaland fylke', '', '12',
'state', 1),
(2786, 'state_Sogn_og_Fjordane_fylke_2786', 'Sogn og
Fjordane fylke', 'Sogn og Fjordane fylke', '',
'14', 'state', 1),
(2787, 'state_M__re_og_Romsdal_fylke_2787', 'Møre og
Romsdal fylke', 'Møre og Romsdal fylke', '',
'15', 'state', 1),
(2788, 'state_S__r_Tr__ndelag_fylke_2788', 'Sør-Trøndelag
fylke', 'Sør-Trøndelag fylke', '',
'16', 'state', 1),
(2789, 'state_Nord_Tr__ndelag_fylke_2789', 'Nord-Trøndelag
fylke', 'Nord-Trøndelag fylke', '',
'17', 'state', 1),
(2790, 'state_Nordland_fylke_2790', 'Nordland fylke',
'Nordland fylke', '', '18',
'state', 1),
(2791, 'state_Troms_fylke_2791', 'Troms fylke',
'Troms fylke', '', '19', 'state',
1),
(2792, 'state_Finnmark_fylke_2792', 'Finnmark fylke',
'Finnmark fylke', '', '20',
'state', 1),
(2793, 'state________________2793', 'الباطنة',
'الباطنة', '', 'BA',
'state', 1),
(2794, 'state__________________2794',
'الداخلية', 'الداخلية', '',
'DA', 'state', 1),
(2795, 'state__________2795', 'ظفار',
'ظفار', '', 'DH', 'state', 1),
(2796, 'state__________2796', 'مسقط',
'مسقط', '', 'MA', 'state', 1),
(2797, 'state____________2797', 'مسندم',
'مسندم', '', 'MU', 'state',
1),
(2798, 'state________________2798', 'الشرقية',
'الشرقية', '', 'SH',
'state', 1),
(2799, 'state______________2799', 'الوسطى',
'الوسطى', '', 'WU', 'state',
1),
(2800, 'state________________2800', 'الظاهرة',
'الظاهرة', '', 'ZA',
'state', 1),
(2801, 'state__________________2801',
'بلوچستان', 'بلوچستان', '',
'BA', 'state', 1),
(2802, 'state_________________________________2802',
'وفاقی دارالحکومت', 'وفاقی
دارالحکومت', '', 'IS',
'state', 1),
(2803, 'state_____________________2803', 'آزاد
کشمیر', 'آزاد کشمیر', '',
'JK', 'state', 1),
(2804, 'state______________________________2804',
'شمالی علاقہ جات', 'شمالی علاقہ
جات', '', 'NA', 'state', 1),
(2805, 'state_________________________________________2805',
'شمال مغربی سرحدی صوبہ', 'شمال
مغربی سرحدی صوبہ', '', 'NW',
'state', 1),
(2806, 'state____________2806', 'پنجاب',
'پنجاب', '', 'PB', 'state',
1),
(2807, 'state__________2807', 'سندھ',
'سندھ', '', 'SD', 'state', 1),
(2808, 'state___________________________________________2808',
'وفاقی قبائلی علاقہ جات', 'وفاقی
قبائلی علاقہ جات', '', 'TA',
'state', 1),
(2809, 'state_Aimeliik_2809', 'Aimeliik',
'Aimeliik', '', 'AM', 'state', 1),
(2810, 'state_Airai_2810', 'Airai', 'Airai',
'', 'AR', 'state', 1),
(2811, 'state_Angaur_2811', 'Angaur',
'Angaur', '', 'AN', 'state', 1),
(2812, 'state_Hatohobei_2812', 'Hatohobei',
'Hatohobei', '', 'HA', 'state',
1),
(2813, 'state_Kayangel_2813', 'Kayangel',
'Kayangel', '', 'KA', 'state', 1),
(2814, 'state_Koror_2814', 'Koror', 'Koror',
'', 'KO', 'state', 1),
(2815, 'state_Melekeok_2815', 'Melekeok',
'Melekeok', '', 'ME', 'state', 1),
(2816, 'state_Ngaraard_2816', 'Ngaraard',
'Ngaraard', '', 'NA', 'state', 1),
(2817, 'state_Ngarchelong_2817', 'Ngarchelong',
'Ngarchelong', '', 'NG', 'state',
1),
(2818, 'state_Ngardmau_2818', 'Ngardmau',
'Ngardmau', '', 'ND', 'state', 1),
(2819, 'state_Ngatpang_2819', 'Ngatpang',
'Ngatpang', '', 'NT', 'state', 1),
(2820, 'state_Ngchesar_2820', 'Ngchesar',
'Ngchesar', '', 'NC', 'state', 1),
(2821, 'state_Ngeremlengui_2821', 'Ngeremlengui',
'Ngeremlengui', '', 'NR', 'state',
1),
(2822, 'state_Ngiwal_2822', 'Ngiwal',
'Ngiwal', '', 'NW', 'state', 1),
(2823, 'state_Peleliu_2823', 'Peleliu',
'Peleliu', '', 'PE', 'state', 1),
(2824, 'state_Sonsorol_2824', 'Sonsorol',
'Sonsorol', '', 'SO', 'state', 1),
(2825, 'state_Bocas_del_Toro_2825', 'Bocas del Toro',
'Bocas del Toro', '', '1', 'state',
1),
(2826, 'state_Cocl___2826', 'Coclé',
'Coclé', '', '2', 'state', 1),
(2827, 'state_Col__n_2827', 'Colón',
'Colón', '', '3', 'state', 1),
(2828, 'state_Chiriqu___2828', 'Chiriquí',
'Chiriquí', '', '4', 'state', 1),
(2829, 'state_Dari__n_2829', 'Darién',
'Darién', '', '5', 'state', 1),
(2830, 'state_Herrera_2830', 'Herrera',
'Herrera', '', '6', 'state', 1),
(2831, 'state_Los_Santos_2831', 'Los Santos', 'Los
Santos', '', '7', 'state', 1),
(2832, 'state_Panam___2832', 'Panamá',
'Panamá', '', '8', 'state', 1),
(2833, 'state_Veraguas_2833', 'Veraguas',
'Veraguas', '', '9', 'state', 1),
(2834, 'state_Kuna_Yala_2834', 'Kuna Yala', 'Kuna
Yala', '', 'Q', 'state', 1),
(2835, 'state_Chimbu_2835', 'Chimbu',
'Chimbu', '', 'CPK', 'state', 1),
(2836, 'state_Central_2836', 'Central',
'Central', '', 'CPM', 'state', 1),
(2837, 'state_East_New_Britain_2837', 'East New
Britain', 'East New Britain', '', 'EBR',
'state', 1),
(2838, 'state_Eastern_Highlands_2838', 'Eastern
Highlands', 'Eastern Highlands', '',
'EHG', 'state', 1),
(2839, 'state_Enga_2839', 'Enga', 'Enga',
'', 'EPW', 'state', 1),
(2840, 'state_East_Sepik_2840', 'East Sepik',
'East Sepik', '', 'ESW', 'state',
1),
(2841, 'state_Gulf_2841', 'Gulf', 'Gulf',
'', 'GPK', 'state', 1),
(2842, 'state_Milne_Bay_2842', 'Milne Bay', 'Milne
Bay', '', 'MBA', 'state', 1),
(2843, 'state_Morobe_2843', 'Morobe',
'Morobe', '', 'MPL', 'state', 1),
(2844, 'state_Madang_2844', 'Madang',
'Madang', '', 'MPM', 'state', 1),
(2845, 'state_Manus_2845', 'Manus', 'Manus',
'', 'MRL', 'state', 1),
(2846, 'state_National_Capital_District_2846', 'National
Capital District', 'National Capital District',
'', 'NCD', 'state', 1),
(2847, 'state_New_Ireland_2847', 'New Ireland',
'New Ireland', '', 'NIK', 'state',
1),
(2848, 'state_Northern_2848', 'Northern',
'Northern', '', 'NPP', 'state',
1),
(2849, 'state_North_Solomons_2849', 'North Solomons',
'North Solomons', '', 'NSA',
'state', 1),
(2850, 'state_Sandaun_2850', 'Sandaun',
'Sandaun', '', 'SAN', 'state', 1),
(2851, 'state_Southern_Highlands_2851', 'Southern
Highlands', 'Southern Highlands', '',
'SHM', 'state', 1),
(2852, 'state_West_New_Britain_2852', 'West New
Britain', 'West New Britain', '', 'WBK',
'state', 1),
(2853, 'state_Western_Highlands_2853', 'Western
Highlands', 'Western Highlands', '',
'WHM', 'state', 1),
(2854, 'state_Western_2854', 'Western',
'Western', '', 'WPD', 'state', 1),
(2855, 'state_Concepci__n_2855', 'Concepción',
'Concepción', '', '1', 'state',
1),
(2856, 'state_San_Pedro_2856', 'San Pedro', 'San
Pedro', '', '2', 'state', 1),
(2857, 'state_Cordillera_2857', 'Cordillera',
'Cordillera', '', '3', 'state',
1),
(2858, 'state_Guair___2858', 'Guairá',
'Guairá', '', '4', 'state', 1),
(2859, 'state_Caaguaz___2859', 'Caaguazú',
'Caaguazú', '', '5', 'state', 1),
(2860, 'state_Caazap___2860', 'Caazapá',
'Caazapá', '', '6', 'state', 1),
(2861, 'state_Itap__a_2861', 'Itapúa',
'Itapúa', '', '7', 'state', 1),
(2862, 'state_Misiones_2862', 'Misiones',
'Misiones', '', '8', 'state', 1),
(2863, 'state_Paraguar___2863', 'Paraguarí',
'Paraguarí', '', '9', 'state',
1),
(2864, 'state_Alto_Paran___2864', 'Alto Paraná',
'Alto Paraná', '', '10', 'state',
1),
(2865, 'state_Central_2865', 'Central',
'Central', '', '11', 'state', 1),
(2866, 'state___eembuc___2866', 'Ñeembucú',
'Ñeembucú', '', '12', 'state',
1),
(2867, 'state_Amambay_2867', 'Amambay',
'Amambay', '', '13', 'state', 1),
(2868, 'state_Canindey___2868', 'Canindeyú',
'Canindeyú', '', '14', 'state',
1),
(2869, 'state_Presidente_Hayes_2869', 'Presidente
Hayes', 'Presidente Hayes', '', '15',
'state', 1),
(2870, 'state_Alto_Paraguay_2870', 'Alto Paraguay',
'Alto Paraguay', '', '16', 'state',
1),
(2871, 'state_Boquer__n_2871', 'Boquerón',
'Boquerón', '', '19', 'state',
1),
(2872, 'state_Asunci__n_2872', 'Asunción',
'Asunción', '', 'ASU', 'state',
1),
(2874, 'state_Ancash_2874', 'Ancash',
'Ancash', '', 'ANC', 'state', 1),
(2875, 'state_Apur__mac_2875', 'Apurímac',
'Apurímac', '', 'APU', 'state',
1),
(2876, 'state_Arequipa_2876', 'Arequipa',
'Arequipa', '', 'ARE', 'state',
1),
(2877, 'state_Ayacucho_2877', 'Ayacucho',
'Ayacucho', '', 'AYA', 'state',
1),
(2878, 'state_Cajamarca_2878', 'Cajamarca',
'Cajamarca', '', 'CAJ', 'state',
1),
(2879, 'state_Callao_2879', 'Callao',
'Callao', '', 'CAL', 'state', 1),
(2880, 'state_Cuzco_2880', 'Cuzco', 'Cuzco',
'', 'CUS', 'state', 1),
(2881, 'state_Hu__nuco_2881', 'Huánuco',
'Huánuco', '', 'HUC', 'state',
1),
(2882, 'state_Huancavelica_2882', 'Huancavelica',
'Huancavelica', '', 'HUV', 'state',
1),
(2883, 'state_Ica_2883', 'Ica', 'Ica',
'', 'ICA', 'state', 1),
(2884, 'state_Jun__n_2884', 'Junín',
'Junín', '', 'JUN', 'state', 1),
(2885, 'state_La_Libertad_2885', 'La Libertad',
'La Libertad', '', 'LAL', 'state',
1),
(2886, 'state_Lambayeque_2886', 'Lambayeque',
'Lambayeque', '', 'LAM', 'state',
1),
(2887, 'state_Lima_2887', 'Lima', 'Lima',
'', 'LIM', 'state', 1),
(2888, 'state_Loreto_2888', 'Loreto',
'Loreto', '', 'LOR', 'state', 1),
(2889, 'state_Madre_de_Dios_2889', 'Madre de Dios',
'Madre de Dios', '', 'MDD',
'state', 1),
(2890, 'state_Moquegua_2890', 'Moquegua',
'Moquegua', '', 'MOQ', 'state',
1),
(2891, 'state_Pasco_2891', 'Pasco', 'Pasco',
'', 'PAS', 'state', 1),
(2892, 'state_Piura_2892', 'Piura', 'Piura',
'', 'PIU', 'state', 1),
(2893, 'state_Puno_2893', 'Puno', 'Puno',
'', 'PUN', 'state', 1),
(2894, 'state_San_Mart__n_2894', 'San Martín',
'San Martín', '', 'SAM', 'state',
1),
(2895, 'state_Tacna_2895', 'Tacna', 'Tacna',
'', 'TAC', 'state', 1),
(2896, 'state_Tumbes_2896', 'Tumbes',
'Tumbes', '', 'TUM', 'state', 1),
(2897, 'state_Ucayali_2897', 'Ucayali',
'Ucayali', '', 'UCA', 'state', 1),
(2898, 'state_Abra_2898', 'Abra', 'Abra',
'', 'ABR', 'state', 1),
(2899, 'state_Agusan_del_Norte_2899', 'Agusan del
Norte', 'Agusan del Norte', '', 'AGN',
'state', 1),
(2900, 'state_Agusan_del_Sur_2900', 'Agusan del Sur',
'Agusan del Sur', '', 'AGS',
'state', 1),
(2901, 'state_Aklan_2901', 'Aklan', 'Aklan',
'', 'AKL', 'state', 1),
(2902, 'state_Albay_2902', 'Albay', 'Albay',
'', 'ALB', 'state', 1),
(2903, 'state_Antique_2903', 'Antique',
'Antique', '', 'ANT', 'state', 1),
(2904, 'state_Apayao_2904', 'Apayao',
'Apayao', '', 'APA', 'state', 1),
(2905, 'state_Aurora_2905', 'Aurora',
'Aurora', '', 'AUR', 'state', 1),
(2906, 'state_Bataan_2906', 'Bataan',
'Bataan', '', 'BAN', 'state', 1),
(2907, 'state_Basilan_2907', 'Basilan',
'Basilan', '', 'BAS', 'state', 1),
(2908, 'state_Benguet_2908', 'Benguet',
'Benguet', '', 'BEN', 'state', 1),
(2909, 'state_Biliran_2909', 'Biliran',
'Biliran', '', 'BIL', 'state', 1),
(2910, 'state_Bohol_2910', 'Bohol', 'Bohol',
'', 'BOH', 'state', 1),
(2911, 'state_Batangas_2911', 'Batangas',
'Batangas', '', 'BTG', 'state',
1),
(2912, 'state_Batanes_2912', 'Batanes',
'Batanes', '', 'BTN', 'state', 1),
(2913, 'state_Bukidnon_2913', 'Bukidnon',
'Bukidnon', '', 'BUK', 'state',
1),
(2914, 'state_Bulacan_2914', 'Bulacan',
'Bulacan', '', 'BUL', 'state', 1),
(2915, 'state_Cagayan_2915', 'Cagayan',
'Cagayan', '', 'CAG', 'state', 1),
(2916, 'state_Camiguin_2916', 'Camiguin',
'Camiguin', '', 'CAM', 'state',
1),
(2917, 'state_Camarines_Norte_2917', 'Camarines Norte',
'Camarines Norte', '', 'CAN',
'state', 1),
(2918, 'state_Capiz_2918', 'Capiz', 'Capiz',
'', 'CAP', 'state', 1),
(2919, 'state_Camarines_Sur_2919', 'Camarines Sur',
'Camarines Sur', '', 'CAS',
'state', 1),
(2920, 'state_Catanduanes_2920', 'Catanduanes',
'Catanduanes', '', 'CAT', 'state',
1),
(2921, 'state_Cavite_2921', 'Cavite',
'Cavite', '', 'CAV', 'state', 1),
(2922, 'state_Cebu_2922', 'Cebu', 'Cebu',
'', 'CEB', 'state', 1),
(2923, 'state_Compostela_Valley_2923', 'Compostela
Valley', 'Compostela Valley', '', 'COM',
'state', 1),
(2924, 'state_Davao_Oriental_2924', 'Davao Oriental',
'Davao Oriental', '', 'DAO',
'state', 1),
(2925, 'state_Davao_del_Sur_2925', 'Davao del Sur',
'Davao del Sur', '', 'DAS',
'state', 1),
(2926, 'state_Davao_del_Norte_2926', 'Davao del Norte',
'Davao del Norte', '', 'DAV',
'state', 1),
(2927, 'state_Eastern_Samar_2927', 'Eastern Samar',
'Eastern Samar', '', 'EAS',
'state', 1),
(2928, 'state_Guimaras_2928', 'Guimaras',
'Guimaras', '', 'GUI', 'state',
1),
(2929, 'state_Ifugao_2929', 'Ifugao',
'Ifugao', '', 'IFU', 'state', 1),
(2930, 'state_Iloilo_2930', 'Iloilo',
'Iloilo', '', 'ILI', 'state', 1),
(2931, 'state_Ilocos_Norte_2931', 'Ilocos Norte',
'Ilocos Norte', '', 'ILN', 'state',
1),
(2932, 'state_Ilocos_Sur_2932', 'Ilocos Sur',
'Ilocos Sur', '', 'ILS', 'state',
1),
(2933, 'state_Isabela_2933', 'Isabela',
'Isabela', '', 'ISA', 'state', 1),
(2934, 'state_Kalinga_2934', 'Kalinga',
'Kalinga', '', 'KAL', 'state', 1),
(2935, 'state_Laguna_2935', 'Laguna',
'Laguna', '', 'LAG', 'state', 1),
(2936, 'state_Lanao_del_Norte_2936', 'Lanao del Norte',
'Lanao del Norte', '', 'LAN',
'state', 1),
(2937, 'state_Lanao_del_Sur_2937', 'Lanao del Sur',
'Lanao del Sur', '', 'LAS',
'state', 1),
(2938, 'state_Leyte_2938', 'Leyte', 'Leyte',
'', 'LEY', 'state', 1),
(2939, 'state_La_Union_2939', 'La Union', 'La
Union', '', 'LUN', 'state', 1),
(2940, 'state_Marinduque_2940', 'Marinduque',
'Marinduque', '', 'MAD', 'state',
1),
(2941, 'state_Maguindanao_2941', 'Maguindanao',
'Maguindanao', '', 'MAG', 'state',
1),
(2942, 'state_Masbate_2942', 'Masbate',
'Masbate', '', 'MAS', 'state', 1),
(2943, 'state_Mindoro_Occidental_2943', 'Mindoro
Occidental', 'Mindoro Occidental', '',
'MDC', 'state', 1),
(2944, 'state_Mindoro_Oriental_2944', 'Mindoro
Oriental', 'Mindoro Oriental', '',
'MDR', 'state', 1),
(2945, 'state_Mountain_Province_2945', 'Mountain
Province', 'Mountain Province', '',
'MOU', 'state', 1),
(2946, 'state_Misamis_Occidental_2946', 'Misamis
Occidental', 'Misamis Occidental', '',
'MSC', 'state', 1),
(2947, 'state_Misamis_Oriental_2947', 'Misamis
Oriental', 'Misamis Oriental', '',
'MSR', 'state', 1),
(2948, 'state_Cotabato_2948', 'Cotabato',
'Cotabato', '', 'NCO', 'state',
1),
(2949, 'state_Northern_Samar_2949', 'Northern Samar',
'Northern Samar', '', 'NSA',
'state', 1),
(2950, 'state_Negros_Occidental_2950', 'Negros
Occidental', 'Negros Occidental', '',
'NEC', 'state', 1),
(2951, 'state_Negros_Oriental_2951', 'Negros Oriental',
'Negros Oriental', '', 'NER',
'state', 1),
(2952, 'state_Nueva_Ecija_2952', 'Nueva Ecija',
'Nueva Ecija', '', 'NUE', 'state',
1),
(2953, 'state_Nueva_Vizcaya_2953', 'Nueva Vizcaya',
'Nueva Vizcaya', '', 'NUV',
'state', 1),
(2954, 'state_Pampanga_2954', 'Pampanga',
'Pampanga', '', 'PAM', 'state',
1),
(2955, 'state_Pangasinan_2955', 'Pangasinan',
'Pangasinan', '', 'PAN', 'state',
1),
(2956, 'state_Palawan_2956', 'Palawan',
'Palawan', '', 'PLW', 'state', 1),
(2957, 'state_Quezon_2957', 'Quezon',
'Quezon', '', 'QUE', 'state', 1),
(2958, 'state_Quirino_2958', 'Quirino',
'Quirino', '', 'QUI', 'state', 1),
(2959, 'state_Rizal_2959', 'Rizal', 'Rizal',
'', 'RIZ', 'state', 1),
(2960, 'state_Romblon_2960', 'Romblon',
'Romblon', '', 'ROM', 'state', 1),
(2961, 'state_Sarangani_2961', 'Sarangani',
'Sarangani', '', 'SAR', 'state',
1),
(2962, 'state_South_Cotabato_2962', 'South Cotabato',
'South Cotabato', '', 'SCO',
'state', 1),
(2963, 'state_Siquijor_2963', 'Siquijor',
'Siquijor', '', 'SIG', 'state',
1),
(2964, 'state_Southern_Leyte_2964', 'Southern Leyte',
'Southern Leyte', '', 'SLE',
'state', 1),
(2965, 'state_Sulu_2965', 'Sulu', 'Sulu',
'', 'SLU', 'state', 1),
(2966, 'state_Sorsogon_2966', 'Sorsogon',
'Sorsogon', '', 'SOR', 'state',
1),
(2967, 'state_Sultan_Kudarat_2967', 'Sultan Kudarat',
'Sultan Kudarat', '', 'SUK',
'state', 1),
(2968, 'state_Surigao_del_Norte_2968', 'Surigao del
Norte', 'Surigao del Norte', '', 'SUN',
'state', 1),
(2969, 'state_Surigao_del_Sur_2969', 'Surigao del Sur',
'Surigao del Sur', '', 'SUR',
'state', 1),
(2970, 'state_Tarlac_2970', 'Tarlac',
'Tarlac', '', 'TAR', 'state', 1),
(2971, 'state_Tawi_Tawi_2971', 'Tawi-Tawi',
'Tawi-Tawi', '', 'TAW', 'state',
1),
(2972, 'state_Samar_2972', 'Samar', 'Samar',
'', 'WSA', 'state', 1),
(2973, 'state_Zamboanga_del_Norte_2973', 'Zamboanga del
Norte', 'Zamboanga del Norte', '',
'ZAN', 'state', 1),
(2974, 'state_Zamboanga_del_Sur_2974', 'Zamboanga del
Sur', 'Zamboanga del Sur', '', 'ZAS',
'state', 1),
(2975, 'state_Zambales_2975', 'Zambales',
'Zambales', '', 'ZMB', 'state',
1),
(2976, 'state_Zamboanga_Sibugay_2976', 'Zamboanga
Sibugay', 'Zamboanga Sibugay', '',
'ZSI', 'state', 1),
(2977, 'state_Dolno__l__skie_2977', 'Dolnośląskie',
'Dolnośląskie', '', 'DS',
'state', 1),
(2978, 'state_Kujawsko_Pomorskie_2978',
'Kujawsko-Pomorskie', 'Kujawsko-Pomorskie',
'', 'KP', 'state', 1),
(2979, 'state_Lubelskie_2979', 'Lubelskie',
'Lubelskie', '', 'LU', 'state',
1),
(2980, 'state_Lubuskie_2980', 'Lubuskie',
'Lubuskie', '', 'LB', 'state', 1),
(2981, 'state_____dzkie_2981', 'Łódzkie',
'Łódzkie', '', 'LD', 'state',
1),
(2982, 'state_Ma__opolskie_2982', 'Małopolskie',
'Małopolskie', '', 'MA', 'state',
1),
(2983, 'state_Mazowieckie_2983', 'Mazowieckie',
'Mazowieckie', '', 'MZ', 'state',
1),
(2984, 'state_Opolskie_2984', 'Opolskie',
'Opolskie', '', 'OP', 'state', 1),
(2985, 'state_Podkarpackie_2985', 'Podkarpackie',
'Podkarpackie', '', 'PK', 'state',
1),
(2986, 'state_Podlaskie_2986', 'Podlaskie',
'Podlaskie', '', 'PD', 'state',
1),
(2987, 'state_Pomorskie_2987', 'Pomorskie',
'Pomorskie', '', 'PM', 'state',
1),
(2988, 'state___l__skie_2988', 'Śląskie',
'Śląskie', '', 'SL', 'state',
1),
(2989, 'state___wi__tokrzyskie_2989',
'Świętokrzyskie', 'Świętokrzyskie', '',
'SK', 'state', 1),
(2990, 'state_Warmi__sko_Mazurskie_2990',
'Warmińsko-Mazurskie', 'Warmińsko-Mazurskie',
'', 'WN', 'state', 1),
(2991, 'state_Wielkopolskie_2991', 'Wielkopolskie',
'Wielkopolskie', '', 'WP', 'state',
1),
(2992, 'state_Zachodniopomorskie_2992',
'Zachodniopomorskie', 'Zachodniopomorskie',
'', 'ZP', 'state', 1),
(2993, 'state_Aveiro_2993', 'Aveiro',
'Aveiro', '', '01', 'state', 1),
(2994, 'state_Beja_2994', 'Beja', 'Beja',
'', '02', 'state', 1),
(2995, 'state_Braga_2995', 'Braga', 'Braga',
'', '03', 'state', 1),
(2996, 'state_Bragan__a_2996', 'Bragança',
'Bragança', '', '04', 'state',
1),
(2997, 'state_Castelo_Branco_2997', 'Castelo Branco',
'Castelo Branco', '', '05',
'state', 1),
(2998, 'state_Coimbra_2998', 'Coimbra',
'Coimbra', '', '06', 'state', 1),
(2999, 'state___vora_2999', 'Évora',
'Évora', '', '07', 'state',
1);";
		$this->db->setQuery($query);
		$this->db->query();

		$query="
INSERT IGNORE INTO `#__hikashop_zone` (`zone_id`, `zone_namekey`,
`zone_name`, `zone_name_english`, `zone_code_2`, `zone_code_3`,
`zone_type`, `zone_published`) VALUES
(3000, 'state_Faro_3000', 'Faro', 'Faro',
'', '08', 'state', 1),
(3001, 'state_Guarda_3001', 'Guarda',
'Guarda', '', '09', 'state', 1),
(3002, 'state_Leiria_3002', 'Leiria',
'Leiria', '', '10', 'state', 1),
(3003, 'state_Lisboa_3003', 'Lisboa',
'Lisboa', '', '11', 'state', 1),
(3004, 'state_Portalegre_3004', 'Portalegre',
'Portalegre', '', '12', 'state',
1),
(3005, 'state_Porto_3005', 'Porto', 'Porto',
'', '13', 'state', 1),
(3006, 'state_Santar__m_3006', 'Santarém',
'Santarém', '', '14', 'state',
1),
(3007, 'state_Set__bal_3007', 'Setúbal',
'Setúbal', '', '15', 'state', 1),
(3008, 'state_Viana_do_Castelo_3008', 'Viana do
Castelo', 'Viana do Castelo', '', '16',
'state', 1),
(3009, 'state_Vila_Real_3009', 'Vila Real', 'Vila
Real', '', '17', 'state', 1),
(3010, 'state_Viseu_3010', 'Viseu', 'Viseu',
'', '18', 'state', 1),
(3011, 'state_Regi__o_Aut__noma_dos_A__ores_3011', 'Região
Autónoma dos Açores', 'Região Autónoma dos Açores',
'', '20', 'state', 1),
(3012, 'state_Regi__o_Aut__noma_da_Madeira_3012', 'Região
Autónoma da Madeira', 'Região Autónoma da Madeira',
'', '30', 'state', 1),
(3013, 'state______________3013', 'الدوحة',
'الدوحة', '', 'DA', 'state',
1),
(3014, 'state__________________3014',
'الغويرية', 'الغويرية', '',
'GH', 'state', 1),
(3015, 'state___________________________3015', 'جريان
الباطنة', 'جريان الباطنة', '',
'JB', 'state', 1),
(3016, 'state__________________3016',
'الجميلية', 'الجميلية', '',
'JU', 'state', 1),
(3017, 'state____________3017', 'الخور',
'الخور', '', 'KH', 'state',
1),
(3018, 'state______________3018', 'مسيعيد',
'مسيعيد', '', 'ME', 'state',
1),
(3019, 'state______________3019', 'الشمال',
'الشمال', '', 'MS', 'state',
1),
(3020, 'state______________3020', 'الريان',
'الريان', '', 'RA', 'state',
1),
(3021, 'state_______________3021', 'أم صلال',
'أم صلال', '', 'US', 'state',
1),
(3022, 'state______________3022', 'الوكرة',
'الوكرة', '', 'WA', 'state',
1),
(3023, 'state_Alba_3023', 'Alba', 'Alba',
'', 'AB', 'state', 1),
(3024, 'state_Arge___3024', 'Argeş',
'Argeş', '', 'AG', 'state', 1),
(3025, 'state_Arad_3025', 'Arad', 'Arad',
'', 'AR', 'state', 1),
(3026, 'state_Bucure__ti_3026', 'Bucureşti',
'Bucureşti', '', 'B', 'state',
1),
(3027, 'state_Bac__u_3027', 'Bacău',
'Bacău', '', 'BC', 'state', 1),
(3028, 'state_Bihor_3028', 'Bihor', 'Bihor',
'', 'BH', 'state', 1),
(3029, 'state_Bistri__a_N__s__ud_3029',
'Bistriţa-Năsăud', 'Bistriţa-Năsăud',
'', 'BN', 'state', 1),
(3030, 'state_Br__ila_3030', 'Brăila',
'Brăila', '', 'BR', 'state', 1),
(3031, 'state_Boto__ani_3031', 'Botoşani',
'Botoşani', '', 'BT', 'state',
1),
(3032, 'state_Bra__ov_3032', 'Braşov',
'Braşov', '', 'BV', 'state', 1),
(3033, 'state_Buz__u_3033', 'Buzău',
'Buzău', '', 'BZ', 'state', 1),
(3034, 'state_Cluj_3034', 'Cluj', 'Cluj',
'', 'CJ', 'state', 1),
(3035, 'state_C__l__ra__i_3035', 'Călăraşi',
'Călăraşi', '', 'CL', 'state',
1),
(3036, 'state_Cara___Severin_3036', 'Caraş-Severin',
'Caraş-Severin', '', 'CS',
'state', 1),
(3037, 'state_Constan__a_3037', 'Constanţa',
'Constanţa', '', 'CT', 'state',
1),
(3038, 'state_Covasna_3038', 'Covasna',
'Covasna', '', 'CV', 'state', 1),
(3039, 'state_D__mbovi__a_3039', 'Dâmboviţa',
'Dâmboviţa', '', 'DB', 'state',
1),
(3040, 'state_Dolj_3040', 'Dolj', 'Dolj',
'', 'DJ', 'state', 1),
(3041, 'state_Gorj_3041', 'Gorj', 'Gorj',
'', 'GJ', 'state', 1),
(3042, 'state_Gala__i_3042', 'Galaţi',
'Galaţi', '', 'GL', 'state', 1),
(3043, 'state_Giurgiu_3043', 'Giurgiu',
'Giurgiu', '', 'GR', 'state', 1),
(3044, 'state_Hunedoara_3044', 'Hunedoara',
'Hunedoara', '', 'HD', 'state',
1),
(3045, 'state_Harghita_3045', 'Harghita',
'Harghita', '', 'HG', 'state', 1),
(3046, 'state_Ilfov_3046', 'Ilfov', 'Ilfov',
'', 'IF', 'state', 1),
(3047, 'state_Ialomi__a_3047', 'Ialomiţa',
'Ialomiţa', '', 'IL', 'state',
1),
(3048, 'state_Ia__i_3048', 'Iaşi', 'Iaşi',
'', 'IS', 'state', 1),
(3049, 'state_Mehedin__i_3049', 'Mehedinţi',
'Mehedinţi', '', 'MH', 'state',
1),
(3050, 'state_Maramure___3050', 'Maramureş',
'Maramureş', '', 'MM', 'state',
1),
(3051, 'state_Mure___3051', 'Mureş',
'Mureş', '', 'MS', 'state', 1),
(3052, 'state_Neam___3052', 'Neamţ',
'Neamţ', '', 'NT', 'state', 1),
(3053, 'state_Olt_3053', 'Olt', 'Olt',
'', 'OT', 'state', 1),
(3054, 'state_Prahova_3054', 'Prahova',
'Prahova', '', 'PH', 'state', 1),
(3055, 'state_Sibiu_3055', 'Sibiu', 'Sibiu',
'', 'SB', 'state', 1),
(3056, 'state_S__laj_3056', 'Sălaj',
'Sălaj', '', 'SJ', 'state', 1),
(3057, 'state_Satu_Mare_3057', 'Satu Mare', 'Satu
Mare', '', 'SM', 'state', 1),
(3058, 'state_Suceava_3058', 'Suceava',
'Suceava', '', 'SV', 'state', 1),
(3059, 'state_Tulcea_3059', 'Tulcea',
'Tulcea', '', 'TL', 'state', 1),
(3060, 'state_Timi___3060', 'Timiş',
'Timiş', '', 'TM', 'state', 1),
(3061, 'state_Teleorman_3061', 'Teleorman',
'Teleorman', '', 'TR', 'state',
1),
(3062, 'state_V__lcea_3062', 'Vâlcea',
'Vâlcea', '', 'VL', 'state', 1),
(3063, 'state_Vrancea_3063', 'Vrancea',
'Vrancea', '', 'VN', 'state', 1),
(3064, 'state_Vaslui_3064', 'Vaslui',
'Vaslui', '', 'VS', 'state', 1),
(3065, 'state_______________________________________3065',
'Адыгея Республика', 'Адыгея
Республика', '', 'AD',
'state', 1),
(3066,
'state_____________________________________________________________________________3066',
'Агинский-Бурятский автономный
округ', 'Агинский-Бурятский
автономный округ', '', 'AGB',
'state', 1),
(3067, 'state_____________________________________3067',
'Алтай Республика', 'Алтай
Республика', '', 'AL',
'state', 1),
(3068, 'state_______________________________3068',
'Алтайский край', 'Алтайский
край', '', 'ALT', 'state', 1),
(3069, 'state_____________________________________3069',
'Амурская область', 'Амурская
область', '', 'AMU', 'state',
1),
(3070,
'state_______________________________________________3070',
'Архангельская область',
'Архангельская область', '',
'ARK', 'state', 1),
(3071, 'state_____________________________________________3071',
'Астраханская область',
'Астраханская область', '',
'AST', 'state', 1),
(3072,
'state___________________________________________________3072',
'Башкортостан Республика',
'Башкортостан Республика', '',
'BA', 'state', 1),
(3073, 'state_____________________________________________3073',
'Белгородская область',
'Белгородская область', '',
'BEL', 'state', 1),
(3074, 'state_____________________________________3074',
'Брянская область', 'Брянская
область', '', 'BRY', 'state',
1),
(3075, 'state_________________________________________3075',
'Бурятия Республика', 'Бурятия
Республика', '', 'BU',
'state', 1),
(3076, 'state_____________________________________________3076',
'Чеченская Республика',
'Чеченская Республика', '',
'CE', 'state', 1),
(3077, 'state___________________________________________3077',
'Челябинская область',
'Челябинская область', '',
'CHE', 'state', 1),
(3078, 'state_______________________________________3078',
'Читинская область', 'Читинская
область', '', 'CHI', 'state',
1),
(3079,
'state__________________________________________________________3079',
'Чукотский автономный округ',
'Чукотский автономный округ',
'', 'CHU', 'state', 1),
(3080, 'state_____________________________________________3080',
'Чувашская Республика',
'Чувашская Республика', '',
'CU', 'state', 1),
(3081, 'state___________________________________________3081',
'Дагестан Республика', 'Дагестан
Республика', '', 'DA',
'state', 1),
(3082,
'state______________________________________________________________3082',
'Эвенкийский автономный округ',
'Эвенкийский автономный округ',
'', 'EVE', 'state', 1),
(3083, 'state_____________________________________________3083',
'Ингушетия Республика',
'Ингушетия Республика', '',
'IN', 'state', 1),
(3084, 'state_______________________________________3084',
'Иркутская область', 'Иркутская
область', '', 'IRK', 'state',
1),
(3085, 'state_________________________________________3085',
'Ивановская область', 'Ивановская
область', '', 'IVA', 'state',
1),
(3086, 'state_________________________________________3086',
'Камчатская область', 'Камчатская
область', '', 'KAM', 'state',
1),
(3087,
'state____________________________________________________________________3087',
'Кабардино-Балкарская Республика',
'Кабардино-Балкарская Республика',
'', 'KB', 'state', 1),
(3088,
'state____________________________________________________________________3088',
'Карачаево-Черкесская Республика',
'Карачаево-Черкесская Республика',
'', 'KC', 'state', 1),
(3089, 'state_______________________________________3089',
'Краснодарский край',
'Краснодарский край', '',
'KDA', 'state', 1),
(3090, 'state___________________________________________3090',
'Кемеровская область',
'Кемеровская область', '',
'KEM', 'state', 1),
(3091,
'state___________________________________________________3091',
'Калининградская область',
'Калининградская область', '',
'KGD', 'state', 1),
(3092, 'state_________________________________________3092',
'Курганская область', 'Курганская
область', '', 'KGN', 'state',
1),
(3093, 'state___________________________________3093',
'Хабаровский край', 'Хабаровский
край', '', 'KHA', 'state', 1),
(3094,
'state______________________________________________________________________________________3094',
'Ханты-Мансийский автономный
округ—Югра', 'Ханты-Мансийский
автономный округ—Югра', '',
'KHM', 'state', 1),
(3095, 'state_____________________________________3095',
'Красноярский край',
'Красноярский край', '',
'KIA', 'state', 1),
(3096, 'state_______________________________________3096',
'Кировская область', 'Кировская
область', '', 'KIR', 'state',
1),
(3097, 'state__________________3097', 'Хакасия',
'Хакасия', '', 'KK',
'state', 1),
(3098, 'state___________________________________________3098',
'Калмыкия Республика', 'Калмыкия
Республика', '', 'KL',
'state', 1),
(3099, 'state_______________________________________3099',
'Калужская область', 'Калужская
область', '', 'KLU', 'state',
1),
(3100, 'state___________________________________3100',
'Коми Республика', 'Коми
Республика', '', 'KO',
'state', 1),
(3101,
'state__________________________________________________________3101',
'Корякский автономный округ',
'Корякский автономный округ',
'', 'KOR', 'state', 1),
(3102, 'state___________________________________________3102',
'Костромская область',
'Костромская область', '',
'KOS', 'state', 1),
(3103, 'state_________________________________________3103',
'Карелия Республика', 'Карелия
Республика', '', 'KR',
'state', 1),
(3104, 'state___________________________________3104',
'Курская область', 'Курская
область', '', 'KRS', 'state',
1),
(3105,
'state_______________________________________________3105',
'Ленинградская область',
'Ленинградская область', '',
'LEN', 'state', 1),
(3106, 'state_____________________________________3106',
'Липецкая область', 'Липецкая
область', '', 'LIP', 'state',
1),
(3107, 'state___________________________________________3107',
'Магаданская область',
'Магаданская область', '',
'MAG', 'state', 1),
(3108, 'state__________________________________________3108',
'Марий Эл Республика', 'Марий Эл
Республика', '', 'ME',
'state', 1),
(3109, 'state___________________________________________3109',
'Мордовия Республика', 'Мордовия
Республика', '', 'MO',
'state', 1),
(3110, 'state_________________________________________3110',
'Московская область', 'Московская
область', '', 'MOS', 'state',
1),
(3111, 'state________________3111', 'Москва',
'Москва', '', 'MOW', 'state',
1),
(3112, 'state_________________________________________3112',
'Мурманская область', 'Мурманская
область', '', 'MUR', 'state',
1),
(3113,
'state________________________________________________________3113',
'Ненецкий автономный округ',
'Ненецкий автономный округ', '',
'NEN', 'state', 1),
(3114, 'state_____________________________________________3114',
'Новгородская область',
'Новгородская область', '',
'NGR', 'state', 1),
(3115,
'state_______________________________________________3115',
'Нижегородская область',
'Нижегородская область', '',
'NIZ', 'state', 1),
(3116,
'state_______________________________________________3116',
'Новосибирская область',
'Новосибирская область', '',
'NVS', 'state', 1),
(3117, 'state_________________________________3117',
'Омская область', 'Омская
область', '', 'OMS', 'state',
1),
(3118, 'state_____________________________________________3118',
'Оренбургская область',
'Оренбургская область', '',
'ORE', 'state', 1),
(3119, 'state_______________________________________3119',
'Орловская область', 'Орловская
область', '', 'ORL', 'state',
1),
(3120, 'state_________________________________________3120',
'Пензенская область', 'Пензенская
область', '', 'PNZ', 'state',
1),
(3121, 'state_________________________________3121',
'Приморский край', 'Приморский
край', '', 'PRI', 'state', 1),
(3122, 'state_______________________________________3122',
'Псковская область', 'Псковская
область', '', 'PSK', 'state',
1),
(3123, 'state_________________________________________3123',
'Ростовская область', 'Ростовская
область', '', 'ROS', 'state',
1),
(3124, 'state_______________________________________3124',
'Рязанская область', 'Рязанская
область', '', 'RYA', 'state',
1),
(3125,
'state____________________________________________________3125',
'Саха (Якутия) Республика', 'Саха
(Якутия) Республика', '', 'SA',
'state', 1),
(3126, 'state___________________________________________3126',
'Сахалинская область',
'Сахалинская область', '',
'SAK', 'state', 1),
(3127, 'state_______________________________________3127',
'Самарская область', 'Самарская
область', '', 'SAM', 'state',
1),
(3128, 'state___________________________________________3128',
'Саратовская область',
'Саратовская область', '',
'SAR', 'state', 1),
(3129,
'state___________________________________________________________________________3129',
'Северная Осетия–Алания
Республика', 'Северная
Осетия–Алания Республика', '',
'SE', 'state', 1),
(3130, 'state_________________________________________3130',
'Смоленская область', 'Смоленская
область', '', 'SMO', 'state',
1),
(3131, 'state_________________________________3131',
'Санкт-Петербург',
'Санкт-Петербург', '', 'SPE',
'state', 1),
(3132, 'state_________________________________________3132',
'Ставропольский край',
'Ставропольский край', '',
'STA', 'state', 1),
(3133, 'state_____________________________________________3133',
'Свердловская область',
'Свердловская область', '',
'SVE', 'state', 1),
(3134, 'state_____________________________________________3134',
'Республика Татарстан',
'Республика Татарстан', '',
'TA', 'state', 1),
(3135, 'state_________________________________________3135',
'Тамбовская область', 'Тамбовская
область', '', 'TAM', 'state',
1),
(3136,
'state____________________________________________________________3136',
'Таймырский автономный округ',
'Таймырский автономный округ',
'', 'TAY', 'state', 1),
(3137, 'state___________________________________3137',
'Томская область', 'Томская
область', '', 'TOM', 'state',
1),
(3138, 'state_____________________________________3138',
'Тульская область', 'Тульская
область', '', 'TUL', 'state',
1),
(3139, 'state_____________________________________3139',
'Тверская область', 'Тверская
область', '', 'TVE', 'state',
1),
(3140, 'state___________________________________3140',
'Тыва Республика', 'Тыва
Республика', '', 'TY',
'state', 1),
(3141, 'state_______________________________________3141',
'Тюменская область', 'Тюменская
область', '', 'TYU', 'state',
1),
(3142,
'state_______________________________________________3142',
'Удмуртская Республика',
'Удмуртская Республика', '',
'UD', 'state', 1),
(3143, 'state___________________________________________3143',
'Ульяновская область',
'Ульяновская область', '',
'ULY', 'state', 1),
(3144,
'state________________________________________________________________________________________3144',
'Усть-Ордынский Бурятский автономный
округ', 'Усть-Ордынский Бурятский
автономный округ', '', 'UOB',
'state', 1),
(3145,
'state_______________________________________________3145',
'Волгоградская область',
'Волгоградская область', '',
'VGG', 'state', 1),
(3146, 'state_____________________________________________3146',
'Владимирская область',
'Владимирская область', '',
'VLA', 'state', 1),
(3147, 'state___________________________________________3147',
'Вологодская область',
'Вологодская область', '',
'VLG', 'state', 1),
(3148, 'state___________________________________________3148',
'Воронежская область',
'Воронежская область', '',
'VOR', 'state', 1),
(3149, 'state_____________________________3149',
'Пермский край', 'Пермский
край', '', 'XXX', 'state', 1),
(3150,
'state_____________________________________________________________________3150',
'Ямало-Ненецкий автономный округ',
'Ямало-Ненецкий автономный округ',
'', 'YAN', 'state', 1),
(3151, 'state___________________________________________3151',
'Ярославская область',
'Ярославская область', '',
'YAR', 'state', 1),
(3152,
'state______________________________________________________________3152',
'Еврейская автономная область',
'Еврейская автономная область',
'', 'YEV', 'state', 1),
(3153, 'state_Nord_3153', 'Nord', 'Nord',
'', 'N', 'state', 1),
(3154, 'state_Est_3154', 'Est', 'Est',
'', 'E', 'state', 1),
(3155, 'state_Sud_3155', 'Sud', 'Sud',
'', 'S', 'state', 1),
(3156, 'state_Ouest_3156', 'Ouest', 'Ouest',
'', 'O', 'state', 1),
(3157, 'state_Kigali_3157', 'Kigali',
'Kigali', '', 'K', 'state', 1),
(3158, 'state_Saint_Kitts_3158', 'Saint Kitts',
'Saint Kitts', '', 'K', 'state',
1),
(3159, 'state_Nevis_3159', 'Nevis', 'Nevis',
'', 'N', 'state', 1),
(3160, 'state_Anse_la_Raye_3160', 'Anse-la-Raye',
'Anse-la-Raye', '', 'AR', 'state',
1),
(3161, 'state_Castries_3161', 'Castries',
'Castries', '', 'CA', 'state', 1),
(3162, 'state_Choiseul_3162', 'Choiseul',
'Choiseul', '', 'CH', 'state', 1),
(3163, 'state_Dauphin_3163', 'Dauphin',
'Dauphin', '', 'DA', 'state', 1),
(3164, 'state_Dennery_3164', 'Dennery',
'Dennery', '', 'DE', 'state', 1),
(3165, 'state_Gros_Islet_3165', 'Gros-Islet',
'Gros-Islet', '', 'GI', 'state',
1),
(3166, 'state_Laborie_3166', 'Laborie',
'Laborie', '', 'LA', 'state', 1),
(3167, 'state_Micoud_3167', 'Micoud',
'Micoud', '', 'MI', 'state', 1),
(3168, 'state_Praslin_3168', 'Praslin',
'Praslin', '', 'PR', 'state', 1),
(3169, 'state_Soufriere_3169', 'Soufriere',
'Soufriere', '', 'SO', 'state',
1),
(3170, 'state_Vieux_Fort_3170', 'Vieux-Fort',
'Vieux-Fort', '', 'VF', 'state',
1),
(3171, 'state_Charlotte_3171', 'Charlotte',
'Charlotte', '', 'C', 'state', 1),
(3172, 'state_Grenadines_3172', 'Grenadines',
'Grenadines', '', 'R', 'state',
1),
(3177, 'state_A_ana_3177', 'A''ana',
'A''ana', '', 'AA',
'state', 1),
(3178, 'state_Aiga_i_le_Tai_3178', 'Aiga-i-le-Tai',
'Aiga-i-le-Tai', '', 'AL', 'state',
1),
(3179, 'state_Atua_3179', 'Atua', 'Atua',
'', 'AT', 'state', 1),
(3180, 'state_Fa_asaleleaga_3180',
'Fa''asaleleaga', 'Fa''asaleleaga',
'', 'FA', 'state', 1),
(3181, 'state_Gaga_emauga_3181',
'Gaga''emauga', 'Gaga''emauga',
'', 'GE', 'state', 1),
(3182, 'state_Gaga_ifomauga_3182',
'Gaga''ifomauga', 'Gaga''ifomauga',
'', 'GI', 'state', 1),
(3183, 'state_Palauli_3183', 'Palauli',
'Palauli', '', 'PA', 'state', 1),
(3184, 'state_Satupa_itea_3184',
'Satupa''itea', 'Satupa''itea',
'', 'SA', 'state', 1),
(3185, 'state_Tuamasaga_3185', 'Tuamasaga',
'Tuamasaga', '', 'TU', 'state',
1),
(3186, 'state_Va_a_o_Fonoti_3186',
'Va''a-o-Fonoti', 'Va''a-o-Fonoti',
'', 'VF', 'state', 1),
(3187, 'state_Vaisigano_3187', 'Vaisigano',
'Vaisigano', '', 'VS', 'state',
1),
(3188, 'state_Acquaviva_3188', 'Acquaviva',
'Acquaviva', '', 'AC', 'state',
1),
(3189, 'state_Borgo_Maggiore_3189', 'Borgo Maggiore',
'Borgo Maggiore', '', 'BM',
'state', 1),
(3190, 'state_Chiesanuova_3190', 'Chiesanuova',
'Chiesanuova', '', 'CH', 'state',
1),
(3191, 'state_Domagnano_3191', 'Domagnano',
'Domagnano', '', 'DO', 'state',
1),
(3192, 'state_Faetano_3192', 'Faetano',
'Faetano', '', 'FA', 'state', 1),
(3193, 'state_Fiorentino_3193', 'Fiorentino',
'Fiorentino', '', 'FI', 'state',
1),
(3194, 'state_Montegiardino_3194', 'Montegiardino',
'Montegiardino', '', 'MO', 'state',
1),
(3195, 'state_Citta_di_San_Marino_3195', 'Citta di San
Marino', 'Citta di San Marino', '',
'SM', 'state', 1),
(3196, 'state_Serravalle_3196', 'Serravalle',
'Serravalle', '', 'SE', 'state',
1),
(3197, 'state_Pr__ncipe_3197', 'Príncipe',
'Príncipe', '', 'P', 'state', 1),
(3198, 'state_S__o_Tom___3198', 'São Tomé',
'São Tomé', '', 'S', 'state',
1),
(3199, 'state______________3199', 'الرياض',
'الرياض', '', '01', 'state',
1),
(3200, 'state_______________________3200', 'مكة
المكرمة', 'مكة المكرمة', '',
'02', 'state', 1),
(3201, 'state________________3201', 'المدينه',
'المدينه', '', '03',
'state', 1),
(3202, 'state________________3202', 'الشرقية',
'الشرقية', '', '04',
'state', 1),
(3203, 'state______________3203', 'القصيم',
'القصيم', '', '05', 'state',
1),
(3204, 'state__________3204', 'حائل',
'حائل', '', '06', 'state', 1),
(3205, 'state__________3205', 'تبوك',
'تبوك', '', '07', 'state', 1),
(3206, 'state_______________________________3206',
'الحدود الشمالية', 'الحدود
الشمالية', '', '08', 'state',
1),
(3207, 'state____________3207', 'جيزان',
'جيزان', '', '09', 'state',
1),
(3208, 'state____________3208', 'نجران',
'نجران', '', '10', 'state',
1),
(3209, 'state______________3209', 'الباحة',
'الباحة', '', '11', 'state',
1),
(3210, 'state____________3210', 'الجوف',
'الجوف', '', '12', 'state',
1),
(3211, 'state__________3211', 'عسير',
'عسير', '', '14', 'state', 1),
(3212, 'state_Dakar_3212', 'Dakar', 'Dakar',
'', 'DA', 'state', 1),
(3213, 'state_Diourbel_3213', 'Diourbel',
'Diourbel', '', 'DI', 'state', 1),
(3214, 'state_Fatick_3214', 'Fatick',
'Fatick', '', 'FA', 'state', 1),
(3215, 'state_Kaolack_3215', 'Kaolack',
'Kaolack', '', 'KA', 'state', 1),
(3216, 'state_Kolda_3216', 'Kolda', 'Kolda',
'', 'KO', 'state', 1),
(3217, 'state_Louga_3217', 'Louga', 'Louga',
'', 'LO', 'state', 1),
(3218, 'state_Matam_3218', 'Matam', 'Matam',
'', 'MA', 'state', 1),
(3219, 'state_Saint_Louis_3219', 'Saint-Louis',
'Saint-Louis', '', 'SL', 'state',
1),
(3220, 'state_Tambacounda_3220', 'Tambacounda',
'Tambacounda', '', 'TA', 'state',
1),
(3221, 'state_Thies__3221', 'Thies ', 'Thies
', '', 'TH', 'state', 1),
(3222, 'state_Ziguinchor_3222', 'Ziguinchor',
'Ziguinchor', '', 'ZI', 'state',
1),
(3223, 'state_Anse_aux_Pins_3223', 'Anse aux Pins',
'Anse aux Pins', '', 'AP', 'state',
1),
(3224, 'state_Anse_Boileau_3224', 'Anse Boileau',
'Anse Boileau', '', 'AB', 'state',
1),
(3225, 'state_Anse_Etoile_3225', 'Anse Etoile',
'Anse Etoile', '', 'AE', 'state',
1),
(3226, 'state_Anse_Louis_3226', 'Anse Louis',
'Anse Louis', '', 'AL', 'state',
1),
(3227, 'state_Anse_Royale_3227', 'Anse Royale',
'Anse Royale', '', 'AR', 'state',
1),
(3228, 'state_Baie_Lazare_3228', 'Baie Lazare',
'Baie Lazare', '', 'BL', 'state',
1),
(3229, 'state_Baie_Sainte_Anne_3229', 'Baie Sainte
Anne', 'Baie Sainte Anne', '', 'BS',
'state', 1),
(3230, 'state_Beau_Vallon_3230', 'Beau Vallon',
'Beau Vallon', '', 'BV', 'state',
1),
(3231, 'state_Bel_Air_3231', 'Bel Air', 'Bel
Air', '', 'BA', 'state', 1),
(3232, 'state_Bel_Ombre_3232', 'Bel Ombre', 'Bel
Ombre', '', 'BO', 'state', 1),
(3233, 'state_Cascade_3233', 'Cascade',
'Cascade', '', 'CA', 'state', 1),
(3234, 'state_Glacis_3234', 'Glacis',
'Glacis', '', 'GL', 'state', 1),
(3235, 'state_Grand__Anse__on_Mahe__3235',
'Grand'' Anse (on Mahe)', 'Grand'' Anse
(on Mahe)', '', 'GM', 'state', 1),
(3236, 'state_Grand__Anse__on_Praslin__3236',
'Grand'' Anse (on Praslin)', 'Grand''
Anse (on Praslin)', '', 'GP', 'state',
1),
(3237, 'state_La_Digue_3237', 'La Digue', 'La
Digue', '', 'DG', 'state', 1),
(3238, 'state_La_Riviere_Anglaise_3238', 'La Riviere
Anglaise', 'La Riviere Anglaise', '',
'RA', 'state', 1),
(3239, 'state_Mont_Buxton_3239', 'Mont Buxton',
'Mont Buxton', '', 'MB', 'state',
1),
(3240, 'state_Mont_Fleuri_3240', 'Mont Fleuri',
'Mont Fleuri', '', 'MF', 'state',
1),
(3241, 'state_Plaisance_3241', 'Plaisance',
'Plaisance', '', 'PL', 'state',
1),
(3242, 'state_Pointe_La_Rue_3242', 'Pointe La Rue',
'Pointe La Rue', '', 'PR', 'state',
1),
(3243, 'state_Port_Glaud_3243', 'Port Glaud',
'Port Glaud', '', 'PG', 'state',
1),
(3244, 'state_Saint_Louis_3244', 'Saint Louis',
'Saint Louis', '', 'SL', 'state',
1),
(3245, 'state_Takamaka_3245', 'Takamaka',
'Takamaka', '', 'TA', 'state', 1),
(3246, 'state_Eastern_3246', 'Eastern',
'Eastern', '', 'E', 'state', 1),
(3250, 'state_Banskobystrick___kraj_3250', 'Banskobystrický
kraj', 'Banskobystrický kraj', '',
'BC', 'state', 1),
(3251, 'state_Bratislavsk___kraj_3251', 'Bratislavský
kraj', 'Bratislavský kraj', '', 'BL',
'state', 1),
(3252, 'state_Ko__ick___kraj_3252', 'Košický kraj',
'Košický kraj', '', 'KI',
'state', 1),
(3253, 'state_Nitriansk___kraj_3253', 'Nitrianský
kraj', 'Nitrianský kraj', '', 'NJ',
'state', 1),
(3254, 'state_Pre__ovsk___kraj_3254', 'Prešovský
kraj', 'Prešovský kraj', '', 'PV',
'state', 1),
(3255, 'state_Trnavsk___kraj_3255', 'Trnavský kraj',
'Trnavský kraj', '', 'TA',
'state', 1),
(3256, 'state_Tren__iansk___kraj_3256', 'Trenčianský
kraj', 'Trenčianský kraj', '', 'TC',
'state', 1),
(3257, 'state___ilinsk___kraj_3257', 'Žilinský kraj',
'Žilinský kraj', '', 'ZI',
'state', 1),
(3258, 'state_Ajdov____ina_3258', 'Ajdovščina',
'Ajdovščina', '', '001', 'state',
1),
(3259, 'state_Beltinci_3259', 'Beltinci',
'Beltinci', '', '002', 'state',
1),
(3260, 'state_Bled_3260', 'Bled', 'Bled',
'', '003', 'state', 1),
(3261, 'state_Bohinj_3261', 'Bohinj',
'Bohinj', '', '004', 'state', 1),
(3262, 'state_Borovnica_3262', 'Borovnica',
'Borovnica', '', '005', 'state',
1),
(3263, 'state_Bovec_3263', 'Bovec', 'Bovec',
'', '006', 'state', 1),
(3264, 'state_Brda_3264', 'Brda', 'Brda',
'', '007', 'state', 1),
(3265, 'state_Brezovica_3265', 'Brezovica',
'Brezovica', '', '008', 'state',
1),
(3266, 'state_Bre__ice_3266', 'Brežice',
'Brežice', '', '009', 'state',
1),
(3267, 'state_Ti__ina_3267', 'Tišina',
'Tišina', '', '010', 'state', 1),
(3268, 'state_Celje_3268', 'Celje', 'Celje',
'', '011', 'state', 1),
(3269, 'state_Cerklje_na_Gorenjskem_3269', 'Cerklje na
Gorenjskem', 'Cerklje na Gorenjskem', '',
'012', 'state', 1),
(3270, 'state_Cerknica_3270', 'Cerknica',
'Cerknica', '', '013', 'state',
1),
(3271, 'state_Cerkno_3271', 'Cerkno',
'Cerkno', '', '014', 'state', 1),
(3272, 'state___ren__ovci_3272', 'Črenšovci',
'Črenšovci', '', '015', 'state',
1),
(3273, 'state___rna_na_Koro__kem_3273', 'Črna na
Koroškem', 'Črna na Koroškem', '',
'016', 'state', 1),
(3274, 'state___rnomelj_3274', 'Črnomelj',
'Črnomelj', '', '017', 'state',
1),
(3275, 'state_Destrnik_3275', 'Destrnik',
'Destrnik', '', '018', 'state',
1),
(3276, 'state_Diva__a_3276', 'Divača',
'Divača', '', '019', 'state', 1),
(3277, 'state_Dobrepolje_3277', 'Dobrepolje',
'Dobrepolje', '', '020', 'state',
1),
(3278, 'state_Dobrova_Polhov_Gradec_3278', 'Dobrova-Polhov
Gradec', 'Dobrova-Polhov Gradec', '',
'021', 'state', 1),
(3279, 'state_Dol_pri_Ljubljani_3279', 'Dol pri
Ljubljani', 'Dol pri Ljubljani', '',
'022', 'state', 1),
(3280, 'state_Dom__ale_3280', 'Domžale',
'Domžale', '', '023', 'state',
1),
(3281, 'state_Dornava_3281', 'Dornava',
'Dornava', '', '024', 'state', 1),
(3282, 'state_Dravograd_3282', 'Dravograd',
'Dravograd', '', '025', 'state',
1),
(3283, 'state_Duplek_3283', 'Duplek',
'Duplek', '', '026', 'state', 1),
(3284, 'state_Gorenja_vas_Poljane_3284', 'Gorenja
vas-Poljane', 'Gorenja vas-Poljane', '',
'027', 'state', 1),
(3285, 'state_Gori__nica_3285', 'Gorišnica',
'Gorišnica', '', '028', 'state',
1),
(3286, 'state_Gornja_Radgona_3286', 'Gornja Radgona',
'Gornja Radgona', '', '029',
'state', 1),
(3287, 'state_Gornji_Grad_3287', 'Gornji Grad',
'Gornji Grad', '', '030', 'state',
1),
(3288, 'state_Gornji_Petrovci_3288', 'Gornji Petrovci',
'Gornji Petrovci', '', '031',
'state', 1),
(3289, 'state_Grosuplje_3289', 'Grosuplje',
'Grosuplje', '', '032', 'state',
1),
(3290, 'state___alovci_3290', 'Šalovci',
'Šalovci', '', '033', 'state',
1),
(3291, 'state_Hrastnik_3291', 'Hrastnik',
'Hrastnik', '', '034', 'state',
1),
(3292, 'state_Hrpelje_Kozina_3292', 'Hrpelje-Kozina',
'Hrpelje-Kozina', '', '035',
'state', 1),
(3293, 'state_Idrija_3293', 'Idrija',
'Idrija', '', '036', 'state', 1),
(3294, 'state_Ig_3294', 'Ig', 'Ig',
'', '037', 'state', 1),
(3295, 'state_Ilirska_Bistrica_3295', 'Ilirska
Bistrica', 'Ilirska Bistrica', '',
'038', 'state', 1),
(3296, 'state_Ivan__na_Gorica_3296', 'Ivančna Gorica',
'Ivančna Gorica', '', '039',
'state', 1),
(3297, 'state_Izola_3297', 'Izola', 'Izola',
'', '040', 'state', 1),
(3298, 'state_Jesenice_3298', 'Jesenice',
'Jesenice', '', '041', 'state',
1),
(3299, 'state_Jur__inci_3299', 'Juršinci',
'Juršinci', '', '042', 'state',
1),
(3300, 'state_Kamnik_3300', 'Kamnik',
'Kamnik', '', '043', 'state', 1),
(3301, 'state_Kanal_ob_So__i_3301', 'Kanal ob Soči',
'Kanal ob Soči', '', '044',
'state', 1),
(3302, 'state_Kidri__evo_3302', 'Kidričevo',
'Kidričevo', '', '045', 'state',
1),
(3303, 'state_Kobarid_3303', 'Kobarid',
'Kobarid', '', '046', 'state', 1),
(3304, 'state_Kobilje_3304', 'Kobilje',
'Kobilje', '', '047', 'state', 1),
(3305, 'state_Ko__evje_3305', 'Kočevje',
'Kočevje', '', '048', 'state',
1),
(3306, 'state_Komen_3306', 'Komen', 'Komen',
'', '049', 'state', 1),
(3307, 'state_Koper_3307', 'Koper', 'Koper',
'', '050', 'state', 1),
(3308, 'state_Kozje_3308', 'Kozje', 'Kozje',
'', '051', 'state', 1),
(3309, 'state_Kranj_3309', 'Kranj', 'Kranj',
'', '052', 'state', 1),
(3310, 'state_Kranjska_Gora_3310', 'Kranjska Gora',
'Kranjska Gora', '', '053',
'state', 1),
(3311, 'state_Kr__ko_3311', 'Krško',
'Krško', '', '054', 'state', 1),
(3312, 'state_Kungota_3312', 'Kungota',
'Kungota', '', '055', 'state', 1),
(3313, 'state_Kuzma_3313', 'Kuzma', 'Kuzma',
'', '056', 'state', 1),
(3314, 'state_La__ko_3314', 'Laško',
'Laško', '', '057', 'state', 1),
(3315, 'state_Lenart_3315', 'Lenart',
'Lenart', '', '058', 'state', 1),
(3316, 'state_Lendava_3316', 'Lendava',
'Lendava', '', '059', 'state', 1),
(3317, 'state_Litija_3317', 'Litija',
'Litija', '', '060', 'state', 1),
(3318, 'state_Ljubljana_3318', 'Ljubljana',
'Ljubljana', '', '061', 'state',
1),
(3319, 'state_Ljubno_3319', 'Ljubno',
'Ljubno', '', '062', 'state', 1),
(3320, 'state_Ljutomer_3320', 'Ljutomer',
'Ljutomer', '', '063', 'state',
1),
(3321, 'state_Logatec_3321', 'Logatec',
'Logatec', '', '064', 'state', 1),
(3322, 'state_Lo__ka_Dolina_3322', 'Loška Dolina',
'Loška Dolina', '', '065',
'state', 1),
(3323, 'state_Lo__ki_Potok_3323', 'Loški Potok',
'Loški Potok', '', '066', 'state',
1),
(3324, 'state_Lu__e_3324', 'Luče', 'Luče',
'', '067', 'state', 1),
(3325, 'state_Lukovica_3325', 'Lukovica',
'Lukovica', '', '068', 'state',
1),
(3326, 'state_Maj__perk_3326', 'Majšperk',
'Majšperk', '', '069', 'state',
1),
(3327, 'state_Maribor_3327', 'Maribor',
'Maribor', '', '070', 'state', 1),
(3328, 'state_Medvode_3328', 'Medvode',
'Medvode', '', '071', 'state', 1),
(3329, 'state_Menge___3329', 'Mengeš',
'Mengeš', '', '072', 'state', 1),
(3330, 'state_Metlika_3330', 'Metlika',
'Metlika', '', '073', 'state', 1),
(3331, 'state_Me__ica_3331', 'Mežica',
'Mežica', '', '074', 'state', 1),
(3332, 'state_Miren_Kostanjevica_3332',
'Miren-Kostanjevica', 'Miren-Kostanjevica',
'', '075', 'state', 1),
(3333, 'state_Mislinja_3333', 'Mislinja',
'Mislinja', '', '076', 'state',
1),
(3334, 'state_Morav__e_3334', 'Moravče',
'Moravče', '', '077', 'state',
1),
(3335, 'state_Moravske_Toplice_3335', 'Moravske
Toplice', 'Moravske Toplice', '', '078',
'state', 1),
(3336, 'state_Mozirje_3336', 'Mozirje',
'Mozirje', '', '079', 'state', 1),
(3337, 'state_Murska_Sobota_3337', 'Murska Sobota',
'Murska Sobota', '', '080',
'state', 1),
(3338, 'state_Muta_3338', 'Muta', 'Muta',
'', '081', 'state', 1),
(3339, 'state_Naklo_3339', 'Naklo', 'Naklo',
'', '082', 'state', 1),
(3340, 'state_Nazarje_3340', 'Nazarje',
'Nazarje', '', '083', 'state', 1),
(3341, 'state_Nova_Gorica_3341', 'Nova Gorica',
'Nova Gorica', '', '084', 'state',
1),
(3342, 'state_Novo_mesto_3342', 'Novo mesto',
'Novo mesto', '', '085', 'state',
1),
(3343, 'state_Odranci_3343', 'Odranci',
'Odranci', '', '086', 'state', 1),
(3344, 'state_Ormo___3344', 'Ormož',
'Ormož', '', '087', 'state', 1),
(3345, 'state_Osilnica_3345', 'Osilnica',
'Osilnica', '', '088', 'state',
1),
(3346, 'state_Pesnica_3346', 'Pesnica',
'Pesnica', '', '089', 'state', 1),
(3347, 'state_Piran_3347', 'Piran', 'Piran',
'', '090', 'state', 1),
(3348, 'state_Pivka_3348', 'Pivka', 'Pivka',
'', '091', 'state', 1),
(3349, 'state_Pod__etrtek_3349', 'Podčetrtek',
'Podčetrtek', '', '092', 'state',
1),
(3350, 'state_Podvelka_3350', 'Podvelka',
'Podvelka', '', '093', 'state',
1),
(3351, 'state_Postojna_3351', 'Postojna',
'Postojna', '', '094', 'state',
1),
(3352, 'state_Preddvor_3352', 'Preddvor',
'Preddvor', '', '095', 'state',
1),
(3353, 'state_Ptuj_3353', 'Ptuj', 'Ptuj',
'', '096', 'state', 1),
(3354, 'state_Puconci_3354', 'Puconci',
'Puconci', '', '097', 'state', 1),
(3355, 'state_Ra__e_Fram_3355', 'Rače-Fram',
'Rače-Fram', '', '098', 'state',
1),
(3356, 'state_Rade__e_3356', 'Radeče',
'Radeče', '', '099', 'state', 1),
(3357, 'state_Radenci_3357', 'Radenci',
'Radenci', '', '100', 'state', 1),
(3358, 'state_Radlje_ob_Dravi_3358', 'Radlje ob Dravi',
'Radlje ob Dravi', '', '101',
'state', 1),
(3359, 'state_Radovljica_3359', 'Radovljica',
'Radovljica', '', '102', 'state',
1),
(3360, 'state_Ravne_na_Koro__kem_3360', 'Ravne na
Koroškem', 'Ravne na Koroškem', '',
'103', 'state', 1),
(3361, 'state_Ribnica_3361', 'Ribnica',
'Ribnica', '', '104', 'state', 1),
(3362, 'state_Roga__ka_Slatina_3362', 'Rogaška
Slatina', 'Rogaška Slatina', '', '106',
'state', 1),
(3363, 'state_Roga__ovci_3363', 'Rogašovci',
'Rogašovci', '', '105', 'state',
1),
(3364, 'state_Rogatec_3364', 'Rogatec',
'Rogatec', '', '107', 'state', 1),
(3365, 'state_Ru__e_3365', 'Ruše', 'Ruše',
'', '108', 'state', 1),
(3366, 'state_Semi___3366', 'Semič',
'Semič', '', '109', 'state', 1),
(3367, 'state_Sevnica_3367', 'Sevnica',
'Sevnica', '', '110', 'state', 1),
(3368, 'state_Se__ana_3368', 'Sežana',
'Sežana', '', '111', 'state', 1),
(3369, 'state_Slovenj_Gradec_3369', 'Slovenj Gradec',
'Slovenj Gradec', '', '112',
'state', 1),
(3370, 'state_Slovenska_Bistrica_3370', 'Slovenska
Bistrica', 'Slovenska Bistrica', '',
'113', 'state', 1),
(3371, 'state_Slovenske_Konjice_3371', 'Slovenske
Konjice', 'Slovenske Konjice', '',
'114', 'state', 1),
(3372, 'state_Star__e_3372', 'Starše',
'Starše', '', '115', 'state', 1),
(3373, 'state_Sveti_Jurij_3373', 'Sveti Jurij',
'Sveti Jurij', '', '116', 'state',
1),
(3374, 'state___en__ur_3374', 'Šenčur',
'Šenčur', '', '117', 'state',
1),
(3375, 'state___entilj_3375', 'Šentilj',
'Šentilj', '', '118', 'state',
1),
(3376, 'state___entjernej_3376', 'Šentjernej',
'Šentjernej', '', '119', 'state',
1),
(3377, 'state___entjur_pri_Celju_3377', 'Šentjur pri
Celju', 'Šentjur pri Celju', '', '120',
'state', 1),
(3378, 'state___kocjan_3378', 'Škocjan',
'Škocjan', '', '121', 'state',
1),
(3379, 'state___kofja_Loka_3379', 'Škofja Loka',
'Škofja Loka', '', '122', 'state',
1),
(3380, 'state___kofljica_3380', 'Škofljica',
'Škofljica', '', '123', 'state',
1),
(3381, 'state___marje_pri_Jel__ah_3381', 'Šmarje pri
Jelšah', 'Šmarje pri Jelšah', '',
'124', 'state', 1),
(3382, 'state___martno_ob_Paki_3382', 'Šmartno ob
Paki', 'Šmartno ob Paki', '', '125',
'state', 1),
(3383, 'state___o__tanj_3383', 'Šoštanj',
'Šoštanj', '', '126', 'state',
1),
(3384, 'state___tore_3384', 'Štore',
'Štore', '', '127', 'state', 1),
(3385, 'state_Tolmin_3385', 'Tolmin',
'Tolmin', '', '128', 'state', 1),
(3386, 'state_Trbovlje_3386', 'Trbovlje',
'Trbovlje', '', '129', 'state',
1),
(3387, 'state_Trebnje_3387', 'Trebnje',
'Trebnje', '', '130', 'state', 1),
(3388, 'state_Tr__i___3388', 'Tržič',
'Tržič', '', '131', 'state', 1),
(3389, 'state_Turni____e_3389', 'Turnišče',
'Turnišče', '', '132', 'state',
1),
(3390, 'state_Velenje_3390', 'Velenje',
'Velenje', '', '133', 'state', 1),
(3391, 'state_Velike_La____e_3391', 'Velike Lašče',
'Velike Lašče', '', '134',
'state', 1),
(3392, 'state_Videm_3392', 'Videm', 'Videm',
'', '135', 'state', 1),
(3393, 'state_Vipava_3393', 'Vipava',
'Vipava', '', '136', 'state', 1),
(3394, 'state_Vitanje_3394', 'Vitanje',
'Vitanje', '', '137', 'state', 1),
(3395, 'state_Vodice_3395', 'Vodice',
'Vodice', '', '138', 'state', 1),
(3396, 'state_Vojnik_3396', 'Vojnik',
'Vojnik', '', '139', 'state', 1),
(3397, 'state_Vrhnika_3397', 'Vrhnika',
'Vrhnika', '', '140', 'state', 1),
(3398, 'state_Vuzenica_3398', 'Vuzenica',
'Vuzenica', '', '141', 'state',
1),
(3399, 'state_Zagorje_ob_Savi_3399', 'Zagorje ob Savi',
'Zagorje ob Savi', '', '142',
'state', 1),
(3400, 'state_Zavr___3400', 'Zavrč',
'Zavrč', '', '143', 'state', 1),
(3401, 'state_Zre__e_3401', 'Zreče',
'Zreče', '', '144', 'state', 1),
(3402, 'state___elezniki_3402', 'Železniki',
'Železniki', '', '146', 'state',
1),
(3403, 'state___iri_3403', 'Žiri', 'Žiri',
'', '147', 'state', 1),
(3404, 'state_Benedikt_3404', 'Benedikt',
'Benedikt', '', '148', 'state',
1),
(3405, 'state_Bistrica_ob_Sotli_3405', 'Bistrica ob
Sotli', 'Bistrica ob Sotli', '', '149',
'state', 1),
(3406, 'state_Bloke_3406', 'Bloke', 'Bloke',
'', '150', 'state', 1),
(3407, 'state_Braslov__e_3407', 'Braslovče',
'Braslovče', '', '151', 'state',
1),
(3408, 'state_Cankova_3408', 'Cankova',
'Cankova', '', '152', 'state', 1),
(3409, 'state_Cerkvenjak_3409', 'Cerkvenjak',
'Cerkvenjak', '', '153', 'state',
1),
(3410, 'state_Dobje_3410', 'Dobje', 'Dobje',
'', '154', 'state', 1),
(3411, 'state_Dobrna_3411', 'Dobrna',
'Dobrna', '', '155', 'state', 1),
(3412, 'state_Dobrovnik_3412', 'Dobrovnik',
'Dobrovnik', '', '156', 'state',
1),
(3413, 'state_Dolenjske_Toplice_3413', 'Dolenjske
Toplice', 'Dolenjske Toplice', '',
'157', 'state', 1),
(3414, 'state_Grad_3414', 'Grad', 'Grad',
'', '158', 'state', 1),
(3415, 'state_Hajdina_3415', 'Hajdina',
'Hajdina', '', '159', 'state', 1),
(3416, 'state_Ho__e_Slivnica_3416', 'Hoče-Slivnica',
'Hoče-Slivnica', '', '160',
'state', 1),
(3417, 'state_Hodo___3417', 'Hodoš',
'Hodoš', '', '161', 'state', 1),
(3418, 'state_Horjul_3418', 'Horjul',
'Horjul', '', '162', 'state', 1),
(3419, 'state_Jezersko_3419', 'Jezersko',
'Jezersko', '', '163', 'state',
1),
(3420, 'state_Komenda_3420', 'Komenda',
'Komenda', '', '164', 'state', 1),
(3421, 'state_Kostel_3421', 'Kostel',
'Kostel', '', '165', 'state', 1),
(3422, 'state_Kri__evci_3422', 'Križevci',
'Križevci', '', '166', 'state',
1),
(3423, 'state_Lovrenc_na_Pohorju_3423', 'Lovrenc na
Pohorju', 'Lovrenc na Pohorju', '',
'167', 'state', 1),
(3424, 'state_Markovci_3424', 'Markovci',
'Markovci', '', '168', 'state',
1),
(3425, 'state_Miklav___na_Dravskem_polju_3425', 'Miklavž na
Dravskem polju', 'Miklavž na Dravskem polju', '',
'169', 'state', 1),
(3426, 'state_Mirna_Pe___3426', 'Mirna Peč',
'Mirna Peč', '', '170', 'state',
1),
(3427, 'state_Oplotnica_3427', 'Oplotnica',
'Oplotnica', '', '171', 'state',
1),
(3428, 'state_Podlehnik_3428', 'Podlehnik',
'Podlehnik', '', '172', 'state',
1),
(3429, 'state_Polzela_3429', 'Polzela',
'Polzela', '', '173', 'state', 1),
(3430, 'state_Prebold_3430', 'Prebold',
'Prebold', '', '174', 'state', 1),
(3431, 'state_Prevalje_3431', 'Prevalje',
'Prevalje', '', '175', 'state',
1),
(3432, 'state_Razkri__je_3432', 'Razkrižje',
'Razkrižje', '', '176', 'state',
1),
(3433, 'state_Ribnica_na_Pohorju_3433', 'Ribnica na
Pohorju', 'Ribnica na Pohorju', '',
'177', 'state', 1),
(3434, 'state_Selnica_ob_Dravi_3434', 'Selnica ob
Dravi', 'Selnica ob Dravi', '', '178',
'state', 1),
(3435, 'state_Sodra__ica_3435', 'Sodražica',
'Sodražica', '', '179', 'state',
1),
(3436, 'state_Sol__ava_3436', 'Solčava',
'Solčava', '', '180', 'state',
1),
(3437, 'state_Sveta_Ana_3437', 'Sveta Ana', 'Sveta
Ana', '', '181', 'state', 1),
(3438, 'state_Sveti_Andra___v_Slovenskih_goricah_3438',
'Sveti Andraž v Slovenskih goricah', 'Sveti Andraž v
Slovenskih goricah', '', '182', 'state',
1),
(3439, 'state___empeter_Vrtojba_3439',
'Šempeter-Vrtojba', 'Šempeter-Vrtojba', '',
'183', 'state', 1),
(3440, 'state_Tabor_3440', 'Tabor', 'Tabor',
'', '184', 'state', 1),
(3441, 'state_Trnovska_vas_3441', 'Trnovska vas',
'Trnovska vas', '', '185', 'state',
1),
(3442, 'state_Trzin_3442', 'Trzin', 'Trzin',
'', '186', 'state', 1),
(3443, 'state_Velika_Polana_3443', 'Velika Polana',
'Velika Polana', '', '187',
'state', 1),
(3444, 'state_Ver__ej_3444', 'Veržej',
'Veržej', '', '188', 'state', 1),
(3445, 'state_Vransko_3445', 'Vransko',
'Vransko', '', '189', 'state', 1),
(3446, 'state___alec_3446', 'Žalec',
'Žalec', '', '190', 'state', 1),
(3447, 'state___etale_3447', 'Žetale',
'Žetale', '', '191', 'state', 1),
(3448, 'state___irovnica_3448', 'Žirovnica',
'Žirovnica', '', '192', 'state',
1),
(3449, 'state___u__emberk_3449', 'Žužemberk',
'Žužemberk', '', '193', 'state',
1),
(3450, 'state___martno_pri_Litiji_3450', 'Šmartno pri
Litiji', 'Šmartno pri Litiji', '',
'194', 'state', 1),
(3453, 'state_Guadalcanal_3453', 'Guadalcanal',
'Guadalcanal', '', 'GC', 'state',
1),
(3454, 'state_Honiara_3454', 'Honiara',
'Honiara', '', 'HO', 'state', 1),
(3455, 'state_Isabel_3455', 'Isabel',
'Isabel', '', 'IS', 'state', 1),
(3456, 'state_Makira_3456', 'Makira',
'Makira', '', 'MK', 'state', 1),
(3457, 'state_Malaita_3457', 'Malaita',
'Malaita', '', 'ML', 'state', 1),
(3458, 'state_Rennell_and_Bellona_3458', 'Rennell and
Bellona', 'Rennell and Bellona', '',
'RB', 'state', 1),
(3459, 'state_Temotu_3459', 'Temotu',
'Temotu', '', 'TM', 'state', 1),
(3461, 'state_Awdal_3461', 'Awdal', 'Awdal',
'', 'AD', 'state', 1),
(3462, 'state_Bakool_3462', 'Bakool',
'Bakool', '', 'BK', 'state', 1),
(3463, 'state_Banaadir_3463', 'Banaadir',
'Banaadir', '', 'BN', 'state', 1),
(3464, 'state_Bari_3464', 'Bari', 'Bari',
'', 'BR', 'state', 1),
(3465, 'state_Bay_3465', 'Bay', 'Bay',
'', 'BY', 'state', 1),
(3466, 'state_Gedo_3466', 'Gedo', 'Gedo',
'', 'GD', 'state', 1),
(3467, 'state_Galguduud_3467', 'Galguduud',
'Galguduud', '', 'GG', 'state',
1),
(3468, 'state_Hiiraan_3468', 'Hiiraan',
'Hiiraan', '', 'HR', 'state', 1),
(3469, 'state_Jubbada_Dhexe_3469', 'Jubbada Dhexe',
'Jubbada Dhexe', '', 'JD', 'state',
1),
(3470, 'state_Jubbada_Hoose_3470', 'Jubbada Hoose',
'Jubbada Hoose', '', 'JH', 'state',
1),
(3471, 'state_Mudug_3471', 'Mudug', 'Mudug',
'', 'MD', 'state', 1),
(3472, 'state_Nugaal_3472', 'Nugaal',
'Nugaal', '', 'NG', 'state', 1),
(3473, 'state_Shabeellaha_Dhexe_3473', 'Shabeellaha
Dhexe', 'Shabeellaha Dhexe', '', 'SD',
'state', 1),
(3474, 'state_Sanaag_3474', 'Sanaag',
'Sanaag', '', 'SG', 'state', 1),
(3475, 'state_Shabeellaha_Hoose_3475', 'Shabeellaha
Hoose', 'Shabeellaha Hoose', '', 'SH',
'state', 1),
(3476, 'state_Sool_3476', 'Sool', 'Sool',
'', 'SL', 'state', 1),
(3477, 'state_Togdheer_3477', 'Togdheer',
'Togdheer', '', 'TG', 'state', 1),
(3478, 'state_Woqooyi_Galbeed_3478', 'Woqooyi Galbeed',
'Woqooyi Galbeed', '', 'WG',
'state', 1),
(3479, 'state_Eastern_Cape_3479', 'Eastern Cape',
'Eastern Cape', '', 'EC', 'state',
1),
(3480, 'state_Free_State_3480', 'Free State',
'Free State', '', 'FS', 'state',
1),
(3481, 'state_Gauteng_3481', 'Gauteng',
'Gauteng', '', 'GT', 'state', 1),
(3482, 'state_Limpopo_3482', 'Limpopo',
'Limpopo', '', 'LP', 'state', 1),
(3483, 'state_Mpumalanga_3483', 'Mpumalanga',
'Mpumalanga', '', 'MP', 'state',
1),
(3484, 'state_Northern_Cape_3484', 'Northern Cape',
'Northern Cape', '', 'NC', 'state',
1),
(3485, 'state_KwaZulu_Natal_3485', 'KwaZulu-Natal',
'KwaZulu-Natal', '', 'NL', 'state',
1),
(3487, 'state_Western_Cape_3487', 'Western Cape',
'Western Cape', '', 'WC', 'state',
1),
(4556, 'state_North_West_4556', 'North West',
'North West', '', 'NW', 'state',
1),
(3499, 'state_A_Coru__a_3499', 'A Coruña', 'A
Coruña', '', 'C', 'state', 1),
(3490, 'state_Alicante_3490', 'Alicante',
'Alicante', '', 'A', 'state', 1),
(3491, 'state_Albacete_3491', 'Albacete',
'Albacete', '', 'AB', 'state', 1),
(3492, 'state_Almer__a_3492', 'Almería',
'Almería', '', 'AL', 'state', 1),
(3548, 'state___lava_3548', 'Álava',
'Álava', '', 'VI', 'state', 1),
(3530, 'state_Asturias_3530', 'Asturias',
'Asturias', '', 'O', 'state', 1),
(3494, 'state___vila_3494', 'Ávila',
'Ávila', '', 'AV', 'state', 1),
(3496, 'state_Badajoz_3496', 'Badajoz',
'Badajoz', '', 'BA', 'state', 1),
(3533, 'state_Baleares_3533', 'Islas Baleares',
'Islas Baleares', '', 'PM',
'state', 1),
(3495, 'state_Barcelona_3495', 'Barcelona',
'Barcelona', '', 'B', 'state', 1),
(3498, 'state_Burgos_3498', 'Burgos',
'Burgos', '', 'BU', 'state', 1),
(3501, 'state_C__ceres_3501', 'Cáceres',
'Cáceres', '', 'CC', 'state', 1),
(3500, 'state_C__diz_3500', 'Cádiz',
'Cádiz', '', 'CA', 'state', 1),
(3536, 'state_Cantabria_3536', 'Cantabria',
'Cantabria', '', 'S', 'state', 1),
(3508, 'state_Castell__n_3508', 'Castellón',
'Castellón', '', 'CS', 'state',
1),
(3502, 'state_Ceuta_3502', 'Ceuta', 'Ceuta',
'', 'CE', 'state', 1),
(3507, 'state_Ciudad_Real_3507', 'Ciudad Real',
'Ciudad Real', '', 'CR', 'state',
1),
(3506, 'state_C__rdoba_3506', 'Córdoba',
'Córdoba', '', 'CO', 'state', 1),
(3510, 'state_Cuenca_3510', 'Cuenca',
'Cuenca', '', 'CU', 'state', 1),
(3541, 'state_Guip__zcoa_3541', 'Guipúzcoa',
'Guipúzcoa', '', 'SS', 'state',
1),
(3514, 'state_Girona_3514', 'Girona',
'Girona', '', 'GI', 'state', 1),
(4504, 'state_Granada_4504', 'Granada',
'Granada', '', 'GR', 'state', 1),
(3516, 'state_Guadalajara_3516', 'Guadalajara',
'Guadalajara', '', 'GU', 'state',
1),
(3517, 'state_Huelva_3517', 'Huelva',
'Huelva', '', 'H', 'state', 1),
(3518, 'state_Huesca_3518', 'Huesca',
'Huesca', '', 'HU', 'state', 1),
(3520, 'state_Ja__n_3520', 'Jaén', 'Jaén',
'', 'J', 'state', 1),
(3523, 'state_La_Rioja_3523', 'La Rioja', 'La
Rioja', '', 'LO', 'state', 1),
(3513, 'state_Las_Palmas_3513', 'Las Palmas', 'Las
Palmas', '', 'GC', 'state', 1),
(4505, 'state_Le__n_4505', 'León', 'León',
'', 'LE', 'state', 1),
(3521, 'state_Lleida_3521', 'Lleida',
'Lleida', '', 'L', 'state', 1),
(3524, 'state_Lugo_3524', 'Lugo', 'Lugo',
'', 'LU', 'state', 1),
(3525, 'state_Madrid_3525', 'Madrid',
'Madrid', '', 'M', 'state', 1),
(3526, 'state_M__laga_3526', 'Málaga',
'Málaga', '', 'MA', 'state', 1),
(3527, 'state_Melilla_3527', 'Melilla',
'Melilla', '', 'ML', 'state', 1),
(3528, 'state_Murcia_3528', 'Murcia',
'Murcia', '', 'MU', 'state', 1),
(3529, 'state_Navarre_3529', 'Navarra',
'Navarra', '', 'NA', 'state', 1),
(3531, 'state_Ourense_3531', 'Ourense',
'Ourense', '', 'OR', 'state', 1),
(3532, 'state_Palencia_3532', 'Palencia',
'Palencia', '', 'P', 'state', 1),
(3534, 'state_Pontevedra_3534', 'Pontevedra',
'Pontevedra', '', 'PO', 'state',
1),
(3537, 'state_Salamanca_3537', 'Salamanca',
'Salamanca', '', 'SA', 'state',
1),
(3539, 'state_Segovia_3539', 'Segovia',
'Segovia', '', 'SG', 'state', 1),
(3538, 'state_Seville_3538', 'Sevilla',
'Sevilla', '', 'SE', 'state', 1),
(3540, 'state_Soria_3540', 'Soria', 'Soria',
'', 'SO', 'state', 1),
(3542, 'state_Tarragona_3542', 'Tarragona',
'Tarragona', '', 'T', 'state', 1),
(3544, 'state_Santa_Cruz_De_Tenerife_3544', 'Santa Cruz de
Tenerife', 'Santa Cruz de Tenerife', '',
'TF', 'state', 1),
(3543, 'state_Teruel_3543', 'Teruel',
'Teruel', '', 'TE', 'state', 1),
(3545, 'state_Toledo_3545', 'Toledo',
'Toledo', '', 'TO', 'state', 1),
(3546, 'state_Valencia_3546', 'Valencia',
'Valencia', '', 'V', 'state', 1),
(3547, 'state_Valladolid_3547', 'Valladolid',
'Valladolid', '', 'VA', 'state',
1),
(3497, 'state_Vizcaya_3497', 'Vizcaya',
'Vizcaya', '', 'BI', 'state', 1),
(3550, 'state_Zamora_3550', 'Zamora',
'Zamora', '', 'ZA', 'state', 1),
(3549, 'state_Zaragoza_3549', 'Zaragoza',
'Zaragoza', '', 'Z', 'state',
1);";
		$this->db->setQuery($query);
		$this->db->query();

		$query="
INSERT IGNORE INTO `#__hikashop_zone` (`zone_id`, `zone_namekey`,
`zone_name`, `zone_name_english`, `zone_code_2`, `zone_code_3`,
`zone_type`, `zone_published`) VALUES
(3552, 'state_North_Central_3552', 'North Central',
'North Central', '', 'NC', 'state',
1),
(3553, 'state_North_3553', 'North', 'North',
'', 'NO', 'state', 1),
(3555, 'state_North_Western_3555', 'North Western',
'North Western', '', 'NW', 'state',
1),
(3557, 'state_Uva_3557', 'Uva', 'Uva',
'', 'UV', 'state', 1),
(3558, 'state_Sabaragamuwa_3558', 'Sabaragamuwa',
'Sabaragamuwa', '', 'SA', 'state',
1),
(3560, 'state_______________________3560', 'أعالي
النيل', 'أعالي النيل', '',
'ANL', 'state', 1),
(3561, 'state_________________________3561', 'البحر
الأحمر', 'البحر الأحمر', '',
'BAM', 'state', 1),
(3562, 'state__________________3562',
'البحيرات', 'البحيرات', '',
'BRT', 'state', 1),
(3563, 'state___________________________3563', 'ولاية
الجزيرة', 'ولاية الجزيرة', '',
'JZR', 'state', 1),
(3564, 'state________________3564', 'الخرطوم',
'الخرطوم', '', 'KRT',
'state', 1),
(3565, 'state________________3565', 'القضارف',
'القضارف', '', 'QDR',
'state', 1),
(3566, 'state______________3566', 'الوحدة',
'الوحدة', '', 'WDH', 'state',
1),
(3567, 'state_________________________3567', 'النيل
الأبيض', 'النيل الأبيض', '',
'ANB', 'state', 1),
(3568, 'state_________________________3568', 'النيل
الأزرق', 'النيل الأزرق', '',
'ANZ', 'state', 1),
(3569, 'state__________________3569',
'الشمالية', 'الشمالية', '',
'ASH', 'state', 1),
(3570, 'state___________________________________3570',
'الاستوائية الوسطى', 'الاستوائية
الوسطى', '', 'BJA', 'state', 1),
(3571, 'state_____________________________3571', 'غرب
الاستوائية', 'غرب الاستوائية',
'', 'GIS', 'state', 1),
(3572, 'state____________________________3572', 'غرب
بحر الغزال', 'غرب بحر الغزال',
'', 'GBG', 'state', 1),
(3573, 'state_____________________3573', 'غرب
دارفور', 'غرب دارفور', '',
'GDA', 'state', 1),
(3574, 'state_____________________3574', 'غرب
كردفان', 'غرب كردفان', '',
'GKU', 'state', 1),
(3575, 'state_______________________3575', 'جنوب
دارفور', 'جنوب دارفور', '',
'JDA', 'state', 1),
(3576, 'state_______________________3576', 'جنوب
كردفان', 'جنوب كردفان', '',
'JKU', 'state', 1),
(3577, 'state______________3577', 'جونقلي',
'جونقلي', '', 'JQL', 'state',
1),
(3578, 'state__________3578', 'كسلا',
'كسلا', '', 'KSL', 'state',
1),
(3579, 'state______________________________3579',
'ولاية نهر النيل', 'ولاية نهر
النيل', '', 'NNL', 'state', 1),
(3580, 'state______________________________3580', 'شمال
بحر الغزال', 'شمال بحر الغزال',
'', 'SBG', 'state', 1),
(3581, 'state_______________________3581', 'شمال
دارفور', 'شمال دارفور', '',
'SDA', 'state', 1),
(3582, 'state_______________________3582', 'شمال
كردفان', 'شمال كردفان', '',
'SKU', 'state', 1),
(3583, 'state_____________________________3583', 'شرق
الاستوائية', 'شرق الاستوائية',
'', 'SIS', 'state', 1),
(3584, 'state__________3584', 'سنار',
'سنار', '', 'SNR', 'state',
1),
(3585, 'state____________3585', 'واراب',
'واراب', '', 'WRB', 'state',
1),
(3586, 'state_Brokopondo_3586', 'Brokopondo',
'Brokopondo', '', 'BR', 'state',
1),
(3587, 'state_Commewijne_3587', 'Commewijne',
'Commewijne', '', 'CM', 'state',
1),
(3588, 'state_Coronie_3588', 'Coronie',
'Coronie', '', 'CR', 'state', 1),
(3589, 'state_Marowijne_3589', 'Marowijne',
'Marowijne', '', 'MA', 'state',
1),
(3590, 'state_Nickerie_3590', 'Nickerie',
'Nickerie', '', 'NI', 'state', 1),
(3591, 'state_Paramaribo_3591', 'Paramaribo',
'Paramaribo', '', 'PM', 'state',
1),
(3592, 'state_Para_3592', 'Para', 'Para',
'', 'PR', 'state', 1),
(3593, 'state_Saramacca_3593', 'Saramacca',
'Saramacca', '', 'SA', 'state',
1),
(3594, 'state_Sipaliwini_3594', 'Sipaliwini',
'Sipaliwini', '', 'SI', 'state',
1),
(3595, 'state_Wanica_3595', 'Wanica',
'Wanica', '', 'WA', 'state', 1),
(3596, 'state_Hhohho_3596', 'Hhohho',
'Hhohho', '', 'HH', 'state', 1),
(3597, 'state_Lubombo_3597', 'Lubombo',
'Lubombo', '', 'LU', 'state', 1),
(3598, 'state_Manzini_3598', 'Manzini',
'Manzini', '', 'MA', 'state', 1),
(3599, 'state_Shiselweni_3599', 'Shiselweni',
'Shiselweni', '', 'SH', 'state',
1),
(3600, 'state_Stockholms_l__n_3600', 'Stockholms län',
'Stockholms län', '', 'AB',
'state', 1),
(3601, 'state_Uppsala_l__n_3601', 'Uppsala län',
'Uppsala län', '', 'C', 'state',
1),
(3602, 'state_S__dermanlands_l__n_3602', 'Södermanlands
län', 'Södermanlands län', '', 'D',
'state', 1),
(3603, 'state___sterg__tlands_l__n_3603', 'Östergötlands
län', 'Östergötlands län', '', 'E',
'state', 1),
(3604, 'state_J__nk__pings_l__n_3604', 'Jönköpings
län', 'Jönköpings län', '', 'F',
'state', 1),
(3605, 'state_Kronobergs_l__n_3605', 'Kronobergs län',
'Kronobergs län', '', 'G',
'state', 1),
(3606, 'state_Kalmar_l__n_3606', 'Kalmar län',
'Kalmar län', '', 'H', 'state',
1),
(3607, 'state_Gotlands_l__n_3607', 'Gotlands län',
'Gotlands län', '', 'I', 'state',
1),
(3608, 'state_Blekinge_l__n_3608', 'Blekinge län',
'Blekinge län', '', 'K', 'state',
1),
(3609, 'state_Sk__ne_l__n_3609', 'Skåne län',
'Skåne län', '', 'M', 'state',
1),
(3610, 'state_Hallands_l__n_3610', 'Hallands län',
'Hallands län', '', 'N', 'state',
1),
(3611, 'state_V__stra_G__talands_l__n_3611', 'Västra
Götalands län', 'Västra Götalands län', '',
'O', 'state', 1),
(3612, 'state_V__rmlands_l__n__3612', 'Värmlands
län;', 'Värmlands län;', '', 'S',
'state', 1),
(3613, 'state___rebro_l__n_3613', 'Örebro län',
'Örebro län', '', 'T', 'state',
1),
(3614, 'state_V__stmanlands_l__n__3614', 'Västmanlands
län;', 'Västmanlands län;', '', 'U',
'state', 1),
(3615, 'state_Dalarnas_l__n_3615', 'Dalarnas län',
'Dalarnas län', '', 'W', 'state',
1),
(3616, 'state_G__vleborgs_l__n_3616', 'Gävleborgs
län', 'Gävleborgs län', '', 'X',
'state', 1),
(3617, 'state_V__sternorrlands_l__n_3617', 'Västernorrlands
län', 'Västernorrlands län', '', 'Y',
'state', 1),
(3618, 'state_J__mtlands_l__n_3618', 'Jämtlands län',
'Jämtlands län', '', 'Z',
'state', 1),
(3619, 'state_V__sterbottens_l__n_3619', 'Västerbottens
län', 'Västerbottens län', '', 'AC',
'state', 1),
(3620, 'state_Norrbottens_l__n_3620', 'Norrbottens
län', 'Norrbottens län', '', 'BD',
'state', 1),
(3621, 'state_Z__rich_3621', 'Zürich',
'Zürich', '', 'ZH', 'state', 1),
(3622, 'state_Bern_3622', 'Bern', 'Bern',
'', 'BE', 'state', 1),
(3623, 'state_Luzern_3623', 'Luzern',
'Luzern', '', 'LU', 'state', 1),
(3624, 'state_Uri_3624', 'Uri', 'Uri',
'', 'UR', 'state', 1),
(3625, 'state_Schwyz_3625', 'Schwyz',
'Schwyz', '', 'SZ', 'state', 1),
(3626, 'state_Obwalden_3626', 'Obwalden',
'Obwalden', '', 'OW', 'state', 1),
(3627, 'state_Nidwalden_3627', 'Nidwalden',
'Nidwalden', '', 'NW', 'state',
1),
(3628, 'state_Glasrus_3628', 'Glarus',
'Glarus', '', 'GL', 'state', 1),
(3629, 'state_Zug_3629', 'Zug', 'Zug',
'', 'ZG', 'state', 1),
(3630, 'state_Fribourg_3630', 'Fribourg',
'Fribourg', '', 'FR', 'state', 1),
(3631, 'state_Solothurn_3631', 'Solothurn',
'Solothurn', '', 'SO', 'state',
1),
(3632, 'state_Basel_Stadt_3632', 'Basel-Stadt',
'Basel-Stadt', '', 'BS', 'state',
1),
(3633, 'state_Basel_Landschaft_3633',
'Basel-Landschaft', 'Basel-Landschaft', '',
'BL', 'state', 1),
(3634, 'state_Schaffhausen_3634', 'Schaffhausen',
'Schaffhausen', '', 'SH', 'state',
1),
(3635, 'state_Appenzell_Ausserrhoden_3635', 'Appenzell
Ausserrhoden', 'Appenzell Ausserrhoden', '',
'AR', 'state', 1),
(3636, 'state_Appenzell_Innerrhoden_3636', 'Appenzell
Innerrhoden', 'Appenzell Innerrhoden', '',
'AI', 'state', 1),
(3637, 'state_Saint_Gallen_3637', 'St. Gallen',
'St. Gallen', '', 'SG', 'state',
1),
(3638, 'state_Graub__nden_3638', 'Graubünden',
'Graubünden', '', 'GR', 'state',
1),
(3639, 'state_Aargau_3639', 'Aargau',
'Aargau', '', 'AG', 'state', 1),
(3640, 'state_Thurgau_3640', 'Thurgau',
'Thurgau', '', 'TG', 'state', 1),
(3641, 'state_Ticino_3641', 'Ticino',
'Ticino', '', 'TI', 'state', 1),
(3642, 'state_Vaud_3642', 'Vaud', 'Vaud',
'', 'VD', 'state', 1),
(3643, 'state_Valais_3643', 'Valais',
'Valais', '', 'VS', 'state', 1),
(3644, 'state_Nuech__tel_3644', 'Neuchâtel',
'Neuchâtel', '', 'NE', 'state',
1),
(3645, 'state_Gen__ve_3645', 'Genève',
'Genève', '', 'GE', 'state', 1),
(3646, 'state_Jura_3646', 'Jura', 'Jura',
'', 'JU', 'state', 1),
(3647, 'state__________3647', 'دمشق',
'دمشق', '', 'DI', 'state', 1),
(3648, 'state__________3648', 'درعا',
'درعا', '', 'DR', 'state', 1),
(3649, 'state___________________3649', 'دير
الزور', 'دير الزور', '',
'DZ', 'state', 1),
(3650, 'state______________3650', 'الحسكة',
'الحسكة', '', 'HA', 'state',
1),
(3651, 'state________3651', 'حمص',
'حمص', '', 'HI', 'state', 1),
(3652, 'state________3652', 'حلب',
'حلب', '', 'HL', 'state', 1),
(3653, 'state__________3653', 'حماه',
'حماه', '', 'HM', 'state', 1),
(3654, 'state__________3654', 'ادلب',
'ادلب', '', 'ID', 'state', 1),
(3655, 'state__________________3655',
'اللاذقية', 'اللاذقية', '',
'LA', 'state', 1),
(3656, 'state__________________3656',
'القنيطرة', 'القنيطرة', '',
'QU', 'state', 1),
(3657, 'state____________3657', 'الرقة',
'الرقة', '', 'RA', 'state',
1),
(3658, 'state_________________3658', 'ریف دمشق',
'ریف دمشق', '', 'RD',
'state', 1),
(3659, 'state__________________3659',
'السويداء', 'السويداء', '',
'SU', 'state', 1),
(3660, 'state____________3660', 'طرطوس',
'طرطوس', '', 'TA', 'state',
1),
(3661, 'state___________3661', '彰化縣',
'Changhua County', '', 'CHH',
'state', 1),
(3662, 'state___________3662', '嘉義市',
'Chiayi City', '', 'CYC', 'state',
1),
(3663, 'state___________3663', '嘉義縣',
'Chiayi County', '', 'CYH',
'state', 1),
(3664, 'state___________3664', '新竹縣',
'Hsinchu County', '', 'HCH',
'state', 1),
(3665, 'state___________3665', '新竹市',
'Hsinchu City', '', 'HCC', 'state',
1),
(3666, 'state___________3666', '花蓮縣',
'Hualien County', '', 'HLH',
'state', 1),
(3667, 'state___________3667', '宜蘭縣', 'Yilan
County', '', 'YLH', 'state', 1),
(3668, 'state___________3668', '基隆市',
'Keelung City', '', 'KLC', 'state',
1),
(3669, 'state___________3669', '高雄市',
'Kaohsiung City', '', 'KHC',
'state', 1),
(3670, 'state___________3670', '金門縣',
'Jinmen County', '', 'JMH',
'state', 1),
(3671, 'state___________3671', '苗栗縣',
'Miaoli County', '', 'MLH',
'state', 1),
(3672, 'state___________3672', '南投縣',
'Nantou County', '', 'NTH',
'state', 1),
(3673, 'state___________3673', '澎湖縣',
'Penghu County', '', 'PHH',
'state', 1),
(3674, 'state___________3674', '屏東縣',
'Pingtung County', '', 'PTH',
'state', 1),
(3675, 'state___________3675', '桃園縣',
'Taoyuan County', '', 'TYH',
'state', 1),
(3676, 'state___________3676', '台南市',
'Tainan City', '', 'TNC', 'state',
1),
(3677, 'state___________3677', '連江縣',
'Lianjiang County', '', 'LJH',
'state', 1),
(3678, 'state___________3678', '台北市',
'Taipei City', '', 'TPC', 'state',
1),
(3679, 'state___________3679', '新北市', 'New
Taipei City', '', 'NTC', 'state', 1),
(3680, 'state___________3680', '台東縣',
'Taitung County', '', 'TTH',
'state', 1),
(3681, 'state___________3681', '台中市',
'Taichung City', '', 'TCC',
'state', 1),
(3682, 'state___________3682', '雲林縣',
'Yunlin County', '', 'YLH',
'state', 1),
(3684, 'state_____________________________3684',
'کوهستان بدخشان', 'کوهستان
بدخشان', '', 'GB', 'state', 1),
(3685, 'state____________3685', 'ختلان',
'ختلان', '', 'KT', 'state',
1),
(3686, 'state________3686', 'سغد',
'سغد', '', 'SU', 'state', 1),
(3687, 'state_Arusha_3687', 'Arusha',
'Arusha', '', '01', 'state', 1),
(3688, 'state_Dar_es_Salaam_3688', 'Dar es Salaam',
'Dar es Salaam', '', '02', 'state',
1),
(3689, 'state_Dodoma_3689', 'Dodoma',
'Dodoma', '', '03', 'state', 1),
(3690, 'state_Iringa_3690', 'Iringa',
'Iringa', '', '04', 'state', 1),
(3691, 'state_Kagera_3691', 'Kagera',
'Kagera', '', '05', 'state', 1),
(3692, 'state_Pemba_Sever_3692', 'Pemba Sever',
'Pemba Sever', '', '06', 'state',
1),
(3693, 'state_Zanzibar_Sever_3693', 'Zanzibar Sever',
'Zanzibar Sever', '', '07',
'state', 1),
(3694, 'state_Kigoma_3694', 'Kigoma',
'Kigoma', '', '08', 'state', 1),
(3695, 'state_Kilimanjaro_3695', 'Kilimanjaro',
'Kilimanjaro', '', '09', 'state',
1),
(3696, 'state_Pemba_Jih_3696', 'Pemba Jih', 'Pemba
Jih', '', '10', 'state', 1),
(3697, 'state_Zanzibar_Jih_3697', 'Zanzibar Jih',
'Zanzibar Jih', '', '11', 'state',
1),
(3698, 'state_Lindi_3698', 'Lindi', 'Lindi',
'', '12', 'state', 1),
(3699, 'state_Mara_3699', 'Mara', 'Mara',
'', '13', 'state', 1),
(3700, 'state_Mbeya_3700', 'Mbeya', 'Mbeya',
'', '14', 'state', 1),
(3701, 'state_Zanzibar_Z__pad_3701', 'Zanzibar Západ',
'Zanzibar Západ', '', '15',
'state', 1),
(3702, 'state_Morogoro_3702', 'Morogoro',
'Morogoro', '', '16', 'state', 1),
(3703, 'state_Mtwara_3703', 'Mtwara',
'Mtwara', '', '17', 'state', 1),
(3704, 'state_Mwanza_3704', 'Mwanza',
'Mwanza', '', '18', 'state', 1),
(3705, 'state_Pwani_3705', 'Pwani', 'Pwani',
'', '19', 'state', 1),
(3706, 'state_Rukwa_3706', 'Rukwa', 'Rukwa',
'', '20', 'state', 1),
(3707, 'state_Ruvuma_3707', 'Ruvuma',
'Ruvuma', '', '21', 'state', 1),
(3708, 'state_Shinyanga_3708', 'Shinyanga',
'Shinyanga', '', '22', 'state',
1),
(3709, 'state_Singida_3709', 'Singida',
'Singida', '', '23', 'state', 1),
(3710, 'state_Tabora_3710', 'Tabora',
'Tabora', '', '24', 'state', 1),
(3711, 'state_Tanga_3711', 'Tanga', 'Tanga',
'', '25', 'state', 1),
(3712, 'state_Manyara_3712', 'Manyara',
'Manyara', '', '26', 'state', 1),
(3713, 'state_________________________________________3713',
'กรุงเทพมหานคร',
'กรุงเทพมหานคร', '',
'TH-10', 'state', 1),
(3714, 'state___________________________________3714',
'สมุทรปราการ',
'สมุทรปราการ', '',
'TH-11', 'state', 1),
(3715, 'state_______________________3715',
'นนทบุรี', 'นนทบุรี',
'', 'TH-12', 'state', 1),
(3716, 'state__________________________3716',
'ปทุมธานี', 'ปทุมธานี',
'', 'TH-13', 'state', 1),
(3717,
'state_______________________________________________3717',
'พระนครศรีอยุธยา',
'พระนครศรีอยุธยา', '',
'TH-14', 'state', 1),
(3718, 'state_______________________3718',
'อ่างทอง', 'อ่างทอง',
'', 'TH-15', 'state', 1),
(3719, 'state____________________3719',
'ลพบุรี', 'ลพบุรี',
'', 'TH-16', 'state', 1),
(3720, 'state_____________________________3720',
'สิงห์บุรี',
'สิงห์บุรี', '', 'TH-17',
'state', 1),
(3721, 'state____________________3721',
'ชัยนาท', 'ชัยนาท',
'', 'TH-18', 'state', 1),
(3722, 'state_______________________3722',
'สระบุรี', 'สระบุรี',
'', 'TH-19', 'state', 1),
(3723, 'state____________________3723',
'ชลบุรี', 'ชลบุรี',
'', 'TH-20', 'state', 1),
(3724, 'state_________________3724', 'ระยอง',
'ระยอง', '', 'TH-21',
'state', 1),
(3725, 'state__________________________3725',
'จันทบุรี', 'จันทบุรี',
'', 'TH-22', 'state', 1),
(3726, 'state______________3726', 'ตราด',
'ตราด', '', 'TH-23',
'state', 1),
(3727, 'state________________________________3727',
'ฉะเชิงเทรา',
'ฉะเชิงเทรา', '',
'TH-24', 'state', 1),
(3728, 'state________________________________3728',
'ปราจีนบุรี',
'ปราจีนบุรี', '',
'TH-25', 'state', 1),
(3729, 'state_______________________3729',
'นครนายก', 'นครนายก',
'', 'TH-26', 'state', 1),
(3730, 'state_______________________3730',
'สระแก้ว', 'สระแก้ว',
'', 'TH-27', 'state', 1),
(3731, 'state________________________________3731',
'นครราชสีมา',
'นครราชสีมา', '',
'TH-30', 'state', 1),
(3732, 'state_____________________________3732',
'บุรีรัมย์',
'บุรีรัมย์', '', 'TH-31',
'state', 1),
(3733, 'state__________________________3733',
'สุรินทร์', 'สุรินทร์',
'', 'TH-32', 'state', 1),
(3734, 'state__________________________3734',
'ศรีสะเกษ', 'ศรีสะเกษ',
'', 'TH-33', 'state', 1),
(3735, 'state___________________________________3735',
'อุบลราชธานี',
'อุบลราชธานี', '',
'TH-34', 'state', 1),
(3736, 'state_________________3736', 'ยโสธร',
'ยโสธร', '', 'TH-35',
'state', 1),
(3737, 'state_______________________3737',
'ชัยภูมิ', 'ชัยภูมิ',
'', 'TH-36', 'state', 1),
(3738, 'state________________________________3738',
'อำนาจเจริญ',
'อำนาจเจริญ', '',
'TH-37', 'state', 1),
(3739, 'state___________________________________3739',
'หนองบัวลำภู',
'หนองบัวลำภู', '',
'TH-39', 'state', 1),
(3740, 'state_______________________3740',
'ขอนแก่น', 'ขอนแก่น',
'', 'TH-40', 'state', 1),
(3741, 'state__________________________3741',
'อุดรธานี', 'อุดรธานี',
'', 'TH-41', 'state', 1),
(3742, 'state___________3742', 'เลย',
'เลย', '', 'TH-42', 'state',
1),
(3743, 'state_______________________3743',
'หนองคาย', 'หนองคาย',
'', 'TH-43', 'state', 1),
(3744, 'state_____________________________3744',
'มหาสารคาม',
'มหาสารคาม', '', 'TH-44',
'state', 1),
(3745, 'state__________________________3745',
'ร้อยเอ็ด', 'ร้อยเอ็ด',
'', 'TH-45', 'state', 1),
(3746, 'state_____________________________3746',
'กาฬสินธุ์',
'กาฬสินธุ์', '', 'TH-46',
'state', 1),
(3747, 'state____________________3747',
'สกลนคร', 'สกลนคร',
'', 'TH-47', 'state', 1),
(3748, 'state____________________3748',
'นครพนม', 'นครพนม',
'', 'TH-48', 'state', 1),
(3749, 'state__________________________3749',
'มุกดาหาร', 'มุกดาหาร',
'', 'TH-49', 'state', 1),
(3750, 'state_____________________________3750',
'เชียงใหม่',
'เชียงใหม่', '', 'TH-50',
'state', 1),
(3751, 'state_________________3751', 'ลำพูน',
'ลำพูน', '', 'TH-51',
'state', 1),
(3752, 'state_________________3752', 'ลำปาง',
'ลำปาง', '', 'TH-52',
'state', 1),
(3753, 'state_____________________________3753',
'อุตรดิตถ์',
'อุตรดิตถ์', '', 'TH-53',
'state', 1),
(3754, 'state______________3754', 'น่าน',
'น่าน', '', 'TH-55',
'state', 1),
(3755, 'state_________________3755', 'พะเยา',
'พะเยา', '', 'TH-56',
'state', 1),
(3756, 'state__________________________3756',
'เชียงราย', 'เชียงราย',
'', 'TH-57', 'state', 1),
(3757, 'state________________________________3757',
'แม่ฮ่องสอน',
'แม่ฮ่องสอน', '',
'TH-58', 'state', 1),
(3758, 'state_____________________________3758',
'นครสวรรค์',
'นครสวรรค์', '', 'TH-60',
'state', 1),
(3759, 'state_____________________________3759',
'อุทัยธานี',
'อุทัยธานี', '', 'TH-61',
'state', 1),
(3760, 'state_____________________________3760',
'กำแพงเพชร',
'กำแพงเพชร', '', 'TH-62',
'state', 1),
(3761, 'state___________3761', 'ตาก',
'ตาก', '', 'TH-63', 'state',
1),
(3762, 'state_______________________3762',
'สุโขทัย', 'สุโขทัย',
'', 'TH-64', 'state', 1),
(3763, 'state_________________3763', 'ชุมพร',
'ชุมพร', '', 'TH-66',
'state', 1),
(3764, 'state____________________3764',
'พิจิตร', 'พิจิตร',
'', 'TH-67', 'state', 1),
(3765, 'state_______________________3765',
'ราชบุรี', 'ราชบุรี',
'', 'TH-70', 'state', 1),
(3766, 'state_____________________________3766',
'กาญจนบุรี',
'กาญจนบุรี', '', 'TH-71',
'state', 1),
(3767, 'state________________________________3767',
'สุพรรณบุรี',
'สุพรรณบุรี', '',
'TH-72', 'state', 1),
(3768, 'state____________________3768',
'นครปฐม', 'นครปฐม',
'', 'TH-73', 'state', 1),
(3769, 'state_____________________________3769',
'สมุทรสาคร',
'สมุทรสาคร', '', 'TH-74',
'state', 1),
(3770, 'state___________________________________3770',
'สมุทรสงคราม',
'สมุทรสงคราม', '',
'TH-75', 'state', 1),
(3771, 'state__________________________3771',
'เพชรบุรี', 'เพชรบุรี',
'', 'TH-76', 'state', 1),
(3772,
'state_______________________________________________3772',
'ประจวบคีรีขันธ์',
'ประจวบคีรีขันธ์', '',
'TH-77', 'state', 1),
(3773, 'state_________________________________________3773',
'นครศรีธรรมราช',
'นครศรีธรรมราช', '',
'TH-80', 'state', 1),
(3774, 'state____________________3774',
'กระบี่', 'กระบี่',
'', 'TH-81', 'state', 1),
(3775, 'state_________________3775', 'พังงา',
'พังงา', '', 'TH-82',
'state', 1),
(3776, 'state____________________3776',
'ภูเก็ต', 'ภูเก็ต',
'', 'TH-83', 'state', 1),
(3777, 'state______________________________________3777',
'สุราษฎร์ธานี',
'สุราษฎร์ธานี', '',
'TH-84', 'state', 1),
(3778, 'state_________________3778', 'ระนอง',
'ระนอง', '', 'TH-85',
'state', 1),
(3779, 'state_________________3779', 'ชุมพร',
'ชุมพร', '', 'TH-86',
'state', 1),
(3780, 'state_________________3780', 'สงขลา',
'สงขลา', '', 'TH-90',
'state', 1),
(3781, 'state______________3781', 'สตูล',
'สตูล', '', 'TH-91',
'state', 1),
(3782, 'state______________3782', 'ตรัง',
'ตรัง', '', 'TH-92',
'state', 1),
(3783, 'state____________________3783',
'พัทลุง', 'พัทลุง',
'', 'TH-93', 'state', 1),
(3784, 'state_______________________3784',
'ปัตตานี', 'ปัตตานี',
'', 'TH-94', 'state', 1),
(3785, 'state______________3785', 'ยะลา',
'ยะลา', '', 'TH-95',
'state', 1),
(3786, 'state__________________________3786',
'นราธิวาส', 'นราธิวาส',
'', 'TH-96', 'state', 1),
(3787, 'state_Centrale_3787', 'Centrale',
'Centrale', '', 'C', 'state', 1),
(3788, 'state_Kara_3788', 'Kara', 'Kara',
'', 'K', 'state', 1),
(3789, 'state_Maritime_3789', 'Maritime',
'Maritime', '', 'M', 'state', 1),
(3790, 'state_Plateaux_3790', 'Plateaux',
'Plateaux', '', 'P', 'state', 1),
(3791, 'state_Savanes_3791', 'Savanes',
'Savanes', '', 'S', 'state', 1),
(3792, 'state_Atafu_3792', 'Atafu', 'Atafu',
'', 'A', 'state', 1),
(3793, 'state_Fakaofo_3793', 'Fakaofo',
'Fakaofo', '', 'F', 'state', 1),
(3794, 'state_Nukunonu_3794', 'Nukunonu',
'Nukunonu', '', 'N', 'state', 1),
(3795, 'state_Ha_apai_3795', 'Ha''apai',
'Ha''apai', '', 'H',
'state', 1),
(3796, 'state_Tongatapu_3796', 'Tongatapu',
'Tongatapu', '', 'T', 'state', 1),
(3797, 'state_Vava_u_3797', 'Vava''u',
'Vava''u', '', 'V',
'state', 1),
(3798, 'state_Arima_3798', 'Arima', 'Arima',
'', 'ARI', 'state', 1),
(3799, 'state_Chaguanas_3799', 'Chaguanas',
'Chaguanas', '', 'CHA', 'state',
1),
(3800, 'state_Couva_Tabaquite_Talparo_3800',
'Couva-Tabaquite-Talparo', 'Couva-Tabaquite-Talparo',
'', 'CTT', 'state', 1),
(3801, 'state_Diego_Martin_3801', 'Diego Martin',
'Diego Martin', '', 'DMN', 'state',
1),
(3802, 'state_Eastern_Tobago_3802', 'Eastern Tobago',
'Eastern Tobago', '', 'ETO',
'state', 1),
(3803, 'state_Rio_Claro_Mayaro_3803', 'Rio
Claro-Mayaro', 'Rio Claro-Mayaro', '',
'RCM', 'state', 1),
(3804, 'state_Penal_Debe_3804', 'Penal-Debe',
'Penal-Debe', '', 'PED', 'state',
1),
(3805, 'state_Point_Fortin_3805', 'Point Fortin',
'Point Fortin', '', 'PTF', 'state',
1),
(3806, 'state_Port_of_Spain_3806', 'Port of Spain',
'Port of Spain', '', 'POS',
'state', 1),
(3807, 'state_Princes_Town_3807', 'Princes Town',
'Princes Town', '', 'PRT', 'state',
1),
(3808, 'state_San_Fernando_3808', 'San Fernando',
'San Fernando', '', 'SFO', 'state',
1),
(3809, 'state_Sangre_Grande_3809', 'Sangre Grande',
'Sangre Grande', '', 'SGE',
'state', 1),
(3810, 'state_San_Juan_Laventille_3810', 'San
Juan-Laventille', 'San Juan-Laventille', '',
'SJL', 'state', 1),
(3811, 'state_Siparia_3811', 'Siparia',
'Siparia', '', 'SIP', 'state', 1),
(3812, 'state_Tunapuna_Piarco_3812', 'Tunapuna-Piarco',
'Tunapuna-Piarco', '', 'TUP',
'state', 1),
(3813, 'state_Western_Tobago_3813', 'Western Tobago',
'Western Tobago', '', 'WTO',
'state', 1),
(3814, 'state_____________________3814', 'ولاية
تونس', 'ولاية تونس', '',
'11', 'state', 1),
(3815, 'state_________________________3815', 'ولاية
أريانة', 'ولاية أريانة', '',
'12', 'state', 1),
(3816, 'state__________________________3816', 'ولاية
بن عروس', 'ولاية بن عروس', '',
'13', 'state', 1),
(3817, 'state_______________________3817', 'ولاية
منوبة', 'ولاية منوبة', '',
'14', 'state', 1),
(3818, 'state_____________________3818', 'ولاية
نابل', 'ولاية نابل', '',
'21', 'state', 1),
(3819, 'state_______________________3819', 'ولاية
زغوان', 'ولاية زغوان', '',
'22', 'state', 1),
(3820, 'state_______________________3820', 'ولاية
بنزرت', 'ولاية بنزرت', '',
'23', 'state', 1),
(3821, 'state_____________________3821', 'ولاية
باجة', 'ولاية باجة', '',
'31', 'state', 1),
(3822, 'state_________________________3822', 'ولاية
جندوبة', 'ولاية جندوبة', '',
'32', 'state', 1),
(3823, 'state_______________________3823', 'ولاية
الكاف', 'ولاية الكاف', '',
'33', 'state', 1),
(3824, 'state_________________________3824', 'ولاية
سليانة', 'ولاية سليانة', '',
'34', 'state', 1),
(3825, 'state_____________________________3825', 'ولاية
القيروان', 'ولاية القيروان',
'', '41', 'state', 1),
(3826, 'state___________________________3826', 'ولاية
القصرين', 'ولاية القصرين', '',
'42', 'state', 1),
(3827, 'state________________________________3827',
'ولاية سيدي بوزيد', 'ولاية سيدي
بوزيد', '', '43', 'state', 1),
(3828, 'state_____________________3828', 'ولاية
سوسة', 'ولاية سوسة', '',
'51', 'state', 1),
(3829, 'state_____________________________3829', 'ولاية
المنستير', 'ولاية المنستير',
'', '52', 'state', 1),
(3830, 'state___________________________3830', 'ولاية
المهدية', 'ولاية المهدية', '',
'53', 'state', 1),
(3831, 'state_______________________3831', 'ولاية
صفاقس', 'ولاية صفاقس', '',
'61', 'state', 1),
(3832, 'state_____________________3832', 'ولاية
قفصة', 'ولاية قفصة', '',
'71', 'state', 1),
(3833, 'state_____________________3833', 'ولاية
توزر', 'ولاية توزر', '',
'72', 'state', 1),
(3834, 'state_____________________3834', 'ولاية
قبلي', 'ولاية قبلي', '',
'73', 'state', 1),
(3835, 'state_____________________3835', 'ولاية
قابس', 'ولاية قابس', '',
'81', 'state', 1),
(3836, 'state_______________________3836', 'ولاية
مدنين', 'ولاية مدنين', '',
'82', 'state', 1),
(3837, 'state_________________________3837', 'ولاية
تطاوين', 'ولاية تطاوين', '',
'83', 'state', 1),
(3838, 'state_Adana_3838', 'Adana', 'Adana',
'', '01', 'state', 1),
(3839, 'state_Ad__yaman_3839', 'Adıyaman',
'Adıyaman', '', '02', 'state',
1),
(3840, 'state_Afyonkarahisar_3840', 'Afyonkarahisar',
'Afyonkarahisar', '', '03',
'state', 1),
(3841, 'state_A__r___3841', 'Ağrı',
'Ağrı', '', '04', 'state', 1),
(3842, 'state_Amasya_3842', 'Amasya',
'Amasya', '', '05', 'state', 1),
(3843, 'state_Ankara_3843', 'Ankara',
'Ankara', '', '06', 'state', 1),
(3844, 'state_Antalya_3844', 'Antalya',
'Antalya', '', '07', 'state', 1),
(3845, 'state_Artvin_3845', 'Artvin',
'Artvin', '', '08', 'state', 1),
(3846, 'state_Ayd__n_3846', 'Aydın',
'Aydın', '', '09', 'state', 1),
(3847, 'state_Bal__kesir_3847', 'Balıkesir',
'Balıkesir', '', '10', 'state',
1),
(3848, 'state_Bilecik_3848', 'Bilecik',
'Bilecik', '', '11', 'state', 1),
(3849, 'state_Bing__l_3849', 'Bingöl',
'Bingöl', '', '12', 'state', 1),
(3850, 'state_Bitlis_3850', 'Bitlis',
'Bitlis', '', '13', 'state', 1),
(3851, 'state_Bolu_3851', 'Bolu', 'Bolu',
'', '14', 'state', 1),
(3852, 'state_Burdur_3852', 'Burdur',
'Burdur', '', '15', 'state', 1),
(3853, 'state_Bursa_3853', 'Bursa', 'Bursa',
'', '16', 'state', 1),
(3854, 'state___anakkale_3854', 'Çanakkale',
'Çanakkale', '', '17', 'state',
1),
(3855, 'state___ank__r___3855', 'Çankırı',
'Çankırı', '', '18', 'state',
1),
(3856, 'state___orum_3856', 'Çorum',
'Çorum', '', '19', 'state', 1),
(3857, 'state_Denizli_3857', 'Denizli',
'Denizli', '', '20', 'state', 1),
(3858, 'state_Diyarbak__r_3858', 'Diyarbakır',
'Diyarbakır', '', '21', 'state',
1),
(3859, 'state_Edirne_3859', 'Edirne',
'Edirne', '', '22', 'state', 1),
(3860, 'state_Elaz_____3860', 'Elazığ',
'Elazığ', '', '23', 'state', 1),
(3861, 'state_Erzincan_3861', 'Erzincan',
'Erzincan', '', '24', 'state', 1),
(3862, 'state_Erzurum_3862', 'Erzurum',
'Erzurum', '', '25', 'state', 1),
(3863, 'state_Eski__ehir_3863', 'Eskişehir',
'Eskişehir', '', '26', 'state',
1),
(3864, 'state_Gaziantep_3864', 'Gaziantep',
'Gaziantep', '', '27', 'state',
1),
(3865, 'state_Giresun_3865', 'Giresun',
'Giresun', '', '28', 'state', 1),
(3866, 'state_G__m____hane_3866', 'Gümüşhane',
'Gümüşhane', '', '29', 'state',
1),
(3867, 'state_Hakkari_3867', 'Hakkari',
'Hakkari', '', '30', 'state', 1),
(3868, 'state_Hatay_3868', 'Hatay', 'Hatay',
'', '31', 'state', 1),
(3869, 'state_Isparta_3869', 'Isparta',
'Isparta', '', '32', 'state', 1),
(3870, 'state_Mersin_3870', 'Mersin',
'Mersin', '', '33', 'state', 1),
(3871, 'state___stanbul_3871', 'İstanbul',
'İstanbul', '', '34', 'state',
1),
(3872, 'state___zmir_3872', 'İzmir',
'İzmir', '', '35', 'state', 1),
(3873, 'state_Kars_3873', 'Kars', 'Kars',
'', '36', 'state', 1),
(3874, 'state_Kastamonu_3874', 'Kastamonu',
'Kastamonu', '', '37', 'state',
1),
(3875, 'state_Kayseri_3875', 'Kayseri',
'Kayseri', '', '38', 'state', 1),
(3876, 'state_K__rklareli_3876', 'Kırklareli',
'Kırklareli', '', '39', 'state',
1),
(3877, 'state_K__r__ehir_3877', 'Kırşehir',
'Kırşehir', '', '40', 'state',
1),
(3878, 'state_Kocaeli_3878', 'Kocaeli',
'Kocaeli', '', '41', 'state', 1),
(3879, 'state_Konya_3879', 'Konya', 'Konya',
'', '42', 'state', 1),
(3880, 'state_K__tahya_3880', 'Kütahya',
'Kütahya', '', '43', 'state', 1),
(3881, 'state_Malatya_3881', 'Malatya',
'Malatya', '', '44', 'state', 1),
(3882, 'state_Manisa_3882', 'Manisa',
'Manisa', '', '45', 'state', 1),
(3883, 'state_Kahramanmara___3883', 'Kahramanmaraş',
'Kahramanmaraş', '', '46',
'state', 1),
(3884, 'state_Mardin_3884', 'Mardin',
'Mardin', '', '47', 'state', 1),
(3885, 'state_Mu__la_3885', 'Muğla',
'Muğla', '', '48', 'state', 1),
(3886, 'state_Mu___3886', 'Muş', 'Muş',
'', '49', 'state', 1),
(3887, 'state_Nev__ehir_3887', 'Nevşehir',
'Nevşehir', '', '50', 'state',
1),
(3888, 'state_Ni__de_3888', 'Niğde',
'Niğde', '', '51', 'state', 1),
(3889, 'state_Ordu_3889', 'Ordu', 'Ordu',
'', '52', 'state', 1),
(3890, 'state_Rize_3890', 'Rize', 'Rize',
'', '53', 'state', 1),
(3891, 'state_Sakarya_3891', 'Sakarya',
'Sakarya', '', '54', 'state', 1),
(3892, 'state_Samsun_3892', 'Samsun',
'Samsun', '', '55', 'state', 1),
(3893, 'state_Siirt_3893', 'Siirt', 'Siirt',
'', '56', 'state', 1),
(3894, 'state_Sinop_3894', 'Sinop', 'Sinop',
'', '57', 'state', 1),
(3895, 'state_Sivas_3895', 'Sivas', 'Sivas',
'', '58', 'state', 1),
(3896, 'state_Tekirda___3896', 'Tekirdağ',
'Tekirdağ', '', '59', 'state',
1),
(3897, 'state_Tokat_3897', 'Tokat', 'Tokat',
'', '60', 'state', 1),
(3898, 'state_Trabzon_3898', 'Trabzon',
'Trabzon', '', '61', 'state', 1),
(3899, 'state_Tunceli_3899', 'Tunceli',
'Tunceli', '', '62', 'state', 1),
(3900, 'state___anl__urfa_3900', 'Şanlıurfa',
'Şanlıurfa', '', '63', 'state',
1),
(3901, 'state_U__ak_3901', 'Uşak', 'Uşak',
'', '64', 'state', 1),
(3902, 'state_Van_3902', 'Van', 'Van',
'', '65', 'state', 1),
(3903, 'state_Yozgat_3903', 'Yozgat',
'Yozgat', '', '66', 'state', 1),
(3904, 'state_Zonguldak_3904', 'Zonguldak',
'Zonguldak', '', '67', 'state',
1),
(3905, 'state_Aksaray_3905', 'Aksaray',
'Aksaray', '', '68', 'state', 1),
(3906, 'state_Bayburt_3906', 'Bayburt',
'Bayburt', '', '69', 'state', 1),
(3907, 'state_Karaman_3907', 'Karaman',
'Karaman', '', '70', 'state', 1),
(3908, 'state_K__r__kkale_3908', 'Kırıkkale',
'Kırıkkale', '', '71', 'state',
1),
(3909, 'state_Batman_3909', 'Batman',
'Batman', '', '72', 'state', 1),
(3910, 'state_____rnak_3910', 'Şırnak',
'Şırnak', '', '73', 'state', 1),
(3911, 'state_Bart__n_3911', 'Bartın',
'Bartın', '', '74', 'state', 1),
(3912, 'state_Ardahan_3912', 'Ardahan',
'Ardahan', '', '75', 'state', 1),
(3913, 'state_I__d__r_3913', 'Iğdır',
'Iğdır', '', '76', 'state', 1),
(3914, 'state_Yalova_3914', 'Yalova',
'Yalova', '', '77', 'state', 1),
(3915, 'state_Karab__k_3915', 'Karabük',
'Karabük', '', '78', 'state', 1),
(3916, 'state_Kilis_3916', 'Kilis', 'Kilis',
'', '79', 'state', 1),
(3917, 'state_Osmaniye_3917', 'Osmaniye',
'Osmaniye', '', '80', 'state', 1),
(3918, 'state_D__zce_3918', 'Düzce',
'Düzce', '', '81', 'state', 1),
(3919, 'state_Ahal_wela__aty_3919', 'Ahal welaýaty',
'Ahal welaýaty', '', 'A', 'state',
1),
(3920, 'state_Balkan_wela__aty_3920', 'Balkan
welaýaty', 'Balkan welaýaty', '', 'B',
'state', 1),
(3921, 'state_Da__oguz_wela__aty_3921', 'Daşoguz
welaýaty', 'Daşoguz welaýaty', '',
'D', 'state', 1),
(3922, 'state_Lebap_wela__aty_3922', 'Lebap welaýaty',
'Lebap welaýaty', '', 'L',
'state', 1),
(3923, 'state_Mary_wela__aty_3923', 'Mary welaýaty',
'Mary welaýaty', '', 'M', 'state',
1),
(3924, 'state_Ambergris_Cays_3924', 'Ambergris Cays',
'Ambergris Cays', '', 'AC',
'state', 1),
(3925, 'state_Dellis_Cay_3925', 'Dellis Cay',
'Dellis Cay', '', 'DC', 'state',
1),
(3926, 'state_French_Cay_3926', 'French Cay',
'French Cay', '', 'FC', 'state',
1),
(3927, 'state_Little_Water_Cay_3927', 'Little Water
Cay', 'Little Water Cay', '', 'LW',
'state', 1),
(3928, 'state_Parrot_Cay_3928', 'Parrot Cay',
'Parrot Cay', '', 'RC', 'state',
1),
(3929, 'state_Pine_Cay_3929', 'Pine Cay', 'Pine
Cay', '', 'PN', 'state', 1),
(3930, 'state_Salt_Cay_3930', 'Salt Cay', 'Salt
Cay', '', 'SL', 'state', 1),
(3931, 'state_Grand_Turk_3931', 'Grand Turk',
'Grand Turk', '', 'GT', 'state',
1),
(3932, 'state_South_Caicos_3932', 'South Caicos',
'South Caicos', '', 'SC', 'state',
1),
(3933, 'state_East_Caicos_3933', 'East Caicos',
'East Caicos', '', 'EC', 'state',
1),
(3934, 'state_Middle_Caicos_3934', 'Middle Caicos',
'Middle Caicos', '', 'MC', 'state',
1),
(3935, 'state_North_Caicos_3935', 'North Caicos',
'North Caicos', '', 'NC', 'state',
1),
(3936, 'state_Providenciales_3936', 'Providenciales',
'Providenciales', '', 'PR',
'state', 1),
(3937, 'state_West_Caicos_3937', 'West Caicos',
'West Caicos', '', 'WC', 'state',
1),
(3938, 'state_Funafuti_3938', 'Funafuti',
'Funafuti', '', 'FUN', 'state',
1),
(3939, 'state_Nanumea_3939', 'Nanumea',
'Nanumea', '', 'NMA', 'state', 1),
(3940, 'state_Nanumanga_3940', 'Nanumanga',
'Nanumanga', '', 'NMG', 'state',
1),
(3941, 'state_Niutao_3941', 'Niutao',
'Niutao', '', 'NIT', 'state', 1),
(3942, 'state_Nui_3942', 'Nui', 'Nui',
'', 'NIU', 'state', 1),
(3943, 'state_Nukufetau_3943', 'Nukufetau',
'Nukufetau', '', 'NKF', 'state',
1),
(3944, 'state_Nukulaelae_3944', 'Nukulaelae',
'Nukulaelae', '', 'NKL', 'state',
1),
(3945, 'state_Vaitupu_3945', 'Vaitupu',
'Vaitupu', '', 'VAI', 'state', 1),
(3946, 'state_Kalangala_3946', 'Kalangala',
'Kalangala', '', '101', 'state',
1),
(3947, 'state_Kampala_3947', 'Kampala',
'Kampala', '', '102', 'state', 1),
(3948, 'state_Kiboga_3948', 'Kiboga',
'Kiboga', '', '103', 'state', 1),
(3949, 'state_Luwero_3949', 'Luwero',
'Luwero', '', '104', 'state', 1),
(3950, 'state_Masaka_3950', 'Masaka',
'Masaka', '', '105', 'state', 1),
(3951, 'state_Mpigi_3951', 'Mpigi', 'Mpigi',
'', '106', 'state', 1),
(3952, 'state_Mubende_3952', 'Mubende',
'Mubende', '', '107', 'state', 1),
(3953, 'state_Mukono_3953', 'Mukono',
'Mukono', '', '108', 'state', 1),
(3954, 'state_Nakasongola_3954', 'Nakasongola',
'Nakasongola', '', '109', 'state',
1),
(3955, 'state_Rakai_3955', 'Rakai', 'Rakai',
'', '110', 'state', 1),
(3956, 'state_Sembabule_3956', 'Sembabule',
'Sembabule', '', '111', 'state',
1),
(3957, 'state_Kayunga_3957', 'Kayunga',
'Kayunga', '', '112', 'state', 1),
(3958, 'state_Wakiso_3958', 'Wakiso',
'Wakiso', '', '113', 'state', 1),
(3959, 'state_Bugiri_3959', 'Bugiri',
'Bugiri', '', '201', 'state', 1),
(3960, 'state_Busia_3960', 'Busia', 'Busia',
'', '202', 'state', 1),
(3961, 'state_Iganga_3961', 'Iganga',
'Iganga', '', '203', 'state', 1),
(3962, 'state_Jinja_3962', 'Jinja', 'Jinja',
'', '204', 'state', 1),
(3963, 'state_Kamuli_3963', 'Kamuli',
'Kamuli', '', '205', 'state', 1),
(3964, 'state_Kapchorwa_3964', 'Kapchorwa',
'Kapchorwa', '', '206', 'state',
1),
(3965, 'state_Katakwi_3965', 'Katakwi',
'Katakwi', '', '207', 'state', 1),
(3966, 'state_Kumi_3966', 'Kumi', 'Kumi',
'', '208', 'state', 1),
(3967, 'state_Mbale_3967', 'Mbale', 'Mbale',
'', '209', 'state', 1),
(3968, 'state_Pallisa_3968', 'Pallisa',
'Pallisa', '', '210', 'state', 1),
(3969, 'state_Soroti_3969', 'Soroti',
'Soroti', '', '211', 'state', 1),
(3970, 'state_Tororo_3970', 'Tororo',
'Tororo', '', '212', 'state', 1),
(3971, 'state_Kaberamaido_3971', 'Kaberamaido',
'Kaberamaido', '', '213', 'state',
1),
(3972, 'state_Mayuge_3972', 'Mayuge',
'Mayuge', '', '214', 'state', 1),
(3973, 'state_Sironko_3973', 'Sironko',
'Sironko', '', '215', 'state', 1),
(3974, 'state_Adjumani_3974', 'Adjumani',
'Adjumani', '', '301', 'state',
1),
(3975, 'state_Apac_3975', 'Apac', 'Apac',
'', '302', 'state', 1),
(3976, 'state_Arua_3976', 'Arua', 'Arua',
'', '303', 'state', 1),
(3977, 'state_Gulu_3977', 'Gulu', 'Gulu',
'', '304', 'state', 1),
(3978, 'state_Kitgum_3978', 'Kitgum',
'Kitgum', '', '305', 'state', 1),
(3979, 'state_Kotido_3979', 'Kotido',
'Kotido', '', '306', 'state', 1),
(3980, 'state_Lira_3980', 'Lira', 'Lira',
'', '307', 'state', 1),
(3981, 'state_Moroto_3981', 'Moroto',
'Moroto', '', '308', 'state', 1),
(3982, 'state_Moyo_3982', 'Moyo', 'Moyo',
'', '309', 'state', 1),
(3983, 'state_Nebbi_3983', 'Nebbi', 'Nebbi',
'', '310', 'state', 1),
(3984, 'state_Nakapiripirit_3984', 'Nakapiripirit',
'Nakapiripirit', '', '311',
'state', 1),
(3985, 'state_Pader_3985', 'Pader', 'Pader',
'', '312', 'state', 1),
(3986, 'state_Yumbe_3986', 'Yumbe', 'Yumbe',
'', '313', 'state', 1),
(3987, 'state_Bundibugyo_3987', 'Bundibugyo',
'Bundibugyo', '', '401', 'state',
1),
(3988, 'state_Bushenyi_3988', 'Bushenyi',
'Bushenyi', '', '402', 'state',
1),
(3989, 'state_Hoima_3989', 'Hoima', 'Hoima',
'', '403', 'state', 1),
(3990, 'state_Kabale_3990', 'Kabale',
'Kabale', '', '404', 'state', 1),
(3991, 'state_Kabarole_3991', 'Kabarole',
'Kabarole', '', '405', 'state',
1),
(3992, 'state_Kasese_3992', 'Kasese',
'Kasese', '', '406', 'state', 1),
(3993, 'state_Kibale_3993', 'Kibale',
'Kibale', '', '407', 'state', 1),
(3994, 'state_Kisoro_3994', 'Kisoro',
'Kisoro', '', '408', 'state', 1),
(3995, 'state_Masindi_3995', 'Masindi',
'Masindi', '', '409', 'state', 1),
(3996, 'state_Mbarara_3996', 'Mbarara',
'Mbarara', '', '410', 'state', 1),
(3997, 'state_Ntungamo_3997', 'Ntungamo',
'Ntungamo', '', '411', 'state',
1),
(3998, 'state_Rukungiri_3998', 'Rukungiri',
'Rukungiri', '', '412', 'state',
1),
(3999, 'state_Kamwenge_3999', 'Kamwenge',
'Kamwenge', '', '413', 'state',
1);";
		$this->db->setQuery($query);
		$this->db->query();

		$query="
INSERT IGNORE INTO `#__hikashop_zone` (`zone_id`, `zone_namekey`,
`zone_name`, `zone_name_english`, `zone_code_2`, `zone_code_3`,
`zone_type`, `zone_published`) VALUES
(4000, 'state_Kanungu_4000', 'Kanungu',
'Kanungu', '', '414', 'state', 1),
(4001, 'state_Kyenjojo_4001', 'Kyenjojo',
'Kyenjojo', '', '415', 'state',
1),
(4002, 'state___________________________________4002',
'Вінницька область', 'Вінницька
область', '', '05', 'state', 1),
(4003, 'state___________________________________4003',
'Волинська область', 'Волинська
область', '', '07', 'state', 1),
(4004, 'state___________________________________4004',
'Луганська область', 'Луганська
область', '', '09', 'state', 1),
(4005,
'state_________________________________________________4005',
'Дніпропетровська область',
'Дніпропетровська область', '',
'12', 'state', 1),
(4006, 'state_________________________________4006',
'Донецька область', 'Донецька
область', '', '14', 'state', 1),
(4007, 'state_______________________________________4007',
'Житомирська область',
'Житомирська область', '',
'18', 'state', 1),
(4008, 'state_____________________________________4008',
'Рівненська область', 'Рівненська
область', '', '19', 'state', 1),
(4009, 'state_________________________________________4009',
'Закарпатська область',
'Закарпатська область', '',
'21', 'state', 1),
(4010, 'state_____________________________________4010',
'Запорізька область', 'Запорізька
область', '', '23', 'state', 1),
(4011,
'state__________________________________________________4011',
'Івано-Франківська область',
'Івано-Франківська область', '',
'26', 'state', 1),
(4012, 'state__________4012', 'Київ',
'Київ', '', '30', 'state', 1),
(4013, 'state_________________________________4013',
'Київська область', 'Київська
область', '', '32', 'state', 1),
(4014, 'state_____________________________________________4014',
'Кіровоградська область',
'Кіровоградська область', '',
'35', 'state', 1),
(4015, 'state________________________4015',
'Севастополь', 'Севастополь',
'', '40', 'state', 1),
(4016,
'state____________________________________________________4016',
'Автономная Республика Крым',
'Автономная Республика Крым',
'', '43', 'state', 1),
(4017, 'state___________________________________4017',
'Львівська область', 'Львівська
область', '', '46', 'state', 1),
(4018, 'state_________________________________________4018',
'Миколаївська область',
'Миколаївська область', '',
'48', 'state', 1),
(4019, 'state_______________________________4019',
'Одеська область', 'Одеська
область', '', '51', 'state', 1),
(4020, 'state_____________________________________4020',
'Полтавська область', 'Полтавська
область', '', '53', 'state', 1),
(4021, 'state_______________________________4021',
'Сумська область', 'Сумська
область', '', '59', 'state', 1),
(4022, 'state___________________________________________4022',
'Тернопільська область',
'Тернопільська область', '',
'61', 'state', 1),
(4023, 'state_____________________________________4023',
'Харківська область', 'Харківська
область', '', '63', 'state', 1),
(4024, 'state_____________________________________4024',
'Херсонська область', 'Херсонська
область', '', '65', 'state', 1),
(4025, 'state_______________________________________4025',
'Хмельницька область',
'Хмельницька область', '',
'68', 'state', 1),
(4026, 'state___________________________________4026',
'Черкаська область', 'Черкаська
область', '', '71', 'state', 1),
(4027, 'state_________________________________________4027',
'Чернігівська область',
'Чернігівська область', '',
'74', 'state', 1),
(4028, 'state_______________________________________4028',
'Чернівецька область',
'Чернівецька область', '',
'77', 'state', 1),
(4031, 'state_Argyll_and_Bute_4031', 'Argyll and Bute',
'Argyll and Bute', '', 'AGB',
'state', 1),
(4037, 'state_Bath_and_North_East_Somerset_4037', 'Bath and
North East Somerset', 'Bath and North East Somerset',
'', 'BAS', 'state', 1),
(4039, 'state_Bedfordshire_4039', 'Bedfordshire',
'Bedfordshire', '', 'BDF', 'state',
1),
(4040, 'state_Berkshire_4040', 'Berkshire',
'Berkshire', '', 'BRK', 'state',
1),
(4045, 'state_Blaenau_Gwent_4045', 'Blaenau Gwent',
'Blaenau Gwent', '', 'BGW',
'state', 1),
(4055, 'state_Borders_4055', 'Borders',
'Borders', '', 'BOR', 'state', 1),
(4060, 'state_Bristol_4060', 'Bristol',
'Bristol', '', 'BST', 'state', 1),
(4061, 'state_Buckinghamshire_4061', 'Buckinghamshire',
'Buckinghamshire', '', 'BKM',
'state', 1),
(4062, 'state_Cambridgeshire_4062', 'Cambridgeshire',
'Cambridgeshire', '', 'CAM',
'state', 1),
(4074, 'state_Carmarthenshire_4074', 'Carmarthenshire',
'Carmarthenshire', '', 'CMN',
'state', 1),
(4064, 'state_Ceredigion_4064', 'Ceredigion',
'Ceredigion', '', 'CGN', 'state',
1),
(4066, 'state_Cheshire_4066', 'Cheshire',
'Cheshire', '', 'CHS', 'state',
1),
(4080, 'state_Conwy_4080', 'Conwy', 'Conwy',
'', 'CWY', 'state', 1),
(4075, 'state_Cornwall_4075', 'Cornwall',
'Cornwall', '', 'CON', 'state',
1),
(4034, 'state_Antrim_4034', 'County Antrim',
'County Antrim', '', 'ANT',
'state', 1),
(4091, 'state_Down_4091', 'County Down', 'County
Down', '', 'DOW', 'state', 1),
(4094, 'state_Durham_4094', 'County Durham',
'County Durham', '', 'DUR',
'state', 1),
(4107, 'state_Fermanagh_4107', 'County Fermanagh',
'County Fermanagh', '', 'FER',
'state', 1),
(4063, 'state_Londonderry_4063', 'County Londonderry',
'County Londonderry', '', 'LDY',
'state', 1),
(4065, 'state_Tyrone_4065', 'County Tyrone',
'County Tyrone', '', 'TYR',
'state', 1),
(4072, 'state_Cumbria_4072', 'Cumbria',
'Cumbria', '', 'CMA', 'state', 1),
(4083, 'state_Denbighshire_4083', 'Denbighshire',
'Denbighshire', '', 'DEN', 'state',
1),
(4082, 'state_Derbyshire_4082', 'Derbyshire',
'Derbyshire', '', 'DBY', 'state',
1),
(4085, 'state_Devon_4085', 'Devon', 'Devon',
'', 'DEV', 'state', 1),
(4090, 'state_Dorset_4090', 'Dorset',
'Dorset', '', 'DOR', 'state', 1),
(4067, 'state_Dumbarton_4065', 'Dumbarton and
Clydebank', 'Dumbarton and Clydebank', '',
'DNB', 'state', 1),
(4087, 'state_Dumfries_and_Galloway_4087', 'Dumfries and
Galloway', 'Dumfries and Galloway', '',
'DGY', 'state', 1),
(4093, 'state_Dyfed_4093', 'Dyfed', 'Dyfed',
'', 'DFD', 'state', 1),
(4096, 'state_East_Ayrshire_4096', 'East Ayrshire',
'East Ayrshire', '', 'EAY',
'state', 1),
(4098, 'state_East_Dunbartonshire_4098', 'East
Dunbartonshire', 'East Dunbartonshire', '',
'EDU', 'state', 1),
(4102, 'state_East_Renfrewshire_4102', 'East
Renfrewshire', 'East Renfrewshire', '',
'ERW', 'state', 1),
(4103, 'state_East_Riding_of_Yorkshire_4103', 'East Riding
of Yorkshire', 'East Riding of Yorkshire', '',
'ERY', 'state', 1),
(4105, 'state_East_Sussex_4105', 'East Sussex',
'East Sussex', '', 'ESX', 'state',
1),
(4097, 'state_Edinburgh_4097', 'Edinburgh',
'Edinburgh', '', 'EDH', 'state',
1),
(4104, 'state_Essex_4104', 'Essex', 'Essex',
'', 'ESS', 'state', 1),
(4108, 'state_Fife_4108', 'Fife', 'Fife',
'', 'FIF', 'state', 1),
(4109, 'state_Flintshire_4109', 'Flintshire',
'Flintshire', '', 'FLN', 'state',
1),
(4068, 'state_Glamorgan_4068', 'Glamorgan',
'Glamorgan', '', 'GLA', 'state',
1),
(4111, 'state_Glasgow_4111', 'Glasgow',
'Glasgow', '', 'GLG', 'state', 1),
(4112, 'state_Gloucestershire_4112', 'Gloucestershire',
'Gloucestershire', '', 'GLS',
'state', 1),
(4110, 'state_Grampian_4110', 'Grampian',
'Grampian', '', 'GMP', 'state',
1),
(4113, 'state_Greater_Manchester_4113', 'Greater
Manchester', 'Greater Manchester', '',
'GTM', 'state', 1),
(4114, 'state_Gwent_4114', 'Gwent', 'Gwent',
'', 'GNT', 'state', 1),
(4115, 'state_Gwynedd_4115', 'Gwynedd',
'Gwynedd', '', 'GWN', 'state', 1),
(4117, 'state_Hampshire_4117', 'Hampshire',
'Hampshire', '', 'HAM', 'state',
1),
(4120, 'state_Herefordshire_4120', 'Herefordshire',
'Herefordshire', '', 'HEF',
'state', 1),
(4126, 'state_Hertfordshire_4126', 'Hertfordshire',
'Hertfordshire', '', 'HRT',
'state', 1),
(4132, 'state_Inverclyde_4132', 'Inverclyde',
'Inverclyde', '', 'IVC', 'state',
1),
(4130, 'state_Isle_of_Wight_4130', 'Isle of Wight',
'Isle of Wight', '', 'IOW',
'state', 1),
(4135, 'state_Kent_4135', 'Kent', 'Kent',
'', 'KEN', 'state', 1),
(4140, 'state_Lancashire_4140', 'Lancashire',
'Lancashire', '', 'LAN', 'state',
1),
(4144, 'state_Leicestershire_4144', 'Leicestershire',
'Leicestershire', '', 'LEC',
'state', 1),
(4146, 'state_Lincolnshire_4146', 'Lincolnshire',
'Lincolnshire', '', 'LIN', 'state',
1),
(4149, 'state_London_4149', 'London',
'London', '', 'LND', 'state', 1),
(4153, 'state_Manchester_4153', 'Manchester',
'Manchester', '', 'MAN', 'state',
1),
(4069, 'state_Middlesex_4069', 'Middlesex',
'Middlesex', '', 'MDX', 'state',
1),
(4070, 'state_Merseyside_4070', 'Merseyside',
'Merseyside', '', 'MSY', 'state',
1),
(4169, 'state_Norfolk_4169', 'Norfolk',
'Norfolk', '', 'NFK', 'state', 1),
(4164, 'state_North_Ayrshire_4164', 'North Ayrshire',
'North Ayrshire', '', 'NAY',
'state', 1),
(4171, 'state_North_Lanarkshire_4171', 'North
Lanarkshire', 'North Lanarkshire', '',
'NLK', 'state', 1),
(4071, 'state_North_West_Highlands_4071', 'North West
Highlands', 'North West Highlands', '',
'NWH', 'state', 1),
(4181, 'state_North_Yorkshire_4181', 'North Yorkshire',
'North Yorkshire', '', 'NYK',
'state', 1),
(4175, 'state_Northamptonshire_4175',
'Northamptonshire', 'Northamptonshire', '',
'NTH', 'state', 1),
(4165, 'state_Northumberland_4165', 'Northumberland',
'Northumberland', '', 'NBL',
'state', 1),
(4177, 'state_Nottinghamshire_4177', 'Nottinghamshire',
'Nottinghamshire', '', 'NTT',
'state', 1),
(4186, 'state_Oxfordshire_4186', 'Oxfordshire',
'Oxfordshire', '', 'OXF', 'state',
1),
(4187, 'state_Pembrokeshire_4187', 'Pembrokeshire',
'Pembrokeshire', '', 'PEM',
'state', 1),
(4192, 'state_Powys_4192', 'Powys', 'Powys',
'', 'POW', 'state', 1),
(4199, 'state_Renfrewshire_4199', 'Renfrewshire',
'Renfrewshire', '', 'RFW', 'state',
1),
(4196, 'state_Rhondda_Cynon_Taf_4196', 'Rhondda Cynon
Taf', 'Rhondda Cynon Taf', '', 'RCT',
'state', 1),
(4211, 'state_Shropshire_4211', 'Shropshire',
'Shropshire', '', 'SHR', 'state',
1),
(4218, 'state_Somerset_4218', 'Somerset',
'Somerset', '', 'SOM', 'state',
1),
(4204, 'state_South_Ayrshire_4204', 'South Ayrshire',
'South Ayrshire', '', 'SAY',
'state', 1),
(4208, 'state_South_Gloucestershire_4208', 'South
Gloucestershire', 'South Gloucestershire', '',
'SGC', 'state', 1),
(4215, 'state_South_Lanarkshire_4215', 'South
Lanarkshire', 'South Lanarkshire', '',
'SLK', 'state', 1),
(4228, 'state_South_Yorkshire_4228', 'South Yorkshire',
'South Yorkshire', '', 'SYK',
'state', 1),
(4226, 'state_Staffordshire_4226', 'Staffordshire',
'Staffordshire', '', 'STS',
'state', 1),
(4206, 'state_Suffolk_4206', 'Suffolk',
'Suffolk', '', 'SFK', 'state', 1),
(4220, 'state_Surrey_4220', 'Surrey',
'Surrey', '', 'SRY', 'state', 1),
(4235, 'state_Tayside_4235', 'Tayside',
'Tayside', '', 'TAY', 'state', 1),
(4236, 'state_Torfaen_4236', 'Torfaen',
'Torfaen', '', 'TOF', 'state', 1),
(4237, 'state_Tyne_and_Wear_4237', 'Tyne & Wear',
'Tyne & Wear', '', 'TWR',
'state', 1),
(4240, 'state_Warwickshire_4240', 'Warwickshire',
'Warwickshire', '', 'WAR', 'state',
1),
(4248, 'state_West_Lothian_4248', 'West Lothian',
'West Lothian', '', 'WLN', 'state',
1),
(4073, 'state_West_Midlands_4073', 'West Midlands',
'West Midlands', '', 'WMD',
'state', 1),
(4257, 'state_West_Sussex_4257', 'West Sussex',
'West Sussex', '', 'WSX', 'state',
1),
(4076, 'state_West_Yorkshire_4076', 'West Yorkshire',
'West Yorkshire', '', 'WYK',
'state', 1),
(4245, 'state_Wiltshire_4245', 'Wiltshire',
'Wiltshire', '', 'WIL', 'state',
1),
(4252, 'state_Worcestershire_4252', 'Worcestershire',
'Worcestershire', '', 'WOR',
'state', 1),
(4260, 'state_Alaska_4260', 'Alaska',
'Alaska', '', 'AK', 'state', 1),
(4261, 'state_Alabama_4261', 'Alabama',
'Alabama', '', 'AL', 'state', 1),
(4262, 'state_American_Samoa_4262', 'American Samoa',
'American Samoa', '', 'AS',
'state', 1),
(4263, 'state_Arkansas_4263', 'Arkansas',
'Arkansas', '', 'AR', 'state', 1),
(4264, 'state_Arizona_4264', 'Arizona',
'Arizona', '', 'AZ', 'state', 1),
(4265, 'state_California_4265', 'California',
'California', '', 'CA', 'state',
1),
(4266, 'state_Colorado_4266', 'Colorado',
'Colorado', '', 'CO', 'state', 1),
(4267, 'state_Connecticut_4267', 'Connecticut',
'Connecticut', '', 'CT', 'state',
1),
(4268, 'state_District_of_Columbia_4268', 'District of
Columbia', 'District of Columbia', '',
'DC', 'state', 1),
(4269, 'state_Delaware_4269', 'Delaware',
'Delaware', '', 'DE', 'state', 1),
(4270, 'state_Florida_4270', 'Florida',
'Florida', '', 'FL', 'state', 1),
(4271, 'state_Georgia_4271', 'Georgia',
'Georgia', '', 'GA', 'state', 1),
(4272, 'state_Guam_4272', 'Guam', 'Guam',
'', 'GU', 'state', 1),
(4273, 'state_Hawaii_4273', 'Hawaii',
'Hawaii', '', 'HI', 'state', 1),
(4274, 'state_Iowa_4274', 'Iowa', 'Iowa',
'', 'IA', 'state', 1),
(4275, 'state_Idaho_4275', 'Idaho', 'Idaho',
'', 'ID', 'state', 1),
(4276, 'state_Illinois_4276', 'Illinois',
'Illinois', '', 'IL', 'state', 1),
(4277, 'state_Indiana_4277', 'Indiana',
'Indiana', '', 'IN', 'state', 1),
(4278, 'state_Kansas_4278', 'Kansas',
'Kansas', '', 'KS', 'state', 1),
(4279, 'state_Kentucky_4279', 'Kentucky',
'Kentucky', '', 'KY', 'state', 1),
(4280, 'state_Louisiana_4280', 'Louisiana',
'Louisiana', '', 'LA', 'state',
1),
(4281, 'state_Massachusetts_4281', 'Massachusetts',
'Massachusetts', '', 'MA', 'state',
1),
(4282, 'state_Maryland_4282', 'Maryland',
'Maryland', '', 'MD', 'state', 1),
(4283, 'state_Maine_4283', 'Maine', 'Maine',
'', 'ME', 'state', 1),
(4284, 'state_Michigan_4284', 'Michigan',
'Michigan', '', 'MI', 'state', 1),
(4285, 'state_Minnesota_4285', 'Minnesota',
'Minnesota', '', 'MN', 'state',
1),
(4286, 'state_Missouri_4286', 'Missouri',
'Missouri', '', 'MO', 'state', 1),
(4287, 'state_Mississippi_4287', 'Mississippi',
'Mississippi', '', 'MS', 'state',
1),
(4288, 'state_Montana_4288', 'Montana',
'Montana', '', 'MT', 'state', 1),
(4289, 'state_North_Carolina_4289', 'North Carolina',
'North Carolina', '', 'NC',
'state', 1),
(4290, 'state_North_Dakota_4290', 'North Dakota',
'North Dakota', '', 'ND', 'state',
1),
(4291, 'state_Nebraska_4291', 'Nebraska',
'Nebraska', '', 'NE', 'state', 1),
(4292, 'state_New_Hampshire_4292', 'New Hampshire',
'New Hampshire', '', 'NH', 'state',
1),
(4293, 'state_New_Jersey_4293', 'New Jersey', 'New
Jersey', '', 'NJ', 'state', 1),
(4294, 'state_New_Mexico_4294', 'New Mexico', 'New
Mexico', '', 'NM', 'state', 1),
(4295, 'state_Nevada_4295', 'Nevada',
'Nevada', '', 'NV', 'state', 1),
(4296, 'state_New_York_4296', 'New York', 'New
York', '', 'NY', 'state', 1),
(4297, 'state_Northern_Mariana_Islands_4297', 'Northern
Mariana Islands', 'Northern Mariana Islands', '',
'MP', 'state', 1),
(4298, 'state_Ohio_4298', 'Ohio', 'Ohio',
'', 'OH', 'state', 1),
(4299, 'state_Oklahoma_4299', 'Oklahoma',
'Oklahoma', '', 'OK', 'state', 1),
(4300, 'state_Oregon_4300', 'Oregon',
'Oregon', '', 'OR', 'state', 1),
(4301, 'state_Pennsylvania_4301', 'Pennsylvania',
'Pennsylvania', '', 'PA', 'state',
1),
(4302, 'state_Puerto_Rico_4302', 'Puerto Rico',
'Puerto Rico', '', 'PR', 'state',
1),
(4303, 'state_Rhode_Island_4303', 'Rhode Island',
'Rhode Island', '', 'RI', 'state',
1),
(4304, 'state_South_Carolina_4304', 'South Carolina',
'South Carolina', '', 'SC',
'state', 1),
(4305, 'state_South_Dakota_4305', 'South Dakota',
'South Dakota', '', 'SD', 'state',
1),
(4306, 'state_Tennessee_4306', 'Tennessee',
'Tennessee', '', 'TN', 'state',
1),
(4307, 'state_Texas_4307', 'Texas', 'Texas',
'', 'TX', 'state', 1),
(4308, 'state_U_S__Minor_Outlying_Islands_4308', 'U.S. Minor
Outlying Islands', 'U.S. Minor Outlying Islands',
'', 'UM', 'state', 1),
(4309, 'state_Utah_4309', 'Utah', 'Utah',
'', 'UT', 'state', 1),
(4310, 'state_Virginia_4310', 'Virginia',
'Virginia', '', 'VA', 'state', 1),
(4311, 'state_Virgin_Islands_of_the_U_S__4311', 'Virgin
Islands of the U.S.', 'Virgin Islands of the U.S.',
'', 'VI', 'state', 1),
(4312, 'state_Vermont_4312', 'Vermont',
'Vermont', '', 'VT', 'state', 1),
(4313, 'state_Washington_4313', 'Washington',
'Washington', '', 'WA', 'state',
1),
(4314, 'state_Wisconsin_4314', 'Wisconsin',
'Wisconsin', '', 'WI', 'state',
1),
(4315, 'state_West_Virginia_4315', 'West Virginia',
'West Virginia', '', 'WV', 'state',
1),
(4316, 'state_Wyoming_4316', 'Wyoming',
'Wyoming', '', 'WY', 'state', 1),
(4317, 'state_Baker_Island_4317', 'Baker Island',
'Baker Island', '', 'BI', 'state',
1),
(4318, 'state_Howland_Island_4318', 'Howland Island',
'Howland Island', '', 'HI',
'state', 1),
(4319, 'state_Jarvis_Island_4319', 'Jarvis Island',
'Jarvis Island', '', 'JI', 'state',
1),
(4320, 'state_Johnston_Atoll_4320', 'Johnston Atoll',
'Johnston Atoll', '', 'JA',
'state', 1),
(4321, 'state_Kingman_Reef_4321', 'Kingman Reef',
'Kingman Reef', '', 'KR', 'state',
1),
(4322, 'state_Midway_Atoll_4322', 'Midway Atoll',
'Midway Atoll', '', 'MA', 'state',
1),
(4323, 'state_Navassa_Island_4323', 'Navassa Island',
'Navassa Island', '', 'NI',
'state', 1),
(4324, 'state_Palmyra_Atoll_4324', 'Palmyra Atoll',
'Palmyra Atoll', '', 'PA', 'state',
1),
(4325, 'state_Wake_Island_4325', 'Wake Island',
'Wake Island', '', 'WI', 'state',
1),
(4326, 'state_Artigas_4326', 'Artigas',
'Artigas', '', 'AR', 'state', 1),
(4327, 'state_Canelones_4327', 'Canelones',
'Canelones', '', 'CA', 'state',
1),
(4328, 'state_Cerro_Largo_4328', 'Cerro Largo',
'Cerro Largo', '', 'CL', 'state',
1),
(4329, 'state_Colonia_4329', 'Colonia',
'Colonia', '', 'CO', 'state', 1),
(4330, 'state_Durazno_4330', 'Durazno',
'Durazno', '', 'DU', 'state', 1),
(4331, 'state_Florida_4331', 'Florida',
'Florida', '', 'FD', 'state', 1),
(4332, 'state_Flores_4332', 'Flores',
'Flores', '', 'FS', 'state', 1),
(4333, 'state_Lavalleja_4333', 'Lavalleja',
'Lavalleja', '', 'LA', 'state',
1),
(4334, 'state_Maldonado_4334', 'Maldonado',
'Maldonado', '', 'MA', 'state',
1),
(4335, 'state_Montevideo_4335', 'Montevideo',
'Montevideo', '', 'MO', 'state',
1),
(4336, 'state_Paysandu_4336', 'Paysandu',
'Paysandu', '', 'PA', 'state', 1),
(4337, 'state_R__o_Negro_4337', 'Río Negro',
'Río Negro', '', 'RN', 'state',
1),
(4338, 'state_Rocha_4338', 'Rocha', 'Rocha',
'', 'RO', 'state', 1),
(4339, 'state_Rivera_4339', 'Rivera',
'Rivera', '', 'RV', 'state', 1),
(4340, 'state_Salto_4340', 'Salto', 'Salto',
'', 'SA', 'state', 1),
(4342, 'state_Soriano_4342', 'Soriano',
'Soriano', '', 'SO', 'state', 1),
(4343, 'state_Tacuaremb___4343', 'Tacuarembó',
'Tacuarembó', '', 'TA', 'state',
1),
(4344, 'state_Treinta_y_Tres_4344', 'Treinta y Tres',
'Treinta y Tres', '', 'TT',
'state', 1),
(4345, 'state_Andijon_viloyati_4345', 'Andijon
viloyati', 'Andijon viloyati', '', 'AN',
'state', 1),
(4346, 'state_Buxoro_viloyati_4346', 'Buxoro viloyati',
'Buxoro viloyati', '', 'BU',
'state', 1),
(4347, 'state_Farg_ona_viloyati_4347', 'Farg''ona
viloyati', 'Farg''ona viloyati', '',
'FA', 'state', 1),
(4348, 'state_Jizzax_viloyati_4348', 'Jizzax viloyati',
'Jizzax viloyati', '', 'JI',
'state', 1),
(4349, 'state_Namangan_viloyati_4349', 'Namangan
viloyati', 'Namangan viloyati', '',
'NG', 'state', 1),
(4350, 'state_Navoiy_viloyati_4350', 'Navoiy viloyati',
'Navoiy viloyati', '', 'NW',
'state', 1),
(4351, 'state_Qashqadaryo_viloyati_4351', 'Qashqadaryo
viloyati', 'Qashqadaryo viloyati', '',
'QA', 'state', 1),
(4352, 'state_Qoraqalpog_iston_Respublikasi_4352',
'Qoraqalpog''iston Respublikasi',
'Qoraqalpog''iston Respublikasi', '',
'QR', 'state', 1),
(4353, 'state_Samarqand_viloyati_4353', 'Samarqand
viloyati', 'Samarqand viloyati', '',
'SA', 'state', 1),
(4354, 'state_Sirdaryo_viloyati_4354', 'Sirdaryo
viloyati', 'Sirdaryo viloyati', '',
'SI', 'state', 1),
(4355, 'state_Surxondaryo_viloyati_4355', 'Surxondaryo
viloyati', 'Surxondaryo viloyati', '',
'SU', 'state', 1),
(4356, 'state_Toshkent_4356', 'Toshkent',
'Toshkent', '', 'TK', 'state', 1),
(4357, 'state_Toshkent_viloyati_4357', 'Toshkent
viloyati', 'Toshkent viloyati', '',
'TO', 'state', 1),
(4358, 'state_Xorazm_viloyati_4358', 'Xorazm viloyati',
'Xorazm viloyati', '', 'XO',
'state', 1),
(4359, 'state_Malampa_4359', 'Malampa',
'Malampa', '', 'MAP', 'state', 1),
(4360, 'state_P__nama_4360', 'Pénama',
'Pénama', '', 'PAM', 'state', 1),
(4361, 'state_Sanma_4361', 'Sanma', 'Sanma',
'', 'SAM', 'state', 1),
(4362, 'state_Sh__fa_4362', 'Shéfa',
'Shéfa', '', 'SEE', 'state', 1),
(4363, 'state_Taf__a_4363', 'Taféa',
'Taféa', '', 'TAE', 'state', 1),
(4364, 'state_Torba_4364', 'Torba', 'Torba',
'', 'TOB', 'state', 1),
(4365, 'state_Distrito_Capital_4365', 'Distrito
Capital', 'Distrito Capital', '', 'A',
'state', 1),
(4366, 'state_Anzo__tegui_4366', 'Anzoátegui',
'Anzoátegui', '', 'B', 'state',
1),
(4367, 'state_Apure_4367', 'Apure', 'Apure',
'', 'C', 'state', 1),
(4368, 'state_Aragua_4368', 'Aragua',
'Aragua', '', 'D', 'state', 1),
(4369, 'state_Barinas_4369', 'Barinas',
'Barinas', '', 'E', 'state', 1),
(4370, 'state_Bol__var_4370', 'Bolívar',
'Bolívar', '', 'F', 'state', 1),
(4371, 'state_Carabobo_4371', 'Carabobo',
'Carabobo', '', 'G', 'state', 1),
(4372, 'state_Cojedes_4372', 'Cojedes',
'Cojedes', '', 'H', 'state', 1),
(4373, 'state_Falc__n_4373', 'Falcón',
'Falcón', '', 'I', 'state', 1),
(4374, 'state_Gu__rico_4374', 'Guárico',
'Guárico', '', 'J', 'state', 1),
(4375, 'state_Lara_4375', 'Lara', 'Lara',
'', 'K', 'state', 1),
(4376, 'state_M__rida_4376', 'Mérida',
'Mérida', '', 'L', 'state', 1),
(4377, 'state_Miranda_4377', 'Miranda',
'Miranda', '', 'M', 'state', 1),
(4378, 'state_Monagas_4378', 'Monagas',
'Monagas', '', 'N', 'state', 1),
(4379, 'state_Nueva_Esparta_4379', 'Nueva Esparta',
'Nueva Esparta', '', 'O', 'state',
1),
(4380, 'state_Portuguesa_4380', 'Portuguesa',
'Portuguesa', '', 'P', 'state',
1),
(4381, 'state_Sucre_4381', 'Sucre', 'Sucre',
'', 'R', 'state', 1),
(4382, 'state_Tachira_4382', 'Tachira',
'Tachira', '', 'S', 'state', 1),
(4383, 'state_Trujillo_4383', 'Trujillo',
'Trujillo', '', 'T', 'state', 1),
(4384, 'state_Yaracuy_4384', 'Yaracuy',
'Yaracuy', '', 'U', 'state', 1),
(4385, 'state_Zulia_4385', 'Zulia', 'Zulia',
'', 'V', 'state', 1),
(4386, 'state_Capital_Dependencia_4386', 'Capital
Dependencia', 'Capital Dependencia', '',
'W', 'state', 1),
(4387, 'state_Vargas_4387', 'Vargas',
'Vargas', '', 'X', 'state', 1),
(4388, 'state_Delta_Amacuro_4388', 'Delta Amacuro',
'Delta Amacuro', '', 'Y', 'state',
1),
(4389, 'state_Amazonas_4389', 'Amazonas',
'Amazonas', '', 'Z', 'state', 1),
(4390, 'state_Lai_Ch__u_4390', 'Lai Châu', 'Lai
Châu', '', '01', 'state', 1),
(4391, 'state_L__o_Cai_4391', 'Lào Cai', 'Lào
Cai', '', '02', 'state', 1),
(4392, 'state_H___Giang_4392', 'Hà Giang', 'Hà
Giang', '', '03', 'state', 1),
(4393, 'state_Cao_B___ng_4393', 'Cao Bằng', 'Cao
Bằng', '', '04', 'state', 1),
(4394, 'state_S__n_La_4394', 'Sơn La', 'Sơn
La', '', '05', 'state', 1),
(4395, 'state_Y__n_B__i_4395', 'Yên Bái', 'Yên
Bái', '', '06', 'state', 1),
(4396, 'state_Tuy__n_Quang_4396', 'Tuyên Quang',
'Tuyên Quang', '', '07', 'state',
1),
(4397, 'state_L___ng_S__n_4397', 'Lạng Sơn',
'Lạng Sơn', '', '09', 'state',
1),
(4398, 'state_Qu___ng_Ninh_4398', 'Quảng Ninh',
'Quảng Ninh', '', '13', 'state',
1),
(4399, 'state_H__a_B__nh_4399', 'Hòa Bình',
'Hòa Bình', '', '14', 'state',
1),
(4400, 'state_H___T__y_4400', 'Hà Tây', 'Hà
Tây', '', '15', 'state', 1),
(4401, 'state_Ninh_B__nh_4401', 'Ninh Bình',
'Ninh Bình', '', '18', 'state',
1),
(4402, 'state_Th__i_B__nh_4402', 'Thái Bình',
'Thái Bình', '', '20', 'state',
1),
(4403, 'state_Thanh_H__a_4403', 'Thanh Hóa',
'Thanh Hóa', '', '21', 'state',
1),
(4404, 'state_Ngh____An_4404', 'Nghệ An',
'Nghệ An', '', '22', 'state',
1),
(4405, 'state_H___T__nh_4405', 'Hà Tĩnh', 'Hà
Tĩnh', '', '23', 'state', 1),
(4406, 'state_Qu___ng_B__nh_4406', 'Quảng Bình',
'Quảng Bình', '', '24', 'state',
1),
(4407, 'state_Qu___ng_Tr____4407', 'Quảng Trị',
'Quảng Trị', '', '25', 'state',
1),
(4408, 'state_Th___a_Thi__n_Hu____4408', 'Thừa
Thiên-Huế', 'Thừa Thiên-Huế', '',
'26', 'state', 1),
(4409, 'state_Qu___ng_Nam_4409', 'Quảng Nam',
'Quảng Nam', '', '27', 'state',
1),
(4410, 'state_Kon_Tum_4410', 'Kon Tum', 'Kon
Tum', '', '28', 'state', 1),
(4411, 'state_Qu___ng_Ng__i_4411', 'Quảng Ngãi',
'Quảng Ngãi', '', '29', 'state',
1),
(4412, 'state_Gia_Lai_4412', 'Gia Lai', 'Gia
Lai', '', '30', 'state', 1),
(4413, 'state_B__nh______nh_4413', 'Bình Định',
'Bình Định', '', '31', 'state',
1),
(4414, 'state_Ph___Y__n_4414', 'Phú Yên', 'Phú
Yên', '', '32', 'state', 1),
(4415, 'state______k_L___k_4415', 'Đắk Lắk',
'Đắk Lắk', '', '33', 'state',
1),
(4416, 'state_Kh__nh_H__a_4416', 'Khánh Hòa',
'Khánh Hòa', '', '34', 'state',
1),
(4417, 'state_L__m______ng_4417', 'Lâm Đồng',
'Lâm Đồng', '', '35', 'state',
1),
(4418, 'state_Ninh_Thu___n_4418', 'Ninh Thuận',
'Ninh Thuận', '', '36', 'state',
1),
(4419, 'state_T__y_Ninh_4419', 'Tây Ninh', 'Tây
Ninh', '', '37', 'state', 1),
(4420, 'state______ng_Nai_4420', 'Đồng Nai',
'Đồng Nai', '', '39', 'state',
1),
(4421, 'state_B__nh_Thu___n_4421', 'Bình Thuận',
'Bình Thuận', '', '40', 'state',
1),
(4422, 'state_Long_An_4422', 'Long An', 'Long
An', '', '41', 'state', 1),
(4423, 'state_B___R___a_V__ng_T__u_4423', 'Bà Rịa-Vũng
Tàu', 'Bà Rịa-Vũng Tàu', '', '43',
'state', 1),
(4424, 'state_An_Giang_4424', 'An Giang', 'An
Giang', '', '44', 'state', 1),
(4425, 'state______ng_Th__p_4425', 'Đồng Tháp',
'Đồng Tháp', '', '45', 'state',
1),
(4426, 'state_Ti___n_Giang_4426', 'Tiền Giang',
'Tiền Giang', '', '46', 'state',
1),
(4427, 'state_Ki__n_Giang_4427', 'Kiên Giang',
'Kiên Giang', '', '47', 'state',
1),
(4428, 'state_C___n_Th___4428', 'Cần Thơ',
'Cần Thơ', '', '48', 'state',
1),
(4429, 'state_V__nh_Long_4429', 'Vĩnh Long',
'Vĩnh Long', '', '49', 'state',
1),
(4430, 'state_B___n_Tre_4430', 'Bến Tre', 'Bến
Tre', '', '50', 'state', 1),
(4431, 'state_Tr___Vinh_4431', 'Trà Vinh', 'Trà
Vinh', '', '51', 'state', 1),
(4432, 'state_S__c_Tr__ng_4432', 'Sóc Trăng',
'Sóc Trăng', '', '52', 'state',
1),
(4433, 'state_B___c_K___n_4433', 'Bắc Kạn',
'Bắc Kạn', '', '53', 'state',
1),
(4434, 'state_B___c_Giang_4434', 'Bắc Giang',
'Bắc Giang', '', '54', 'state',
1),
(4435, 'state_B___c_Li__u_4435', 'Bạc Liêu',
'Bạc Liêu', '', '55', 'state',
1),
(4436, 'state_B___c_Ninh_4436', 'Bắc Ninh',
'Bắc Ninh', '', '56', 'state',
1),
(4437, 'state_B__nh_D____ng_4437', 'Bình Dương',
'Bình Dương', '', '57', 'state',
1),
(4438, 'state_B__nh_Ph_____c_4438', 'Bình Phước',
'Bình Phước', '', '58',
'state', 1),
(4439, 'state_C___Mau_4439', 'Cà Mau', 'Cà
Mau', '', '59', 'state', 1),
(4440, 'state______N___ng_4440', 'Đà Nẵng',
'Đà Nẵng', '', '60', 'state',
1),
(4441, 'state_H___i_D____ng_4441', 'Hải Dương',
'Hải Dương', '', '61', 'state',
1),
(4442, 'state_H___i_Ph__ng_4442', 'Hải Phòng',
'Hải Phòng', '', '62', 'state',
1),
(4443, 'state_H___Nam_4443', 'Hà Nam', 'Hà
Nam', '', '63', 'state', 1),
(4444, 'state_H___N___i_4444', 'Hà Nội', 'Hà
Nội', '', '64', 'state', 1),
(4445, 'state_S__i_G__n_4445', 'Sài Gòn', 'Sài
Gòn', '', '65', 'state', 1),
(4446, 'state_H__ng_Y__n_4446', 'Hưng Yên',
'Hưng Yên', '', '66', 'state',
1),
(4447, 'state_Nam______nh_4447', 'Nam Định',
'Nam Định', '', '67', 'state',
1),
(4448, 'state_Ph___Th____4448', 'Phú Thọ',
'Phú Thọ', '', '68', 'state',
1),
(4449, 'state_Th__i_Nguy__n_4449', 'Thái Nguyên',
'Thái Nguyên', '', '69', 'state',
1),
(4450, 'state_V__nh_Ph__c_4450', 'Vĩnh Phúc',
'Vĩnh Phúc', '', '70', 'state',
1),
(4451, 'state___i___n_Bi__n_4451', 'Điện Biên',
'Điện Biên', '', '71', 'state',
1),
(4452, 'state______k_N__ng_4452', 'Đắk Nông',
'Đắk Nông', '', '72', 'state',
1),
(4453, 'state_H___u_Giang_4453', 'Hậu Giang',
'Hậu Giang', '', '73', 'state',
1),
(4454, 'state_Saint_Croix_4454', 'Saint Croix',
'Saint Croix', '', 'C', 'state',
1),
(4457, 'state_Alo_4457', 'Alo', 'Alo',
'', 'A', 'state', 1),
(4458, 'state_Sigave_4458', 'Sigave',
'Sigave', '', 'S', 'state', 1),
(4459, 'state_Wallis_4459', 'Wallis',
'Wallis', '', 'W', 'state', 1),
(4460, 'state_____________4460', 'أبين‎',
'أبين‎', '', 'AB', 'state',
1),
(4461, 'state________4461', 'عدن',
'عدن', '', 'AD', 'state', 1),
(4462, 'state____________4462', 'عمران',
'عمران', '', 'AM', 'state',
1),
(4463, 'state________________4463', 'البيضاء',
'البيضاء', '', 'BA',
'state', 1),
(4464, 'state______________4464', 'الضالع',
'الضالع', '', 'DA', 'state',
1),
(4465, 'state__________4465', 'ذمار',
'ذمار', '', 'DH', 'state', 1),
(4466, 'state______________4466', 'حضرموت',
'حضرموت', '', 'HD', 'state',
1),
(4467, 'state________4467', 'حجة',
'حجة', '', 'HJ', 'state', 1),
(4468, 'state________________4468', 'الحديدة',
'الحديدة', '', 'HU',
'state', 1),
(4469, 'state______4469', 'إب', 'إب',
'', 'IB', 'state', 1),
(4470, 'state____________4470', 'الجوف',
'الجوف', '', 'JA', 'state',
1),
(4471, 'state________4471', 'لحج',
'لحج', '', 'LA', 'state', 1),
(4472, 'state__________4472', 'مأرب',
'مأرب', '', 'MA', 'state', 1),
(4473, 'state______________4473', 'المهرة',
'المهرة', '', 'MR', 'state',
1),
(4474, 'state________________4474', 'المحويت',
'المحويت', '', 'MW',
'state', 1),
(4475, 'state__________4475', 'صعدة',
'صعدة', '', 'SD', 'state', 1),
(4476, 'state____________4476', 'صنعاء',
'صنعاء', '', 'SN', 'state',
1),
(4477, 'state__________4477', 'شبوة',
'شبوة', '', 'SH', 'state', 1),
(4478, 'state________4478', 'تعز',
'تعز', '', 'TA', 'state', 1),
(4479, 'state_Western_4479', 'Western',
'Western', '', '01', 'state', 1),
(4480, 'state_Central_4480', 'Central',
'Central', '', '02', 'state', 1),
(4481, 'state_Eastern_4481', 'Eastern',
'Eastern', '', '03', 'state', 1),
(4482, 'state_Luapula_4482', 'Luapula',
'Luapula', '', '04', 'state', 1),
(4483, 'state_Northern_4483', 'Northern',
'Northern', '', '05', 'state', 1),
(4484, 'state_North_Western_4484', 'North-Western',
'North-Western', '', '06', 'state',
1),
(4485, 'state_Southern_4485', 'Southern',
'Southern', '', '07', 'state', 1),
(4486, 'state_Copperbelt_4486', 'Copperbelt',
'Copperbelt', '', '08', 'state',
1),
(4487, 'state_Lusaka_4487', 'Lusaka',
'Lusaka', '', '09', 'state', 1),
(4488, 'state_Manicaland_4488', 'Manicaland',
'Manicaland', '', 'MA', 'state',
1),
(4489, 'state_Mashonaland_Central_4489', 'Mashonaland
Central', 'Mashonaland Central', '',
'MC', 'state', 1),
(4490, 'state_Mashonaland_East_4490', 'Mashonaland
East', 'Mashonaland East', '', 'ME',
'state', 1),
(4491, 'state_Midlands_4491', 'Midlands',
'Midlands', '', 'MI', 'state', 1),
(4492, 'state_Matabeleland_North_4492', 'Matabeleland
North', 'Matabeleland North', '', 'MN',
'state', 1),
(4493, 'state_Matabeleland_South_4493', 'Matabeleland
South', 'Matabeleland South', '', 'MS',
'state', 1),
(4494, 'state_Masvingo_4494', 'Masvingo',
'Masvingo', '', 'MV', 'state', 1),
(4495, 'state_Mashonaland_West_4495', 'Mashonaland
West', 'Mashonaland West', '', 'MW',
'state', 1),
(4501, 'tax_europe_9728', 'Europe', 'Europe',
'EU', '', 'tax', 1),
(4502, 'country_Montenegro_19668', 'Црна Гора',
'Montenegro', 'ME', 'MNE',
'country', 1),
(4503, 'country_Serbia_4503', 'Србија',
'Serbia', 'RS', 'SRB', 'country',
1),
('4554', 'state_Aberdeenshire_4554',
'Aberdeenshire', 'Aberdeenshire', '',
'ABR', 'state', '1'),
('4555', 'state_Anglesey_4555', 'Anglesey',
'Anglesey', '', 'ANG', 'state',
'1'),
('4506', 'state_Angus_4506', 'Angus',
'Angus', '', 'AGS', 'state',
'1'),
('4507', 'state_Argyllshire_4507',
'Argyllshire', 'Argyllshire', '',
'AGL', 'state', '1'),
('4508', 'state_Ayrshire_4508', 'Ayrshire',
'Ayrshire', '', 'AYR', 'state',
'1'),
('4509', 'state_Banffshire_4509',
'Banffshire', 'Banffshire', '',
'ANF', 'state', '1'),
('4510', 'state_Berwickshire_4510',
'Berwickshire', 'Berwickshire', '',
'BRW', 'state', '1'),
('4511', 'state_Brecknockshire_4511',
'Brecknockshire', 'Brecknockshire', '',
'BRC', 'state', '1'),
('4512', 'state_Buteshire_4512', 'Buteshire',
'Buteshire', '', 'BTS', 'state',
'1'),
('4513', 'state_Caernarfonshire_4513',
'Caernarfonshire', 'Caernarfonshire', '',
'CRN', 'state', '1'),
('4514', 'state_Caithness_4514', 'Caithness',
'Caithness', '', 'CTN', 'state',
'1'),
('4515', 'state_Cardiganshire_4515',
'Cardiganshire', 'Cardiganshire', '',
'CGN', 'state', '1'),
('4516', 'state_Channel_Isles_4516', 'Channel
Isles', 'Channel Isles', '', 'CHI',
'state', '1'),
('4517', 'state_Clackmannanshire_4517',
'Clackmannanshire', 'Clackmannanshire', '',
'CLK', 'state', '1'),
('4518', 'state_County_Armagh_4518', 'County
Armagh', 'County Armagh', '', 'CAM',
'state', '1'),
('4519', 'state_Cumberland_4519',
'Cumberland', 'Cumberland', '',
'CRL', 'state', '1'),
('4520', 'state_Dumfriesshire_4520',
'Dumfriesshire', 'Dumfriesshire', '',
'DFS', 'state', '1'),
('4521', 'state_Dunbartonshire_4521',
'Dunbartonshire', 'Dunbartonshire', '',
'DBT', 'state', '1'),
('4522', 'state_East_Lothian_4522', 'East
Lothian', 'East Lothian', '', 'ELT',
'state', '1'),
('4523', 'state_Huntingdonshire_4523',
'Huntingdonshire', 'Huntingdonshire', '',
'HTG', 'state', '1'),
('4524', 'state_Inverness-shire_4524',
'Inverness-shire', 'Inverness-shire', '',
'INV', 'state', '1'),
('4525', 'state_Isle_ of_Islay_4525', 'Isle of
Islay', 'Isle of Islay', '', 'IOI',
'state', '1'),
('4526', 'state_Isle_of_Lewis_4526', 'Isle of
Lewis', 'Isle of Lewis', '', 'IOL',
'state', '1'),
('4527', 'state_Isle_of_Man_4527', 'Isle of
Man', 'Isle of Man', '', 'IOM',
'state', '1'),
('4528', 'state_Isle_of_Skye_4528', 'Isle of
Skye', 'Isle of Skye', '', 'IOS',
'state', '1'),
('4529', 'state_Isles_of_Scilly_4529', 'Isles of
Scilly', 'Isles of Scilly', '', 'ISC',
'state', '1'),
('4530', 'state_Kincardineshire_4530',
'Kincardineshire', 'Kincardineshire', '',
'KNC', 'state', '1'),
('4531', 'state_Kinross-Shire_4531',
'Kinross-Shire', 'Kinross-Shire', '',
'KNR', 'state', '1'),
('4532', 'state_Kirkcudbrightshire_4532',
'Kirkcudbrightshire', 'Kirkcudbrightshire',
'', 'KKC', 'state', '1'),
('4533', 'state_Lanarkshire_4533',
'Lanarkshire', 'Lanarkshire', '',
'LNK', 'state', '1'),
('4534', 'state_Merioneth_4534', 'Merioneth',
'Merioneth', '', 'MRN', 'state',
'1'),
('4535', 'state_Midlothian_4535',
'Midlothian', 'Midlothian', '',
'MDL', 'state', '1'),
('4536', 'state_Monmouthshire_4536',
'Monmouthshire', 'Monmouthshire', '',
'MMS', 'state', '1'),
('4537', 'state_Montgomeryshire_4537',
'Montgomeryshire', 'Montgomeryshire', '',
'MGY', 'state', '1'),
('4538', 'state_Morayshire_4538',
'Morayshire', 'Morayshire', '',
'MRY', 'state', '1'),
('4539', 'state_Nairnshire_4539',
'Nairnshire', 'Nairnshire', '',
'NNS', 'state', '1'),
('4540', 'state_Orkney_4540', 'Orkney',
'Orkney', '', 'OKY', 'state',
'1'),
('4541', 'state_Peeblesshire_4541',
'Peeblesshire', 'Peeblesshire', '',
'PBL', 'state', '1'),
('4542', 'state_Perthshire_4542',
'Perthshire', 'Perthshire', '',
'PTS', 'state', '1'),
('4543', 'state_Radnorshire_4543',
'Radnorshire', 'Radnorshire', '',
'RDN', 'state', '1'),
('4544', 'state_Ross-shire_4544',
'Ross-shire', 'Ross-shire', '',
'RSS', 'state', '1'),
('4545', 'state_Roxburghshire_4545',
'Roxburghshire', 'Roxburghshire', '',
'RXB', 'state', '1'),
('4546', 'state_Rutland_4546', 'Rutland',
'Rutland', '', 'RTL', 'state',
'1'),
('4547', 'state_Selkirkshire_4547',
'Selkirkshire', 'Selkirkshire', '',
'SKK', 'state', '1'),
('4548', 'state_Shetland_4548', 'Shetland',
'Shetland', '', 'SHL', 'state',
'1'),
('4549', 'state_Stirlingshire_4549',
'Stirlingshire', 'Stirlingshire', '',
'STG', 'state', '1'),
('4550', 'state_Sussex_4550', 'Sussex',
'Sussex', '', 'SSX', 'state',
'1'),
('4551', 'state_Sutherland_4551',
'Sutherland', 'Sutherland', '',
'STH', 'state', '1'),
('4552', 'state_Westmorland_4552',
'Westmorland', 'Westmorland', '',
'WSM', 'state', '1'),
('4553', 'state_Wigtownshire_4553',
'Wigtownshire', 'Wigtownshire', '',
'WGT', 'state', '1'),
('4554', 'country_isle_of_man_4554', 'Isle of
Man', 'Isle of Man', 'IM', 'IMN',
'country', '1'),
('4555', 'country_Moldova_4555', 'Moldova',
'Moldova', 'MD', 'MDA', 'country',
'1');";
		$this->db->setQuery($query);
		$this->db->query();
		if($this->update) return true;
		$query=<<<EOD
INSERT IGNORE INTO `#__hikashop_widget` (`widget_id`, `widget_name`,
`widget_params`) VALUES
(1, 'Last 7 orders',
'O:8:"stdClass":11:{s:7:"content";s:6:"orders";s:7:"display";s:7:"listing";s:9:"date_type";s:7:"created";s:10:"date_group";s:5:"%j
%Y";s:5:"start";s:0:"";s:3:"end";s:0:"";s:6:"period";s:1:"0";s:6:"status";s:0:"";s:5:"limit";s:1:"7";s:6:"region";s:5:"world";s:6:"format";s:5:"UTF-8";}'),
(2, 'Sales over the last 30 days',
'O:8:"stdClass":11:{s:7:"content";s:5:"sales";s:7:"display";s:5:"graph";s:9:"date_type";s:7:"created";s:10:"date_group";s:5:"%j
%Y";s:5:"start";s:0:"";s:3:"end";s:0:"";s:6:"period";s:7:"2592000";s:6:"status";s:17:"confirmed,shipped";s:5:"limit";s:0:"";s:6:"region";s:5:"world";s:6:"format";s:5:"UTF-8";}'),
(3, 'Last 7 customers',
'O:8:"stdClass":11:{s:7:"content";s:9:"customers";s:7:"display";s:7:"listing";s:9:"date_type";s:7:"created";s:10:"date_group";s:5:"%j
%Y";s:5:"start";s:0:"";s:3:"end";s:0:"";s:6:"period";s:1:"0";s:6:"status";s:0:"";s:5:"limit";s:1:"7";s:6:"region";s:5:"world";s:6:"format";s:5:"UTF-8";}');
EOD;

		$this->db->setQuery($query);
		$this->db->query();
		$query="INSERT IGNORE INTO `#__hikashop_zone_link`
(`zone_parent_namekey`, `zone_child_namekey`) VALUES
('country_Afghanistan_1', 'state_______________240'),
('country_Afghanistan_1', 'state______________241'),
('country_Afghanistan_1', 'state____________242'),
('country_Afghanistan_1', 'state________243'),
('country_Afghanistan_1', 'state______________244'),
('country_Afghanistan_1', 'state________________245'),
('country_Afghanistan_1', 'state__________246'),
('country_Afghanistan_1', 'state______________247'),
('country_Afghanistan_1', 'state__________248'),
('country_Afghanistan_1', 'state________249'),
('country_Afghanistan_1', 'state____________250'),
('country_Afghanistan_1', 'state__________251'),
('country_Afghanistan_1', 'state______________252'),
('country_Afghanistan_1', 'state__________253'),
('country_Afghanistan_1', 'state______________254'),
('country_Afghanistan_1', 'state______________255'),
('country_Afghanistan_1', 'state__________256'),
('country_Afghanistan_1', 'state____________257'),
('country_Afghanistan_1', 'state____________258'),
('country_Afghanistan_1', 'state____________259'),
('country_Afghanistan_1', 'state__________260'),
('country_Afghanistan_1', 'state________________261'),
('country_Afghanistan_1', 'state______________262'),
('country_Afghanistan_1', 'state________________263'),
('country_Afghanistan_1', 'state________________264'),
('country_Afghanistan_1', 'state____________265'),
('country_Afghanistan_1', 'state______________266'),
('country_Afghanistan_1', 'state_______________267'),
('country_Afghanistan_1', 'state____________268'),
('country_Afghanistan_1', 'state______________269'),
('country_Afghanistan_1', 'state___________270'),
('country_Afghanistan_1', 'state__________271'),
('country_Afghanistan_1', 'state__________272'),
('country_Afghanistan_1', 'state__________273'),
('country_Albania_2', 'state_Beratit_274'),
('country_Albania_2', 'state_Bulqiz__s_275'),
('country_Albania_2', 'state_Dibr__s_276'),
('country_Albania_2', 'state_Delvin__s_277'),
('country_Albania_2', 'state_Durr__sit_278'),
('country_Albania_2', 'state_Devollit_279'),
('country_Albania_2', 'state_Elbasanit_280'),
('country_Albania_2', 'state_Kolonj__s_281'),
('country_Albania_2', 'state_Fierit_282'),
('country_Albania_2', 'state_Gjirokastr__s_283'),
('country_Albania_2', 'state_Gramshit_284'),
('country_Albania_2', 'state_Hasit_285'),
('country_Albania_2', 'state_Kavaj__s_286'),
('country_Albania_2', 'state_Kurbinit_287'),
('country_Albania_2', 'state_Ku__ov__s_288'),
('country_Albania_2', 'state_Kor____s_289'),
('country_Albania_2', 'state_Kruj__s_290'),
('country_Albania_2', 'state_Kuk__sit_291'),
('country_Albania_2', 'state_Librazhdit_292'),
('country_Albania_2', 'state_Lezh__s_293'),
('country_Albania_2', 'state_Lushnj__s_294'),
('country_Albania_2', 'state_Mallakastr__s_295'),
('country_Albania_2',
'state_Mal__sis___s___Madhe_296'),
('country_Albania_2', 'state_Mirdit__s_297'),
('country_Albania_2', 'state_Matit_298'),
('country_Albania_2', 'state_Pogradecit_299'),
('country_Albania_2', 'state_Peqinit_300'),
('country_Albania_2', 'state_P__rmetit_301'),
('country_Albania_2', 'state_Puk__s_302'),
('country_Albania_2', 'state_Shkodr__s_303'),
('country_Albania_2', 'state_Skraparit_304'),
('country_Albania_2', 'state_Sarand__s_305'),
('country_Albania_2', 'state_Tepelen__s_306'),
('country_Albania_2', 'state_Tropoj__s_307'),
('country_Albania_2', 'state_Tiran__s_308'),
('country_Albania_2', 'state_Vlor__s_309'),
('country_Algeria_3',
'state_______________________310'),
('country_Algeria_3',
'state_______________________311'),
('country_Algeria_3',
'state___________________________312'),
('country_Algeria_3',
'state________________________________313'),
('country_Algeria_3',
'state_______________________314'),
('country_Algeria_3',
'state_______________________315'),
('country_Algeria_3',
'state_______________________316'),
('country_Algeria_3',
'state_____________________317'),
('country_Algeria_3', 'state___________________318'),
('country_Algeria_3',
'state___________________________319'),
('country_Algeria_3',
'state___________________________320'),
('country_Algeria_3',
'state_____________________321'),
('country_Algeria_3', 'state______________322'),
('country_Algeria_3',
'state_______________________323'),
('country_Algeria_3', 'state_________________324'),
('country_Algeria_3',
'state___________________________325'),
('country_Algeria_3',
'state________________________________326'),
('country_Algeria_3',
'state_____________________327'),
('country_Algeria_3',
'state_____________________328'),
('country_Algeria_3',
'state_______________________329'),
('country_Algeria_3', 'state__________________330'),
('country_Algeria_3',
'state__________________________________331'),
('country_Algeria_3',
'state_______________________332'),
('country_Algeria_3',
'state_______________________333'),
('country_Algeria_3', 'state________________334'),
('country_Algeria_3',
'state_________________________335'),
('country_Algeria_3',
'state___________________________336'),
('country_Algeria_3',
'state___________________________337'),
('country_Algeria_3',
'state_______________________338'),
('country_Algeria_3', 'state____________339'),
('country_Algeria_3', 'state____________340'),
('country_Algeria_3',
'state_______________________341'),
('country_Algeria_3',
'state_______________________342'),
('country_Algeria_3',
'state____________________________________343'),
('country_Algeria_3',
'state___________________________344'),
('country_Algeria_3',
'state_________________________345'),
('country_Algeria_3', 'state____________346'),
('country_Algeria_3',
'state___________________________347'),
('country_Algeria_3',
'state_________________________348'),
('country_Algeria_3',
'state_______________________349'),
('country_Algeria_3',
'state______________________________350'),
('country_Algeria_3',
'state_________________________351'),
('country_Algeria_3',
'state_____________________352'),
('country_Algeria_3',
'state________________________________353'),
('country_Algeria_3',
'state___________________________354'),
('country_Algeria_3',
'state________________________________355'),
('country_Algeria_3',
'state_________________________356'),
('country_Algeria_3',
'state_________________________357'),
('country_American_Samoa_4', 'state_Eastern_358'),
('country_American_Samoa_4', 'state_Manu_a_359'),
('country_American_Samoa_4', 'state_Rose_Island_360'),
('country_American_Samoa_4',
'state_Swains_Island_361'),
('country_American_Samoa_4', 'state_Western_362'),
('country_Andorra_5', 'state_Andorra_la_Vella_363'),
('country_Andorra_5', 'state_Canillo_364'),
('country_Andorra_5', 'state_Encamp_365'),
('country_Andorra_5', 'state_Escaldes_Engordany_366'),
('country_Andorra_5', 'state_La_Massana_367'),
('country_Andorra_5', 'state_Ordino_368'),
('country_Andorra_5',
'state_Sant_Juli___de_L__ria_369'),
('country_Angola_6', 'state_Bengo_370'),
('country_Angola_6', 'state_Benguela_371'),
('country_Angola_6', 'state_Bi___372'),
('country_Angola_6', 'state_Cabinda_373'),
('country_Angola_6', 'state_Cuando_Cubango_374'),
('country_Angola_6', 'state_Cuanza_Norte_375'),
('country_Angola_6', 'state_Cuanza_Sul_376'),
('country_Angola_6', 'state_Cunene_377'),
('country_Angola_6', 'state_Huambo_378'),
('country_Angola_6', 'state_Hu__la_379'),
('country_Angola_6', 'state_Luanda_380'),
('country_Angola_6', 'state_Lunda_Norte_381'),
('country_Angola_6', 'state_Lunda_Sul_382'),
('country_Angola_6', 'state_Malanje_383'),
('country_Angola_6', 'state_Moxico_384'),
('country_Angola_6', 'state_Namibe_385'),
('country_Angola_6', 'state_U__ge_386'),
('country_Angola_6', 'state_Zaire_387'),
('country_Antigua_and_Barbuda_9',
'state_Barbuda_388'),
('country_Antigua_and_Barbuda_9',
'state_Saint_George_389'),
('country_Antigua_and_Barbuda_9',
'state_Saint_John_390'),
('country_Antigua_and_Barbuda_9',
'state_Saint_Mary_391'),
('country_Antigua_and_Barbuda_9',
'state_Saint_Paul_392'),
('country_Antigua_and_Barbuda_9',
'state_Saint_Peter_393'),
('country_Antigua_and_Barbuda_9',
'state_Saint_Philip_394'),
('country_Argentina_10', 'state_Salta_395'),
('country_Argentina_10',
'state_Buenos_Aires_Province_396'),
('country_Argentina_10', 'state_Capital_Federal_397'),
('country_Argentina_10', 'state_San_Luis_398'),
('country_Argentina_10', 'state_Entre_R__os_399'),
('country_Argentina_10', 'state_La_Rioja_400'),
('country_Argentina_10',
'state_Santiago_del_Estero_401'),
('country_Argentina_10', 'state_Chaco_402'),
('country_Argentina_10', 'state_San_Juan_403'),
('country_Argentina_10', 'state_Catamarca_404'),
('country_Argentina_10', 'state_La_Pampa_405'),
('country_Argentina_10', 'state_Mendoza_406'),
('country_Argentina_10', 'state_Misiones_407'),
('country_Argentina_10', 'state_Formosa_408'),
('country_Argentina_10', 'state_Neuqu__n_409'),
('country_Argentina_10', 'state_R__o_Negro_410'),
('country_Argentina_10', 'state_Santa_Fe_411'),
('country_Argentina_10', 'state_Tucum__n_412'),
('country_Argentina_10', 'state_Chubut_413'),
('country_Argentina_10',
'state_Tierra_del_Fuego_414'),
('country_Argentina_10', 'state_Corrientes_415'),
('country_Argentina_10', 'state_C__rdoba_416'),
('country_Argentina_10', 'state_Jujuy_417'),
('country_Argentina_10', 'state_Santa_Cruz_418'),
('country_Armenia_11',
'state____________________419'),
('country_Armenia_11', 'state______________420'),
('country_Armenia_11', 'state________________421'),
('country_Armenia_11', 'state____________422'),
('country_Armenia_11',
'state________________________423'),
('country_Armenia_11', 'state______________424'),
('country_Armenia_11', 'state__________425'),
('country_Armenia_11', 'state____________426'),
('country_Armenia_11', 'state________________427'),
('country_Armenia_11', 'state______________428'),
('country_Armenia_11', 'state___________________429'),
('country_Australia_13',
'state_Australian_Capital_Territory_430'),
('country_Australia_13', 'state_New_South_Wales_431'),
('country_Australia_13',
'state_Northern_Territory_432'),
('country_Australia_13', 'state_Queensland_433'),
('country_Australia_13', 'state_South_Australia_434'),
('country_Australia_13', 'state_Tasmania_435'),
('country_Australia_13', 'state_Victoria_436'),
('country_Australia_13',
'state_Western_Australia_437'),
('country_Austria_14', 'state_Burgenland_438'),
('country_Austria_14', 'state_K__rnten_439'),
('country_Austria_14', 'state_Nieder__sterreich_440'),
('country_Austria_14', 'state_Ober__sterreich_441'),
('country_Austria_14', 'state_Salzburg_442'),
('country_Austria_14', 'state_Steiermark_443'),
('country_Austria_14', 'state_Tirol_444'),
('country_Austria_14', 'state_Voralberg_445'),
('country_Austria_14', 'state_Wien_446'),
('country_Azerbaijan_15', 'state___li_Bayraml___447'),
('country_Azerbaijan_15', 'state_Ab__eron_448'),
('country_Azerbaijan_15', 'state_A__cab__di_449'),
('country_Azerbaijan_15', 'state_A__dam_450'),
('country_Azerbaijan_15', 'state_A__da___451'),
('country_Azerbaijan_15', 'state_A__stafa_452'),
('country_Azerbaijan_15', 'state_A__su_453'),
('country_Azerbaijan_15', 'state_Astara_454'),
('country_Azerbaijan_15', 'state_Bak___455'),
('country_Azerbaijan_15', 'state_Bab__k_456'),
('country_Azerbaijan_15', 'state_Balak__n_457'),
('country_Azerbaijan_15', 'state_B__rd___458'),
('country_Azerbaijan_15', 'state_Beyl__qan_459'),
('country_Azerbaijan_15', 'state_Bil__suvar_460'),
('country_Azerbaijan_15', 'state_C__bray__l_461'),
('country_Azerbaijan_15', 'state_C__lilabab_462'),
('country_Azerbaijan_15', 'state_Julfa_463'),
('country_Azerbaijan_15', 'state_Da__k__s__n_464'),
('country_Azerbaijan_15', 'state_D__v____i_465'),
('country_Azerbaijan_15', 'state_F__zuli_466'),
('country_Azerbaijan_15', 'state_G__nc___467'),
('country_Azerbaijan_15', 'state_G__d__b__y_468'),
('country_Azerbaijan_15', 'state_Goranboy_469'),
('country_Azerbaijan_15', 'state_G__y__ay_470'),
('country_Azerbaijan_15', 'state_Hac__qabul_471'),
('country_Azerbaijan_15', 'state___mi__li_472'),
('country_Azerbaijan_15', 'state___smay__ll___473'),
('country_Azerbaijan_15', 'state_K__lb__c__r_474'),
('country_Azerbaijan_15', 'state_K__rd__mir_475'),
('country_Azerbaijan_15', 'state_L__nk__ran_476'),
('country_Azerbaijan_15', 'state_La____n_477'),
('country_Azerbaijan_15', 'state_L__nk__ran_478'),
('country_Azerbaijan_15', 'state_Lerik_479'),
('country_Azerbaijan_15', 'state_Masall___480'),
('country_Azerbaijan_15', 'state_Ming____evir_481'),
('country_Azerbaijan_15', 'state_Naftalan_482'),
('country_Azerbaijan_15', 'state_Neft__ala_483'),
('country_Azerbaijan_15', 'state_O__uz_484'),
('country_Azerbaijan_15', 'state_Ordubad_485'),
('country_Azerbaijan_15', 'state_Q__b__l___486'),
('country_Azerbaijan_15', 'state_Qax_487'),
('country_Azerbaijan_15', 'state_Qazax_488'),
('country_Azerbaijan_15', 'state_Qobustan_489'),
('country_Azerbaijan_15', 'state_Quba_490'),
('country_Azerbaijan_15', 'state_Qubadl___491'),
('country_Azerbaijan_15', 'state_Qusar_492'),
('country_Azerbaijan_15', 'state_____ki_493'),
('country_Azerbaijan_15', 'state_Saatl___494'),
('country_Azerbaijan_15', 'state_Sabirabad_495'),
('country_Azerbaijan_15', 'state_S__d__r__k_496'),
('country_Azerbaijan_15', 'state___ahbuz_497'),
('country_Azerbaijan_15', 'state_____ki_498'),
('country_Azerbaijan_15', 'state_Salyan_499'),
('country_Azerbaijan_15', 'state_Sumqay__t_500'),
('country_Azerbaijan_15', 'state___amax___501'),
('country_Azerbaijan_15', 'state_____mkir_502'),
('country_Azerbaijan_15', 'state_Samux_503'),
('country_Azerbaijan_15', 'state_____rur_504'),
('country_Azerbaijan_15', 'state_Siy__z__n_505'),
('country_Azerbaijan_15', 'state___u__a__City__506'),
('country_Azerbaijan_15', 'state___u__a_507'),
('country_Azerbaijan_15', 'state_T__rt__r_508'),
('country_Azerbaijan_15', 'state_Tovuz_509'),
('country_Azerbaijan_15', 'state_Ucar_510'),
('country_Azerbaijan_15', 'state_Xank__ndi_511'),
('country_Azerbaijan_15', 'state_Xa__maz_512'),
('country_Azerbaijan_15', 'state_Xanlar_513'),
('country_Azerbaijan_15', 'state_X__z___514'),
('country_Azerbaijan_15', 'state_Xocal___515'),
('country_Azerbaijan_15', 'state_Xocav__nd_516'),
('country_Azerbaijan_15', 'state_Yard__ml___517'),
('country_Azerbaijan_15', 'state_Yevlax__City__518'),
('country_Azerbaijan_15', 'state_Yevlax_519'),
('country_Azerbaijan_15', 'state_Z__ngilan_520'),
('country_Azerbaijan_15', 'state_Zaqatala_521'),
('country_Azerbaijan_15', 'state_Z__rdab_522'),
('country_Azerbaijan_15', 'state_Nakhichevan_523'),
('country_Bahamas_16',
'state_Acklins_and_Crooked_Islands_524'),
('country_Bahamas_16', 'state_Bimini_525'),
('country_Bahamas_16', 'state_Cat_Island_526'),
('country_Bahamas_16', 'state_Exuma_527'),
('country_Bahamas_16', 'state_Freeport_528'),
('country_Bahamas_16', 'state_Fresh_Creek_529'),
('country_Bahamas_16',
'state_Governor_s_Harbour_530'),
('country_Bahamas_16', 'state_Green_Turtle_Cay_531'),
('country_Bahamas_16', 'state_Harbour_Island_532'),
('country_Bahamas_16', 'state_High_Rock_533'),
('country_Bahamas_16', 'state_Inagua_534'),
('country_Bahamas_16', 'state_Kemps_Bay_535'),
('country_Bahamas_16', 'state_Long_Island_536'),
('country_Bahamas_16', 'state_Marsh_Harbour_537'),
('country_Bahamas_16', 'state_Mayaguana_538'),
('country_Bahamas_16', 'state_New_Providence_539'),
('country_Bahamas_16',
'state_Nicholls_Town_and_Berry_Islands_540'),
('country_Bahamas_16', 'state_Ragged_Island_541'),
('country_Bahamas_16', 'state_Rock_Sound_542'),
('country_Bahamas_16',
'state_San_Salvador_and_Rum_Cay_543'),
('country_Bahamas_16', 'state_Sandy_Point_544'),
('country_Bahrain_17', 'state__________545'),
('country_Bahrain_17', 'state______________546'),
('country_Bahrain_17', 'state________________547'),
('country_Bahrain_17', 'state_____________548'),
('country_Bahrain_17',
'state_________________________________549'),
('country_Bahrain_17', 'state__________550'),
('country_Bahrain_17',
'state_____________________________551'),
('country_Bahrain_17',
'state_____________________552'),
('country_Bahrain_17',
'state________________________________________________553'),
('country_Bahrain_17',
'state_______________________________554'),
('country_Bahrain_17', 'state_________________555'),
('country_Bahrain_17', 'state___________________556'),
('country_Bangladesh_18', 'state_Bandarban_557'),
('country_Bangladesh_18', 'state_Barguna_558'),
('country_Bangladesh_18', 'state_Bogra_559'),
('country_Bangladesh_18', 'state_Brahmanbaria_560'),
('country_Bangladesh_18', 'state_Bagerhat_561'),
('country_Bangladesh_18', 'state_Barisal_562'),
('country_Bangladesh_18', 'state_Bhola_563'),
('country_Bangladesh_18', 'state_Comilla_564'),
('country_Bangladesh_18', 'state_Chandpur_565'),
('country_Bangladesh_18', 'state_Chittagong_566'),
('country_Bangladesh_18', 'state_Cox_s_Bazar_567'),
('country_Bangladesh_18', 'state_Chuadanga_568'),
('country_Bangladesh_18', 'state_Dhaka_569'),
('country_Bangladesh_18', 'state_Dinajpur_570'),
('country_Bangladesh_18', 'state_Faridpur_571'),
('country_Bangladesh_18', 'state_Feni_572'),
('country_Bangladesh_18', 'state_Gopalganj_573'),
('country_Bangladesh_18', 'state_Gazipur_574'),
('country_Bangladesh_18', 'state_Gaibandha_575'),
('country_Bangladesh_18', 'state_Habiganj_576'),
('country_Bangladesh_18', 'state_Jamalpur_577'),
('country_Bangladesh_18', 'state_Jessore_578'),
('country_Bangladesh_18', 'state_Jhenaidah_579'),
('country_Bangladesh_18', 'state_Jaipurhat_580'),
('country_Bangladesh_18', 'state_Jhalakati_581'),
('country_Bangladesh_18', 'state_Kishoreganj_582'),
('country_Bangladesh_18', 'state_Khulna_583'),
('country_Bangladesh_18', 'state_Kurigram_584'),
('country_Bangladesh_18', 'state_Khagrachari_585'),
('country_Bangladesh_18', 'state_Kushtia_586'),
('country_Bangladesh_18', 'state_Lakshmipur_587'),
('country_Bangladesh_18', 'state_Lalmonirhat_588'),
('country_Bangladesh_18', 'state_Manikganj_589'),
('country_Bangladesh_18', 'state_Mymensingh_590'),
('country_Bangladesh_18', 'state_Munshiganj_591'),
('country_Bangladesh_18', 'state_Madaripur_592'),
('country_Bangladesh_18', 'state_Magura_593'),
('country_Bangladesh_18', 'state_Moulvibazar_594'),
('country_Bangladesh_18', 'state_Meherpur_595'),
('country_Bangladesh_18', 'state_Narayanganj_596'),
('country_Bangladesh_18', 'state_Netrakona_597'),
('country_Bangladesh_18', 'state_Narsingdi_598'),
('country_Bangladesh_18', 'state_Narail_599'),
('country_Bangladesh_18', 'state_Natore_600'),
('country_Bangladesh_18', 'state_Nawabganj_601'),
('country_Bangladesh_18', 'state_Nilphamari_602'),
('country_Bangladesh_18', 'state_Noakhali_603'),
('country_Bangladesh_18', 'state_Naogaon_604'),
('country_Bangladesh_18', 'state_Pabna_605'),
('country_Bangladesh_18', 'state_Pirojpur_606'),
('country_Bangladesh_18', 'state_Patuakhali_607'),
('country_Bangladesh_18', 'state_Panchagarh_608'),
('country_Bangladesh_18', 'state_Rajbari_609'),
('country_Bangladesh_18', 'state_Rajshahi_610'),
('country_Bangladesh_18', 'state_Rangpur_611'),
('country_Bangladesh_18', 'state_Rangamati_612'),
('country_Bangladesh_18', 'state_Sherpur_613'),
('country_Bangladesh_18', 'state_Satkhira_614'),
('country_Bangladesh_18', 'state_Sirajganj_615'),
('country_Bangladesh_18', 'state_Sylhet_616'),
('country_Bangladesh_18', 'state_Sunamganj_617'),
('country_Bangladesh_18', 'state_Shariatpur_618'),
('country_Bangladesh_18', 'state_Tangail_619'),
('country_Bangladesh_18', 'state_Thakurgaon_620'),
('country_Barbados_19', 'state_Saint_Andrew_621'),
('country_Barbados_19', 'state_Christ_Church_622'),
('country_Barbados_19', 'state_Saint_Peter_623'),
('country_Barbados_19', 'state_Saint_George_624'),
('country_Barbados_19', 'state_Saint_John_625'),
('country_Barbados_19', 'state_Saint_Lucy_626'),
('country_Barbados_19', 'state_Saint_Michael_627'),
('country_Barbados_19', 'state_Saint_Joseph_628'),
('country_Barbados_19', 'state_Saint_Philip_629'),
('country_Barbados_19', 'state_Saint_James_630'),
('country_Barbados_19', 'state_Saint_Thomas_631'),
('country_Belarus_20',
'state_______________________________________632'),
('country_Belarus_20',
'state___________________________________________633'),
('country_Belarus_20',
'state_____________________________________________634'),
('country_Belarus_20',
'state___________________________________________635'),
('country_Belarus_20',
'state_____________________________________636'),
('country_Belarus_20',
'state_________________________________________637'),
('country_Belgium_21', 'state_Brussel_638'),
('country_Belgium_21', 'state_Antwerpen_639'),
('country_Belgium_21', 'state_Vlaams_Brabant_640'),
('country_Belgium_21', 'state_Limburg_641'),
('country_Belgium_21', 'state_Oost_Vlaanderen_642'),
('country_Belgium_21', 'state_West_Vlaanderen_643'),
('country_Belgium_21', 'state_Brabant_Wallon_644'),
('country_Belgium_21', 'state_Hainaut_645'),
('country_Belgium_21', 'state_Li__ge_L__ttich_646'),
('country_Belgium_21', 'state_Luxembourg_647'),
('country_Belgium_21', 'state_Namur_648'),
('country_Belize_22', 'state_Belize_District_649'),
('country_Belize_22', 'state_Cayo_District_650'),
('country_Belize_22', 'state_Corozal_District_651'),
('country_Belize_22',
'state_Orange_Walk_District_652'),
('country_Belize_22',
'state_Stann_Creek_District_653'),
('country_Belize_22', 'state_Toledo_District_654'),
('country_Benin_23', 'state_Alibori_655'),
('country_Benin_23', 'state_Atakora_656'),
('country_Benin_23', 'state_Atlantique_657'),
('country_Benin_23', 'state_Borgou_658'),
('country_Benin_23', 'state_Collines_659'),
('country_Benin_23', 'state_Donga_660'),
('country_Benin_23', 'state_Kouffo_661'),
('country_Benin_23', 'state_Littoral_662'),
('country_Benin_23', 'state_Mono_663'),
('country_Benin_23', 'state_Ou__m___664'),
('country_Benin_23', 'state_Plateau_665'),
('country_Benin_23', 'state_Zou_666'),
('country_Bermuda_24', 'state_Devonshire_667'),
('country_Bermuda_24', 'state_Hamilton_City_668'),
('country_Bermuda_24', 'state_Hamilton_669'),
('country_Bermuda_24', 'state_Paget_670'),
('country_Bermuda_24', 'state_Pembroke_671'),
('country_Bermuda_24', 'state_Sandys_672'),
('country_Bermuda_24', 'state_Saint_George_City_673'),
('country_Bermuda_24', 'state_Saint_George_s_674'),
('country_Bermuda_24', 'state_Smiths_675'),
('country_Bermuda_24', 'state_Southampton_676'),
('country_Bermuda_24', 'state_Warwick_677'),
('country_Bhutan_25', 'state_Paro_678'),
('country_Bhutan_25', 'state_Chukha_679'),
('country_Bhutan_25', 'state_Haa_680'),
('country_Bhutan_25', 'state_Samtse_681'),
('country_Bhutan_25', 'state_Thimphu_682'),
('country_Bhutan_25', 'state_Tsirang_683'),
('country_Bhutan_25', 'state_Dagana_684'),
('country_Bhutan_25', 'state_Punakha_685'),
('country_Bhutan_25', 'state_Wangdue_Phodrang_686'),
('country_Bhutan_25', 'state_Sarpang_687'),
('country_Bhutan_25', 'state_Trongsa_688'),
('country_Bhutan_25', 'state_Bumthang_689'),
('country_Bhutan_25', 'state_Zhemgang_690'),
('country_Bhutan_25', 'state_Trashigang_691'),
('country_Bhutan_25', 'state_Mongar_692'),
('country_Bhutan_25', 'state_Pemagatshel_693'),
('country_Bhutan_25', 'state_Luentse_694'),
('country_Bhutan_25', 'state_Samdrup_Jongkhar_695'),
('country_Bhutan_25', 'state_Gasa_696'),
('country_Bhutan_25', 'state_Trashiyangse_697'),
('country_Bolivia_26', 'state_El_Beni_698'),
('country_Bolivia_26', 'state_Cochabamba_699'),
('country_Bolivia_26', 'state_Chuquisaca_700'),
('country_Bolivia_26', 'state_La_Paz_701'),
('country_Bolivia_26', 'state_Pando_702'),
('country_Bolivia_26', 'state_Oruro_703'),
('country_Bolivia_26', 'state_Potos___704'),
('country_Bolivia_26', 'state_Santa_Cruz_705'),
('country_Bolivia_26', 'state_Tarija_706'),
('country_Botswana_28', 'state_Central_707'),
('country_Botswana_28', 'state_Ghanzi_708'),
('country_Botswana_28', 'state_Kgalagadi_709'),
('country_Botswana_28', 'state_Kgatleng_710'),
('country_Botswana_28', 'state_Kweneng_711'),
('country_Botswana_28', 'state_North_East_712'),
('country_Botswana_28', 'state_North_West_713'),
('country_Botswana_28', 'state_South_East_714'),
('country_Botswana_28', 'state_Southern_715'),
('country_Brazil_30', 'state_Acre_716'),
('country_Brazil_30', 'state_Alagoas_717'),
('country_Brazil_30', 'state_Amaz__nia_718'),
('country_Brazil_30', 'state_Amap___719'),
('country_Brazil_30', 'state_Bahia_720'),
('country_Brazil_30', 'state_Cear___721'),
('country_Brazil_30', 'state_Distrito_Federal_722'),
('country_Brazil_30', 'state_Esp__rito_Santo_723'),
('country_Brazil_30', 'state_Goi__s_724'),
('country_Brazil_30', 'state_Maranh__o_725'),
('country_Brazil_30', 'state_Minas_Gerais_726'),
('country_Brazil_30', 'state_Mato_Grosso_do_Sul_727'),
('country_Brazil_30', 'state_Mato_Grosso_728'),
('country_Brazil_30', 'state_Par___729'),
('country_Brazil_30', 'state_Para__ba_730'),
('country_Brazil_30', 'state_Pernambuco_731'),
('country_Brazil_30', 'state_Piau___732'),
('country_Brazil_30', 'state_Paran___733'),
('country_Brazil_30', 'state_Rio_de_Janeiro_734'),
('country_Brazil_30',
'state_Rio_Grande_do_Norte_735'),
('country_Brazil_30', 'state_Rond__nia_736'),
('country_Brazil_30', 'state_Roraima_737'),
('country_Brazil_30', 'state_Rio_Grande_do_Sul_738'),
('country_Brazil_30',
'state_Santa_Catarina_739')";
		$this->db->setQuery($query);
		$this->db->query();
		$query="INSERT IGNORE INTO `#__hikashop_zone_link`
(`zone_parent_namekey`, `zone_child_namekey`) VALUES
('country_Brazil_30', 'state_Sergipe_740'),
('country_Brazil_30', 'state_S__o_Paulo_741'),
('country_Brazil_30', 'state_Tocantins_742'),
('country_British_Indian_Ocean_Territory_31',
'state_Peros_Banhos_743'),
('country_British_Indian_Ocean_Territory_31',
'state_Salomon_Islands_744'),
('country_British_Indian_Ocean_Territory_31',
'state_Nelsons_Island_745'),
('country_British_Indian_Ocean_Territory_31',
'state_Three_Brothers_746'),
('country_British_Indian_Ocean_Territory_31',
'state_Eagle_Islands_747'),
('country_British_Indian_Ocean_Territory_31',
'state_Danger_Island_748'),
('country_British_Indian_Ocean_Territory_31',
'state_Egmont_Islands_749'),
('country_British_Indian_Ocean_Territory_31',
'state_Diego_Garcia_750'),
('country_Brunei_Darussalam_32', 'state_Belait_751'),
('country_Brunei_Darussalam_32',
'state_Brunei_Muara_752'),
('country_Brunei_Darussalam_32',
'state_Temburong_753'),
('country_Brunei_Darussalam_32', 'state_Tutong_754'),
('country_Bulgaria_33', 'state_Blagoevgrad_755'),
('country_Bulgaria_33', 'state_Burgas_756'),
('country_Bulgaria_33', 'state_Varna_757'),
('country_Bulgaria_33', 'state_Veliko_Tarnovo_758'),
('country_Bulgaria_33', 'state_Vidin_759'),
('country_Bulgaria_33', 'state_Vratsa_760'),
('country_Bulgaria_33', 'state_Gabrovo_761'),
('country_Bulgaria_33', 'state_Dobrich_762'),
('country_Bulgaria_33', 'state_Kardzhali_763'),
('country_Bulgaria_33', 'state_Kyustendil_764'),
('country_Bulgaria_33', 'state_Lovech_765'),
('country_Bulgaria_33', 'state_Montana_766'),
('country_Bulgaria_33', 'state_Pazardzhik_767'),
('country_Bulgaria_33', 'state_Pernik_768'),
('country_Bulgaria_33', 'state_Pleven_769'),
('country_Bulgaria_33', 'state_Plovdiv_770'),
('country_Bulgaria_33', 'state_Razgrad_771'),
('country_Bulgaria_33', 'state_Ruse_772'),
('country_Bulgaria_33', 'state_Silistra_773'),
('country_Bulgaria_33', 'state_Sliven_774'),
('country_Bulgaria_33', 'state_Smolyan_775'),
('country_Bulgaria_33', 'state_Sofia_776'),
('country_Bulgaria_33', 'state_Sofia_Province_777'),
('country_Bulgaria_33', 'state_Stara_Zagora_778'),
('country_Bulgaria_33', 'state_Targovishte_779'),
('country_Bulgaria_33', 'state_Haskovo_780'),
('country_Bulgaria_33', 'state_Shumen_781'),
('country_Bulgaria_33', 'state_Yambol_782'),
('country_Burkina_Faso_34', 'state_Bal___783'),
('country_Burkina_Faso_34', 'state_Bam_784'),
('country_Burkina_Faso_34', 'state_Banwa_785'),
('country_Burkina_Faso_34', 'state_Baz__ga_786'),
('country_Burkina_Faso_34', 'state_Bougouriba_787'),
('country_Burkina_Faso_34', 'state_Boulgou_788'),
('country_Burkina_Faso_34', 'state_Boulkiemd___789'),
('country_Burkina_Faso_34', 'state_Komo___790'),
('country_Burkina_Faso_34', 'state_Ganzourgou_791'),
('country_Burkina_Faso_34', 'state_Gnagna_792'),
('country_Burkina_Faso_34', 'state_Gourma_793'),
('country_Burkina_Faso_34', 'state_Houet_794'),
('country_Burkina_Faso_34', 'state_Ioba_795'),
('country_Burkina_Faso_34', 'state_Kadiogo_796'),
('country_Burkina_Faso_34', 'state_K__n__dougou_797'),
('country_Burkina_Faso_34', 'state_Komondjari_798'),
('country_Burkina_Faso_34', 'state_Kompienga_799'),
('country_Burkina_Faso_34', 'state_Koulp__logo_800'),
('country_Burkina_Faso_34', 'state_Kossi_801'),
('country_Burkina_Faso_34', 'state_Kouritenga_802'),
('country_Burkina_Faso_34', 'state_Kourw__ogo_803'),
('country_Burkina_Faso_34', 'state_L__raba_804'),
('country_Burkina_Faso_34', 'state_Loroum_805'),
('country_Burkina_Faso_34', 'state_Mouhoun_806'),
('country_Burkina_Faso_34', 'state_Namentenga_807'),
('country_Burkina_Faso_34', 'state_Naouri_808'),
('country_Burkina_Faso_34', 'state_Nayala_809'),
('country_Burkina_Faso_34', 'state_Noumbiel_810'),
('country_Burkina_Faso_34', 'state_Oubritenga_811'),
('country_Burkina_Faso_34', 'state_Oudalan_812'),
('country_Burkina_Faso_34', 'state_Passor___813'),
('country_Burkina_Faso_34', 'state_Poni_814'),
('country_Burkina_Faso_34', 'state_S__no_815'),
('country_Burkina_Faso_34', 'state_Sissili_816'),
('country_Burkina_Faso_34', 'state_Sanmatenga_817'),
('country_Burkina_Faso_34', 'state_Sangui___818'),
('country_Burkina_Faso_34', 'state_Soum_819'),
('country_Burkina_Faso_34', 'state_Sourou_820'),
('country_Burkina_Faso_34', 'state_Tapoa_821'),
('country_Burkina_Faso_34', 'state_Tui_822'),
('country_Burkina_Faso_34', 'state_Yagha_823'),
('country_Burkina_Faso_34', 'state_Yatenga_824'),
('country_Burkina_Faso_34', 'state_Ziro_825'),
('country_Burkina_Faso_34', 'state_Zondoma_826'),
('country_Burkina_Faso_34', 'state_Zoundw__ogo_827'),
('country_Burundi_35', 'state_Bubanza_828'),
('country_Burundi_35', 'state_Bujumbura_Mairie_829'),
('country_Burundi_35', 'state_Bururi_830'),
('country_Burundi_35', 'state_Cankuzo_831'),
('country_Burundi_35', 'state_Cibitoke_832'),
('country_Burundi_35', 'state_Gitega_833'),
('country_Burundi_35', 'state_Karuzi_834'),
('country_Burundi_35', 'state_Kayanza_835'),
('country_Burundi_35', 'state_Kirundo_836'),
('country_Burundi_35', 'state_Makamba_837'),
('country_Burundi_35', 'state_Muramvya_838'),
('country_Burundi_35', 'state_Muyinga_839'),
('country_Burundi_35', 'state_Mwaro_840'),
('country_Burundi_35', 'state_Ngozi_841'),
('country_Burundi_35', 'state_Rutana_842'),
('country_Burundi_35', 'state_Ruyigi_843'),
('country_Cameroon_37', 'state_Adamaoua_844'),
('country_Cameroon_37', 'state_Centre_845'),
('country_Cameroon_37', 'state_Extr__me_Nord_846'),
('country_Cameroon_37', 'state_Est_847'),
('country_Cameroon_37', 'state_Littoral_848'),
('country_Cameroon_37', 'state_Nord_849'),
('country_Cameroon_37', 'state_Nord_Ouest_850'),
('country_Cameroon_37', 'state_Ouest_851'),
('country_Cameroon_37', 'state_Sud_852'),
('country_Cameroon_37', 'state_Sud_Ouest_853'),
('country_Canada_38', 'state_Alberta_854'),
('country_Canada_38', 'state_British_Columbia_855'),
('country_Canada_38', 'state_Manitoba_856'),
('country_Canada_38', 'state_New_Brunswick_857'),
('country_Canada_38',
'state_Newfoundland_and_Labrador_858'),
('country_Canada_38', 'state_Nova_Scotia_859'),
('country_Canada_38',
'state_Northwest_Territories_860'),
('country_Canada_38', 'state_Nunavut_861'),
('country_Canada_38', 'state_Ontario_862'),
('country_Canada_38',
'state_Prince_Edward_Island_863'),
('country_Canada_38', 'state_Quebec_864'),
('country_Canada_38', 'state_Saskatchewan_865'),
('country_Canada_38', 'state_Yukon_Territory_866'),
('country_Cape_Verde_39', 'state_Brava_867'),
('country_Cape_Verde_39', 'state_Boa_Vista_868'),
('country_Cape_Verde_39', 'state_Santa_Catarina_869'),
('country_Cape_Verde_39', 'state_Santa_Cruz_870'),
('country_Cape_Verde_39',
'state_Calheta_de_S__o_Miguel_871'),
('country_Cape_Verde_39', 'state_Maio_872'),
('country_Cape_Verde_39', 'state_Mosteiros_873'),
('country_Cape_Verde_39', 'state_Pa__l_874'),
('country_Cape_Verde_39', 'state_Porto_Novo_875'),
('country_Cape_Verde_39', 'state_Praia_876'),
('country_Cape_Verde_39', 'state_Ribeira_Grande_877'),
('country_Cape_Verde_39', 'state_S__o_Domingos_878'),
('country_Cape_Verde_39', 'state_S__o_Filipe_879'),
('country_Cape_Verde_39', 'state_Sal_880'),
('country_Cape_Verde_39', 'state_S__o_Nicolau_881'),
('country_Cape_Verde_39', 'state_S__o_Vicente_882'),
('country_Cape_Verde_39', 'state_Tarrafal_883'),
('country_Cayman_Islands_40', 'state_Creek_884'),
('country_Cayman_Islands_40', 'state_Midland_886'),
('country_Cayman_Islands_40', 'state_South_Town_887'),
('country_Cayman_Islands_40', 'state_Spot_Bay_888'),
('country_Cayman_Islands_40', 'state_Stake_Bay_889'),
('country_Cayman_Islands_40', 'state_West_End_890'),
('country_Cayman_Islands_40', 'state_Western_891'),
('country_Central_African_Republic_41',
'state_Ouham_892'),
('country_Central_African_Republic_41',
'state_Bamingui_Bangoran_893'),
('country_Central_African_Republic_41',
'state_Bangui_894'),
('country_Central_African_Republic_41',
'state_Basse_Kotto_895'),
('country_Central_African_Republic_41',
'state_Haute_Kotto_896'),
('country_Central_African_Republic_41',
'state_Haut_Mbomou_897'),
('country_Central_African_Republic_41',
'state_Mamb__r___Kad_____898'),
('country_Central_African_Republic_41',
'state_Nana_Gr__bizi_899'),
('country_Central_African_Republic_41',
'state_K__mo_900'),
('country_Central_African_Republic_41',
'state_Lobaye_901'),
('country_Central_African_Republic_41',
'state_Mbomou_902'),
('country_Central_African_Republic_41',
'state_Ombella_M_Poko_903'),
('country_Central_African_Republic_41',
'state_Nana_Mamb__r___904'),
('country_Central_African_Republic_41',
'state_Ouham_Pend___905'),
('country_Central_African_Republic_41',
'state_Sangha_Mba__r___906'),
('country_Central_African_Republic_41',
'state_Ouaka_907'),
('country_Central_African_Republic_41',
'state_Vakaga_908'),
('country_Chad_42', 'state_Batha_909'),
('country_Chad_42',
'state_Borkou_Ennedi_Tibesti_910'),
('country_Chad_42', 'state_Biltine_911'),
('country_Chad_42', 'state_Chari_Baguirmi_912'),
('country_Chad_42', 'state_Gu__ra_913'),
('country_Chad_42', 'state_Kanem_914'),
('country_Chad_42', 'state_Lac_915'),
('country_Chad_42', 'state_Logone_Oriental_916'),
('country_Chad_42', 'state_Logone_Occidental_917'),
('country_Chad_42', 'state_Moyen_Chari_918'),
('country_Chad_42', 'state_Mayo_K__bbi_919'),
('country_Chad_42', 'state_Ouadda___920'),
('country_Chad_42', 'state_Salamat_921'),
('country_Chad_42', 'state_Tandjil___922'),
('country_Chile_43',
'state_Ais__n_del_General_Carlos_Iba__ez_923'),
('country_Chile_43', 'state_Antofagasta_924'),
('country_Chile_43', 'state_La_Araucan__a_925'),
('country_Chile_43', 'state_Atacama_926'),
('country_Chile_43', 'state_Biob__o_927'),
('country_Chile_43', 'state_Coquimbo_928'),
('country_Chile_43',
'state_Libertador_Bernardo_O_Higgins_929'),
('country_Chile_43', 'state_Los_Lagos_930'),
('country_Chile_43',
'state_Magallanes_y_de_la_Antartica_931'),
('country_Chile_43', 'state_Maule_932'),
('country_Chile_43',
'state_Metropolitana_de_Santiago_933'),
('country_Chile_43', 'state_Tarapac___934'),
('country_Chile_43', 'state_Valpara__so_935'),
('country_China_44', 'state________936'),
('country_China_44', 'state________937'),
('country_China_44', 'state________938'),
('country_China_44', 'state________939'),
('country_China_44', 'state____________________940'),
('country_China_44', 'state________941'),
('country_China_44', 'state________942'),
('country_China_44', 'state______________943'),
('country_China_44', 'state________944'),
('country_China_44', 'state________945'),
('country_China_44', 'state________946'),
('country_China_44', 'state________947'),
('country_China_44', 'state________948'),
('country_China_44', 'state________949'),
('country_China_44', 'state________950'),
('country_China_44', 'state________951'),
('country_China_44', 'state________952'),
('country_China_44', 'state________953'),
('country_China_44', 'state________954'),
('country_China_44',
'state_______________________955'),
('country_China_44', 'state________956'),
('country_China_44', 'state________957'),
('country_China_44', 'state________958'),
('country_China_44', 'state________959'),
('country_China_44', 'state________960'),
('country_China_44', 'state_________________961'),
('country_China_44', 'state________962'),
('country_China_44', 'state________963'),
('country_China_44', 'state________964'),
('country_China_44', 'state________965'),
('country_China_44', 'state________966'),
('country_China_44', 'state________967'),
('country_China_44', 'state________968'),
('country_China_44', 'state________969'),
('country_Cocos__Keeling__Islands_46',
'state_Direction_Island_970'),
('country_Cocos__Keeling__Islands_46',
'state_Home_Island_971'),
('country_Cocos__Keeling__Islands_46',
'state_Horsburgh_Island_972'),
('country_Cocos__Keeling__Islands_46',
'state_South_Island_973'),
('country_Cocos__Keeling__Islands_46',
'state_West_Island_974'),
('country_Colombia_47', 'state_Amazonas_975'),
('country_Colombia_47', 'state_Antioquia_976'),
('country_Colombia_47', 'state_Arauca_977'),
('country_Colombia_47', 'state_Atl__ntico_978'),
('country_Colombia_47', 'state_Bol__var_979'),
('country_Colombia_47', 'state_Boyac___980'),
('country_Colombia_47', 'state_Caldas_981'),
('country_Colombia_47', 'state_Caquet___982'),
('country_Colombia_47', 'state_Casanare_983'),
('country_Colombia_47', 'state_Cauca_984'),
('country_Colombia_47', 'state_Cesar_985'),
('country_Colombia_47', 'state_Choc___986'),
('country_Colombia_47', 'state_C__rdoba_987'),
('country_Colombia_47', 'state_Cundinamarca_988'),
('country_Colombia_47',
'state_Bogot___Distrito_Capital_989'),
('country_Colombia_47', 'state_Guain__a_990'),
('country_Colombia_47', 'state_Guaviare_991'),
('country_Colombia_47', 'state_La_Guajira_993'),
('country_Colombia_47', 'state_Magdalena_994'),
('country_Colombia_47', 'state_Meta_995'),
('country_Colombia_47', 'state_Nari__o_996'),
('country_Colombia_47',
'state_Norte_de_Santander_997'),
('country_Colombia_47', 'state_Putumayo_998'),
('country_Colombia_47', 'state_Quind__o_999'),
('country_Colombia_47', 'state_Risaralda_1000'),
('country_Colombia_47', 'state_Santander_1001'),
('country_Colombia_47',
'state_San_Andr__s_y_Providencia_1002'),
('country_Colombia_47', 'state_Sucre_1003'),
('country_Colombia_47', 'state_Tolima_1004'),
('country_Colombia_47', 'state_Valle_del_Cauca_1005'),
('country_Colombia_47', 'state_Vaup__s_1006'),
('country_Colombia_47', 'state_Vichada_1007'),
('country_Comoros_48', 'state_Anjouan_1008'),
('country_Comoros_48', 'state_Grande_Comore_1009'),
('country_Comoros_48', 'state_Moh__li_1010'),
('country_Congo_49', 'state_Congo_Central_1011'),
('country_Congo_49', 'state_Bandundu_1012'),
('country_Congo_49', 'state___quateur_1013'),
('country_Congo_49', 'state_Katanga_1014'),
('country_Congo_49', 'state_Kasai_Oriental_1015'),
('country_Congo_49', 'state_Kinshasa_1016'),
('country_Congo_49', 'state_Kasai_Occidental_1017'),
('country_Congo_49', 'state_Maniema_1018'),
('country_Congo_49', 'state_Nord_Kivu_1019'),
('country_Congo_49', 'state_Orientale_1020'),
('country_Congo_49', 'state_Sud_Kivu_1021'),
('country_Cook_Islands_50', 'state_Pukapuka_1022'),
('country_Cook_Islands_50', 'state_Rakahanga_1023'),
('country_Cook_Islands_50', 'state_Manihiki_1024'),
('country_Cook_Islands_50', 'state_Penrhyn_1025'),
('country_Cook_Islands_50',
'state_Nassau_Island_1026'),
('country_Cook_Islands_50', 'state_Surwarrow_1027'),
('country_Cook_Islands_50', 'state_Palmerston_1028'),
('country_Cook_Islands_50', 'state_Aitutaki_1029'),
('country_Cook_Islands_50', 'state_Manuae_1030'),
('country_Cook_Islands_50', 'state_Takutea_1031'),
('country_Cook_Islands_50', 'state_Mitiaro_1032'),
('country_Cook_Islands_50', 'state_Atiu_1033'),
('country_Cook_Islands_50', 'state_Mauke_1034'),
('country_Cook_Islands_50', 'state_Rarotonga_1035'),
('country_Cook_Islands_50', 'state_Mangaia_1036'),
('country_Costa_Rica_51', 'state_Alajuela_1037'),
('country_Costa_Rica_51', 'state_Cartago_1038'),
('country_Costa_Rica_51', 'state_Guanacaste_1039'),
('country_Costa_Rica_51', 'state_Heredia_1040'),
('country_Costa_Rica_51', 'state_Lim__n_1041'),
('country_Costa_Rica_51', 'state_Puntarenas_1042'),
('country_Costa_Rica_51', 'state_San_Jos___1043'),
('country_Cote_D_Ivoire_52', 'state_Lagunes_1044'),
('country_Cote_D_Ivoire_52',
'state_Haut_Sassandra_1045'),
('country_Cote_D_Ivoire_52', 'state_Savanes_1046'),
('country_Cote_D_Ivoire_52',
'state_Vall__e_du_Bandama_1047'),
('country_Cote_D_Ivoire_52',
'state_Moyen_Como___1048'),
('country_Cote_D_Ivoire_52', 'state_Dix_Huit_1049'),
('country_Cote_D_Ivoire_52', 'state_Lacs_1050'),
('country_Cote_D_Ivoire_52', 'state_Zanzan_1051'),
('country_Cote_D_Ivoire_52',
'state_Bas_Sassandra_1052'),
('country_Cote_D_Ivoire_52', 'state_Dengu__l___1053'),
('country_Cote_D_Ivoire_52',
'state_N_zi_Como___1054'),
('country_Cote_D_Ivoire_52', 'state_Marahou___1055'),
('country_Cote_D_Ivoire_52', 'state_Sud_Como___1056'),
('country_Cote_D_Ivoire_52', 'state_Worodouqou_1057'),
('country_Cote_D_Ivoire_52',
'state_Sud_Bandama_1058'),
('country_Cote_D_Ivoire_52', 'state_Agn__bi_1059'),
('country_Cote_D_Ivoire_52', 'state_Bafing_1060'),
('country_Cote_D_Ivoire_52', 'state_Fromager_1061'),
('country_Cote_D_Ivoire_52',
'state_Moyen_Cavally_1062'),
('country_Croatia_53',
'state_Zagreba__ka___upanija_1063'),
('country_Croatia_53',
'state_Krapinsko_zagorska___upanija_1064'),
('country_Croatia_53',
'state_Sisa__ko_moslava__ka___upanija_1065'),
('country_Croatia_53',
'state_Karlova__ka___upanija_1066'),
('country_Croatia_53',
'state_Vara__dinska___upanija_1067'),
('country_Croatia_53',
'state_Koprivni__ko_kri__eva__ka___upanija_1068'),
('country_Croatia_53',
'state_Bjelovarsko_bilogorska___upanija_1069'),
('country_Croatia_53',
'state_Primorsko_goranska___upanija_1070'),
('country_Croatia_53',
'state_Li__ko_senjska___upanija_1071'),
('country_Croatia_53',
'state_Viroviti__ko_podravska___upanija_1072'),
('country_Croatia_53',
'state_Po__e__ko_slavonska___upanija_1073'),
('country_Croatia_53',
'state_Brodsko_posavska___upanija_1074'),
('country_Croatia_53',
'state_Zadarska___upanija_1075'),
('country_Croatia_53',
'state_Osje__ko_baranjska___upanija_1076'),
('country_Croatia_53',
'state___ibensko_kninska___upanija_1077'),
('country_Croatia_53',
'state_Vukovarsko_srijemska___upanija_1078'),
('country_Croatia_53',
'state_Splitsko_dalmatinska___upanija_1079'),
('country_Croatia_53',
'state_Istarska___upanija_1080'),
('country_Croatia_53',
'state_Dubrova__ko_neretvanska___upanija_1081'),
('country_Croatia_53',
'state_Me__imurska___upanija_1082'),
('country_Croatia_53', 'state_Zagreb_1083'),
('country_Cuba_54', 'state_Pinar_del_R__o_1084'),
('country_Cuba_54', 'state_La_Habana_1085'),
('country_Cuba_54', 'state_Ciudad_de_La_Habana_1086'),
('country_Cuba_54', 'state_Matanzas_1087'),
('country_Cuba_54', 'state_Villa_Clara_1088'),
('country_Cuba_54', 'state_Cienfuegos_1089'),
('country_Cuba_54', 'state_Sancti_Sp__ritus_1090'),
('country_Cuba_54', 'state_Ciego_de___vila_1091'),
('country_Cuba_54', 'state_Camag__ey_1092'),
('country_Cuba_54', 'state_Las_Tunas_1093'),
('country_Cuba_54', 'state_Holgu__n_1094'),
('country_Cuba_54', 'state_Granma_1095'),
('country_Cuba_54', 'state_Santiago_de_Cuba_1096'),
('country_Cuba_54', 'state_Guant__namo_1097'),
('country_Cuba_54', 'state_Isla_de_la_Juventud_1098'),
('country_Cyprus_55', 'state_________v_______1099'),
('country_Cyprus_55', 'state__________________1100'),
('country_Cyprus_55',
'state______________________1101'),
('country_Cyprus_55', 'state________________1102'),
('country_Cyprus_55', 'state________________1103'),
('country_Cyprus_55', 'state____________1104'),
('country_Czech_Republic_56',
'state_Jiho__esk___kraj_1105'),
('country_Czech_Republic_56',
'state_Jihomoravsk___kraj_1106'),
('country_Czech_Republic_56',
'state_Karlovarsk___kraj_1107'),
('country_Czech_Republic_56',
'state_Vyso__ina_kraj_1108'),
('country_Czech_Republic_56',
'state_Kr__lov__hradeck___kraj_1109'),
('country_Czech_Republic_56',
'state_Libereck___kraj_1110'),
('country_Czech_Republic_56',
'state_Moravskoslezsk___kraj_1111'),
('country_Czech_Republic_56',
'state_Olomouck___kraj_1112'),
('country_Czech_Republic_56',
'state_Pardubick___kraj_1113'),
('country_Czech_Republic_56',
'state_Plze__sk___kraj_1114'),
('country_Czech_Republic_56',
'state_Hlavn___m__sto_Praha_1115'),
('country_Czech_Republic_56',
'state_St__edo__esk___kraj_1116'),
('country_Czech_Republic_56',
'state___steck___kraj_1117'),
('country_Czech_Republic_56',
'state_Zl__nsk___kraj_1118'),
('country_Denmark_57',
'state_Bornholms_Regionskommune_1119'),
('country_Denmark_57', 'state_K__benhavn_1120'),
('country_Denmark_57', 'state_Frederiksberg_1121'),
('country_Denmark_57', 'state___rhus_Amt_1122'),
('country_Denmark_57', 'state_K__benhavns_Amt_1123'),
('country_Denmark_57',
'state_Frederiksborg_Amt_1124'),
('country_Denmark_57', 'state_Fyns_Amt_1125'),
('country_Denmark_57', 'state_Nordjyllands_Amt_1126'),
('country_Denmark_57', 'state_Ribe_Amt_1127'),
('country_Denmark_57', 'state_Ringkj__bing_Amt_1128'),
('country_Denmark_57', 'state_Roskilde_Amt_1129'),
('country_Denmark_57',
'state_S__nderjyllands_Amt_1130'),
('country_Denmark_57', 'state_Storstr__ms_Amt_1131'),
('country_Denmark_57', 'state_Vejle_Amt_1132'),
('country_Denmark_57',
'state_Vestsj__llands_Amt_1133'),
('country_Denmark_57', 'state_Viborg_Amt_1134'),
('country_Djibouti_58',
'state_Region_d_Ali_Sabieh_1135'),
('country_Djibouti_58', 'state_Region_d_Arta_1136'),
('country_Djibouti_58',
'state_Region_de_Dikhil_1137'),
('country_Djibouti_58',
'state_Ville_de_Djibouti_1138'),
('country_Djibouti_58', 'state_Region_d_Obock_1139'),
('country_Djibouti_58',
'state_Region_de_Tadjourah_1140'),
('country_Dominica_59',
'state_Saint_Andrew_Parish_1141'),
('country_Dominica_59',
'state_Saint_David_Parish_1142'),
('country_Dominica_59',
'state_Saint_George_Parish_1143'),
('country_Dominica_59',
'state_Saint_John_Parish_1144'),
('country_Dominica_59',
'state_Saint_Joseph_Parish_1145'),
('country_Dominica_59',
'state_Saint_Luke_Parish_1146'),
('country_Dominica_59',
'state_Saint_Mark_Parish_1147'),
('country_Dominica_59',
'state_Saint_Patrick_Parish_1148'),
('country_Dominica_59',
'state_Saint_Paul_Parish_1149'),
('country_Dominica_59',
'state_Saint_Peter_Parish_1150'),
('country_Dominican_Republic_60',
'state_Distrito_Nacional_1151'),
('country_Dominican_Republic_60', 'state___zua_1152'),
('country_Dominican_Republic_60',
'state_Baoruco_1153'),
('country_Dominican_Republic_60',
'state_Barahona_1154'),
('country_Dominican_Republic_60',
'state_Dajab__n_1155'),
('country_Dominican_Republic_60',
'state_Duarte_1156'),
('country_Dominican_Republic_60',
'state_El__as_Pi__a_1157'),
('country_Dominican_Republic_60',
'state_El_Seibo_1158'),
('country_Dominican_Republic_60',
'state_Espaillat_1159'),
('country_Dominican_Republic_60',
'state_Independencia_1160'),
('country_Dominican_Republic_60',
'state_La_Altagracia_1161'),
('country_Dominican_Republic_60',
'state_La_Romana_1162'),
('country_Dominican_Republic_60',
'state_La_Vega_1163'),
('country_Dominican_Republic_60',
'state_Mar__a_Trinidad_S__nchez_1164'),
('country_Dominican_Republic_60',
'state_Monte_Cristi_1165'),
('country_Dominican_Republic_60',
'state_Pedernales_1166'),
('country_Dominican_Republic_60',
'state_Peravia_1167'),
('country_Dominican_Republic_60',
'state_Puerto_Plata_1168'),
('country_Dominican_Republic_60',
'state_Salcedo_1169'),
('country_Dominican_Republic_60',
'state_Saman___1170'),
('country_Dominican_Republic_60',
'state_San_Crist__bal_1171'),
('country_Dominican_Republic_60',
'state_San_Juan_1172'),
('country_Dominican_Republic_60',
'state_San_Pedro_de_Macor__s_1173'),
('country_Dominican_Republic_60',
'state_S__nchez_Ram__rez_1174'),
('country_Dominican_Republic_60',
'state_Santiago_1175'),
('country_Dominican_Republic_60',
'state_Santiago_Rodr__guez_1176'),
('country_Dominican_Republic_60',
'state_Valverde_1177'),
('country_Dominican_Republic_60',
'state_Monse__or_Nouel_1178'),
('country_Dominican_Republic_60',
'state_Monte_Plata_1179'),
('country_Dominican_Republic_60',
'state_Hato_Mayor_1180'),
('country_East_Timor_61', 'state_Aileu_1181'),
('country_East_Timor_61', 'state_Ainaro_1182'),
('country_East_Timor_61', 'state_Baucau_1183'),
('country_East_Timor_61', 'state_Bobonaro_1184'),
('country_East_Timor_61', 'state_Cova_Lima_1185'),
('country_East_Timor_61', 'state_Dili_1186'),
('country_East_Timor_61', 'state_Ermera_1187'),
('country_East_Timor_61', 'state_Lautem_1188'),
('country_East_Timor_61', 'state_Liqui_____1189'),
('country_East_Timor_61', 'state_Manufahi_1190'),
('country_East_Timor_61', 'state_Manatuto_1191'),
('country_East_Timor_61', 'state_Oecussi_1192'),
('country_East_Timor_61', 'state_Viqueque_1193'),
('country_Ecuador_62', 'state_Azuay_1194'),
('country_Ecuador_62', 'state_Bol__var_1195'),
('country_Ecuador_62', 'state_Carchi_1196'),
('country_Ecuador_62', 'state_Orellana_1197'),
('country_Ecuador_62', 'state_Esmeraldas_1198'),
('country_Ecuador_62', 'state_Ca__ar_1199'),
('country_Ecuador_62', 'state_Guayas_1200'),
('country_Ecuador_62', 'state_Chimborazo_1201'),
('country_Ecuador_62', 'state_Imbabura_1202'),
('country_Ecuador_62', 'state_Loja_1203'),
('country_Ecuador_62', 'state_Manab___1204'),
('country_Ecuador_62', 'state_Napo_1205'),
('country_Ecuador_62', 'state_El_Oro_1206'),
('country_Ecuador_62', 'state_Pichincha_1207'),
('country_Ecuador_62', 'state_Los_R__os_1208'),
('country_Ecuador_62', 'state_Morona_Santiago_1209'),
('country_Ecuador_62', 'state_Tungurahua_1210'),
('country_Ecuador_62', 'state_Sucumb__os_1211'),
('country_Ecuador_62', 'state_Gal__pagos_1212'),
('country_Ecuador_62', 'state_Cotopaxi_1213'),
('country_Ecuador_62', 'state_Pastaza_1214'),
('country_Ecuador_62', 'state_Zamora_Chinchipe_1215'),
('country_Egypt_63',
'state______________________1216'),
('country_Egypt_63', 'state____________1217'),
('country_Egypt_63', 'state____________1218'),
('country_Egypt_63',
'state_________________________1219'),
('country_Egypt_63', 'state________________1220'),
('country_Egypt_63', 'state_________________1221'),
('country_Egypt_63', 'state________________1222'),
('country_Egypt_63', 'state__________________1223'),
('country_Egypt_63', 'state____________1224'),
('country_Egypt_63', 'state______________1225'),
('country_Egypt_63', 'state________________1226'),
('country_Egypt_63', 'state______________1227'),
('country_Egypt_63',
'state________________________1228'),
('country_Egypt_63',
'state_____________________1229'),
('country_Egypt_63', 'state____________________1230'),
('country_Egypt_63', 'state___________________1231'),
('country_Egypt_63', 'state________1232'),
('country_Egypt_63',
'state___________________________1233'),
('country_Egypt_63', 'state__________________1234'),
('country_Egypt_63', 'state____________1235'),
('country_Egypt_63',
'state______________________________1236'),
('country_Egypt_63',
'state_________________________1237'),
('country_Egypt_63',
'state___________________________________1238')";
		$this->db->setQuery($query);
		$this->db->query();
		$query="INSERT IGNORE INTO `#__hikashop_zone_link`
(`zone_parent_namekey`, `zone_child_namekey`) VALUES
('country_Egypt_63',
'state_____________________1239'),
('country_Egypt_63', 'state______________1240'),
('country_Egypt_63',
'state___________________________1241'),
('country_El_Salvador_64', 'state_Ahuachap__n_1242'),
('country_El_Salvador_64', 'state_Caba__as_1243'),
('country_El_Salvador_64', 'state_Chalatenango_1244'),
('country_El_Salvador_64', 'state_Cuscatl__n_1245'),
('country_El_Salvador_64', 'state_La_Libertad_1246'),
('country_El_Salvador_64', 'state_Moraz__n_1247'),
('country_El_Salvador_64', 'state_La_Paz_1248'),
('country_El_Salvador_64', 'state_Santa_Ana_1249'),
('country_El_Salvador_64', 'state_San_Miguel_1250'),
('country_El_Salvador_64', 'state_Sonsonate_1251'),
('country_El_Salvador_64', 'state_San_Salvador_1252'),
('country_El_Salvador_64', 'state_San_Vicente_1253'),
('country_El_Salvador_64', 'state_La_Uni__n_1254'),
('country_El_Salvador_64', 'state_Usulut__n_1255'),
('country_Equatorial_Guinea_65',
'state_Annob__n_1256'),
('country_Equatorial_Guinea_65',
'state_Bioko_Norte_1257'),
('country_Equatorial_Guinea_65',
'state_Bioko_Sur_1258'),
('country_Equatorial_Guinea_65',
'state_Centro_Sur_1259'),
('country_Equatorial_Guinea_65',
'state_Ki___Ntem_1260'),
('country_Equatorial_Guinea_65',
'state_Litoral_1261'),
('country_Equatorial_Guinea_65',
'state_Wele_Nzas_1262'),
('country_Eritrea_66', 'state_Zoba_Anseba_1263'),
('country_Eritrea_66',
'state_Zoba_Debubawi_Keyih_Bahri_1264'),
('country_Eritrea_66', 'state_Zoba_Debub_1265'),
('country_Eritrea_66', 'state_Zoba_Gash_Barka_1266'),
('country_Eritrea_66', 'state_Zoba_Ma_akel_1267'),
('country_Eritrea_66',
'state_Zoba_Semienawi_Keyih_Bahri_1268'),
('country_Estonia_67', 'state_Harju_maakond_1269'),
('country_Estonia_67', 'state_Hiiu_maakond_1270'),
('country_Estonia_67', 'state_Ida_Viru_maakond_1271'),
('country_Estonia_67', 'state_J__geva_maakond_1272'),
('country_Estonia_67', 'state_J__rva_maakond_1273'),
('country_Estonia_67', 'state_L____ne_maakond_1274'),
('country_Estonia_67',
'state_L____ne_Viru_maakond_1275'),
('country_Estonia_67', 'state_P__lva_maakond_1276'),
('country_Estonia_67', 'state_P__rnu_maakond_1277'),
('country_Estonia_67', 'state_Rapla_maakond_1278'),
('country_Estonia_67', 'state_Saare_maakond_1279'),
('country_Estonia_67', 'state_Tartu_maakond_1280'),
('country_Estonia_67', 'state_Valga_maakond_1281'),
('country_Estonia_67', 'state_Viljandi_maakond_1282'),
('country_Estonia_67', 'state_V__ru_maakond_1283'),
('country_Ethiopia_68',
'state_____________________1284'),
('country_Ethiopia_68', 'state___________1285'),
('country_Ethiopia_68', 'state___________1286'),
('country_Ethiopia_68',
'state______________________________1287'),
('country_Ethiopia_68', 'state______________1288'),
('country_Ethiopia_68',
'state___________________________1289'),
('country_Ethiopia_68',
'state_____________________1290'),
('country_Ethiopia_68', 'state______________1291'),
('country_Ethiopia_68', 'state___________1292'),
('country_Ethiopia_68',
'state___________________________________________________________1293'),
('country_Ethiopia_68', 'state______________1294'),
('country_Fiji_71', 'state_Central_1295'),
('country_Fiji_71', 'state_Northern_1296'),
('country_Fiji_71', 'state_Eastern_1297'),
('country_Fiji_71', 'state_Rotuma_1298'),
('country_Fiji_71', 'state_Western_1299'),
('country_Finland_72',
'state_Ahvenanmaan_maakunta_1300'),
('country_Finland_72',
'state_Etel___Suomen_l____ni_1301'),
('country_Finland_72',
'state_It___Suomen_l____ni_1302'),
('country_Finland_72', 'state_Lapin_l____ni_1303'),
('country_Finland_72',
'state_L__nsi_Suomen_l____ni_1304'),
('country_Finland_72', 'state_Oulun_l____ni_1305'),
('country_France_73', 'state_Ain_1306'),
('country_France_73', 'state_Aisne_1307'),
('country_France_73', 'state_Allier_1308'),
('country_France_73',
'state_Alpes_de_Haute_Provence_1309'),
('country_France_73', 'state_Hautes_Alpes_1310'),
('country_France_73', 'state_Alpes_Maritimes_1311'),
('country_France_73', 'state_Ard__che_1312'),
('country_France_73', 'state_Ardennes_1313'),
('country_France_73', 'state_Ari__ge_1314'),
('country_France_73', 'state_Aube_1315'),
('country_France_73', 'state_Aude_1316'),
('country_France_73', 'state_Aveyron_1317'),
('country_France_73', 'state_Bouches_du_Rh__ne_1318'),
('country_France_73', 'state_Calvados_1319'),
('country_France_73', 'state_Cantal_1320'),
('country_France_73', 'state_Charente_1321'),
('country_France_73', 'state_Charente_Maritime_1322'),
('country_France_73', 'state_Cher_1323'),
('country_France_73', 'state_Corr__ze_1324'),
('country_France_73', 'state_C__te_d_Or_1325'),
('country_France_73', 'state_C__tes_d_Armor_1326'),
('country_France_73', 'state_Creuse_1327'),
('country_France_73', 'state_Dordogne_1328'),
('country_France_73', 'state_Doubs_1329'),
('country_France_73', 'state_Dr__me_1330'),
('country_France_73', 'state_Eure_1331'),
('country_France_73', 'state_Eure_et_Loir_1332'),
('country_France_73', 'state_Finist__re_1333'),
('country_France_73', 'state_Corse_du_Sud_1334'),
('country_France_73', 'state_Haute_Corse_1335'),
('country_France_73', 'state_Gard_1336'),
('country_France_73', 'state_Haute_Garonne_1337'),
('country_France_73', 'state_Gers_1338'),
('country_France_73', 'state_Gironde_1339'),
('country_France_73', 'state_H__rault_1340'),
('country_France_73', 'state_Ille_et_Vilaine_1341'),
('country_France_73', 'state_Indre_1342'),
('country_France_73', 'state_Indre_et_Loire_1343'),
('country_France_73', 'state_Is__re_1344'),
('country_France_73', 'state_Jura_1345'),
('country_France_73', 'state_Landes_1346'),
('country_France_73', 'state_Loir_et_Cher_1347'),
('country_France_73', 'state_Loire_1348'),
('country_France_73', 'state_Haute_Loire_1349'),
('country_France_73', 'state_Loire_Atlantique_1350'),
('country_France_73', 'state_Loiret_1351'),
('country_France_73', 'state_Lot_1352'),
('country_France_73', 'state_Lot_et_Garonne_1353'),
('country_France_73', 'state_Loz__re_1354'),
('country_France_73', 'state_Maine_et_Loire_1355'),
('country_France_73', 'state_Manche_1356'),
('country_France_73', 'state_Marne_1357'),
('country_France_73', 'state_Haute_Marne_1358'),
('country_France_73', 'state_Mayenne_1359'),
('country_France_73',
'state_Meurthe_et_Moselle_1360'),
('country_France_73', 'state_Meuse_1361'),
('country_France_73', 'state_Morbihan_1362'),
('country_France_73', 'state_Moselle_1363'),
('country_France_73', 'state_Ni__vre_1364'),
('country_France_73', 'state_Nord_1365'),
('country_France_73', 'state_Oise_1366'),
('country_France_73', 'state_Orne_1367'),
('country_France_73', 'state_Pas_de_Calais_1368'),
('country_France_73', 'state_Puy_de_D__me_1369'),
('country_France_73',
'state_Pyr__n__es_Atlantiques_1370'),
('country_France_73', 'state_Hautes_Pyr__n__es_1371'),
('country_France_73',
'state_Pyr__n__es_Orientales_1372'),
('country_France_73', 'state_Bas_Rhin_1373'),
('country_France_73', 'state_Haut_Rhin_1374'),
('country_France_73', 'state_Rh__ne_1375'),
('country_France_73', 'state_Haute_Sa__ne_1376'),
('country_France_73', 'state_Sa__ne_et_Loire_1377'),
('country_France_73', 'state_Sarthe_1378'),
('country_France_73', 'state_Savoie_1379'),
('country_France_73', 'state_Haute_Savoie_1380'),
('country_France_73', 'state_Paris_1381'),
('country_France_73', 'state_Seine_Maritime_1382'),
('country_France_73', 'state_Seine_et_Marne_1383'),
('country_France_73', 'state_Yvelines_1384'),
('country_France_73', 'state_Deux_S__vres_1385'),
('country_France_73', 'state_Somme_1386'),
('country_France_73', 'state_Tarn_1387'),
('country_France_73', 'state_Tarn_et_Garonne_1388'),
('country_France_73', 'state_Var_1389'),
('country_France_73', 'state_Vaucluse_1390'),
('country_France_73', 'state_Vend__e_1391'),
('country_France_73', 'state_Vienne_1392'),
('country_France_73', 'state_Haute_Vienne_1393'),
('country_France_73', 'state_Vosges_1394'),
('country_France_73', 'state_Yonne_1395'),
('country_France_73',
'state_Territoire_de_Belfort_1396'),
('country_France_73', 'state_Essonne_1397'),
('country_France_73', 'state_Hauts_de_Seine_1398'),
('country_France_73', 'state_Seine_Saint_Denis_1399'),
('country_France_73', 'state_Val_de_Marne_1400'),
('country_France_73', 'state_Val_d_Oise_1401'),
('country_France_73',
'state_Territoire_des_Nouvelle_Cal__donie_et_Dependances_1402'),
('country_France_73',
'state_Polyn__sie_Fran__aise_1403'),
('country_France_73',
'state_Saint_Pierre_et_Miquelon_1404'),
('country_France_73',
'state_Terres_australes_et_antarctiques_fran__aises_1405'),
('country_France_73', 'state_Mayotte_1406'),
('country_France_73',
'state_Territoire_des___les_Wallis_et_Futuna_1407'),
('country_France_73', 'country_Guadeloupe_87'),
('country_France_73', 'country_Reunion_174'),
('country_France_73', 'country_Martinique_134'),
('country_French_Polynesia_76',
'state_Archipel_des_Marquises_1408'),
('country_French_Polynesia_76',
'state_Archipel_des_Tuamotu_1409'),
('country_French_Polynesia_76',
'state_Archipel_des_Tubuai_1410'),
('country_French_Polynesia_76',
'state_Iles_du_Vent_1411'),
('country_French_Polynesia_76',
'state_Iles_Sous_le_Vent__1412'),
('country_French_Southern_Territories_77',
'state_Iles_Crozet_1413'),
('country_French_Southern_Territories_77',
'state_Iles_Kerguelen_1414'),
('country_French_Southern_Territories_77',
'state_Ile_Amsterdam_1415'),
('country_French_Southern_Territories_77',
'state_Ile_Saint_Paul_1416'),
('country_French_Southern_Territories_77',
'state_Adelie_Land_1417'),
('country_Gabon_78', 'state_Estuaire_1418'),
('country_Gabon_78', 'state_Haut_Ogooue_1419'),
('country_Gabon_78', 'state_Moyen_Ogooue_1420'),
('country_Gabon_78', 'state_Ngounie_1421'),
('country_Gabon_78', 'state_Nyanga_1422'),
('country_Gabon_78', 'state_Ogooue_Ivindo_1423'),
('country_Gabon_78', 'state_Ogooue_Lolo_1424'),
('country_Gabon_78', 'state_Ogooue_Maritime_1425'),
('country_Gabon_78', 'state_Woleu_Ntem_1426'),
('country_Gambia_79', 'state_Ashanti_1427'),
('country_Gambia_79', 'state_Brong_Ahafo_1428'),
('country_Gambia_79', 'state_Central_1429'),
('country_Gambia_79', 'state_Eastern_1430'),
('country_Gambia_79', 'state_Greater_Accra_1431'),
('country_Gambia_79', 'state_Northern_1432'),
('country_Gambia_79', 'state_Upper_East_1433'),
('country_Gambia_79', 'state_Upper_West_1434'),
('country_Gambia_79', 'state_Volta_1435'),
('country_Gambia_79', 'state_Western_1436'),
('country_Georgia_80',
'state__________________________1437'),
('country_Georgia_80', 'state_________________1438'),
('country_Georgia_80', 'state_________________1439'),
('country_Georgia_80',
'state_______________________1440'),
('country_Georgia_80',
'state____________________1441'),
('country_Georgia_80',
'state____________________________________1442'),
('country_Georgia_80',
'state_____________________________________________1443'),
('country_Georgia_80',
'state_________________________________________________________________________________1444'),
('country_Georgia_80',
'state_____________________________________________1445'),
('country_Georgia_80',
'state_________________________________1446'),
('country_Georgia_80',
'state________________________________________________________________1447'),
('country_Georgia_80',
'state_______________________1448'),
('country_Germany_81', 'state_Berlin_1449'),
('country_Germany_81', 'state_Brandenburg_1450'),
('country_Germany_81',
'state_Baden_W__rttemberg_1451'),
('country_Germany_81', 'state_Bayern_1452'),
('country_Germany_81', 'state_Bremen_1453'),
('country_Germany_81', 'state_Hessen_1454'),
('country_Germany_81', 'state_Hamburg_1455'),
('country_Germany_81',
'state_Mecklenburg_Vorpommern_1456'),
('country_Germany_81', 'state_Niedersachsen_1457'),
('country_Germany_81',
'state_Nordrhein_Westfalen_1458'),
('country_Germany_81', 'state_Rheinland_Pfalz_1459'),
('country_Germany_81',
'state_Schleswig_Holstein_1460'),
('country_Germany_81', 'state_Saarland_1461'),
('country_Germany_81', 'state_Sachsen_1462'),
('country_Germany_81', 'state_Sachsen_Anhalt_1463'),
('country_Germany_81', 'state_Th__ringen_1464'),
('country_Greece_84',
'state________________________________1475'),
('country_Greece_84', 'state________________1476'),
('country_Greece_84', 'state______________1477'),
('country_Greece_84',
'state____________________1478'),
('country_Greece_84', 'state__________________1479'),
('country_Greece_84', 'state______________1480'),
('country_Greece_84', 'state__________________1481'),
('country_Greece_84', 'state________________1482'),
('country_Greece_84', 'state_____________1483'),
('country_Greece_84', 'state____________1484'),
('country_Greece_84', 'state__________________1485'),
('country_Greece_84', 'state________________1486'),
('country_Greece_84', 'state__________________1487'),
('country_Greece_84', 'state__________________1488'),
('country_Greece_84', 'state________________1489'),
('country_Greece_84',
'state______________________1490'),
('country_Greece_84', 'state________________1491'),
('country_Greece_84', 'state__________1492'),
('country_Greece_84',
'state____________________1493'),
('country_Greece_84', 'state__________________1494'),
('country_Greece_84', 'state________________1495'),
('country_Greece_84', 'state__________________1496'),
('country_Greece_84', 'state______________1497'),
('country_Greece_84', 'state__________________1498'),
('country_Greece_84', 'state________________1499'),
('country_Greece_84', 'state________________1500'),
('country_Greece_84', 'state____________1501'),
('country_Greece_84', 'state______________1502'),
('country_Greece_84',
'state________________________1503'),
('country_Greece_84', 'state______________1504'),
('country_Greece_84', 'state__________________1505'),
('country_Greece_84', 'state______________1506'),
('country_Greece_84', 'state______________1507'),
('country_Greece_84', 'state____________1508'),
('country_Greece_84', 'state______________1509'),
('country_Greece_84', 'state______________1510'),
('country_Greece_84', 'state________________1511'),
('country_Greece_84',
'state____________________1512'),
('country_Greece_84', 'state___________________1513'),
('country_Greece_84', 'state____________1514'),
('country_Greece_84', 'state____________1515'),
('country_Greece_84', 'state______________1516'),
('country_Greece_84',
'state______________________1517'),
('country_Greece_84', 'state__________________1518'),
('country_Greece_84', 'state______________1519'),
('country_Greece_84', 'state____________1520'),
('country_Greece_84', 'state__________1521'),
('country_Greece_84', 'state__________________1522'),
('country_Greece_84', 'state______________1523'),
('country_Greece_84', 'state________________1524'),
('country_Greece_84', 'state______________1525'),
('country_Greece_84', 'state______________1526'),
('country_Greenland_85', 'state_Avannaa_1527'),
('country_Greenland_85', 'state_Tunu__1528'),
('country_Greenland_85', 'state_Kitaa_1529'),
('country_Grenada_86', 'state_Saint_David_1531'),
('country_Grenada_86', 'state_Saint_Mark_1534'),
('country_Grenada_86', 'state_Saint_Patrick_1535'),
('country_Guatemala_89', 'state_Alta_Verapaz_1536'),
('country_Guatemala_89', 'state_Baja_Verapaz_1537'),
('country_Guatemala_89', 'state_Chimaltenango_1538'),
('country_Guatemala_89', 'state_Chiquimula_1539'),
('country_Guatemala_89', 'state_Escuintla_1540'),
('country_Guatemala_89', 'state_Guatemala_1541'),
('country_Guatemala_89', 'state_Huehuetenango_1542'),
('country_Guatemala_89', 'state_Izabal_1543'),
('country_Guatemala_89', 'state_Jalapa_1544'),
('country_Guatemala_89', 'state_Jutiapa_1545'),
('country_Guatemala_89', 'state_El_Pet__n_1546'),
('country_Guatemala_89', 'state_El_Progreso_1547'),
('country_Guatemala_89', 'state_El_Quich___1548'),
('country_Guatemala_89', 'state_Quetzaltenango_1549'),
('country_Guatemala_89', 'state_Retalhuleu_1550'),
('country_Guatemala_89', 'state_Sacatep__quez_1551'),
('country_Guatemala_89', 'state_San_Marcos_1552'),
('country_Guatemala_89', 'state_Solol___1553'),
('country_Guatemala_89', 'state_Santa_Rosa_1554'),
('country_Guatemala_89', 'state_Suchitep__quez_1555'),
('country_Guatemala_89', 'state_Totonicap__n_1556'),
('country_Guatemala_89', 'state_Zacapa_1557'),
('country_Guinea_90', 'state_Beyla_1558'),
('country_Guinea_90', 'state_Boffa_1559'),
('country_Guinea_90', 'state_Bok___1560'),
('country_Guinea_90', 'state_Coyah_1561'),
('country_Guinea_90', 'state_Dabola_1562'),
('country_Guinea_90', 'state_Dinguiraye_1563'),
('country_Guinea_90', 'state_Dalaba_1564'),
('country_Guinea_90', 'state_Dubr__ka_1565'),
('country_Guinea_90', 'state_Faranah_1566'),
('country_Guinea_90', 'state_For__cariah_1567'),
('country_Guinea_90', 'state_Fria_1568'),
('country_Guinea_90', 'state_Gaoual_1569'),
('country_Guinea_90', 'state_Gu__k__dou_1570'),
('country_Guinea_90', 'state_Kankan_1571'),
('country_Guinea_90', 'state_Koubia_1572'),
('country_Guinea_90', 'state_Kindia_1573'),
('country_Guinea_90', 'state_K__rouan___1574'),
('country_Guinea_90', 'state_Koundara_1575'),
('country_Guinea_90', 'state_Kouroussa_1576'),
('country_Guinea_90', 'state_Kissidougou_1577'),
('country_Guinea_90', 'state_Lab___1578'),
('country_Guinea_90', 'state_L__louma_1579'),
('country_Guinea_90', 'state_Lola_1580'),
('country_Guinea_90', 'state_Macenta_1581'),
('country_Guinea_90', 'state_Mandiana_1582'),
('country_Guinea_90', 'state_Mali_1583'),
('country_Guinea_90', 'state_Mamou_1584'),
('country_Guinea_90', 'state_Nz__r__kor___1585'),
('country_Guinea_90', 'state_Pita_1586'),
('country_Guinea_90', 'state_Siguiri_1587'),
('country_Guinea_90', 'state_T__lim__l___1588'),
('country_Guinea_90', 'state_Tougu___1589'),
('country_Guinea_90', 'state_Yomou_1590'),
('country_Guinea_Bissau_91', 'state_Bafata_1591'),
('country_Guinea_Bissau_91', 'state_Biombo_1592'),
('country_Guinea_Bissau_91', 'state_Bissau_1593'),
('country_Guinea_Bissau_91', 'state_Bolama_1594'),
('country_Guinea_Bissau_91', 'state_Cacheu_1595'),
('country_Guinea_Bissau_91', 'state_Gabu_1596'),
('country_Guinea_Bissau_91', 'state_Oio_1597'),
('country_Guinea_Bissau_91', 'state_Quinara_1598'),
('country_Guinea_Bissau_91', 'state_Tombali_1599'),
('country_Guyana_92', 'state_Barima_Waini_1600'),
('country_Guyana_92', 'state_Cuyuni_Mazaruni_1601'),
('country_Guyana_92', 'state_Demerara_Mahaica_1602'),
('country_Guyana_92',
'state_East_Berbice_Corentyne_1603'),
('country_Guyana_92',
'state_Essequibo_Islands_West_Demerara_1604'),
('country_Guyana_92', 'state_Mahaica_Berbice_1605'),
('country_Guyana_92', 'state_Pomeroon_Supenaam_1606'),
('country_Guyana_92', 'state_Potaro_Siparuni_1607'),
('country_Guyana_92',
'state_Upper_Demerara_Berbice_1608'),
('country_Guyana_92',
'state_Upper_Takutu_Upper_Essequibo_1609'),
('country_Haiti_93', 'state_Artibonite_1610'),
('country_Haiti_93', 'state_Grand_Anse_1612'),
('country_Haiti_93', 'state_Nippes_1613'),
('country_Haiti_93', 'state_Nord_1614'),
('country_Haiti_93', 'state_Nord_Est_1615'),
('country_Haiti_93', 'state_Nord_Ouest_1616'),
('country_Haiti_93', 'state_Sud_1618'),
('country_Haiti_93', 'state_Sud_Est_1619'),
('country_Heard_and_McDonald_Islands_94',
'state_Flat_Island_1620'),
('country_Heard_and_McDonald_Islands_94',
'state_McDonald_Island_1621'),
('country_Heard_and_McDonald_Islands_94',
'state_Shag_Island_1622'),
('country_Heard_and_McDonald_Islands_94',
'state_Heard_Island_1623'),
('country_Honduras_95', 'state_Atl__ntida_1624'),
('country_Honduras_95', 'state_Choluteca_1625'),
('country_Honduras_95', 'state_Col__n_1626'),
('country_Honduras_95', 'state_Comayagua_1627'),
('country_Honduras_95', 'state_Cop__n_1628'),
('country_Honduras_95', 'state_Cort__s_1629'),
('country_Honduras_95', 'state_El_Para__so_1630'),
('country_Honduras_95',
'state_Francisco_Moraz__n_1631'),
('country_Honduras_95', 'state_Gracias_a_Dios_1632'),
('country_Honduras_95',
'state_Islas_de_la_Bah__a_1633'),
('country_Honduras_95', 'state_Intibuc___1634'),
('country_Honduras_95', 'state_Lempira_1635'),
('country_Honduras_95', 'state_La_Paz_1636'),
('country_Honduras_95', 'state_Ocotepeque_1637'),
('country_Honduras_95', 'state_Olancho_1638'),
('country_Honduras_95', 'state_Santa_B__rbara_1639'),
('country_Honduras_95', 'state_Valle_1640'),
('country_Honduras_95', 'state_Yoro_1641'),
('country_Hong_Kong_96', 'state___________1642'),
('country_Hong_Kong_96', 'state________1643'),
('country_Hong_Kong_96', 'state________1644'),
('country_Hong_Kong_96', 'state___________1645'),
('country_Hong_Kong_96', 'state______________1646'),
('country_Hong_Kong_96', 'state___________1647'),
('country_Hong_Kong_96', 'state______________1648'),
('country_Hong_Kong_96', 'state______________1649'),
('country_Hong_Kong_96', 'state______________1650'),
('country_Hong_Kong_96', 'state___________1651'),
('country_Hong_Kong_96', 'state___________1652'),
('country_Hong_Kong_96', 'state________1653'),
('country_Hong_Kong_96', 'state___________1654'),
('country_Hong_Kong_96', 'state___________1655'),
('country_Hong_Kong_96', 'state___________1656'),
('country_Hong_Kong_96', 'state___________1657'),
('country_Hong_Kong_96', 'state___________1658'),
('country_Hong_Kong_96', 'state___________1659'),
('country_Hungary_97', 'state_Baranja_megye_1660'),
('country_Hungary_97', 'state_B__k__scsaba_1661'),
('country_Hungary_97', 'state_B__k__s_megye_1662'),
('country_Hungary_97',
'state_B__cs_Kiskun_megye_1663'),
('country_Hungary_97', 'state_Budapest_1664'),
('country_Hungary_97',
'state_Borsod_Aba__j_Zempl__n_megye_1665'),
('country_Hungary_97', 'state_Csongr__d_megye_1666'),
('country_Hungary_97', 'state_Debrecen_1667'),
('country_Hungary_97', 'state_Duna__jv__ros_1668'),
('country_Hungary_97', 'state_Eger_1669'),
('country_Hungary_97', 'state_Fej__r_megye_1670'),
('country_Hungary_97',
'state_Gy__r_Moson_Sopron_megye_1671'),
('country_Hungary_97', 'state_Gy__r_1672'),
('country_Hungary_97',
'state_Hajd___Bihar_megye_1673'),
('country_Hungary_97', 'state_Heves_megye_1674'),
('country_Hungary_97',
'state_H__dmez__v__s__rhely_1675'),
('country_Hungary_97',
'state_J__sz_Nagykun_Szolnok_megye_1676'),
('country_Hungary_97',
'state_Kom__rom_Esztergom_megye_1677'),
('country_Hungary_97', 'state_Kecskem__t_1678'),
('country_Hungary_97', 'state_Kaposv__r_1679'),
('country_Hungary_97', 'state_Miskolc_1680'),
('country_Hungary_97', 'state_Nagykanizsa_1681'),
('country_Hungary_97', 'state_N__gr__d_megye_1682'),
('country_Hungary_97', 'state_Ny__regyh__za_1683'),
('country_Hungary_97', 'state_Pest_megye_1684'),
('country_Hungary_97', 'state_P__cs_1685'),
('country_Hungary_97', 'state_Szeged_1686'),
('country_Hungary_97',
'state_Sz__kesfeh__rv__r_1687'),
('country_Hungary_97', 'state_Szombathely_1688'),
('country_Hungary_97', 'state_Szolnok_1689'),
('country_Hungary_97', 'state_Sopron_1690'),
('country_Hungary_97', 'state_Somogy_megye_1691'),
('country_Hungary_97', 'state_Szeksz__rd_1692'),
('country_Hungary_97', 'state_Salg__tarj__n_1693'),
('country_Hungary_97',
'state_Szabolcs_Szatm__r_Bereg_megye_1694'),
('country_Hungary_97', 'state_Tatab__nya_1695'),
('country_Hungary_97', 'state_Tolna_megye_1696'),
('country_Hungary_97', 'state_Vas_megye_1697'),
('country_Hungary_97', 'state_Veszpr__m_megye_1698'),
('country_Hungary_97', 'state_Veszpr__m_1699'),
('country_Hungary_97', 'state_Zala_megye_1700'),
('country_Hungary_97', 'state_Zalaegerszeg_1701'),
('country_Iceland_98',
'state_H__fu__borgarsv____i___1702'),
('country_Iceland_98', 'state_Su__urnes_1703'),
('country_Iceland_98', 'state_Vesturland_1704'),
('country_Iceland_98', 'state_Vestfir__ir_1705'),
('country_Iceland_98',
'state_Nor__urland_vestra_1706'),
('country_Iceland_98',
'state_Nor__urland_eystra_1707'),
('country_Iceland_98', 'state_Austfir__ir_1708'),
('country_Iceland_98', 'state_Su__urland_1709'),
('country_India_99',
'state_________________________________________________________________1710'),
('country_India_99',
'state_______________________________________1711'),
('country_India_99',
'state__________________________________________1712'),
('country_India_99', 'state___________1713'),
('country_India_99', 'state_________________1714'),
('country_India_99',
'state_______________________1715'),
('country_India_99',
'state_____________________________1716'),
('country_India_99',
'state_______________________________1717'),
('country_India_99', 'state____________________1718'),
('country_India_99',
'state_____________________________________________________1719'),
('country_India_99', 'state______________1720'),
('country_India_99', 'state____________________1721'),
('country_India_99',
'state_______________________________________1722'),
('country_India_99',
'state_______________________1723'),
('country_India_99', 'state____________________1724'),
('country_India_99',
'state___________________________________________1725'),
('country_India_99', 'state____________________1726'),
('country_India_99', 'state_________________1727'),
('country_India_99',
'state________________________________1728'),
('country_India_99', 'state____________________1729'),
('country_India_99',
'state________________________________1730'),
('country_India_99', 'state____________________1731'),
('country_India_99',
'state_________________________________1732'),
('country_India_99',
'state_______________________1733'),
('country_India_99',
'state__________________________1734'),
('country_India_99', 'state____________________1735'),
('country_India_99', 'state_________________1736'),
('country_India_99',
'state________________________________1737'),
('country_India_99',
'state__________________________1738'),
('country_India_99',
'state_______________________1739'),
('country_India_99',
'state______________________________1740'),
('country_India_99',
'state__________________________1741'),
('country_India_99',
'state_____________________________1742'),
('country_India_99',
'state____________________________________1743'),
('country_India_99',
'state________________________________1744'),
('country_Indonesia_100', 'state_Aceh_1745'),
('country_Indonesia_100', 'state_Bali_1746'),
('country_Indonesia_100',
'state_Bangka_Belitung_1747'),
('country_Indonesia_100', 'state_Bengkulu_1748'),
('country_Indonesia_100', 'state_Banten_1749'),
('country_Indonesia_100',
'state_Gorontalo_1750')";
		$this->db->setQuery($query);
		$this->db->query();
		$query="INSERT IGNORE INTO `#__hikashop_zone_link`
(`zone_parent_namekey`, `zone_child_namekey`) VALUES
('country_Indonesia_100', 'state_Papua_1751'),
('country_Indonesia_100', 'state_Jambi_1752'),
('country_Indonesia_100', 'state_Jawa_Timur_1753'),
('country_Indonesia_100', 'state_Jakarta_Raya_1754'),
('country_Indonesia_100', 'state_Jawa_Barat_1755'),
('country_Indonesia_100', 'state_Jawa_Tengah_1756'),
('country_Indonesia_100',
'state_Kalimantan_Barat_1757'),
('country_Indonesia_100',
'state_Kalimantan_Timur_1758'),
('country_Indonesia_100',
'state_Kalimantan_Selatan_1759'),
('country_Indonesia_100',
'state_Kalimantan_Tengah_1760'),
('country_Indonesia_100', 'state_Lampung_1761'),
('country_Indonesia_100', 'state_Maluku_1762'),
('country_Indonesia_100', 'state_Maluku_Utara_1763'),
('country_Indonesia_100',
'state_Nusa_Tenggara_Barat_1764'),
('country_Indonesia_100',
'state_Nusa_Tenggara_Timur_1765'),
('country_Indonesia_100', 'state_Riau_1766'),
('country_Indonesia_100',
'state_Sumatera_Barat_1767'),
('country_Indonesia_100',
'state_Sulawesi_Tenggara_1768'),
('country_Indonesia_100',
'state_Sumatera_Selatan_1769'),
('country_Indonesia_100',
'state_Sulawesi_Selatan_1770'),
('country_Indonesia_100',
'state_Sulawesi_Tengah_1771'),
('country_Indonesia_100',
'state_Sulawesi_Utara_1772'),
('country_Indonesia_100',
'state_Sumatera_Utara_1773'),
('country_Indonesia_100', 'state_Yogyakarta_1774'),
('country_Iran_101',
'state__________________________________________1775'),
('country_Iran_101',
'state__________________________________________1776'),
('country_Iran_101',
'state___________________________1777'),
('country_Iran_101',
'state___________________________1778'),
('country_Iran_101',
'state_________________________1779'),
('country_Iran_101',
'state_________________________1780'),
('country_Iran_101',
'state_________________________1781'),
('country_Iran_101',
'state_______________________________________________1782'),
('country_Iran_101',
'state____________________________________1783'),
('country_Iran_101',
'state_____________________________1784'),
('country_Iran_101',
'state_________________________1785'),
('country_Iran_101',
'state_________________________1786'),
('country_Iran_101',
'state________________________________________________1787'),
('country_Iran_101',
'state_______________________1788'),
('country_Iran_101',
'state_________________________1789'),
('country_Iran_101',
'state_____________________________1790'),
('country_Iran_101',
'state_______________________________1791'),
('country_Iran_101',
'state____________________________________________________1792'),
('country_Iran_101',
'state_________________________1793'),
('country_Iran_101',
'state___________________________1794'),
('country_Iran_101',
'state_______________________________1795'),
('country_Iran_101',
'state_________________________1796'),
('country_Iran_101',
'state_____________________________1797'),
('country_Iran_101',
'state_________________________1798'),
('country_Iran_101',
'state_____________________1799'),
('country_Iran_101', 'state___________________1800'),
('country_Iran_101',
'state___________________________1801'),
('country_Iran_101',
'state_________________________1802'),
('country_Iraq_102',
'state_____________________________1803'),
('country_Iraq_102', 'state____________1804'),
('country_Iraq_102',
'state___________________________1805'),
('country_Iraq_102', 'state__________1806'),
('country_Iraq_102',
'state_________________________1807'),
('country_Iraq_102', 'state__________1808'),
('country_Iraq_102', 'state____________1809'),
('country_Iraq_102', 'state_____________1810'),
('country_Iraq_102', 'state______________1811'),
('country_Iraq_102', 'state____________1812'),
('country_Iraq_102', 'state______________1813'),
('country_Iraq_102', 'state____________1814'),
('country_Iraq_102', 'state____________1815'),
('country_Iraq_102', 'state__________________1816'),
('country_Iraq_102',
'state_____________________1817'),
('country_Iraq_102',
'state___________________________________1818'),
('country_Iraq_102', 'state________________1819'),
('country_Iraq_102', 'state__________1820'),
('country_Ireland_103', 'state_Corcaigh_1821'),
('country_Ireland_103',
'state_Contae_an_Chl__ir_1822'),
('country_Ireland_103', 'state_An_Cabh__n_1823'),
('country_Ireland_103', 'state_Ceatharlach_1824'),
('country_Ireland_103',
'state_Baile___tha_Cliath_1825'),
('country_Ireland_103', 'state_D__n_na_nGall_1826'),
('country_Ireland_103', 'state_Gaillimh_1827'),
('country_Ireland_103', 'state_Cill_Dara_1828'),
('country_Ireland_103', 'state_Cill_Chainnigh_1829'),
('country_Ireland_103',
'state_Contae_Chiarra___1830'),
('country_Ireland_103', 'state_An_Longfort_1831'),
('country_Ireland_103', 'state_Contae_L___1832'),
('country_Ireland_103', 'state_Luimneach_1833'),
('country_Ireland_103', 'state_Contae_Liatroma_1834'),
('country_Ireland_103', 'state_Contae_Laoise_1835'),
('country_Ireland_103', 'state_Contae_na_M___1836'),
('country_Ireland_103', 'state_Muineach__n_1837'),
('country_Ireland_103',
'state_Contae_Mhaigh_Eo_1838'),
('country_Ireland_103',
'state_Contae_U__bh_Fhail___1839'),
('country_Ireland_103', 'state_Ros_Com__in_1840'),
('country_Ireland_103', 'state_Sligeach_1841'),
('country_Ireland_103', 'state_Tiobraid___rann_1842'),
('country_Ireland_103', 'state_Port_Lairge_1843'),
('country_Ireland_103',
'state_Contae_na_hIarmh___1844'),
('country_Ireland_103', 'state_Cill_Mhant__in_1845'),
('country_Ireland_103', 'state_Loch_Garman_1846'),
('country_Israel_104',
'state_____________________1847'),
('country_Israel_104',
'state___________________1848'),
('country_Israel_104', 'state________________1849'),
('country_Israel_104',
'state_____________________1850'),
('country_Israel_104',
'state______________________1851'),
('country_Israel_104',
'state_____________________1852'),
('country_Italy_105', 'state_Agrigento_1853'),
('country_Italy_105', 'state_Alessandria_1854'),
('country_Italy_105', 'state_Ancona_1855'),
('country_Italy_105', 'state_Valle_d_Aosta_1856'),
('country_Italy_105', 'state_Ascoli_Piceno_1857'),
('country_Italy_105', 'state_L_Aquila_1858'),
('country_Italy_105', 'state_Arezzo_1859'),
('country_Italy_105', 'state_Asti_1860'),
('country_Italy_105', 'state_Avellino_1861'),
('country_Italy_105', 'state_Bari_1862'),
('country_Italy_105', 'state_Bergamo_1863'),
('country_Italy_105', 'state_Biella_1864'),
('country_Italy_105', 'state_Belluno_1865'),
('country_Italy_105', 'state_Benevento_1866'),
('country_Italy_105', 'state_Bologna_1867'),
('country_Italy_105', 'state_Brindisi_1868'),
('country_Italy_105', 'state_Brescia_1869'),
('country_Italy_105',
'state_Barletta_Andria_Trani_1870'),
('country_Italy_105', 'state_Alto_Adige_1871'),
('country_Italy_105', 'state_Cagliari_1872'),
('country_Italy_105', 'state_Campobasso_1873'),
('country_Italy_105', 'state_Caserta_1874'),
('country_Italy_105', 'state_Chieti_1875'),
('country_Italy_105', 'state_Carbonia_Iglesias_1876'),
('country_Italy_105', 'state_Caltanissetta_1877'),
('country_Italy_105', 'state_Cuneo_1878'),
('country_Italy_105', 'state_Como_1879'),
('country_Italy_105', 'state_Cremona_1880'),
('country_Italy_105', 'state_Cosenza_1881'),
('country_Italy_105', 'state_Catania_1882'),
('country_Italy_105', 'state_Catanzaro_1883'),
('country_Italy_105', 'state_Enna_1884'),
('country_Italy_105', 'state_Ferrara_1885'),
('country_Italy_105', 'state_Foggia_1886'),
('country_Italy_105', 'state_Firenze_1887'),
('country_Italy_105', 'state_Fermo_1888'),
('country_Italy_105', 'state_Forl___Cesena_1889'),
('country_Italy_105', 'state_Frosinone_1890'),
('country_Italy_105', 'state_Genova_1891'),
('country_Italy_105', 'state_Gorizia_1892'),
('country_Italy_105', 'state_Grosseto_1893'),
('country_Italy_105', 'state_Imperia_1894'),
('country_Italy_105', 'state_Isernia_1895'),
('country_Italy_105', 'state_Crotone_1896'),
('country_Italy_105', 'state_Lecco_1897'),
('country_Italy_105', 'state_Lecce_1898'),
('country_Italy_105', 'state_Livorno_1899'),
('country_Italy_105', 'state_Lodi_1900'),
('country_Italy_105', 'state_Latina_1901'),
('country_Italy_105', 'state_Lucca_1902'),
('country_Italy_105', 'state_Macerata_1903'),
('country_Italy_105', 'state_Medio_Campidano_1904'),
('country_Italy_105', 'state_Messina_1905'),
('country_Italy_105', 'state_Milano_1906'),
('country_Italy_105', 'state_Mantova_1907'),
('country_Italy_105', 'state_Modena_1908'),
('country_Italy_105', 'state_Massa_Carrara_1909'),
('country_Italy_105', 'state_Matera_1910'),
('country_Italy_105', 'state_Monza_e_Brianza_1911'),
('country_Italy_105', 'state_Napoli_1912'),
('country_Italy_105', 'state_Novara_1913'),
('country_Italy_105', 'state_Nuoro_1914'),
('country_Italy_105', 'state_Ogliastra_1915'),
('country_Italy_105', 'state_Oristano_1916'),
('country_Italy_105', 'state_Olbia_Tempio_1917'),
('country_Italy_105', 'state_Palermo_1918'),
('country_Italy_105', 'state_Piacenza_1919'),
('country_Italy_105', 'state_Padova_1920'),
('country_Italy_105', 'state_Pescara_1921'),
('country_Italy_105', 'state_Perugia_1922'),
('country_Italy_105', 'state_Pisa_1923'),
('country_Italy_105', 'state_Pordenone_1924'),
('country_Italy_105', 'state_Prato_1925'),
('country_Italy_105', 'state_Parma_1926'),
('country_Italy_105', 'state_Pesaro_e_Urbino_1927'),
('country_Italy_105', 'state_Pistoia_1928'),
('country_Italy_105', 'state_Pavia_1929'),
('country_Italy_105', 'state_Potenza_1930'),
('country_Italy_105', 'state_Ravenna_1931'),
('country_Italy_105', 'state_Reggio_Calabria_1932'),
('country_Italy_105', 'state_Reggio_Emilia_1933'),
('country_Italy_105', 'state_Ragusa_1934'),
('country_Italy_105', 'state_Rieti_1935'),
('country_Italy_105', 'state_Roma_1936'),
('country_Italy_105', 'state_Rimini_1937'),
('country_Italy_105', 'state_Rovigo_1938'),
('country_Italy_105', 'state_Salerno_1939'),
('country_Italy_105', 'state_Siena_1940'),
('country_Italy_105', 'state_Sondrio_1941'),
('country_Italy_105', 'state_La_Spezia_1942'),
('country_Italy_105', 'state_Siracusa_1943'),
('country_Italy_105', 'state_Sassari_1944'),
('country_Italy_105', 'state_Savona_1945'),
('country_Italy_105', 'state_Taranto_1946'),
('country_Italy_105', 'state_Teramo_1947'),
('country_Italy_105', 'state_Trento_1948'),
('country_Italy_105', 'state_Torino_1949'),
('country_Italy_105', 'state_Trapani_1950'),
('country_Italy_105', 'state_Terni_1951'),
('country_Italy_105', 'state_Trieste_1952'),
('country_Italy_105', 'state_Treviso_1953'),
('country_Italy_105', 'state_Udine_1954'),
('country_Italy_105', 'state_Varese_1955'),
('country_Italy_105',
'state_Verbano_Cusio_Ossola_1956'),
('country_Italy_105', 'state_Vercelli_1957'),
('country_Italy_105', 'state_Venezia_1958'),
('country_Italy_105', 'state_Vicenza_1959'),
('country_Italy_105', 'state_Verona_1960'),
('country_Italy_105', 'state_Viterbo_1961'),
('country_Italy_105', 'state_Vibo_Valentia_1962'),
('country_Jamaica_106', 'state_Kingston_1963'),
('country_Jamaica_106', 'state_Half_Way_Tree_1964'),
('country_Jamaica_106', 'state_Morant_Bay_1965'),
('country_Jamaica_106', 'state_Port_Antonio_1966'),
('country_Jamaica_106', 'state_Port_Maria_1967'),
('country_Jamaica_106', 'state_Saint_Ann_s_Bay_1968'),
('country_Jamaica_106', 'state_Falmouth_1969'),
('country_Jamaica_106', 'state_Montego_Bay_1970'),
('country_Jamaica_106', 'state_Lucea_1971'),
('country_Jamaica_106', 'state_Savanna_la_Mar_1972'),
('country_Jamaica_106', 'state_Black_River_1973'),
('country_Jamaica_106', 'state_Mandeville_1974'),
('country_Jamaica_106', 'state_May_Pen_1975'),
('country_Jamaica_106', 'state_Spanish_Town_1976'),
('country_Japan_', '1977'),
('country_Japan_107', 'state________1978'),
('country_Japan_107', 'state________1979'),
('country_Japan_107', 'state________1980'),
('country_Japan_107', 'state________1981'),
('country_Japan_107', 'state________1982'),
('country_Japan_107', 'state________1983'),
('country_Japan_107', 'state________1984'),
('country_Japan_107', 'state________1985'),
('country_Japan_107', 'state________1986'),
('country_Japan_107', 'state________1987'),
('country_Japan_107', 'state________1988'),
('country_Japan_107', 'state________1989'),
('country_Japan_107', 'state___________1990'),
('country_Japan_107', 'state________1991'),
('country_Japan_107', 'state________1992'),
('country_Japan_107', 'state________1993'),
('country_Japan_107', 'state________1994'),
('country_Japan_107', 'state________1995'),
('country_Japan_107', 'state________1996'),
('country_Japan_107', 'state________1997'),
('country_Japan_107', 'state________1998'),
('country_Japan_107', 'state________1999'),
('country_Japan_107', 'state________2000'),
('country_Japan_107', 'state________2001'),
('country_Japan_107', 'state________2002'),
('country_Japan_107', 'state________2003'),
('country_Japan_107', 'state________2004'),
('country_Japan_107', 'state________2005'),
('country_Japan_107', 'state___________2006'),
('country_Japan_107', 'state________2007'),
('country_Japan_107', 'state________2008'),
('country_Japan_107', 'state________2009'),
('country_Japan_107', 'state________2010'),
('country_Japan_107', 'state________2011'),
('country_Japan_107', 'state________2012'),
('country_Japan_107', 'state________2013'),
('country_Japan_107', 'state________2014'),
('country_Japan_107', 'state________2015'),
('country_Japan_107', 'state________2016'),
('country_Japan_107', 'state________2017'),
('country_Japan_107', 'state________2018'),
('country_Japan_107', 'state________2019'),
('country_Japan_107', 'state________2020'),
('country_Japan_107', 'state________2021'),
('country_Japan_107', 'state___________2022'),
('country_Japan_107', 'state________2023'),
('country_Jordan_108',
'state_________________________2024'),
('country_Jordan_108',
'state_____________________________2025'),
('country_Jordan_108',
'state___________________________2026'),
('country_Jordan_108',
'state_____________________________2027'),
('country_Jordan_108',
'state_____________________________2028'),
('country_Jordan_108',
'state_____________________________2029'),
('country_Jordan_108',
'state_____________________2030'),
('country_Jordan_108',
'state_______________________2031'),
('country_Jordan_108',
'state_________________________2032'),
('country_Jordan_108',
'state___________________________2033'),
('country_Jordan_108',
'state_________________________2034'),
('country_Jordan_108',
'state_______________________2035'),
('country_Kazakhstan_109', 'state______________2036'),
('country_Kazakhstan_109', 'state_Almaty_City_2037'),
('country_Kazakhstan_109', 'state______________2038'),
('country_Kazakhstan_109', 'state______________2039'),
('country_Kazakhstan_109', 'state______________2040'),
('country_Kazakhstan_109', 'state______________2041'),
('country_Kazakhstan_109',
'state_______________________________2042'),
('country_Kazakhstan_109',
'state__________________2043'),
('country_Kazakhstan_109',
'state____________________2044'),
('country_Kazakhstan_109',
'state_____________________________________2045'),
('country_Kazakhstan_109',
'state__________________2046'),
('country_Kazakhstan_109',
'state____________________2047'),
('country_Kazakhstan_109',
'state__________________2048'),
('country_Kazakhstan_109',
'state____________________2049'),
('country_Kazakhstan_109',
'state_______________________________2050'),
('country_Kazakhstan_109',
'state_______________________________________2051'),
('country_Kazakhstan_109', 'state______________2052'),
('country_Kenya_110', 'state_Nairobi_2053'),
('country_Kenya_110', 'state_Central_2054'),
('country_Kenya_110', 'state_Mombasa_2055'),
('country_Kenya_110', 'state_Eastern_2056'),
('country_Kenya_110', 'state_North_Eastern_2057'),
('country_Kenya_110', 'state_Nyanza_2058'),
('country_Kenya_110', 'state_Rift_Valley_2059'),
('country_Kenya_110', 'state_Western_2060'),
('country_Kiribati_111',
'state_Gilbert_Islands_2061'),
('country_Kiribati_111', 'state_Line_Islands_2062'),
('country_Kiribati_111',
'state_Phoenix_Islands_2063'),
('country_Korea__North_112', 'state___________2064'),
('country_Korea__North_112',
'state_______________2065'),
('country_Korea__North_112',
'state_______________2066'),
('country_Korea__North_112',
'state_______________2067'),
('country_Korea__North_112',
'state_______________2068'),
('country_Korea__North_112', 'state___________2069'),
('country_Korea__North_112', 'state___________2070'),
('country_Korea__North_112',
'state__________________2071'),
('country_Korea__North_112',
'state__________________2072'),
('country_Korea__North_112',
'state_______________2073'),
('country_Korea__North_112',
'state_______________2074'),
('country_Korea__North_112',
'state__________________2075'),
('country_Korea__North_112', 'state___________2076'),
('country_Korea__South_113',
'state_________________2077'),
('country_Korea__South_113',
'state__________________2078'),
('country_Korea__South_113',
'state__________________2079'),
('country_Korea__South_113',
'state_________________2080'),
('country_Korea__South_113',
'state__________________2081'),
('country_Korea__South_113',
'state__________________2082'),
('country_Korea__South_113',
'state__________________2083'),
('country_Korea__South_113', 'state___________2084'),
('country_Korea__South_113', 'state___________2085'),
('country_Korea__South_113',
'state_______________2086'),
('country_Korea__South_113',
'state_______________2087'),
('country_Korea__South_113',
'state_______________2088'),
('country_Korea__South_113',
'state_______________2089'),
('country_Korea__South_113',
'state_______________2090'),
('country_Korea__South_113',
'state_______________2091'),
('country_Korea__South_113',
'state_______________________2092'),
('country_Kuwait_114', 'state________________2093'),
('country_Kuwait_114',
'state____________________2094'),
('country_Kuwait_114', 'state________________2095'),
('country_Kuwait_114', 'state________________2096'),
('country_Kuwait_114', 'state__________2097'),
('country_Kuwait_114',
'state_________________________2098'),
('country_Kyrgyzstan_115',
'state_____________________________2099'),
('country_Kyrgyzstan_115',
'state_______________________2100'),
('country_Kyrgyzstan_115', 'state______________2101'),
('country_Kyrgyzstan_115',
'state____________________________________2102'),
('country_Kyrgyzstan_115',
'state___________________________2103'),
('country_Kyrgyzstan_115',
'state_____________________2104'),
('country_Kyrgyzstan_115',
'state___________________________2105'),
('country_Kyrgyzstan_115',
'state________________________________2106'),
('country_Laos_116',
'state_______________________2107'),
('country_Laos_116',
'state_______________________2108'),
('country_Laos_116',
'state_____________________________2109'),
('country_Laos_116',
'state__________________________2110'),
('country_Laos_116', 'state____________________2111'),
('country_Laos_116',
'state_______________________2112'),
('country_Laos_116',
'state________________________________2113'),
('country_Laos_116',
'state_____________________________2114'),
('country_Laos_116',
'state_______________________2115'),
('country_Laos_116',
'state_______________________2116'),
('country_Laos_116',
'state_______________________2117'),
('country_Laos_116',
'state___________________________________2118'),
('country_Laos_116', 'state____________________2119'),
('country_Laos_116', 'state____________________2120'),
('country_Laos_116',
'state__________________________2121'),
('country_Laos_116', 'state_________________2122'),
('country_Laos_116',
'state_______________________2123'),
('country_Laos_116',
'state__________________________2124'),
('country_Latvia_117',
'state_Aizkraukles_rajons_2125'),
('country_Latvia_117', 'state_Al__ksnes_rajons_2126'),
('country_Latvia_117', 'state_Balvu_rajons_2127'),
('country_Latvia_117', 'state_Bauskas_rajons_2128'),
('country_Latvia_117', 'state_C__su_rajons_2129'),
('country_Latvia_117',
'state_Daugavpils_rajons_2130'),
('country_Latvia_117', 'state_Daugpilis_2131'),
('country_Latvia_117', 'state_Dobeles_rajons_2132'),
('country_Latvia_117', 'state_Gulbenes_rajons_2133'),
('country_Latvia_117', 'state_Jelgava_2134'),
('country_Latvia_117',
'state_J__kabpils_rajons_2135'),
('country_Latvia_117', 'state_Jelgavas_rajons_2136'),
('country_Latvia_117', 'state_J__rmala_2137'),
('country_Latvia_117',
'state_Kr__slavas_rajons_2138'),
('country_Latvia_117', 'state_Kuld__gas_rajons_2139'),
('country_Latvia_117', 'state_Liep__jas_rajons_2140'),
('country_Latvia_117', 'state_Limba__u_rajons_2141'),
('country_Latvia_117', 'state_Liepoja_2142'),
('country_Latvia_117', 'state_Ludzas_rajons_2143'),
('country_Latvia_117', 'state_Madonas_rajons_2144'),
('country_Latvia_117', 'state_Ogres_rajons_2145'),
('country_Latvia_117', 'state_Prei__u_rajons_2146'),
('country_Latvia_117', 'state_R__zeknes_rajons_2147'),
('country_Latvia_117', 'state_R__zekne_2148'),
('country_Latvia_117', 'state_R__gas_rajons_2149'),
('country_Latvia_117', 'state_R__ga_2150'),
('country_Latvia_117', 'state_Saldus_rajons_2151'),
('country_Latvia_117', 'state_Talsu_rajons_2152'),
('country_Latvia_117', 'state_Tukuma_rajons_2153'),
('country_Latvia_117', 'state_Ventspils_rajons_2154'),
('country_Latvia_117', 'state_Ventspils_2155'),
('country_Latvia_117', 'state_Valkas_rajons_2156'),
('country_Latvia_117', 'state_Valmieras_rajons_2157'),
('country_Lesotho_119', 'state_Maseru_2158'),
('country_Lesotho_119', 'state_Butha_Buthe_2159'),
('country_Lesotho_119', 'state_Leribe_2160'),
('country_Lesotho_119', 'state_Berea_2161'),
('country_Lesotho_119', 'state_Mafeteng_2162'),
('country_Lesotho_119', 'state_Mohale_s_Hoek_2163'),
('country_Lesotho_119', 'state_Quthing_2164'),
('country_Lesotho_119', 'state_Qacha_s_Nek_2165'),
('country_Lesotho_119', 'state_Mokhotlong_2166'),
('country_Lesotho_119', 'state_Thaba_Tseka_2167'),
('country_Liberia_120', 'state_Bong_2168'),
('country_Liberia_120', 'state_Bomi_2169'),
('country_Liberia_120',
'state_Grand_Cape_Mount_2170'),
('country_Liberia_120', 'state_Grand_Bassa_2171'),
('country_Liberia_120', 'state_Grand_Gedeh_2172'),
('country_Liberia_120', 'state_Grand_Kru_2173'),
('country_Liberia_120', 'state_Gbarpolu_2174'),
('country_Liberia_120', 'state_Lofa_2175'),
('country_Liberia_120', 'state_Margibi_2176'),
('country_Liberia_120', 'state_Montserrado_2177'),
('country_Liberia_120', 'state_Maryland_2178'),
('country_Liberia_120', 'state_Nimba_2179'),
('country_Liberia_120', 'state_River_Gee_2180'),
('country_Liberia_120', 'state_Rivercess_2181'),
('country_Liberia_120', 'state_Sinoe_2182'),
('country_Libyan_Arab_Jamahiriya_121',
'state_Ajd__biy___2183'),
('country_Libyan_Arab_Jamahiriya_121',
'state_Bangh__z___2184'),
('country_Libyan_Arab_Jamahiriya_121',
'state_Al_Bu__n__n_2185'),
('country_Libyan_Arab_Jamahiriya_121',
'state_Ban___Wal__d_2186'),
('country_Libyan_Arab_Jamahiriya_121',
'state_Darnah_2187'),
('country_Libyan_Arab_Jamahiriya_121',
'state_Ghad__mis_2188'),
('country_Libyan_Arab_Jamahiriya_121',
'state_Ghary__n_2189'),
('country_Libyan_Arab_Jamahiriya_121',
'state_Gh__t_2190'),
('country_Libyan_Arab_Jamahiriya_121',
'state_Al____iz__m_al_Akh___ar_2191'),
('country_Libyan_Arab_Jamahiriya_121',
'state_Al_Jabal_al_Akh___ar_2192'),
('country_Libyan_Arab_Jamahiriya_121',
'state_Jaghb__b_2193'),
('country_Libyan_Arab_Jamahiriya_121',
'state_Al_Jif__rah_2194'),
('country_Libyan_Arab_Jamahiriya_121',
'state_Al_Jufrah_2195'),
('country_Libyan_Arab_Jamahiriya_121',
'state_Al_Kufrah_2196'),
('country_Libyan_Arab_Jamahiriya_121',
'state_Al_Marqab_2197'),
('country_Libyan_Arab_Jamahiriya_121',
'state_Mi__r__tah_2198'),
('country_Libyan_Arab_Jamahiriya_121',
'state_Al_Marj_2199'),
('country_Libyan_Arab_Jamahiriya_121',
'state_Murzuq_2200'),
('country_Libyan_Arab_Jamahiriya_121',
'state_Mizdah_2201'),
('country_Libyan_Arab_Jamahiriya_121',
'state_N__l__t_2202'),
('country_Libyan_Arab_Jamahiriya_121',
'state_An_Nuqa___al_Khams_2203'),
('country_Libyan_Arab_Jamahiriya_121',
'state_Al_Qubbah_2204'),
('country_Libyan_Arab_Jamahiriya_121',
'state_Al_Qa__r__n_2205'),
('country_Libyan_Arab_Jamahiriya_121',
'state_Sabh___2206'),
('country_Libyan_Arab_Jamahiriya_121',
'state_Ash_Sh____i_2207'),
('country_Libyan_Arab_Jamahiriya_121',
'state_Surt_2208'),
('country_Libyan_Arab_Jamahiriya_121',
'state___abr__tah___urm__n_2209'),
('country_Libyan_Arab_Jamahiriya_121',
'state___ar__bulus_2210'),
('country_Libyan_Arab_Jamahiriya_121',
'state_Tarh__nah_Masall__tah_2211'),
('country_Libyan_Arab_Jamahiriya_121',
'state_T__j__r___wa_an_Naw________al_Arb_____2212'),
('country_Libyan_Arab_Jamahiriya_121',
'state_Al_W_____ah_2213'),
('country_Libyan_Arab_Jamahiriya_121',
'state_W__d___al____ay__t_2214'),
('country_Libyan_Arab_Jamahiriya_121',
'state_Yafran_J__d___2215'),
('country_Libyan_Arab_Jamahiriya_121',
'state_Az_Z__wiyah_2216'),
('country_Liechtenstein_122', 'state_Balzers_2217'),
('country_Liechtenstein_122', 'state_Eschen_2218'),
('country_Liechtenstein_122', 'state_Gamprin_2219'),
('country_Liechtenstein_122', 'state_Mauren_2220'),
('country_Liechtenstein_122', 'state_Planken_2221'),
('country_Liechtenstein_122', 'state_Ruggell_2222'),
('country_Liechtenstein_122', 'state_Schaan_2223'),
('country_Liechtenstein_122',
'state_Schellenberg_2224'),
('country_Liechtenstein_122', 'state_Triesen_2225'),
('country_Liechtenstein_122',
'state_Triesenberg_2226'),
('country_Liechtenstein_122', 'state_Vaduz_2227'),
('country_Lithuania_123',
'state_Alytaus_Apskritis_2228'),
('country_Lithuania_123',
'state_Klaip__dos_Apskritis_2229'),
('country_Lithuania_123',
'state_Kauno_Apskritis_2230'),
('country_Lithuania_123',
'state_Marijampol__s_Apskritis_2231'),
('country_Lithuania_123',
'state_Panev____io_Apskritis_2232'),
('country_Lithuania_123',
'state___iauli___Apskritis_2233'),
('country_Lithuania_123',
'state_Taurag__s_Apskritis_2234'),
('country_Lithuania_123',
'state_Tel__i___Apskritis_2235'),
('country_Lithuania_123',
'state_Utenos_Apskritis_2236'),
('country_Lithuania_123',
'state_Vilniaus_Apskritis_2237'),
('country_Luxembourg_124', 'state_Diekirch_2238'),
('country_Luxembourg_124', 'state_Grevenmacher_2239'),
('country_Luxembourg_124', 'state_Luxemburg_2240'),
('country_Macau_125', 'state___________2241'),
('country_Macau_125', 'state___________2242'),
('country_Macedonia_126', 'state_Berovo_2243'),
('country_Macedonia_126',
'state___________________________________2244'),
('country_Macedonia_126',
'state________________2245'),
('country_Macedonia_126',
'state__________________2246'),
('country_Macedonia_126',
'state______________2247')";
		$this->db->setQuery($query);
		$this->db->query();
		$query="INSERT IGNORE INTO `#__hikashop_zone_link`
(`zone_parent_namekey`, `zone_child_namekey`) VALUES
('country_Macedonia_126', 'state______________2248'),
('country_Macedonia_126',
'state_______________________________________2249'),
('country_Macedonia_126',
'state________________2250'),
('country_Macedonia_126',
'state____________________2251'),
('country_Macedonia_126', 'state__________2252'),
('country_Macedonia_126',
'state_________________________2253'),
('country_Macedonia_126', 'state______________2254'),
('country_Macedonia_126',
'state________________2255'),
('country_Macedonia_126',
'state________________2256'),
('country_Macedonia_126',
'state___________________________2257'),
('country_Macedonia_126',
'state__________________2258'),
('country_Macedonia_126',
'state________________2259'),
('country_Macedonia_126',
'state__________________2260'),
('country_Macedonia_126',
'state_________________________________2261'),
('country_Macedonia_126', 'state______________2262'),
('country_Macedonia_126',
'state_______________________2263'),
('country_Macedonia_126',
'state________________2264'),
('country_Macedonia_126',
'state__________________________2265'),
('country_Macedonia_126',
'state________________2266'),
('country_Macedonia_126', 'state______________2267'),
('country_Macedonia_126', 'state______________2268'),
('country_Macedonia_126', 'state______________2269'),
('country_Macedonia_126', 'state____________2270'),
('country_Macedonia_126',
'state__________________2271'),
('country_Macedonia_126',
'state__________________2272'),
('country_Macedonia_126',
'state__________________2273'),
('country_Macedonia_126',
'state____________________2274'),
('country_Macedonia_126',
'state__________________________________2275'),
('country_Macedonia_126', 'state______________2276'),
('country_Macedonia_126', 'state______________2277'),
('country_Macedonia_126',
'state____________________2278'),
('country_Macedonia_126', 'state______________2279'),
('country_Macedonia_126',
'state__________________2280'),
('country_Macedonia_126',
'state____________________2281'),
('country_Macedonia_126', 'state____________2282'),
('country_Macedonia_126', 'state__________2283'),
('country_Macedonia_126', 'state______________2284'),
('country_Macedonia_126',
'state___________________________2285'),
('country_Macedonia_126',
'state___________________2286'),
('country_Macedonia_126',
'state_________________________2287'),
('country_Macedonia_126',
'state________________2288'),
('country_Macedonia_126', 'state______________2289'),
('country_Macedonia_126',
'state_______________________2290'),
('country_Macedonia_126',
'state__________________2291'),
('country_Macedonia_126', 'state____________2292'),
('country_Macedonia_126',
'state________________2293'),
('country_Macedonia_126',
'state________________________2294'),
('country_Macedonia_126',
'state_________________________2295'),
('country_Macedonia_126',
'state______________________2296'),
('country_Macedonia_126',
'state__________________2297'),
('country_Macedonia_126',
'state__________________2298'),
('country_Macedonia_126',
'state____________________2299'),
('country_Macedonia_126', 'state____________2300'),
('country_Macedonia_126',
'state___________________2301'),
('country_Macedonia_126',
'state________________2302'),
('country_Macedonia_126',
'state_______________________2303'),
('country_Macedonia_126',
'state__________________2304'),
('country_Macedonia_126',
'state____________________2305'),
('country_Macedonia_126',
'state__________________2306'),
('country_Macedonia_126',
'state_______________________2307'),
('country_Macedonia_126', 'state____________2308'),
('country_Macedonia_126',
'state________________2309'),
('country_Macedonia_126',
'state________________2310'),
('country_Macedonia_126', 'state______________2311'),
('country_Macedonia_126',
'state_______________________________2312'),
('country_Macedonia_126', 'state____________2313'),
('country_Macedonia_126',
'state________________2314'),
('country_Macedonia_126',
'state__________________2315'),
('country_Macedonia_126', 'state______________2316'),
('country_Macedonia_126',
'state________________2317'),
('country_Macedonia_126',
'state______________________2318'),
('country_Macedonia_126', 'state____________2319'),
('country_Macedonia_126', 'state____________2320'),
('country_Macedonia_126',
'state_________________________2321'),
('country_Macedonia_126',
'state________________2322'),
('country_Macedonia_126',
'state____________________2323'),
('country_Macedonia_126',
'state__________________2324'),
('country_Macedonia_126',
'state________________2325'),
('country_Macedonia_126', 'state____________2326'),
('country_Madagascar_127', 'state_Toamasina_2327'),
('country_Madagascar_127', 'state_Antsiranana_2328'),
('country_Madagascar_127', 'state_Fianarantsoa_2329'),
('country_Madagascar_127', 'state_Mahajanga_2330'),
('country_Madagascar_127', 'state_Antananarivo_2331'),
('country_Madagascar_127', 'state_Toliara_2332'),
('country_Malawi_128', 'state_Balaka_2333'),
('country_Malawi_128', 'state_Blantyre_2334'),
('country_Malawi_128', 'state_Chikwawa_2336'),
('country_Malawi_128', 'state_Chiradzulu_2337'),
('country_Malawi_128', 'state_Chitipa_2338'),
('country_Malawi_128', 'state_Dedza_2339'),
('country_Malawi_128', 'state_Dowa_2340'),
('country_Malawi_128', 'state_Karonga_2341'),
('country_Malawi_128', 'state_Kasungu_2342'),
('country_Malawi_128', 'state_Likoma_Island_2343'),
('country_Malawi_128', 'state_Lilongwe_2344'),
('country_Malawi_128', 'state_Machinga_2345'),
('country_Malawi_128', 'state_Mangochi_2346'),
('country_Malawi_128', 'state_Mchinji_2347'),
('country_Malawi_128', 'state_Mulanje_2348'),
('country_Malawi_128', 'state_Mwanza_2349'),
('country_Malawi_128', 'state_Mzimba_2350'),
('country_Malawi_128', 'state_Northern_2351'),
('country_Malawi_128', 'state_Nkhata_2352'),
('country_Malawi_128', 'state_Nkhotakota_2353'),
('country_Malawi_128', 'state_Nsanje_2354'),
('country_Malawi_128', 'state_Ntcheu_2355'),
('country_Malawi_128', 'state_Ntchisi_2356'),
('country_Malawi_128', 'state_Phalombe_2357'),
('country_Malawi_128', 'state_Rumphi_2358'),
('country_Malawi_128', 'state_Southern_2359'),
('country_Malawi_128', 'state_Salima_2360'),
('country_Malawi_128', 'state_Thyolo_2361'),
('country_Malawi_128', 'state_Zomba_2362'),
('country_Malaysia_129',
'state_Johor_Darul_Takzim_2363'),
('country_Malaysia_129',
'state_Kedah_Darul_Aman_2364'),
('country_Malaysia_129',
'state_Kelantan_Darul_Naim_2365'),
('country_Malaysia_129',
'state_Melaka_Negeri_Bersejarah_2366'),
('country_Malaysia_129',
'state_Negeri_Sembilan_Darul_Khusus_2367'),
('country_Malaysia_129',
'state_Pahang_Darul_Makmur_2368'),
('country_Malaysia_129', 'state_Pulau_Pinang_2369'),
('country_Malaysia_129',
'state_Perak_Darul_Ridzuan_2370'),
('country_Malaysia_129',
'state_Perlis_Indera_Kayangan_2371'),
('country_Malaysia_129',
'state_Selangor_Darul_Ehsan_2372'),
('country_Malaysia_129',
'state_Terengganu_Darul_Iman_2373'),
('country_Malaysia_129',
'state_Sabah_Negeri_Di_Bawah_Bayu_2374'),
('country_Malaysia_129',
'state_Sarawak_Bumi_Kenyalang_2375'),
('country_Malaysia_129',
'state_Wilayah_Persekutuan_Kuala_Lumpur_2376'),
('country_Malaysia_129',
'state_Wilayah_Persekutuan_Labuan_2377'),
('country_Malaysia_129',
'state_Wilayah_Persekutuan_Putrajaya_2378'),
('country_Maldives_130',
'state_Thiladhunmathi_Uthuru_2379'),
('country_Maldives_130',
'state_Thiladhunmathi_Dhekunu_2380'),
('country_Maldives_130',
'state_Miladhunmadulu_Uthuru_2381'),
('country_Maldives_130',
'state_Miladhunmadulu_Dhekunu_2382'),
('country_Maldives_130',
'state_Maalhosmadulu_Uthuru_2383'),
('country_Maldives_130',
'state_Maalhosmadulu_Dhekunu_2384'),
('country_Maldives_130', 'state_Faadhippolhu_2385'),
('country_Maldives_130', 'state_Male_Atoll_2386'),
('country_Maldives_130',
'state_Ari_Atoll_Uthuru_2387'),
('country_Maldives_130',
'state_Ari_Atoll_Dheknu_2388'),
('country_Maldives_130', 'state_Felidhe_Atoll_2389'),
('country_Maldives_130', 'state_Mulaku_Atoll_2390'),
('country_Maldives_130',
'state_Nilandhe_Atoll_Uthuru_2391'),
('country_Maldives_130',
'state_Nilandhe_Atoll_Dhekunu_2392'),
('country_Maldives_130', 'state_Kolhumadulu_2393'),
('country_Maldives_130', 'state_Hadhdhunmathi_2394'),
('country_Maldives_130',
'state_Huvadhu_Atoll_Uthuru_2395'),
('country_Maldives_130',
'state_Huvadhu_Atoll_Dhekunu_2396'),
('country_Maldives_130', 'state_Fua_Mulaku_2397'),
('country_Maldives_130', 'state_Addu_2398'),
('country_Mali_131', 'state_Kayes_2399'),
('country_Mali_131', 'state_Koulikoro_2400'),
('country_Mali_131', 'state_Sikasso_2401'),
('country_Mali_131', 'state_S__gou_2402'),
('country_Mali_131', 'state_Mopti_2403'),
('country_Mali_131', 'state_Tombouctou_2404'),
('country_Mali_131', 'state_Gao_2405'),
('country_Mali_131', 'state_Kidal_2406'),
('country_Mali_131', 'state_Bamako_2407'),
('country_Malta_132', 'state_malta_2408'),
('country_Malta_132', 'state_gozo_2409'),
('country_Marshall_Islands_133', 'state_Ailuk_2476'),
('country_Marshall_Islands_133',
'state_Ailinglapalap_2477'),
('country_Marshall_Islands_133', 'state_Arno_2478'),
('country_Marshall_Islands_133', 'state_Aur_2479'),
('country_Marshall_Islands_133', 'state_Ebon_2480'),
('country_Marshall_Islands_133',
'state_Eniwetok_2481'),
('country_Marshall_Islands_133', 'state_Jabat_2482'),
('country_Marshall_Islands_133', 'state_Jaluit_2483'),
('country_Marshall_Islands_133', 'state_Kili_2484'),
('country_Marshall_Islands_133',
'state_Kwajalein_2485'),
('country_Marshall_Islands_133', 'state_Lae_2486'),
('country_Marshall_Islands_133', 'state_Lib_2487'),
('country_Marshall_Islands_133', 'state_Likiep_2488'),
('country_Marshall_Islands_133', 'state_Majuro_2489'),
('country_Marshall_Islands_133',
'state_Maloelap_2490'),
('country_Marshall_Islands_133', 'state_Mejit_2491'),
('country_Marshall_Islands_133', 'state_Mili_2492'),
('country_Marshall_Islands_133',
'state_Namorik_2493'),
('country_Marshall_Islands_133', 'state_Namu_2494'),
('country_Marshall_Islands_133',
'state_Rongelap_2495'),
('country_Marshall_Islands_133', 'state_Ujae_2496'),
('country_Marshall_Islands_133',
'state_Ujelang_2497'),
('country_Marshall_Islands_133', 'state_Utirik_2498'),
('country_Marshall_Islands_133', 'state_Wotje_2499'),
('country_Marshall_Islands_133', 'state_Wotho_2500'),
('country_Mauritania_135',
'state____________________________________2501'),
('country_Mauritania_135',
'state____________________________________2502'),
('country_Mauritania_135',
'state___________________________2503'),
('country_Mauritania_135',
'state_______________________2504'),
('country_Mauritania_135',
'state_____________________________2505'),
('country_Mauritania_135',
'state_____________________________2506'),
('country_Mauritania_135',
'state_______________________2507'),
('country_Mauritania_135',
'state______________________________________2508'),
('country_Mauritania_135',
'state_______________________2509'),
('country_Mauritania_135',
'state______________________________2510'),
('country_Mauritania_135',
'state______________________________2511'),
('country_Mauritania_135',
'state___________________________2512'),
('country_Mauritania_135',
'state________________2513'),
('country_Mauritius_136',
'state_Agalega_Islands_2514'),
('country_Mauritius_136', 'state_Black_River_2515'),
('country_Mauritius_136',
'state_Beau_Bassin_Rose_Hill_2516'),
('country_Mauritius_136',
'state_Cargados_Carajos_Shoals_2517'),
('country_Mauritius_136', 'state_Curepipe_2518'),
('country_Mauritius_136', 'state_Flacq_2519'),
('country_Mauritius_136', 'state_Grand_Port_2520'),
('country_Mauritius_136', 'state_Moka_2521'),
('country_Mauritius_136', 'state_Pamplemousses_2522'),
('country_Mauritius_136', 'state_Port_Louis_2523'),
('country_Mauritius_136',
'state_Port_Louis_City_2524'),
('country_Mauritius_136',
'state_Plaines_Wilhems_2525'),
('country_Mauritius_136', 'state_Quatre_Bornes_2526'),
('country_Mauritius_136', 'state_Rodrigues_2527'),
('country_Mauritius_136',
'state_Riviere_du_Rempart_2528'),
('country_Mauritius_136', 'state_Savanne_2529'),
('country_Mauritius_136',
'state_Vacoas_Phoenix_2530'),
('country_Mexico_138', 'state_Aguascalientes_2531'),
('country_Mexico_138', 'state_Baja_California_2532'),
('country_Mexico_138',
'state_Baja_California_Sur_2533'),
('country_Mexico_138', 'state_Campeche_2534'),
('country_Mexico_138', 'state_Chihuahua_2535'),
('country_Mexico_138', 'state_Chiapas_2536'),
('country_Mexico_138', 'state_Coahuila_2537'),
('country_Mexico_138', 'state_Colima_2538'),
('country_Mexico_138', 'state_Distrito_Federal_2539'),
('country_Mexico_138', 'state_Durango_2540'),
('country_Mexico_138', 'state_Guerrero_2541'),
('country_Mexico_138', 'state_Guanajuato_2542'),
('country_Mexico_138', 'state_Hidalgo_2543'),
('country_Mexico_138', 'state_Jalisco_2544'),
('country_Mexico_138', 'state_Mexico_2545'),
('country_Mexico_138', 'state_Michoac__n_2546'),
('country_Mexico_138', 'state_Morelos_2547'),
('country_Mexico_138', 'state_Nayarit_2548'),
('country_Mexico_138', 'state_Nuevo_Le__n_2549'),
('country_Mexico_138', 'state_Oaxaca_2550'),
('country_Mexico_138', 'state_Puebla_2551'),
('country_Mexico_138', 'state_Quer__taro_2552'),
('country_Mexico_138', 'state_Quintana_Roo_2553'),
('country_Mexico_138', 'state_Sinaloa_2554'),
('country_Mexico_138', 'state_San_Luis_Potos___2555'),
('country_Mexico_138', 'state_Sonora_2556'),
('country_Mexico_138', 'state_Tabasco_2557'),
('country_Mexico_138', 'state_Tamaulipas_2558'),
('country_Mexico_138', 'state_Tlaxcala_2559'),
('country_Mexico_138', 'state_Veracruz_2560'),
('country_Mexico_138', 'state_Yucatan_2561'),
('country_Mexico_138', 'state_Zacatecas_2562'),
('country_Micronesia_139', 'state_Kosrae_2563'),
('country_Micronesia_139', 'state_Pohnpei_2564'),
('country_Micronesia_139', 'state_Chuuk_2565'),
('country_Micronesia_139', 'state_Yap_2566'),
('country_Moldova_140', 'state_B__l__i_2567'),
('country_Moldova_140', 'state_Cahul_2568'),
('country_Moldova_140', 'state_Chi__in__u_2569'),
('country_Moldova_140', 'state_Edine___2570'),
('country_Moldova_140', 'state_G__g__uzia_2571'),
('country_Moldova_140', 'state_L__pu__na_2572'),
('country_Moldova_140', 'state_Orhei_2573'),
('country_Moldova_140',
'state_St__nga_Nistrului_2574'),
('country_Moldova_140', 'state_Soroca_2575'),
('country_Moldova_140', 'state_Tighina_2576'),
('country_Moldova_140', 'state_Ungheni_2577'),
('country_Monaco_141', 'state_Monte_Carlo_2578'),
('country_Monaco_141', 'state_La_Rousse_2579'),
('country_Monaco_141', 'state_Larvotto_2580'),
('country_Monaco_141', 'state_Monaco_Ville_2581'),
('country_Monaco_141', 'state_Saint_Michel_2582'),
('country_Monaco_141', 'state_Condamine_2583'),
('country_Monaco_141', 'state_La_Colle_2584'),
('country_Monaco_141', 'state_Les_R__voires_2585'),
('country_Monaco_141', 'state_Moneghetti_2586'),
('country_Monaco_141', 'state_Fontvieille_2587'),
('country_Mongolia_142',
'state________________________2588'),
('country_Mongolia_142',
'state_______________________2589'),
('country_Mongolia_142',
'state________________________________2590'),
('country_Mongolia_142',
'state_________________________2591'),
('country_Mongolia_142',
'state___________________________2592'),
('country_Mongolia_142',
'state_____________________2593'),
('country_Mongolia_142',
'state___________________2594'),
('country_Mongolia_142',
'state___________________2595'),
('country_Mongolia_142',
'state___________________________2596'),
('country_Mongolia_142',
'state_______________________________2597'),
('country_Mongolia_142',
'state_____________________________2598'),
('country_Mongolia_142',
'state_________________________________2599'),
('country_Mongolia_142',
'state_________________________2600'),
('country_Mongolia_142',
'state_____________________________2601'),
('country_Mongolia_142',
'state_________________________2602'),
('country_Mongolia_142',
'state_______________________________2603'),
('country_Mongolia_142',
'state_________________________________2604'),
('country_Mongolia_142',
'state________________________________2605'),
('country_Mongolia_142',
'state_________________________2606'),
('country_Mongolia_142',
'state_________________________________2607'),
('country_Mongolia_142',
'state________________________________2608'),
('country_Mongolia_142',
'state_____________________________2609'),
('country_Montserrat_143',
'state_Saint_Anthony_2610'),
('country_Montserrat_143',
'state_Saint_Georges_2611'),
('country_Montserrat_143', 'state_Saint_Peter_2612'),
('country_Mozambique_145', 'state_Niassa_2613'),
('country_Mozambique_145', 'state_Manica_2614'),
('country_Mozambique_145', 'state_Gaza_2615'),
('country_Mozambique_145', 'state_Inhambane_2616'),
('country_Mozambique_145', 'state_Maputo_2617'),
('country_Mozambique_145',
'state_Maputo_cidade_2618'),
('country_Mozambique_145', 'state_Nampula_2619'),
('country_Mozambique_145', 'state_Cabo_Delgado_2620'),
('country_Mozambique_145', 'state_Zamb__zia_2621'),
('country_Mozambique_145', 'state_Sofala_2622'),
('country_Mozambique_145', 'state_Tete_2623'),
('country_Myanmar_146',
'state_________________________________________2624'),
('country_Myanmar_146',
'state______________________________________2625'),
('country_Myanmar_146',
'state_________________________________________2626'),
('country_Myanmar_146',
'state____________________________________________2627'),
('country_Myanmar_146',
'state___________________________________________________________2628'),
('country_Myanmar_146',
'state_______________________________________________2629'),
('country_Myanmar_146',
'state__________________________________________________2630'),
('country_Myanmar_146',
'state_____________________________________________________2631'),
('country_Myanmar_146',
'state_____________________________________________________2632'),
('country_Myanmar_146',
'state_______________________________________________2633'),
('country_Myanmar_146',
'state__________________________________________________2634'),
('country_Myanmar_146',
'state__________________________________________________2635'),
('country_Myanmar_146',
'state_____________________________________________________2636'),
('country_Myanmar_146',
'state__________________________________________________2637'),
('country_Namibia_147', 'state_Caprivi_2638'),
('country_Namibia_147', 'state_Erongo_2639'),
('country_Namibia_147', 'state_Hardap_2640'),
('country_Namibia_147', 'state_Karas_2641'),
('country_Namibia_147', 'state_Khomas_2642'),
('country_Namibia_147', 'state_Kunene_2643'),
('country_Namibia_147', 'state_Otjozondjupa_2644'),
('country_Namibia_147', 'state_Omaheke_2645'),
('country_Namibia_147', 'state_Okavango_2646'),
('country_Namibia_147', 'state_Oshana_2647'),
('country_Namibia_147', 'state_Omusati_2648'),
('country_Namibia_147', 'state_Oshikoto_2649'),
('country_Namibia_147', 'state_Ohangwena_2650'),
('country_Nauru_148', 'state_Aiwo_2651'),
('country_Nauru_148', 'state_Anabar_2652'),
('country_Nauru_148', 'state_Anetan_2653'),
('country_Nauru_148', 'state_Anibare_2654'),
('country_Nauru_148', 'state_Baiti_2655'),
('country_Nauru_148', 'state_Boe_2656'),
('country_Nauru_148', 'state_Buada_2657'),
('country_Nauru_148', 'state_Denigomodu_2658'),
('country_Nauru_148', 'state_Ewa_2659'),
('country_Nauru_148', 'state_Ijuw_2660'),
('country_Nauru_148', 'state_Meneng_2661'),
('country_Nauru_148', 'state_Nibok_2662'),
('country_Nauru_148', 'state_Uaboe_2663'),
('country_Nauru_148', 'state_Yaren_2664'),
('country_Nepal_149', 'state_Bagmati_2665'),
('country_Nepal_149', 'state_Bheri_2666'),
('country_Nepal_149', 'state_Dhawalagiri_2667'),
('country_Nepal_149', 'state_Gandaki_2668'),
('country_Nepal_149', 'state_Janakpur_2669'),
('country_Nepal_149', 'state_Karnali_2670'),
('country_Nepal_149', 'state_Kosi_2671'),
('country_Nepal_149', 'state_Lumbini_2672'),
('country_Nepal_149', 'state_Mahakali_2673'),
('country_Nepal_149', 'state_Mechi_2674'),
('country_Nepal_149', 'state_Narayani_2675'),
('country_Nepal_149', 'state_Rapti_2676'),
('country_Nepal_149', 'state_Sagarmatha_2677'),
('country_Nepal_149', 'state_Seti_2678'),
('country_Netherlands_150', 'state_Drenthe_2679'),
('country_Netherlands_150', 'state_Flevoland_2680'),
('country_Netherlands_150', 'state_Friesland_2681'),
('country_Netherlands_150', 'state_Gelderland_2682'),
('country_Netherlands_150', 'state_Groningen_2683'),
('country_Netherlands_150', 'state_Limburg_2684'),
('country_Netherlands_150',
'state_Noord_Brabant_2685'),
('country_Netherlands_150',
'state_Noord_Holland_2686'),
('country_Netherlands_150', 'state_Overijssel_2687'),
('country_Netherlands_150', 'state_Utrecht_2688'),
('country_Netherlands_150', 'state_Zeeland_2689'),
('country_Netherlands_150',
'state_Zuid_Holland_2690'),
('country_New_Caledonia_152',
'state_Province_des___les_2691'),
('country_New_Caledonia_152',
'state_Province_Nord_2692'),
('country_New_Caledonia_152',
'state_Province_Sud_2693'),
('country_New_Zealand_153', 'state_Auckland_2694'),
('country_New_Zealand_153',
'state_Bay_of_Plenty_2695'),
('country_New_Zealand_153', 'state_Canterbury_2696'),
('country_New_Zealand_153', 'state_Gisborne_2697'),
('country_New_Zealand_153', 'state_Hawke_s_Bay_2698'),
('country_New_Zealand_153', 'state_Marlborough_2699'),
('country_New_Zealand_153',
'state_Manawatu_Wanganui_2700'),
('country_New_Zealand_153', 'state_Nelson_2701'),
('country_New_Zealand_153', 'state_Northland_2702'),
('country_New_Zealand_153', 'state_Otago_2703'),
('country_New_Zealand_153', 'state_Southland_2704'),
('country_New_Zealand_153', 'state_Tasman_2705'),
('country_New_Zealand_153', 'state_Taranaki_2706'),
('country_New_Zealand_153', 'state_Wellington_2707'),
('country_New_Zealand_153', 'state_Waikato_2708'),
('country_New_Zealand_153', 'state_West_Coast_2709'),
('country_Nicaragua_154',
'state_Atl__ntico_Norte_2710'),
('country_Nicaragua_154',
'state_Atl__ntico_Sur_2711'),
('country_Nicaragua_154', 'state_Boaco_2712'),
('country_Nicaragua_154', 'state_Carazo_2713'),
('country_Nicaragua_154', 'state_Chinandega_2714'),
('country_Nicaragua_154', 'state_Chontales_2715'),
('country_Nicaragua_154', 'state_Estel___2716'),
('country_Nicaragua_154', 'state_Granada_2717'),
('country_Nicaragua_154', 'state_Jinotega_2718'),
('country_Nicaragua_154', 'state_Le__n_2719'),
('country_Nicaragua_154', 'state_Madriz_2720'),
('country_Nicaragua_154', 'state_Managua_2721'),
('country_Nicaragua_154', 'state_Masaya_2722'),
('country_Nicaragua_154', 'state_Matagalpa_2723'),
('country_Nicaragua_154', 'state_Nueva_Segovia_2724'),
('country_Nicaragua_154', 'state_Rivas_2725'),
('country_Nicaragua_154', 'state_R__o_San_Juan_2726'),
('country_Niger_155', 'state_Agadez_2727'),
('country_Niger_155', 'state_Daffa_2728'),
('country_Niger_155', 'state_Dosso_2729'),
('country_Niger_155', 'state_Maradi_2730'),
('country_Niger_155', 'state_Tahoua_2731'),
('country_Niger_155', 'state_Tillab__ry_2732'),
('country_Niger_155', 'state_Zinder_2733'),
('country_Niger_155', 'state_Niamey_2734'),
('country_Nigeria_156', 'state_Abia_State_2735'),
('country_Nigeria_156', 'state_Adamawa_State_2736'),
('country_Nigeria_156', 'state_Akwa_Ibom_State_2737'),
('country_Nigeria_156', 'state_Anambra_State_2738'),
('country_Nigeria_156', 'state_Bauchi_State_2739'),
('country_Nigeria_156', 'state_Benue_State_2740'),
('country_Nigeria_156', 'state_Borno_State_2741'),
('country_Nigeria_156', 'state_Bayelsa_State_2742'),
('country_Nigeria_156',
'state_Cross_River_State_2743'),
('country_Nigeria_156', 'state_Delta_State_2744'),
('country_Nigeria_156', 'state_Ebonyi_State_2745'),
('country_Nigeria_156', 'state_Edo_State_2746'),
('country_Nigeria_156', 'state_Ekiti_State_2747'),
('country_Nigeria_156',
'state_Enugu_State_2748')";
		$this->db->setQuery($query);
		$this->db->query();
		$query="INSERT IGNORE INTO `#__hikashop_zone_link`
(`zone_parent_namekey`, `zone_child_namekey`) VALUES
('country_Nigeria_156', 'state_Gombe_State_2749'),
('country_Nigeria_156', 'state_Imo_State_2750'),
('country_Nigeria_156', 'state_Jigawa_State_2751'),
('country_Nigeria_156', 'state_Kebbi_State_2752'),
('country_Nigeria_156', 'state_Kaduna_State_2753'),
('country_Nigeria_156', 'state_Kano_State_2754'),
('country_Nigeria_156', 'state_Kogi_State_2755'),
('country_Nigeria_156', 'state_Katsina_State_2756'),
('country_Nigeria_156', 'state_Kwara_State_2757'),
('country_Nigeria_156', 'state_Lagos_State_2758'),
('country_Nigeria_156', 'state_Nassarawa_State_2759'),
('country_Nigeria_156', 'state_Niger_State_2760'),
('country_Nigeria_156', 'state_Ogun_State_2761'),
('country_Nigeria_156', 'state_Ondo_State_2762'),
('country_Nigeria_156', 'state_Osun_State_2763'),
('country_Nigeria_156', 'state_Oyo_State_2764'),
('country_Nigeria_156', 'state_Plateau_State_2765'),
('country_Nigeria_156', 'state_Rivers_State_2766'),
('country_Nigeria_156', 'state_Sokoto_State_2767'),
('country_Nigeria_156', 'state_Taraba_State_2768'),
('country_Nigeria_156', 'state_Zamfara_State_2769'),
('country_Northern_Mariana_Islands_159',
'state_Northern_Islands_2770'),
('country_Northern_Mariana_Islands_159',
'state_Rota_2771'),
('country_Northern_Mariana_Islands_159',
'state_Saipan_2772'),
('country_Northern_Mariana_Islands_159',
'state_Tinian_2773'),
('country_Norway_160', 'state___stfold_fylke_2774'),
('country_Norway_160', 'state_Akershus_fylke_2775'),
('country_Norway_160', 'state_Oslo_fylke_2776'),
('country_Norway_160', 'state_Hedmark_fylke_2777'),
('country_Norway_160', 'state_Oppland_fylke_2778'),
('country_Norway_160', 'state_Buskerud_fylke_2779'),
('country_Norway_160', 'state_Vestfold_fylke_2780'),
('country_Norway_160', 'state_Telemark_fylke_2781'),
('country_Norway_160', 'state_Aust_Agder_fylke_2782'),
('country_Norway_160', 'state_Vest_Agder_fylke_2783'),
('country_Norway_160', 'state_Rogaland_fylke_2784'),
('country_Norway_160', 'state_Hordaland_fylke_2785'),
('country_Norway_160',
'state_Sogn_og_Fjordane_fylke_2786'),
('country_Norway_160',
'state_M__re_og_Romsdal_fylke_2787'),
('country_Norway_160',
'state_S__r_Tr__ndelag_fylke_2788'),
('country_Norway_160',
'state_Nord_Tr__ndelag_fylke_2789'),
('country_Norway_160', 'state_Nordland_fylke_2790'),
('country_Norway_160', 'state_Troms_fylke_2791'),
('country_Norway_160', 'state_Finnmark_fylke_2792'),
('country_Oman_161', 'state________________2793'),
('country_Oman_161', 'state__________________2794'),
('country_Oman_161', 'state__________2795'),
('country_Oman_161', 'state__________2796'),
('country_Oman_161', 'state____________2797'),
('country_Oman_161', 'state________________2798'),
('country_Oman_161', 'state______________2799'),
('country_Oman_161', 'state________________2800'),
('country_Pakistan_162',
'state__________________2801'),
('country_Pakistan_162',
'state_________________________________2802'),
('country_Pakistan_162',
'state_____________________2803'),
('country_Pakistan_162',
'state______________________________2804'),
('country_Pakistan_162',
'state_________________________________________2805'),
('country_Pakistan_162', 'state____________2806'),
('country_Pakistan_162', 'state__________2807'),
('country_Pakistan_162',
'state___________________________________________2808'),
('country_Palau_163', 'state_Aimeliik_2809'),
('country_Palau_163', 'state_Airai_2810'),
('country_Palau_163', 'state_Angaur_2811'),
('country_Palau_163', 'state_Hatohobei_2812'),
('country_Palau_163', 'state_Kayangel_2813'),
('country_Palau_163', 'state_Koror_2814'),
('country_Palau_163', 'state_Melekeok_2815'),
('country_Palau_163', 'state_Ngaraard_2816'),
('country_Palau_163', 'state_Ngarchelong_2817'),
('country_Palau_163', 'state_Ngardmau_2818'),
('country_Palau_163', 'state_Ngatpang_2819'),
('country_Palau_163', 'state_Ngchesar_2820'),
('country_Palau_163', 'state_Ngeremlengui_2821'),
('country_Palau_163', 'state_Ngiwal_2822'),
('country_Palau_163', 'state_Peleliu_2823'),
('country_Palau_163', 'state_Sonsorol_2824'),
('country_Panama_164', 'state_Bocas_del_Toro_2825'),
('country_Panama_164', 'state_Cocl___2826'),
('country_Panama_164', 'state_Col__n_2827'),
('country_Panama_164', 'state_Chiriqu___2828'),
('country_Panama_164', 'state_Dari__n_2829'),
('country_Panama_164', 'state_Herrera_2830'),
('country_Panama_164', 'state_Los_Santos_2831'),
('country_Panama_164', 'state_Panam___2832'),
('country_Panama_164', 'state_Veraguas_2833'),
('country_Panama_164', 'state_Kuna_Yala_2834'),
('country_Papua_New_Guinea_165', 'state_Chimbu_2835'),
('country_Papua_New_Guinea_165',
'state_Central_2836'),
('country_Papua_New_Guinea_165',
'state_East_New_Britain_2837'),
('country_Papua_New_Guinea_165',
'state_Eastern_Highlands_2838'),
('country_Papua_New_Guinea_165', 'state_Enga_2839'),
('country_Papua_New_Guinea_165',
'state_East_Sepik_2840'),
('country_Papua_New_Guinea_165', 'state_Gulf_2841'),
('country_Papua_New_Guinea_165',
'state_Milne_Bay_2842'),
('country_Papua_New_Guinea_165', 'state_Morobe_2843'),
('country_Papua_New_Guinea_165', 'state_Madang_2844'),
('country_Papua_New_Guinea_165', 'state_Manus_2845'),
('country_Papua_New_Guinea_165',
'state_National_Capital_District_2846'),
('country_Papua_New_Guinea_165',
'state_New_Ireland_2847'),
('country_Papua_New_Guinea_165',
'state_Northern_2848'),
('country_Papua_New_Guinea_165',
'state_North_Solomons_2849'),
('country_Papua_New_Guinea_165',
'state_Sandaun_2850'),
('country_Papua_New_Guinea_165',
'state_Southern_Highlands_2851'),
('country_Papua_New_Guinea_165',
'state_West_New_Britain_2852'),
('country_Papua_New_Guinea_165',
'state_Western_Highlands_2853'),
('country_Papua_New_Guinea_165',
'state_Western_2854'),
('country_Paraguay_166', 'state_Concepci__n_2855'),
('country_Paraguay_166', 'state_San_Pedro_2856'),
('country_Paraguay_166', 'state_Cordillera_2857'),
('country_Paraguay_166', 'state_Guair___2858'),
('country_Paraguay_166', 'state_Caaguaz___2859'),
('country_Paraguay_166', 'state_Caazap___2860'),
('country_Paraguay_166', 'state_Itap__a_2861'),
('country_Paraguay_166', 'state_Misiones_2862'),
('country_Paraguay_166', 'state_Paraguar___2863'),
('country_Paraguay_166', 'state_Alto_Paran___2864'),
('country_Paraguay_166', 'state_Central_2865'),
('country_Paraguay_166', 'state___eembuc___2866'),
('country_Paraguay_166', 'state_Amambay_2867'),
('country_Paraguay_166', 'state_Canindey___2868'),
('country_Paraguay_166',
'state_Presidente_Hayes_2869'),
('country_Paraguay_166', 'state_Alto_Paraguay_2870'),
('country_Paraguay_166', 'state_Boquer__n_2871'),
('country_Paraguay_166', 'state_Asunci__n_2872'),
('country_Peru_167', 'state_Ancash_2874'),
('country_Peru_167', 'state_Apur__mac_2875'),
('country_Peru_167', 'state_Arequipa_2876'),
('country_Peru_167', 'state_Ayacucho_2877'),
('country_Peru_167', 'state_Cajamarca_2878'),
('country_Peru_167', 'state_Callao_2879'),
('country_Peru_167', 'state_Cuzco_2880'),
('country_Peru_167', 'state_Hu__nuco_2881'),
('country_Peru_167', 'state_Huancavelica_2882'),
('country_Peru_167', 'state_Ica_2883'),
('country_Peru_167', 'state_Jun__n_2884'),
('country_Peru_167', 'state_La_Libertad_2885'),
('country_Peru_167', 'state_Lambayeque_2886'),
('country_Peru_167', 'state_Lima_2887'),
('country_Peru_167', 'state_Loreto_2888'),
('country_Peru_167', 'state_Madre_de_Dios_2889'),
('country_Peru_167', 'state_Moquegua_2890'),
('country_Peru_167', 'state_Pasco_2891'),
('country_Peru_167', 'state_Piura_2892'),
('country_Peru_167', 'state_Puno_2893'),
('country_Peru_167', 'state_San_Mart__n_2894'),
('country_Peru_167', 'state_Tacna_2895'),
('country_Peru_167', 'state_Tumbes_2896'),
('country_Peru_167', 'state_Ucayali_2897'),
('country_Philippines_168', 'state_Abra_2898'),
('country_Philippines_168',
'state_Agusan_del_Norte_2899'),
('country_Philippines_168',
'state_Agusan_del_Sur_2900'),
('country_Philippines_168', 'state_Aklan_2901'),
('country_Philippines_168', 'state_Albay_2902'),
('country_Philippines_168', 'state_Antique_2903'),
('country_Philippines_168', 'state_Apayao_2904'),
('country_Philippines_168', 'state_Aurora_2905'),
('country_Philippines_168', 'state_Bataan_2906'),
('country_Philippines_168', 'state_Basilan_2907'),
('country_Philippines_168', 'state_Benguet_2908'),
('country_Philippines_168', 'state_Biliran_2909'),
('country_Philippines_168', 'state_Bohol_2910'),
('country_Philippines_168', 'state_Batangas_2911'),
('country_Philippines_168', 'state_Batanes_2912'),
('country_Philippines_168', 'state_Bukidnon_2913'),
('country_Philippines_168', 'state_Bulacan_2914'),
('country_Philippines_168', 'state_Cagayan_2915'),
('country_Philippines_168', 'state_Camiguin_2916'),
('country_Philippines_168',
'state_Camarines_Norte_2917'),
('country_Philippines_168', 'state_Capiz_2918'),
('country_Philippines_168',
'state_Camarines_Sur_2919'),
('country_Philippines_168', 'state_Catanduanes_2920'),
('country_Philippines_168', 'state_Cavite_2921'),
('country_Philippines_168', 'state_Cebu_2922'),
('country_Philippines_168',
'state_Compostela_Valley_2923'),
('country_Philippines_168',
'state_Davao_Oriental_2924'),
('country_Philippines_168',
'state_Davao_del_Sur_2925'),
('country_Philippines_168',
'state_Davao_del_Norte_2926'),
('country_Philippines_168',
'state_Eastern_Samar_2927'),
('country_Philippines_168', 'state_Guimaras_2928'),
('country_Philippines_168', 'state_Ifugao_2929'),
('country_Philippines_168', 'state_Iloilo_2930'),
('country_Philippines_168',
'state_Ilocos_Norte_2931'),
('country_Philippines_168', 'state_Ilocos_Sur_2932'),
('country_Philippines_168', 'state_Isabela_2933'),
('country_Philippines_168', 'state_Kalinga_2934'),
('country_Philippines_168', 'state_Laguna_2935'),
('country_Philippines_168',
'state_Lanao_del_Norte_2936'),
('country_Philippines_168',
'state_Lanao_del_Sur_2937'),
('country_Philippines_168', 'state_Leyte_2938'),
('country_Philippines_168', 'state_La_Union_2939'),
('country_Philippines_168', 'state_Marinduque_2940'),
('country_Philippines_168', 'state_Maguindanao_2941'),
('country_Philippines_168', 'state_Masbate_2942'),
('country_Philippines_168',
'state_Mindoro_Occidental_2943'),
('country_Philippines_168',
'state_Mindoro_Oriental_2944'),
('country_Philippines_168',
'state_Mountain_Province_2945'),
('country_Philippines_168',
'state_Misamis_Occidental_2946'),
('country_Philippines_168',
'state_Misamis_Oriental_2947'),
('country_Philippines_168', 'state_Cotabato_2948'),
('country_Philippines_168',
'state_Northern_Samar_2949'),
('country_Philippines_168',
'state_Negros_Occidental_2950'),
('country_Philippines_168',
'state_Negros_Oriental_2951'),
('country_Philippines_168', 'state_Nueva_Ecija_2952'),
('country_Philippines_168',
'state_Nueva_Vizcaya_2953'),
('country_Philippines_168', 'state_Pampanga_2954'),
('country_Philippines_168', 'state_Pangasinan_2955'),
('country_Philippines_168', 'state_Palawan_2956'),
('country_Philippines_168', 'state_Quezon_2957'),
('country_Philippines_168', 'state_Quirino_2958'),
('country_Philippines_168', 'state_Rizal_2959'),
('country_Philippines_168', 'state_Romblon_2960'),
('country_Philippines_168', 'state_Sarangani_2961'),
('country_Philippines_168',
'state_South_Cotabato_2962'),
('country_Philippines_168', 'state_Siquijor_2963'),
('country_Philippines_168',
'state_Southern_Leyte_2964'),
('country_Philippines_168', 'state_Sulu_2965'),
('country_Philippines_168', 'state_Sorsogon_2966'),
('country_Philippines_168',
'state_Sultan_Kudarat_2967'),
('country_Philippines_168',
'state_Surigao_del_Norte_2968'),
('country_Philippines_168',
'state_Surigao_del_Sur_2969'),
('country_Philippines_168', 'state_Tarlac_2970'),
('country_Philippines_168', 'state_Tawi_Tawi_2971'),
('country_Philippines_168', 'state_Samar_2972'),
('country_Philippines_168',
'state_Zamboanga_del_Norte_2973'),
('country_Philippines_168',
'state_Zamboanga_del_Sur_2974'),
('country_Philippines_168', 'state_Zambales_2975'),
('country_Philippines_168',
'state_Zamboanga_Sibugay_2976'),
('country_Poland_170', 'state_Dolno__l__skie_2977'),
('country_Poland_170',
'state_Kujawsko_Pomorskie_2978'),
('country_Poland_170', 'state_Lubelskie_2979'),
('country_Poland_170', 'state_Lubuskie_2980'),
('country_Poland_170', 'state_____dzkie_2981'),
('country_Poland_170', 'state_Ma__opolskie_2982'),
('country_Poland_170', 'state_Mazowieckie_2983'),
('country_Poland_170', 'state_Opolskie_2984'),
('country_Poland_170', 'state_Podkarpackie_2985'),
('country_Poland_170', 'state_Podlaskie_2986'),
('country_Poland_170', 'state_Pomorskie_2987'),
('country_Poland_170', 'state___l__skie_2988'),
('country_Poland_170', 'state___wi__tokrzyskie_2989'),
('country_Poland_170',
'state_Warmi__sko_Mazurskie_2990'),
('country_Poland_170', 'state_Wielkopolskie_2991'),
('country_Poland_170',
'state_Zachodniopomorskie_2992'),
('country_Portugal_171', 'state_Aveiro_2993'),
('country_Portugal_171', 'state_Beja_2994'),
('country_Portugal_171', 'state_Braga_2995'),
('country_Portugal_171', 'state_Bragan__a_2996'),
('country_Portugal_171', 'state_Castelo_Branco_2997'),
('country_Portugal_171', 'state_Coimbra_2998'),
('country_Portugal_171', 'state___vora_2999'),
('country_Portugal_171', 'state_Faro_3000'),
('country_Portugal_171', 'state_Guarda_3001'),
('country_Portugal_171', 'state_Leiria_3002'),
('country_Portugal_171', 'state_Lisboa_3003'),
('country_Portugal_171', 'state_Portalegre_3004'),
('country_Portugal_171', 'state_Porto_3005'),
('country_Portugal_171', 'state_Santar__m_3006'),
('country_Portugal_171', 'state_Set__bal_3007'),
('country_Portugal_171',
'state_Viana_do_Castelo_3008'),
('country_Portugal_171', 'state_Vila_Real_3009'),
('country_Portugal_171', 'state_Viseu_3010'),
('country_Portugal_171',
'state_Regi__o_Aut__noma_dos_A__ores_3011'),
('country_Portugal_171',
'state_Regi__o_Aut__noma_da_Madeira_3012'),
('country_Qatar_173', 'state______________3013'),
('country_Qatar_173', 'state__________________3014'),
('country_Qatar_173',
'state___________________________3015'),
('country_Qatar_173', 'state__________________3016'),
('country_Qatar_173', 'state____________3017'),
('country_Qatar_173', 'state______________3018'),
('country_Qatar_173', 'state______________3019'),
('country_Qatar_173', 'state______________3020'),
('country_Qatar_173', 'state_______________3021'),
('country_Qatar_173', 'state______________3022'),
('country_Romania_175', 'state_Alba_3023'),
('country_Romania_175', 'state_Arge___3024'),
('country_Romania_175', 'state_Arad_3025'),
('country_Romania_175', 'state_Bucure__ti_3026'),
('country_Romania_175', 'state_Bac__u_3027'),
('country_Romania_175', 'state_Bihor_3028'),
('country_Romania_175',
'state_Bistri__a_N__s__ud_3029'),
('country_Romania_175', 'state_Br__ila_3030'),
('country_Romania_175', 'state_Boto__ani_3031'),
('country_Romania_175', 'state_Bra__ov_3032'),
('country_Romania_175', 'state_Buz__u_3033'),
('country_Romania_175', 'state_Cluj_3034'),
('country_Romania_175', 'state_C__l__ra__i_3035'),
('country_Romania_175', 'state_Cara___Severin_3036'),
('country_Romania_175', 'state_Constan__a_3037'),
('country_Romania_175', 'state_Covasna_3038'),
('country_Romania_175', 'state_D__mbovi__a_3039'),
('country_Romania_175', 'state_Dolj_3040'),
('country_Romania_175', 'state_Gorj_3041'),
('country_Romania_175', 'state_Gala__i_3042'),
('country_Romania_175', 'state_Giurgiu_3043'),
('country_Romania_175', 'state_Hunedoara_3044'),
('country_Romania_175', 'state_Harghita_3045'),
('country_Romania_175', 'state_Ilfov_3046'),
('country_Romania_175', 'state_Ialomi__a_3047'),
('country_Romania_175', 'state_Ia__i_3048'),
('country_Romania_175', 'state_Mehedin__i_3049'),
('country_Romania_175', 'state_Maramure___3050'),
('country_Romania_175', 'state_Mure___3051'),
('country_Romania_175', 'state_Neam___3052'),
('country_Romania_175', 'state_Olt_3053'),
('country_Romania_175', 'state_Prahova_3054'),
('country_Romania_175', 'state_Sibiu_3055'),
('country_Romania_175', 'state_S__laj_3056'),
('country_Romania_175', 'state_Satu_Mare_3057'),
('country_Romania_175', 'state_Suceava_3058'),
('country_Romania_175', 'state_Tulcea_3059'),
('country_Romania_175', 'state_Timi___3060'),
('country_Romania_175', 'state_Teleorman_3061'),
('country_Romania_175', 'state_V__lcea_3062'),
('country_Romania_175', 'state_Vrancea_3063'),
('country_Romania_175', 'state_Vaslui_3064'),
('country_Russia_176',
'state_______________________________________3065'),
('country_Russia_176',
'state_____________________________________________________________________________3066'),
('country_Russia_176',
'state_____________________________________3067'),
('country_Russia_176',
'state_______________________________3068'),
('country_Russia_176',
'state_____________________________________3069'),
('country_Russia_176',
'state_______________________________________________3070'),
('country_Russia_176',
'state_____________________________________________3071'),
('country_Russia_176',
'state___________________________________________________3072'),
('country_Russia_176',
'state_____________________________________________3073'),
('country_Russia_176',
'state_____________________________________3074'),
('country_Russia_176',
'state_________________________________________3075'),
('country_Russia_176',
'state_____________________________________________3076'),
('country_Russia_176',
'state___________________________________________3077'),
('country_Russia_176',
'state_______________________________________3078'),
('country_Russia_176',
'state__________________________________________________________3079'),
('country_Russia_176',
'state_____________________________________________3080'),
('country_Russia_176',
'state___________________________________________3081'),
('country_Russia_176',
'state______________________________________________________________3082'),
('country_Russia_176',
'state_____________________________________________3083'),
('country_Russia_176',
'state_______________________________________3084'),
('country_Russia_176',
'state_________________________________________3085'),
('country_Russia_176',
'state_________________________________________3086'),
('country_Russia_176',
'state____________________________________________________________________3087'),
('country_Russia_176',
'state____________________________________________________________________3088'),
('country_Russia_176',
'state_______________________________________3089'),
('country_Russia_176',
'state___________________________________________3090'),
('country_Russia_176',
'state___________________________________________________3091'),
('country_Russia_176',
'state_________________________________________3092'),
('country_Russia_176',
'state___________________________________3093'),
('country_Russia_176',
'state______________________________________________________________________________________3094'),
('country_Russia_176',
'state_____________________________________3095'),
('country_Russia_176',
'state_______________________________________3096'),
('country_Russia_176', 'state__________________3097'),
('country_Russia_176',
'state___________________________________________3098'),
('country_Russia_176',
'state_______________________________________3099'),
('country_Russia_176',
'state___________________________________3100'),
('country_Russia_176',
'state__________________________________________________________3101'),
('country_Russia_176',
'state___________________________________________3102'),
('country_Russia_176',
'state_________________________________________3103'),
('country_Russia_176',
'state___________________________________3104'),
('country_Russia_176',
'state_______________________________________________3105'),
('country_Russia_176',
'state_____________________________________3106'),
('country_Russia_176',
'state___________________________________________3107'),
('country_Russia_176',
'state__________________________________________3108'),
('country_Russia_176',
'state___________________________________________3109'),
('country_Russia_176',
'state_________________________________________3110'),
('country_Russia_176', 'state________________3111'),
('country_Russia_176',
'state_________________________________________3112'),
('country_Russia_176',
'state________________________________________________________3113'),
('country_Russia_176',
'state_____________________________________________3114'),
('country_Russia_176',
'state_______________________________________________3115'),
('country_Russia_176',
'state_______________________________________________3116'),
('country_Russia_176',
'state_________________________________3117'),
('country_Russia_176',
'state_____________________________________________3118'),
('country_Russia_176',
'state_______________________________________3119'),
('country_Russia_176',
'state_________________________________________3120'),
('country_Russia_176',
'state_________________________________3121'),
('country_Russia_176',
'state_______________________________________3122'),
('country_Russia_176',
'state_________________________________________3123'),
('country_Russia_176',
'state_______________________________________3124'),
('country_Russia_176',
'state____________________________________________________3125'),
('country_Russia_176',
'state___________________________________________3126'),
('country_Russia_176',
'state_______________________________________3127'),
('country_Russia_176',
'state___________________________________________3128'),
('country_Russia_176',
'state___________________________________________________________________________3129'),
('country_Russia_176',
'state_________________________________________3130'),
('country_Russia_176',
'state_________________________________3131'),
('country_Russia_176',
'state_________________________________________3132'),
('country_Russia_176',
'state_____________________________________________3133'),
('country_Russia_176',
'state_____________________________________________3134'),
('country_Russia_176',
'state_________________________________________3135'),
('country_Russia_176',
'state____________________________________________________________3136'),
('country_Russia_176',
'state___________________________________3137'),
('country_Russia_176',
'state_____________________________________3138'),
('country_Russia_176',
'state_____________________________________3139'),
('country_Russia_176',
'state___________________________________3140'),
('country_Russia_176',
'state_______________________________________3141'),
('country_Russia_176',
'state_______________________________________________3142'),
('country_Russia_176',
'state___________________________________________3143'),
('country_Russia_176',
'state________________________________________________________________________________________3144'),
('country_Russia_176',
'state_______________________________________________3145'),
('country_Russia_176',
'state_____________________________________________3146'),
('country_Russia_176',
'state___________________________________________3147'),
('country_Russia_176',
'state___________________________________________3148'),
('country_Russia_176',
'state_____________________________3149'),
('country_Russia_176',
'state_____________________________________________________________________3150'),
('country_Russia_176',
'state___________________________________________3151'),
('country_Russia_176',
'state______________________________________________________________3152'),
('country_Rwanda_177', 'state_Nord_3153'),
('country_Rwanda_177', 'state_Est_3154'),
('country_Rwanda_177', 'state_Sud_3155'),
('country_Rwanda_177', 'state_Ouest_3156'),
('country_Rwanda_177', 'state_Kigali_3157'),
('country_Saint_Kitts_and_Nevis_178',
'state_Saint_Kitts_3158'),
('country_Saint_Kitts_and_Nevis_178',
'state_Nevis_3159'),
('country_Saint_Lucia_179',
'state_Anse_la_Raye_3160'),
('country_Saint_Lucia_179', 'state_Castries_3161'),
('country_Saint_Lucia_179', 'state_Choiseul_3162'),
('country_Saint_Lucia_179', 'state_Dauphin_3163'),
('country_Saint_Lucia_179', 'state_Dennery_3164'),
('country_Saint_Lucia_179', 'state_Gros_Islet_3165'),
('country_Saint_Lucia_179', 'state_Laborie_3166'),
('country_Saint_Lucia_179', 'state_Micoud_3167'),
('country_Saint_Lucia_179', 'state_Praslin_3168'),
('country_Saint_Lucia_179', 'state_Soufriere_3169'),
('country_Saint_Lucia_179', 'state_Vieux_Fort_3170'),
('country_Saint_Vincent_and_the_Grenadines_180',
'state_Charlotte_3171'),
('country_Saint_Vincent_and_the_Grenadines_180',
'state_Grenadines_3172'),
('country_Samoa_181', 'state_A_ana_3177'),
('country_Samoa_181', 'state_Aiga_i_le_Tai_3178'),
('country_Samoa_181', 'state_Atua_3179'),
('country_Samoa_181', 'state_Fa_asaleleaga_3180'),
('country_Samoa_181', 'state_Gaga_emauga_3181'),
('country_Samoa_181', 'state_Gaga_ifomauga_3182'),
('country_Samoa_181', 'state_Palauli_3183'),
('country_Samoa_181', 'state_Satupa_itea_3184'),
('country_Samoa_181', 'state_Tuamasaga_3185'),
('country_Samoa_181', 'state_Va_a_o_Fonoti_3186'),
('country_Samoa_181', 'state_Vaisigano_3187'),
('country_San_Marino_182', 'state_Acquaviva_3188'),
('country_San_Marino_182',
'state_Borgo_Maggiore_3189'),
('country_San_Marino_182', 'state_Chiesanuova_3190'),
('country_San_Marino_182', 'state_Domagnano_3191'),
('country_San_Marino_182', 'state_Faetano_3192'),
('country_San_Marino_182', 'state_Fiorentino_3193'),
('country_San_Marino_182',
'state_Montegiardino_3194'),
('country_San_Marino_182',
'state_Citta_di_San_Marino_3195'),
('country_San_Marino_182', 'state_Serravalle_3196'),
('country_Sao_Tome_and_Principe_183',
'state_Pr__ncipe_3197'),
('country_Sao_Tome_and_Principe_183',
'state_S__o_Tom___3198'),
('country_Saudi_Arabia_184',
'state______________3199'),
('country_Saudi_Arabia_184',
'state_______________________3200'),
('country_Saudi_Arabia_184',
'state________________3201'),
('country_Saudi_Arabia_184',
'state________________3202'),
('country_Saudi_Arabia_184',
'state______________3203'),
('country_Saudi_Arabia_184', 'state__________3204'),
('country_Saudi_Arabia_184', 'state__________3205'),
('country_Saudi_Arabia_184',
'state_______________________________3206'),
('country_Saudi_Arabia_184', 'state____________3207'),
('country_Saudi_Arabia_184', 'state____________3208'),
('country_Saudi_Arabia_184',
'state______________3209'),
('country_Saudi_Arabia_184', 'state____________3210'),
('country_Saudi_Arabia_184', 'state__________3211'),
('country_Senegal_185', 'state_Dakar_3212'),
('country_Senegal_185', 'state_Diourbel_3213'),
('country_Senegal_185', 'state_Fatick_3214'),
('country_Senegal_185', 'state_Kaolack_3215'),
('country_Senegal_185', 'state_Kolda_3216'),
('country_Senegal_185', 'state_Louga_3217'),
('country_Senegal_185', 'state_Matam_3218'),
('country_Senegal_185', 'state_Saint_Louis_3219'),
('country_Senegal_185', 'state_Tambacounda_3220'),
('country_Senegal_185', 'state_Thies__3221'),
('country_Senegal_185', 'state_Ziguinchor_3222'),
('country_Seychelles_186',
'state_Anse_aux_Pins_3223'),
('country_Seychelles_186', 'state_Anse_Boileau_3224'),
('country_Seychelles_186', 'state_Anse_Etoile_3225'),
('country_Seychelles_186', 'state_Anse_Louis_3226'),
('country_Seychelles_186', 'state_Anse_Royale_3227'),
('country_Seychelles_186', 'state_Baie_Lazare_3228'),
('country_Seychelles_186',
'state_Baie_Sainte_Anne_3229'),
('country_Seychelles_186', 'state_Beau_Vallon_3230'),
('country_Seychelles_186', 'state_Bel_Air_3231'),
('country_Seychelles_186', 'state_Bel_Ombre_3232'),
('country_Seychelles_186', 'state_Cascade_3233'),
('country_Seychelles_186', 'state_Glacis_3234'),
('country_Seychelles_186',
'state_Grand__Anse__on_Mahe__3235'),
('country_Seychelles_186',
'state_Grand__Anse__on_Praslin__3236'),
('country_Seychelles_186', 'state_La_Digue_3237'),
('country_Seychelles_186',
'state_La_Riviere_Anglaise_3238'),
('country_Seychelles_186', 'state_Mont_Buxton_3239'),
('country_Seychelles_186', 'state_Mont_Fleuri_3240'),
('country_Seychelles_186', 'state_Plaisance_3241'),
('country_Seychelles_186',
'state_Pointe_La_Rue_3242'),
('country_Seychelles_186', 'state_Port_Glaud_3243'),
('country_Seychelles_186', 'state_Saint_Louis_3244'),
('country_Seychelles_186', 'state_Takamaka_3245'),
('country_Sierra_Leone_187', 'state_Eastern_3246'),
('country_Slovakia_189',
'state_Banskobystrick___kraj_3250'),
('country_Slovakia_189',
'state_Bratislavsk___kraj_3251'),
('country_Slovakia_189', 'state_Ko__ick___kraj_3252'),
('country_Slovakia_189',
'state_Nitriansk___kraj_3253')";
		$this->db->setQuery($query);
		$this->db->query();
		$query="INSERT IGNORE INTO `#__hikashop_zone_link`
(`zone_parent_namekey`, `zone_child_namekey`) VALUES
('country_Slovakia_189',
'state_Pre__ovsk___kraj_3254'),
('country_Slovakia_189', 'state_Trnavsk___kraj_3255'),
('country_Slovakia_189',
'state_Tren__iansk___kraj_3256'),
('country_Slovakia_189',
'state___ilinsk___kraj_3257'),
('country_Slovenia_190', 'state_Ajdov____ina_3258'),
('country_Slovenia_190', 'state_Beltinci_3259'),
('country_Slovenia_190', 'state_Bled_3260'),
('country_Slovenia_190', 'state_Bohinj_3261'),
('country_Slovenia_190', 'state_Borovnica_3262'),
('country_Slovenia_190', 'state_Bovec_3263'),
('country_Slovenia_190', 'state_Brda_3264'),
('country_Slovenia_190', 'state_Brezovica_3265'),
('country_Slovenia_190', 'state_Bre__ice_3266'),
('country_Slovenia_190', 'state_Ti__ina_3267'),
('country_Slovenia_190', 'state_Celje_3268'),
('country_Slovenia_190',
'state_Cerklje_na_Gorenjskem_3269'),
('country_Slovenia_190', 'state_Cerknica_3270'),
('country_Slovenia_190', 'state_Cerkno_3271'),
('country_Slovenia_190', 'state___ren__ovci_3272'),
('country_Slovenia_190',
'state___rna_na_Koro__kem_3273'),
('country_Slovenia_190', 'state___rnomelj_3274'),
('country_Slovenia_190', 'state_Destrnik_3275'),
('country_Slovenia_190', 'state_Diva__a_3276'),
('country_Slovenia_190', 'state_Dobrepolje_3277'),
('country_Slovenia_190',
'state_Dobrova_Polhov_Gradec_3278'),
('country_Slovenia_190',
'state_Dol_pri_Ljubljani_3279'),
('country_Slovenia_190', 'state_Dom__ale_3280'),
('country_Slovenia_190', 'state_Dornava_3281'),
('country_Slovenia_190', 'state_Dravograd_3282'),
('country_Slovenia_190', 'state_Duplek_3283'),
('country_Slovenia_190',
'state_Gorenja_vas_Poljane_3284'),
('country_Slovenia_190', 'state_Gori__nica_3285'),
('country_Slovenia_190', 'state_Gornja_Radgona_3286'),
('country_Slovenia_190', 'state_Gornji_Grad_3287'),
('country_Slovenia_190',
'state_Gornji_Petrovci_3288'),
('country_Slovenia_190', 'state_Grosuplje_3289'),
('country_Slovenia_190', 'state___alovci_3290'),
('country_Slovenia_190', 'state_Hrastnik_3291'),
('country_Slovenia_190', 'state_Hrpelje_Kozina_3292'),
('country_Slovenia_190', 'state_Idrija_3293'),
('country_Slovenia_190', 'state_Ig_3294'),
('country_Slovenia_190',
'state_Ilirska_Bistrica_3295'),
('country_Slovenia_190',
'state_Ivan__na_Gorica_3296'),
('country_Slovenia_190', 'state_Izola_3297'),
('country_Slovenia_190', 'state_Jesenice_3298'),
('country_Slovenia_190', 'state_Jur__inci_3299'),
('country_Slovenia_190', 'state_Kamnik_3300'),
('country_Slovenia_190', 'state_Kanal_ob_So__i_3301'),
('country_Slovenia_190', 'state_Kidri__evo_3302'),
('country_Slovenia_190', 'state_Kobarid_3303'),
('country_Slovenia_190', 'state_Kobilje_3304'),
('country_Slovenia_190', 'state_Ko__evje_3305'),
('country_Slovenia_190', 'state_Komen_3306'),
('country_Slovenia_190', 'state_Koper_3307'),
('country_Slovenia_190', 'state_Kozje_3308'),
('country_Slovenia_190', 'state_Kranj_3309'),
('country_Slovenia_190', 'state_Kranjska_Gora_3310'),
('country_Slovenia_190', 'state_Kr__ko_3311'),
('country_Slovenia_190', 'state_Kungota_3312'),
('country_Slovenia_190', 'state_Kuzma_3313'),
('country_Slovenia_190', 'state_La__ko_3314'),
('country_Slovenia_190', 'state_Lenart_3315'),
('country_Slovenia_190', 'state_Lendava_3316'),
('country_Slovenia_190', 'state_Litija_3317'),
('country_Slovenia_190', 'state_Ljubljana_3318'),
('country_Slovenia_190', 'state_Ljubno_3319'),
('country_Slovenia_190', 'state_Ljutomer_3320'),
('country_Slovenia_190', 'state_Logatec_3321'),
('country_Slovenia_190', 'state_Lo__ka_Dolina_3322'),
('country_Slovenia_190', 'state_Lo__ki_Potok_3323'),
('country_Slovenia_190', 'state_Lu__e_3324'),
('country_Slovenia_190', 'state_Lukovica_3325'),
('country_Slovenia_190', 'state_Maj__perk_3326'),
('country_Slovenia_190', 'state_Maribor_3327'),
('country_Slovenia_190', 'state_Medvode_3328'),
('country_Slovenia_190', 'state_Menge___3329'),
('country_Slovenia_190', 'state_Metlika_3330'),
('country_Slovenia_190', 'state_Me__ica_3331'),
('country_Slovenia_190',
'state_Miren_Kostanjevica_3332'),
('country_Slovenia_190', 'state_Mislinja_3333'),
('country_Slovenia_190', 'state_Morav__e_3334'),
('country_Slovenia_190',
'state_Moravske_Toplice_3335'),
('country_Slovenia_190', 'state_Mozirje_3336'),
('country_Slovenia_190', 'state_Murska_Sobota_3337'),
('country_Slovenia_190', 'state_Muta_3338'),
('country_Slovenia_190', 'state_Naklo_3339'),
('country_Slovenia_190', 'state_Nazarje_3340'),
('country_Slovenia_190', 'state_Nova_Gorica_3341'),
('country_Slovenia_190', 'state_Novo_mesto_3342'),
('country_Slovenia_190', 'state_Odranci_3343'),
('country_Slovenia_190', 'state_Ormo___3344'),
('country_Slovenia_190', 'state_Osilnica_3345'),
('country_Slovenia_190', 'state_Pesnica_3346'),
('country_Slovenia_190', 'state_Piran_3347'),
('country_Slovenia_190', 'state_Pivka_3348'),
('country_Slovenia_190', 'state_Pod__etrtek_3349'),
('country_Slovenia_190', 'state_Podvelka_3350'),
('country_Slovenia_190', 'state_Postojna_3351'),
('country_Slovenia_190', 'state_Preddvor_3352'),
('country_Slovenia_190', 'state_Ptuj_3353'),
('country_Slovenia_190', 'state_Puconci_3354'),
('country_Slovenia_190', 'state_Ra__e_Fram_3355'),
('country_Slovenia_190', 'state_Rade__e_3356'),
('country_Slovenia_190', 'state_Radenci_3357'),
('country_Slovenia_190',
'state_Radlje_ob_Dravi_3358'),
('country_Slovenia_190', 'state_Radovljica_3359'),
('country_Slovenia_190',
'state_Ravne_na_Koro__kem_3360'),
('country_Slovenia_190', 'state_Ribnica_3361'),
('country_Slovenia_190',
'state_Roga__ka_Slatina_3362'),
('country_Slovenia_190', 'state_Roga__ovci_3363'),
('country_Slovenia_190', 'state_Rogatec_3364'),
('country_Slovenia_190', 'state_Ru__e_3365'),
('country_Slovenia_190', 'state_Semi___3366'),
('country_Slovenia_190', 'state_Sevnica_3367'),
('country_Slovenia_190', 'state_Se__ana_3368'),
('country_Slovenia_190', 'state_Slovenj_Gradec_3369'),
('country_Slovenia_190',
'state_Slovenska_Bistrica_3370'),
('country_Slovenia_190',
'state_Slovenske_Konjice_3371'),
('country_Slovenia_190', 'state_Star__e_3372'),
('country_Slovenia_190', 'state_Sveti_Jurij_3373'),
('country_Slovenia_190', 'state___en__ur_3374'),
('country_Slovenia_190', 'state___entilj_3375'),
('country_Slovenia_190', 'state___entjernej_3376'),
('country_Slovenia_190',
'state___entjur_pri_Celju_3377'),
('country_Slovenia_190', 'state___kocjan_3378'),
('country_Slovenia_190', 'state___kofja_Loka_3379'),
('country_Slovenia_190', 'state___kofljica_3380'),
('country_Slovenia_190',
'state___marje_pri_Jel__ah_3381'),
('country_Slovenia_190',
'state___martno_ob_Paki_3382'),
('country_Slovenia_190', 'state___o__tanj_3383'),
('country_Slovenia_190', 'state___tore_3384'),
('country_Slovenia_190', 'state_Tolmin_3385'),
('country_Slovenia_190', 'state_Trbovlje_3386'),
('country_Slovenia_190', 'state_Trebnje_3387'),
('country_Slovenia_190', 'state_Tr__i___3388'),
('country_Slovenia_190', 'state_Turni____e_3389'),
('country_Slovenia_190', 'state_Velenje_3390'),
('country_Slovenia_190', 'state_Velike_La____e_3391'),
('country_Slovenia_190', 'state_Videm_3392'),
('country_Slovenia_190', 'state_Vipava_3393'),
('country_Slovenia_190', 'state_Vitanje_3394'),
('country_Slovenia_190', 'state_Vodice_3395'),
('country_Slovenia_190', 'state_Vojnik_3396'),
('country_Slovenia_190', 'state_Vrhnika_3397'),
('country_Slovenia_190', 'state_Vuzenica_3398'),
('country_Slovenia_190',
'state_Zagorje_ob_Savi_3399'),
('country_Slovenia_190', 'state_Zavr___3400'),
('country_Slovenia_190', 'state_Zre__e_3401'),
('country_Slovenia_190', 'state___elezniki_3402'),
('country_Slovenia_190', 'state___iri_3403'),
('country_Slovenia_190', 'state_Benedikt_3404'),
('country_Slovenia_190',
'state_Bistrica_ob_Sotli_3405'),
('country_Slovenia_190', 'state_Bloke_3406'),
('country_Slovenia_190', 'state_Braslov__e_3407'),
('country_Slovenia_190', 'state_Cankova_3408'),
('country_Slovenia_190', 'state_Cerkvenjak_3409'),
('country_Slovenia_190', 'state_Dobje_3410'),
('country_Slovenia_190', 'state_Dobrna_3411'),
('country_Slovenia_190', 'state_Dobrovnik_3412'),
('country_Slovenia_190',
'state_Dolenjske_Toplice_3413'),
('country_Slovenia_190', 'state_Grad_3414'),
('country_Slovenia_190', 'state_Hajdina_3415'),
('country_Slovenia_190', 'state_Ho__e_Slivnica_3416'),
('country_Slovenia_190', 'state_Hodo___3417'),
('country_Slovenia_190', 'state_Horjul_3418'),
('country_Slovenia_190', 'state_Jezersko_3419'),
('country_Slovenia_190', 'state_Komenda_3420'),
('country_Slovenia_190', 'state_Kostel_3421'),
('country_Slovenia_190', 'state_Kri__evci_3422'),
('country_Slovenia_190',
'state_Lovrenc_na_Pohorju_3423'),
('country_Slovenia_190', 'state_Markovci_3424'),
('country_Slovenia_190',
'state_Miklav___na_Dravskem_polju_3425'),
('country_Slovenia_190', 'state_Mirna_Pe___3426'),
('country_Slovenia_190', 'state_Oplotnica_3427'),
('country_Slovenia_190', 'state_Podlehnik_3428'),
('country_Slovenia_190', 'state_Polzela_3429'),
('country_Slovenia_190', 'state_Prebold_3430'),
('country_Slovenia_190', 'state_Prevalje_3431'),
('country_Slovenia_190', 'state_Razkri__je_3432'),
('country_Slovenia_190',
'state_Ribnica_na_Pohorju_3433'),
('country_Slovenia_190',
'state_Selnica_ob_Dravi_3434'),
('country_Slovenia_190', 'state_Sodra__ica_3435'),
('country_Slovenia_190', 'state_Sol__ava_3436'),
('country_Slovenia_190', 'state_Sveta_Ana_3437'),
('country_Slovenia_190',
'state_Sveti_Andra___v_Slovenskih_goricah_3438'),
('country_Slovenia_190',
'state___empeter_Vrtojba_3439'),
('country_Slovenia_190', 'state_Tabor_3440'),
('country_Slovenia_190', 'state_Trnovska_vas_3441'),
('country_Slovenia_190', 'state_Trzin_3442'),
('country_Slovenia_190', 'state_Velika_Polana_3443'),
('country_Slovenia_190', 'state_Ver__ej_3444'),
('country_Slovenia_190', 'state_Vransko_3445'),
('country_Slovenia_190', 'state___alec_3446'),
('country_Slovenia_190', 'state___etale_3447'),
('country_Slovenia_190', 'state___irovnica_3448'),
('country_Slovenia_190', 'state___u__emberk_3449'),
('country_Slovenia_190',
'state___martno_pri_Litiji_3450'),
('country_Solomon_Islands_191',
'state_Guadalcanal_3453'),
('country_Solomon_Islands_191', 'state_Honiara_3454'),
('country_Solomon_Islands_191', 'state_Isabel_3455'),
('country_Solomon_Islands_191', 'state_Makira_3456'),
('country_Solomon_Islands_191', 'state_Malaita_3457'),
('country_Solomon_Islands_191',
'state_Rennell_and_Bellona_3458'),
('country_Solomon_Islands_191', 'state_Temotu_3459'),
('country_Somalia_192', 'state_Awdal_3461'),
('country_Somalia_192', 'state_Bakool_3462'),
('country_Somalia_192', 'state_Banaadir_3463'),
('country_Somalia_192', 'state_Bari_3464'),
('country_Somalia_192', 'state_Bay_3465'),
('country_Somalia_192', 'state_Gedo_3466'),
('country_Somalia_192', 'state_Galguduud_3467'),
('country_Somalia_192', 'state_Hiiraan_3468'),
('country_Somalia_192', 'state_Jubbada_Dhexe_3469'),
('country_Somalia_192', 'state_Jubbada_Hoose_3470'),
('country_Somalia_192', 'state_Mudug_3471'),
('country_Somalia_192', 'state_Nugaal_3472'),
('country_Somalia_192',
'state_Shabeellaha_Dhexe_3473'),
('country_Somalia_192', 'state_Sanaag_3474'),
('country_Somalia_192',
'state_Shabeellaha_Hoose_3475'),
('country_Somalia_192', 'state_Sool_3476'),
('country_Somalia_192', 'state_Togdheer_3477'),
('country_Somalia_192', 'state_Woqooyi_Galbeed_3478'),
('country_South_Africa_193',
'state_Eastern_Cape_3479'),
('country_South_Africa_193', 'state_Free_State_3480'),
('country_South_Africa_193', 'state_Gauteng_3481'),
('country_South_Africa_193', 'state_Limpopo_3482'),
('country_South_Africa_193', 'state_Mpumalanga_3483'),
('country_South_Africa_193',
'state_Northern_Cape_3484'),
('country_South_Africa_193',
'state_KwaZulu_Natal_3485'),
('country_South_Africa_193',
'state_Western_Cape_3487'),
('country_South_Africa_193', 'state_North_West_4556'),
('country_Spain_195', 'state_Granada_4504'),
('country_Spain_195', 'state_Le__n_4505'),
('country_Spain_195', 'state_Alicante_3490'),
('country_Spain_195', 'state_Albacete_3491'),
('country_Spain_195', 'state_Almer__a_3492'),
('country_Spain_195', 'state___vila_3494'),
('country_Spain_195', 'state_Barcelona_3495'),
('country_Spain_195', 'state_Badajoz_3496'),
('country_Spain_195', 'state_Vizcaya_3497'),
('country_Spain_195', 'state_Burgos_3498'),
('country_Spain_195', 'state_A_Coru__a_3499'),
('country_Spain_195', 'state_C__diz_3500'),
('country_Spain_195', 'state_C__ceres_3501'),
('country_Spain_195', 'state_Ceuta_3502'),
('country_Spain_195', 'state_C__rdoba_3506'),
('country_Spain_195', 'state_Ciudad_Real_3507'),
('country_Spain_195', 'state_Castell__n_3508'),
('country_Spain_195', 'state_Cuenca_3510'),
('country_Spain_195', 'state_Las_Palmas_3513'),
('country_Spain_195', 'state_Girona_3514'),
('country_Spain_195', 'state_Guadalajara_3516'),
('country_Spain_195', 'state_Huelva_3517'),
('country_Spain_195', 'state_Huesca_3518'),
('country_Spain_195', 'state_Ja__n_3520'),
('country_Spain_195', 'state_Lleida_3521'),
('country_Spain_195', 'state_La_Rioja_3523'),
('country_Spain_195', 'state_Lugo_3524'),
('country_Spain_195', 'state_Madrid_3525'),
('country_Spain_195', 'state_M__laga_3526'),
('country_Spain_195', 'state_Melilla_3527'),
('country_Spain_195', 'state_Murcia_3528'),
('country_Spain_195', 'state_Navarre_3529'),
('country_Spain_195', 'state_Asturias_3530'),
('country_Spain_195', 'state_Ourense_3531'),
('country_Spain_195', 'state_Palencia_3532'),
('country_Spain_195', 'state_Baleares_3533'),
('country_Spain_195', 'state_Pontevedra_3534'),
('country_Spain_195', 'state_Cantabria_3536'),
('country_Spain_195', 'state_Salamanca_3537'),
('country_Spain_195', 'state_Seville_3538'),
('country_Spain_195', 'state_Segovia_3539'),
('country_Spain_195', 'state_Soria_3540'),
('country_Spain_195', 'state_Guip__zcoa_3541'),
('country_Spain_195', 'state_Tarragona_3542'),
('country_Spain_195', 'state_Teruel_3543'),
('country_Spain_195',
'state_Santa_Cruz_De_Tenerife_3544'),
('country_Spain_195', 'state_Toledo_3545'),
('country_Spain_195', 'state_Valencia_3546'),
('country_Spain_195', 'state_Valladolid_3547'),
('country_Spain_195', 'state___lava_3548'),
('country_Spain_195', 'state_Zaragoza_3549'),
('country_Spain_195', 'state_Zamora_3550'),
('country_Sri_Lanka_196', 'state_North_Central_3552'),
('country_Sri_Lanka_196', 'state_North_3553'),
('country_Sri_Lanka_196', 'state_North_Western_3555'),
('country_Sri_Lanka_196', 'state_Uva_3557'),
('country_Sri_Lanka_196', 'state_Sabaragamuwa_3558'),
('country_Sudan_199',
'state_______________________3560'),
('country_Sudan_199',
'state_________________________3561'),
('country_Sudan_199', 'state__________________3562'),
('country_Sudan_199',
'state___________________________3563'),
('country_Sudan_199', 'state________________3564'),
('country_Sudan_199', 'state________________3565'),
('country_Sudan_199', 'state______________3566'),
('country_Sudan_199',
'state_________________________3567'),
('country_Sudan_199',
'state_________________________3568'),
('country_Sudan_199', 'state__________________3569'),
('country_Sudan_199',
'state___________________________________3570'),
('country_Sudan_199',
'state_____________________________3571'),
('country_Sudan_199',
'state____________________________3572'),
('country_Sudan_199',
'state_____________________3573'),
('country_Sudan_199',
'state_____________________3574'),
('country_Sudan_199',
'state_______________________3575'),
('country_Sudan_199',
'state_______________________3576'),
('country_Sudan_199', 'state______________3577'),
('country_Sudan_199', 'state__________3578'),
('country_Sudan_199',
'state______________________________3579'),
('country_Sudan_199',
'state______________________________3580'),
('country_Sudan_199',
'state_______________________3581'),
('country_Sudan_199',
'state_______________________3582'),
('country_Sudan_199',
'state_____________________________3583'),
('country_Sudan_199', 'state__________3584'),
('country_Sudan_199', 'state____________3585'),
('country_Suriname_200', 'state_Brokopondo_3586'),
('country_Suriname_200', 'state_Commewijne_3587'),
('country_Suriname_200', 'state_Coronie_3588'),
('country_Suriname_200', 'state_Marowijne_3589'),
('country_Suriname_200', 'state_Nickerie_3590'),
('country_Suriname_200', 'state_Paramaribo_3591'),
('country_Suriname_200', 'state_Para_3592'),
('country_Suriname_200', 'state_Saramacca_3593'),
('country_Suriname_200', 'state_Sipaliwini_3594'),
('country_Suriname_200', 'state_Wanica_3595'),
('country_Swaziland_202', 'state_Hhohho_3596'),
('country_Swaziland_202', 'state_Lubombo_3597'),
('country_Swaziland_202', 'state_Manzini_3598'),
('country_Swaziland_202', 'state_Shiselweni_3599'),
('country_Sweden_203', 'state_Stockholms_l__n_3600'),
('country_Sweden_203', 'state_Uppsala_l__n_3601'),
('country_Sweden_203',
'state_S__dermanlands_l__n_3602'),
('country_Sweden_203',
'state___sterg__tlands_l__n_3603'),
('country_Sweden_203',
'state_J__nk__pings_l__n_3604'),
('country_Sweden_203', 'state_Kronobergs_l__n_3605'),
('country_Sweden_203', 'state_Kalmar_l__n_3606'),
('country_Sweden_203', 'state_Gotlands_l__n_3607'),
('country_Sweden_203', 'state_Blekinge_l__n_3608'),
('country_Sweden_203', 'state_Sk__ne_l__n_3609'),
('country_Sweden_203', 'state_Hallands_l__n_3610'),
('country_Sweden_203',
'state_V__stra_G__talands_l__n_3611'),
('country_Sweden_203', 'state_V__rmlands_l__n__3612'),
('country_Sweden_203', 'state___rebro_l__n_3613'),
('country_Sweden_203',
'state_V__stmanlands_l__n__3614'),
('country_Sweden_203', 'state_Dalarnas_l__n_3615'),
('country_Sweden_203', 'state_G__vleborgs_l__n_3616'),
('country_Sweden_203',
'state_V__sternorrlands_l__n_3617'),
('country_Sweden_203', 'state_J__mtlands_l__n_3618'),
('country_Sweden_203',
'state_V__sterbottens_l__n_3619'),
('country_Sweden_203', 'state_Norrbottens_l__n_3620'),
('country_Switzerland_204', 'state_Z__rich_3621'),
('country_Switzerland_204', 'state_Bern_3622'),
('country_Switzerland_204', 'state_Luzern_3623'),
('country_Switzerland_204', 'state_Uri_3624'),
('country_Switzerland_204', 'state_Schwyz_3625'),
('country_Switzerland_204', 'state_Obwalden_3626'),
('country_Switzerland_204', 'state_Nidwalden_3627'),
('country_Switzerland_204', 'state_Glasrus_3628'),
('country_Switzerland_204', 'state_Zug_3629'),
('country_Switzerland_204', 'state_Fribourg_3630'),
('country_Switzerland_204', 'state_Solothurn_3631'),
('country_Switzerland_204', 'state_Basel_Stadt_3632'),
('country_Switzerland_204',
'state_Basel_Landschaft_3633'),
('country_Switzerland_204',
'state_Schaffhausen_3634'),
('country_Switzerland_204',
'state_Appenzell_Ausserrhoden_3635'),
('country_Switzerland_204',
'state_Appenzell_Innerrhoden_3636'),
('country_Switzerland_204',
'state_Saint_Gallen_3637'),
('country_Switzerland_204', 'state_Graub__nden_3638'),
('country_Switzerland_204', 'state_Aargau_3639'),
('country_Switzerland_204', 'state_Thurgau_3640'),
('country_Switzerland_204', 'state_Ticino_3641'),
('country_Switzerland_204', 'state_Vaud_3642'),
('country_Switzerland_204', 'state_Valais_3643'),
('country_Switzerland_204', 'state_Nuech__tel_3644'),
('country_Switzerland_204', 'state_Gen__ve_3645'),
('country_Switzerland_204', 'state_Jura_3646'),
('country_Syrian_Arab_Republic_205',
'state__________3647'),
('country_Syrian_Arab_Republic_205',
'state__________3648'),
('country_Syrian_Arab_Republic_205',
'state___________________3649'),
('country_Syrian_Arab_Republic_205',
'state______________3650'),
('country_Syrian_Arab_Republic_205',
'state________3651'),
('country_Syrian_Arab_Republic_205',
'state________3652'),
('country_Syrian_Arab_Republic_205',
'state__________3653'),
('country_Syrian_Arab_Republic_205',
'state__________3654'),
('country_Syrian_Arab_Republic_205',
'state__________________3655'),
('country_Syrian_Arab_Republic_205',
'state__________________3656'),
('country_Syrian_Arab_Republic_205',
'state____________3657'),
('country_Syrian_Arab_Republic_205',
'state_________________3658'),
('country_Syrian_Arab_Republic_205',
'state__________________3659'),
('country_Syrian_Arab_Republic_205',
'state____________3660'),
('country_Taiwan_206', 'state___________3661'),
('country_Taiwan_206', 'state___________3662'),
('country_Taiwan_206', 'state___________3663'),
('country_Taiwan_206', 'state___________3664'),
('country_Taiwan_206', 'state___________3665'),
('country_Taiwan_206', 'state___________3666'),
('country_Taiwan_206', 'state___________3667'),
('country_Taiwan_206', 'state___________3668'),
('country_Taiwan_206', 'state___________3669'),
('country_Taiwan_206', 'state___________3670'),
('country_Taiwan_206', 'state___________3671'),
('country_Taiwan_206', 'state___________3672'),
('country_Taiwan_206', 'state___________3673'),
('country_Taiwan_206', 'state___________3674'),
('country_Taiwan_206', 'state___________3675'),
('country_Taiwan_206', 'state___________3676'),
('country_Taiwan_206', 'state___________3677'),
('country_Taiwan_206', 'state___________3678'),
('country_Taiwan_206', 'state___________3679'),
('country_Taiwan_206', 'state___________3680'),
('country_Taiwan_206', 'state___________3681'),
('country_Taiwan_206', 'state___________3682'),
('country_Taiwan_206', 'state___________3683'),
('country_Tajikistan_207',
'state_____________________________3684'),
('country_Tajikistan_207', 'state____________3685'),
('country_Tajikistan_207', 'state________3686'),
('country_Tanzania_208', 'state_Arusha_3687'),
('country_Tanzania_208', 'state_Dar_es_Salaam_3688'),
('country_Tanzania_208', 'state_Dodoma_3689'),
('country_Tanzania_208', 'state_Iringa_3690'),
('country_Tanzania_208', 'state_Kagera_3691'),
('country_Tanzania_208', 'state_Pemba_Sever_3692'),
('country_Tanzania_208', 'state_Zanzibar_Sever_3693'),
('country_Tanzania_208', 'state_Kigoma_3694'),
('country_Tanzania_208', 'state_Kilimanjaro_3695'),
('country_Tanzania_208', 'state_Pemba_Jih_3696'),
('country_Tanzania_208', 'state_Zanzibar_Jih_3697'),
('country_Tanzania_208', 'state_Lindi_3698'),
('country_Tanzania_208', 'state_Mara_3699'),
('country_Tanzania_208', 'state_Mbeya_3700'),
('country_Tanzania_208',
'state_Zanzibar_Z__pad_3701'),
('country_Tanzania_208', 'state_Morogoro_3702'),
('country_Tanzania_208', 'state_Mtwara_3703'),
('country_Tanzania_208', 'state_Mwanza_3704'),
('country_Tanzania_208', 'state_Pwani_3705'),
('country_Tanzania_208', 'state_Rukwa_3706'),
('country_Tanzania_208', 'state_Ruvuma_3707'),
('country_Tanzania_208', 'state_Shinyanga_3708'),
('country_Tanzania_208', 'state_Singida_3709'),
('country_Tanzania_208', 'state_Tabora_3710'),
('country_Tanzania_208', 'state_Tanga_3711'),
('country_Tanzania_208', 'state_Manyara_3712'),
('country_Thailand_209',
'state_________________________________________3713'),
('country_Thailand_209',
'state___________________________________3714'),
('country_Thailand_209',
'state_______________________3715'),
('country_Thailand_209',
'state__________________________3716'),
('country_Thailand_209',
'state_______________________________________________3717'),
('country_Thailand_209',
'state_______________________3718'),
('country_Thailand_209',
'state____________________3719'),
('country_Thailand_209',
'state_____________________________3720'),
('country_Thailand_209',
'state____________________3721'),
('country_Thailand_209',
'state_______________________3722'),
('country_Thailand_209',
'state____________________3723'),
('country_Thailand_209',
'state_________________3724'),
('country_Thailand_209',
'state__________________________3725'),
('country_Thailand_209', 'state______________3726'),
('country_Thailand_209',
'state________________________________3727'),
('country_Thailand_209',
'state________________________________3728'),
('country_Thailand_209',
'state_______________________3729'),
('country_Thailand_209',
'state_______________________3730'),
('country_Thailand_209',
'state________________________________3731'),
('country_Thailand_209',
'state_____________________________3732'),
('country_Thailand_209',
'state__________________________3733'),
('country_Thailand_209',
'state__________________________3734'),
('country_Thailand_209',
'state___________________________________3735'),
('country_Thailand_209',
'state_________________3736'),
('country_Thailand_209',
'state_______________________3737'),
('country_Thailand_209',
'state________________________________3738'),
('country_Thailand_209',
'state___________________________________3739'),
('country_Thailand_209',
'state_______________________3740'),
('country_Thailand_209',
'state__________________________3741'),
('country_Thailand_209', 'state___________3742'),
('country_Thailand_209',
'state_______________________3743'),
('country_Thailand_209',
'state_____________________________3744'),
('country_Thailand_209',
'state__________________________3745'),
('country_Thailand_209',
'state_____________________________3746'),
('country_Thailand_209',
'state____________________3747'),
('country_Thailand_209',
'state____________________3748'),
('country_Thailand_209',
'state__________________________3749'),
('country_Thailand_209',
'state_____________________________3750'),
('country_Thailand_209',
'state_________________3751'),
('country_Thailand_209',
'state_________________3752'),
('country_Thailand_209',
'state_____________________________3753'),
('country_Thailand_209', 'state______________3754'),
('country_Thailand_209',
'state_________________3755'),
('country_Thailand_209',
'state__________________________3756'),
('country_Thailand_209',
'state________________________________3757'),
('country_Thailand_209',
'state_____________________________3758'),
('country_Thailand_209',
'state_____________________________3759'),
('country_Thailand_209',
'state_____________________________3760'),
('country_Thailand_209',
'state___________3761')";
		$this->db->setQuery($query);
		$this->db->query();
		$query="INSERT IGNORE INTO `#__hikashop_zone_link`
(`zone_parent_namekey`, `zone_child_namekey`) VALUES
('country_Thailand_209',
'state_______________________3762'),
('country_Thailand_209',
'state_________________3763'),
('country_Thailand_209',
'state____________________3764'),
('country_Thailand_209',
'state_______________________3765'),
('country_Thailand_209',
'state_____________________________3766'),
('country_Thailand_209',
'state________________________________3767'),
('country_Thailand_209',
'state____________________3768'),
('country_Thailand_209',
'state_____________________________3769'),
('country_Thailand_209',
'state___________________________________3770'),
('country_Thailand_209',
'state__________________________3771'),
('country_Thailand_209',
'state_______________________________________________3772'),
('country_Thailand_209',
'state_________________________________________3773'),
('country_Thailand_209',
'state____________________3774'),
('country_Thailand_209',
'state_________________3775'),
('country_Thailand_209',
'state____________________3776'),
('country_Thailand_209',
'state______________________________________3777'),
('country_Thailand_209',
'state_________________3778'),
('country_Thailand_209',
'state_________________3779'),
('country_Thailand_209',
'state_________________3780'),
('country_Thailand_209', 'state______________3781'),
('country_Thailand_209', 'state______________3782'),
('country_Thailand_209',
'state____________________3783'),
('country_Thailand_209',
'state_______________________3784'),
('country_Thailand_209', 'state______________3785'),
('country_Thailand_209',
'state__________________________3786'),
('country_Togo_210', 'state_Centrale_3787'),
('country_Togo_210', 'state_Kara_3788'),
('country_Togo_210', 'state_Maritime_3789'),
('country_Togo_210', 'state_Plateaux_3790'),
('country_Togo_210', 'state_Savanes_3791'),
('country_Tokelau_211', 'state_Atafu_3792'),
('country_Tokelau_211', 'state_Fakaofo_3793'),
('country_Tokelau_211', 'state_Nukunonu_3794'),
('country_Tonga_212', 'state_Ha_apai_3795'),
('country_Tonga_212', 'state_Tongatapu_3796'),
('country_Tonga_212', 'state_Vava_u_3797'),
('country_Trinidad_and_Tobago_213',
'state_Arima_3798'),
('country_Trinidad_and_Tobago_213',
'state_Chaguanas_3799'),
('country_Trinidad_and_Tobago_213',
'state_Couva_Tabaquite_Talparo_3800'),
('country_Trinidad_and_Tobago_213',
'state_Diego_Martin_3801'),
('country_Trinidad_and_Tobago_213',
'state_Eastern_Tobago_3802'),
('country_Trinidad_and_Tobago_213',
'state_Rio_Claro_Mayaro_3803'),
('country_Trinidad_and_Tobago_213',
'state_Penal_Debe_3804'),
('country_Trinidad_and_Tobago_213',
'state_Point_Fortin_3805'),
('country_Trinidad_and_Tobago_213',
'state_Port_of_Spain_3806'),
('country_Trinidad_and_Tobago_213',
'state_Princes_Town_3807'),
('country_Trinidad_and_Tobago_213',
'state_San_Fernando_3808'),
('country_Trinidad_and_Tobago_213',
'state_Sangre_Grande_3809'),
('country_Trinidad_and_Tobago_213',
'state_San_Juan_Laventille_3810'),
('country_Trinidad_and_Tobago_213',
'state_Siparia_3811'),
('country_Trinidad_and_Tobago_213',
'state_Tunapuna_Piarco_3812'),
('country_Trinidad_and_Tobago_213',
'state_Western_Tobago_3813'),
('country_Tunisia_214',
'state_____________________3814'),
('country_Tunisia_214',
'state_________________________3815'),
('country_Tunisia_214',
'state__________________________3816'),
('country_Tunisia_214',
'state_______________________3817'),
('country_Tunisia_214',
'state_____________________3818'),
('country_Tunisia_214',
'state_______________________3819'),
('country_Tunisia_214',
'state_______________________3820'),
('country_Tunisia_214',
'state_____________________3821'),
('country_Tunisia_214',
'state_________________________3822'),
('country_Tunisia_214',
'state_______________________3823'),
('country_Tunisia_214',
'state_________________________3824'),
('country_Tunisia_214',
'state_____________________________3825'),
('country_Tunisia_214',
'state___________________________3826'),
('country_Tunisia_214',
'state________________________________3827'),
('country_Tunisia_214',
'state_____________________3828'),
('country_Tunisia_214',
'state_____________________________3829'),
('country_Tunisia_214',
'state___________________________3830'),
('country_Tunisia_214',
'state_______________________3831'),
('country_Tunisia_214',
'state_____________________3832'),
('country_Tunisia_214',
'state_____________________3833'),
('country_Tunisia_214',
'state_____________________3834'),
('country_Tunisia_214',
'state_____________________3835'),
('country_Tunisia_214',
'state_______________________3836'),
('country_Tunisia_214',
'state_________________________3837'),
('country_Turkey_215', 'state_Adana_3838'),
('country_Turkey_215', 'state_Ad__yaman_3839'),
('country_Turkey_215', 'state_Afyonkarahisar_3840'),
('country_Turkey_215', 'state_A__r___3841'),
('country_Turkey_215', 'state_Amasya_3842'),
('country_Turkey_215', 'state_Ankara_3843'),
('country_Turkey_215', 'state_Antalya_3844'),
('country_Turkey_215', 'state_Artvin_3845'),
('country_Turkey_215', 'state_Ayd__n_3846'),
('country_Turkey_215', 'state_Bal__kesir_3847'),
('country_Turkey_215', 'state_Bilecik_3848'),
('country_Turkey_215', 'state_Bing__l_3849'),
('country_Turkey_215', 'state_Bitlis_3850'),
('country_Turkey_215', 'state_Bolu_3851'),
('country_Turkey_215', 'state_Burdur_3852'),
('country_Turkey_215', 'state_Bursa_3853'),
('country_Turkey_215', 'state___anakkale_3854'),
('country_Turkey_215', 'state___ank__r___3855'),
('country_Turkey_215', 'state___orum_3856'),
('country_Turkey_215', 'state_Denizli_3857'),
('country_Turkey_215', 'state_Diyarbak__r_3858'),
('country_Turkey_215', 'state_Edirne_3859'),
('country_Turkey_215', 'state_Elaz_____3860'),
('country_Turkey_215', 'state_Erzincan_3861'),
('country_Turkey_215', 'state_Erzurum_3862'),
('country_Turkey_215', 'state_Eski__ehir_3863'),
('country_Turkey_215', 'state_Gaziantep_3864'),
('country_Turkey_215', 'state_Giresun_3865'),
('country_Turkey_215', 'state_G__m____hane_3866'),
('country_Turkey_215', 'state_Hakkari_3867'),
('country_Turkey_215', 'state_Hatay_3868'),
('country_Turkey_215', 'state_Isparta_3869'),
('country_Turkey_215', 'state_Mersin_3870'),
('country_Turkey_215', 'state___stanbul_3871'),
('country_Turkey_215', 'state___zmir_3872'),
('country_Turkey_215', 'state_Kars_3873'),
('country_Turkey_215', 'state_Kastamonu_3874'),
('country_Turkey_215', 'state_Kayseri_3875'),
('country_Turkey_215', 'state_K__rklareli_3876'),
('country_Turkey_215', 'state_K__r__ehir_3877'),
('country_Turkey_215', 'state_Kocaeli_3878'),
('country_Turkey_215', 'state_Konya_3879'),
('country_Turkey_215', 'state_K__tahya_3880'),
('country_Turkey_215', 'state_Malatya_3881'),
('country_Turkey_215', 'state_Manisa_3882'),
('country_Turkey_215', 'state_Kahramanmara___3883'),
('country_Turkey_215', 'state_Mardin_3884'),
('country_Turkey_215', 'state_Mu__la_3885'),
('country_Turkey_215', 'state_Mu___3886'),
('country_Turkey_215', 'state_Nev__ehir_3887'),
('country_Turkey_215', 'state_Ni__de_3888'),
('country_Turkey_215', 'state_Ordu_3889'),
('country_Turkey_215', 'state_Rize_3890'),
('country_Turkey_215', 'state_Sakarya_3891'),
('country_Turkey_215', 'state_Samsun_3892'),
('country_Turkey_215', 'state_Siirt_3893'),
('country_Turkey_215', 'state_Sinop_3894'),
('country_Turkey_215', 'state_Sivas_3895'),
('country_Turkey_215', 'state_Tekirda___3896'),
('country_Turkey_215', 'state_Tokat_3897'),
('country_Turkey_215', 'state_Trabzon_3898'),
('country_Turkey_215', 'state_Tunceli_3899'),
('country_Turkey_215', 'state___anl__urfa_3900'),
('country_Turkey_215', 'state_U__ak_3901'),
('country_Turkey_215', 'state_Van_3902'),
('country_Turkey_215', 'state_Yozgat_3903'),
('country_Turkey_215', 'state_Zonguldak_3904'),
('country_Turkey_215', 'state_Aksaray_3905'),
('country_Turkey_215', 'state_Bayburt_3906'),
('country_Turkey_215', 'state_Karaman_3907'),
('country_Turkey_215', 'state_K__r__kkale_3908'),
('country_Turkey_215', 'state_Batman_3909'),
('country_Turkey_215', 'state_____rnak_3910'),
('country_Turkey_215', 'state_Bart__n_3911'),
('country_Turkey_215', 'state_Ardahan_3912'),
('country_Turkey_215', 'state_I__d__r_3913'),
('country_Turkey_215', 'state_Yalova_3914'),
('country_Turkey_215', 'state_Karab__k_3915'),
('country_Turkey_215', 'state_Kilis_3916'),
('country_Turkey_215', 'state_Osmaniye_3917'),
('country_Turkey_215', 'state_D__zce_3918'),
('country_Turkmenistan_216',
'state_Ahal_wela__aty_3919'),
('country_Turkmenistan_216',
'state_Balkan_wela__aty_3920'),
('country_Turkmenistan_216',
'state_Da__oguz_wela__aty_3921'),
('country_Turkmenistan_216',
'state_Lebap_wela__aty_3922'),
('country_Turkmenistan_216',
'state_Mary_wela__aty_3923'),
('country_Turks_and_Caicos_Islands_217',
'state_Ambergris_Cays_3924'),
('country_Turks_and_Caicos_Islands_217',
'state_Dellis_Cay_3925'),
('country_Turks_and_Caicos_Islands_217',
'state_French_Cay_3926'),
('country_Turks_and_Caicos_Islands_217',
'state_Little_Water_Cay_3927'),
('country_Turks_and_Caicos_Islands_217',
'state_Parrot_Cay_3928'),
('country_Turks_and_Caicos_Islands_217',
'state_Pine_Cay_3929'),
('country_Turks_and_Caicos_Islands_217',
'state_Salt_Cay_3930'),
('country_Turks_and_Caicos_Islands_217',
'state_Grand_Turk_3931'),
('country_Turks_and_Caicos_Islands_217',
'state_South_Caicos_3932'),
('country_Turks_and_Caicos_Islands_217',
'state_East_Caicos_3933'),
('country_Turks_and_Caicos_Islands_217',
'state_Middle_Caicos_3934'),
('country_Turks_and_Caicos_Islands_217',
'state_North_Caicos_3935'),
('country_Turks_and_Caicos_Islands_217',
'state_Providenciales_3936'),
('country_Turks_and_Caicos_Islands_217',
'state_West_Caicos_3937'),
('country_Tuvalu_218', 'state_Funafuti_3938'),
('country_Tuvalu_218', 'state_Nanumea_3939'),
('country_Tuvalu_218', 'state_Nanumanga_3940'),
('country_Tuvalu_218', 'state_Niutao_3941'),
('country_Tuvalu_218', 'state_Nui_3942'),
('country_Tuvalu_218', 'state_Nukufetau_3943'),
('country_Tuvalu_218', 'state_Nukulaelae_3944'),
('country_Tuvalu_218', 'state_Vaitupu_3945'),
('country_Uganda_219', 'state_Kalangala_3946'),
('country_Uganda_219', 'state_Kampala_3947'),
('country_Uganda_219', 'state_Kiboga_3948'),
('country_Uganda_219', 'state_Luwero_3949'),
('country_Uganda_219', 'state_Masaka_3950'),
('country_Uganda_219', 'state_Mpigi_3951'),
('country_Uganda_219', 'state_Mubende_3952'),
('country_Uganda_219', 'state_Mukono_3953'),
('country_Uganda_219', 'state_Nakasongola_3954'),
('country_Uganda_219', 'state_Rakai_3955'),
('country_Uganda_219', 'state_Sembabule_3956'),
('country_Uganda_219', 'state_Kayunga_3957'),
('country_Uganda_219', 'state_Wakiso_3958'),
('country_Uganda_219', 'state_Bugiri_3959'),
('country_Uganda_219', 'state_Busia_3960'),
('country_Uganda_219', 'state_Iganga_3961'),
('country_Uganda_219', 'state_Jinja_3962'),
('country_Uganda_219', 'state_Kamuli_3963'),
('country_Uganda_219', 'state_Kapchorwa_3964'),
('country_Uganda_219', 'state_Katakwi_3965'),
('country_Uganda_219', 'state_Kumi_3966'),
('country_Uganda_219', 'state_Mbale_3967'),
('country_Uganda_219', 'state_Pallisa_3968'),
('country_Uganda_219', 'state_Soroti_3969'),
('country_Uganda_219', 'state_Tororo_3970'),
('country_Uganda_219', 'state_Kaberamaido_3971'),
('country_Uganda_219', 'state_Mayuge_3972'),
('country_Uganda_219', 'state_Sironko_3973'),
('country_Uganda_219', 'state_Adjumani_3974'),
('country_Uganda_219', 'state_Apac_3975'),
('country_Uganda_219', 'state_Arua_3976'),
('country_Uganda_219', 'state_Gulu_3977'),
('country_Uganda_219', 'state_Kitgum_3978'),
('country_Uganda_219', 'state_Kotido_3979'),
('country_Uganda_219', 'state_Lira_3980'),
('country_Uganda_219', 'state_Moroto_3981'),
('country_Uganda_219', 'state_Moyo_3982'),
('country_Uganda_219', 'state_Nebbi_3983'),
('country_Uganda_219', 'state_Nakapiripirit_3984'),
('country_Uganda_219', 'state_Pader_3985'),
('country_Uganda_219', 'state_Yumbe_3986'),
('country_Uganda_219', 'state_Bundibugyo_3987'),
('country_Uganda_219', 'state_Bushenyi_3988'),
('country_Uganda_219', 'state_Hoima_3989'),
('country_Uganda_219', 'state_Kabale_3990'),
('country_Uganda_219', 'state_Kabarole_3991'),
('country_Uganda_219', 'state_Kasese_3992'),
('country_Uganda_219', 'state_Kibale_3993'),
('country_Uganda_219', 'state_Kisoro_3994'),
('country_Uganda_219', 'state_Masindi_3995'),
('country_Uganda_219', 'state_Mbarara_3996'),
('country_Uganda_219', 'state_Ntungamo_3997'),
('country_Uganda_219', 'state_Rukungiri_3998'),
('country_Uganda_219', 'state_Kamwenge_3999'),
('country_Uganda_219', 'state_Kanungu_4000'),
('country_Uganda_219', 'state_Kyenjojo_4001'),
('country_Ukraine_220',
'state___________________________________4002'),
('country_Ukraine_220',
'state___________________________________4003'),
('country_Ukraine_220',
'state___________________________________4004'),
('country_Ukraine_220',
'state_________________________________________________4005'),
('country_Ukraine_220',
'state_________________________________4006'),
('country_Ukraine_220',
'state_______________________________________4007'),
('country_Ukraine_220',
'state_____________________________________4008'),
('country_Ukraine_220',
'state_________________________________________4009'),
('country_Ukraine_220',
'state_____________________________________4010'),
('country_Ukraine_220',
'state__________________________________________________4011'),
('country_Ukraine_220', 'state__________4012'),
('country_Ukraine_220',
'state_________________________________4013'),
('country_Ukraine_220',
'state_____________________________________________4014'),
('country_Ukraine_220',
'state________________________4015'),
('country_Ukraine_220',
'state____________________________________________________4016'),
('country_Ukraine_220',
'state___________________________________4017'),
('country_Ukraine_220',
'state_________________________________________4018'),
('country_Ukraine_220',
'state_______________________________4019'),
('country_Ukraine_220',
'state_____________________________________4020'),
('country_Ukraine_220',
'state_______________________________4021'),
('country_Ukraine_220',
'state___________________________________________4022'),
('country_Ukraine_220',
'state_____________________________________4023'),
('country_Ukraine_220',
'state_____________________________________4024'),
('country_Ukraine_220',
'state_______________________________________4025'),
('country_Ukraine_220',
'state___________________________________4026'),
('country_Ukraine_220',
'state_________________________________________4027'),
('country_Ukraine_220',
'state_______________________________________4028'),
('country_United_Kingdom_222',
'state_Argyll_and_Bute_4031'),
('country_United_Kingdom_222',
'state_Bath_and_North_East_Somerset_4037'),
('country_United_Kingdom_222',
'state_Bedfordshire_4039'),
('country_United_Kingdom_222',
'state_Berkshire_4040'),
('country_United_Kingdom_222',
'state_Blaenau_Gwent_4045'),
('country_United_Kingdom_222', 'state_Borders_4055'),
('country_United_Kingdom_222', 'state_Bristol_4060'),
('country_United_Kingdom_222',
'state_Buckinghamshire_4061'),
('country_United_Kingdom_222',
'state_Cambridgeshire_4062'),
('country_United_Kingdom_222',
'state_Carmarthenshire_4074'),
('country_United_Kingdom_222',
'state_Ceredigion_4064'),
('country_United_Kingdom_222', 'state_Cheshire_4066'),
('country_United_Kingdom_222', 'state_Conwy_4080'),
('country_United_Kingdom_222', 'state_Cornwall_4075'),
('country_United_Kingdom_222', 'state_Antrim_4034'),
('country_United_Kingdom_222', 'state_Down_4091'),
('country_United_Kingdom_222', 'state_Durham_4094'),
('country_United_Kingdom_222',
'state_Fermanagh_4107'),
('country_United_Kingdom_222',
'state_Londonderry_4063'),
('country_United_Kingdom_222', 'state_Tyrone_4065'),
('country_United_Kingdom_222', 'state_Cumbria_4072'),
('country_United_Kingdom_222',
'state_Denbighshire_4083'),
('country_United_Kingdom_222',
'state_Derbyshire_4082'),
('country_United_Kingdom_222', 'state_Devon_4085'),
('country_United_Kingdom_222', 'state_Dorset_4090'),
('country_United_Kingdom_222',
'state_Dumbarton_4065'),
('country_United_Kingdom_222',
'state_Dumfries_and_Galloway_4087'),
('country_United_Kingdom_222', 'state_Dyfed_4093'),
('country_United_Kingdom_222',
'state_East_Ayrshire_4096'),
('country_United_Kingdom_222',
'state_East_Dunbartonshire_4098'),
('country_United_Kingdom_222',
'state_East_Renfrewshire_4102'),
('country_United_Kingdom_222',
'state_East_Riding_of_Yorkshire_4103'),
('country_United_Kingdom_222',
'state_East_Sussex_4105'),
('country_United_Kingdom_222',
'state_Edinburgh_4097'),
('country_United_Kingdom_222', 'state_Essex_4104'),
('country_United_Kingdom_222', 'state_Fife_4108'),
('country_United_Kingdom_222',
'state_Flintshire_4109'),
('country_United_Kingdom_222',
'state_Glamorgan_4068'),
('country_United_Kingdom_222', 'state_Glasgow_4111'),
('country_United_Kingdom_222',
'state_Gloucestershire_4112'),
('country_United_Kingdom_222', 'state_Grampian_4110'),
('country_United_Kingdom_222',
'state_Greater_Manchester_4113'),
('country_United_Kingdom_222', 'state_Gwent_4114'),
('country_United_Kingdom_222', 'state_Gwynedd_4115'),
('country_United_Kingdom_222',
'state_Hampshire_4117'),
('country_United_Kingdom_222',
'state_Herefordshire_4120'),
('country_United_Kingdom_222',
'state_Hertfordshire_4126'),
('country_United_Kingdom_222',
'state_Inverclyde_4132'),
('country_United_Kingdom_222',
'state_Isle_of_Wight_4130'),
('country_United_Kingdom_222', 'state_Kent_4135'),
('country_United_Kingdom_222',
'state_Lancashire_4140'),
('country_United_Kingdom_222',
'state_Leicestershire_4144'),
('country_United_Kingdom_222',
'state_Lincolnshire_4146'),
('country_United_Kingdom_222', 'state_London_4149'),
('country_United_Kingdom_222',
'state_Manchester_4153'),
('country_United_Kingdom_222',
'state_Middlesex_4069'),
('country_United_Kingdom_222',
'state_Merseyside_4070'),
('country_United_Kingdom_222', 'state_Norfolk_4169'),
('country_United_Kingdom_222',
'state_North_Ayrshire_4164'),
('country_United_Kingdom_222',
'state_North_Lanarkshire_4171'),
('country_United_Kingdom_222',
'state_North_West_Highlands_4071'),
('country_United_Kingdom_222',
'state_North_Yorkshire_4181'),
('country_United_Kingdom_222',
'state_Northamptonshire_4175'),
('country_United_Kingdom_222',
'state_Northumberland_4165'),
('country_United_Kingdom_222',
'state_Nottinghamshire_4177'),
('country_United_Kingdom_222',
'state_Oxfordshire_4186'),
('country_United_Kingdom_222',
'state_Pembrokeshire_4187'),
('country_United_Kingdom_222', 'state_Powys_4192'),
('country_United_Kingdom_222',
'state_Renfrewshire_4199'),
('country_United_Kingdom_222',
'state_Rhondda_Cynon_Taf_4196'),
('country_United_Kingdom_222',
'state_Shropshire_4211'),
('country_United_Kingdom_222', 'state_Somerset_4218'),
('country_United_Kingdom_222',
'state_South_Ayrshire_4204'),
('country_United_Kingdom_222',
'state_South_Gloucestershire_4208'),
('country_United_Kingdom_222',
'state_South_Lanarkshire_4215'),
('country_United_Kingdom_222',
'state_South_Yorkshire_4228'),
('country_United_Kingdom_222',
'state_Staffordshire_4226'),
('country_United_Kingdom_222', 'state_Suffolk_4206'),
('country_United_Kingdom_222', 'state_Surrey_4220'),
('country_United_Kingdom_222', 'state_Tayside_4235'),
('country_United_Kingdom_222', 'state_Torfaen_4236'),
('country_United_Kingdom_222',
'state_Tyne_and_Wear_4237'),
('country_United_Kingdom_222',
'state_Warwickshire_4240'),
('country_United_Kingdom_222',
'state_West_Lothian_4248'),
('country_United_Kingdom_222',
'state_West_Midlands_4073'),
('country_United_Kingdom_222',
'state_West_Sussex_4257'),
('country_United_Kingdom_222',
'state_West_Yorkshire_4076'),
('country_United_Kingdom_222',
'state_Wiltshire_4245'),
('country_United_Kingdom_222',
'state_Worcestershire_4252'),
('country_United_Kingdom_222',
'state_Aberdeenshire_4554'),
('country_United_Kingdom_222', 'state_Anglesey_4555'),
('country_United_Kingdom_222', 'state_Angus_4506'),
('country_United_Kingdom_222',
'state_Argyllshire_4507'),
('country_United_Kingdom_222', 'state_Ayrshire_4508'),
('country_United_Kingdom_222',
'state_Banffshire_4509'),
('country_United_Kingdom_222',
'state_Berwickshire_4510'),
('country_United_Kingdom_222',
'state_Brecknockshire_4511'),
('country_United_Kingdom_222',
'state_Buteshire_4512'),
('country_United_Kingdom_222',
'state_Caernarfonshire_4513'),
('country_United_Kingdom_222',
'state_Caithness_4514'),
('country_United_Kingdom_222',
'state_Cardiganshire_4515'),
('country_United_Kingdom_222',
'state_Channel_Isles_4516'),
('country_United_Kingdom_222',
'state_Clackmannanshire_4517'),
('country_United_Kingdom_222',
'state_County_Armagh_4518'),
('country_United_Kingdom_222',
'state_Cumberland_4519'),
('country_United_Kingdom_222',
'state_Dumfriesshire_4520'),
('country_United_Kingdom_222',
'state_Dunbartonshire_4521'),
('country_United_Kingdom_222',
'state_East_Lothian_4522'),
('country_United_Kingdom_222',
'state_Huntingdonshire_4523'),
('country_United_Kingdom_222',
'state_Inverness-shire_4524'),
('country_United_Kingdom_222', 'state_Isle_
of_Islay_4525'),
('country_United_Kingdom_222',
'state_Isle_of_Lewis_4526'),
('country_United_Kingdom_222',
'state_Isle_of_Man_4527'),
('country_United_Kingdom_222',
'state_Isle_of_Skye_4528'),
('country_United_Kingdom_222',
'state_Isles_of_Scilly_4529'),
('country_United_Kingdom_222',
'state_Kincardineshire_4530'),
('country_United_Kingdom_222',
'state_Kinross-Shire_4531'),
('country_United_Kingdom_222',
'state_Kirkcudbrightshire_4532'),
('country_United_Kingdom_222',
'state_Lanarkshire_4533'),
('country_United_Kingdom_222',
'state_Merioneth_4534'),
('country_United_Kingdom_222',
'state_Midlothian_4535'),
('country_United_Kingdom_222',
'state_Monmouthshire_4536'),
('country_United_Kingdom_222',
'state_Montgomeryshire_4537'),
('country_United_Kingdom_222',
'state_Morayshire_4538'),
('country_United_Kingdom_222',
'state_Nairnshire_4539'),
('country_United_Kingdom_222', 'state_Orkney_4540'),
('country_United_Kingdom_222',
'state_Peeblesshire_4541'),
('country_United_Kingdom_222',
'state_Perthshire_4542'),
('country_United_Kingdom_222',
'state_Radnorshire_4543'),
('country_United_Kingdom_222',
'state_Ross-shire_4544'),
('country_United_Kingdom_222',
'state_Roxburghshire_4545'),
('country_United_Kingdom_222', 'state_Rutland_4546'),
('country_United_Kingdom_222',
'state_Selkirkshire_4547'),
('country_United_Kingdom_222', 'state_Shetland_4548'),
('country_United_Kingdom_222',
'state_Stirlingshire_4549'),
('country_United_Kingdom_222', 'state_Sussex_4550'),
('country_United_Kingdom_222',
'state_Sutherland_4551'),
('country_United_Kingdom_222',
'state_Westmorland_4552'),
('country_United_Kingdom_222',
'state_Wigtownshire_4553')";
		$this->db->setQuery($query);
		$this->db->query();
		$query="INSERT IGNORE INTO `#__hikashop_zone_link`
(`zone_parent_namekey`, `zone_child_namekey`) VALUES
('country_United_States_of_America_223',
'state_Alaska_4260'),
('country_United_States_of_America_223',
'state_Alabama_4261'),
('country_United_States_of_America_223',
'state_American_Samoa_4262'),
('country_United_States_of_America_223',
'state_Arkansas_4263'),
('country_United_States_of_America_223',
'state_Arizona_4264'),
('country_United_States_of_America_223',
'state_California_4265'),
('country_United_States_of_America_223',
'state_Colorado_4266'),
('country_United_States_of_America_223',
'state_Connecticut_4267'),
('country_United_States_of_America_223',
'state_District_of_Columbia_4268'),
('country_United_States_of_America_223',
'state_Delaware_4269'),
('country_United_States_of_America_223',
'state_Florida_4270'),
('country_United_States_of_America_223',
'state_Georgia_4271'),
('country_United_States_of_America_223',
'state_Guam_4272'),
('country_United_States_of_America_223',
'state_Hawaii_4273'),
('country_United_States_of_America_223',
'state_Iowa_4274'),
('country_United_States_of_America_223',
'state_Idaho_4275'),
('country_United_States_of_America_223',
'state_Illinois_4276'),
('country_United_States_of_America_223',
'state_Indiana_4277'),
('country_United_States_of_America_223',
'state_Kansas_4278'),
('country_United_States_of_America_223',
'state_Kentucky_4279'),
('country_United_States_of_America_223',
'state_Louisiana_4280'),
('country_United_States_of_America_223',
'state_Massachusetts_4281'),
('country_United_States_of_America_223',
'state_Maryland_4282'),
('country_United_States_of_America_223',
'state_Maine_4283'),
('country_United_States_of_America_223',
'state_Michigan_4284'),
('country_United_States_of_America_223',
'state_Minnesota_4285'),
('country_United_States_of_America_223',
'state_Missouri_4286'),
('country_United_States_of_America_223',
'state_Mississippi_4287'),
('country_United_States_of_America_223',
'state_Montana_4288'),
('country_United_States_of_America_223',
'state_North_Carolina_4289'),
('country_United_States_of_America_223',
'state_North_Dakota_4290'),
('country_United_States_of_America_223',
'state_Nebraska_4291'),
('country_United_States_of_America_223',
'state_New_Hampshire_4292'),
('country_United_States_of_America_223',
'state_New_Jersey_4293'),
('country_United_States_of_America_223',
'state_New_Mexico_4294'),
('country_United_States_of_America_223',
'state_Nevada_4295'),
('country_United_States_of_America_223',
'state_New_York_4296'),
('country_United_States_of_America_223',
'state_Northern_Mariana_Islands_4297'),
('country_United_States_of_America_223',
'state_Ohio_4298'),
('country_United_States_of_America_223',
'state_Oklahoma_4299'),
('country_United_States_of_America_223',
'state_Oregon_4300'),
('country_United_States_of_America_223',
'state_Pennsylvania_4301'),
('country_United_States_of_America_223',
'state_Puerto_Rico_4302'),
('country_United_States_of_America_223',
'state_Rhode_Island_4303'),
('country_United_States_of_America_223',
'state_South_Carolina_4304'),
('country_United_States_of_America_223',
'state_South_Dakota_4305'),
('country_United_States_of_America_223',
'state_Tennessee_4306'),
('country_United_States_of_America_223',
'state_Texas_4307'),
('country_United_States_of_America_223',
'state_U_S__Minor_Outlying_Islands_4308'),
('country_United_States_of_America_223',
'state_Utah_4309'),
('country_United_States_of_America_223',
'state_Virginia_4310'),
('country_United_States_of_America_223',
'state_Virgin_Islands_of_the_U_S__4311'),
('country_United_States_of_America_223',
'state_Vermont_4312'),
('country_United_States_of_America_223',
'state_Washington_4313'),
('country_United_States_of_America_223',
'state_Wisconsin_4314'),
('country_United_States_of_America_223',
'state_West_Virginia_4315'),
('country_United_States_of_America_223',
'state_Wyoming_4316'),
('country_United_States_Minor_Outlying_Islands_224',
'state_Baker_Island_4317'),
('country_United_States_Minor_Outlying_Islands_224',
'state_Howland_Island_4318'),
('country_United_States_Minor_Outlying_Islands_224',
'state_Jarvis_Island_4319'),
('country_United_States_Minor_Outlying_Islands_224',
'state_Johnston_Atoll_4320'),
('country_United_States_Minor_Outlying_Islands_224',
'state_Kingman_Reef_4321'),
('country_United_States_Minor_Outlying_Islands_224',
'state_Midway_Atoll_4322'),
('country_United_States_Minor_Outlying_Islands_224',
'state_Navassa_Island_4323'),
('country_United_States_Minor_Outlying_Islands_224',
'state_Palmyra_Atoll_4324'),
('country_United_States_Minor_Outlying_Islands_224',
'state_Wake_Island_4325'),
('country_Uruguay_225', 'state_Artigas_4326'),
('country_Uruguay_225', 'state_Canelones_4327'),
('country_Uruguay_225', 'state_Cerro_Largo_4328'),
('country_Uruguay_225', 'state_Colonia_4329'),
('country_Uruguay_225', 'state_Durazno_4330'),
('country_Uruguay_225', 'state_Florida_4331'),
('country_Uruguay_225', 'state_Flores_4332'),
('country_Uruguay_225', 'state_Lavalleja_4333'),
('country_Uruguay_225', 'state_Maldonado_4334'),
('country_Uruguay_225', 'state_Montevideo_4335'),
('country_Uruguay_225', 'state_Paysandu_4336'),
('country_Uruguay_225', 'state_R__o_Negro_4337'),
('country_Uruguay_225', 'state_Rocha_4338'),
('country_Uruguay_225', 'state_Rivera_4339'),
('country_Uruguay_225', 'state_Salto_4340'),
('country_Uruguay_225', 'state_Soriano_4342'),
('country_Uruguay_225', 'state_Tacuaremb___4343'),
('country_Uruguay_225', 'state_Treinta_y_Tres_4344'),
('country_Uzbekistan_226',
'state_Andijon_viloyati_4345'),
('country_Uzbekistan_226',
'state_Buxoro_viloyati_4346'),
('country_Uzbekistan_226',
'state_Farg_ona_viloyati_4347'),
('country_Uzbekistan_226',
'state_Jizzax_viloyati_4348'),
('country_Uzbekistan_226',
'state_Namangan_viloyati_4349'),
('country_Uzbekistan_226',
'state_Navoiy_viloyati_4350'),
('country_Uzbekistan_226',
'state_Qashqadaryo_viloyati_4351'),
('country_Uzbekistan_226',
'state_Qoraqalpog_iston_Respublikasi_4352'),
('country_Uzbekistan_226',
'state_Samarqand_viloyati_4353'),
('country_Uzbekistan_226',
'state_Sirdaryo_viloyati_4354'),
('country_Uzbekistan_226',
'state_Surxondaryo_viloyati_4355'),
('country_Uzbekistan_226', 'state_Toshkent_4356'),
('country_Uzbekistan_226',
'state_Toshkent_viloyati_4357'),
('country_Uzbekistan_226',
'state_Xorazm_viloyati_4358'),
('country_Vanuatu_227', 'state_Malampa_4359'),
('country_Vanuatu_227', 'state_P__nama_4360'),
('country_Vanuatu_227', 'state_Sanma_4361'),
('country_Vanuatu_227', 'state_Sh__fa_4362'),
('country_Vanuatu_227', 'state_Taf__a_4363'),
('country_Vanuatu_227', 'state_Torba_4364'),
('country_Venezuela_229',
'state_Distrito_Capital_4365'),
('country_Venezuela_229', 'state_Anzo__tegui_4366'),
('country_Venezuela_229', 'state_Apure_4367'),
('country_Venezuela_229', 'state_Aragua_4368'),
('country_Venezuela_229', 'state_Barinas_4369'),
('country_Venezuela_229', 'state_Bol__var_4370'),
('country_Venezuela_229', 'state_Carabobo_4371'),
('country_Venezuela_229', 'state_Cojedes_4372'),
('country_Venezuela_229', 'state_Falc__n_4373'),
('country_Venezuela_229', 'state_Gu__rico_4374'),
('country_Venezuela_229', 'state_Lara_4375'),
('country_Venezuela_229', 'state_M__rida_4376'),
('country_Venezuela_229', 'state_Miranda_4377'),
('country_Venezuela_229', 'state_Monagas_4378'),
('country_Venezuela_229', 'state_Nueva_Esparta_4379'),
('country_Venezuela_229', 'state_Portuguesa_4380'),
('country_Venezuela_229', 'state_Sucre_4381'),
('country_Venezuela_229', 'state_Tachira_4382'),
('country_Venezuela_229', 'state_Trujillo_4383'),
('country_Venezuela_229', 'state_Yaracuy_4384'),
('country_Venezuela_229', 'state_Zulia_4385'),
('country_Venezuela_229',
'state_Capital_Dependencia_4386'),
('country_Venezuela_229', 'state_Vargas_4387'),
('country_Venezuela_229', 'state_Delta_Amacuro_4388'),
('country_Venezuela_229', 'state_Amazonas_4389'),
('country_Vietnam_230', 'state_Lai_Ch__u_4390'),
('country_Vietnam_230', 'state_L__o_Cai_4391'),
('country_Vietnam_230', 'state_H___Giang_4392'),
('country_Vietnam_230', 'state_Cao_B___ng_4393'),
('country_Vietnam_230', 'state_S__n_La_4394'),
('country_Vietnam_230', 'state_Y__n_B__i_4395'),
('country_Vietnam_230', 'state_Tuy__n_Quang_4396'),
('country_Vietnam_230', 'state_L___ng_S__n_4397'),
('country_Vietnam_230', 'state_Qu___ng_Ninh_4398'),
('country_Vietnam_230', 'state_H__a_B__nh_4399'),
('country_Vietnam_230', 'state_H___T__y_4400'),
('country_Vietnam_230', 'state_Ninh_B__nh_4401'),
('country_Vietnam_230', 'state_Th__i_B__nh_4402'),
('country_Vietnam_230', 'state_Thanh_H__a_4403'),
('country_Vietnam_230', 'state_Ngh____An_4404'),
('country_Vietnam_230', 'state_H___T__nh_4405'),
('country_Vietnam_230', 'state_Qu___ng_B__nh_4406'),
('country_Vietnam_230', 'state_Qu___ng_Tr____4407'),
('country_Vietnam_230',
'state_Th___a_Thi__n_Hu____4408'),
('country_Vietnam_230', 'state_Qu___ng_Nam_4409'),
('country_Vietnam_230', 'state_Kon_Tum_4410'),
('country_Vietnam_230', 'state_Qu___ng_Ng__i_4411'),
('country_Vietnam_230', 'state_Gia_Lai_4412'),
('country_Vietnam_230', 'state_B__nh______nh_4413'),
('country_Vietnam_230', 'state_Ph___Y__n_4414'),
('country_Vietnam_230', 'state______k_L___k_4415'),
('country_Vietnam_230', 'state_Kh__nh_H__a_4416'),
('country_Vietnam_230', 'state_L__m______ng_4417'),
('country_Vietnam_230', 'state_Ninh_Thu___n_4418'),
('country_Vietnam_230', 'state_T__y_Ninh_4419'),
('country_Vietnam_230', 'state______ng_Nai_4420'),
('country_Vietnam_230', 'state_B__nh_Thu___n_4421'),
('country_Vietnam_230', 'state_Long_An_4422'),
('country_Vietnam_230',
'state_B___R___a_V__ng_T__u_4423'),
('country_Vietnam_230', 'state_An_Giang_4424'),
('country_Vietnam_230', 'state______ng_Th__p_4425'),
('country_Vietnam_230', 'state_Ti___n_Giang_4426'),
('country_Vietnam_230', 'state_Ki__n_Giang_4427'),
('country_Vietnam_230', 'state_C___n_Th___4428'),
('country_Vietnam_230', 'state_V__nh_Long_4429'),
('country_Vietnam_230', 'state_B___n_Tre_4430'),
('country_Vietnam_230', 'state_Tr___Vinh_4431'),
('country_Vietnam_230', 'state_S__c_Tr__ng_4432'),
('country_Vietnam_230', 'state_B___c_K___n_4433'),
('country_Vietnam_230', 'state_B___c_Giang_4434'),
('country_Vietnam_230', 'state_B___c_Li__u_4435'),
('country_Vietnam_230', 'state_B___c_Ninh_4436'),
('country_Vietnam_230', 'state_B__nh_D____ng_4437'),
('country_Vietnam_230', 'state_B__nh_Ph_____c_4438'),
('country_Vietnam_230', 'state_C___Mau_4439'),
('country_Vietnam_230', 'state______N___ng_4440'),
('country_Vietnam_230', 'state_H___i_D____ng_4441'),
('country_Vietnam_230', 'state_H___i_Ph__ng_4442'),
('country_Vietnam_230', 'state_H___Nam_4443'),
('country_Vietnam_230', 'state_H___N___i_4444'),
('country_Vietnam_230', 'state_S__i_G__n_4445'),
('country_Vietnam_230', 'state_H__ng_Y__n_4446'),
('country_Vietnam_230', 'state_Nam______nh_4447'),
('country_Vietnam_230', 'state_Ph___Th____4448'),
('country_Vietnam_230', 'state_Th__i_Nguy__n_4449'),
('country_Vietnam_230', 'state_V__nh_Ph__c_4450'),
('country_Vietnam_230', 'state___i___n_Bi__n_4451'),
('country_Vietnam_230', 'state______k_N__ng_4452'),
('country_Vietnam_230', 'state_H___u_Giang_4453'),
('country_Virgin_Islands__U_S___232',
'state_Saint_Croix_4454'),
('country_Wallis_and_Futuna_Islands_233',
'state_Alo_4457'),
('country_Wallis_and_Futuna_Islands_233',
'state_Sigave_4458'),
('country_Wallis_and_Futuna_Islands_233',
'state_Wallis_4459'),
('country_Yemen_235', 'state_____________4460'),
('country_Yemen_235', 'state________4461'),
('country_Yemen_235', 'state____________4462'),
('country_Yemen_235', 'state________________4463'),
('country_Yemen_235', 'state______________4464'),
('country_Yemen_235', 'state__________4465'),
('country_Yemen_235', 'state______________4466'),
('country_Yemen_235', 'state________4467'),
('country_Yemen_235', 'state________________4468'),
('country_Yemen_235', 'state______4469'),
('country_Yemen_235', 'state____________4470'),
('country_Yemen_235', 'state________4471'),
('country_Yemen_235', 'state__________4472'),
('country_Yemen_235', 'state______________4473'),
('country_Yemen_235', 'state________________4474'),
('country_Yemen_235', 'state__________4475'),
('country_Yemen_235', 'state____________4476'),
('country_Yemen_235', 'state__________4477'),
('country_Yemen_235', 'state________4478'),
('country_Zambia_238', 'state_Western_4479'),
('country_Zambia_238', 'state_Central_4480'),
('country_Zambia_238', 'state_Eastern_4481'),
('country_Zambia_238', 'state_Luapula_4482'),
('country_Zambia_238', 'state_Northern_4483'),
('country_Zambia_238', 'state_North_Western_4484'),
('country_Zambia_238', 'state_Southern_4485'),
('country_Zambia_238', 'state_Copperbelt_4486'),
('country_Zambia_238', 'state_Lusaka_4487'),
('country_Zimbabwe_239', 'state_Manicaland_4488'),
('country_Zimbabwe_239',
'state_Mashonaland_Central_4489'),
('country_Zimbabwe_239',
'state_Mashonaland_East_4490'),
('country_Zimbabwe_239', 'state_Midlands_4491'),
('country_Zimbabwe_239',
'state_Matabeleland_North_4492'),
('country_Zimbabwe_239',
'state_Matabeleland_South_4493'),
('country_Zimbabwe_239', 'state_Masvingo_4494'),
('country_Zimbabwe_239',
'state_Mashonaland_West_4495'),
('country_Afghanistan_', '1977'),
('country_Afghanistan_', '1978'),
('country_Japan_107', 'state___________1977'),
('tax_europe_9728', 'country_Germany_81'),
('tax_europe_9728', 'country_Austria_14'),
('tax_europe_9728', 'country_Belgium_21'),
('tax_europe_9728', 'country_Bulgaria_33'),
('tax_europe_9728', 'country_Croatia_53'),
('tax_europe_9728', 'country_Cyprus_55'),
('tax_europe_9728', 'country_Denmark_57'),
('tax_europe_9728', 'country_Spain_195'),
('tax_europe_9728', 'country_Estonia_67'),
('tax_europe_9728', 'country_Finland_72'),
('tax_europe_9728', 'country_France_73'),
('tax_europe_9728',
'country_France__Metropolitan_74'),
('tax_europe_9728', 'country_United_Kingdom_222'),
('tax_europe_9728', 'country_Greece_84'),
('tax_europe_9728', 'country_Hungary_97'),
('tax_europe_9728', 'country_Ireland_103'),
('tax_europe_9728', 'country_Italy_105'),
('tax_europe_9728', 'country_Latvia_117'),
('tax_europe_9728', 'country_Lithuania_123'),
('tax_europe_9728', 'country_Luxembourg_124'),
('tax_europe_9728', 'country_Malta_132'),
('tax_europe_9728', 'country_Netherlands_150'),
('tax_europe_9728', 'country_Poland_170'),
('tax_europe_9728', 'country_Portugal_171'),
('tax_europe_9728', 'country_Czech_Republic_56'),
('tax_europe_9728', 'country_Romania_175'),
('tax_europe_9728', 'country_Slovakia_189'),
('tax_europe_9728', 'country_Slovenia_190'),
('tax_europe_9728', 'country_Sweden_203');";
		$this->db->setQuery($query);
		$this->db->query();

	}
}