Skip to content

Instantly share code, notes, and snippets.

@abdullahbutt
Last active October 26, 2022 14:49
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save abdullahbutt/b89d04266b86e3a508774af24ec49b92 to your computer and use it in GitHub Desktop.
Save abdullahbutt/b89d04266b86e3a508774af24ec49b92 to your computer and use it in GitHub Desktop.
Countries Migration, Model, Seed and Table - Laravel
<?php
use Illuminate\Database\Migrations\Migration;
class SetupCountriesTable extends Migration {
/**
* Run the migrations.
*
* @return void
*/
public function up()
{
// Creates the users table
Schema::create('countries', function($table)
{
$table->unsignedInteger('id')->index();
$table->string('capital', 255)->nullable();
$table->string('citizenship', 255)->nullable();
$table->string('citizenship_ar', 255)->nullable();
$table->string('country_code', 3)->default('');
$table->string('currency', 255)->nullable();
$table->string('currency_code', 255)->nullable();
$table->string('currency_sub_unit', 255)->nullable();
$table->string('currency_symbol', 3)->nullable();
$table->integer('currency_decimals')->nullable();
$table->string('full_name', 255)->nullable();
$table->string('iso_3166_2', 2)->default('');
$table->string('iso_3166_3', 3)->default('');
$table->string('name', 255)->default('');
$table->string('name_ar', 255)->default('');
$table->string('region_code', 3)->default('');
$table->string('sub_region_code', 3)->default('');
$table->boolean('eea')->default(0);
$table->string('calling_code', 3)->nullable();
$table->string('flag', 6)->nullable();
$table->primary('id');
});
}
/**
* Reverse the migrations.
*
* @return void
*/
public function down()
{
Schema::drop('countries');
}
}
<?php
use Illuminate\Database\Migrations\Migration;
class CharifyCountriesTable extends Migration {
/**
* Run the migrations.
*
* @return void
*/
public function up()
{
Schema::table('countries', function($table)
{
DB::statement("ALTER TABLE " . DB::getTablePrefix() . 'countries' . " MODIFY country_code CHAR(3) NOT NULL DEFAULT ''");
DB::statement("ALTER TABLE " . DB::getTablePrefix() . 'countries' . " MODIFY iso_3166_2 CHAR(2) NOT NULL DEFAULT ''");
DB::statement("ALTER TABLE " . DB::getTablePrefix() . 'countries' . " MODIFY iso_3166_3 CHAR(3) NOT NULL DEFAULT ''");
DB::statement("ALTER TABLE " . DB::getTablePrefix() . 'countries' . " MODIFY region_code CHAR(3) NOT NULL DEFAULT ''");
DB::statement("ALTER TABLE " . DB::getTablePrefix() . 'countries' . " MODIFY sub_region_code CHAR(3) NOT NULL DEFAULT ''");
});
}
/**
* Reverse the migrations.
*
* @return void
*/
public function down()
{
Schema::table('countries', function($table)
{
DB::statement("ALTER TABLE " . DB::getTablePrefix() . 'countries' . " MODIFY country_code VARCHAR(3) NOT NULL DEFAULT ''");
DB::statement("ALTER TABLE " . DB::getTablePrefix() . 'countries' . " MODIFY iso_3166_2 VARCHAR(2) NOT NULL DEFAULT ''");
DB::statement("ALTER TABLE " . DB::getTablePrefix() . 'countries' . " MODIFY iso_3166_3 VARCHAR(3) NOT NULL DEFAULT ''");
DB::statement("ALTER TABLE " . DB::getTablePrefix() . 'countries' . " MODIFY region_code VARCHAR(3) NOT NULL DEFAULT ''");
DB::statement("ALTER TABLE " . DB::getTablePrefix() . 'countries' . " MODIFY sub_region_code VARCHAR(3) NOT NULL DEFAULT ''");
});
}
}
-- phpMyAdmin SQL Dump
-- version 5.2.0
-- https://www.phpmyadmin.net/
--
-- Host: localhost
-- Generation Time: Oct 26, 2022 at 02:43 PM
-- Server version: 8.0.31
-- PHP Version: 8.1.11
SET SQL_MODE = "NO_AUTO_VALUE_ON_ZERO";
START TRANSACTION;
SET time_zone = "+00:00";
/*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */;
/*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */;
/*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */;
/*!40101 SET NAMES utf8mb4 */;
--
-- Database: `bp_hsse`
--
-- --------------------------------------------------------
--
-- Table structure for table `countries`
--
DROP TABLE IF EXISTS `countries`;
CREATE TABLE `countries` (
`id` int UNSIGNED NOT NULL,
`capital` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`citizenship` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`citizenship_ar` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`country_code` char(3) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`currency` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`currency_code` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`currency_sub_unit` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`currency_symbol` varchar(3) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`currency_decimals` int DEFAULT NULL,
`full_name` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`iso_3166_2` char(2) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`iso_3166_3` char(3) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`name` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`name_ar` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`region_code` char(3) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`sub_region_code` char(3) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`eea` tinyint(1) NOT NULL DEFAULT '0',
`calling_code` varchar(3) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`flag` varchar(6) COLLATE utf8mb4_unicode_ci DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
--
-- Truncate table before insert `countries`
--
TRUNCATE TABLE `countries`;
--
-- Dumping data for table `countries`
--
INSERT INTO `countries` (`id`, `capital`, `citizenship`, `citizenship_ar`, `country_code`, `currency`, `currency_code`, `currency_sub_unit`, `currency_symbol`, `currency_decimals`, `full_name`, `iso_3166_2`, `iso_3166_3`, `name`, `name_ar`, `region_code`, `sub_region_code`, `eea`, `calling_code`, `flag`) VALUES
(4, 'Kabul', 'Afghan', 'أفغانستاني', '004', 'afghani', 'AFN', 'pul', '؋', 2, 'Islamic Republic of Afghanistan', 'AF', 'AFG', 'Afghanistan', 'أفغانستان', '142', '034', 0, '93', 'AF.png'),
(8, 'Tirana', 'Albanian', 'ألباني', '008', 'lek', 'ALL', '(qindar (pl. qindarka))', 'Lek', 2, 'Republic of Albania', 'AL', 'ALB', 'Albania', 'ألبانيا', '150', '039', 0, '355', 'AL.png'),
(10, 'Antartica', 'of Antartica', 'أنتاركتيكي', '010', '', '', '', '', 2, 'Antarctica', 'AQ', 'ATA', 'Antarctica', 'أنتاركتيكا', '', '', 0, '672', 'AQ.png'),
(12, 'Algiers', 'Algerian', 'جزائري', '012', 'Algerian dinar', 'DZD', 'centime', 'DZD', 2, 'People’s Democratic Republic of Algeria', 'DZ', 'DZA', 'Algeria', 'الجزائر', '002', '015', 0, '213', 'DZ.png'),
(16, 'Pago Pago', 'American Samoan', 'أمريكي سامواني', '016', 'US dollar', 'USD', 'cent', '$', 2, 'Territory of American', 'AS', 'ASM', 'American Samoa', 'ساموا-الأمريكي', '009', '061', 0, '1', 'AS.png'),
(20, 'Andorra la Vella', 'Andorran', 'أندوري', '020', 'euro', 'EUR', 'cent', '€', 2, 'Principality of Andorra', 'AD', 'AND', 'Andorra', 'أندورا', '150', '039', 0, '376', 'AD.png'),
(24, 'Luanda', 'Angolan', 'أنقولي', '024', 'kwanza', 'AOA', 'cêntimo', 'Kz', 2, 'Republic of Angola', 'AO', 'AGO', 'Angola', 'أنغولا', '002', '017', 0, '244', 'AO.png'),
(28, 'St John’s', 'of Antigua and Barbuda', 'بربودي', '028', 'East Caribbean dollar', 'XCD', 'cent', '$', 2, 'Antigua and Barbuda', 'AG', 'ATG', 'Antigua and Barbuda', 'أنتيغوا وبربودا', '019', '029', 0, '1', 'AG.png'),
(31, 'Baku', 'Azerbaijani', 'أذربيجاني', '031', 'Azerbaijani manat', 'AZN', 'kepik (inv.)', 'ман', 2, 'Republic of Azerbaijan', 'AZ', 'AZE', 'Azerbaijan', 'أذربيجان', '142', '145', 0, '994', 'AZ.png'),
(32, 'Buenos Aires', 'Argentinian', 'أرجنتيني', '032', 'Argentine peso', 'ARS', 'centavo', '$', 2, 'Argentine Republic', 'AR', 'ARG', 'Argentina', 'الأرجنتين', '019', '005', 0, '54', 'AR.png'),
(36, 'Canberra', 'Australian', 'أسترالي', '036', 'Australian dollar', 'AUD', 'cent', '$', 2, 'Commonwealth of Australia', 'AU', 'AUS', 'Australia', 'أستراليا', '009', '053', 0, '61', 'AU.png'),
(40, 'Vienna', 'Austrian', 'نمساوي', '040', 'euro', 'EUR', 'cent', '€', 2, 'Republic of Austria', 'AT', 'AUT', 'Austria', 'النمسا', '150', '155', 1, '43', 'AT.png'),
(44, 'Nassau', 'Bahamian', 'باهاميسي', '044', 'Bahamian dollar', 'BSD', 'cent', '$', 2, 'Commonwealth of the Bahamas', 'BS', 'BHS', 'Bahamas', 'الباهاماس', '019', '029', 0, '1', 'BS.png'),
(48, 'Manama', 'Bahraini', 'بحريني', '048', 'Bahraini dinar', 'BHD', 'fils (inv.)', 'BHD', 3, 'Kingdom of Bahrain', 'BH', 'BHR', 'Bahrain', 'البحرين', '142', '145', 0, '973', 'BH.png'),
(50, 'Dhaka', 'Bangladeshi', 'بنغلاديشي', '050', 'taka (inv.)', 'BDT', 'poisha (inv.)', 'BDT', 2, 'People’s Republic of Bangladesh', 'BD', 'BGD', 'Bangladesh', 'بنغلاديش', '142', '034', 0, '880', 'BD.png'),
(51, 'Yerevan', 'Armenian', 'أرميني', '051', 'dram (inv.)', 'AMD', 'luma', 'AMD', 2, 'Republic of Armenia', 'AM', 'ARM', 'Armenia', 'أرمينيا', '142', '145', 0, '374', 'AM.png'),
(52, 'Bridgetown', 'Barbadian', 'بربادوسي', '052', 'Barbados dollar', 'BBD', 'cent', '$', 2, 'Barbados', 'BB', 'BRB', 'Barbados', 'بربادوس', '019', '029', 0, '1', 'BB.png'),
(56, 'Brussels', 'Belgian', 'بلجيكي', '056', 'euro', 'EUR', 'cent', '€', 2, 'Kingdom of Belgium', 'BE', 'BEL', 'Belgium', 'بلجيكا', '150', '155', 1, '32', 'BE.png'),
(60, 'Hamilton', 'Bermudian', 'برمودي', '060', 'Bermuda dollar', 'BMD', 'cent', '$', 2, 'Bermuda', 'BM', 'BMU', 'Bermuda', 'جزر برمودا', '019', '021', 0, '1', 'BM.png'),
(64, 'Thimphu', 'Bhutanese', 'بوتاني', '064', 'ngultrum (inv.)', 'BTN', 'chhetrum (inv.)', 'BTN', 2, 'Kingdom of Bhutan', 'BT', 'BTN', 'Bhutan', 'بوتان', '142', '034', 0, '975', 'BT.png'),
(68, 'Sucre (BO1)', 'Bolivian', 'بوليفي', '068', 'boliviano', 'BOB', 'centavo', '$b', 2, 'Plurinational State of Bolivia', 'BO', 'BOL', 'Bolivia, Plurinational State of', 'بوليفيا', '019', '005', 0, '591', 'BO.png'),
(70, 'Sarajevo', 'of Bosnia and Herzegovina', 'بوسني/هرسكي', '070', 'convertible mark', 'BAM', 'fening', 'KM', 2, 'Bosnia and Herzegovina', 'BA', 'BIH', 'Bosnia and Herzegovina', 'البوسنة و الهرسك', '150', '039', 0, '387', 'BA.png'),
(72, 'Gaborone', 'Botswanan', 'بوتسواني', '072', 'pula (inv.)', 'BWP', 'thebe (inv.)', 'P', 2, 'Republic of Botswana', 'BW', 'BWA', 'Botswana', 'بوتسوانا', '002', '018', 0, '267', 'BW.png'),
(74, 'Bouvet island', 'of Bouvet island', 'بوفيهي', '074', '', '', '', 'kr', 2, 'Bouvet Island', 'BV', 'BVT', 'Bouvet Island', 'جزيرة بوفيه', '', '', 0, '47', 'BV.png'),
(76, 'Brasilia', 'Brazilian', 'برازيلي', '076', 'real (pl. reais)', 'BRL', 'centavo', 'R$', 2, 'Federative Republic of Brazil', 'BR', 'BRA', 'Brazil', 'البرازيل', '019', '005', 0, '55', 'BR.png'),
(84, 'Belmopan', 'Belizean', 'بيليزي', '084', 'Belize dollar', 'BZD', 'cent', 'BZ$', 2, 'Belize', 'BZ', 'BLZ', 'Belize', 'بيليز', '019', '013', 0, '501', 'BZ.png'),
(86, 'Diego Garcia', 'Changosian', 'إقليم المحيط الهندي البريطاني', '086', 'US dollar', 'USD', 'cent', '$', 2, 'British Indian Ocean Territory', 'IO', 'IOT', 'British Indian Ocean Territory', 'إقليم المحيط الهندي البريطاني', '', '', 0, '246', 'IO.png'),
(90, 'Honiara', 'Solomon Islander', 'جزر سليمان', '090', 'Solomon Islands dollar', 'SBD', 'cent', '$', 2, 'Solomon Islands', 'SB', 'SLB', 'Solomon Islands', 'جزر سليمان', '009', '054', 0, '677', 'SB.png'),
(92, 'Road Town', 'British Virgin Islander;', 'جزر فيرجن البريطانية', '092', 'US dollar', 'USD', 'cent', '$', 2, 'British Virgin Islands', 'VG', 'VGB', 'Virgin Islands, British', 'جزر فرجن البريطانية', '019', '029', 0, '1', 'VG.png'),
(96, 'Bandar Seri Begawan', 'Bruneian', 'بروني', '096', 'Brunei dollar', 'BND', 'sen (inv.)', '$', 2, 'Brunei Darussalam', 'BN', 'BRN', 'Brunei Darussalam', 'بروني', '142', '035', 0, '673', 'BN.png'),
(100, 'Sofia', 'Bulgarian', 'بلغاري', '100', 'lev (pl. leva)', 'BGN', 'stotinka', 'лв', 2, 'Republic of Bulgaria', 'BG', 'BGR', 'Bulgaria', 'بلغاريا', '150', '151', 1, '359', 'BG.png'),
(104, 'Yangon', 'Burmese', 'ميانماري', '104', 'kyat', 'MMK', 'pya', 'K', 2, 'Union of Myanmar/', 'MM', 'MMR', 'Myanmar', 'ميانمار', '142', '035', 0, '95', 'MM.png'),
(108, 'Bujumbura', 'Burundian', 'بورونيدي', '108', 'Burundi franc', 'BIF', 'centime', 'BIF', 0, 'Republic of Burundi', 'BI', 'BDI', 'Burundi', 'بوروندي', '002', '014', 0, '257', 'BI.png'),
(112, 'Minsk', 'Belarusian', 'روسي', '112', 'Belarusian rouble', 'BYR', 'kopek', 'p.', 2, 'Republic of Belarus', 'BY', 'BLR', 'Belarus', 'روسيا البيضاء', '150', '151', 0, '375', 'BY.png'),
(116, 'Phnom Penh', 'Cambodian', 'كمبودي', '116', 'riel', 'KHR', 'sen (inv.)', '៛', 2, 'Kingdom of Cambodia', 'KH', 'KHM', 'Cambodia', 'كمبوديا', '142', '035', 0, '855', 'KH.png'),
(120, 'Yaoundé', 'Cameroonian', 'كاميروني', '120', 'CFA franc (BEAC)', 'XAF', 'centime', 'FCF', 0, 'Republic of Cameroon', 'CM', 'CMR', 'Cameroon', 'كاميرون', '002', '017', 0, '237', 'CM.png'),
(124, 'Ottawa', 'Canadian', 'كندي', '124', 'Canadian dollar', 'CAD', 'cent', '$', 2, 'Canada', 'CA', 'CAN', 'Canada', 'كندا', '019', '021', 0, '1', 'CA.png'),
(132, 'Praia', 'Cape Verdean', 'الرأس الأخضر', '132', 'Cape Verde escudo', 'CVE', 'centavo', 'CVE', 2, 'Republic of Cape Verde', 'CV', 'CPV', 'Cape Verde', 'الرأس الأخضر', '002', '011', 0, '238', 'CV.png'),
(136, 'George Town', 'Caymanian', 'كايماني', '136', 'Cayman Islands dollar', 'KYD', 'cent', '$', 2, 'Cayman Islands', 'KY', 'CYM', 'Cayman Islands', 'جزر كايمان', '019', '029', 0, '1', 'KY.png'),
(140, 'Bangui', 'Central African', 'أفريقي', '140', 'CFA franc (BEAC)', 'XAF', 'centime', 'CFA', 0, 'Central African Republic', 'CF', 'CAF', 'Central African Republic', 'جمهورية أفريقيا الوسطى', '002', '017', 0, '236', 'CF.png'),
(144, 'Colombo', 'Sri Lankan', 'سريلانكي', '144', 'Sri Lankan rupee', 'LKR', 'cent', '₨', 2, 'Democratic Socialist Republic of Sri Lanka', 'LK', 'LKA', 'Sri Lanka', 'سريلانكا', '142', '034', 0, '94', 'LK.png'),
(148, 'N’Djamena', 'Chadian', 'تشادي', '148', 'CFA franc (BEAC)', 'XAF', 'centime', 'XAF', 0, 'Republic of Chad', 'TD', 'TCD', 'Chad', 'تشاد', '002', '017', 0, '235', 'TD.png'),
(152, 'Santiago', 'Chilean', 'شيلي', '152', 'Chilean peso', 'CLP', 'centavo', 'CLP', 0, 'Republic of Chile', 'CL', 'CHL', 'Chile', 'شيلي', '019', '005', 0, '56', 'CL.png'),
(156, 'Beijing', 'Chinese', 'صيني', '156', 'renminbi-yuan (inv.)', 'CNY', 'jiao (10)', '¥', 2, 'People’s Republic of China', 'CN', 'CHN', 'China', 'الصين', '142', '030', 0, '86', 'CN.png'),
(158, 'Taipei', 'Taiwanese', 'تايواني', '158', 'new Taiwan dollar', 'TWD', 'fen (inv.)', 'NT$', 2, 'Republic of China, Taiwan (TW1)', 'TW', 'TWN', 'Taiwan, Province of China', 'تايوان', '142', '030', 0, '886', 'TW.png'),
(162, 'Flying Fish Cove', 'Christmas Islander', 'جزيرة عيد الميلاد', '162', 'Australian dollar', 'AUD', 'cent', '$', 2, 'Christmas Island Territory', 'CX', 'CXR', 'Christmas Island', 'جزيرة عيد الميلاد', '', '', 0, '61', 'CX.png'),
(166, 'Bantam', 'Cocos Islander', 'جزر كوكوس', '166', 'Australian dollar', 'AUD', 'cent', '$', 2, 'Territory of Cocos (Keeling) Islands', 'CC', 'CCK', 'Cocos (Keeling) Islands', 'جزر كوكوس', '', '', 0, '61', 'CC.png'),
(170, 'Santa Fe de Bogotá', 'Colombian', 'كولومبي', '170', 'Colombian peso', 'COP', 'centavo', '$', 2, 'Republic of Colombia', 'CO', 'COL', 'Colombia', 'كولومبيا', '019', '005', 0, '57', 'CO.png'),
(174, 'Moroni', 'Comorian', 'جزر القمر', '174', 'Comorian franc', 'KMF', '', 'KMF', 0, 'Union of the Comoros', 'KM', 'COM', 'Comoros', 'جزر القمر', '002', '014', 0, '269', 'KM.png'),
(175, 'Mamoudzou', 'Mahorais', 'مايوتي', '175', 'euro', 'EUR', 'cent', '€', 2, 'Departmental Collectivity of Mayotte', 'YT', 'MYT', 'Mayotte', 'مايوت', '002', '014', 0, '262', 'YT.png'),
(178, 'Brazzaville', 'Congolese', 'كونغي', '178', 'CFA franc (BEAC)', 'XAF', 'centime', 'FCF', 0, 'Republic of the Congo', 'CG', 'COG', 'Congo', 'الكونغو', '002', '017', 0, '242', 'CG.png'),
(180, 'Kinshasa', 'Congolese', 'كونغي', '180', 'Congolese franc', 'CDF', 'centime', 'CDF', 2, 'Democratic Republic of the Congo', 'CD', 'COD', 'Congo, the Democratic Republic of the', 'جمهورية الكونغو الديمقراطية', '002', '017', 0, '243', 'CD.png'),
(184, 'Avarua', 'Cook Islander', 'جزر كوك', '184', 'New Zealand dollar', 'NZD', 'cent', '$', 2, 'Cook Islands', 'CK', 'COK', 'Cook Islands', 'جزر كوك', '009', '061', 0, '682', 'CK.png'),
(188, 'San José', 'Costa Rican', 'كوستاريكي', '188', 'Costa Rican colón (pl. colones)', 'CRC', 'céntimo', '₡', 2, 'Republic of Costa Rica', 'CR', 'CRI', 'Costa Rica', 'كوستاريكا', '019', '013', 0, '506', 'CR.png'),
(191, 'Zagreb', 'Croatian', 'كوراتي', '191', 'kuna (inv.)', 'HRK', 'lipa (inv.)', 'kn', 2, 'Republic of Croatia', 'HR', 'HRV', 'Croatia', 'كرواتيا', '150', '039', 1, '385', 'HR.png'),
(192, 'Havana', 'Cuban', 'كوبي', '192', 'Cuban peso', 'CUP', 'centavo', '₱', 2, 'Republic of Cuba', 'CU', 'CUB', 'Cuba', 'كوبا', '019', '029', 0, '53', 'CU.png'),
(196, 'Nicosia', 'Cypriot', 'قبرصي', '196', 'euro', 'EUR', 'cent', 'CYP', 2, 'Republic of Cyprus', 'CY', 'CYP', 'Cyprus', 'قبرص', '142', '145', 1, '357', 'CY.png'),
(203, 'Prague', 'Czech', 'تشيكي', '203', 'Czech koruna (pl. koruny)', 'CZK', 'halér', 'Kč', 2, 'Czech Republic', 'CZ', 'CZE', 'Czech Republic', 'الجمهورية التشيكية', '150', '151', 1, '420', 'CZ.png'),
(204, 'Porto Novo (BJ1)', 'Beninese', 'بنيني', '204', 'CFA franc (BCEAO)', 'XOF', 'centime', 'XOF', 0, 'Republic of Benin', 'BJ', 'BEN', 'Benin', 'بنين', '002', '011', 0, '229', 'BJ.png'),
(208, 'Copenhagen', 'Danish', 'دنماركي', '208', 'Danish krone', 'DKK', 'øre (inv.)', 'kr', 2, 'Kingdom of Denmark', 'DK', 'DNK', 'Denmark', 'الدانمارك', '150', '154', 1, '45', 'DK.png'),
(212, 'Roseau', 'Dominican', 'دومينيكي', '212', 'East Caribbean dollar', 'XCD', 'cent', '$', 2, 'Commonwealth of Dominica', 'DM', 'DMA', 'Dominica', 'دومينيكا', '019', '029', 0, '1', 'DM.png'),
(214, 'Santo Domingo', 'Dominican', 'دومينيكي', '214', 'Dominican peso', 'DOP', 'centavo', 'RD$', 2, 'Dominican Republic', 'DO', 'DOM', 'Dominican Republic', 'الجمهورية الدومينيكية', '019', '029', 0, '1', 'DO.png'),
(218, 'Quito', 'Ecuadorian', 'إكوادوري', '218', 'US dollar', 'USD', 'cent', '$', 2, 'Republic of Ecuador', 'EC', 'ECU', 'Ecuador', 'إكوادور', '019', '005', 0, '593', 'EC.png'),
(222, 'San Salvador', 'Salvadoran', 'سلفادوري', '222', 'Salvadorian colón (pl. colones)', 'SVC', 'centavo', '$', 2, 'Republic of El Salvador', 'SV', 'SLV', 'El Salvador', 'إلسلفادور', '019', '013', 0, '503', 'SV.png'),
(226, 'Malabo', 'Equatorial Guinean', 'غيني', '226', 'CFA franc (BEAC)', 'XAF', 'centime', 'FCF', 2, 'Republic of Equatorial Guinea', 'GQ', 'GNQ', 'Equatorial Guinea', 'غينيا الاستوائي', '002', '017', 0, '240', 'GQ.png'),
(231, 'Addis Ababa', 'Ethiopian', 'أثيوبي', '231', 'birr (inv.)', 'ETB', 'cent', 'ETB', 2, 'Federal Democratic Republic of Ethiopia', 'ET', 'ETH', 'Ethiopia', 'أثيوبيا', '002', '014', 0, '251', 'ET.png'),
(232, 'Asmara', 'Eritrean', 'إريتيري', '232', 'nakfa', 'ERN', 'cent', 'Nfk', 2, 'State of Eritrea', 'ER', 'ERI', 'Eritrea', 'إريتريا', '002', '014', 0, '291', 'ER.png'),
(233, 'Tallinn', 'Estonian', 'استوني', '233', 'euro', 'EUR', 'cent', 'kr', 2, 'Republic of Estonia', 'EE', 'EST', 'Estonia', 'استونيا', '150', '154', 1, '372', 'EE.png'),
(234, 'Tórshavn', 'Faeroese', 'جزر فارو', '234', 'Danish krone', 'DKK', 'øre (inv.)', 'kr', 2, 'Faeroe Islands', 'FO', 'FRO', 'Faroe Islands', 'جزر فارو', '150', '154', 0, '298', 'FO.png'),
(238, 'Stanley', 'Falkland Islander', 'فوكلاندي', '238', 'Falkland Islands pound', 'FKP', 'new penny', '£', 2, 'Falkland Islands', 'FK', 'FLK', 'Falkland Islands (Malvinas)', 'جزر فوكلاند', '019', '005', 0, '500', 'FK.png'),
(239, 'King Edward Point (Grytviken)', 'of South Georgia and the South Sandwich Islands', 'لمنطقة القطبية الجنوبية', '239', '', '', '', '£', 2, 'South Georgia and the South Sandwich Islands', 'GS', 'SGS', 'South Georgia and the South Sandwich Islands', 'المنطقة القطبية الجنوبية', '', '', 0, '44', 'GS.png'),
(242, 'Suva', 'Fijian', 'فيجي', '242', 'Fiji dollar', 'FJD', 'cent', '$', 2, 'Republic of Fiji', 'FJ', 'FJI', 'Fiji', 'فيجي', '009', '054', 0, '679', 'FJ.png'),
(246, 'Helsinki', 'Finnish', 'فنلندي', '246', 'euro', 'EUR', 'cent', '€', 2, 'Republic of Finland', 'FI', 'FIN', 'Finland', 'فنلندا', '150', '154', 1, '358', 'FI.png'),
(248, 'Mariehamn', 'Åland Islander', 'آلاندي', '248', 'euro', 'EUR', 'cent', NULL, NULL, 'Åland Islands', 'AX', 'ALA', 'Åland Islands', 'جزر آلاند', '150', '154', 0, '358', NULL),
(250, 'Paris', 'French', 'فرنسي', '250', 'euro', 'EUR', 'cent', '€', 2, 'French Republic', 'FR', 'FRA', 'France', 'فرنسا', '150', '155', 1, '33', 'FR.png'),
(254, 'Cayenne', 'Guianese', 'غويانا الفرنسية', '254', 'euro', 'EUR', 'cent', '€', 2, 'French Guiana', 'GF', 'GUF', 'French Guiana', 'غويانا الفرنسية', '019', '005', 0, '594', 'GF.png'),
(258, 'Papeete', 'Polynesian', 'بولينيزيي', '258', 'CFP franc', 'XPF', 'centime', 'XPF', 0, 'French Polynesia', 'PF', 'PYF', 'French Polynesia', 'بولينيزيا الفرنسية', '009', '061', 0, '689', 'PF.png'),
(260, 'Port-aux-Francais', 'of French Southern and Antarctic Lands', 'أراض فرنسية جنوبية وأنتارتيكية', '260', 'euro', 'EUR', 'cent', '€', 2, 'French Southern and Antarctic Lands', 'TF', 'ATF', 'French Southern and Antarctic Lands', 'أراض فرنسية جنوبية وأنتارتيكية', '', '', 0, '33', 'TF.png'),
(262, 'Djibouti', 'Djiboutian', 'جيبوتي', '262', 'Djibouti franc', 'DJF', '', 'DJF', 0, 'Republic of Djibouti', 'DJ', 'DJI', 'Djibouti', 'جيبوتي', '002', '014', 0, '253', 'DJ.png'),
(266, 'Libreville', 'Gabonese', 'غابوني', '266', 'CFA franc (BEAC)', 'XAF', 'centime', 'FCF', 0, 'Gabonese Republic', 'GA', 'GAB', 'Gabon', 'الغابون', '002', '017', 0, '241', 'GA.png'),
(268, 'Tbilisi', 'Georgian', 'جيورجي', '268', 'lari', 'GEL', 'tetri (inv.)', 'GEL', 2, 'Georgia', 'GE', 'GEO', 'Georgia', 'جيورجيا', '142', '145', 0, '995', 'GE.png'),
(270, 'Banjul', 'Gambian', 'غامبي', '270', 'dalasi (inv.)', 'GMD', 'butut', 'D', 2, 'Republic of the Gambia', 'GM', 'GMB', 'Gambia', 'غامبيا', '002', '011', 0, '220', 'GM.png'),
(275, NULL, 'Palestinian', 'فلسطيني', '275', NULL, NULL, NULL, '₪', 2, NULL, 'PS', 'PSE', 'Palestinian Territory, Occupied', 'فلسطين', '142', '145', 0, '970', 'PS.png'),
(276, 'Berlin', 'German', 'ألماني', '276', 'euro', 'EUR', 'cent', '€', 2, 'Federal Republic of Germany', 'DE', 'DEU', 'Germany', 'ألمانيا', '150', '155', 1, '49', 'DE.png'),
(288, 'Accra', 'Ghanaian', 'غاني', '288', 'Ghana cedi', 'GHS', 'pesewa', '¢', 2, 'Republic of Ghana', 'GH', 'GHA', 'Ghana', 'غانا', '002', '011', 0, '233', 'GH.png'),
(292, 'Gibraltar', 'Gibraltarian', 'جبل طارق', '292', 'Gibraltar pound', 'GIP', 'penny', '£', 2, 'Gibraltar', 'GI', 'GIB', 'Gibraltar', 'جبل طارق', '150', '039', 0, '350', 'GI.png'),
(296, 'Tarawa', 'Kiribatian', 'كيريباتي', '296', 'Australian dollar', 'AUD', 'cent', '$', 2, 'Republic of Kiribati', 'KI', 'KIR', 'Kiribati', 'كيريباتي', '009', '057', 0, '686', 'KI.png'),
(300, 'Athens', 'Greek', 'يوناني', '300', 'euro', 'EUR', 'cent', '€', 2, 'Hellenic Republic', 'GR', 'GRC', 'Greece', 'اليونان', '150', '039', 1, '30', 'GR.png'),
(304, 'Nuuk', 'Greenlander', 'جرينلاندي', '304', 'Danish krone', 'DKK', 'øre (inv.)', 'kr', 2, 'Greenland', 'GL', 'GRL', 'Greenland', 'جرينلاند', '019', '021', 0, '299', 'GL.png'),
(308, 'St George’s', 'Grenadian', 'غرينادي', '308', 'East Caribbean dollar', 'XCD', 'cent', '$', 2, 'Grenada', 'GD', 'GRD', 'Grenada', 'غرينادا', '019', '029', 0, '1', 'GD.png'),
(312, 'Basse Terre', 'Guadeloupean', 'جزر جوادلوب', '312', 'euro', 'EUR ', 'cent', '€', 2, 'Guadeloupe', 'GP', 'GLP', 'Guadeloupe', 'جزر جوادلوب', '019', '029', 0, '590', 'GP.png'),
(316, 'Agaña (Hagåtña)', 'Guamanian', 'جوامي', '316', 'US dollar', 'USD', 'cent', '$', 2, 'Territory of Guam', 'GU', 'GUM', 'Guam', 'جوام', '009', '057', 0, '1', 'GU.png'),
(320, 'Guatemala City', 'Guatemalan', 'غواتيمالي', '320', 'quetzal (pl. quetzales)', 'GTQ', 'centavo', 'Q', 2, 'Republic of Guatemala', 'GT', 'GTM', 'Guatemala', 'غواتيمال', '019', '013', 0, '502', 'GT.png'),
(324, 'Conakry', 'Guinean', 'غيني', '324', 'Guinean franc', 'GNF', '', 'GNF', 0, 'Republic of Guinea', 'GN', 'GIN', 'Guinea', 'غينيا', '002', '011', 0, '224', 'GN.png'),
(328, 'Georgetown', 'Guyanese', 'غياني', '328', 'Guyana dollar', 'GYD', 'cent', '$', 2, 'Cooperative Republic of Guyana', 'GY', 'GUY', 'Guyana', 'غيانا', '019', '005', 0, '592', 'GY.png'),
(332, 'Port-au-Prince', 'Haitian', 'هايتي', '332', 'gourde', 'HTG', 'centime', 'G', 2, 'Republic of Haiti', 'HT', 'HTI', 'Haiti', 'هايتي', '019', '029', 0, '509', 'HT.png'),
(334, 'Territory of Heard Island and McDonald Islands', 'of Territory of Heard Island and McDonald Islands', 'جزيرة هيرد وجزر ماكدونالد', '334', '', '', '', '$', 2, 'Territory of Heard Island and McDonald Islands', 'HM', 'HMD', 'Heard Island and McDonald Islands', 'جزيرة هيرد وجزر ماكدونالد', '', '', 0, '61', 'HM.png'),
(336, 'Vatican City', 'of the Holy See/of the Vatican', 'فاتيكاني', '336', 'euro', 'EUR', 'cent', '€', 2, 'the Holy See/ Vatican City State', 'VA', 'VAT', 'Holy See (Vatican City State)', 'فنزويلا', '150', '039', 0, '39', 'VA.png'),
(340, 'Tegucigalpa', 'Honduran', 'هندوراسي', '340', 'lempira', 'HNL', 'centavo', 'L', 2, 'Republic of Honduras', 'HN', 'HND', 'Honduras', 'هندوراس', '019', '013', 0, '504', 'HN.png'),
(344, '(HK3)', 'Hong Kong Chinese', 'هونغ كونغي', '344', 'Hong Kong dollar', 'HKD', 'cent', '$', 2, 'Hong Kong Special Administrative Region of the People’s Republic of China (HK2)', 'HK', 'HKG', 'Hong Kong', 'هونغ كونغ', '142', '030', 0, '852', 'HK.png'),
(348, 'Budapest', 'Hungarian', 'مجري', '348', 'forint (inv.)', 'HUF', '(fillér (inv.))', 'Ft', 2, 'Republic of Hungary', 'HU', 'HUN', 'Hungary', 'المجر', '150', '151', 1, '36', 'HU.png'),
(352, 'Reykjavik', 'Icelander', 'آيسلندي', '352', 'króna (pl. krónur)', 'ISK', '', 'kr', 0, 'Republic of Iceland', 'IS', 'ISL', 'Iceland', 'آيسلندا', '150', '154', 0, '354', 'IS.png'),
(356, 'New Delhi', 'Indian', 'هندي', '356', 'Indian rupee', 'INR', 'paisa', '₹', 2, 'Republic of India', 'IN', 'IND', 'India', 'الهند', '142', '034', 0, '91', 'IN.png'),
(360, 'Jakarta', 'Indonesian', 'أندونيسيي', '360', 'Indonesian rupiah (inv.)', 'IDR', 'sen (inv.)', 'Rp', 2, 'Republic of Indonesia', 'ID', 'IDN', 'Indonesia', 'أندونيسيا', '142', '035', 0, '62', 'ID.png'),
(364, 'Tehran', 'Iranian', 'إيراني', '364', 'Iranian rial', 'IRR', '(dinar) (IR1)', '﷼', 2, 'Islamic Republic of Iran', 'IR', 'IRN', 'Iran, Islamic Republic of', 'إيران', '142', '034', 0, '98', 'IR.png'),
(368, 'Baghdad', 'Iraqi', 'عراقي', '368', 'Iraqi dinar', 'IQD', 'fils (inv.)', 'IQD', 3, 'Republic of Iraq', 'IQ', 'IRQ', 'Iraq', 'العراق', '142', '145', 0, '964', 'IQ.png'),
(372, 'Dublin', 'Irish', 'إيرلندا', '372', 'euro', 'EUR', 'cent', '€', 2, 'Ireland (IE1)', 'IE', 'IRL', 'Ireland', 'إيرلندي', '150', '154', 1, '353', 'IE.png'),
(376, '(IL1)', 'Israeli', 'إسرائيلي', '376', 'shekel', 'ILS', 'agora', '₪', 2, 'State of Israel', 'IL', 'ISR', 'Israel', 'إسرائيل', '142', '145', 0, '972', 'IL.png'),
(380, 'Rome', 'Italian', 'إيطالي', '380', 'euro', 'EUR', 'cent', '€', 2, 'Italian Republic', 'IT', 'ITA', 'Italy', 'إيطاليا', '150', '039', 1, '39', 'IT.png'),
(384, 'Yamoussoukro (CI1)', 'Ivorian', 'كوت ديفوار', '384', 'CFA franc (BCEAO)', 'XOF', 'centime', 'XOF', 0, 'Republic of Côte d’Ivoire', 'CI', 'CIV', 'Côte d\'Ivoire', 'كوت ديفوار', '002', '011', 0, '225', 'CI.png'),
(388, 'Kingston', 'Jamaican', 'جمايكي', '388', 'Jamaica dollar', 'JMD', 'cent', '$', 2, 'Jamaica', 'JM', 'JAM', 'Jamaica', 'جمايكا', '019', '029', 0, '1', 'JM.png'),
(392, 'Tokyo', 'Japanese', 'ياباني', '392', 'yen (inv.)', 'JPY', '(sen (inv.)) (JP1)', '¥', 0, 'Japan', 'JP', 'JPN', 'Japan', 'اليابان', '142', '030', 0, '81', 'JP.png'),
(398, 'Astana', 'Kazakh', 'كازاخستاني', '398', 'tenge (inv.)', 'KZT', 'tiyn', 'лв', 2, 'Republic of Kazakhstan', 'KZ', 'KAZ', 'Kazakhstan', 'كازاخستان', '142', '143', 0, '7', 'KZ.png'),
(400, 'Amman', 'Jordanian', 'أردني', '400', 'Jordanian dinar', 'JOD', '100 qirsh', 'JOD', 2, 'Hashemite Kingdom of Jordan', 'JO', 'JOR', 'Jordan', 'الأردن', '142', '145', 0, '962', 'JO.png'),
(404, 'Nairobi', 'Kenyan', 'كيني', '404', 'Kenyan shilling', 'KES', 'cent', 'KES', 2, 'Republic of Kenya', 'KE', 'KEN', 'Kenya', 'كينيا', '002', '014', 0, '254', 'KE.png'),
(408, 'Pyongyang', 'North Korean', 'كوري', '408', 'North Korean won (inv.)', 'KPW', 'chun (inv.)', '₩', 2, 'Democratic People’s Republic of Korea', 'KP', 'PRK', 'Korea, Democratic People\'s Republic of', 'كوريا الشمالية', '142', '030', 0, '850', 'KP.png'),
(410, 'Seoul', 'South Korean', 'كوري', '410', 'South Korean won (inv.)', 'KRW', '(chun (inv.))', '₩', 0, 'Republic of Korea', 'KR', 'KOR', 'Korea, Republic of', 'كوريا الجنوبية', '142', '030', 0, '82', 'KR.png'),
(414, 'Kuwait City', 'Kuwaiti', 'كويتي', '414', 'Kuwaiti dinar', 'KWD', 'fils (inv.)', 'KWD', 3, 'State of Kuwait', 'KW', 'KWT', 'Kuwait', 'الكويت', '142', '145', 0, '965', 'KW.png'),
(417, 'Bishkek', 'Kyrgyz', 'قيرغيزستاني', '417', 'som', 'KGS', 'tyiyn', 'лв', 2, 'Kyrgyz Republic', 'KG', 'KGZ', 'Kyrgyzstan', 'قيرغيزستان', '142', '143', 0, '996', 'KG.png'),
(418, 'Vientiane', 'Lao', 'لاوسي', '418', 'kip (inv.)', 'LAK', '(at (inv.))', '₭', 0, 'Lao People’s Democratic Republic', 'LA', 'LAO', 'Lao People\'s Democratic Republic', 'لاوس', '142', '035', 0, '856', 'LA.png'),
(422, 'Beirut', 'Lebanese', 'لبناني', '422', 'Lebanese pound', 'LBP', '(piastre)', '£', 2, 'Lebanese Republic', 'LB', 'LBN', 'Lebanon', 'لبنان', '142', '145', 0, '961', 'LB.png'),
(426, 'Maseru', 'Basotho', 'ليوسيتي', '426', 'loti (pl. maloti)', 'LSL', 'sente', 'L', 2, 'Kingdom of Lesotho', 'LS', 'LSO', 'Lesotho', 'ليسوتو', '002', '018', 0, '266', 'LS.png'),
(428, 'Riga', 'Latvian', 'لاتيفي', '428', 'euro', 'EUR', 'cent', 'Ls', 2, 'Republic of Latvia', 'LV', 'LVA', 'Latvia', 'لاتفيا', '150', '154', 1, '371', 'LV.png'),
(430, 'Monrovia', 'Liberian', 'ليبيري', '430', 'Liberian dollar', 'LRD', 'cent', '$', 2, 'Republic of Liberia', 'LR', 'LBR', 'Liberia', 'ليبيريا', '002', '011', 0, '231', 'LR.png'),
(434, 'Tripoli', 'Libyan', 'ليبي', '434', 'Libyan dinar', 'LYD', 'dirham', 'LYD', 3, 'Socialist People’s Libyan Arab Jamahiriya', 'LY', 'LBY', 'Libya', 'ليبيا', '002', '015', 0, '218', 'LY.png'),
(438, 'Vaduz', 'Liechtensteiner', 'ليختنشتين', '438', 'Swiss franc', 'CHF', 'centime', 'CHF', 2, 'Principality of Liechtenstein', 'LI', 'LIE', 'Liechtenstein', 'ليختنشتيني', '150', '155', 0, '423', 'LI.png'),
(440, 'Vilnius', 'Lithuanian', 'لتوانيي', '440', 'euro', 'EUR', 'cent', 'Lt', 2, 'Republic of Lithuania', 'LT', 'LTU', 'Lithuania', 'لتوانيا', '150', '154', 1, '370', 'LT.png'),
(442, 'Luxembourg', 'Luxembourger', 'لوكسمبورغي', '442', 'euro', 'EUR', 'cent', '€', 2, 'Grand Duchy of Luxembourg', 'LU', 'LUX', 'Luxembourg', 'لوكسمبورغ', '150', '155', 1, '352', 'LU.png'),
(446, 'Macao (MO3)', 'Macanese', 'ماكاوي', '446', 'pataca', 'MOP', 'avo', 'MOP', 2, 'Macao Special Administrative Region of the People’s Republic of China (MO2)', 'MO', 'MAC', 'Macao', 'ماكاو', '142', '030', 0, '853', 'MO.png'),
(450, 'Antananarivo', 'Malagasy', 'مدغشقري', '450', 'ariary', 'MGA', 'iraimbilanja (inv.)', 'MGA', 2, 'Republic of Madagascar', 'MG', 'MDG', 'Madagascar', 'مدغشقر', '002', '014', 0, '261', 'MG.png'),
(454, 'Lilongwe', 'Malawian', 'مالاوي', '454', 'Malawian kwacha (inv.)', 'MWK', 'tambala (inv.)', 'MK', 2, 'Republic of Malawi', 'MW', 'MWI', 'Malawi', 'مالاوي', '002', '014', 0, '265', 'MW.png'),
(458, 'Kuala Lumpur (MY1)', 'Malaysian', 'ماليزي', '458', 'ringgit (inv.)', 'MYR', 'sen (inv.)', 'RM', 2, 'Malaysia', 'MY', 'MYS', 'Malaysia', 'ماليزيا', '142', '035', 0, '60', 'MY.png'),
(462, 'Malé', 'Maldivian', 'مالديفي', '462', 'rufiyaa', 'MVR', 'laari (inv.)', 'Rf', 2, 'Republic of Maldives', 'MV', 'MDV', 'Maldives', 'المالديف', '142', '034', 0, '960', 'MV.png'),
(466, 'Bamako', 'Malian', 'مالي', '466', 'CFA franc (BCEAO)', 'XOF', 'centime', 'XOF', 0, 'Republic of Mali', 'ML', 'MLI', 'Mali', 'مالي', '002', '011', 0, '223', 'ML.png'),
(470, 'Valletta', 'Maltese', 'مالطي', '470', 'euro', 'EUR', 'cent', 'MTL', 2, 'Republic of Malta', 'MT', 'MLT', 'Malta', 'مالطا', '150', '039', 1, '356', 'MT.png'),
(474, 'Fort-de-France', 'Martinican', 'مارتينيكي', '474', 'euro', 'EUR', 'cent', '€', 2, 'Martinique', 'MQ', 'MTQ', 'Martinique', 'مارتينيك', '019', '029', 0, '596', 'MQ.png'),
(478, 'Nouakchott', 'Mauritanian', 'موريتانيي', '478', 'ouguiya', 'MRO', 'khoum', 'UM', 2, 'Islamic Republic of Mauritania', 'MR', 'MRT', 'Mauritania', 'موريتانيا', '002', '011', 0, '222', 'MR.png'),
(480, 'Port Louis', 'Mauritian', 'موريشيوسي', '480', 'Mauritian rupee', 'MUR', 'cent', '₨', 2, 'Republic of Mauritius', 'MU', 'MUS', 'Mauritius', 'موريشيوس', '002', '014', 0, '230', 'MU.png'),
(484, 'Mexico City', 'Mexican', 'مكسيكي', '484', 'Mexican peso', 'MXN', 'centavo', '$', 2, 'United Mexican States', 'MX', 'MEX', 'Mexico', 'المكسيك', '019', '013', 0, '52', 'MX.png'),
(492, 'Monaco', 'Monegasque', 'مونيكي', '492', 'euro', 'EUR', 'cent', '€', 2, 'Principality of Monaco', 'MC', 'MCO', 'Monaco', 'موناكو', '150', '155', 0, '377', 'MC.png'),
(496, 'Ulan Bator', 'Mongolian', 'منغولي', '496', 'tugrik', 'MNT', 'möngö (inv.)', '₮', 2, 'Mongolia', 'MN', 'MNG', 'Mongolia', 'منغوليا', '142', '030', 0, '976', 'MN.png'),
(498, 'Chisinau', 'Moldovan', 'مولديفي', '498', 'Moldovan leu (pl. lei)', 'MDL', 'ban', 'MDL', 2, 'Republic of Moldova', 'MD', 'MDA', 'Moldova, Republic of', 'مولدافيا', '150', '151', 0, '373', 'MD.png'),
(499, 'Podgorica', 'Montenegrin', 'الجبل الأسود', '499', 'euro', 'EUR', 'cent', '€', 2, 'Montenegro', 'ME', 'MNE', 'Montenegro', 'الجبل الأسود', '150', '039', 0, '382', 'ME.png'),
(500, 'Plymouth (MS2)', 'Montserratian', 'مونتسيراتي', '500', 'East Caribbean dollar', 'XCD', 'cent', '$', 2, 'Montserrat', 'MS', 'MSR', 'Montserrat', 'مونتسيرات', '019', '029', 0, '1', 'MS.png'),
(504, 'Rabat', 'Moroccan', 'مغربي', '504', 'Moroccan dirham', 'MAD', 'centime', 'MAD', 2, 'Kingdom of Morocco', 'MA', 'MAR', 'Morocco', 'المغرب', '002', '015', 0, '212', 'MA.png'),
(508, 'Maputo', 'Mozambican', 'موزمبيقي', '508', 'metical', 'MZN', 'centavo', 'MT', 2, 'Republic of Mozambique', 'MZ', 'MOZ', 'Mozambique', 'موزمبيق', '002', '014', 0, '258', 'MZ.png'),
(512, 'Muscat', 'Omani', 'عماني', '512', 'Omani rial', 'OMR', 'baiza', '﷼', 3, 'Sultanate of Oman', 'OM', 'OMN', 'Oman', 'عمان', '142', '145', 0, '968', 'OM.png'),
(516, 'Windhoek', 'Namibian', 'ناميبي', '516', 'Namibian dollar', 'NAD', 'cent', '$', 2, 'Republic of Namibia', 'NA', 'NAM', 'Namibia', 'ناميبيا', '002', '018', 0, '264', 'NA.png'),
(520, 'Yaren', 'Nauruan', 'نوري', '520', 'Australian dollar', 'AUD', 'cent', '$', 2, 'Republic of Nauru', 'NR', 'NRU', 'Nauru', 'نورو', '009', '057', 0, '674', 'NR.png'),
(524, 'Kathmandu', 'Nepalese', 'نيبالي', '524', 'Nepalese rupee', 'NPR', 'paisa (inv.)', '₨', 2, 'Nepal', 'NP', 'NPL', 'Nepal', 'نيبال', '142', '034', 0, '977', 'NP.png'),
(528, 'Amsterdam (NL2)', 'Dutch', 'هولندي', '528', 'euro', 'EUR', 'cent', '€', 2, 'Kingdom of the Netherlands', 'NL', 'NLD', 'Netherlands', 'هولندا', '150', '155', 1, '31', 'NL.png'),
(531, 'Willemstad', 'Curaçaoan', 'كوراساوي', '531', 'Netherlands Antillean guilder (CW1)', 'ANG', 'cent', NULL, NULL, 'Curaçao', 'CW', 'CUW', 'Curaçao', 'كوراساو', '019', '029', 0, '599', NULL),
(533, 'Oranjestad', 'Aruban', 'أوروبهيني', '533', 'Aruban guilder', 'AWG', 'cent', 'ƒ', 2, 'Aruba', 'AW', 'ABW', 'Aruba', 'أروبه', '019', '029', 0, '297', 'AW.png'),
(534, 'Philipsburg', 'Sint Maartener', 'ساينت مارتني هولندي', '534', 'Netherlands Antillean guilder (SX1)', 'ANG', 'cent', NULL, NULL, 'Sint Maarten', 'SX', 'SXM', 'Sint Maarten (Dutch part)', 'ساينت مارتن هولندي', '019', '029', 0, '721', NULL),
(535, NULL, 'of Bonaire, Sint Eustatius and Saba', 'من بونير ، سينت أوستاتيوس وسابا', '535', 'US dollar', 'USD', 'cent', NULL, NULL, NULL, 'BQ', 'BES', 'Bonaire, Sint Eustatius and Saba', 'بونير ، سينت أوستاتيوس وسابا', '019', '029', 0, '599', NULL),
(540, 'Nouméa', 'New Caledonian', 'كاليدوني', '540', 'CFP franc', 'XPF', 'centime', 'XPF', 0, 'New Caledonia', 'NC', 'NCL', 'New Caledonia', 'كاليدونيا الجديدة', '009', '054', 0, '687', 'NC.png'),
(548, 'Port Vila', 'Vanuatuan', 'فانواتي', '548', 'vatu (inv.)', 'VUV', '', 'Vt', 0, 'Republic of Vanuatu', 'VU', 'VUT', 'Vanuatu', 'فانواتو', '009', '054', 0, '678', 'VU.png'),
(554, 'Wellington', 'New Zealander', 'نيوزيلندي', '554', 'New Zealand dollar', 'NZD', 'cent', '$', 2, 'New Zealand', 'NZ', 'NZL', 'New Zealand', 'نيوزيلندا', '009', '053', 0, '64', 'NZ.png'),
(558, 'Managua', 'Nicaraguan', 'نيكاراجوي', '558', 'córdoba oro', 'NIO', 'centavo', 'C$', 2, 'Republic of Nicaragua', 'NI', 'NIC', 'Nicaragua', 'نيكاراجوا', '019', '013', 0, '505', 'NI.png'),
(562, 'Niamey', 'Nigerien', 'نيجيري', '562', 'CFA franc (BCEAO)', 'XOF', 'centime', 'XOF', 0, 'Republic of Niger', 'NE', 'NER', 'Niger', 'النيجر', '002', '011', 0, '227', 'NE.png'),
(566, 'Abuja', 'Nigerian', 'نيجيري', '566', 'naira (inv.)', 'NGN', 'kobo (inv.)', '₦', 2, 'Federal Republic of Nigeria', 'NG', 'NGA', 'Nigeria', 'نيجيريا', '002', '011', 0, '234', 'NG.png'),
(570, 'Alofi', 'Niuean', 'ني', '570', 'New Zealand dollar', 'NZD', 'cent', '$', 2, 'Niue', 'NU', 'NIU', 'Niue', 'ني', '009', '061', 0, '683', 'NU.png'),
(574, 'Kingston', 'Norfolk Islander', 'نورفوليكي', '574', 'Australian dollar', 'AUD', 'cent', '$', 2, 'Territory of Norfolk Island', 'NF', 'NFK', 'Norfolk Island', 'جزيرة نورفولك', '009', '053', 0, '672', 'NF.png'),
(578, 'Oslo', 'Norwegian', 'نرويجي', '578', 'Norwegian krone (pl. kroner)', 'NOK', 'øre (inv.)', 'kr', 2, 'Kingdom of Norway', 'NO', 'NOR', 'Norway', 'النرويج', '150', '154', 0, '47', 'NO.png'),
(580, 'Saipan', 'Northern Mariana Islander', 'ماريني', '580', 'US dollar', 'USD', 'cent', '$', 2, 'Commonwealth of the Northern Mariana Islands', 'MP', 'MNP', 'Northern Mariana Islands', 'جزر ماريانا الشمالية', '009', '057', 0, '1', 'MP.png'),
(581, 'United States Minor Outlying Islands', 'of United States Minor Outlying Islands', 'أمريكي', '581', 'US dollar', 'USD', 'cent', '$', 2, 'United States Minor Outlying Islands', 'UM', 'UMI', 'United States Minor Outlying Islands', 'قائمة الولايات والمناطق الأمريكية', '', '', 0, '1', 'UM.png'),
(583, 'Palikir', 'Micronesian', 'مايكرونيزيي', '583', 'US dollar', 'USD', 'cent', '$', 2, 'Federated States of Micronesia', 'FM', 'FSM', 'Micronesia, Federated States of', 'مايكرونيزيا', '009', '057', 0, '691', 'FM.png'),
(584, 'Majuro', 'Marshallese', 'مارشالي', '584', 'US dollar', 'USD', 'cent', '$', 2, 'Republic of the Marshall Islands', 'MH', 'MHL', 'Marshall Islands', 'جزر مارشال', '009', '057', 0, '692', 'MH.png'),
(585, 'Melekeok', 'Palauan', 'بالاوي', '585', 'US dollar', 'USD', 'cent', '$', 2, 'Republic of Palau', 'PW', 'PLW', 'Palau', 'بالاو', '009', '057', 0, '680', 'PW.png'),
(586, 'Islamabad', 'Pakistani', 'باكستاني', '586', 'Pakistani rupee', 'PKR', 'paisa', '₨', 2, 'Islamic Republic of Pakistan', 'PK', 'PAK', 'Pakistan', 'باكستان', '142', '034', 0, '92', 'PK.png'),
(591, 'Panama City', 'Panamanian', 'بنمي', '591', 'balboa', 'PAB', 'centésimo', 'B/.', 2, 'Republic of Panama', 'PA', 'PAN', 'Panama', 'بنما', '019', '013', 0, '507', 'PA.png'),
(598, 'Port Moresby', 'Papua New Guinean', 'بابوي', '598', 'kina (inv.)', 'PGK', 'toea (inv.)', 'PGK', 2, 'Independent State of Papua New Guinea', 'PG', 'PNG', 'Papua New Guinea', 'بابوا غينيا الجديدة', '009', '054', 0, '675', 'PG.png'),
(600, 'Asunción', 'Paraguayan', 'بارغاوي', '600', 'guaraní', 'PYG', 'céntimo', 'Gs', 0, 'Republic of Paraguay', 'PY', 'PRY', 'Paraguay', 'باراغواي', '019', '005', 0, '595', 'PY.png'),
(604, 'Lima', 'Peruvian', 'بيري', '604', 'new sol', 'PEN', 'céntimo', 'S/.', 2, 'Republic of Peru', 'PE', 'PER', 'Peru', 'بيرو', '019', '005', 0, '51', 'PE.png'),
(608, 'Manila', 'Filipino', 'فلبيني', '608', 'Philippine peso', 'PHP', 'centavo', 'Php', 2, 'Republic of the Philippines', 'PH', 'PHL', 'Philippines', 'الفليبين', '142', '035', 0, '63', 'PH.png'),
(612, 'Adamstown', 'Pitcairner', 'بيتكيرني', '612', 'New Zealand dollar', 'NZD', 'cent', '$', 2, 'Pitcairn Islands', 'PN', 'PCN', 'Pitcairn', 'بيتكيرن', '009', '061', 0, '649', 'PN.png'),
(616, 'Warsaw', 'Polish', 'بوليني', '616', 'zloty', 'PLN', 'grosz (pl. groszy)', 'zł', 2, 'Republic of Poland', 'PL', 'POL', 'Poland', 'بولونيا', '150', '151', 1, '48', 'PL.png'),
(620, 'Lisbon', 'Portuguese', 'برتغالي', '620', 'euro', 'EUR', 'cent', '€', 2, 'Portuguese Republic', 'PT', 'PRT', 'Portugal', 'البرتغال', '150', '039', 1, '351', 'PT.png'),
(624, 'Bissau', 'Guinea-Bissau national', 'غيني', '624', 'CFA franc (BCEAO)', 'XOF', 'centime', 'XOF', 0, 'Republic of Guinea-Bissau', 'GW', 'GNB', 'Guinea-Bissau', 'غينيا-بيساو', '002', '011', 0, '245', 'GW.png'),
(626, 'Dili', 'East Timorese', 'تيموري', '626', 'US dollar', 'USD', 'cent', '$', 2, 'Democratic Republic of East Timor', 'TL', 'TLS', 'Timor-Leste', 'تيمور الشرقية', '142', '035', 0, '670', 'TL.png'),
(630, 'San Juan', 'Puerto Rican', 'بورتي', '630', 'US dollar', 'USD', 'cent', '$', 2, 'Commonwealth of Puerto Rico', 'PR', 'PRI', 'Puerto Rico', 'بورتو ريكو', '019', '029', 0, '1', 'PR.png'),
(634, 'Doha', 'Qatari', 'قطري', '634', 'Qatari riyal', 'QAR', 'dirham', '﷼', 2, 'State of Qatar', 'QA', 'QAT', 'Qatar', 'قطر', '142', '145', 0, '974', 'QA.png'),
(638, 'Saint-Denis', 'Reunionese', 'ريونيوني', '638', 'euro', 'EUR', 'cent', '€', 2, 'Réunion', 'RE', 'REU', 'Réunion', 'ريونيون', '002', '014', 0, '262', 'RE.png'),
(642, 'Bucharest', 'Romanian', 'روماني', '642', 'Romanian leu (pl. lei)', 'RON', 'ban (pl. bani)', 'lei', 2, 'Romania', 'RO', 'ROU', 'Romania', 'ريونيوني', '150', '151', 1, '40', 'RO.png'),
(643, 'Moscow', 'Russian', 'روسي', '643', 'Russian rouble', 'RUB', 'kopek', 'руб', 2, 'Russian Federation', 'RU', 'RUS', 'Russian Federation', 'روسيا', '150', '151', 0, '7', 'RU.png'),
(646, 'Kigali', 'Rwandan; Rwandese', 'رواندا', '646', 'Rwandese franc', 'RWF', 'centime', 'RWF', 0, 'Republic of Rwanda', 'RW', 'RWA', 'Rwanda', 'رواندا', '002', '014', 0, '250', 'RW.png'),
(652, 'Gustavia', 'of Saint Barthélemy', 'سان بارتيلمي', '652', 'euro', 'EUR', 'cent', NULL, NULL, 'Collectivity of Saint Barthélemy', 'BL', 'BLM', 'Saint Barthélemy', 'سان بارتيلمي', '019', '029', 0, '590', NULL),
(654, 'Jamestown', 'Saint Helenian', 'هيلاني', '654', 'Saint Helena pound', 'SHP', 'penny', '£', 2, 'Saint Helena, Ascension and Tristan da Cunha', 'SH', 'SHN', 'Saint Helena, Ascension and Tristan da Cunha', 'سانت هيلانة', '002', '011', 0, '290', 'SH.png'),
(659, 'Basseterre', 'Kittsian; Nevisian', 'سانت كيتس ونيفس', '659', 'East Caribbean dollar', 'XCD', 'cent', '$', 2, 'Federation of Saint Kitts and Nevis', 'KN', 'KNA', 'Saint Kitts and Nevis', 'سانت كيتس ونيفس', '019', '029', 0, '1', 'KN.png'),
(660, 'The Valley', 'Anguillan', 'أنغويلي', '660', 'East Caribbean dollar', 'XCD', 'cent', '$', 2, 'Anguilla', 'AI', 'AIA', 'Anguilla', 'أنغويلا', '019', '029', 0, '1', 'AI.png'),
(662, 'Castries', 'Saint Lucian', 'سانت لوسيا', '662', 'East Caribbean dollar', 'XCD', 'cent', '$', 2, 'Saint Lucia', 'LC', 'LCA', 'Saint Lucia', 'سانت لوسيا', '019', '029', 0, '1', 'LC.png'),
(663, 'Marigot', 'of Saint Martin', 'ساينت مارتني فرنسي', '663', 'euro', 'EUR', 'cent', NULL, NULL, 'Collectivity of Saint Martin', 'MF', 'MAF', 'Saint Martin (French part)', 'ساينت مارتن فرنسي', '019', '029', 0, '590', NULL),
(666, 'Saint-Pierre', 'St-Pierrais; Miquelonnais', 'سان بيير وميكلوني', '666', 'euro', 'EUR', 'cent', '€', 2, 'Territorial Collectivity of Saint Pierre and Miquelon', 'PM', 'SPM', 'Saint Pierre and Miquelon', 'سان بيير وميكلون', '019', '021', 0, '508', 'PM.png'),
(670, 'Kingstown', 'Vincentian', 'سانت فنسنت وجزر غرينادين', '670', 'East Caribbean dollar', 'XCD', 'cent', '$', 2, 'Saint Vincent and the Grenadines', 'VC', 'VCT', 'Saint Vincent and the Grenadines', 'سانت فنسنت وجزر غرينادين', '019', '029', 0, '1', 'VC.png'),
(674, 'San Marino', 'San Marinese', 'ماريني', '674', 'euro', 'EUR ', 'cent', '€', 2, 'Republic of San Marino', 'SM', 'SMR', 'San Marino', 'سان مارينو', '150', '039', 0, '378', 'SM.png'),
(678, 'São Tomé', 'São Toméan', 'ساو تومي وبرينسيبي', '678', 'dobra', 'STD', 'centavo', 'Db', 2, 'Democratic Republic of São Tomé and Príncipe', 'ST', 'STP', 'Sao Tome and Principe', 'ساو تومي وبرينسيبي', '002', '017', 0, '239', 'ST.png'),
(682, 'Riyadh', 'Saudi Arabian', 'سعودي', '682', 'riyal', 'SAR', 'halala', '﷼', 2, 'Kingdom of Saudi Arabia', 'SA', 'SAU', 'Saudi Arabia', 'المملكة العربية السعودية', '142', '145', 0, '966', 'SA.png'),
(686, 'Dakar', 'Senegalese', 'سنغالي', '686', 'CFA franc (BCEAO)', 'XOF', 'centime', 'XOF', 0, 'Republic of Senegal', 'SN', 'SEN', 'Senegal', 'السنغال', '002', '011', 0, '221', 'SN.png'),
(688, 'Belgrade', 'Serb', 'صربي', '688', 'Serbian dinar', 'RSD', 'para (inv.)', NULL, NULL, 'Republic of Serbia', 'RS', 'SRB', 'Serbia', 'صربيا', '150', '039', 0, '381', NULL),
(690, 'Victoria', 'Seychellois', 'سيشيلي', '690', 'Seychelles rupee', 'SCR', 'cent', '₨', 2, 'Republic of Seychelles', 'SC', 'SYC', 'Seychelles', 'سيشيل', '002', '014', 0, '248', 'SC.png'),
(694, 'Freetown', 'Sierra Leonean', 'سيراليوني', '694', 'leone', 'SLL', 'cent', 'Le', 2, 'Republic of Sierra Leone', 'SL', 'SLE', 'Sierra Leone', 'سيراليون', '002', '011', 0, '232', 'SL.png'),
(702, 'Singapore', 'Singaporean', 'سنغافوري', '702', 'Singapore dollar', 'SGD', 'cent', '$', 2, 'Republic of Singapore', 'SG', 'SGP', 'Singapore', 'سنغافورة', '142', '035', 0, '65', 'SG.png'),
(703, 'Bratislava', 'Slovak', 'سولفاكي', '703', 'euro', 'EUR', 'cent', 'Sk', 2, 'Slovak Republic', 'SK', 'SVK', 'Slovakia', 'سلوفاكيا', '150', '151', 1, '421', 'SK.png'),
(704, 'Hanoi', 'Vietnamese', 'فيتنامي', '704', 'dong', 'VND', '(10 hào', '₫', 2, 'Socialist Republic of Vietnam', 'VN', 'VNM', 'Viet Nam', 'فيتنام', '142', '035', 0, '84', 'VN.png'),
(705, 'Ljubljana', 'Slovene', 'سولفيني', '705', 'euro', 'EUR', 'cent', '€', 2, 'Republic of Slovenia', 'SI', 'SVN', 'Slovenia', 'سلوفينيا', '150', '039', 1, '386', 'SI.png'),
(706, 'Mogadishu', 'Somali', 'صومالي', '706', 'Somali shilling', 'SOS', 'cent', 'S', 2, 'Somali Republic', 'SO', 'SOM', 'Somalia', 'الصومال', '002', '014', 0, '252', 'SO.png'),
(710, 'Pretoria (ZA1)', 'South African', 'أفريقي', '710', 'rand', 'ZAR', 'cent', 'R', 2, 'Republic of South Africa', 'ZA', 'ZAF', 'South Africa', 'جنوب أفريقيا', '002', '018', 0, '27', 'ZA.png'),
(716, 'Harare', 'Zimbabwean', 'زمبابوي', '716', 'Zimbabwe dollar (ZW1)', 'ZWL', 'cent', 'Z$', 2, 'Republic of Zimbabwe', 'ZW', 'ZWE', 'Zimbabwe', 'زمبابوي', '002', '014', 0, '263', 'ZW.png'),
(724, 'Madrid', 'Spaniard', 'إسباني', '724', 'euro', 'EUR', 'cent', '€', 2, 'Kingdom of Spain', 'ES', 'ESP', 'Spain', 'إسبانيا', '150', '039', 1, '34', 'ES.png'),
(728, 'Juba', 'South Sudanese', 'سوادني جنوبي', '728', 'South Sudanese pound', 'SSP', 'piaster', NULL, NULL, 'Republic of South Sudan', 'SS', 'SSD', 'South Sudan', 'السودان الجنوبي', '002', '015', 0, '211', NULL),
(729, 'Khartoum', 'Sudanese', 'سوداني', '729', 'Sudanese pound', 'SDG', 'piastre', NULL, NULL, 'Republic of the Sudan', 'SD', 'SDN', 'Sudan', 'السودان', '002', '015', 0, '249', NULL),
(732, 'Al aaiun', 'Sahrawi', 'صحراوي', '732', 'Moroccan dirham', 'MAD', 'centime', 'MAD', 2, 'Western Sahara', 'EH', 'ESH', 'Western Sahara', 'الصحراء الغربية', '002', '015', 0, '212', 'EH.png'),
(740, 'Paramaribo', 'Surinamese', 'سورينامي', '740', 'Surinamese dollar', 'SRD', 'cent', '$', 2, 'Republic of Suriname', 'SR', 'SUR', 'Suriname', 'سورينام', '019', '005', 0, '597', 'SR.png'),
(744, 'Longyearbyen', 'of Svalbard', 'سفالبارد ويان ماين', '744', 'Norwegian krone (pl. kroner)', 'NOK', 'øre (inv.)', 'kr', 2, 'Svalbard and Jan Mayen', 'SJ', 'SJM', 'Svalbard and Jan Mayen', 'سفالبارد ويان ماين', '150', '154', 0, '47', 'SJ.png'),
(748, 'Mbabane', 'Swazi', 'سوازيلندي', '748', 'lilangeni', 'SZL', 'cent', 'SZL', 2, 'Kingdom of Swaziland', 'SZ', 'SWZ', 'Swaziland', 'سوازيلند', '002', '018', 0, '268', 'SZ.png'),
(752, 'Stockholm', 'Swedish', 'سويدي', '752', 'krona (pl. kronor)', 'SEK', 'öre (inv.)', 'kr', 2, 'Kingdom of Sweden', 'SE', 'SWE', 'Sweden', 'السويد', '150', '154', 1, '46', 'SE.png'),
(756, 'Berne', 'Swiss', 'سويسري', '756', 'Swiss franc', 'CHF', 'centime', 'CHF', 2, 'Swiss Confederation', 'CH', 'CHE', 'Switzerland', 'سويسرا', '150', '155', 0, '41', 'CH.png'),
(760, 'Damascus', 'Syrian', 'سوري', '760', 'Syrian pound', 'SYP', 'piastre', '£', 2, 'Syrian Arab Republic', 'SY', 'SYR', 'Syrian Arab Republic', 'سوريا', '142', '145', 0, '963', 'SY.png'),
(762, 'Dushanbe', 'Tajik', 'طاجيكستاني', '762', 'somoni', 'TJS', 'diram', 'TJS', 2, 'Republic of Tajikistan', 'TJ', 'TJK', 'Tajikistan', 'طاجيكستان', '142', '143', 0, '992', 'TJ.png'),
(764, 'Bangkok', 'Thai', 'تايلندي', '764', 'baht (inv.)', 'THB', 'satang (inv.)', '฿', 2, 'Kingdom of Thailand', 'TH', 'THA', 'Thailand', 'تايلندا', '142', '035', 0, '66', 'TH.png'),
(768, 'Lomé', 'Togolese', 'توغي', '768', 'CFA franc (BCEAO)', 'XOF', 'centime', 'XOF', 0, 'Togolese Republic', 'TG', 'TGO', 'Togo', 'توغو', '002', '011', 0, '228', 'TG.png'),
(772, '(TK2)', 'Tokelauan', 'توكيلاوي', '772', 'New Zealand dollar', 'NZD', 'cent', '$', 2, 'Tokelau', 'TK', 'TKL', 'Tokelau', 'توكيلاو', '009', '061', 0, '690', 'TK.png'),
(776, 'Nuku’alofa', 'Tongan', 'تونغي', '776', 'pa’anga (inv.)', 'TOP', 'seniti (inv.)', 'T$', 2, 'Kingdom of Tonga', 'TO', 'TON', 'Tonga', 'تونغا', '009', '061', 0, '676', 'TO.png'),
(780, 'Port of Spain', 'Trinidadian; Tobagonian', 'ترينيداد وتوباغو', '780', 'Trinidad and Tobago dollar', 'TTD', 'cent', 'TT$', 2, 'Republic of Trinidad and Tobago', 'TT', 'TTO', 'Trinidad and Tobago', 'ترينيداد وتوباغو', '019', '029', 0, '1', 'TT.png'),
(784, 'Abu Dhabi', 'Emirian', 'إماراتي', '784', 'UAE dirham', 'AED', 'fils (inv.)', 'AED', 2, 'United Arab Emirates', 'AE', 'ARE', 'United Arab Emirates', 'الإمارات العربية المتحدة', '142', '145', 0, '971', 'AE.png'),
(788, 'Tunis', 'Tunisian', 'تونسي', '788', 'Tunisian dinar', 'TND', 'millime', 'TND', 3, 'Republic of Tunisia', 'TN', 'TUN', 'Tunisia', 'تونس', '002', '015', 0, '216', 'TN.png'),
(792, 'Ankara', 'Turk', 'تركي', '792', 'Turkish lira (inv.)', 'TRY', 'kurus (inv.)', '₺', 2, 'Republic of Turkey', 'TR', 'TUR', 'Turkey', 'تركيا', '142', '145', 0, '90', 'TR.png'),
(795, 'Ashgabat', 'Turkmen', 'تركمانستاني', '795', 'Turkmen manat (inv.)', 'TMT', 'tenge (inv.)', 'm', 2, 'Turkmenistan', 'TM', 'TKM', 'Turkmenistan', 'تركمانستان', '142', '143', 0, '993', 'TM.png'),
(796, 'Cockburn Town', 'Turks and Caicos Islander', 'جزر توركس وكايكوس', '796', 'US dollar', 'USD', 'cent', '$', 2, 'Turks and Caicos Islands', 'TC', 'TCA', 'Turks and Caicos Islands', 'جزر توركس وكايكوس', '019', '029', 0, '1', 'TC.png'),
(798, 'Funafuti', 'Tuvaluan', 'توفالي', '798', 'Australian dollar', 'AUD', 'cent', '$', 2, 'Tuvalu', 'TV', 'TUV', 'Tuvalu', 'توفالو', '009', '061', 0, '688', 'TV.png'),
(800, 'Kampala', 'Ugandan', 'أوغندي', '800', 'Uganda shilling', 'UGX', 'cent', 'UGX', 0, 'Republic of Uganda', 'UG', 'UGA', 'Uganda', 'أوغندا', '002', '014', 0, '256', 'UG.png'),
(804, 'Kiev', 'Ukrainian', 'أوكراني', '804', 'hryvnia', 'UAH', 'kopiyka', '₴', 2, 'Ukraine', 'UA', 'UKR', 'Ukraine', 'أوكرانيا', '150', '151', 0, '380', 'UA.png'),
(807, 'Skopje', 'of the former Yugoslav Republic of Macedonia', 'مقدوني', '807', 'denar (pl. denars)', 'MKD', 'deni (inv.)', 'ден', 2, 'the former Yugoslav Republic of Macedonia', 'MK', 'MKD', 'Macedonia, the former Yugoslav Republic of', 'مقدونيا', '150', '039', 0, '389', 'MK.png'),
(818, 'Cairo', 'Egyptian', 'مصري', '818', 'Egyptian pound', 'EGP', 'piastre', '£', 2, 'Arab Republic of Egypt', 'EG', 'EGY', 'Egypt', 'مصر', '002', '015', 0, '20', 'EG.png'),
(826, 'London', 'British', 'بريطاني', '826', 'pound sterling', 'GBP', 'penny (pl. pence)', '£', 2, 'United Kingdom of Great Britain and Northern Ireland', 'GB', 'GBR', 'United Kingdom', 'المملكة المتحدة', '150', '154', 1, '44', 'GB.png'),
(831, 'St Peter Port', 'of Guernsey', 'غيرنزي', '831', 'Guernsey pound (GG2)', 'GGP (GG2)', 'penny (pl. pence)', NULL, NULL, 'Bailiwick of Guernsey', 'GG', 'GGY', 'Guernsey', 'غيرنزي', '150', '154', 0, '44', NULL),
(832, 'St Helier', 'of Jersey', 'جيرزي', '832', 'Jersey pound (JE2)', 'JEP (JE2)', 'penny (pl. pence)', NULL, NULL, 'Bailiwick of Jersey', 'JE', 'JEY', 'Jersey', 'جيرزي', '150', '154', 0, '44', NULL),
(833, 'Douglas', 'Manxman; Manxwoman', 'ماني', '833', 'Manx pound (IM2)', 'IMP (IM2)', 'penny (pl. pence)', NULL, NULL, 'Isle of Man', 'IM', 'IMN', 'Isle of Man', 'جزيرة مان', '150', '154', 0, '44', NULL),
(834, 'Dodoma (TZ1)', 'Tanzanian', 'تنزانيي', '834', 'Tanzanian shilling', 'TZS', 'cent', 'TZS', 2, 'United Republic of Tanzania', 'TZ', 'TZA', 'Tanzania, United Republic of', 'تنزانيا', '002', '014', 0, '255', 'TZ.png'),
(840, 'Washington DC', 'American', 'أمريكي', '840', 'US dollar', 'USD', 'cent', '$', 2, 'United States of America', 'US', 'USA', 'United States', 'الولايات المتحدة', '019', '021', 0, '1', 'US.png'),
(850, 'Charlotte Amalie', 'US Virgin Islander', 'أمريكي', '850', 'US dollar', 'USD', 'cent', '$', 2, 'United States Virgin Islands', 'VI', 'VIR', 'Virgin Islands, U.S.', 'الجزر العذراء الأمريكي', '019', '029', 0, '1', 'VI.png'),
(854, 'Ouagadougou', 'Burkinabe', 'بوركيني', '854', 'CFA franc (BCEAO)', 'XOF', 'centime', 'XOF', 0, 'Burkina Faso', 'BF', 'BFA', 'Burkina Faso', 'بوركينا فاسو', '002', '011', 0, '226', 'BF.png'),
(858, 'Montevideo', 'Uruguayan', 'أورغواي', '858', 'Uruguayan peso', 'UYU', 'centésimo', '$U', 0, 'Eastern Republic of Uruguay', 'UY', 'URY', 'Uruguay', 'أورغواي', '019', '005', 0, '598', 'UY.png'),
(860, 'Tashkent', 'Uzbek', 'أوزباكستاني', '860', 'sum (inv.)', 'UZS', 'tiyin (inv.)', 'лв', 2, 'Republic of Uzbekistan', 'UZ', 'UZB', 'Uzbekistan', 'أوزباكستان', '142', '143', 0, '998', 'UZ.png'),
(862, 'Caracas', 'Venezuelan', 'فنزويلي', '862', 'bolívar fuerte (pl. bolívares fuertes)', 'VEF', 'céntimo', 'Bs', 2, 'Bolivarian Republic of Venezuela', 'VE', 'VEN', 'Venezuela, Bolivarian Republic of', 'فنزويلا', '019', '005', 0, '58', 'VE.png'),
(876, 'Mata-Utu', 'Wallisian; Futunan; Wallis and Futuna Islander', 'فوتوني', '876', 'CFP franc', 'XPF', 'centime', 'XPF', 0, 'Wallis and Futuna', 'WF', 'WLF', 'Wallis and Futuna', 'والس وفوتونا', '009', '061', 0, '681', 'WF.png'),
(882, 'Apia', 'Samoan', 'ساموي', '882', 'tala (inv.)', 'WST', 'sene (inv.)', 'WS$', 2, 'Independent State of Samoa', 'WS', 'WSM', 'Samoa', 'ساموا', '009', '061', 0, '685', 'WS.png'),
(887, 'San’a', 'Yemenite', 'يمني', '887', 'Yemeni rial', 'YER', 'fils (inv.)', '﷼', 2, 'Republic of Yemen', 'YE', 'YEM', 'Yemen', 'اليمن', '142', '145', 0, '967', 'YE.png'),
(894, 'Lusaka', 'Zambian', 'زامبيا', '894', 'Zambian kwacha (inv.)', 'ZMW', 'ngwee (inv.)', 'ZK', 2, 'Republic of Zambia', 'ZM', 'ZMB', 'Zambia', 'زامبياني', '002', '014', 0, '260', 'ZM.png');
--
-- Indexes for dumped tables
--
--
-- Indexes for table `countries`
--
ALTER TABLE `countries`
ADD PRIMARY KEY (`id`),
ADD KEY `countries_id_index` (`id`);
COMMIT;
/*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */;
/*!40101 SET CHARACTER_SET_RESULTS=@OLD_CHARACTER_SET_RESULTS */;
/*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */;
<?php
namespace Database\Seeders;
use Illuminate\Database\Seeder;
class CountriesTableSeeder extends Seeder
{
/**
* Auto generated seed file
*
* @return void
*/
public function run()
{
\DB::table('countries')->delete();
\DB::table('countries')->insert(array (
0 =>
array (
'id' => 4,
'capital' => 'Kabul',
'citizenship' => 'Afghan',
'citizenship_ar' => 'أفغانستاني',
'country_code' => '004',
'currency' => 'afghani',
'currency_code' => 'AFN',
'currency_sub_unit' => 'pul',
'currency_symbol' => '؋',
'currency_decimals' => 2,
'full_name' => 'Islamic Republic of Afghanistan',
'iso_3166_2' => 'AF',
'iso_3166_3' => 'AFG',
'name' => 'Afghanistan',
'name_ar' => 'أفغانستان',
'region_code' => '142',
'sub_region_code' => '034',
'eea' => 0,
'calling_code' => '93',
'flag' => 'AF.png',
),
1 =>
array (
'id' => 8,
'capital' => 'Tirana',
'citizenship' => 'Albanian',
'citizenship_ar' => 'ألباني',
'country_code' => '008',
'currency' => 'lek',
'currency_code' => 'ALL',
'currency_sub_unit' => '(qindar (pl. qindarka))',
'currency_symbol' => 'Lek',
'currency_decimals' => 2,
'full_name' => 'Republic of Albania',
'iso_3166_2' => 'AL',
'iso_3166_3' => 'ALB',
'name' => 'Albania',
'name_ar' => 'ألبانيا',
'region_code' => '150',
'sub_region_code' => '039',
'eea' => 0,
'calling_code' => '355',
'flag' => 'AL.png',
),
2 =>
array (
'id' => 10,
'capital' => 'Antartica',
'citizenship' => 'of Antartica',
'citizenship_ar' => 'أنتاركتيكي',
'country_code' => '010',
'currency' => '',
'currency_code' => '',
'currency_sub_unit' => '',
'currency_symbol' => '',
'currency_decimals' => 2,
'full_name' => 'Antarctica',
'iso_3166_2' => 'AQ',
'iso_3166_3' => 'ATA',
'name' => 'Antarctica',
'name_ar' => 'أنتاركتيكا',
'region_code' => '',
'sub_region_code' => '',
'eea' => 0,
'calling_code' => '672',
'flag' => 'AQ.png',
),
3 =>
array (
'id' => 12,
'capital' => 'Algiers',
'citizenship' => 'Algerian',
'citizenship_ar' => 'جزائري',
'country_code' => '012',
'currency' => 'Algerian dinar',
'currency_code' => 'DZD',
'currency_sub_unit' => 'centime',
'currency_symbol' => 'DZD',
'currency_decimals' => 2,
'full_name' => 'People’s Democratic Republic of Algeria',
'iso_3166_2' => 'DZ',
'iso_3166_3' => 'DZA',
'name' => 'Algeria',
'name_ar' => 'الجزائر',
'region_code' => '002',
'sub_region_code' => '015',
'eea' => 0,
'calling_code' => '213',
'flag' => 'DZ.png',
),
4 =>
array (
'id' => 16,
'capital' => 'Pago Pago',
'citizenship' => 'American Samoan',
'citizenship_ar' => 'أمريكي سامواني',
'country_code' => '016',
'currency' => 'US dollar',
'currency_code' => 'USD',
'currency_sub_unit' => 'cent',
'currency_symbol' => '$',
'currency_decimals' => 2,
'full_name' => 'Territory of American',
'iso_3166_2' => 'AS',
'iso_3166_3' => 'ASM',
'name' => 'American Samoa',
'name_ar' => 'ساموا-الأمريكي',
'region_code' => '009',
'sub_region_code' => '061',
'eea' => 0,
'calling_code' => '1',
'flag' => 'AS.png',
),
5 =>
array (
'id' => 20,
'capital' => 'Andorra la Vella',
'citizenship' => 'Andorran',
'citizenship_ar' => 'أندوري',
'country_code' => '020',
'currency' => 'euro',
'currency_code' => 'EUR',
'currency_sub_unit' => 'cent',
'currency_symbol' => '€',
'currency_decimals' => 2,
'full_name' => 'Principality of Andorra',
'iso_3166_2' => 'AD',
'iso_3166_3' => 'AND',
'name' => 'Andorra',
'name_ar' => 'أندورا',
'region_code' => '150',
'sub_region_code' => '039',
'eea' => 0,
'calling_code' => '376',
'flag' => 'AD.png',
),
6 =>
array (
'id' => 24,
'capital' => 'Luanda',
'citizenship' => 'Angolan',
'citizenship_ar' => 'أنقولي',
'country_code' => '024',
'currency' => 'kwanza',
'currency_code' => 'AOA',
'currency_sub_unit' => 'cêntimo',
'currency_symbol' => 'Kz',
'currency_decimals' => 2,
'full_name' => 'Republic of Angola',
'iso_3166_2' => 'AO',
'iso_3166_3' => 'AGO',
'name' => 'Angola',
'name_ar' => 'أنغولا',
'region_code' => '002',
'sub_region_code' => '017',
'eea' => 0,
'calling_code' => '244',
'flag' => 'AO.png',
),
7 =>
array (
'id' => 28,
'capital' => 'St John’s',
'citizenship' => 'of Antigua and Barbuda',
'citizenship_ar' => 'بربودي',
'country_code' => '028',
'currency' => 'East Caribbean dollar',
'currency_code' => 'XCD',
'currency_sub_unit' => 'cent',
'currency_symbol' => '$',
'currency_decimals' => 2,
'full_name' => 'Antigua and Barbuda',
'iso_3166_2' => 'AG',
'iso_3166_3' => 'ATG',
'name' => 'Antigua and Barbuda',
'name_ar' => 'أنتيغوا وبربودا',
'region_code' => '019',
'sub_region_code' => '029',
'eea' => 0,
'calling_code' => '1',
'flag' => 'AG.png',
),
8 =>
array (
'id' => 31,
'capital' => 'Baku',
'citizenship' => 'Azerbaijani',
'citizenship_ar' => 'أذربيجاني',
'country_code' => '031',
'currency' => 'Azerbaijani manat',
'currency_code' => 'AZN',
'currency_sub_unit' => 'kepik (inv.)',
'currency_symbol' => 'ман',
'currency_decimals' => 2,
'full_name' => 'Republic of Azerbaijan',
'iso_3166_2' => 'AZ',
'iso_3166_3' => 'AZE',
'name' => 'Azerbaijan',
'name_ar' => 'أذربيجان',
'region_code' => '142',
'sub_region_code' => '145',
'eea' => 0,
'calling_code' => '994',
'flag' => 'AZ.png',
),
9 =>
array (
'id' => 32,
'capital' => 'Buenos Aires',
'citizenship' => 'Argentinian',
'citizenship_ar' => 'أرجنتيني',
'country_code' => '032',
'currency' => 'Argentine peso',
'currency_code' => 'ARS',
'currency_sub_unit' => 'centavo',
'currency_symbol' => '$',
'currency_decimals' => 2,
'full_name' => 'Argentine Republic',
'iso_3166_2' => 'AR',
'iso_3166_3' => 'ARG',
'name' => 'Argentina',
'name_ar' => 'الأرجنتين',
'region_code' => '019',
'sub_region_code' => '005',
'eea' => 0,
'calling_code' => '54',
'flag' => 'AR.png',
),
10 =>
array (
'id' => 36,
'capital' => 'Canberra',
'citizenship' => 'Australian',
'citizenship_ar' => 'أسترالي',
'country_code' => '036',
'currency' => 'Australian dollar',
'currency_code' => 'AUD',
'currency_sub_unit' => 'cent',
'currency_symbol' => '$',
'currency_decimals' => 2,
'full_name' => 'Commonwealth of Australia',
'iso_3166_2' => 'AU',
'iso_3166_3' => 'AUS',
'name' => 'Australia',
'name_ar' => 'أستراليا',
'region_code' => '009',
'sub_region_code' => '053',
'eea' => 0,
'calling_code' => '61',
'flag' => 'AU.png',
),
11 =>
array (
'id' => 40,
'capital' => 'Vienna',
'citizenship' => 'Austrian',
'citizenship_ar' => 'نمساوي',
'country_code' => '040',
'currency' => 'euro',
'currency_code' => 'EUR',
'currency_sub_unit' => 'cent',
'currency_symbol' => '€',
'currency_decimals' => 2,
'full_name' => 'Republic of Austria',
'iso_3166_2' => 'AT',
'iso_3166_3' => 'AUT',
'name' => 'Austria',
'name_ar' => 'النمسا',
'region_code' => '150',
'sub_region_code' => '155',
'eea' => 1,
'calling_code' => '43',
'flag' => 'AT.png',
),
12 =>
array (
'id' => 44,
'capital' => 'Nassau',
'citizenship' => 'Bahamian',
'citizenship_ar' => 'باهاميسي',
'country_code' => '044',
'currency' => 'Bahamian dollar',
'currency_code' => 'BSD',
'currency_sub_unit' => 'cent',
'currency_symbol' => '$',
'currency_decimals' => 2,
'full_name' => 'Commonwealth of the Bahamas',
'iso_3166_2' => 'BS',
'iso_3166_3' => 'BHS',
'name' => 'Bahamas',
'name_ar' => 'الباهاماس',
'region_code' => '019',
'sub_region_code' => '029',
'eea' => 0,
'calling_code' => '1',
'flag' => 'BS.png',
),
13 =>
array (
'id' => 48,
'capital' => 'Manama',
'citizenship' => 'Bahraini',
'citizenship_ar' => 'بحريني',
'country_code' => '048',
'currency' => 'Bahraini dinar',
'currency_code' => 'BHD',
'currency_sub_unit' => 'fils (inv.)',
'currency_symbol' => 'BHD',
'currency_decimals' => 3,
'full_name' => 'Kingdom of Bahrain',
'iso_3166_2' => 'BH',
'iso_3166_3' => 'BHR',
'name' => 'Bahrain',
'name_ar' => 'البحرين',
'region_code' => '142',
'sub_region_code' => '145',
'eea' => 0,
'calling_code' => '973',
'flag' => 'BH.png',
),
14 =>
array (
'id' => 50,
'capital' => 'Dhaka',
'citizenship' => 'Bangladeshi',
'citizenship_ar' => 'بنغلاديشي',
'country_code' => '050',
'currency' => 'taka (inv.)',
'currency_code' => 'BDT',
'currency_sub_unit' => 'poisha (inv.)',
'currency_symbol' => 'BDT',
'currency_decimals' => 2,
'full_name' => 'People’s Republic of Bangladesh',
'iso_3166_2' => 'BD',
'iso_3166_3' => 'BGD',
'name' => 'Bangladesh',
'name_ar' => 'بنغلاديش',
'region_code' => '142',
'sub_region_code' => '034',
'eea' => 0,
'calling_code' => '880',
'flag' => 'BD.png',
),
15 =>
array (
'id' => 51,
'capital' => 'Yerevan',
'citizenship' => 'Armenian',
'citizenship_ar' => 'أرميني',
'country_code' => '051',
'currency' => 'dram (inv.)',
'currency_code' => 'AMD',
'currency_sub_unit' => 'luma',
'currency_symbol' => 'AMD',
'currency_decimals' => 2,
'full_name' => 'Republic of Armenia',
'iso_3166_2' => 'AM',
'iso_3166_3' => 'ARM',
'name' => 'Armenia',
'name_ar' => 'أرمينيا',
'region_code' => '142',
'sub_region_code' => '145',
'eea' => 0,
'calling_code' => '374',
'flag' => 'AM.png',
),
16 =>
array (
'id' => 52,
'capital' => 'Bridgetown',
'citizenship' => 'Barbadian',
'citizenship_ar' => 'بربادوسي',
'country_code' => '052',
'currency' => 'Barbados dollar',
'currency_code' => 'BBD',
'currency_sub_unit' => 'cent',
'currency_symbol' => '$',
'currency_decimals' => 2,
'full_name' => 'Barbados',
'iso_3166_2' => 'BB',
'iso_3166_3' => 'BRB',
'name' => 'Barbados',
'name_ar' => 'بربادوس',
'region_code' => '019',
'sub_region_code' => '029',
'eea' => 0,
'calling_code' => '1',
'flag' => 'BB.png',
),
17 =>
array (
'id' => 56,
'capital' => 'Brussels',
'citizenship' => 'Belgian',
'citizenship_ar' => 'بلجيكي',
'country_code' => '056',
'currency' => 'euro',
'currency_code' => 'EUR',
'currency_sub_unit' => 'cent',
'currency_symbol' => '€',
'currency_decimals' => 2,
'full_name' => 'Kingdom of Belgium',
'iso_3166_2' => 'BE',
'iso_3166_3' => 'BEL',
'name' => 'Belgium',
'name_ar' => 'بلجيكا',
'region_code' => '150',
'sub_region_code' => '155',
'eea' => 1,
'calling_code' => '32',
'flag' => 'BE.png',
),
18 =>
array (
'id' => 60,
'capital' => 'Hamilton',
'citizenship' => 'Bermudian',
'citizenship_ar' => 'برمودي',
'country_code' => '060',
'currency' => 'Bermuda dollar',
'currency_code' => 'BMD',
'currency_sub_unit' => 'cent',
'currency_symbol' => '$',
'currency_decimals' => 2,
'full_name' => 'Bermuda',
'iso_3166_2' => 'BM',
'iso_3166_3' => 'BMU',
'name' => 'Bermuda',
'name_ar' => 'جزر برمودا',
'region_code' => '019',
'sub_region_code' => '021',
'eea' => 0,
'calling_code' => '1',
'flag' => 'BM.png',
),
19 =>
array (
'id' => 64,
'capital' => 'Thimphu',
'citizenship' => 'Bhutanese',
'citizenship_ar' => 'بوتاني',
'country_code' => '064',
'currency' => 'ngultrum (inv.)',
'currency_code' => 'BTN',
'currency_sub_unit' => 'chhetrum (inv.)',
'currency_symbol' => 'BTN',
'currency_decimals' => 2,
'full_name' => 'Kingdom of Bhutan',
'iso_3166_2' => 'BT',
'iso_3166_3' => 'BTN',
'name' => 'Bhutan',
'name_ar' => 'بوتان',
'region_code' => '142',
'sub_region_code' => '034',
'eea' => 0,
'calling_code' => '975',
'flag' => 'BT.png',
),
20 =>
array (
'id' => 68,
'capital' => 'Sucre (BO1)',
'citizenship' => 'Bolivian',
'citizenship_ar' => 'بوليفي',
'country_code' => '068',
'currency' => 'boliviano',
'currency_code' => 'BOB',
'currency_sub_unit' => 'centavo',
'currency_symbol' => '$b',
'currency_decimals' => 2,
'full_name' => 'Plurinational State of Bolivia',
'iso_3166_2' => 'BO',
'iso_3166_3' => 'BOL',
'name' => 'Bolivia, Plurinational State of',
'name_ar' => 'بوليفيا',
'region_code' => '019',
'sub_region_code' => '005',
'eea' => 0,
'calling_code' => '591',
'flag' => 'BO.png',
),
21 =>
array (
'id' => 70,
'capital' => 'Sarajevo',
'citizenship' => 'of Bosnia and Herzegovina',
'citizenship_ar' => 'بوسني/هرسكي',
'country_code' => '070',
'currency' => 'convertible mark',
'currency_code' => 'BAM',
'currency_sub_unit' => 'fening',
'currency_symbol' => 'KM',
'currency_decimals' => 2,
'full_name' => 'Bosnia and Herzegovina',
'iso_3166_2' => 'BA',
'iso_3166_3' => 'BIH',
'name' => 'Bosnia and Herzegovina',
'name_ar' => 'البوسنة و الهرسك',
'region_code' => '150',
'sub_region_code' => '039',
'eea' => 0,
'calling_code' => '387',
'flag' => 'BA.png',
),
22 =>
array (
'id' => 72,
'capital' => 'Gaborone',
'citizenship' => 'Botswanan',
'citizenship_ar' => 'بوتسواني',
'country_code' => '072',
'currency' => 'pula (inv.)',
'currency_code' => 'BWP',
'currency_sub_unit' => 'thebe (inv.)',
'currency_symbol' => 'P',
'currency_decimals' => 2,
'full_name' => 'Republic of Botswana',
'iso_3166_2' => 'BW',
'iso_3166_3' => 'BWA',
'name' => 'Botswana',
'name_ar' => 'بوتسوانا',
'region_code' => '002',
'sub_region_code' => '018',
'eea' => 0,
'calling_code' => '267',
'flag' => 'BW.png',
),
23 =>
array (
'id' => 74,
'capital' => 'Bouvet island',
'citizenship' => 'of Bouvet island',
'citizenship_ar' => 'بوفيهي',
'country_code' => '074',
'currency' => '',
'currency_code' => '',
'currency_sub_unit' => '',
'currency_symbol' => 'kr',
'currency_decimals' => 2,
'full_name' => 'Bouvet Island',
'iso_3166_2' => 'BV',
'iso_3166_3' => 'BVT',
'name' => 'Bouvet Island',
'name_ar' => 'جزيرة بوفيه',
'region_code' => '',
'sub_region_code' => '',
'eea' => 0,
'calling_code' => '47',
'flag' => 'BV.png',
),
24 =>
array (
'id' => 76,
'capital' => 'Brasilia',
'citizenship' => 'Brazilian',
'citizenship_ar' => 'برازيلي',
'country_code' => '076',
'currency' => 'real (pl. reais)',
'currency_code' => 'BRL',
'currency_sub_unit' => 'centavo',
'currency_symbol' => 'R$',
'currency_decimals' => 2,
'full_name' => 'Federative Republic of Brazil',
'iso_3166_2' => 'BR',
'iso_3166_3' => 'BRA',
'name' => 'Brazil',
'name_ar' => 'البرازيل',
'region_code' => '019',
'sub_region_code' => '005',
'eea' => 0,
'calling_code' => '55',
'flag' => 'BR.png',
),
25 =>
array (
'id' => 84,
'capital' => 'Belmopan',
'citizenship' => 'Belizean',
'citizenship_ar' => 'بيليزي',
'country_code' => '084',
'currency' => 'Belize dollar',
'currency_code' => 'BZD',
'currency_sub_unit' => 'cent',
'currency_symbol' => 'BZ$',
'currency_decimals' => 2,
'full_name' => 'Belize',
'iso_3166_2' => 'BZ',
'iso_3166_3' => 'BLZ',
'name' => 'Belize',
'name_ar' => 'بيليز',
'region_code' => '019',
'sub_region_code' => '013',
'eea' => 0,
'calling_code' => '501',
'flag' => 'BZ.png',
),
26 =>
array (
'id' => 86,
'capital' => 'Diego Garcia',
'citizenship' => 'Changosian',
'citizenship_ar' => 'إقليم المحيط الهندي البريطاني',
'country_code' => '086',
'currency' => 'US dollar',
'currency_code' => 'USD',
'currency_sub_unit' => 'cent',
'currency_symbol' => '$',
'currency_decimals' => 2,
'full_name' => 'British Indian Ocean Territory',
'iso_3166_2' => 'IO',
'iso_3166_3' => 'IOT',
'name' => 'British Indian Ocean Territory',
'name_ar' => 'إقليم المحيط الهندي البريطاني',
'region_code' => '',
'sub_region_code' => '',
'eea' => 0,
'calling_code' => '246',
'flag' => 'IO.png',
),
27 =>
array (
'id' => 90,
'capital' => 'Honiara',
'citizenship' => 'Solomon Islander',
'citizenship_ar' => 'جزر سليمان',
'country_code' => '090',
'currency' => 'Solomon Islands dollar',
'currency_code' => 'SBD',
'currency_sub_unit' => 'cent',
'currency_symbol' => '$',
'currency_decimals' => 2,
'full_name' => 'Solomon Islands',
'iso_3166_2' => 'SB',
'iso_3166_3' => 'SLB',
'name' => 'Solomon Islands',
'name_ar' => 'جزر سليمان',
'region_code' => '009',
'sub_region_code' => '054',
'eea' => 0,
'calling_code' => '677',
'flag' => 'SB.png',
),
28 =>
array (
'id' => 92,
'capital' => 'Road Town',
'citizenship' => 'British Virgin Islander;',
'citizenship_ar' => 'جزر فيرجن البريطانية',
'country_code' => '092',
'currency' => 'US dollar',
'currency_code' => 'USD',
'currency_sub_unit' => 'cent',
'currency_symbol' => '$',
'currency_decimals' => 2,
'full_name' => 'British Virgin Islands',
'iso_3166_2' => 'VG',
'iso_3166_3' => 'VGB',
'name' => 'Virgin Islands, British',
'name_ar' => 'جزر فرجن البريطانية',
'region_code' => '019',
'sub_region_code' => '029',
'eea' => 0,
'calling_code' => '1',
'flag' => 'VG.png',
),
29 =>
array (
'id' => 96,
'capital' => 'Bandar Seri Begawan',
'citizenship' => 'Bruneian',
'citizenship_ar' => 'بروني',
'country_code' => '096',
'currency' => 'Brunei dollar',
'currency_code' => 'BND',
'currency_sub_unit' => 'sen (inv.)',
'currency_symbol' => '$',
'currency_decimals' => 2,
'full_name' => 'Brunei Darussalam',
'iso_3166_2' => 'BN',
'iso_3166_3' => 'BRN',
'name' => 'Brunei Darussalam',
'name_ar' => 'بروني',
'region_code' => '142',
'sub_region_code' => '035',
'eea' => 0,
'calling_code' => '673',
'flag' => 'BN.png',
),
30 =>
array (
'id' => 100,
'capital' => 'Sofia',
'citizenship' => 'Bulgarian',
'citizenship_ar' => 'بلغاري',
'country_code' => '100',
'currency' => 'lev (pl. leva)',
'currency_code' => 'BGN',
'currency_sub_unit' => 'stotinka',
'currency_symbol' => 'лв',
'currency_decimals' => 2,
'full_name' => 'Republic of Bulgaria',
'iso_3166_2' => 'BG',
'iso_3166_3' => 'BGR',
'name' => 'Bulgaria',
'name_ar' => 'بلغاريا',
'region_code' => '150',
'sub_region_code' => '151',
'eea' => 1,
'calling_code' => '359',
'flag' => 'BG.png',
),
31 =>
array (
'id' => 104,
'capital' => 'Yangon',
'citizenship' => 'Burmese',
'citizenship_ar' => 'ميانماري',
'country_code' => '104',
'currency' => 'kyat',
'currency_code' => 'MMK',
'currency_sub_unit' => 'pya',
'currency_symbol' => 'K',
'currency_decimals' => 2,
'full_name' => 'Union of Myanmar/',
'iso_3166_2' => 'MM',
'iso_3166_3' => 'MMR',
'name' => 'Myanmar',
'name_ar' => 'ميانمار',
'region_code' => '142',
'sub_region_code' => '035',
'eea' => 0,
'calling_code' => '95',
'flag' => 'MM.png',
),
32 =>
array (
'id' => 108,
'capital' => 'Bujumbura',
'citizenship' => 'Burundian',
'citizenship_ar' => 'بورونيدي',
'country_code' => '108',
'currency' => 'Burundi franc',
'currency_code' => 'BIF',
'currency_sub_unit' => 'centime',
'currency_symbol' => 'BIF',
'currency_decimals' => 0,
'full_name' => 'Republic of Burundi',
'iso_3166_2' => 'BI',
'iso_3166_3' => 'BDI',
'name' => 'Burundi',
'name_ar' => 'بوروندي',
'region_code' => '002',
'sub_region_code' => '014',
'eea' => 0,
'calling_code' => '257',
'flag' => 'BI.png',
),
33 =>
array (
'id' => 112,
'capital' => 'Minsk',
'citizenship' => 'Belarusian',
'citizenship_ar' => 'روسي',
'country_code' => '112',
'currency' => 'Belarusian rouble',
'currency_code' => 'BYR',
'currency_sub_unit' => 'kopek',
'currency_symbol' => 'p.',
'currency_decimals' => 2,
'full_name' => 'Republic of Belarus',
'iso_3166_2' => 'BY',
'iso_3166_3' => 'BLR',
'name' => 'Belarus',
'name_ar' => 'روسيا البيضاء',
'region_code' => '150',
'sub_region_code' => '151',
'eea' => 0,
'calling_code' => '375',
'flag' => 'BY.png',
),
34 =>
array (
'id' => 116,
'capital' => 'Phnom Penh',
'citizenship' => 'Cambodian',
'citizenship_ar' => 'كمبودي',
'country_code' => '116',
'currency' => 'riel',
'currency_code' => 'KHR',
'currency_sub_unit' => 'sen (inv.)',
'currency_symbol' => '៛',
'currency_decimals' => 2,
'full_name' => 'Kingdom of Cambodia',
'iso_3166_2' => 'KH',
'iso_3166_3' => 'KHM',
'name' => 'Cambodia',
'name_ar' => 'كمبوديا',
'region_code' => '142',
'sub_region_code' => '035',
'eea' => 0,
'calling_code' => '855',
'flag' => 'KH.png',
),
35 =>
array (
'id' => 120,
'capital' => 'Yaoundé',
'citizenship' => 'Cameroonian',
'citizenship_ar' => 'كاميروني',
'country_code' => '120',
'currency' => 'CFA franc (BEAC)',
'currency_code' => 'XAF',
'currency_sub_unit' => 'centime',
'currency_symbol' => 'FCF',
'currency_decimals' => 0,
'full_name' => 'Republic of Cameroon',
'iso_3166_2' => 'CM',
'iso_3166_3' => 'CMR',
'name' => 'Cameroon',
'name_ar' => 'كاميرون',
'region_code' => '002',
'sub_region_code' => '017',
'eea' => 0,
'calling_code' => '237',
'flag' => 'CM.png',
),
36 =>
array (
'id' => 124,
'capital' => 'Ottawa',
'citizenship' => 'Canadian',
'citizenship_ar' => 'كندي',
'country_code' => '124',
'currency' => 'Canadian dollar',
'currency_code' => 'CAD',
'currency_sub_unit' => 'cent',
'currency_symbol' => '$',
'currency_decimals' => 2,
'full_name' => 'Canada',
'iso_3166_2' => 'CA',
'iso_3166_3' => 'CAN',
'name' => 'Canada',
'name_ar' => 'كندا',
'region_code' => '019',
'sub_region_code' => '021',
'eea' => 0,
'calling_code' => '1',
'flag' => 'CA.png',
),
37 =>
array (
'id' => 132,
'capital' => 'Praia',
'citizenship' => 'Cape Verdean',
'citizenship_ar' => 'الرأس الأخضر',
'country_code' => '132',
'currency' => 'Cape Verde escudo',
'currency_code' => 'CVE',
'currency_sub_unit' => 'centavo',
'currency_symbol' => 'CVE',
'currency_decimals' => 2,
'full_name' => 'Republic of Cape Verde',
'iso_3166_2' => 'CV',
'iso_3166_3' => 'CPV',
'name' => 'Cape Verde',
'name_ar' => 'الرأس الأخضر',
'region_code' => '002',
'sub_region_code' => '011',
'eea' => 0,
'calling_code' => '238',
'flag' => 'CV.png',
),
38 =>
array (
'id' => 136,
'capital' => 'George Town',
'citizenship' => 'Caymanian',
'citizenship_ar' => 'كايماني',
'country_code' => '136',
'currency' => 'Cayman Islands dollar',
'currency_code' => 'KYD',
'currency_sub_unit' => 'cent',
'currency_symbol' => '$',
'currency_decimals' => 2,
'full_name' => 'Cayman Islands',
'iso_3166_2' => 'KY',
'iso_3166_3' => 'CYM',
'name' => 'Cayman Islands',
'name_ar' => 'جزر كايمان',
'region_code' => '019',
'sub_region_code' => '029',
'eea' => 0,
'calling_code' => '1',
'flag' => 'KY.png',
),
39 =>
array (
'id' => 140,
'capital' => 'Bangui',
'citizenship' => 'Central African',
'citizenship_ar' => 'أفريقي',
'country_code' => '140',
'currency' => 'CFA franc (BEAC)',
'currency_code' => 'XAF',
'currency_sub_unit' => 'centime',
'currency_symbol' => 'CFA',
'currency_decimals' => 0,
'full_name' => 'Central African Republic',
'iso_3166_2' => 'CF',
'iso_3166_3' => 'CAF',
'name' => 'Central African Republic',
'name_ar' => 'جمهورية أفريقيا الوسطى',
'region_code' => '002',
'sub_region_code' => '017',
'eea' => 0,
'calling_code' => '236',
'flag' => 'CF.png',
),
40 =>
array (
'id' => 144,
'capital' => 'Colombo',
'citizenship' => 'Sri Lankan',
'citizenship_ar' => 'سريلانكي',
'country_code' => '144',
'currency' => 'Sri Lankan rupee',
'currency_code' => 'LKR',
'currency_sub_unit' => 'cent',
'currency_symbol' => '₨',
'currency_decimals' => 2,
'full_name' => 'Democratic Socialist Republic of Sri Lanka',
'iso_3166_2' => 'LK',
'iso_3166_3' => 'LKA',
'name' => 'Sri Lanka',
'name_ar' => 'سريلانكا',
'region_code' => '142',
'sub_region_code' => '034',
'eea' => 0,
'calling_code' => '94',
'flag' => 'LK.png',
),
41 =>
array (
'id' => 148,
'capital' => 'N’Djamena',
'citizenship' => 'Chadian',
'citizenship_ar' => 'تشادي',
'country_code' => '148',
'currency' => 'CFA franc (BEAC)',
'currency_code' => 'XAF',
'currency_sub_unit' => 'centime',
'currency_symbol' => 'XAF',
'currency_decimals' => 0,
'full_name' => 'Republic of Chad',
'iso_3166_2' => 'TD',
'iso_3166_3' => 'TCD',
'name' => 'Chad',
'name_ar' => 'تشاد',
'region_code' => '002',
'sub_region_code' => '017',
'eea' => 0,
'calling_code' => '235',
'flag' => 'TD.png',
),
42 =>
array (
'id' => 152,
'capital' => 'Santiago',
'citizenship' => 'Chilean',
'citizenship_ar' => 'شيلي',
'country_code' => '152',
'currency' => 'Chilean peso',
'currency_code' => 'CLP',
'currency_sub_unit' => 'centavo',
'currency_symbol' => 'CLP',
'currency_decimals' => 0,
'full_name' => 'Republic of Chile',
'iso_3166_2' => 'CL',
'iso_3166_3' => 'CHL',
'name' => 'Chile',
'name_ar' => 'شيلي',
'region_code' => '019',
'sub_region_code' => '005',
'eea' => 0,
'calling_code' => '56',
'flag' => 'CL.png',
),
43 =>
array (
'id' => 156,
'capital' => 'Beijing',
'citizenship' => 'Chinese',
'citizenship_ar' => 'صيني',
'country_code' => '156',
'currency' => 'renminbi-yuan (inv.)',
'currency_code' => 'CNY',
'currency_sub_unit' => 'jiao (10)',
'currency_symbol' => '¥',
'currency_decimals' => 2,
'full_name' => 'People’s Republic of China',
'iso_3166_2' => 'CN',
'iso_3166_3' => 'CHN',
'name' => 'China',
'name_ar' => 'الصين',
'region_code' => '142',
'sub_region_code' => '030',
'eea' => 0,
'calling_code' => '86',
'flag' => 'CN.png',
),
44 =>
array (
'id' => 158,
'capital' => 'Taipei',
'citizenship' => 'Taiwanese',
'citizenship_ar' => 'تايواني',
'country_code' => '158',
'currency' => 'new Taiwan dollar',
'currency_code' => 'TWD',
'currency_sub_unit' => 'fen (inv.)',
'currency_symbol' => 'NT$',
'currency_decimals' => 2,
'full_name' => 'Republic of China, Taiwan (TW1)',
'iso_3166_2' => 'TW',
'iso_3166_3' => 'TWN',
'name' => 'Taiwan, Province of China',
'name_ar' => 'تايوان',
'region_code' => '142',
'sub_region_code' => '030',
'eea' => 0,
'calling_code' => '886',
'flag' => 'TW.png',
),
45 =>
array (
'id' => 162,
'capital' => 'Flying Fish Cove',
'citizenship' => 'Christmas Islander',
'citizenship_ar' => 'جزيرة عيد الميلاد',
'country_code' => '162',
'currency' => 'Australian dollar',
'currency_code' => 'AUD',
'currency_sub_unit' => 'cent',
'currency_symbol' => '$',
'currency_decimals' => 2,
'full_name' => 'Christmas Island Territory',
'iso_3166_2' => 'CX',
'iso_3166_3' => 'CXR',
'name' => 'Christmas Island',
'name_ar' => 'جزيرة عيد الميلاد',
'region_code' => '',
'sub_region_code' => '',
'eea' => 0,
'calling_code' => '61',
'flag' => 'CX.png',
),
46 =>
array (
'id' => 166,
'capital' => 'Bantam',
'citizenship' => 'Cocos Islander',
'citizenship_ar' => 'جزر كوكوس',
'country_code' => '166',
'currency' => 'Australian dollar',
'currency_code' => 'AUD',
'currency_sub_unit' => 'cent',
'currency_symbol' => '$',
'currency_decimals' => 2,
'full_name' => 'Territory of Cocos (Keeling) Islands',
'iso_3166_2' => 'CC',
'iso_3166_3' => 'CCK',
'name' => 'Cocos (Keeling) Islands',
'name_ar' => 'جزر كوكوس',
'region_code' => '',
'sub_region_code' => '',
'eea' => 0,
'calling_code' => '61',
'flag' => 'CC.png',
),
47 =>
array (
'id' => 170,
'capital' => 'Santa Fe de Bogotá',
'citizenship' => 'Colombian',
'citizenship_ar' => 'كولومبي',
'country_code' => '170',
'currency' => 'Colombian peso',
'currency_code' => 'COP',
'currency_sub_unit' => 'centavo',
'currency_symbol' => '$',
'currency_decimals' => 2,
'full_name' => 'Republic of Colombia',
'iso_3166_2' => 'CO',
'iso_3166_3' => 'COL',
'name' => 'Colombia',
'name_ar' => 'كولومبيا',
'region_code' => '019',
'sub_region_code' => '005',
'eea' => 0,
'calling_code' => '57',
'flag' => 'CO.png',
),
48 =>
array (
'id' => 174,
'capital' => 'Moroni',
'citizenship' => 'Comorian',
'citizenship_ar' => 'جزر القمر',
'country_code' => '174',
'currency' => 'Comorian franc',
'currency_code' => 'KMF',
'currency_sub_unit' => '',
'currency_symbol' => 'KMF',
'currency_decimals' => 0,
'full_name' => 'Union of the Comoros',
'iso_3166_2' => 'KM',
'iso_3166_3' => 'COM',
'name' => 'Comoros',
'name_ar' => 'جزر القمر',
'region_code' => '002',
'sub_region_code' => '014',
'eea' => 0,
'calling_code' => '269',
'flag' => 'KM.png',
),
49 =>
array (
'id' => 175,
'capital' => 'Mamoudzou',
'citizenship' => 'Mahorais',
'citizenship_ar' => 'مايوتي',
'country_code' => '175',
'currency' => 'euro',
'currency_code' => 'EUR',
'currency_sub_unit' => 'cent',
'currency_symbol' => '€',
'currency_decimals' => 2,
'full_name' => 'Departmental Collectivity of Mayotte',
'iso_3166_2' => 'YT',
'iso_3166_3' => 'MYT',
'name' => 'Mayotte',
'name_ar' => 'مايوت',
'region_code' => '002',
'sub_region_code' => '014',
'eea' => 0,
'calling_code' => '262',
'flag' => 'YT.png',
),
50 =>
array (
'id' => 178,
'capital' => 'Brazzaville',
'citizenship' => 'Congolese',
'citizenship_ar' => 'كونغي',
'country_code' => '178',
'currency' => 'CFA franc (BEAC)',
'currency_code' => 'XAF',
'currency_sub_unit' => 'centime',
'currency_symbol' => 'FCF',
'currency_decimals' => 0,
'full_name' => 'Republic of the Congo',
'iso_3166_2' => 'CG',
'iso_3166_3' => 'COG',
'name' => 'Congo',
'name_ar' => 'الكونغو',
'region_code' => '002',
'sub_region_code' => '017',
'eea' => 0,
'calling_code' => '242',
'flag' => 'CG.png',
),
51 =>
array (
'id' => 180,
'capital' => 'Kinshasa',
'citizenship' => 'Congolese',
'citizenship_ar' => 'كونغي',
'country_code' => '180',
'currency' => 'Congolese franc',
'currency_code' => 'CDF',
'currency_sub_unit' => 'centime',
'currency_symbol' => 'CDF',
'currency_decimals' => 2,
'full_name' => 'Democratic Republic of the Congo',
'iso_3166_2' => 'CD',
'iso_3166_3' => 'COD',
'name' => 'Congo, the Democratic Republic of the',
'name_ar' => 'جمهورية الكونغو الديمقراطية',
'region_code' => '002',
'sub_region_code' => '017',
'eea' => 0,
'calling_code' => '243',
'flag' => 'CD.png',
),
52 =>
array (
'id' => 184,
'capital' => 'Avarua',
'citizenship' => 'Cook Islander',
'citizenship_ar' => 'جزر كوك',
'country_code' => '184',
'currency' => 'New Zealand dollar',
'currency_code' => 'NZD',
'currency_sub_unit' => 'cent',
'currency_symbol' => '$',
'currency_decimals' => 2,
'full_name' => 'Cook Islands',
'iso_3166_2' => 'CK',
'iso_3166_3' => 'COK',
'name' => 'Cook Islands',
'name_ar' => 'جزر كوك',
'region_code' => '009',
'sub_region_code' => '061',
'eea' => 0,
'calling_code' => '682',
'flag' => 'CK.png',
),
53 =>
array (
'id' => 188,
'capital' => 'San José',
'citizenship' => 'Costa Rican',
'citizenship_ar' => 'كوستاريكي',
'country_code' => '188',
'currency' => 'Costa Rican colón (pl. colones)',
'currency_code' => 'CRC',
'currency_sub_unit' => 'céntimo',
'currency_symbol' => '₡',
'currency_decimals' => 2,
'full_name' => 'Republic of Costa Rica',
'iso_3166_2' => 'CR',
'iso_3166_3' => 'CRI',
'name' => 'Costa Rica',
'name_ar' => 'كوستاريكا',
'region_code' => '019',
'sub_region_code' => '013',
'eea' => 0,
'calling_code' => '506',
'flag' => 'CR.png',
),
54 =>
array (
'id' => 191,
'capital' => 'Zagreb',
'citizenship' => 'Croatian',
'citizenship_ar' => 'كوراتي',
'country_code' => '191',
'currency' => 'kuna (inv.)',
'currency_code' => 'HRK',
'currency_sub_unit' => 'lipa (inv.)',
'currency_symbol' => 'kn',
'currency_decimals' => 2,
'full_name' => 'Republic of Croatia',
'iso_3166_2' => 'HR',
'iso_3166_3' => 'HRV',
'name' => 'Croatia',
'name_ar' => 'كرواتيا',
'region_code' => '150',
'sub_region_code' => '039',
'eea' => 1,
'calling_code' => '385',
'flag' => 'HR.png',
),
55 =>
array (
'id' => 192,
'capital' => 'Havana',
'citizenship' => 'Cuban',
'citizenship_ar' => 'كوبي',
'country_code' => '192',
'currency' => 'Cuban peso',
'currency_code' => 'CUP',
'currency_sub_unit' => 'centavo',
'currency_symbol' => '₱',
'currency_decimals' => 2,
'full_name' => 'Republic of Cuba',
'iso_3166_2' => 'CU',
'iso_3166_3' => 'CUB',
'name' => 'Cuba',
'name_ar' => 'كوبا',
'region_code' => '019',
'sub_region_code' => '029',
'eea' => 0,
'calling_code' => '53',
'flag' => 'CU.png',
),
56 =>
array (
'id' => 196,
'capital' => 'Nicosia',
'citizenship' => 'Cypriot',
'citizenship_ar' => 'قبرصي',
'country_code' => '196',
'currency' => 'euro',
'currency_code' => 'EUR',
'currency_sub_unit' => 'cent',
'currency_symbol' => 'CYP',
'currency_decimals' => 2,
'full_name' => 'Republic of Cyprus',
'iso_3166_2' => 'CY',
'iso_3166_3' => 'CYP',
'name' => 'Cyprus',
'name_ar' => 'قبرص',
'region_code' => '142',
'sub_region_code' => '145',
'eea' => 1,
'calling_code' => '357',
'flag' => 'CY.png',
),
57 =>
array (
'id' => 203,
'capital' => 'Prague',
'citizenship' => 'Czech',
'citizenship_ar' => 'تشيكي',
'country_code' => '203',
'currency' => 'Czech koruna (pl. koruny)',
'currency_code' => 'CZK',
'currency_sub_unit' => 'halér',
'currency_symbol' => 'Kč',
'currency_decimals' => 2,
'full_name' => 'Czech Republic',
'iso_3166_2' => 'CZ',
'iso_3166_3' => 'CZE',
'name' => 'Czech Republic',
'name_ar' => 'الجمهورية التشيكية',
'region_code' => '150',
'sub_region_code' => '151',
'eea' => 1,
'calling_code' => '420',
'flag' => 'CZ.png',
),
58 =>
array (
'id' => 204,
'capital' => 'Porto Novo (BJ1)',
'citizenship' => 'Beninese',
'citizenship_ar' => 'بنيني',
'country_code' => '204',
'currency' => 'CFA franc (BCEAO)',
'currency_code' => 'XOF',
'currency_sub_unit' => 'centime',
'currency_symbol' => 'XOF',
'currency_decimals' => 0,
'full_name' => 'Republic of Benin',
'iso_3166_2' => 'BJ',
'iso_3166_3' => 'BEN',
'name' => 'Benin',
'name_ar' => 'بنين',
'region_code' => '002',
'sub_region_code' => '011',
'eea' => 0,
'calling_code' => '229',
'flag' => 'BJ.png',
),
59 =>
array (
'id' => 208,
'capital' => 'Copenhagen',
'citizenship' => 'Danish',
'citizenship_ar' => 'دنماركي',
'country_code' => '208',
'currency' => 'Danish krone',
'currency_code' => 'DKK',
'currency_sub_unit' => 'øre (inv.)',
'currency_symbol' => 'kr',
'currency_decimals' => 2,
'full_name' => 'Kingdom of Denmark',
'iso_3166_2' => 'DK',
'iso_3166_3' => 'DNK',
'name' => 'Denmark',
'name_ar' => 'الدانمارك',
'region_code' => '150',
'sub_region_code' => '154',
'eea' => 1,
'calling_code' => '45',
'flag' => 'DK.png',
),
60 =>
array (
'id' => 212,
'capital' => 'Roseau',
'citizenship' => 'Dominican',
'citizenship_ar' => 'دومينيكي',
'country_code' => '212',
'currency' => 'East Caribbean dollar',
'currency_code' => 'XCD',
'currency_sub_unit' => 'cent',
'currency_symbol' => '$',
'currency_decimals' => 2,
'full_name' => 'Commonwealth of Dominica',
'iso_3166_2' => 'DM',
'iso_3166_3' => 'DMA',
'name' => 'Dominica',
'name_ar' => 'دومينيكا',
'region_code' => '019',
'sub_region_code' => '029',
'eea' => 0,
'calling_code' => '1',
'flag' => 'DM.png',
),
61 =>
array (
'id' => 214,
'capital' => 'Santo Domingo',
'citizenship' => 'Dominican',
'citizenship_ar' => 'دومينيكي',
'country_code' => '214',
'currency' => 'Dominican peso',
'currency_code' => 'DOP',
'currency_sub_unit' => 'centavo',
'currency_symbol' => 'RD$',
'currency_decimals' => 2,
'full_name' => 'Dominican Republic',
'iso_3166_2' => 'DO',
'iso_3166_3' => 'DOM',
'name' => 'Dominican Republic',
'name_ar' => 'الجمهورية الدومينيكية',
'region_code' => '019',
'sub_region_code' => '029',
'eea' => 0,
'calling_code' => '1',
'flag' => 'DO.png',
),
62 =>
array (
'id' => 218,
'capital' => 'Quito',
'citizenship' => 'Ecuadorian',
'citizenship_ar' => 'إكوادوري',
'country_code' => '218',
'currency' => 'US dollar',
'currency_code' => 'USD',
'currency_sub_unit' => 'cent',
'currency_symbol' => '$',
'currency_decimals' => 2,
'full_name' => 'Republic of Ecuador',
'iso_3166_2' => 'EC',
'iso_3166_3' => 'ECU',
'name' => 'Ecuador',
'name_ar' => 'إكوادور',
'region_code' => '019',
'sub_region_code' => '005',
'eea' => 0,
'calling_code' => '593',
'flag' => 'EC.png',
),
63 =>
array (
'id' => 222,
'capital' => 'San Salvador',
'citizenship' => 'Salvadoran',
'citizenship_ar' => 'سلفادوري',
'country_code' => '222',
'currency' => 'Salvadorian colón (pl. colones)',
'currency_code' => 'SVC',
'currency_sub_unit' => 'centavo',
'currency_symbol' => '$',
'currency_decimals' => 2,
'full_name' => 'Republic of El Salvador',
'iso_3166_2' => 'SV',
'iso_3166_3' => 'SLV',
'name' => 'El Salvador',
'name_ar' => 'إلسلفادور',
'region_code' => '019',
'sub_region_code' => '013',
'eea' => 0,
'calling_code' => '503',
'flag' => 'SV.png',
),
64 =>
array (
'id' => 226,
'capital' => 'Malabo',
'citizenship' => 'Equatorial Guinean',
'citizenship_ar' => 'غيني',
'country_code' => '226',
'currency' => 'CFA franc (BEAC)',
'currency_code' => 'XAF',
'currency_sub_unit' => 'centime',
'currency_symbol' => 'FCF',
'currency_decimals' => 2,
'full_name' => 'Republic of Equatorial Guinea',
'iso_3166_2' => 'GQ',
'iso_3166_3' => 'GNQ',
'name' => 'Equatorial Guinea',
'name_ar' => 'غينيا الاستوائي',
'region_code' => '002',
'sub_region_code' => '017',
'eea' => 0,
'calling_code' => '240',
'flag' => 'GQ.png',
),
65 =>
array (
'id' => 231,
'capital' => 'Addis Ababa',
'citizenship' => 'Ethiopian',
'citizenship_ar' => 'أثيوبي',
'country_code' => '231',
'currency' => 'birr (inv.)',
'currency_code' => 'ETB',
'currency_sub_unit' => 'cent',
'currency_symbol' => 'ETB',
'currency_decimals' => 2,
'full_name' => 'Federal Democratic Republic of Ethiopia',
'iso_3166_2' => 'ET',
'iso_3166_3' => 'ETH',
'name' => 'Ethiopia',
'name_ar' => 'أثيوبيا',
'region_code' => '002',
'sub_region_code' => '014',
'eea' => 0,
'calling_code' => '251',
'flag' => 'ET.png',
),
66 =>
array (
'id' => 232,
'capital' => 'Asmara',
'citizenship' => 'Eritrean',
'citizenship_ar' => 'إريتيري',
'country_code' => '232',
'currency' => 'nakfa',
'currency_code' => 'ERN',
'currency_sub_unit' => 'cent',
'currency_symbol' => 'Nfk',
'currency_decimals' => 2,
'full_name' => 'State of Eritrea',
'iso_3166_2' => 'ER',
'iso_3166_3' => 'ERI',
'name' => 'Eritrea',
'name_ar' => 'إريتريا',
'region_code' => '002',
'sub_region_code' => '014',
'eea' => 0,
'calling_code' => '291',
'flag' => 'ER.png',
),
67 =>
array (
'id' => 233,
'capital' => 'Tallinn',
'citizenship' => 'Estonian',
'citizenship_ar' => 'استوني',
'country_code' => '233',
'currency' => 'euro',
'currency_code' => 'EUR',
'currency_sub_unit' => 'cent',
'currency_symbol' => 'kr',
'currency_decimals' => 2,
'full_name' => 'Republic of Estonia',
'iso_3166_2' => 'EE',
'iso_3166_3' => 'EST',
'name' => 'Estonia',
'name_ar' => 'استونيا',
'region_code' => '150',
'sub_region_code' => '154',
'eea' => 1,
'calling_code' => '372',
'flag' => 'EE.png',
),
68 =>
array (
'id' => 234,
'capital' => 'Tórshavn',
'citizenship' => 'Faeroese',
'citizenship_ar' => 'جزر فارو',
'country_code' => '234',
'currency' => 'Danish krone',
'currency_code' => 'DKK',
'currency_sub_unit' => 'øre (inv.)',
'currency_symbol' => 'kr',
'currency_decimals' => 2,
'full_name' => 'Faeroe Islands',
'iso_3166_2' => 'FO',
'iso_3166_3' => 'FRO',
'name' => 'Faroe Islands',
'name_ar' => 'جزر فارو',
'region_code' => '150',
'sub_region_code' => '154',
'eea' => 0,
'calling_code' => '298',
'flag' => 'FO.png',
),
69 =>
array (
'id' => 238,
'capital' => 'Stanley',
'citizenship' => 'Falkland Islander',
'citizenship_ar' => 'فوكلاندي',
'country_code' => '238',
'currency' => 'Falkland Islands pound',
'currency_code' => 'FKP',
'currency_sub_unit' => 'new penny',
'currency_symbol' => '£',
'currency_decimals' => 2,
'full_name' => 'Falkland Islands',
'iso_3166_2' => 'FK',
'iso_3166_3' => 'FLK',
'name' => 'Falkland Islands (Malvinas)',
'name_ar' => 'جزر فوكلاند',
'region_code' => '019',
'sub_region_code' => '005',
'eea' => 0,
'calling_code' => '500',
'flag' => 'FK.png',
),
70 =>
array (
'id' => 239,
'capital' => 'King Edward Point (Grytviken)',
'citizenship' => 'of South Georgia and the South Sandwich Islands',
'citizenship_ar' => 'لمنطقة القطبية الجنوبية',
'country_code' => '239',
'currency' => '',
'currency_code' => '',
'currency_sub_unit' => '',
'currency_symbol' => '£',
'currency_decimals' => 2,
'full_name' => 'South Georgia and the South Sandwich Islands',
'iso_3166_2' => 'GS',
'iso_3166_3' => 'SGS',
'name' => 'South Georgia and the South Sandwich Islands',
'name_ar' => 'المنطقة القطبية الجنوبية',
'region_code' => '',
'sub_region_code' => '',
'eea' => 0,
'calling_code' => '44',
'flag' => 'GS.png',
),
71 =>
array (
'id' => 242,
'capital' => 'Suva',
'citizenship' => 'Fijian',
'citizenship_ar' => 'فيجي',
'country_code' => '242',
'currency' => 'Fiji dollar',
'currency_code' => 'FJD',
'currency_sub_unit' => 'cent',
'currency_symbol' => '$',
'currency_decimals' => 2,
'full_name' => 'Republic of Fiji',
'iso_3166_2' => 'FJ',
'iso_3166_3' => 'FJI',
'name' => 'Fiji',
'name_ar' => 'فيجي',
'region_code' => '009',
'sub_region_code' => '054',
'eea' => 0,
'calling_code' => '679',
'flag' => 'FJ.png',
),
72 =>
array (
'id' => 246,
'capital' => 'Helsinki',
'citizenship' => 'Finnish',
'citizenship_ar' => 'فنلندي',
'country_code' => '246',
'currency' => 'euro',
'currency_code' => 'EUR',
'currency_sub_unit' => 'cent',
'currency_symbol' => '€',
'currency_decimals' => 2,
'full_name' => 'Republic of Finland',
'iso_3166_2' => 'FI',
'iso_3166_3' => 'FIN',
'name' => 'Finland',
'name_ar' => 'فنلندا',
'region_code' => '150',
'sub_region_code' => '154',
'eea' => 1,
'calling_code' => '358',
'flag' => 'FI.png',
),
73 =>
array (
'id' => 248,
'capital' => 'Mariehamn',
'citizenship' => 'Åland Islander',
'citizenship_ar' => 'آلاندي',
'country_code' => '248',
'currency' => 'euro',
'currency_code' => 'EUR',
'currency_sub_unit' => 'cent',
'currency_symbol' => NULL,
'currency_decimals' => NULL,
'full_name' => 'Åland Islands',
'iso_3166_2' => 'AX',
'iso_3166_3' => 'ALA',
'name' => 'Åland Islands',
'name_ar' => 'جزر آلاند',
'region_code' => '150',
'sub_region_code' => '154',
'eea' => 0,
'calling_code' => '358',
'flag' => NULL,
),
74 =>
array (
'id' => 250,
'capital' => 'Paris',
'citizenship' => 'French',
'citizenship_ar' => 'فرنسي',
'country_code' => '250',
'currency' => 'euro',
'currency_code' => 'EUR',
'currency_sub_unit' => 'cent',
'currency_symbol' => '€',
'currency_decimals' => 2,
'full_name' => 'French Republic',
'iso_3166_2' => 'FR',
'iso_3166_3' => 'FRA',
'name' => 'France',
'name_ar' => 'فرنسا',
'region_code' => '150',
'sub_region_code' => '155',
'eea' => 1,
'calling_code' => '33',
'flag' => 'FR.png',
),
75 =>
array (
'id' => 254,
'capital' => 'Cayenne',
'citizenship' => 'Guianese',
'citizenship_ar' => 'غويانا الفرنسية',
'country_code' => '254',
'currency' => 'euro',
'currency_code' => 'EUR',
'currency_sub_unit' => 'cent',
'currency_symbol' => '€',
'currency_decimals' => 2,
'full_name' => 'French Guiana',
'iso_3166_2' => 'GF',
'iso_3166_3' => 'GUF',
'name' => 'French Guiana',
'name_ar' => 'غويانا الفرنسية',
'region_code' => '019',
'sub_region_code' => '005',
'eea' => 0,
'calling_code' => '594',
'flag' => 'GF.png',
),
76 =>
array (
'id' => 258,
'capital' => 'Papeete',
'citizenship' => 'Polynesian',
'citizenship_ar' => 'بولينيزيي',
'country_code' => '258',
'currency' => 'CFP franc',
'currency_code' => 'XPF',
'currency_sub_unit' => 'centime',
'currency_symbol' => 'XPF',
'currency_decimals' => 0,
'full_name' => 'French Polynesia',
'iso_3166_2' => 'PF',
'iso_3166_3' => 'PYF',
'name' => 'French Polynesia',
'name_ar' => 'بولينيزيا الفرنسية',
'region_code' => '009',
'sub_region_code' => '061',
'eea' => 0,
'calling_code' => '689',
'flag' => 'PF.png',
),
77 =>
array (
'id' => 260,
'capital' => 'Port-aux-Francais',
'citizenship' => 'of French Southern and Antarctic Lands',
'citizenship_ar' => 'أراض فرنسية جنوبية وأنتارتيكية',
'country_code' => '260',
'currency' => 'euro',
'currency_code' => 'EUR',
'currency_sub_unit' => 'cent',
'currency_symbol' => '€',
'currency_decimals' => 2,
'full_name' => 'French Southern and Antarctic Lands',
'iso_3166_2' => 'TF',
'iso_3166_3' => 'ATF',
'name' => 'French Southern and Antarctic Lands',
'name_ar' => 'أراض فرنسية جنوبية وأنتارتيكية',
'region_code' => '',
'sub_region_code' => '',
'eea' => 0,
'calling_code' => '33',
'flag' => 'TF.png',
),
78 =>
array (
'id' => 262,
'capital' => 'Djibouti',
'citizenship' => 'Djiboutian',
'citizenship_ar' => 'جيبوتي',
'country_code' => '262',
'currency' => 'Djibouti franc',
'currency_code' => 'DJF',
'currency_sub_unit' => '',
'currency_symbol' => 'DJF',
'currency_decimals' => 0,
'full_name' => 'Republic of Djibouti',
'iso_3166_2' => 'DJ',
'iso_3166_3' => 'DJI',
'name' => 'Djibouti',
'name_ar' => 'جيبوتي',
'region_code' => '002',
'sub_region_code' => '014',
'eea' => 0,
'calling_code' => '253',
'flag' => 'DJ.png',
),
79 =>
array (
'id' => 266,
'capital' => 'Libreville',
'citizenship' => 'Gabonese',
'citizenship_ar' => 'غابوني',
'country_code' => '266',
'currency' => 'CFA franc (BEAC)',
'currency_code' => 'XAF',
'currency_sub_unit' => 'centime',
'currency_symbol' => 'FCF',
'currency_decimals' => 0,
'full_name' => 'Gabonese Republic',
'iso_3166_2' => 'GA',
'iso_3166_3' => 'GAB',
'name' => 'Gabon',
'name_ar' => 'الغابون',
'region_code' => '002',
'sub_region_code' => '017',
'eea' => 0,
'calling_code' => '241',
'flag' => 'GA.png',
),
80 =>
array (
'id' => 268,
'capital' => 'Tbilisi',
'citizenship' => 'Georgian',
'citizenship_ar' => 'جيورجي',
'country_code' => '268',
'currency' => 'lari',
'currency_code' => 'GEL',
'currency_sub_unit' => 'tetri (inv.)',
'currency_symbol' => 'GEL',
'currency_decimals' => 2,
'full_name' => 'Georgia',
'iso_3166_2' => 'GE',
'iso_3166_3' => 'GEO',
'name' => 'Georgia',
'name_ar' => 'جيورجيا',
'region_code' => '142',
'sub_region_code' => '145',
'eea' => 0,
'calling_code' => '995',
'flag' => 'GE.png',
),
81 =>
array (
'id' => 270,
'capital' => 'Banjul',
'citizenship' => 'Gambian',
'citizenship_ar' => 'غامبي',
'country_code' => '270',
'currency' => 'dalasi (inv.)',
'currency_code' => 'GMD',
'currency_sub_unit' => 'butut',
'currency_symbol' => 'D',
'currency_decimals' => 2,
'full_name' => 'Republic of the Gambia',
'iso_3166_2' => 'GM',
'iso_3166_3' => 'GMB',
'name' => 'Gambia',
'name_ar' => 'غامبيا',
'region_code' => '002',
'sub_region_code' => '011',
'eea' => 0,
'calling_code' => '220',
'flag' => 'GM.png',
),
82 =>
array (
'id' => 275,
'capital' => NULL,
'citizenship' => 'Palestinian',
'citizenship_ar' => 'فلسطيني',
'country_code' => '275',
'currency' => NULL,
'currency_code' => NULL,
'currency_sub_unit' => NULL,
'currency_symbol' => '₪',
'currency_decimals' => 2,
'full_name' => NULL,
'iso_3166_2' => 'PS',
'iso_3166_3' => 'PSE',
'name' => 'Palestinian Territory, Occupied',
'name_ar' => 'فلسطين',
'region_code' => '142',
'sub_region_code' => '145',
'eea' => 0,
'calling_code' => '970',
'flag' => 'PS.png',
),
83 =>
array (
'id' => 276,
'capital' => 'Berlin',
'citizenship' => 'German',
'citizenship_ar' => 'ألماني',
'country_code' => '276',
'currency' => 'euro',
'currency_code' => 'EUR',
'currency_sub_unit' => 'cent',
'currency_symbol' => '€',
'currency_decimals' => 2,
'full_name' => 'Federal Republic of Germany',
'iso_3166_2' => 'DE',
'iso_3166_3' => 'DEU',
'name' => 'Germany',
'name_ar' => 'ألمانيا',
'region_code' => '150',
'sub_region_code' => '155',
'eea' => 1,
'calling_code' => '49',
'flag' => 'DE.png',
),
84 =>
array (
'id' => 288,
'capital' => 'Accra',
'citizenship' => 'Ghanaian',
'citizenship_ar' => 'غاني',
'country_code' => '288',
'currency' => 'Ghana cedi',
'currency_code' => 'GHS',
'currency_sub_unit' => 'pesewa',
'currency_symbol' => '¢',
'currency_decimals' => 2,
'full_name' => 'Republic of Ghana',
'iso_3166_2' => 'GH',
'iso_3166_3' => 'GHA',
'name' => 'Ghana',
'name_ar' => 'غانا',
'region_code' => '002',
'sub_region_code' => '011',
'eea' => 0,
'calling_code' => '233',
'flag' => 'GH.png',
),
85 =>
array (
'id' => 292,
'capital' => 'Gibraltar',
'citizenship' => 'Gibraltarian',
'citizenship_ar' => 'جبل طارق',
'country_code' => '292',
'currency' => 'Gibraltar pound',
'currency_code' => 'GIP',
'currency_sub_unit' => 'penny',
'currency_symbol' => '£',
'currency_decimals' => 2,
'full_name' => 'Gibraltar',
'iso_3166_2' => 'GI',
'iso_3166_3' => 'GIB',
'name' => 'Gibraltar',
'name_ar' => 'جبل طارق',
'region_code' => '150',
'sub_region_code' => '039',
'eea' => 0,
'calling_code' => '350',
'flag' => 'GI.png',
),
86 =>
array (
'id' => 296,
'capital' => 'Tarawa',
'citizenship' => 'Kiribatian',
'citizenship_ar' => 'كيريباتي',
'country_code' => '296',
'currency' => 'Australian dollar',
'currency_code' => 'AUD',
'currency_sub_unit' => 'cent',
'currency_symbol' => '$',
'currency_decimals' => 2,
'full_name' => 'Republic of Kiribati',
'iso_3166_2' => 'KI',
'iso_3166_3' => 'KIR',
'name' => 'Kiribati',
'name_ar' => 'كيريباتي',
'region_code' => '009',
'sub_region_code' => '057',
'eea' => 0,
'calling_code' => '686',
'flag' => 'KI.png',
),
87 =>
array (
'id' => 300,
'capital' => 'Athens',
'citizenship' => 'Greek',
'citizenship_ar' => 'يوناني',
'country_code' => '300',
'currency' => 'euro',
'currency_code' => 'EUR',
'currency_sub_unit' => 'cent',
'currency_symbol' => '€',
'currency_decimals' => 2,
'full_name' => 'Hellenic Republic',
'iso_3166_2' => 'GR',
'iso_3166_3' => 'GRC',
'name' => 'Greece',
'name_ar' => 'اليونان',
'region_code' => '150',
'sub_region_code' => '039',
'eea' => 1,
'calling_code' => '30',
'flag' => 'GR.png',
),
88 =>
array (
'id' => 304,
'capital' => 'Nuuk',
'citizenship' => 'Greenlander',
'citizenship_ar' => 'جرينلاندي',
'country_code' => '304',
'currency' => 'Danish krone',
'currency_code' => 'DKK',
'currency_sub_unit' => 'øre (inv.)',
'currency_symbol' => 'kr',
'currency_decimals' => 2,
'full_name' => 'Greenland',
'iso_3166_2' => 'GL',
'iso_3166_3' => 'GRL',
'name' => 'Greenland',
'name_ar' => 'جرينلاند',
'region_code' => '019',
'sub_region_code' => '021',
'eea' => 0,
'calling_code' => '299',
'flag' => 'GL.png',
),
89 =>
array (
'id' => 308,
'capital' => 'St George’s',
'citizenship' => 'Grenadian',
'citizenship_ar' => 'غرينادي',
'country_code' => '308',
'currency' => 'East Caribbean dollar',
'currency_code' => 'XCD',
'currency_sub_unit' => 'cent',
'currency_symbol' => '$',
'currency_decimals' => 2,
'full_name' => 'Grenada',
'iso_3166_2' => 'GD',
'iso_3166_3' => 'GRD',
'name' => 'Grenada',
'name_ar' => 'غرينادا',
'region_code' => '019',
'sub_region_code' => '029',
'eea' => 0,
'calling_code' => '1',
'flag' => 'GD.png',
),
90 =>
array (
'id' => 312,
'capital' => 'Basse Terre',
'citizenship' => 'Guadeloupean',
'citizenship_ar' => 'جزر جوادلوب',
'country_code' => '312',
'currency' => 'euro',
'currency_code' => 'EUR ',
'currency_sub_unit' => 'cent',
'currency_symbol' => '€',
'currency_decimals' => 2,
'full_name' => 'Guadeloupe',
'iso_3166_2' => 'GP',
'iso_3166_3' => 'GLP',
'name' => 'Guadeloupe',
'name_ar' => 'جزر جوادلوب',
'region_code' => '019',
'sub_region_code' => '029',
'eea' => 0,
'calling_code' => '590',
'flag' => 'GP.png',
),
91 =>
array (
'id' => 316,
'capital' => 'Agaña (Hagåtña)',
'citizenship' => 'Guamanian',
'citizenship_ar' => 'جوامي',
'country_code' => '316',
'currency' => 'US dollar',
'currency_code' => 'USD',
'currency_sub_unit' => 'cent',
'currency_symbol' => '$',
'currency_decimals' => 2,
'full_name' => 'Territory of Guam',
'iso_3166_2' => 'GU',
'iso_3166_3' => 'GUM',
'name' => 'Guam',
'name_ar' => 'جوام',
'region_code' => '009',
'sub_region_code' => '057',
'eea' => 0,
'calling_code' => '1',
'flag' => 'GU.png',
),
92 =>
array (
'id' => 320,
'capital' => 'Guatemala City',
'citizenship' => 'Guatemalan',
'citizenship_ar' => 'غواتيمالي',
'country_code' => '320',
'currency' => 'quetzal (pl. quetzales)',
'currency_code' => 'GTQ',
'currency_sub_unit' => 'centavo',
'currency_symbol' => 'Q',
'currency_decimals' => 2,
'full_name' => 'Republic of Guatemala',
'iso_3166_2' => 'GT',
'iso_3166_3' => 'GTM',
'name' => 'Guatemala',
'name_ar' => 'غواتيمال',
'region_code' => '019',
'sub_region_code' => '013',
'eea' => 0,
'calling_code' => '502',
'flag' => 'GT.png',
),
93 =>
array (
'id' => 324,
'capital' => 'Conakry',
'citizenship' => 'Guinean',
'citizenship_ar' => 'غيني',
'country_code' => '324',
'currency' => 'Guinean franc',
'currency_code' => 'GNF',
'currency_sub_unit' => '',
'currency_symbol' => 'GNF',
'currency_decimals' => 0,
'full_name' => 'Republic of Guinea',
'iso_3166_2' => 'GN',
'iso_3166_3' => 'GIN',
'name' => 'Guinea',
'name_ar' => 'غينيا',
'region_code' => '002',
'sub_region_code' => '011',
'eea' => 0,
'calling_code' => '224',
'flag' => 'GN.png',
),
94 =>
array (
'id' => 328,
'capital' => 'Georgetown',
'citizenship' => 'Guyanese',
'citizenship_ar' => 'غياني',
'country_code' => '328',
'currency' => 'Guyana dollar',
'currency_code' => 'GYD',
'currency_sub_unit' => 'cent',
'currency_symbol' => '$',
'currency_decimals' => 2,
'full_name' => 'Cooperative Republic of Guyana',
'iso_3166_2' => 'GY',
'iso_3166_3' => 'GUY',
'name' => 'Guyana',
'name_ar' => 'غيانا',
'region_code' => '019',
'sub_region_code' => '005',
'eea' => 0,
'calling_code' => '592',
'flag' => 'GY.png',
),
95 =>
array (
'id' => 332,
'capital' => 'Port-au-Prince',
'citizenship' => 'Haitian',
'citizenship_ar' => 'هايتي',
'country_code' => '332',
'currency' => 'gourde',
'currency_code' => 'HTG',
'currency_sub_unit' => 'centime',
'currency_symbol' => 'G',
'currency_decimals' => 2,
'full_name' => 'Republic of Haiti',
'iso_3166_2' => 'HT',
'iso_3166_3' => 'HTI',
'name' => 'Haiti',
'name_ar' => 'هايتي',
'region_code' => '019',
'sub_region_code' => '029',
'eea' => 0,
'calling_code' => '509',
'flag' => 'HT.png',
),
96 =>
array (
'id' => 334,
'capital' => 'Territory of Heard Island and McDonald Islands',
'citizenship' => 'of Territory of Heard Island and McDonald Islands',
'citizenship_ar' => 'جزيرة هيرد وجزر ماكدونالد',
'country_code' => '334',
'currency' => '',
'currency_code' => '',
'currency_sub_unit' => '',
'currency_symbol' => '$',
'currency_decimals' => 2,
'full_name' => 'Territory of Heard Island and McDonald Islands',
'iso_3166_2' => 'HM',
'iso_3166_3' => 'HMD',
'name' => 'Heard Island and McDonald Islands',
'name_ar' => 'جزيرة هيرد وجزر ماكدونالد',
'region_code' => '',
'sub_region_code' => '',
'eea' => 0,
'calling_code' => '61',
'flag' => 'HM.png',
),
97 =>
array (
'id' => 336,
'capital' => 'Vatican City',
'citizenship' => 'of the Holy See/of the Vatican',
'citizenship_ar' => 'فاتيكاني',
'country_code' => '336',
'currency' => 'euro',
'currency_code' => 'EUR',
'currency_sub_unit' => 'cent',
'currency_symbol' => '€',
'currency_decimals' => 2,
'full_name' => 'the Holy See/ Vatican City State',
'iso_3166_2' => 'VA',
'iso_3166_3' => 'VAT',
'name' => 'Holy See (Vatican City State)',
'name_ar' => 'فنزويلا',
'region_code' => '150',
'sub_region_code' => '039',
'eea' => 0,
'calling_code' => '39',
'flag' => 'VA.png',
),
98 =>
array (
'id' => 340,
'capital' => 'Tegucigalpa',
'citizenship' => 'Honduran',
'citizenship_ar' => 'هندوراسي',
'country_code' => '340',
'currency' => 'lempira',
'currency_code' => 'HNL',
'currency_sub_unit' => 'centavo',
'currency_symbol' => 'L',
'currency_decimals' => 2,
'full_name' => 'Republic of Honduras',
'iso_3166_2' => 'HN',
'iso_3166_3' => 'HND',
'name' => 'Honduras',
'name_ar' => 'هندوراس',
'region_code' => '019',
'sub_region_code' => '013',
'eea' => 0,
'calling_code' => '504',
'flag' => 'HN.png',
),
99 =>
array (
'id' => 344,
'capital' => '(HK3)',
'citizenship' => 'Hong Kong Chinese',
'citizenship_ar' => 'هونغ كونغي',
'country_code' => '344',
'currency' => 'Hong Kong dollar',
'currency_code' => 'HKD',
'currency_sub_unit' => 'cent',
'currency_symbol' => '$',
'currency_decimals' => 2,
'full_name' => 'Hong Kong Special Administrative Region of the People’s Republic of China (HK2)',
'iso_3166_2' => 'HK',
'iso_3166_3' => 'HKG',
'name' => 'Hong Kong',
'name_ar' => 'هونغ كونغ',
'region_code' => '142',
'sub_region_code' => '030',
'eea' => 0,
'calling_code' => '852',
'flag' => 'HK.png',
),
100 =>
array (
'id' => 348,
'capital' => 'Budapest',
'citizenship' => 'Hungarian',
'citizenship_ar' => 'مجري',
'country_code' => '348',
'currency' => 'forint (inv.)',
'currency_code' => 'HUF',
'currency_sub_unit' => '(fillér (inv.))',
'currency_symbol' => 'Ft',
'currency_decimals' => 2,
'full_name' => 'Republic of Hungary',
'iso_3166_2' => 'HU',
'iso_3166_3' => 'HUN',
'name' => 'Hungary',
'name_ar' => 'المجر',
'region_code' => '150',
'sub_region_code' => '151',
'eea' => 1,
'calling_code' => '36',
'flag' => 'HU.png',
),
101 =>
array (
'id' => 352,
'capital' => 'Reykjavik',
'citizenship' => 'Icelander',
'citizenship_ar' => 'آيسلندي',
'country_code' => '352',
'currency' => 'króna (pl. krónur)',
'currency_code' => 'ISK',
'currency_sub_unit' => '',
'currency_symbol' => 'kr',
'currency_decimals' => 0,
'full_name' => 'Republic of Iceland',
'iso_3166_2' => 'IS',
'iso_3166_3' => 'ISL',
'name' => 'Iceland',
'name_ar' => 'آيسلندا',
'region_code' => '150',
'sub_region_code' => '154',
'eea' => 0,
'calling_code' => '354',
'flag' => 'IS.png',
),
102 =>
array (
'id' => 356,
'capital' => 'New Delhi',
'citizenship' => 'Indian',
'citizenship_ar' => 'هندي',
'country_code' => '356',
'currency' => 'Indian rupee',
'currency_code' => 'INR',
'currency_sub_unit' => 'paisa',
'currency_symbol' => '₹',
'currency_decimals' => 2,
'full_name' => 'Republic of India',
'iso_3166_2' => 'IN',
'iso_3166_3' => 'IND',
'name' => 'India',
'name_ar' => 'الهند',
'region_code' => '142',
'sub_region_code' => '034',
'eea' => 0,
'calling_code' => '91',
'flag' => 'IN.png',
),
103 =>
array (
'id' => 360,
'capital' => 'Jakarta',
'citizenship' => 'Indonesian',
'citizenship_ar' => 'أندونيسيي',
'country_code' => '360',
'currency' => 'Indonesian rupiah (inv.)',
'currency_code' => 'IDR',
'currency_sub_unit' => 'sen (inv.)',
'currency_symbol' => 'Rp',
'currency_decimals' => 2,
'full_name' => 'Republic of Indonesia',
'iso_3166_2' => 'ID',
'iso_3166_3' => 'IDN',
'name' => 'Indonesia',
'name_ar' => 'أندونيسيا',
'region_code' => '142',
'sub_region_code' => '035',
'eea' => 0,
'calling_code' => '62',
'flag' => 'ID.png',
),
104 =>
array (
'id' => 364,
'capital' => 'Tehran',
'citizenship' => 'Iranian',
'citizenship_ar' => 'إيراني',
'country_code' => '364',
'currency' => 'Iranian rial',
'currency_code' => 'IRR',
'currency_sub_unit' => '(dinar) (IR1)',
'currency_symbol' => '﷼',
'currency_decimals' => 2,
'full_name' => 'Islamic Republic of Iran',
'iso_3166_2' => 'IR',
'iso_3166_3' => 'IRN',
'name' => 'Iran, Islamic Republic of',
'name_ar' => 'إيران',
'region_code' => '142',
'sub_region_code' => '034',
'eea' => 0,
'calling_code' => '98',
'flag' => 'IR.png',
),
105 =>
array (
'id' => 368,
'capital' => 'Baghdad',
'citizenship' => 'Iraqi',
'citizenship_ar' => 'عراقي',
'country_code' => '368',
'currency' => 'Iraqi dinar',
'currency_code' => 'IQD',
'currency_sub_unit' => 'fils (inv.)',
'currency_symbol' => 'IQD',
'currency_decimals' => 3,
'full_name' => 'Republic of Iraq',
'iso_3166_2' => 'IQ',
'iso_3166_3' => 'IRQ',
'name' => 'Iraq',
'name_ar' => 'العراق',
'region_code' => '142',
'sub_region_code' => '145',
'eea' => 0,
'calling_code' => '964',
'flag' => 'IQ.png',
),
106 =>
array (
'id' => 372,
'capital' => 'Dublin',
'citizenship' => 'Irish',
'citizenship_ar' => 'إيرلندا',
'country_code' => '372',
'currency' => 'euro',
'currency_code' => 'EUR',
'currency_sub_unit' => 'cent',
'currency_symbol' => '€',
'currency_decimals' => 2,
'full_name' => 'Ireland (IE1)',
'iso_3166_2' => 'IE',
'iso_3166_3' => 'IRL',
'name' => 'Ireland',
'name_ar' => 'إيرلندي',
'region_code' => '150',
'sub_region_code' => '154',
'eea' => 1,
'calling_code' => '353',
'flag' => 'IE.png',
),
107 =>
array (
'id' => 376,
'capital' => '(IL1)',
'citizenship' => 'Israeli',
'citizenship_ar' => 'إسرائيلي',
'country_code' => '376',
'currency' => 'shekel',
'currency_code' => 'ILS',
'currency_sub_unit' => 'agora',
'currency_symbol' => '₪',
'currency_decimals' => 2,
'full_name' => 'State of Israel',
'iso_3166_2' => 'IL',
'iso_3166_3' => 'ISR',
'name' => 'Israel',
'name_ar' => 'إسرائيل',
'region_code' => '142',
'sub_region_code' => '145',
'eea' => 0,
'calling_code' => '972',
'flag' => 'IL.png',
),
108 =>
array (
'id' => 380,
'capital' => 'Rome',
'citizenship' => 'Italian',
'citizenship_ar' => 'إيطالي',
'country_code' => '380',
'currency' => 'euro',
'currency_code' => 'EUR',
'currency_sub_unit' => 'cent',
'currency_symbol' => '€',
'currency_decimals' => 2,
'full_name' => 'Italian Republic',
'iso_3166_2' => 'IT',
'iso_3166_3' => 'ITA',
'name' => 'Italy',
'name_ar' => 'إيطاليا',
'region_code' => '150',
'sub_region_code' => '039',
'eea' => 1,
'calling_code' => '39',
'flag' => 'IT.png',
),
109 =>
array (
'id' => 384,
'capital' => 'Yamoussoukro (CI1)',
'citizenship' => 'Ivorian',
'citizenship_ar' => 'كوت ديفوار',
'country_code' => '384',
'currency' => 'CFA franc (BCEAO)',
'currency_code' => 'XOF',
'currency_sub_unit' => 'centime',
'currency_symbol' => 'XOF',
'currency_decimals' => 0,
'full_name' => 'Republic of Côte d’Ivoire',
'iso_3166_2' => 'CI',
'iso_3166_3' => 'CIV',
'name' => 'Côte d\'Ivoire',
'name_ar' => 'كوت ديفوار',
'region_code' => '002',
'sub_region_code' => '011',
'eea' => 0,
'calling_code' => '225',
'flag' => 'CI.png',
),
110 =>
array (
'id' => 388,
'capital' => 'Kingston',
'citizenship' => 'Jamaican',
'citizenship_ar' => 'جمايكي',
'country_code' => '388',
'currency' => 'Jamaica dollar',
'currency_code' => 'JMD',
'currency_sub_unit' => 'cent',
'currency_symbol' => '$',
'currency_decimals' => 2,
'full_name' => 'Jamaica',
'iso_3166_2' => 'JM',
'iso_3166_3' => 'JAM',
'name' => 'Jamaica',
'name_ar' => 'جمايكا',
'region_code' => '019',
'sub_region_code' => '029',
'eea' => 0,
'calling_code' => '1',
'flag' => 'JM.png',
),
111 =>
array (
'id' => 392,
'capital' => 'Tokyo',
'citizenship' => 'Japanese',
'citizenship_ar' => 'ياباني',
'country_code' => '392',
'currency' => 'yen (inv.)',
'currency_code' => 'JPY',
'currency_sub_unit' => '(sen (inv.)) (JP1)',
'currency_symbol' => '¥',
'currency_decimals' => 0,
'full_name' => 'Japan',
'iso_3166_2' => 'JP',
'iso_3166_3' => 'JPN',
'name' => 'Japan',
'name_ar' => 'اليابان',
'region_code' => '142',
'sub_region_code' => '030',
'eea' => 0,
'calling_code' => '81',
'flag' => 'JP.png',
),
112 =>
array (
'id' => 398,
'capital' => 'Astana',
'citizenship' => 'Kazakh',
'citizenship_ar' => 'كازاخستاني',
'country_code' => '398',
'currency' => 'tenge (inv.)',
'currency_code' => 'KZT',
'currency_sub_unit' => 'tiyn',
'currency_symbol' => 'лв',
'currency_decimals' => 2,
'full_name' => 'Republic of Kazakhstan',
'iso_3166_2' => 'KZ',
'iso_3166_3' => 'KAZ',
'name' => 'Kazakhstan',
'name_ar' => 'كازاخستان',
'region_code' => '142',
'sub_region_code' => '143',
'eea' => 0,
'calling_code' => '7',
'flag' => 'KZ.png',
),
113 =>
array (
'id' => 400,
'capital' => 'Amman',
'citizenship' => 'Jordanian',
'citizenship_ar' => 'أردني',
'country_code' => '400',
'currency' => 'Jordanian dinar',
'currency_code' => 'JOD',
'currency_sub_unit' => '100 qirsh',
'currency_symbol' => 'JOD',
'currency_decimals' => 2,
'full_name' => 'Hashemite Kingdom of Jordan',
'iso_3166_2' => 'JO',
'iso_3166_3' => 'JOR',
'name' => 'Jordan',
'name_ar' => 'الأردن',
'region_code' => '142',
'sub_region_code' => '145',
'eea' => 0,
'calling_code' => '962',
'flag' => 'JO.png',
),
114 =>
array (
'id' => 404,
'capital' => 'Nairobi',
'citizenship' => 'Kenyan',
'citizenship_ar' => 'كيني',
'country_code' => '404',
'currency' => 'Kenyan shilling',
'currency_code' => 'KES',
'currency_sub_unit' => 'cent',
'currency_symbol' => 'KES',
'currency_decimals' => 2,
'full_name' => 'Republic of Kenya',
'iso_3166_2' => 'KE',
'iso_3166_3' => 'KEN',
'name' => 'Kenya',
'name_ar' => 'كينيا',
'region_code' => '002',
'sub_region_code' => '014',
'eea' => 0,
'calling_code' => '254',
'flag' => 'KE.png',
),
115 =>
array (
'id' => 408,
'capital' => 'Pyongyang',
'citizenship' => 'North Korean',
'citizenship_ar' => 'كوري',
'country_code' => '408',
'currency' => 'North Korean won (inv.)',
'currency_code' => 'KPW',
'currency_sub_unit' => 'chun (inv.)',
'currency_symbol' => '₩',
'currency_decimals' => 2,
'full_name' => 'Democratic People’s Republic of Korea',
'iso_3166_2' => 'KP',
'iso_3166_3' => 'PRK',
'name' => 'Korea, Democratic People\'s Republic of',
'name_ar' => 'كوريا الشمالية',
'region_code' => '142',
'sub_region_code' => '030',
'eea' => 0,
'calling_code' => '850',
'flag' => 'KP.png',
),
116 =>
array (
'id' => 410,
'capital' => 'Seoul',
'citizenship' => 'South Korean',
'citizenship_ar' => 'كوري',
'country_code' => '410',
'currency' => 'South Korean won (inv.)',
'currency_code' => 'KRW',
'currency_sub_unit' => '(chun (inv.))',
'currency_symbol' => '₩',
'currency_decimals' => 0,
'full_name' => 'Republic of Korea',
'iso_3166_2' => 'KR',
'iso_3166_3' => 'KOR',
'name' => 'Korea, Republic of',
'name_ar' => 'كوريا الجنوبية',
'region_code' => '142',
'sub_region_code' => '030',
'eea' => 0,
'calling_code' => '82',
'flag' => 'KR.png',
),
117 =>
array (
'id' => 414,
'capital' => 'Kuwait City',
'citizenship' => 'Kuwaiti',
'citizenship_ar' => 'كويتي',
'country_code' => '414',
'currency' => 'Kuwaiti dinar',
'currency_code' => 'KWD',
'currency_sub_unit' => 'fils (inv.)',
'currency_symbol' => 'KWD',
'currency_decimals' => 3,
'full_name' => 'State of Kuwait',
'iso_3166_2' => 'KW',
'iso_3166_3' => 'KWT',
'name' => 'Kuwait',
'name_ar' => 'الكويت',
'region_code' => '142',
'sub_region_code' => '145',
'eea' => 0,
'calling_code' => '965',
'flag' => 'KW.png',
),
118 =>
array (
'id' => 417,
'capital' => 'Bishkek',
'citizenship' => 'Kyrgyz',
'citizenship_ar' => 'قيرغيزستاني',
'country_code' => '417',
'currency' => 'som',
'currency_code' => 'KGS',
'currency_sub_unit' => 'tyiyn',
'currency_symbol' => 'лв',
'currency_decimals' => 2,
'full_name' => 'Kyrgyz Republic',
'iso_3166_2' => 'KG',
'iso_3166_3' => 'KGZ',
'name' => 'Kyrgyzstan',
'name_ar' => 'قيرغيزستان',
'region_code' => '142',
'sub_region_code' => '143',
'eea' => 0,
'calling_code' => '996',
'flag' => 'KG.png',
),
119 =>
array (
'id' => 418,
'capital' => 'Vientiane',
'citizenship' => 'Lao',
'citizenship_ar' => 'لاوسي',
'country_code' => '418',
'currency' => 'kip (inv.)',
'currency_code' => 'LAK',
'currency_sub_unit' => '(at (inv.))',
'currency_symbol' => '₭',
'currency_decimals' => 0,
'full_name' => 'Lao People’s Democratic Republic',
'iso_3166_2' => 'LA',
'iso_3166_3' => 'LAO',
'name' => 'Lao People\'s Democratic Republic',
'name_ar' => 'لاوس',
'region_code' => '142',
'sub_region_code' => '035',
'eea' => 0,
'calling_code' => '856',
'flag' => 'LA.png',
),
120 =>
array (
'id' => 422,
'capital' => 'Beirut',
'citizenship' => 'Lebanese',
'citizenship_ar' => 'لبناني',
'country_code' => '422',
'currency' => 'Lebanese pound',
'currency_code' => 'LBP',
'currency_sub_unit' => '(piastre)',
'currency_symbol' => '£',
'currency_decimals' => 2,
'full_name' => 'Lebanese Republic',
'iso_3166_2' => 'LB',
'iso_3166_3' => 'LBN',
'name' => 'Lebanon',
'name_ar' => 'لبنان',
'region_code' => '142',
'sub_region_code' => '145',
'eea' => 0,
'calling_code' => '961',
'flag' => 'LB.png',
),
121 =>
array (
'id' => 426,
'capital' => 'Maseru',
'citizenship' => 'Basotho',
'citizenship_ar' => 'ليوسيتي',
'country_code' => '426',
'currency' => 'loti (pl. maloti)',
'currency_code' => 'LSL',
'currency_sub_unit' => 'sente',
'currency_symbol' => 'L',
'currency_decimals' => 2,
'full_name' => 'Kingdom of Lesotho',
'iso_3166_2' => 'LS',
'iso_3166_3' => 'LSO',
'name' => 'Lesotho',
'name_ar' => 'ليسوتو',
'region_code' => '002',
'sub_region_code' => '018',
'eea' => 0,
'calling_code' => '266',
'flag' => 'LS.png',
),
122 =>
array (
'id' => 428,
'capital' => 'Riga',
'citizenship' => 'Latvian',
'citizenship_ar' => 'لاتيفي',
'country_code' => '428',
'currency' => 'euro',
'currency_code' => 'EUR',
'currency_sub_unit' => 'cent',
'currency_symbol' => 'Ls',
'currency_decimals' => 2,
'full_name' => 'Republic of Latvia',
'iso_3166_2' => 'LV',
'iso_3166_3' => 'LVA',
'name' => 'Latvia',
'name_ar' => 'لاتفيا',
'region_code' => '150',
'sub_region_code' => '154',
'eea' => 1,
'calling_code' => '371',
'flag' => 'LV.png',
),
123 =>
array (
'id' => 430,
'capital' => 'Monrovia',
'citizenship' => 'Liberian',
'citizenship_ar' => 'ليبيري',
'country_code' => '430',
'currency' => 'Liberian dollar',
'currency_code' => 'LRD',
'currency_sub_unit' => 'cent',
'currency_symbol' => '$',
'currency_decimals' => 2,
'full_name' => 'Republic of Liberia',
'iso_3166_2' => 'LR',
'iso_3166_3' => 'LBR',
'name' => 'Liberia',
'name_ar' => 'ليبيريا',
'region_code' => '002',
'sub_region_code' => '011',
'eea' => 0,
'calling_code' => '231',
'flag' => 'LR.png',
),
124 =>
array (
'id' => 434,
'capital' => 'Tripoli',
'citizenship' => 'Libyan',
'citizenship_ar' => 'ليبي',
'country_code' => '434',
'currency' => 'Libyan dinar',
'currency_code' => 'LYD',
'currency_sub_unit' => 'dirham',
'currency_symbol' => 'LYD',
'currency_decimals' => 3,
'full_name' => 'Socialist People’s Libyan Arab Jamahiriya',
'iso_3166_2' => 'LY',
'iso_3166_3' => 'LBY',
'name' => 'Libya',
'name_ar' => 'ليبيا',
'region_code' => '002',
'sub_region_code' => '015',
'eea' => 0,
'calling_code' => '218',
'flag' => 'LY.png',
),
125 =>
array (
'id' => 438,
'capital' => 'Vaduz',
'citizenship' => 'Liechtensteiner',
'citizenship_ar' => 'ليختنشتين',
'country_code' => '438',
'currency' => 'Swiss franc',
'currency_code' => 'CHF',
'currency_sub_unit' => 'centime',
'currency_symbol' => 'CHF',
'currency_decimals' => 2,
'full_name' => 'Principality of Liechtenstein',
'iso_3166_2' => 'LI',
'iso_3166_3' => 'LIE',
'name' => 'Liechtenstein',
'name_ar' => 'ليختنشتيني',
'region_code' => '150',
'sub_region_code' => '155',
'eea' => 0,
'calling_code' => '423',
'flag' => 'LI.png',
),
126 =>
array (
'id' => 440,
'capital' => 'Vilnius',
'citizenship' => 'Lithuanian',
'citizenship_ar' => 'لتوانيي',
'country_code' => '440',
'currency' => 'euro',
'currency_code' => 'EUR',
'currency_sub_unit' => 'cent',
'currency_symbol' => 'Lt',
'currency_decimals' => 2,
'full_name' => 'Republic of Lithuania',
'iso_3166_2' => 'LT',
'iso_3166_3' => 'LTU',
'name' => 'Lithuania',
'name_ar' => 'لتوانيا',
'region_code' => '150',
'sub_region_code' => '154',
'eea' => 1,
'calling_code' => '370',
'flag' => 'LT.png',
),
127 =>
array (
'id' => 442,
'capital' => 'Luxembourg',
'citizenship' => 'Luxembourger',
'citizenship_ar' => 'لوكسمبورغي',
'country_code' => '442',
'currency' => 'euro',
'currency_code' => 'EUR',
'currency_sub_unit' => 'cent',
'currency_symbol' => '€',
'currency_decimals' => 2,
'full_name' => 'Grand Duchy of Luxembourg',
'iso_3166_2' => 'LU',
'iso_3166_3' => 'LUX',
'name' => 'Luxembourg',
'name_ar' => 'لوكسمبورغ',
'region_code' => '150',
'sub_region_code' => '155',
'eea' => 1,
'calling_code' => '352',
'flag' => 'LU.png',
),
128 =>
array (
'id' => 446,
'capital' => 'Macao (MO3)',
'citizenship' => 'Macanese',
'citizenship_ar' => 'ماكاوي',
'country_code' => '446',
'currency' => 'pataca',
'currency_code' => 'MOP',
'currency_sub_unit' => 'avo',
'currency_symbol' => 'MOP',
'currency_decimals' => 2,
'full_name' => 'Macao Special Administrative Region of the People’s Republic of China (MO2)',
'iso_3166_2' => 'MO',
'iso_3166_3' => 'MAC',
'name' => 'Macao',
'name_ar' => 'ماكاو',
'region_code' => '142',
'sub_region_code' => '030',
'eea' => 0,
'calling_code' => '853',
'flag' => 'MO.png',
),
129 =>
array (
'id' => 450,
'capital' => 'Antananarivo',
'citizenship' => 'Malagasy',
'citizenship_ar' => 'مدغشقري',
'country_code' => '450',
'currency' => 'ariary',
'currency_code' => 'MGA',
'currency_sub_unit' => 'iraimbilanja (inv.)',
'currency_symbol' => 'MGA',
'currency_decimals' => 2,
'full_name' => 'Republic of Madagascar',
'iso_3166_2' => 'MG',
'iso_3166_3' => 'MDG',
'name' => 'Madagascar',
'name_ar' => 'مدغشقر',
'region_code' => '002',
'sub_region_code' => '014',
'eea' => 0,
'calling_code' => '261',
'flag' => 'MG.png',
),
130 =>
array (
'id' => 454,
'capital' => 'Lilongwe',
'citizenship' => 'Malawian',
'citizenship_ar' => 'مالاوي',
'country_code' => '454',
'currency' => 'Malawian kwacha (inv.)',
'currency_code' => 'MWK',
'currency_sub_unit' => 'tambala (inv.)',
'currency_symbol' => 'MK',
'currency_decimals' => 2,
'full_name' => 'Republic of Malawi',
'iso_3166_2' => 'MW',
'iso_3166_3' => 'MWI',
'name' => 'Malawi',
'name_ar' => 'مالاوي',
'region_code' => '002',
'sub_region_code' => '014',
'eea' => 0,
'calling_code' => '265',
'flag' => 'MW.png',
),
131 =>
array (
'id' => 458,
'capital' => 'Kuala Lumpur (MY1)',
'citizenship' => 'Malaysian',
'citizenship_ar' => 'ماليزي',
'country_code' => '458',
'currency' => 'ringgit (inv.)',
'currency_code' => 'MYR',
'currency_sub_unit' => 'sen (inv.)',
'currency_symbol' => 'RM',
'currency_decimals' => 2,
'full_name' => 'Malaysia',
'iso_3166_2' => 'MY',
'iso_3166_3' => 'MYS',
'name' => 'Malaysia',
'name_ar' => 'ماليزيا',
'region_code' => '142',
'sub_region_code' => '035',
'eea' => 0,
'calling_code' => '60',
'flag' => 'MY.png',
),
132 =>
array (
'id' => 462,
'capital' => 'Malé',
'citizenship' => 'Maldivian',
'citizenship_ar' => 'مالديفي',
'country_code' => '462',
'currency' => 'rufiyaa',
'currency_code' => 'MVR',
'currency_sub_unit' => 'laari (inv.)',
'currency_symbol' => 'Rf',
'currency_decimals' => 2,
'full_name' => 'Republic of Maldives',
'iso_3166_2' => 'MV',
'iso_3166_3' => 'MDV',
'name' => 'Maldives',
'name_ar' => 'المالديف',
'region_code' => '142',
'sub_region_code' => '034',
'eea' => 0,
'calling_code' => '960',
'flag' => 'MV.png',
),
133 =>
array (
'id' => 466,
'capital' => 'Bamako',
'citizenship' => 'Malian',
'citizenship_ar' => 'مالي',
'country_code' => '466',
'currency' => 'CFA franc (BCEAO)',
'currency_code' => 'XOF',
'currency_sub_unit' => 'centime',
'currency_symbol' => 'XOF',
'currency_decimals' => 0,
'full_name' => 'Republic of Mali',
'iso_3166_2' => 'ML',
'iso_3166_3' => 'MLI',
'name' => 'Mali',
'name_ar' => 'مالي',
'region_code' => '002',
'sub_region_code' => '011',
'eea' => 0,
'calling_code' => '223',
'flag' => 'ML.png',
),
134 =>
array (
'id' => 470,
'capital' => 'Valletta',
'citizenship' => 'Maltese',
'citizenship_ar' => 'مالطي',
'country_code' => '470',
'currency' => 'euro',
'currency_code' => 'EUR',
'currency_sub_unit' => 'cent',
'currency_symbol' => 'MTL',
'currency_decimals' => 2,
'full_name' => 'Republic of Malta',
'iso_3166_2' => 'MT',
'iso_3166_3' => 'MLT',
'name' => 'Malta',
'name_ar' => 'مالطا',
'region_code' => '150',
'sub_region_code' => '039',
'eea' => 1,
'calling_code' => '356',
'flag' => 'MT.png',
),
135 =>
array (
'id' => 474,
'capital' => 'Fort-de-France',
'citizenship' => 'Martinican',
'citizenship_ar' => 'مارتينيكي',
'country_code' => '474',
'currency' => 'euro',
'currency_code' => 'EUR',
'currency_sub_unit' => 'cent',
'currency_symbol' => '€',
'currency_decimals' => 2,
'full_name' => 'Martinique',
'iso_3166_2' => 'MQ',
'iso_3166_3' => 'MTQ',
'name' => 'Martinique',
'name_ar' => 'مارتينيك',
'region_code' => '019',
'sub_region_code' => '029',
'eea' => 0,
'calling_code' => '596',
'flag' => 'MQ.png',
),
136 =>
array (
'id' => 478,
'capital' => 'Nouakchott',
'citizenship' => 'Mauritanian',
'citizenship_ar' => 'موريتانيي',
'country_code' => '478',
'currency' => 'ouguiya',
'currency_code' => 'MRO',
'currency_sub_unit' => 'khoum',
'currency_symbol' => 'UM',
'currency_decimals' => 2,
'full_name' => 'Islamic Republic of Mauritania',
'iso_3166_2' => 'MR',
'iso_3166_3' => 'MRT',
'name' => 'Mauritania',
'name_ar' => 'موريتانيا',
'region_code' => '002',
'sub_region_code' => '011',
'eea' => 0,
'calling_code' => '222',
'flag' => 'MR.png',
),
137 =>
array (
'id' => 480,
'capital' => 'Port Louis',
'citizenship' => 'Mauritian',
'citizenship_ar' => 'موريشيوسي',
'country_code' => '480',
'currency' => 'Mauritian rupee',
'currency_code' => 'MUR',
'currency_sub_unit' => 'cent',
'currency_symbol' => '₨',
'currency_decimals' => 2,
'full_name' => 'Republic of Mauritius',
'iso_3166_2' => 'MU',
'iso_3166_3' => 'MUS',
'name' => 'Mauritius',
'name_ar' => 'موريشيوس',
'region_code' => '002',
'sub_region_code' => '014',
'eea' => 0,
'calling_code' => '230',
'flag' => 'MU.png',
),
138 =>
array (
'id' => 484,
'capital' => 'Mexico City',
'citizenship' => 'Mexican',
'citizenship_ar' => 'مكسيكي',
'country_code' => '484',
'currency' => 'Mexican peso',
'currency_code' => 'MXN',
'currency_sub_unit' => 'centavo',
'currency_symbol' => '$',
'currency_decimals' => 2,
'full_name' => 'United Mexican States',
'iso_3166_2' => 'MX',
'iso_3166_3' => 'MEX',
'name' => 'Mexico',
'name_ar' => 'المكسيك',
'region_code' => '019',
'sub_region_code' => '013',
'eea' => 0,
'calling_code' => '52',
'flag' => 'MX.png',
),
139 =>
array (
'id' => 492,
'capital' => 'Monaco',
'citizenship' => 'Monegasque',
'citizenship_ar' => 'مونيكي',
'country_code' => '492',
'currency' => 'euro',
'currency_code' => 'EUR',
'currency_sub_unit' => 'cent',
'currency_symbol' => '€',
'currency_decimals' => 2,
'full_name' => 'Principality of Monaco',
'iso_3166_2' => 'MC',
'iso_3166_3' => 'MCO',
'name' => 'Monaco',
'name_ar' => 'موناكو',
'region_code' => '150',
'sub_region_code' => '155',
'eea' => 0,
'calling_code' => '377',
'flag' => 'MC.png',
),
140 =>
array (
'id' => 496,
'capital' => 'Ulan Bator',
'citizenship' => 'Mongolian',
'citizenship_ar' => 'منغولي',
'country_code' => '496',
'currency' => 'tugrik',
'currency_code' => 'MNT',
'currency_sub_unit' => 'möngö (inv.)',
'currency_symbol' => '₮',
'currency_decimals' => 2,
'full_name' => 'Mongolia',
'iso_3166_2' => 'MN',
'iso_3166_3' => 'MNG',
'name' => 'Mongolia',
'name_ar' => 'منغوليا',
'region_code' => '142',
'sub_region_code' => '030',
'eea' => 0,
'calling_code' => '976',
'flag' => 'MN.png',
),
141 =>
array (
'id' => 498,
'capital' => 'Chisinau',
'citizenship' => 'Moldovan',
'citizenship_ar' => 'مولديفي',
'country_code' => '498',
'currency' => 'Moldovan leu (pl. lei)',
'currency_code' => 'MDL',
'currency_sub_unit' => 'ban',
'currency_symbol' => 'MDL',
'currency_decimals' => 2,
'full_name' => 'Republic of Moldova',
'iso_3166_2' => 'MD',
'iso_3166_3' => 'MDA',
'name' => 'Moldova, Republic of',
'name_ar' => 'مولدافيا',
'region_code' => '150',
'sub_region_code' => '151',
'eea' => 0,
'calling_code' => '373',
'flag' => 'MD.png',
),
142 =>
array (
'id' => 499,
'capital' => 'Podgorica',
'citizenship' => 'Montenegrin',
'citizenship_ar' => 'الجبل الأسود',
'country_code' => '499',
'currency' => 'euro',
'currency_code' => 'EUR',
'currency_sub_unit' => 'cent',
'currency_symbol' => '€',
'currency_decimals' => 2,
'full_name' => 'Montenegro',
'iso_3166_2' => 'ME',
'iso_3166_3' => 'MNE',
'name' => 'Montenegro',
'name_ar' => 'الجبل الأسود',
'region_code' => '150',
'sub_region_code' => '039',
'eea' => 0,
'calling_code' => '382',
'flag' => 'ME.png',
),
143 =>
array (
'id' => 500,
'capital' => 'Plymouth (MS2)',
'citizenship' => 'Montserratian',
'citizenship_ar' => 'مونتسيراتي',
'country_code' => '500',
'currency' => 'East Caribbean dollar',
'currency_code' => 'XCD',
'currency_sub_unit' => 'cent',
'currency_symbol' => '$',
'currency_decimals' => 2,
'full_name' => 'Montserrat',
'iso_3166_2' => 'MS',
'iso_3166_3' => 'MSR',
'name' => 'Montserrat',
'name_ar' => 'مونتسيرات',
'region_code' => '019',
'sub_region_code' => '029',
'eea' => 0,
'calling_code' => '1',
'flag' => 'MS.png',
),
144 =>
array (
'id' => 504,
'capital' => 'Rabat',
'citizenship' => 'Moroccan',
'citizenship_ar' => 'مغربي',
'country_code' => '504',
'currency' => 'Moroccan dirham',
'currency_code' => 'MAD',
'currency_sub_unit' => 'centime',
'currency_symbol' => 'MAD',
'currency_decimals' => 2,
'full_name' => 'Kingdom of Morocco',
'iso_3166_2' => 'MA',
'iso_3166_3' => 'MAR',
'name' => 'Morocco',
'name_ar' => 'المغرب',
'region_code' => '002',
'sub_region_code' => '015',
'eea' => 0,
'calling_code' => '212',
'flag' => 'MA.png',
),
145 =>
array (
'id' => 508,
'capital' => 'Maputo',
'citizenship' => 'Mozambican',
'citizenship_ar' => 'موزمبيقي',
'country_code' => '508',
'currency' => 'metical',
'currency_code' => 'MZN',
'currency_sub_unit' => 'centavo',
'currency_symbol' => 'MT',
'currency_decimals' => 2,
'full_name' => 'Republic of Mozambique',
'iso_3166_2' => 'MZ',
'iso_3166_3' => 'MOZ',
'name' => 'Mozambique',
'name_ar' => 'موزمبيق',
'region_code' => '002',
'sub_region_code' => '014',
'eea' => 0,
'calling_code' => '258',
'flag' => 'MZ.png',
),
146 =>
array (
'id' => 512,
'capital' => 'Muscat',
'citizenship' => 'Omani',
'citizenship_ar' => 'عماني',
'country_code' => '512',
'currency' => 'Omani rial',
'currency_code' => 'OMR',
'currency_sub_unit' => 'baiza',
'currency_symbol' => '﷼',
'currency_decimals' => 3,
'full_name' => 'Sultanate of Oman',
'iso_3166_2' => 'OM',
'iso_3166_3' => 'OMN',
'name' => 'Oman',
'name_ar' => 'عمان',
'region_code' => '142',
'sub_region_code' => '145',
'eea' => 0,
'calling_code' => '968',
'flag' => 'OM.png',
),
147 =>
array (
'id' => 516,
'capital' => 'Windhoek',
'citizenship' => 'Namibian',
'citizenship_ar' => 'ناميبي',
'country_code' => '516',
'currency' => 'Namibian dollar',
'currency_code' => 'NAD',
'currency_sub_unit' => 'cent',
'currency_symbol' => '$',
'currency_decimals' => 2,
'full_name' => 'Republic of Namibia',
'iso_3166_2' => 'NA',
'iso_3166_3' => 'NAM',
'name' => 'Namibia',
'name_ar' => 'ناميبيا',
'region_code' => '002',
'sub_region_code' => '018',
'eea' => 0,
'calling_code' => '264',
'flag' => 'NA.png',
),
148 =>
array (
'id' => 520,
'capital' => 'Yaren',
'citizenship' => 'Nauruan',
'citizenship_ar' => 'نوري',
'country_code' => '520',
'currency' => 'Australian dollar',
'currency_code' => 'AUD',
'currency_sub_unit' => 'cent',
'currency_symbol' => '$',
'currency_decimals' => 2,
'full_name' => 'Republic of Nauru',
'iso_3166_2' => 'NR',
'iso_3166_3' => 'NRU',
'name' => 'Nauru',
'name_ar' => 'نورو',
'region_code' => '009',
'sub_region_code' => '057',
'eea' => 0,
'calling_code' => '674',
'flag' => 'NR.png',
),
149 =>
array (
'id' => 524,
'capital' => 'Kathmandu',
'citizenship' => 'Nepalese',
'citizenship_ar' => 'نيبالي',
'country_code' => '524',
'currency' => 'Nepalese rupee',
'currency_code' => 'NPR',
'currency_sub_unit' => 'paisa (inv.)',
'currency_symbol' => '₨',
'currency_decimals' => 2,
'full_name' => 'Nepal',
'iso_3166_2' => 'NP',
'iso_3166_3' => 'NPL',
'name' => 'Nepal',
'name_ar' => 'نيبال',
'region_code' => '142',
'sub_region_code' => '034',
'eea' => 0,
'calling_code' => '977',
'flag' => 'NP.png',
),
150 =>
array (
'id' => 528,
'capital' => 'Amsterdam (NL2)',
'citizenship' => 'Dutch',
'citizenship_ar' => 'هولندي',
'country_code' => '528',
'currency' => 'euro',
'currency_code' => 'EUR',
'currency_sub_unit' => 'cent',
'currency_symbol' => '€',
'currency_decimals' => 2,
'full_name' => 'Kingdom of the Netherlands',
'iso_3166_2' => 'NL',
'iso_3166_3' => 'NLD',
'name' => 'Netherlands',
'name_ar' => 'هولندا',
'region_code' => '150',
'sub_region_code' => '155',
'eea' => 1,
'calling_code' => '31',
'flag' => 'NL.png',
),
151 =>
array (
'id' => 531,
'capital' => 'Willemstad',
'citizenship' => 'Curaçaoan',
'citizenship_ar' => 'كوراساوي',
'country_code' => '531',
'currency' => 'Netherlands Antillean guilder (CW1)',
'currency_code' => 'ANG',
'currency_sub_unit' => 'cent',
'currency_symbol' => NULL,
'currency_decimals' => NULL,
'full_name' => 'Curaçao',
'iso_3166_2' => 'CW',
'iso_3166_3' => 'CUW',
'name' => 'Curaçao',
'name_ar' => 'كوراساو',
'region_code' => '019',
'sub_region_code' => '029',
'eea' => 0,
'calling_code' => '599',
'flag' => NULL,
),
152 =>
array (
'id' => 533,
'capital' => 'Oranjestad',
'citizenship' => 'Aruban',
'citizenship_ar' => 'أوروبهيني',
'country_code' => '533',
'currency' => 'Aruban guilder',
'currency_code' => 'AWG',
'currency_sub_unit' => 'cent',
'currency_symbol' => 'ƒ',
'currency_decimals' => 2,
'full_name' => 'Aruba',
'iso_3166_2' => 'AW',
'iso_3166_3' => 'ABW',
'name' => 'Aruba',
'name_ar' => 'أروبه',
'region_code' => '019',
'sub_region_code' => '029',
'eea' => 0,
'calling_code' => '297',
'flag' => 'AW.png',
),
153 =>
array (
'id' => 534,
'capital' => 'Philipsburg',
'citizenship' => 'Sint Maartener',
'citizenship_ar' => 'ساينت مارتني هولندي',
'country_code' => '534',
'currency' => 'Netherlands Antillean guilder (SX1)',
'currency_code' => 'ANG',
'currency_sub_unit' => 'cent',
'currency_symbol' => NULL,
'currency_decimals' => NULL,
'full_name' => 'Sint Maarten',
'iso_3166_2' => 'SX',
'iso_3166_3' => 'SXM',
'name' => 'Sint Maarten (Dutch part)',
'name_ar' => 'ساينت مارتن هولندي',
'region_code' => '019',
'sub_region_code' => '029',
'eea' => 0,
'calling_code' => '721',
'flag' => NULL,
),
154 =>
array (
'id' => 535,
'capital' => NULL,
'citizenship' => 'of Bonaire, Sint Eustatius and Saba',
'citizenship_ar' => 'من بونير ، سينت أوستاتيوس وسابا',
'country_code' => '535',
'currency' => 'US dollar',
'currency_code' => 'USD',
'currency_sub_unit' => 'cent',
'currency_symbol' => NULL,
'currency_decimals' => NULL,
'full_name' => NULL,
'iso_3166_2' => 'BQ',
'iso_3166_3' => 'BES',
'name' => 'Bonaire, Sint Eustatius and Saba',
'name_ar' => 'بونير ، سينت أوستاتيوس وسابا',
'region_code' => '019',
'sub_region_code' => '029',
'eea' => 0,
'calling_code' => '599',
'flag' => NULL,
),
155 =>
array (
'id' => 540,
'capital' => 'Nouméa',
'citizenship' => 'New Caledonian',
'citizenship_ar' => 'كاليدوني',
'country_code' => '540',
'currency' => 'CFP franc',
'currency_code' => 'XPF',
'currency_sub_unit' => 'centime',
'currency_symbol' => 'XPF',
'currency_decimals' => 0,
'full_name' => 'New Caledonia',
'iso_3166_2' => 'NC',
'iso_3166_3' => 'NCL',
'name' => 'New Caledonia',
'name_ar' => 'كاليدونيا الجديدة',
'region_code' => '009',
'sub_region_code' => '054',
'eea' => 0,
'calling_code' => '687',
'flag' => 'NC.png',
),
156 =>
array (
'id' => 548,
'capital' => 'Port Vila',
'citizenship' => 'Vanuatuan',
'citizenship_ar' => 'فانواتي',
'country_code' => '548',
'currency' => 'vatu (inv.)',
'currency_code' => 'VUV',
'currency_sub_unit' => '',
'currency_symbol' => 'Vt',
'currency_decimals' => 0,
'full_name' => 'Republic of Vanuatu',
'iso_3166_2' => 'VU',
'iso_3166_3' => 'VUT',
'name' => 'Vanuatu',
'name_ar' => 'فانواتو',
'region_code' => '009',
'sub_region_code' => '054',
'eea' => 0,
'calling_code' => '678',
'flag' => 'VU.png',
),
157 =>
array (
'id' => 554,
'capital' => 'Wellington',
'citizenship' => 'New Zealander',
'citizenship_ar' => 'نيوزيلندي',
'country_code' => '554',
'currency' => 'New Zealand dollar',
'currency_code' => 'NZD',
'currency_sub_unit' => 'cent',
'currency_symbol' => '$',
'currency_decimals' => 2,
'full_name' => 'New Zealand',
'iso_3166_2' => 'NZ',
'iso_3166_3' => 'NZL',
'name' => 'New Zealand',
'name_ar' => 'نيوزيلندا',
'region_code' => '009',
'sub_region_code' => '053',
'eea' => 0,
'calling_code' => '64',
'flag' => 'NZ.png',
),
158 =>
array (
'id' => 558,
'capital' => 'Managua',
'citizenship' => 'Nicaraguan',
'citizenship_ar' => 'نيكاراجوي',
'country_code' => '558',
'currency' => 'córdoba oro',
'currency_code' => 'NIO',
'currency_sub_unit' => 'centavo',
'currency_symbol' => 'C$',
'currency_decimals' => 2,
'full_name' => 'Republic of Nicaragua',
'iso_3166_2' => 'NI',
'iso_3166_3' => 'NIC',
'name' => 'Nicaragua',
'name_ar' => 'نيكاراجوا',
'region_code' => '019',
'sub_region_code' => '013',
'eea' => 0,
'calling_code' => '505',
'flag' => 'NI.png',
),
159 =>
array (
'id' => 562,
'capital' => 'Niamey',
'citizenship' => 'Nigerien',
'citizenship_ar' => 'نيجيري',
'country_code' => '562',
'currency' => 'CFA franc (BCEAO)',
'currency_code' => 'XOF',
'currency_sub_unit' => 'centime',
'currency_symbol' => 'XOF',
'currency_decimals' => 0,
'full_name' => 'Republic of Niger',
'iso_3166_2' => 'NE',
'iso_3166_3' => 'NER',
'name' => 'Niger',
'name_ar' => 'النيجر',
'region_code' => '002',
'sub_region_code' => '011',
'eea' => 0,
'calling_code' => '227',
'flag' => 'NE.png',
),
160 =>
array (
'id' => 566,
'capital' => 'Abuja',
'citizenship' => 'Nigerian',
'citizenship_ar' => 'نيجيري',
'country_code' => '566',
'currency' => 'naira (inv.)',
'currency_code' => 'NGN',
'currency_sub_unit' => 'kobo (inv.)',
'currency_symbol' => '₦',
'currency_decimals' => 2,
'full_name' => 'Federal Republic of Nigeria',
'iso_3166_2' => 'NG',
'iso_3166_3' => 'NGA',
'name' => 'Nigeria',
'name_ar' => 'نيجيريا',
'region_code' => '002',
'sub_region_code' => '011',
'eea' => 0,
'calling_code' => '234',
'flag' => 'NG.png',
),
161 =>
array (
'id' => 570,
'capital' => 'Alofi',
'citizenship' => 'Niuean',
'citizenship_ar' => 'ني',
'country_code' => '570',
'currency' => 'New Zealand dollar',
'currency_code' => 'NZD',
'currency_sub_unit' => 'cent',
'currency_symbol' => '$',
'currency_decimals' => 2,
'full_name' => 'Niue',
'iso_3166_2' => 'NU',
'iso_3166_3' => 'NIU',
'name' => 'Niue',
'name_ar' => 'ني',
'region_code' => '009',
'sub_region_code' => '061',
'eea' => 0,
'calling_code' => '683',
'flag' => 'NU.png',
),
162 =>
array (
'id' => 574,
'capital' => 'Kingston',
'citizenship' => 'Norfolk Islander',
'citizenship_ar' => 'نورفوليكي',
'country_code' => '574',
'currency' => 'Australian dollar',
'currency_code' => 'AUD',
'currency_sub_unit' => 'cent',
'currency_symbol' => '$',
'currency_decimals' => 2,
'full_name' => 'Territory of Norfolk Island',
'iso_3166_2' => 'NF',
'iso_3166_3' => 'NFK',
'name' => 'Norfolk Island',
'name_ar' => 'جزيرة نورفولك',
'region_code' => '009',
'sub_region_code' => '053',
'eea' => 0,
'calling_code' => '672',
'flag' => 'NF.png',
),
163 =>
array (
'id' => 578,
'capital' => 'Oslo',
'citizenship' => 'Norwegian',
'citizenship_ar' => 'نرويجي',
'country_code' => '578',
'currency' => 'Norwegian krone (pl. kroner)',
'currency_code' => 'NOK',
'currency_sub_unit' => 'øre (inv.)',
'currency_symbol' => 'kr',
'currency_decimals' => 2,
'full_name' => 'Kingdom of Norway',
'iso_3166_2' => 'NO',
'iso_3166_3' => 'NOR',
'name' => 'Norway',
'name_ar' => 'النرويج',
'region_code' => '150',
'sub_region_code' => '154',
'eea' => 0,
'calling_code' => '47',
'flag' => 'NO.png',
),
164 =>
array (
'id' => 580,
'capital' => 'Saipan',
'citizenship' => 'Northern Mariana Islander',
'citizenship_ar' => 'ماريني',
'country_code' => '580',
'currency' => 'US dollar',
'currency_code' => 'USD',
'currency_sub_unit' => 'cent',
'currency_symbol' => '$',
'currency_decimals' => 2,
'full_name' => 'Commonwealth of the Northern Mariana Islands',
'iso_3166_2' => 'MP',
'iso_3166_3' => 'MNP',
'name' => 'Northern Mariana Islands',
'name_ar' => 'جزر ماريانا الشمالية',
'region_code' => '009',
'sub_region_code' => '057',
'eea' => 0,
'calling_code' => '1',
'flag' => 'MP.png',
),
165 =>
array (
'id' => 581,
'capital' => 'United States Minor Outlying Islands',
'citizenship' => 'of United States Minor Outlying Islands',
'citizenship_ar' => 'أمريكي',
'country_code' => '581',
'currency' => 'US dollar',
'currency_code' => 'USD',
'currency_sub_unit' => 'cent',
'currency_symbol' => '$',
'currency_decimals' => 2,
'full_name' => 'United States Minor Outlying Islands',
'iso_3166_2' => 'UM',
'iso_3166_3' => 'UMI',
'name' => 'United States Minor Outlying Islands',
'name_ar' => 'قائمة الولايات والمناطق الأمريكية',
'region_code' => '',
'sub_region_code' => '',
'eea' => 0,
'calling_code' => '1',
'flag' => 'UM.png',
),
166 =>
array (
'id' => 583,
'capital' => 'Palikir',
'citizenship' => 'Micronesian',
'citizenship_ar' => 'مايكرونيزيي',
'country_code' => '583',
'currency' => 'US dollar',
'currency_code' => 'USD',
'currency_sub_unit' => 'cent',
'currency_symbol' => '$',
'currency_decimals' => 2,
'full_name' => 'Federated States of Micronesia',
'iso_3166_2' => 'FM',
'iso_3166_3' => 'FSM',
'name' => 'Micronesia, Federated States of',
'name_ar' => 'مايكرونيزيا',
'region_code' => '009',
'sub_region_code' => '057',
'eea' => 0,
'calling_code' => '691',
'flag' => 'FM.png',
),
167 =>
array (
'id' => 584,
'capital' => 'Majuro',
'citizenship' => 'Marshallese',
'citizenship_ar' => 'مارشالي',
'country_code' => '584',
'currency' => 'US dollar',
'currency_code' => 'USD',
'currency_sub_unit' => 'cent',
'currency_symbol' => '$',
'currency_decimals' => 2,
'full_name' => 'Republic of the Marshall Islands',
'iso_3166_2' => 'MH',
'iso_3166_3' => 'MHL',
'name' => 'Marshall Islands',
'name_ar' => 'جزر مارشال',
'region_code' => '009',
'sub_region_code' => '057',
'eea' => 0,
'calling_code' => '692',
'flag' => 'MH.png',
),
168 =>
array (
'id' => 585,
'capital' => 'Melekeok',
'citizenship' => 'Palauan',
'citizenship_ar' => 'بالاوي',
'country_code' => '585',
'currency' => 'US dollar',
'currency_code' => 'USD',
'currency_sub_unit' => 'cent',
'currency_symbol' => '$',
'currency_decimals' => 2,
'full_name' => 'Republic of Palau',
'iso_3166_2' => 'PW',
'iso_3166_3' => 'PLW',
'name' => 'Palau',
'name_ar' => 'بالاو',
'region_code' => '009',
'sub_region_code' => '057',
'eea' => 0,
'calling_code' => '680',
'flag' => 'PW.png',
),
169 =>
array (
'id' => 586,
'capital' => 'Islamabad',
'citizenship' => 'Pakistani',
'citizenship_ar' => 'باكستاني',
'country_code' => '586',
'currency' => 'Pakistani rupee',
'currency_code' => 'PKR',
'currency_sub_unit' => 'paisa',
'currency_symbol' => '₨',
'currency_decimals' => 2,
'full_name' => 'Islamic Republic of Pakistan',
'iso_3166_2' => 'PK',
'iso_3166_3' => 'PAK',
'name' => 'Pakistan',
'name_ar' => 'باكستان',
'region_code' => '142',
'sub_region_code' => '034',
'eea' => 0,
'calling_code' => '92',
'flag' => 'PK.png',
),
170 =>
array (
'id' => 591,
'capital' => 'Panama City',
'citizenship' => 'Panamanian',
'citizenship_ar' => 'بنمي',
'country_code' => '591',
'currency' => 'balboa',
'currency_code' => 'PAB',
'currency_sub_unit' => 'centésimo',
'currency_symbol' => 'B/.',
'currency_decimals' => 2,
'full_name' => 'Republic of Panama',
'iso_3166_2' => 'PA',
'iso_3166_3' => 'PAN',
'name' => 'Panama',
'name_ar' => 'بنما',
'region_code' => '019',
'sub_region_code' => '013',
'eea' => 0,
'calling_code' => '507',
'flag' => 'PA.png',
),
171 =>
array (
'id' => 598,
'capital' => 'Port Moresby',
'citizenship' => 'Papua New Guinean',
'citizenship_ar' => 'بابوي',
'country_code' => '598',
'currency' => 'kina (inv.)',
'currency_code' => 'PGK',
'currency_sub_unit' => 'toea (inv.)',
'currency_symbol' => 'PGK',
'currency_decimals' => 2,
'full_name' => 'Independent State of Papua New Guinea',
'iso_3166_2' => 'PG',
'iso_3166_3' => 'PNG',
'name' => 'Papua New Guinea',
'name_ar' => 'بابوا غينيا الجديدة',
'region_code' => '009',
'sub_region_code' => '054',
'eea' => 0,
'calling_code' => '675',
'flag' => 'PG.png',
),
172 =>
array (
'id' => 600,
'capital' => 'Asunción',
'citizenship' => 'Paraguayan',
'citizenship_ar' => 'بارغاوي',
'country_code' => '600',
'currency' => 'guaraní',
'currency_code' => 'PYG',
'currency_sub_unit' => 'céntimo',
'currency_symbol' => 'Gs',
'currency_decimals' => 0,
'full_name' => 'Republic of Paraguay',
'iso_3166_2' => 'PY',
'iso_3166_3' => 'PRY',
'name' => 'Paraguay',
'name_ar' => 'باراغواي',
'region_code' => '019',
'sub_region_code' => '005',
'eea' => 0,
'calling_code' => '595',
'flag' => 'PY.png',
),
173 =>
array (
'id' => 604,
'capital' => 'Lima',
'citizenship' => 'Peruvian',
'citizenship_ar' => 'بيري',
'country_code' => '604',
'currency' => 'new sol',
'currency_code' => 'PEN',
'currency_sub_unit' => 'céntimo',
'currency_symbol' => 'S/.',
'currency_decimals' => 2,
'full_name' => 'Republic of Peru',
'iso_3166_2' => 'PE',
'iso_3166_3' => 'PER',
'name' => 'Peru',
'name_ar' => 'بيرو',
'region_code' => '019',
'sub_region_code' => '005',
'eea' => 0,
'calling_code' => '51',
'flag' => 'PE.png',
),
174 =>
array (
'id' => 608,
'capital' => 'Manila',
'citizenship' => 'Filipino',
'citizenship_ar' => 'فلبيني',
'country_code' => '608',
'currency' => 'Philippine peso',
'currency_code' => 'PHP',
'currency_sub_unit' => 'centavo',
'currency_symbol' => 'Php',
'currency_decimals' => 2,
'full_name' => 'Republic of the Philippines',
'iso_3166_2' => 'PH',
'iso_3166_3' => 'PHL',
'name' => 'Philippines',
'name_ar' => 'الفليبين',
'region_code' => '142',
'sub_region_code' => '035',
'eea' => 0,
'calling_code' => '63',
'flag' => 'PH.png',
),
175 =>
array (
'id' => 612,
'capital' => 'Adamstown',
'citizenship' => 'Pitcairner',
'citizenship_ar' => 'بيتكيرني',
'country_code' => '612',
'currency' => 'New Zealand dollar',
'currency_code' => 'NZD',
'currency_sub_unit' => 'cent',
'currency_symbol' => '$',
'currency_decimals' => 2,
'full_name' => 'Pitcairn Islands',
'iso_3166_2' => 'PN',
'iso_3166_3' => 'PCN',
'name' => 'Pitcairn',
'name_ar' => 'بيتكيرن',
'region_code' => '009',
'sub_region_code' => '061',
'eea' => 0,
'calling_code' => '649',
'flag' => 'PN.png',
),
176 =>
array (
'id' => 616,
'capital' => 'Warsaw',
'citizenship' => 'Polish',
'citizenship_ar' => 'بوليني',
'country_code' => '616',
'currency' => 'zloty',
'currency_code' => 'PLN',
'currency_sub_unit' => 'grosz (pl. groszy)',
'currency_symbol' => 'zł',
'currency_decimals' => 2,
'full_name' => 'Republic of Poland',
'iso_3166_2' => 'PL',
'iso_3166_3' => 'POL',
'name' => 'Poland',
'name_ar' => 'بولونيا',
'region_code' => '150',
'sub_region_code' => '151',
'eea' => 1,
'calling_code' => '48',
'flag' => 'PL.png',
),
177 =>
array (
'id' => 620,
'capital' => 'Lisbon',
'citizenship' => 'Portuguese',
'citizenship_ar' => 'برتغالي',
'country_code' => '620',
'currency' => 'euro',
'currency_code' => 'EUR',
'currency_sub_unit' => 'cent',
'currency_symbol' => '€',
'currency_decimals' => 2,
'full_name' => 'Portuguese Republic',
'iso_3166_2' => 'PT',
'iso_3166_3' => 'PRT',
'name' => 'Portugal',
'name_ar' => 'البرتغال',
'region_code' => '150',
'sub_region_code' => '039',
'eea' => 1,
'calling_code' => '351',
'flag' => 'PT.png',
),
178 =>
array (
'id' => 624,
'capital' => 'Bissau',
'citizenship' => 'Guinea-Bissau national',
'citizenship_ar' => 'غيني',
'country_code' => '624',
'currency' => 'CFA franc (BCEAO)',
'currency_code' => 'XOF',
'currency_sub_unit' => 'centime',
'currency_symbol' => 'XOF',
'currency_decimals' => 0,
'full_name' => 'Republic of Guinea-Bissau',
'iso_3166_2' => 'GW',
'iso_3166_3' => 'GNB',
'name' => 'Guinea-Bissau',
'name_ar' => 'غينيا-بيساو',
'region_code' => '002',
'sub_region_code' => '011',
'eea' => 0,
'calling_code' => '245',
'flag' => 'GW.png',
),
179 =>
array (
'id' => 626,
'capital' => 'Dili',
'citizenship' => 'East Timorese',
'citizenship_ar' => 'تيموري',
'country_code' => '626',
'currency' => 'US dollar',
'currency_code' => 'USD',
'currency_sub_unit' => 'cent',
'currency_symbol' => '$',
'currency_decimals' => 2,
'full_name' => 'Democratic Republic of East Timor',
'iso_3166_2' => 'TL',
'iso_3166_3' => 'TLS',
'name' => 'Timor-Leste',
'name_ar' => 'تيمور الشرقية',
'region_code' => '142',
'sub_region_code' => '035',
'eea' => 0,
'calling_code' => '670',
'flag' => 'TL.png',
),
180 =>
array (
'id' => 630,
'capital' => 'San Juan',
'citizenship' => 'Puerto Rican',
'citizenship_ar' => 'بورتي',
'country_code' => '630',
'currency' => 'US dollar',
'currency_code' => 'USD',
'currency_sub_unit' => 'cent',
'currency_symbol' => '$',
'currency_decimals' => 2,
'full_name' => 'Commonwealth of Puerto Rico',
'iso_3166_2' => 'PR',
'iso_3166_3' => 'PRI',
'name' => 'Puerto Rico',
'name_ar' => 'بورتو ريكو',
'region_code' => '019',
'sub_region_code' => '029',
'eea' => 0,
'calling_code' => '1',
'flag' => 'PR.png',
),
181 =>
array (
'id' => 634,
'capital' => 'Doha',
'citizenship' => 'Qatari',
'citizenship_ar' => 'قطري',
'country_code' => '634',
'currency' => 'Qatari riyal',
'currency_code' => 'QAR',
'currency_sub_unit' => 'dirham',
'currency_symbol' => '﷼',
'currency_decimals' => 2,
'full_name' => 'State of Qatar',
'iso_3166_2' => 'QA',
'iso_3166_3' => 'QAT',
'name' => 'Qatar',
'name_ar' => 'قطر',
'region_code' => '142',
'sub_region_code' => '145',
'eea' => 0,
'calling_code' => '974',
'flag' => 'QA.png',
),
182 =>
array (
'id' => 638,
'capital' => 'Saint-Denis',
'citizenship' => 'Reunionese',
'citizenship_ar' => 'ريونيوني',
'country_code' => '638',
'currency' => 'euro',
'currency_code' => 'EUR',
'currency_sub_unit' => 'cent',
'currency_symbol' => '€',
'currency_decimals' => 2,
'full_name' => 'Réunion',
'iso_3166_2' => 'RE',
'iso_3166_3' => 'REU',
'name' => 'Réunion',
'name_ar' => 'ريونيون',
'region_code' => '002',
'sub_region_code' => '014',
'eea' => 0,
'calling_code' => '262',
'flag' => 'RE.png',
),
183 =>
array (
'id' => 642,
'capital' => 'Bucharest',
'citizenship' => 'Romanian',
'citizenship_ar' => 'روماني',
'country_code' => '642',
'currency' => 'Romanian leu (pl. lei)',
'currency_code' => 'RON',
'currency_sub_unit' => 'ban (pl. bani)',
'currency_symbol' => 'lei',
'currency_decimals' => 2,
'full_name' => 'Romania',
'iso_3166_2' => 'RO',
'iso_3166_3' => 'ROU',
'name' => 'Romania',
'name_ar' => 'ريونيوني',
'region_code' => '150',
'sub_region_code' => '151',
'eea' => 1,
'calling_code' => '40',
'flag' => 'RO.png',
),
184 =>
array (
'id' => 643,
'capital' => 'Moscow',
'citizenship' => 'Russian',
'citizenship_ar' => 'روسي',
'country_code' => '643',
'currency' => 'Russian rouble',
'currency_code' => 'RUB',
'currency_sub_unit' => 'kopek',
'currency_symbol' => 'руб',
'currency_decimals' => 2,
'full_name' => 'Russian Federation',
'iso_3166_2' => 'RU',
'iso_3166_3' => 'RUS',
'name' => 'Russian Federation',
'name_ar' => 'روسيا',
'region_code' => '150',
'sub_region_code' => '151',
'eea' => 0,
'calling_code' => '7',
'flag' => 'RU.png',
),
185 =>
array (
'id' => 646,
'capital' => 'Kigali',
'citizenship' => 'Rwandan; Rwandese',
'citizenship_ar' => 'رواندا',
'country_code' => '646',
'currency' => 'Rwandese franc',
'currency_code' => 'RWF',
'currency_sub_unit' => 'centime',
'currency_symbol' => 'RWF',
'currency_decimals' => 0,
'full_name' => 'Republic of Rwanda',
'iso_3166_2' => 'RW',
'iso_3166_3' => 'RWA',
'name' => 'Rwanda',
'name_ar' => 'رواندا',
'region_code' => '002',
'sub_region_code' => '014',
'eea' => 0,
'calling_code' => '250',
'flag' => 'RW.png',
),
186 =>
array (
'id' => 652,
'capital' => 'Gustavia',
'citizenship' => 'of Saint Barthélemy',
'citizenship_ar' => 'سان بارتيلمي',
'country_code' => '652',
'currency' => 'euro',
'currency_code' => 'EUR',
'currency_sub_unit' => 'cent',
'currency_symbol' => NULL,
'currency_decimals' => NULL,
'full_name' => 'Collectivity of Saint Barthélemy',
'iso_3166_2' => 'BL',
'iso_3166_3' => 'BLM',
'name' => 'Saint Barthélemy',
'name_ar' => 'سان بارتيلمي',
'region_code' => '019',
'sub_region_code' => '029',
'eea' => 0,
'calling_code' => '590',
'flag' => NULL,
),
187 =>
array (
'id' => 654,
'capital' => 'Jamestown',
'citizenship' => 'Saint Helenian',
'citizenship_ar' => 'هيلاني',
'country_code' => '654',
'currency' => 'Saint Helena pound',
'currency_code' => 'SHP',
'currency_sub_unit' => 'penny',
'currency_symbol' => '£',
'currency_decimals' => 2,
'full_name' => 'Saint Helena, Ascension and Tristan da Cunha',
'iso_3166_2' => 'SH',
'iso_3166_3' => 'SHN',
'name' => 'Saint Helena, Ascension and Tristan da Cunha',
'name_ar' => 'سانت هيلانة',
'region_code' => '002',
'sub_region_code' => '011',
'eea' => 0,
'calling_code' => '290',
'flag' => 'SH.png',
),
188 =>
array (
'id' => 659,
'capital' => 'Basseterre',
'citizenship' => 'Kittsian; Nevisian',
'citizenship_ar' => 'سانت كيتس ونيفس',
'country_code' => '659',
'currency' => 'East Caribbean dollar',
'currency_code' => 'XCD',
'currency_sub_unit' => 'cent',
'currency_symbol' => '$',
'currency_decimals' => 2,
'full_name' => 'Federation of Saint Kitts and Nevis',
'iso_3166_2' => 'KN',
'iso_3166_3' => 'KNA',
'name' => 'Saint Kitts and Nevis',
'name_ar' => 'سانت كيتس ونيفس',
'region_code' => '019',
'sub_region_code' => '029',
'eea' => 0,
'calling_code' => '1',
'flag' => 'KN.png',
),
189 =>
array (
'id' => 660,
'capital' => 'The Valley',
'citizenship' => 'Anguillan',
'citizenship_ar' => 'أنغويلي',
'country_code' => '660',
'currency' => 'East Caribbean dollar',
'currency_code' => 'XCD',
'currency_sub_unit' => 'cent',
'currency_symbol' => '$',
'currency_decimals' => 2,
'full_name' => 'Anguilla',
'iso_3166_2' => 'AI',
'iso_3166_3' => 'AIA',
'name' => 'Anguilla',
'name_ar' => 'أنغويلا',
'region_code' => '019',
'sub_region_code' => '029',
'eea' => 0,
'calling_code' => '1',
'flag' => 'AI.png',
),
190 =>
array (
'id' => 662,
'capital' => 'Castries',
'citizenship' => 'Saint Lucian',
'citizenship_ar' => 'سانت لوسيا',
'country_code' => '662',
'currency' => 'East Caribbean dollar',
'currency_code' => 'XCD',
'currency_sub_unit' => 'cent',
'currency_symbol' => '$',
'currency_decimals' => 2,
'full_name' => 'Saint Lucia',
'iso_3166_2' => 'LC',
'iso_3166_3' => 'LCA',
'name' => 'Saint Lucia',
'name_ar' => 'سانت لوسيا',
'region_code' => '019',
'sub_region_code' => '029',
'eea' => 0,
'calling_code' => '1',
'flag' => 'LC.png',
),
191 =>
array (
'id' => 663,
'capital' => 'Marigot',
'citizenship' => 'of Saint Martin',
'citizenship_ar' => 'ساينت مارتني فرنسي',
'country_code' => '663',
'currency' => 'euro',
'currency_code' => 'EUR',
'currency_sub_unit' => 'cent',
'currency_symbol' => NULL,
'currency_decimals' => NULL,
'full_name' => 'Collectivity of Saint Martin',
'iso_3166_2' => 'MF',
'iso_3166_3' => 'MAF',
'name' => 'Saint Martin (French part)',
'name_ar' => 'ساينت مارتن فرنسي',
'region_code' => '019',
'sub_region_code' => '029',
'eea' => 0,
'calling_code' => '590',
'flag' => NULL,
),
192 =>
array (
'id' => 666,
'capital' => 'Saint-Pierre',
'citizenship' => 'St-Pierrais; Miquelonnais',
'citizenship_ar' => 'سان بيير وميكلوني',
'country_code' => '666',
'currency' => 'euro',
'currency_code' => 'EUR',
'currency_sub_unit' => 'cent',
'currency_symbol' => '€',
'currency_decimals' => 2,
'full_name' => 'Territorial Collectivity of Saint Pierre and Miquelon',
'iso_3166_2' => 'PM',
'iso_3166_3' => 'SPM',
'name' => 'Saint Pierre and Miquelon',
'name_ar' => 'سان بيير وميكلون',
'region_code' => '019',
'sub_region_code' => '021',
'eea' => 0,
'calling_code' => '508',
'flag' => 'PM.png',
),
193 =>
array (
'id' => 670,
'capital' => 'Kingstown',
'citizenship' => 'Vincentian',
'citizenship_ar' => 'سانت فنسنت وجزر غرينادين',
'country_code' => '670',
'currency' => 'East Caribbean dollar',
'currency_code' => 'XCD',
'currency_sub_unit' => 'cent',
'currency_symbol' => '$',
'currency_decimals' => 2,
'full_name' => 'Saint Vincent and the Grenadines',
'iso_3166_2' => 'VC',
'iso_3166_3' => 'VCT',
'name' => 'Saint Vincent and the Grenadines',
'name_ar' => 'سانت فنسنت وجزر غرينادين',
'region_code' => '019',
'sub_region_code' => '029',
'eea' => 0,
'calling_code' => '1',
'flag' => 'VC.png',
),
194 =>
array (
'id' => 674,
'capital' => 'San Marino',
'citizenship' => 'San Marinese',
'citizenship_ar' => 'ماريني',
'country_code' => '674',
'currency' => 'euro',
'currency_code' => 'EUR ',
'currency_sub_unit' => 'cent',
'currency_symbol' => '€',
'currency_decimals' => 2,
'full_name' => 'Republic of San Marino',
'iso_3166_2' => 'SM',
'iso_3166_3' => 'SMR',
'name' => 'San Marino',
'name_ar' => 'سان مارينو',
'region_code' => '150',
'sub_region_code' => '039',
'eea' => 0,
'calling_code' => '378',
'flag' => 'SM.png',
),
195 =>
array (
'id' => 678,
'capital' => 'São Tomé',
'citizenship' => 'São Toméan',
'citizenship_ar' => 'ساو تومي وبرينسيبي',
'country_code' => '678',
'currency' => 'dobra',
'currency_code' => 'STD',
'currency_sub_unit' => 'centavo',
'currency_symbol' => 'Db',
'currency_decimals' => 2,
'full_name' => 'Democratic Republic of São Tomé and Príncipe',
'iso_3166_2' => 'ST',
'iso_3166_3' => 'STP',
'name' => 'Sao Tome and Principe',
'name_ar' => 'ساو تومي وبرينسيبي',
'region_code' => '002',
'sub_region_code' => '017',
'eea' => 0,
'calling_code' => '239',
'flag' => 'ST.png',
),
196 =>
array (
'id' => 682,
'capital' => 'Riyadh',
'citizenship' => 'Saudi Arabian',
'citizenship_ar' => 'سعودي',
'country_code' => '682',
'currency' => 'riyal',
'currency_code' => 'SAR',
'currency_sub_unit' => 'halala',
'currency_symbol' => '﷼',
'currency_decimals' => 2,
'full_name' => 'Kingdom of Saudi Arabia',
'iso_3166_2' => 'SA',
'iso_3166_3' => 'SAU',
'name' => 'Saudi Arabia',
'name_ar' => 'المملكة العربية السعودية',
'region_code' => '142',
'sub_region_code' => '145',
'eea' => 0,
'calling_code' => '966',
'flag' => 'SA.png',
),
197 =>
array (
'id' => 686,
'capital' => 'Dakar',
'citizenship' => 'Senegalese',
'citizenship_ar' => 'سنغالي',
'country_code' => '686',
'currency' => 'CFA franc (BCEAO)',
'currency_code' => 'XOF',
'currency_sub_unit' => 'centime',
'currency_symbol' => 'XOF',
'currency_decimals' => 0,
'full_name' => 'Republic of Senegal',
'iso_3166_2' => 'SN',
'iso_3166_3' => 'SEN',
'name' => 'Senegal',
'name_ar' => 'السنغال',
'region_code' => '002',
'sub_region_code' => '011',
'eea' => 0,
'calling_code' => '221',
'flag' => 'SN.png',
),
198 =>
array (
'id' => 688,
'capital' => 'Belgrade',
'citizenship' => 'Serb',
'citizenship_ar' => 'صربي',
'country_code' => '688',
'currency' => 'Serbian dinar',
'currency_code' => 'RSD',
'currency_sub_unit' => 'para (inv.)',
'currency_symbol' => NULL,
'currency_decimals' => NULL,
'full_name' => 'Republic of Serbia',
'iso_3166_2' => 'RS',
'iso_3166_3' => 'SRB',
'name' => 'Serbia',
'name_ar' => 'صربيا',
'region_code' => '150',
'sub_region_code' => '039',
'eea' => 0,
'calling_code' => '381',
'flag' => NULL,
),
199 =>
array (
'id' => 690,
'capital' => 'Victoria',
'citizenship' => 'Seychellois',
'citizenship_ar' => 'سيشيلي',
'country_code' => '690',
'currency' => 'Seychelles rupee',
'currency_code' => 'SCR',
'currency_sub_unit' => 'cent',
'currency_symbol' => '₨',
'currency_decimals' => 2,
'full_name' => 'Republic of Seychelles',
'iso_3166_2' => 'SC',
'iso_3166_3' => 'SYC',
'name' => 'Seychelles',
'name_ar' => 'سيشيل',
'region_code' => '002',
'sub_region_code' => '014',
'eea' => 0,
'calling_code' => '248',
'flag' => 'SC.png',
),
200 =>
array (
'id' => 694,
'capital' => 'Freetown',
'citizenship' => 'Sierra Leonean',
'citizenship_ar' => 'سيراليوني',
'country_code' => '694',
'currency' => 'leone',
'currency_code' => 'SLL',
'currency_sub_unit' => 'cent',
'currency_symbol' => 'Le',
'currency_decimals' => 2,
'full_name' => 'Republic of Sierra Leone',
'iso_3166_2' => 'SL',
'iso_3166_3' => 'SLE',
'name' => 'Sierra Leone',
'name_ar' => 'سيراليون',
'region_code' => '002',
'sub_region_code' => '011',
'eea' => 0,
'calling_code' => '232',
'flag' => 'SL.png',
),
201 =>
array (
'id' => 702,
'capital' => 'Singapore',
'citizenship' => 'Singaporean',
'citizenship_ar' => 'سنغافوري',
'country_code' => '702',
'currency' => 'Singapore dollar',
'currency_code' => 'SGD',
'currency_sub_unit' => 'cent',
'currency_symbol' => '$',
'currency_decimals' => 2,
'full_name' => 'Republic of Singapore',
'iso_3166_2' => 'SG',
'iso_3166_3' => 'SGP',
'name' => 'Singapore',
'name_ar' => 'سنغافورة',
'region_code' => '142',
'sub_region_code' => '035',
'eea' => 0,
'calling_code' => '65',
'flag' => 'SG.png',
),
202 =>
array (
'id' => 703,
'capital' => 'Bratislava',
'citizenship' => 'Slovak',
'citizenship_ar' => 'سولفاكي',
'country_code' => '703',
'currency' => 'euro',
'currency_code' => 'EUR',
'currency_sub_unit' => 'cent',
'currency_symbol' => 'Sk',
'currency_decimals' => 2,
'full_name' => 'Slovak Republic',
'iso_3166_2' => 'SK',
'iso_3166_3' => 'SVK',
'name' => 'Slovakia',
'name_ar' => 'سلوفاكيا',
'region_code' => '150',
'sub_region_code' => '151',
'eea' => 1,
'calling_code' => '421',
'flag' => 'SK.png',
),
203 =>
array (
'id' => 704,
'capital' => 'Hanoi',
'citizenship' => 'Vietnamese',
'citizenship_ar' => 'فيتنامي',
'country_code' => '704',
'currency' => 'dong',
'currency_code' => 'VND',
'currency_sub_unit' => '(10 hào',
'currency_symbol' => '₫',
'currency_decimals' => 2,
'full_name' => 'Socialist Republic of Vietnam',
'iso_3166_2' => 'VN',
'iso_3166_3' => 'VNM',
'name' => 'Viet Nam',
'name_ar' => 'فيتنام',
'region_code' => '142',
'sub_region_code' => '035',
'eea' => 0,
'calling_code' => '84',
'flag' => 'VN.png',
),
204 =>
array (
'id' => 705,
'capital' => 'Ljubljana',
'citizenship' => 'Slovene',
'citizenship_ar' => 'سولفيني',
'country_code' => '705',
'currency' => 'euro',
'currency_code' => 'EUR',
'currency_sub_unit' => 'cent',
'currency_symbol' => '€',
'currency_decimals' => 2,
'full_name' => 'Republic of Slovenia',
'iso_3166_2' => 'SI',
'iso_3166_3' => 'SVN',
'name' => 'Slovenia',
'name_ar' => 'سلوفينيا',
'region_code' => '150',
'sub_region_code' => '039',
'eea' => 1,
'calling_code' => '386',
'flag' => 'SI.png',
),
205 =>
array (
'id' => 706,
'capital' => 'Mogadishu',
'citizenship' => 'Somali',
'citizenship_ar' => 'صومالي',
'country_code' => '706',
'currency' => 'Somali shilling',
'currency_code' => 'SOS',
'currency_sub_unit' => 'cent',
'currency_symbol' => 'S',
'currency_decimals' => 2,
'full_name' => 'Somali Republic',
'iso_3166_2' => 'SO',
'iso_3166_3' => 'SOM',
'name' => 'Somalia',
'name_ar' => 'الصومال',
'region_code' => '002',
'sub_region_code' => '014',
'eea' => 0,
'calling_code' => '252',
'flag' => 'SO.png',
),
206 =>
array (
'id' => 710,
'capital' => 'Pretoria (ZA1)',
'citizenship' => 'South African',
'citizenship_ar' => 'أفريقي',
'country_code' => '710',
'currency' => 'rand',
'currency_code' => 'ZAR',
'currency_sub_unit' => 'cent',
'currency_symbol' => 'R',
'currency_decimals' => 2,
'full_name' => 'Republic of South Africa',
'iso_3166_2' => 'ZA',
'iso_3166_3' => 'ZAF',
'name' => 'South Africa',
'name_ar' => 'جنوب أفريقيا',
'region_code' => '002',
'sub_region_code' => '018',
'eea' => 0,
'calling_code' => '27',
'flag' => 'ZA.png',
),
207 =>
array (
'id' => 716,
'capital' => 'Harare',
'citizenship' => 'Zimbabwean',
'citizenship_ar' => 'زمبابوي',
'country_code' => '716',
'currency' => 'Zimbabwe dollar (ZW1)',
'currency_code' => 'ZWL',
'currency_sub_unit' => 'cent',
'currency_symbol' => 'Z$',
'currency_decimals' => 2,
'full_name' => 'Republic of Zimbabwe',
'iso_3166_2' => 'ZW',
'iso_3166_3' => 'ZWE',
'name' => 'Zimbabwe',
'name_ar' => 'زمبابوي',
'region_code' => '002',
'sub_region_code' => '014',
'eea' => 0,
'calling_code' => '263',
'flag' => 'ZW.png',
),
208 =>
array (
'id' => 724,
'capital' => 'Madrid',
'citizenship' => 'Spaniard',
'citizenship_ar' => 'إسباني',
'country_code' => '724',
'currency' => 'euro',
'currency_code' => 'EUR',
'currency_sub_unit' => 'cent',
'currency_symbol' => '€',
'currency_decimals' => 2,
'full_name' => 'Kingdom of Spain',
'iso_3166_2' => 'ES',
'iso_3166_3' => 'ESP',
'name' => 'Spain',
'name_ar' => 'إسبانيا',
'region_code' => '150',
'sub_region_code' => '039',
'eea' => 1,
'calling_code' => '34',
'flag' => 'ES.png',
),
209 =>
array (
'id' => 728,
'capital' => 'Juba',
'citizenship' => 'South Sudanese',
'citizenship_ar' => 'سوادني جنوبي',
'country_code' => '728',
'currency' => 'South Sudanese pound',
'currency_code' => 'SSP',
'currency_sub_unit' => 'piaster',
'currency_symbol' => NULL,
'currency_decimals' => NULL,
'full_name' => 'Republic of South Sudan',
'iso_3166_2' => 'SS',
'iso_3166_3' => 'SSD',
'name' => 'South Sudan',
'name_ar' => 'السودان الجنوبي',
'region_code' => '002',
'sub_region_code' => '015',
'eea' => 0,
'calling_code' => '211',
'flag' => NULL,
),
210 =>
array (
'id' => 729,
'capital' => 'Khartoum',
'citizenship' => 'Sudanese',
'citizenship_ar' => 'سوداني',
'country_code' => '729',
'currency' => 'Sudanese pound',
'currency_code' => 'SDG',
'currency_sub_unit' => 'piastre',
'currency_symbol' => NULL,
'currency_decimals' => NULL,
'full_name' => 'Republic of the Sudan',
'iso_3166_2' => 'SD',
'iso_3166_3' => 'SDN',
'name' => 'Sudan',
'name_ar' => 'السودان',
'region_code' => '002',
'sub_region_code' => '015',
'eea' => 0,
'calling_code' => '249',
'flag' => NULL,
),
211 =>
array (
'id' => 732,
'capital' => 'Al aaiun',
'citizenship' => 'Sahrawi',
'citizenship_ar' => 'صحراوي',
'country_code' => '732',
'currency' => 'Moroccan dirham',
'currency_code' => 'MAD',
'currency_sub_unit' => 'centime',
'currency_symbol' => 'MAD',
'currency_decimals' => 2,
'full_name' => 'Western Sahara',
'iso_3166_2' => 'EH',
'iso_3166_3' => 'ESH',
'name' => 'Western Sahara',
'name_ar' => 'الصحراء الغربية',
'region_code' => '002',
'sub_region_code' => '015',
'eea' => 0,
'calling_code' => '212',
'flag' => 'EH.png',
),
212 =>
array (
'id' => 740,
'capital' => 'Paramaribo',
'citizenship' => 'Surinamese',
'citizenship_ar' => 'سورينامي',
'country_code' => '740',
'currency' => 'Surinamese dollar',
'currency_code' => 'SRD',
'currency_sub_unit' => 'cent',
'currency_symbol' => '$',
'currency_decimals' => 2,
'full_name' => 'Republic of Suriname',
'iso_3166_2' => 'SR',
'iso_3166_3' => 'SUR',
'name' => 'Suriname',
'name_ar' => 'سورينام',
'region_code' => '019',
'sub_region_code' => '005',
'eea' => 0,
'calling_code' => '597',
'flag' => 'SR.png',
),
213 =>
array (
'id' => 744,
'capital' => 'Longyearbyen',
'citizenship' => 'of Svalbard',
'citizenship_ar' => 'سفالبارد ويان ماين',
'country_code' => '744',
'currency' => 'Norwegian krone (pl. kroner)',
'currency_code' => 'NOK',
'currency_sub_unit' => 'øre (inv.)',
'currency_symbol' => 'kr',
'currency_decimals' => 2,
'full_name' => 'Svalbard and Jan Mayen',
'iso_3166_2' => 'SJ',
'iso_3166_3' => 'SJM',
'name' => 'Svalbard and Jan Mayen',
'name_ar' => 'سفالبارد ويان ماين',
'region_code' => '150',
'sub_region_code' => '154',
'eea' => 0,
'calling_code' => '47',
'flag' => 'SJ.png',
),
214 =>
array (
'id' => 748,
'capital' => 'Mbabane',
'citizenship' => 'Swazi',
'citizenship_ar' => 'سوازيلندي',
'country_code' => '748',
'currency' => 'lilangeni',
'currency_code' => 'SZL',
'currency_sub_unit' => 'cent',
'currency_symbol' => 'SZL',
'currency_decimals' => 2,
'full_name' => 'Kingdom of Swaziland',
'iso_3166_2' => 'SZ',
'iso_3166_3' => 'SWZ',
'name' => 'Swaziland',
'name_ar' => 'سوازيلند',
'region_code' => '002',
'sub_region_code' => '018',
'eea' => 0,
'calling_code' => '268',
'flag' => 'SZ.png',
),
215 =>
array (
'id' => 752,
'capital' => 'Stockholm',
'citizenship' => 'Swedish',
'citizenship_ar' => 'سويدي',
'country_code' => '752',
'currency' => 'krona (pl. kronor)',
'currency_code' => 'SEK',
'currency_sub_unit' => 'öre (inv.)',
'currency_symbol' => 'kr',
'currency_decimals' => 2,
'full_name' => 'Kingdom of Sweden',
'iso_3166_2' => 'SE',
'iso_3166_3' => 'SWE',
'name' => 'Sweden',
'name_ar' => 'السويد',
'region_code' => '150',
'sub_region_code' => '154',
'eea' => 1,
'calling_code' => '46',
'flag' => 'SE.png',
),
216 =>
array (
'id' => 756,
'capital' => 'Berne',
'citizenship' => 'Swiss',
'citizenship_ar' => 'سويسري',
'country_code' => '756',
'currency' => 'Swiss franc',
'currency_code' => 'CHF',
'currency_sub_unit' => 'centime',
'currency_symbol' => 'CHF',
'currency_decimals' => 2,
'full_name' => 'Swiss Confederation',
'iso_3166_2' => 'CH',
'iso_3166_3' => 'CHE',
'name' => 'Switzerland',
'name_ar' => 'سويسرا',
'region_code' => '150',
'sub_region_code' => '155',
'eea' => 0,
'calling_code' => '41',
'flag' => 'CH.png',
),
217 =>
array (
'id' => 760,
'capital' => 'Damascus',
'citizenship' => 'Syrian',
'citizenship_ar' => 'سوري',
'country_code' => '760',
'currency' => 'Syrian pound',
'currency_code' => 'SYP',
'currency_sub_unit' => 'piastre',
'currency_symbol' => '£',
'currency_decimals' => 2,
'full_name' => 'Syrian Arab Republic',
'iso_3166_2' => 'SY',
'iso_3166_3' => 'SYR',
'name' => 'Syrian Arab Republic',
'name_ar' => 'سوريا',
'region_code' => '142',
'sub_region_code' => '145',
'eea' => 0,
'calling_code' => '963',
'flag' => 'SY.png',
),
218 =>
array (
'id' => 762,
'capital' => 'Dushanbe',
'citizenship' => 'Tajik',
'citizenship_ar' => 'طاجيكستاني',
'country_code' => '762',
'currency' => 'somoni',
'currency_code' => 'TJS',
'currency_sub_unit' => 'diram',
'currency_symbol' => 'TJS',
'currency_decimals' => 2,
'full_name' => 'Republic of Tajikistan',
'iso_3166_2' => 'TJ',
'iso_3166_3' => 'TJK',
'name' => 'Tajikistan',
'name_ar' => 'طاجيكستان',
'region_code' => '142',
'sub_region_code' => '143',
'eea' => 0,
'calling_code' => '992',
'flag' => 'TJ.png',
),
219 =>
array (
'id' => 764,
'capital' => 'Bangkok',
'citizenship' => 'Thai',
'citizenship_ar' => 'تايلندي',
'country_code' => '764',
'currency' => 'baht (inv.)',
'currency_code' => 'THB',
'currency_sub_unit' => 'satang (inv.)',
'currency_symbol' => '฿',
'currency_decimals' => 2,
'full_name' => 'Kingdom of Thailand',
'iso_3166_2' => 'TH',
'iso_3166_3' => 'THA',
'name' => 'Thailand',
'name_ar' => 'تايلندا',
'region_code' => '142',
'sub_region_code' => '035',
'eea' => 0,
'calling_code' => '66',
'flag' => 'TH.png',
),
220 =>
array (
'id' => 768,
'capital' => 'Lomé',
'citizenship' => 'Togolese',
'citizenship_ar' => 'توغي',
'country_code' => '768',
'currency' => 'CFA franc (BCEAO)',
'currency_code' => 'XOF',
'currency_sub_unit' => 'centime',
'currency_symbol' => 'XOF',
'currency_decimals' => 0,
'full_name' => 'Togolese Republic',
'iso_3166_2' => 'TG',
'iso_3166_3' => 'TGO',
'name' => 'Togo',
'name_ar' => 'توغو',
'region_code' => '002',
'sub_region_code' => '011',
'eea' => 0,
'calling_code' => '228',
'flag' => 'TG.png',
),
221 =>
array (
'id' => 772,
'capital' => '(TK2)',
'citizenship' => 'Tokelauan',
'citizenship_ar' => 'توكيلاوي',
'country_code' => '772',
'currency' => 'New Zealand dollar',
'currency_code' => 'NZD',
'currency_sub_unit' => 'cent',
'currency_symbol' => '$',
'currency_decimals' => 2,
'full_name' => 'Tokelau',
'iso_3166_2' => 'TK',
'iso_3166_3' => 'TKL',
'name' => 'Tokelau',
'name_ar' => 'توكيلاو',
'region_code' => '009',
'sub_region_code' => '061',
'eea' => 0,
'calling_code' => '690',
'flag' => 'TK.png',
),
222 =>
array (
'id' => 776,
'capital' => 'Nuku’alofa',
'citizenship' => 'Tongan',
'citizenship_ar' => 'تونغي',
'country_code' => '776',
'currency' => 'pa’anga (inv.)',
'currency_code' => 'TOP',
'currency_sub_unit' => 'seniti (inv.)',
'currency_symbol' => 'T$',
'currency_decimals' => 2,
'full_name' => 'Kingdom of Tonga',
'iso_3166_2' => 'TO',
'iso_3166_3' => 'TON',
'name' => 'Tonga',
'name_ar' => 'تونغا',
'region_code' => '009',
'sub_region_code' => '061',
'eea' => 0,
'calling_code' => '676',
'flag' => 'TO.png',
),
223 =>
array (
'id' => 780,
'capital' => 'Port of Spain',
'citizenship' => 'Trinidadian; Tobagonian',
'citizenship_ar' => 'ترينيداد وتوباغو',
'country_code' => '780',
'currency' => 'Trinidad and Tobago dollar',
'currency_code' => 'TTD',
'currency_sub_unit' => 'cent',
'currency_symbol' => 'TT$',
'currency_decimals' => 2,
'full_name' => 'Republic of Trinidad and Tobago',
'iso_3166_2' => 'TT',
'iso_3166_3' => 'TTO',
'name' => 'Trinidad and Tobago',
'name_ar' => 'ترينيداد وتوباغو',
'region_code' => '019',
'sub_region_code' => '029',
'eea' => 0,
'calling_code' => '1',
'flag' => 'TT.png',
),
224 =>
array (
'id' => 784,
'capital' => 'Abu Dhabi',
'citizenship' => 'Emirian',
'citizenship_ar' => 'إماراتي',
'country_code' => '784',
'currency' => 'UAE dirham',
'currency_code' => 'AED',
'currency_sub_unit' => 'fils (inv.)',
'currency_symbol' => 'AED',
'currency_decimals' => 2,
'full_name' => 'United Arab Emirates',
'iso_3166_2' => 'AE',
'iso_3166_3' => 'ARE',
'name' => 'United Arab Emirates',
'name_ar' => 'الإمارات العربية المتحدة',
'region_code' => '142',
'sub_region_code' => '145',
'eea' => 0,
'calling_code' => '971',
'flag' => 'AE.png',
),
225 =>
array (
'id' => 788,
'capital' => 'Tunis',
'citizenship' => 'Tunisian',
'citizenship_ar' => 'تونسي',
'country_code' => '788',
'currency' => 'Tunisian dinar',
'currency_code' => 'TND',
'currency_sub_unit' => 'millime',
'currency_symbol' => 'TND',
'currency_decimals' => 3,
'full_name' => 'Republic of Tunisia',
'iso_3166_2' => 'TN',
'iso_3166_3' => 'TUN',
'name' => 'Tunisia',
'name_ar' => 'تونس',
'region_code' => '002',
'sub_region_code' => '015',
'eea' => 0,
'calling_code' => '216',
'flag' => 'TN.png',
),
226 =>
array (
'id' => 792,
'capital' => 'Ankara',
'citizenship' => 'Turk',
'citizenship_ar' => 'تركي',
'country_code' => '792',
'currency' => 'Turkish lira (inv.)',
'currency_code' => 'TRY',
'currency_sub_unit' => 'kurus (inv.)',
'currency_symbol' => '₺',
'currency_decimals' => 2,
'full_name' => 'Republic of Turkey',
'iso_3166_2' => 'TR',
'iso_3166_3' => 'TUR',
'name' => 'Turkey',
'name_ar' => 'تركيا',
'region_code' => '142',
'sub_region_code' => '145',
'eea' => 0,
'calling_code' => '90',
'flag' => 'TR.png',
),
227 =>
array (
'id' => 795,
'capital' => 'Ashgabat',
'citizenship' => 'Turkmen',
'citizenship_ar' => 'تركمانستاني',
'country_code' => '795',
'currency' => 'Turkmen manat (inv.)',
'currency_code' => 'TMT',
'currency_sub_unit' => 'tenge (inv.)',
'currency_symbol' => 'm',
'currency_decimals' => 2,
'full_name' => 'Turkmenistan',
'iso_3166_2' => 'TM',
'iso_3166_3' => 'TKM',
'name' => 'Turkmenistan',
'name_ar' => 'تركمانستان',
'region_code' => '142',
'sub_region_code' => '143',
'eea' => 0,
'calling_code' => '993',
'flag' => 'TM.png',
),
228 =>
array (
'id' => 796,
'capital' => 'Cockburn Town',
'citizenship' => 'Turks and Caicos Islander',
'citizenship_ar' => 'جزر توركس وكايكوس',
'country_code' => '796',
'currency' => 'US dollar',
'currency_code' => 'USD',
'currency_sub_unit' => 'cent',
'currency_symbol' => '$',
'currency_decimals' => 2,
'full_name' => 'Turks and Caicos Islands',
'iso_3166_2' => 'TC',
'iso_3166_3' => 'TCA',
'name' => 'Turks and Caicos Islands',
'name_ar' => 'جزر توركس وكايكوس',
'region_code' => '019',
'sub_region_code' => '029',
'eea' => 0,
'calling_code' => '1',
'flag' => 'TC.png',
),
229 =>
array (
'id' => 798,
'capital' => 'Funafuti',
'citizenship' => 'Tuvaluan',
'citizenship_ar' => 'توفالي',
'country_code' => '798',
'currency' => 'Australian dollar',
'currency_code' => 'AUD',
'currency_sub_unit' => 'cent',
'currency_symbol' => '$',
'currency_decimals' => 2,
'full_name' => 'Tuvalu',
'iso_3166_2' => 'TV',
'iso_3166_3' => 'TUV',
'name' => 'Tuvalu',
'name_ar' => 'توفالو',
'region_code' => '009',
'sub_region_code' => '061',
'eea' => 0,
'calling_code' => '688',
'flag' => 'TV.png',
),
230 =>
array (
'id' => 800,
'capital' => 'Kampala',
'citizenship' => 'Ugandan',
'citizenship_ar' => 'أوغندي',
'country_code' => '800',
'currency' => 'Uganda shilling',
'currency_code' => 'UGX',
'currency_sub_unit' => 'cent',
'currency_symbol' => 'UGX',
'currency_decimals' => 0,
'full_name' => 'Republic of Uganda',
'iso_3166_2' => 'UG',
'iso_3166_3' => 'UGA',
'name' => 'Uganda',
'name_ar' => 'أوغندا',
'region_code' => '002',
'sub_region_code' => '014',
'eea' => 0,
'calling_code' => '256',
'flag' => 'UG.png',
),
231 =>
array (
'id' => 804,
'capital' => 'Kiev',
'citizenship' => 'Ukrainian',
'citizenship_ar' => 'أوكراني',
'country_code' => '804',
'currency' => 'hryvnia',
'currency_code' => 'UAH',
'currency_sub_unit' => 'kopiyka',
'currency_symbol' => '₴',
'currency_decimals' => 2,
'full_name' => 'Ukraine',
'iso_3166_2' => 'UA',
'iso_3166_3' => 'UKR',
'name' => 'Ukraine',
'name_ar' => 'أوكرانيا',
'region_code' => '150',
'sub_region_code' => '151',
'eea' => 0,
'calling_code' => '380',
'flag' => 'UA.png',
),
232 =>
array (
'id' => 807,
'capital' => 'Skopje',
'citizenship' => 'of the former Yugoslav Republic of Macedonia',
'citizenship_ar' => 'مقدوني',
'country_code' => '807',
'currency' => 'denar (pl. denars)',
'currency_code' => 'MKD',
'currency_sub_unit' => 'deni (inv.)',
'currency_symbol' => 'ден',
'currency_decimals' => 2,
'full_name' => 'the former Yugoslav Republic of Macedonia',
'iso_3166_2' => 'MK',
'iso_3166_3' => 'MKD',
'name' => 'Macedonia, the former Yugoslav Republic of',
'name_ar' => 'مقدونيا',
'region_code' => '150',
'sub_region_code' => '039',
'eea' => 0,
'calling_code' => '389',
'flag' => 'MK.png',
),
233 =>
array (
'id' => 818,
'capital' => 'Cairo',
'citizenship' => 'Egyptian',
'citizenship_ar' => 'مصري',
'country_code' => '818',
'currency' => 'Egyptian pound',
'currency_code' => 'EGP',
'currency_sub_unit' => 'piastre',
'currency_symbol' => '£',
'currency_decimals' => 2,
'full_name' => 'Arab Republic of Egypt',
'iso_3166_2' => 'EG',
'iso_3166_3' => 'EGY',
'name' => 'Egypt',
'name_ar' => 'مصر',
'region_code' => '002',
'sub_region_code' => '015',
'eea' => 0,
'calling_code' => '20',
'flag' => 'EG.png',
),
234 =>
array (
'id' => 826,
'capital' => 'London',
'citizenship' => 'British',
'citizenship_ar' => 'بريطاني',
'country_code' => '826',
'currency' => 'pound sterling',
'currency_code' => 'GBP',
'currency_sub_unit' => 'penny (pl. pence)',
'currency_symbol' => '£',
'currency_decimals' => 2,
'full_name' => 'United Kingdom of Great Britain and Northern Ireland',
'iso_3166_2' => 'GB',
'iso_3166_3' => 'GBR',
'name' => 'United Kingdom',
'name_ar' => 'المملكة المتحدة',
'region_code' => '150',
'sub_region_code' => '154',
'eea' => 1,
'calling_code' => '44',
'flag' => 'GB.png',
),
235 =>
array (
'id' => 831,
'capital' => 'St Peter Port',
'citizenship' => 'of Guernsey',
'citizenship_ar' => 'غيرنزي',
'country_code' => '831',
'currency' => 'Guernsey pound (GG2)',
'currency_code' => 'GGP (GG2)',
'currency_sub_unit' => 'penny (pl. pence)',
'currency_symbol' => NULL,
'currency_decimals' => NULL,
'full_name' => 'Bailiwick of Guernsey',
'iso_3166_2' => 'GG',
'iso_3166_3' => 'GGY',
'name' => 'Guernsey',
'name_ar' => 'غيرنزي',
'region_code' => '150',
'sub_region_code' => '154',
'eea' => 0,
'calling_code' => '44',
'flag' => NULL,
),
236 =>
array (
'id' => 832,
'capital' => 'St Helier',
'citizenship' => 'of Jersey',
'citizenship_ar' => 'جيرزي',
'country_code' => '832',
'currency' => 'Jersey pound (JE2)',
'currency_code' => 'JEP (JE2)',
'currency_sub_unit' => 'penny (pl. pence)',
'currency_symbol' => NULL,
'currency_decimals' => NULL,
'full_name' => 'Bailiwick of Jersey',
'iso_3166_2' => 'JE',
'iso_3166_3' => 'JEY',
'name' => 'Jersey',
'name_ar' => 'جيرزي',
'region_code' => '150',
'sub_region_code' => '154',
'eea' => 0,
'calling_code' => '44',
'flag' => NULL,
),
237 =>
array (
'id' => 833,
'capital' => 'Douglas',
'citizenship' => 'Manxman; Manxwoman',
'citizenship_ar' => 'ماني',
'country_code' => '833',
'currency' => 'Manx pound (IM2)',
'currency_code' => 'IMP (IM2)',
'currency_sub_unit' => 'penny (pl. pence)',
'currency_symbol' => NULL,
'currency_decimals' => NULL,
'full_name' => 'Isle of Man',
'iso_3166_2' => 'IM',
'iso_3166_3' => 'IMN',
'name' => 'Isle of Man',
'name_ar' => 'جزيرة مان',
'region_code' => '150',
'sub_region_code' => '154',
'eea' => 0,
'calling_code' => '44',
'flag' => NULL,
),
238 =>
array (
'id' => 834,
'capital' => 'Dodoma (TZ1)',
'citizenship' => 'Tanzanian',
'citizenship_ar' => 'تنزانيي',
'country_code' => '834',
'currency' => 'Tanzanian shilling',
'currency_code' => 'TZS',
'currency_sub_unit' => 'cent',
'currency_symbol' => 'TZS',
'currency_decimals' => 2,
'full_name' => 'United Republic of Tanzania',
'iso_3166_2' => 'TZ',
'iso_3166_3' => 'TZA',
'name' => 'Tanzania, United Republic of',
'name_ar' => 'تنزانيا',
'region_code' => '002',
'sub_region_code' => '014',
'eea' => 0,
'calling_code' => '255',
'flag' => 'TZ.png',
),
239 =>
array (
'id' => 840,
'capital' => 'Washington DC',
'citizenship' => 'American',
'citizenship_ar' => 'أمريكي',
'country_code' => '840',
'currency' => 'US dollar',
'currency_code' => 'USD',
'currency_sub_unit' => 'cent',
'currency_symbol' => '$',
'currency_decimals' => 2,
'full_name' => 'United States of America',
'iso_3166_2' => 'US',
'iso_3166_3' => 'USA',
'name' => 'United States',
'name_ar' => 'الولايات المتحدة',
'region_code' => '019',
'sub_region_code' => '021',
'eea' => 0,
'calling_code' => '1',
'flag' => 'US.png',
),
240 =>
array (
'id' => 850,
'capital' => 'Charlotte Amalie',
'citizenship' => 'US Virgin Islander',
'citizenship_ar' => 'أمريكي',
'country_code' => '850',
'currency' => 'US dollar',
'currency_code' => 'USD',
'currency_sub_unit' => 'cent',
'currency_symbol' => '$',
'currency_decimals' => 2,
'full_name' => 'United States Virgin Islands',
'iso_3166_2' => 'VI',
'iso_3166_3' => 'VIR',
'name' => 'Virgin Islands, U.S.',
'name_ar' => 'الجزر العذراء الأمريكي',
'region_code' => '019',
'sub_region_code' => '029',
'eea' => 0,
'calling_code' => '1',
'flag' => 'VI.png',
),
241 =>
array (
'id' => 854,
'capital' => 'Ouagadougou',
'citizenship' => 'Burkinabe',
'citizenship_ar' => 'بوركيني',
'country_code' => '854',
'currency' => 'CFA franc (BCEAO)',
'currency_code' => 'XOF',
'currency_sub_unit' => 'centime',
'currency_symbol' => 'XOF',
'currency_decimals' => 0,
'full_name' => 'Burkina Faso',
'iso_3166_2' => 'BF',
'iso_3166_3' => 'BFA',
'name' => 'Burkina Faso',
'name_ar' => 'بوركينا فاسو',
'region_code' => '002',
'sub_region_code' => '011',
'eea' => 0,
'calling_code' => '226',
'flag' => 'BF.png',
),
242 =>
array (
'id' => 858,
'capital' => 'Montevideo',
'citizenship' => 'Uruguayan',
'citizenship_ar' => 'أورغواي',
'country_code' => '858',
'currency' => 'Uruguayan peso',
'currency_code' => 'UYU',
'currency_sub_unit' => 'centésimo',
'currency_symbol' => '$U',
'currency_decimals' => 0,
'full_name' => 'Eastern Republic of Uruguay',
'iso_3166_2' => 'UY',
'iso_3166_3' => 'URY',
'name' => 'Uruguay',
'name_ar' => 'أورغواي',
'region_code' => '019',
'sub_region_code' => '005',
'eea' => 0,
'calling_code' => '598',
'flag' => 'UY.png',
),
243 =>
array (
'id' => 860,
'capital' => 'Tashkent',
'citizenship' => 'Uzbek',
'citizenship_ar' => 'أوزباكستاني',
'country_code' => '860',
'currency' => 'sum (inv.)',
'currency_code' => 'UZS',
'currency_sub_unit' => 'tiyin (inv.)',
'currency_symbol' => 'лв',
'currency_decimals' => 2,
'full_name' => 'Republic of Uzbekistan',
'iso_3166_2' => 'UZ',
'iso_3166_3' => 'UZB',
'name' => 'Uzbekistan',
'name_ar' => 'أوزباكستان',
'region_code' => '142',
'sub_region_code' => '143',
'eea' => 0,
'calling_code' => '998',
'flag' => 'UZ.png',
),
244 =>
array (
'id' => 862,
'capital' => 'Caracas',
'citizenship' => 'Venezuelan',
'citizenship_ar' => 'فنزويلي',
'country_code' => '862',
'currency' => 'bolívar fuerte (pl. bolívares fuertes)',
'currency_code' => 'VEF',
'currency_sub_unit' => 'céntimo',
'currency_symbol' => 'Bs',
'currency_decimals' => 2,
'full_name' => 'Bolivarian Republic of Venezuela',
'iso_3166_2' => 'VE',
'iso_3166_3' => 'VEN',
'name' => 'Venezuela, Bolivarian Republic of',
'name_ar' => 'فنزويلا',
'region_code' => '019',
'sub_region_code' => '005',
'eea' => 0,
'calling_code' => '58',
'flag' => 'VE.png',
),
245 =>
array (
'id' => 876,
'capital' => 'Mata-Utu',
'citizenship' => 'Wallisian; Futunan; Wallis and Futuna Islander',
'citizenship_ar' => 'فوتوني',
'country_code' => '876',
'currency' => 'CFP franc',
'currency_code' => 'XPF',
'currency_sub_unit' => 'centime',
'currency_symbol' => 'XPF',
'currency_decimals' => 0,
'full_name' => 'Wallis and Futuna',
'iso_3166_2' => 'WF',
'iso_3166_3' => 'WLF',
'name' => 'Wallis and Futuna',
'name_ar' => 'والس وفوتونا',
'region_code' => '009',
'sub_region_code' => '061',
'eea' => 0,
'calling_code' => '681',
'flag' => 'WF.png',
),
246 =>
array (
'id' => 882,
'capital' => 'Apia',
'citizenship' => 'Samoan',
'citizenship_ar' => 'ساموي',
'country_code' => '882',
'currency' => 'tala (inv.)',
'currency_code' => 'WST',
'currency_sub_unit' => 'sene (inv.)',
'currency_symbol' => 'WS$',
'currency_decimals' => 2,
'full_name' => 'Independent State of Samoa',
'iso_3166_2' => 'WS',
'iso_3166_3' => 'WSM',
'name' => 'Samoa',
'name_ar' => 'ساموا',
'region_code' => '009',
'sub_region_code' => '061',
'eea' => 0,
'calling_code' => '685',
'flag' => 'WS.png',
),
247 =>
array (
'id' => 887,
'capital' => 'San’a',
'citizenship' => 'Yemenite',
'citizenship_ar' => 'يمني',
'country_code' => '887',
'currency' => 'Yemeni rial',
'currency_code' => 'YER',
'currency_sub_unit' => 'fils (inv.)',
'currency_symbol' => '﷼',
'currency_decimals' => 2,
'full_name' => 'Republic of Yemen',
'iso_3166_2' => 'YE',
'iso_3166_3' => 'YEM',
'name' => 'Yemen',
'name_ar' => 'اليمن',
'region_code' => '142',
'sub_region_code' => '145',
'eea' => 0,
'calling_code' => '967',
'flag' => 'YE.png',
),
248 =>
array (
'id' => 894,
'capital' => 'Lusaka',
'citizenship' => 'Zambian',
'citizenship_ar' => 'زامبيا',
'country_code' => '894',
'currency' => 'Zambian kwacha (inv.)',
'currency_code' => 'ZMW',
'currency_sub_unit' => 'ngwee (inv.)',
'currency_symbol' => 'ZK',
'currency_decimals' => 2,
'full_name' => 'Republic of Zambia',
'iso_3166_2' => 'ZM',
'iso_3166_3' => 'ZMB',
'name' => 'Zambia',
'name_ar' => 'زامبياني',
'region_code' => '002',
'sub_region_code' => '014',
'eea' => 0,
'calling_code' => '260',
'flag' => 'ZM.png',
),
));
}
}
<?php
namespace App\Models;
use Illuminate\Database\Eloquent\Model;
class Country extends Model
{
protected $table = 'countries';
}
namespace Database\Seeders;
use Illuminate\Database\Seeder;
use Illuminate\Support\Facades\DB;
class DatabaseSeeder extends Seeder
{
/**
* Seed the application's database.
*
* @return void
*/
public function run()
{
// $this->importQuestionsAndAnswersFromSifar();
//$this->importAllFromBbProject('ge_up_', '00abcb6a-b13d-457b-b559-9109af207eac', '5abda633-22a3-469f-9530-b16783c483a4');
// $this->generateVouchers();
$this->call(HomeOfficeCategoriesTableSeeder::class);
$this->call(EducationCourseValiditiesTableSeeder::class);
$this->call(CountriesTableSeeder::class);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment