Created
December 6, 2019 11:25
-
-
Save emotality/16c4f06e138b7feaf43c2ddcd76f06d3 to your computer and use it in GitHub Desktop.
Countries Laravel table seed
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
use App\Country; | |
use Illuminate\Database\Seeder; | |
class CountriesTableSeeder extends Seeder | |
{ | |
/** | |
* Run the database seeds. | |
* | |
* @return void | |
*/ | |
public function run() | |
{ | |
$seeds = [ | |
[ | |
'id' => 1, | |
'name' => 'Afghanistan', | |
'iso2' => 'AF', | |
'iso3' => 'AFG', | |
'tld' => 'af', | |
'fips' => 'AF', | |
'iso' => '004', | |
'geo_name_id' => '1149361', | |
'e164' => '93', | |
'dial_code' => '93', | |
'continent' => 'Asia', | |
'capital' => 'Kabul', | |
'timezone' => 'Asia/Kabul', | |
'currency' => 'Afghani', | |
'lang_codes' => [ | |
'fa-AF', | |
'ps', | |
'uz-AF', | |
'tk', | |
], | |
'languages' => 'Afghan Persian or Dari (official) 50%, Pashto (official) 35%, Turkic languages (primarily Uzbek and Turkmen) 11%, 30 minor languages (primarily Balochi and Pashai) 4%, much bilingualism, but Dari functions as the lingua franca', | |
], | |
[ | |
'id' => 2, | |
'name' => 'Albania', | |
'iso2' => 'AL', | |
'iso3' => 'ALB', | |
'tld' => 'al', | |
'fips' => 'AL', | |
'iso' => '008', | |
'geo_name_id' => '783754', | |
'e164' => '355', | |
'dial_code' => '355', | |
'continent' => 'Europe', | |
'capital' => 'Tirana', | |
'timezone' => 'Europe/Tirane', | |
'currency' => 'Lek', | |
'lang_codes' => [ | |
'sq', | |
'el', | |
], | |
'languages' => 'Albanian 98.8% (official - derived from Tosk dialect), Greek 0.5%, other 0.6% (including Macedonian, Roma, Vlach, Turkish, Italian, and Serbo-Croatian), unspecified 0.1% (2011 est.)', | |
], | |
[ | |
'id' => 3, | |
'name' => 'Algeria', | |
'iso2' => 'DZ', | |
'iso3' => 'DZA', | |
'tld' => 'dz', | |
'fips' => 'AG', | |
'iso' => '012', | |
'geo_name_id' => '2589581', | |
'e164' => '213', | |
'dial_code' => '213', | |
'continent' => 'Africa', | |
'capital' => 'Algiers', | |
'timezone' => 'Africa/Algiers', | |
'currency' => 'Dinar', | |
'lang_codes' => [ | |
'ar-DZ', | |
], | |
'languages' => 'Arabic (official), French (lingua franca), Berber dialects: Kabylie Berber (Tamazight), Chaouia Berber (Tachawit), Mzab Berber, Tuareg Berber (Tamahaq)', | |
], | |
[ | |
'id' => 4, | |
'name' => 'American Samoa', | |
'iso2' => 'AS', | |
'iso3' => 'ASM', | |
'tld' => 'as', | |
'fips' => 'AQ', | |
'iso' => '016', | |
'geo_name_id' => '5880801', | |
'e164' => '1', | |
'dial_code' => '1684', | |
'continent' => 'Oceania', | |
'capital' => 'Pago Pago', | |
'timezone' => 'Pacific/Pago_Pago', | |
'currency' => 'Dollar', | |
'lang_codes' => [ | |
'en-AS', | |
'sm', | |
'to', | |
], | |
'languages' => 'Samoan 90.6% (closely related to Hawaiian and other Polynesian languages), English 2.9%, Tongan 2.4%, other Pacific islander 2.1%, other 2%', | |
], | |
[ | |
'id' => 5, | |
'name' => 'Andorra', | |
'iso2' => 'AD', | |
'iso3' => 'AND', | |
'tld' => 'ad', | |
'fips' => 'AN', | |
'iso' => '020', | |
'geo_name_id' => '3041565', | |
'e164' => '376', | |
'dial_code' => '376', | |
'continent' => 'Europe', | |
'capital' => 'Andorra la Vella', | |
'timezone' => 'Europe/Andorra', | |
'currency' => 'Euro', | |
'lang_codes' => [ | |
'ca', | |
], | |
'languages' => 'Catalan (official), French, Castilian, Portuguese', | |
], | |
[ | |
'id' => 6, | |
'name' => 'Angola', | |
'iso2' => 'AO', | |
'iso3' => 'AGO', | |
'tld' => 'ao', | |
'fips' => 'AO', | |
'iso' => '024', | |
'geo_name_id' => '3351879', | |
'e164' => '244', | |
'dial_code' => '244', | |
'continent' => 'Africa', | |
'capital' => 'Luanda', | |
'timezone' => 'Africa/Luanda', | |
'currency' => 'Kwanza', | |
'lang_codes' => [ | |
'pt-AO', | |
], | |
'languages' => 'Portuguese (official), Bantu and other African languages', | |
], | |
[ | |
'id' => 7, | |
'name' => 'Anguilla', | |
'iso2' => 'AI', | |
'iso3' => 'AIA', | |
'tld' => 'ai', | |
'fips' => 'AV', | |
'iso' => '660', | |
'geo_name_id' => '3573511', | |
'e164' => '1', | |
'dial_code' => '1264', | |
'continent' => 'North America', | |
'capital' => 'The Valley', | |
'timezone' => 'America/Anguilla', | |
'currency' => 'Dollar', | |
'lang_codes' => [ | |
'en-AI', | |
], | |
'languages' => 'English (official)', | |
], | |
[ | |
'id' => 8, | |
'name' => 'Antarctica', | |
'iso2' => 'AQ', | |
'iso3' => 'ATA', | |
'tld' => 'aq', | |
'fips' => 'AY', | |
'iso' => '010', | |
'geo_name_id' => '6697173', | |
'e164' => '672', | |
'dial_code' => '672', | |
'continent' => 'Antarctica', | |
'capital' => null, | |
'timezone' => 'Antarctica', | |
'currency' => null, | |
'lang_codes' => [], | |
'languages' => null, | |
], | |
[ | |
'id' => 9, | |
'name' => 'Antigua and Barbuda', | |
'iso2' => 'AG', | |
'iso3' => 'ATG', | |
'tld' => 'ag', | |
'fips' => 'AC', | |
'iso' => '028', | |
'geo_name_id' => '3576396', | |
'e164' => '1', | |
'dial_code' => '1268', | |
'continent' => 'North America', | |
'capital' => 'St. John\'s', | |
'timezone' => 'America/Antigua', | |
'currency' => 'Dollar', | |
'lang_codes' => [ | |
'en-AG', | |
], | |
'languages' => 'English (official), local dialects', | |
], | |
[ | |
'id' => 10, | |
'name' => 'Argentina', | |
'iso2' => 'AR', | |
'iso3' => 'ARG', | |
'tld' => 'ar', | |
'fips' => 'AR', | |
'iso' => '032', | |
'geo_name_id' => '3865483', | |
'e164' => '54', | |
'dial_code' => '54', | |
'continent' => 'South America', | |
'capital' => 'Buenos Aires', | |
'timezone' => 'America/Argentina/Buenos_Aires', | |
'currency' => 'Peso', | |
'lang_codes' => [ | |
'es-AR', | |
'en', | |
'it', | |
'de', | |
'fr', | |
'gn', | |
], | |
'languages' => 'Spanish (official), Italian, English, German, French, indigenous (Mapudungun, Quechua)', | |
], | |
[ | |
'id' => 11, | |
'name' => 'Armenia', | |
'iso2' => 'AM', | |
'iso3' => 'ARM', | |
'tld' => 'am', | |
'fips' => 'AM', | |
'iso' => '051', | |
'geo_name_id' => '174982', | |
'e164' => '374', | |
'dial_code' => '374', | |
'continent' => 'Asia', | |
'capital' => 'Yerevan', | |
'timezone' => 'Asia/Yerevan', | |
'currency' => 'Dram', | |
'lang_codes' => [ | |
'hy', | |
], | |
'languages' => 'Armenian (official) 97.9%, Kurdish (spoken by Yezidi minority) 1%, other 1% (2011 est.)', | |
], | |
[ | |
'id' => 12, | |
'name' => 'Aruba', | |
'iso2' => 'AW', | |
'iso3' => 'ABW', | |
'tld' => 'aw', | |
'fips' => 'AA', | |
'iso' => '533', | |
'geo_name_id' => '3577279', | |
'e164' => '297', | |
'dial_code' => '297', | |
'continent' => 'North America', | |
'capital' => 'Oranjestad', | |
'timezone' => 'America/Aruba', | |
'currency' => 'Guilder', | |
'lang_codes' => [ | |
'nl-AW', | |
'es', | |
'en', | |
], | |
'languages' => 'Papiamento (a Spanish-Portuguese-Dutch-English dialect) 69.4%, Spanish 13.7%, English (widely spoken) 7.1%, Dutch (official) 6.1%, Chinese 1.5%, other 1.7%, unspecified 0.4% (2010 est.)', | |
], | |
[ | |
'id' => 13, | |
'name' => 'Australia', | |
'iso2' => 'AU', | |
'iso3' => 'AUS', | |
'tld' => 'au', | |
'fips' => 'AS', | |
'iso' => '036', | |
'geo_name_id' => '2077456', | |
'e164' => '61', | |
'dial_code' => '61', | |
'continent' => 'Oceania', | |
'capital' => 'Canberra', | |
'timezone' => 'Australia/Sydney', | |
'currency' => 'Dollar', | |
'lang_codes' => [ | |
'en-AU', | |
], | |
'languages' => 'English 76.8%, Mandarin 1.6%, Italian 1.4%, Arabic 1.3%, Greek 1.2%, Cantonese 1.2%, Vietnamese 1.1%, other 10.4%, unspecified 5% (2011 est.)', | |
], | |
[ | |
'id' => 14, | |
'name' => 'Austria', | |
'iso2' => 'AT', | |
'iso3' => 'AUT', | |
'tld' => 'at', | |
'fips' => 'AU', | |
'iso' => '040', | |
'geo_name_id' => '2782113', | |
'e164' => '43', | |
'dial_code' => '43', | |
'continent' => 'Europe', | |
'capital' => 'Vienna', | |
'timezone' => 'Europe/Vienna', | |
'currency' => 'Euro', | |
'lang_codes' => [ | |
'de-AT', | |
'hr', | |
'hu', | |
'sl', | |
], | |
'languages' => 'German (official nationwide) 88.6%, Turkish 2.3%, Serbian 2.2%, Croatian (official in Burgenland) 1.6%, other (includes Slovene, official in Carinthia, and Hungarian, official in Burgenland) 5.3% (2001 census)', | |
], | |
[ | |
'id' => 15, | |
'name' => 'Azerbaijan', | |
'iso2' => 'AZ', | |
'iso3' => 'AZE', | |
'tld' => 'az', | |
'fips' => 'AJ', | |
'iso' => '031', | |
'geo_name_id' => '587116', | |
'e164' => '994', | |
'dial_code' => '994', | |
'continent' => 'Asia', | |
'capital' => 'Baku', | |
'timezone' => 'Asia/Baku', | |
'currency' => 'Manat', | |
'lang_codes' => [ | |
'az', | |
'ru', | |
'hy', | |
], | |
'languages' => 'Azerbaijani (Azeri) (official) 92.5%, Russian 1.4%, Armenian 1.4%, other 4.7% (2009 est.)', | |
], | |
[ | |
'id' => 16, | |
'name' => 'Bahamas', | |
'iso2' => 'BS', | |
'iso3' => 'BHS', | |
'tld' => 'bs', | |
'fips' => 'BF', | |
'iso' => '044', | |
'geo_name_id' => '3572887', | |
'e164' => '1', | |
'dial_code' => '1242', | |
'continent' => 'North America', | |
'capital' => 'Nassau', | |
'timezone' => 'America/Nassau', | |
'currency' => 'Dollar', | |
'lang_codes' => [ | |
'en-BS', | |
], | |
'languages' => 'English (official), Creole (among Haitian immigrants)', | |
], | |
[ | |
'id' => 17, | |
'name' => 'Bahrain', | |
'iso2' => 'BH', | |
'iso3' => 'BHR', | |
'tld' => 'bh', | |
'fips' => 'BA', | |
'iso' => '048', | |
'geo_name_id' => '290291', | |
'e164' => '973', | |
'dial_code' => '973', | |
'continent' => 'Asia', | |
'capital' => 'Manama', | |
'timezone' => 'Asia/Bahrain', | |
'currency' => 'Dinar', | |
'lang_codes' => [ | |
'ar-BH', | |
'en', | |
'fa', | |
'ur', | |
], | |
'languages' => 'Arabic (official), English, Farsi, Urdu', | |
], | |
[ | |
'id' => 18, | |
'name' => 'Bangladesh', | |
'iso2' => 'BD', | |
'iso3' => 'BGD', | |
'tld' => 'bd', | |
'fips' => 'BG', | |
'iso' => '050', | |
'geo_name_id' => '1210997', | |
'e164' => '880', | |
'dial_code' => '880', | |
'continent' => 'Asia', | |
'capital' => 'Dhaka', | |
'timezone' => 'Asia/Dhaka', | |
'currency' => 'Taka', | |
'lang_codes' => [ | |
'bn-BD', | |
'en', | |
], | |
'languages' => 'Bangla (official, also known as Bengali), English', | |
], | |
[ | |
'id' => 19, | |
'name' => 'Barbados', | |
'iso2' => 'BB', | |
'iso3' => 'BRB', | |
'tld' => 'bb', | |
'fips' => 'BB', | |
'iso' => '052', | |
'geo_name_id' => '3374084', | |
'e164' => '1', | |
'dial_code' => '1246', | |
'continent' => 'North America', | |
'capital' => 'Bridgetown', | |
'timezone' => 'America/Barbados', | |
'currency' => 'Dollar', | |
'lang_codes' => [ | |
'en-BB', | |
], | |
'languages' => 'English (official), Bajan (English-based creole language, widely spoken in informal settings)', | |
], | |
[ | |
'id' => 20, | |
'name' => 'Belarus', | |
'iso2' => 'BY', | |
'iso3' => 'BLR', | |
'tld' => 'by', | |
'fips' => 'BO', | |
'iso' => '112', | |
'geo_name_id' => '630336', | |
'e164' => '375', | |
'dial_code' => '375', | |
'continent' => 'Europe', | |
'capital' => 'Minsk', | |
'timezone' => 'Europe/Minsk', | |
'currency' => 'Ruble', | |
'lang_codes' => [ | |
'be', | |
'ru', | |
], | |
'languages' => 'Belarusian (official) 23.4%, Russian (official) 70.2%, other 3.1% (includes small Polish- and Ukrainian-speaking minorities), unspecified 3.3% (2009 est.)', | |
], | |
[ | |
'id' => 21, | |
'name' => 'Belgium', | |
'iso2' => 'BE', | |
'iso3' => 'BEL', | |
'tld' => 'be', | |
'fips' => 'BE', | |
'iso' => '056', | |
'geo_name_id' => '2802361', | |
'e164' => '32', | |
'dial_code' => '32', | |
'continent' => 'Europe', | |
'capital' => 'Brussels', | |
'timezone' => 'Europe/Brussels', | |
'currency' => 'Euro', | |
'lang_codes' => [ | |
'nl-BE', | |
'fr-BE', | |
'de-BE', | |
], | |
'languages' => 'Dutch (official) 60%, French (official) 40%, German (official) less than 1%, legally bilingual (Dutch and French)', | |
], | |
[ | |
'id' => 22, | |
'name' => 'Belize', | |
'iso2' => 'BZ', | |
'iso3' => 'BLZ', | |
'tld' => 'bz', | |
'fips' => 'BH', | |
'iso' => '084', | |
'geo_name_id' => '3582678', | |
'e164' => '501', | |
'dial_code' => '501', | |
'continent' => 'North America', | |
'capital' => 'Belmopan', | |
'timezone' => 'America/Belize', | |
'currency' => 'Dollar', | |
'lang_codes' => [ | |
'en-BZ', | |
'es', | |
], | |
'languages' => 'Spanish 46%, Creole 32.9%, Mayan dialects 8.9%, English 3.9% (official), Garifuna 3.4% (Carib), German 3.3%, other 1.4%, unknown 0.2% (2000 census)', | |
], | |
[ | |
'id' => 23, | |
'name' => 'Benin', | |
'iso2' => 'BJ', | |
'iso3' => 'BEN', | |
'tld' => 'bj', | |
'fips' => 'BN', | |
'iso' => '204', | |
'geo_name_id' => '2395170', | |
'e164' => '229', | |
'dial_code' => '229', | |
'continent' => 'Africa', | |
'capital' => 'Porto-Novo', | |
'timezone' => 'Africa/Porto-Novo', | |
'currency' => 'Franc', | |
'lang_codes' => [ | |
'fr-BJ', | |
], | |
'languages' => 'French (official), Fon and Yoruba (most common vernaculars in south), tribal languages (at least six major ones in north)', | |
], | |
[ | |
'id' => 24, | |
'name' => 'Bermuda', | |
'iso2' => 'BM', | |
'iso3' => 'BMU', | |
'tld' => 'bm', | |
'fips' => 'BD', | |
'iso' => '060', | |
'geo_name_id' => '3573345', | |
'e164' => '1', | |
'dial_code' => '1441', | |
'continent' => 'North America', | |
'capital' => 'Hamilton', | |
'timezone' => 'Atlantic/Bermuda', | |
'currency' => 'Dollar', | |
'lang_codes' => [ | |
'en-BM', | |
'pt', | |
], | |
'languages' => 'English (official), Portuguese', | |
], | |
[ | |
'id' => 25, | |
'name' => 'Bhutan', | |
'iso2' => 'BT', | |
'iso3' => 'BTN', | |
'tld' => 'bt', | |
'fips' => 'BT', | |
'iso' => '064', | |
'geo_name_id' => '1252634', | |
'e164' => '975', | |
'dial_code' => '975', | |
'continent' => 'Asia', | |
'capital' => 'Thimphu', | |
'timezone' => 'Asia/Thimphu', | |
'currency' => 'Ngultrum', | |
'lang_codes' => [ | |
'dz', | |
], | |
'languages' => 'Sharchhopka 28%, Dzongkha (official) 24%, Lhotshamkha 22%, other 26% (includes foreign languages) (2005 est.)', | |
], | |
[ | |
'id' => 26, | |
'name' => 'Bolivia', | |
'iso2' => 'BO', | |
'iso3' => 'BOL', | |
'tld' => 'bo', | |
'fips' => 'BL', | |
'iso' => '068', | |
'geo_name_id' => '3923057', | |
'e164' => '591', | |
'dial_code' => '591', | |
'continent' => 'South America', | |
'capital' => 'Sucre', | |
'timezone' => 'America/La_Paz', | |
'currency' => 'Boliviano', | |
'lang_codes' => [ | |
'es-BO', | |
'qu', | |
'ay', | |
], | |
'languages' => 'Spanish (official) 60.7%, Quechua (official) 21.2%, Aymara (official) 14.6%, Guarani (official), foreign languages 2.4%, other 1.2%', | |
], | |
[ | |
'id' => 27, | |
'name' => 'Bosnia and Herzegovina', | |
'iso2' => 'BA', | |
'iso3' => 'BIH', | |
'tld' => 'ba', | |
'fips' => 'BK', | |
'iso' => '070', | |
'geo_name_id' => '3277605', | |
'e164' => '387', | |
'dial_code' => '387', | |
'continent' => 'Europe', | |
'capital' => 'Sarajevo', | |
'timezone' => 'Europe/Sarajevo', | |
'currency' => 'Marka', | |
'lang_codes' => [ | |
'bs', | |
'hr-BA', | |
'sr-BA', | |
], | |
'languages' => 'Bosnian (official), Croatian (official), Serbian (official)', | |
], | |
[ | |
'id' => 28, | |
'name' => 'Botswana', | |
'iso2' => 'BW', | |
'iso3' => 'BWA', | |
'tld' => 'bw', | |
'fips' => 'BC', | |
'iso' => '072', | |
'geo_name_id' => '933860', | |
'e164' => '267', | |
'dial_code' => '267', | |
'continent' => 'Africa', | |
'capital' => 'Gaborone', | |
'timezone' => 'Africa/Gaborone', | |
'currency' => 'Pula', | |
'lang_codes' => [ | |
'en-BW', | |
'tn-BW', | |
], | |
'languages' => 'Setswana 78.2%, Kalanga 7.9%, Sekgalagadi 2.8%, English (official) 2.1%, other 8.6%, unspecified 0.4% (2001 census)', | |
], | |
[ | |
'id' => 29, | |
'name' => 'Brazil', | |
'iso2' => 'BR', | |
'iso3' => 'BRA', | |
'tld' => 'br', | |
'fips' => 'BR', | |
'iso' => '076', | |
'geo_name_id' => '3469034', | |
'e164' => '55', | |
'dial_code' => '55', | |
'continent' => 'South America', | |
'capital' => 'Brasilia', | |
'timezone' => 'America/Sao_Paulo', | |
'currency' => 'Real', | |
'lang_codes' => [ | |
'pt-BR', | |
'es', | |
'en', | |
'fr', | |
], | |
'languages' => 'Portuguese (official and most widely spoken language)', | |
], | |
[ | |
'id' => 30, | |
'name' => 'British Indian Ocean Territory', | |
'iso2' => 'IO', | |
'iso3' => 'IOT', | |
'tld' => 'io', | |
'fips' => 'IO', | |
'iso' => '086', | |
'geo_name_id' => '1282588', | |
'e164' => '246', | |
'dial_code' => '246', | |
'continent' => 'Asia', | |
'capital' => 'Diego Garcia', | |
'timezone' => 'Indian/Chagos', | |
'currency' => 'Dollar', | |
'lang_codes' => [ | |
'en-IO', | |
], | |
'languages' => 'English', | |
], | |
[ | |
'id' => 31, | |
'name' => 'British Virgin Islands', | |
'iso2' => 'VG', | |
'iso3' => 'VGB', | |
'tld' => 'vg', | |
'fips' => 'VI', | |
'iso' => '092', | |
'geo_name_id' => '3577718', | |
'e164' => '1', | |
'dial_code' => '1284', | |
'continent' => 'North America', | |
'capital' => 'Road Town', | |
'timezone' => 'America/Tortola', | |
'currency' => 'Dollar', | |
'lang_codes' => [ | |
'en-VG', | |
], | |
'languages' => 'English (official)', | |
], | |
[ | |
'id' => 32, | |
'name' => 'Brunei', | |
'iso2' => 'BN', | |
'iso3' => 'BRN', | |
'tld' => 'bn', | |
'fips' => 'BX', | |
'iso' => '096', | |
'geo_name_id' => '1820814', | |
'e164' => '673', | |
'dial_code' => '673', | |
'continent' => 'Asia', | |
'capital' => 'Bandar Seri Begawan', | |
'timezone' => 'Asia/Brunei', | |
'currency' => 'Dollar', | |
'lang_codes' => [ | |
'ms-BN', | |
'en-BN', | |
], | |
'languages' => 'Malay (official), English, Chinese', | |
], | |
[ | |
'id' => 33, | |
'name' => 'Bulgaria', | |
'iso2' => 'BG', | |
'iso3' => 'BGR', | |
'tld' => 'bg', | |
'fips' => 'BU', | |
'iso' => '100', | |
'geo_name_id' => '732800', | |
'e164' => '359', | |
'dial_code' => '359', | |
'continent' => 'Europe', | |
'capital' => 'Sofia', | |
'timezone' => 'Europe/Sofia', | |
'currency' => 'Lev', | |
'lang_codes' => [ | |
'bg', | |
'tr-BG', | |
], | |
'languages' => 'Bulgarian (official) 76.8%, Turkish 8.2%, Roma 3.8%, other 0.7%, unspecified 10.5% (2011 est.)', | |
], | |
[ | |
'id' => 34, | |
'name' => 'Burkina Faso', | |
'iso2' => 'BF', | |
'iso3' => 'BFA', | |
'tld' => 'bf', | |
'fips' => 'UV', | |
'iso' => '854', | |
'geo_name_id' => '2361809', | |
'e164' => '226', | |
'dial_code' => '226', | |
'continent' => 'Africa', | |
'capital' => 'Ouagadougou', | |
'timezone' => 'Africa/Ouagadougou', | |
'currency' => 'Franc', | |
'lang_codes' => [ | |
'fr-BF', | |
], | |
'languages' => 'French (official), native African languages belonging to Sudanic family spoken by 90% of the population', | |
], | |
[ | |
'id' => 35, | |
'name' => 'Burundi', | |
'iso2' => 'BI', | |
'iso3' => 'BDI', | |
'tld' => 'bi', | |
'fips' => 'BY', | |
'iso' => '108', | |
'geo_name_id' => '433561', | |
'e164' => '257', | |
'dial_code' => '257', | |
'continent' => 'Africa', | |
'capital' => 'Bujumbura', | |
'timezone' => 'Africa/Bujumbura', | |
'currency' => 'Franc', | |
'lang_codes' => [ | |
'fr-BI', | |
'rn', | |
], | |
'languages' => 'Kirundi 29.7% (official), Kirundi and other language 9.1%, French (official) and French and other language 0.3%, Swahili and Swahili and other language 0.2% (along Lake Tanganyika and in the Bujumbura area), English and English and other language 0.06%, more than 2 languages 3.7%, unspecified 56.9% (2008 est.)', | |
], | |
[ | |
'id' => 36, | |
'name' => 'Cambodia', | |
'iso2' => 'KH', | |
'iso3' => 'KHM', | |
'tld' => 'kh', | |
'fips' => 'CB', | |
'iso' => '116', | |
'geo_name_id' => '1831722', | |
'e164' => '855', | |
'dial_code' => '855', | |
'continent' => 'Asia', | |
'capital' => 'Phnom Penh', | |
'timezone' => 'Asia/Phnom_Penh', | |
'currency' => 'Riels', | |
'lang_codes' => [ | |
'km', | |
'fr', | |
'en', | |
], | |
'languages' => 'Khmer (official) 96.3%, other 3.7% (2008 est.)', | |
], | |
[ | |
'id' => 37, | |
'name' => 'Cameroon', | |
'iso2' => 'CM', | |
'iso3' => 'CMR', | |
'tld' => 'cm', | |
'fips' => 'CM', | |
'iso' => '120', | |
'geo_name_id' => '2233387', | |
'e164' => '237', | |
'dial_code' => '237', | |
'continent' => 'Africa', | |
'capital' => 'Yaounde', | |
'timezone' => 'Africa/Douala', | |
'currency' => 'Franc', | |
'lang_codes' => [ | |
'en-CM', | |
'fr-CM', | |
], | |
'languages' => '24 major African language groups, English (official), French (official)', | |
], | |
[ | |
'id' => 38, | |
'name' => 'Canada', | |
'iso2' => 'CA', | |
'iso3' => 'CAN', | |
'tld' => 'ca', | |
'fips' => 'CA', | |
'iso' => '124', | |
'geo_name_id' => '6251999', | |
'e164' => '1', | |
'dial_code' => '1', | |
'continent' => 'North America', | |
'capital' => 'Ottawa', | |
'timezone' => 'America/Toronto', | |
'currency' => 'Dollar', | |
'lang_codes' => [ | |
'en-CA', | |
'fr-CA', | |
'iu', | |
], | |
'languages' => 'English (official) 58.7%, French (official) 22%, Punjabi 1.4%, Italian 1.3%, Spanish 1.3%, German 1.3%, Cantonese 1.2%, Tagalog 1.2%, Arabic 1.1%, other 10.5% (2011 est.)', | |
], | |
[ | |
'id' => 39, | |
'name' => 'Cape Verde', | |
'iso2' => 'CV', | |
'iso3' => 'CPV', | |
'tld' => 'cv', | |
'fips' => 'CV', | |
'iso' => '132', | |
'geo_name_id' => '3374766', | |
'e164' => '238', | |
'dial_code' => '238', | |
'continent' => 'Africa', | |
'capital' => 'Praia', | |
'timezone' => 'Atlantic/Cape_Verde', | |
'currency' => 'Escudo', | |
'lang_codes' => [ | |
'pt-CV', | |
], | |
'languages' => 'Portuguese (official), Crioulo (a blend of Portuguese and West African words)', | |
], | |
[ | |
'id' => 40, | |
'name' => 'Cayman Islands', | |
'iso2' => 'KY', | |
'iso3' => 'CYM', | |
'tld' => 'ky', | |
'fips' => 'CJ', | |
'iso' => '136', | |
'geo_name_id' => '3580718', | |
'e164' => '1', | |
'dial_code' => '1345', | |
'continent' => 'North America', | |
'capital' => 'George Town', | |
'timezone' => 'America/Cayman', | |
'currency' => 'Dollar', | |
'lang_codes' => [ | |
'en-KY', | |
], | |
'languages' => 'English (official) 90.9%, Spanish 4%, Filipino 3.3%, other 1.7%, unspecified 0.1% (2010 est.)', | |
], | |
[ | |
'id' => 41, | |
'name' => 'Central African Republic', | |
'iso2' => 'CF', | |
'iso3' => 'CAF', | |
'tld' => 'cf', | |
'fips' => 'CT', | |
'iso' => '140', | |
'geo_name_id' => '239880', | |
'e164' => '236', | |
'dial_code' => '236', | |
'continent' => 'Africa', | |
'capital' => 'Bangui', | |
'timezone' => 'Africa/Bangui', | |
'currency' => 'Franc', | |
'lang_codes' => [ | |
'fr-CF', | |
'sg', | |
'ln', | |
'kg', | |
], | |
'languages' => 'French (official), Sangho (lingua franca and national language), tribal languages', | |
], | |
[ | |
'id' => 42, | |
'name' => 'Chad', | |
'iso2' => 'TD', | |
'iso3' => 'TCD', | |
'tld' => 'td', | |
'fips' => 'CD', | |
'iso' => '148', | |
'geo_name_id' => '2434508', | |
'e164' => '235', | |
'dial_code' => '235', | |
'continent' => 'Africa', | |
'capital' => 'N\'Djamena', | |
'timezone' => 'Africa/Ndjamena', | |
'currency' => 'Franc', | |
'lang_codes' => [ | |
'fr-TD', | |
'ar-TD', | |
'sre', | |
], | |
'languages' => 'French (official), Arabic (official), Sara (in south), more than 120 different languages and dialects', | |
], | |
[ | |
'id' => 43, | |
'name' => 'Chile', | |
'iso2' => 'CL', | |
'iso3' => 'CHL', | |
'tld' => 'cl', | |
'fips' => 'CI', | |
'iso' => '152', | |
'geo_name_id' => '3895114', | |
'e164' => '56', | |
'dial_code' => '56', | |
'continent' => 'South America', | |
'capital' => 'Santiago', | |
'timezone' => 'America/Santiago', | |
'currency' => 'Peso', | |
'lang_codes' => [ | |
'es-CL', | |
], | |
'languages' => 'Spanish 99.5% (official), English 10.2%, indigenous 1% (includes Mapudungun, Aymara, Quechua, Rapa Nui), other 2.3%, unspecified 0.2%', | |
], | |
[ | |
'id' => 44, | |
'name' => 'China', | |
'iso2' => 'CN', | |
'iso3' => 'CHN', | |
'tld' => 'cn', | |
'fips' => 'CH', | |
'iso' => '156', | |
'geo_name_id' => '1814991', | |
'e164' => '86', | |
'dial_code' => '86', | |
'continent' => 'Asia', | |
'capital' => 'Beijing', | |
'timezone' => 'Asia/Shanghai', | |
'currency' => 'Yuan Renminbi', | |
'lang_codes' => [ | |
'zh-CN', | |
'yue', | |
'wuu', | |
'dta', | |
'ug', | |
'za', | |
], | |
'languages' => 'Standard Chinese or Mandarin (official; Putonghua, based on the Beijing dialect), Yue (Cantonese), Wu (Shanghainese), Minbei (Fuzhou), Minnan (Hokkien-Taiwanese), Xiang, Gan, Hakka dialects, minority languages', | |
], | |
[ | |
'id' => 45, | |
'name' => 'Christmas Island', | |
'iso2' => 'CX', | |
'iso3' => 'CXR', | |
'tld' => 'cx', | |
'fips' => 'KT', | |
'iso' => '162', | |
'geo_name_id' => '2078138', | |
'e164' => '61', | |
'dial_code' => '61', | |
'continent' => 'Asia', | |
'capital' => 'Flying Fish Cove', | |
'timezone' => 'Indian/Christmas', | |
'currency' => 'Dollar', | |
'lang_codes' => [ | |
'en', | |
'zh', | |
'ms-CC', | |
], | |
'languages' => 'English (official), Chinese, Malay', | |
], | |
[ | |
'id' => 46, | |
'name' => 'Cocos Islands', | |
'iso2' => 'CC', | |
'iso3' => 'CCK', | |
'tld' => 'cc', | |
'fips' => 'CK', | |
'iso' => '166', | |
'geo_name_id' => '1547376', | |
'e164' => '61', | |
'dial_code' => '61', | |
'continent' => 'Asia', | |
'capital' => 'West Island', | |
'timezone' => 'Indian/Cocos', | |
'currency' => 'Dollar', | |
'lang_codes' => [ | |
'ms-CC', | |
'en', | |
], | |
'languages' => 'Malay (Cocos dialect), English', | |
], | |
[ | |
'id' => 47, | |
'name' => 'Colombia', | |
'iso2' => 'CO', | |
'iso3' => 'COL', | |
'tld' => 'co', | |
'fips' => 'CO', | |
'iso' => '170', | |
'geo_name_id' => '3686110', | |
'e164' => '57', | |
'dial_code' => '57', | |
'continent' => 'South America', | |
'capital' => 'Bogota', | |
'timezone' => 'America/Bogota', | |
'currency' => 'Peso', | |
'lang_codes' => [ | |
'es-CO', | |
], | |
'languages' => 'Spanish (official)', | |
], | |
[ | |
'id' => 48, | |
'name' => 'Comoros', | |
'iso2' => 'KM', | |
'iso3' => 'COM', | |
'tld' => 'km', | |
'fips' => 'CN', | |
'iso' => '174', | |
'geo_name_id' => '921929', | |
'e164' => '269', | |
'dial_code' => '269', | |
'continent' => 'Africa', | |
'capital' => 'Moroni', | |
'timezone' => 'Indian/Comoro', | |
'currency' => 'Franc', | |
'lang_codes' => [ | |
'ar', | |
'fr-KM', | |
], | |
'languages' => 'Arabic (official), French (official), Shikomoro (a blend of Swahili and Arabic)', | |
], | |
[ | |
'id' => 49, | |
'name' => 'Cook Islands', | |
'iso2' => 'CK', | |
'iso3' => 'COK', | |
'tld' => 'ck', | |
'fips' => 'CW', | |
'iso' => '184', | |
'geo_name_id' => '1899402', | |
'e164' => '682', | |
'dial_code' => '682', | |
'continent' => 'Oceania', | |
'capital' => 'Avarua', | |
'timezone' => 'Pacific/Rarotonga', | |
'currency' => 'Dollar', | |
'lang_codes' => [ | |
'en-CK', | |
'mi', | |
], | |
'languages' => 'English (official) 86.4%, Cook Islands Maori (Rarotongan) (official) 76.2%, other 8.3%', | |
], | |
[ | |
'id' => 50, | |
'name' => 'Costa Rica', | |
'iso2' => 'CR', | |
'iso3' => 'CRI', | |
'tld' => 'cr', | |
'fips' => 'CS', | |
'iso' => '188', | |
'geo_name_id' => '3624060', | |
'e164' => '506', | |
'dial_code' => '506', | |
'continent' => 'North America', | |
'capital' => 'San Jose', | |
'timezone' => 'America/Costa_Rica', | |
'currency' => 'Colon', | |
'lang_codes' => [ | |
'es-CR', | |
'en', | |
], | |
'languages' => 'Spanish (official), English', | |
], | |
[ | |
'id' => 51, | |
'name' => 'Croatia', | |
'iso2' => 'HR', | |
'iso3' => 'HRV', | |
'tld' => 'hr', | |
'fips' => 'HR', | |
'iso' => '191', | |
'geo_name_id' => '3202326', | |
'e164' => '385', | |
'dial_code' => '385', | |
'continent' => 'Europe', | |
'capital' => 'Zagreb', | |
'timezone' => 'Europe/Zagreb', | |
'currency' => 'Kuna', | |
'lang_codes' => [ | |
'hr-HR', | |
'sr', | |
], | |
'languages' => 'Croatian (official) 95.6%, Serbian 1.2%, other 3% (including Hungarian, Czech, Slovak, and Albanian), unspecified 0.2% (2011 est.)', | |
], | |
[ | |
'id' => 52, | |
'name' => 'Cuba', | |
'iso2' => 'CU', | |
'iso3' => 'CUB', | |
'tld' => 'cu', | |
'fips' => 'CU', | |
'iso' => '192', | |
'geo_name_id' => '3562981', | |
'e164' => '53', | |
'dial_code' => '53', | |
'continent' => 'North America', | |
'capital' => 'Havana', | |
'timezone' => 'America/Havana', | |
'currency' => 'Peso', | |
'lang_codes' => [ | |
'es-CU', | |
], | |
'languages' => 'Spanish (official)', | |
], | |
[ | |
'id' => 53, | |
'name' => 'Curacao', | |
'iso2' => 'CW', | |
'iso3' => 'CUW', | |
'tld' => 'cw', | |
'fips' => 'UC', | |
'iso' => '531', | |
'geo_name_id' => '7626836', | |
'e164' => '599', | |
'dial_code' => '599', | |
'continent' => 'North America', | |
'capital' => 'Willemstad', | |
'timezone' => 'America/Curacao', | |
'currency' => 'Guilder', | |
'lang_codes' => [ | |
'nl', | |
'pap', | |
], | |
'languages' => 'Papiamentu (a Spanish-Portuguese-Dutch-English dialect) 81.2%, Dutch (official) 8%, Spanish 4%, English 2.9%, other 3.9% (2001 census)', | |
], | |
[ | |
'id' => 54, | |
'name' => 'Cyprus', | |
'iso2' => 'CY', | |
'iso3' => 'CYP', | |
'tld' => 'cy', | |
'fips' => 'CY', | |
'iso' => '196', | |
'geo_name_id' => '146669', | |
'e164' => '357', | |
'dial_code' => '357', | |
'continent' => 'Europe', | |
'capital' => 'Nicosia', | |
'timezone' => 'Asia/Nicosia', | |
'currency' => 'Euro', | |
'lang_codes' => [ | |
'el-CY', | |
'tr-CY', | |
'en', | |
], | |
'languages' => 'Greek (official) 80.9%, Turkish (official) 0.2%, English 4.1%, Romanian 2.9%, Russian 2.5%, Bulgarian 2.2%, Arabic 1.2%, Filippino 1.1%, other 4.3%, unspecified 0.6% (2011 est.)', | |
], | |
[ | |
'id' => 55, | |
'name' => 'Czech Republic', | |
'iso2' => 'CZ', | |
'iso3' => 'CZE', | |
'tld' => 'cz', | |
'fips' => 'EZ', | |
'iso' => '203', | |
'geo_name_id' => '3077311', | |
'e164' => '420', | |
'dial_code' => '420', | |
'continent' => 'Europe', | |
'capital' => 'Prague', | |
'timezone' => 'Europe/Prague', | |
'currency' => 'Koruna', | |
'lang_codes' => [ | |
'cs', | |
'sk', | |
], | |
'languages' => 'Czech 95.4%, Slovak 1.6%, other 3% (2011 census)', | |
], | |
[ | |
'id' => 56, | |
'name' => 'Democratic Republic of the Congo', | |
'iso2' => 'CD', | |
'iso3' => 'COD', | |
'tld' => 'cd', | |
'fips' => 'CG', | |
'iso' => '180', | |
'geo_name_id' => '203312', | |
'e164' => '243', | |
'dial_code' => '243', | |
'continent' => 'Africa', | |
'capital' => 'Kinshasa', | |
'timezone' => 'Africa/Kinshasa', | |
'currency' => 'Franc', | |
'lang_codes' => [ | |
'fr-CD', | |
'ln', | |
'kg', | |
], | |
'languages' => 'French (official), Lingala (a lingua franca trade language), Kingwana (a dialect of Kiswahili or Swahili), Kikongo, Tshiluba', | |
], | |
[ | |
'id' => 57, | |
'name' => 'Denmark', | |
'iso2' => 'DK', | |
'iso3' => 'DNK', | |
'tld' => 'dk', | |
'fips' => 'DA', | |
'iso' => '208', | |
'geo_name_id' => '2623032', | |
'e164' => '45', | |
'dial_code' => '45', | |
'continent' => 'Europe', | |
'capital' => 'Copenhagen', | |
'timezone' => 'Europe/Copenhagen', | |
'currency' => 'Krone', | |
'lang_codes' => [ | |
'da-DK', | |
'en', | |
'fo', | |
'de-DK', | |
], | |
'languages' => 'Danish, Faroese, Greenlandic (an Inuit dialect), German (small minority)', | |
], | |
[ | |
'id' => 58, | |
'name' => 'Djibouti', | |
'iso2' => 'DJ', | |
'iso3' => 'DJI', | |
'tld' => 'dj', | |
'fips' => 'DJ', | |
'iso' => '262', | |
'geo_name_id' => '223816', | |
'e164' => '253', | |
'dial_code' => '253', | |
'continent' => 'Africa', | |
'capital' => 'Djibouti', | |
'timezone' => 'Africa/Djibouti', | |
'currency' => 'Franc', | |
'lang_codes' => [ | |
'fr-DJ', | |
'ar', | |
'so-DJ', | |
'aa', | |
], | |
'languages' => 'French (official), Arabic (official), Somali, Afar', | |
], | |
[ | |
'id' => 59, | |
'name' => 'Dominica', | |
'iso2' => 'DM', | |
'iso3' => 'DMA', | |
'tld' => 'dm', | |
'fips' => 'DO', | |
'iso' => '212', | |
'geo_name_id' => '3575830', | |
'e164' => '1', | |
'dial_code' => '1767', | |
'continent' => 'North America', | |
'capital' => 'Roseau', | |
'timezone' => 'America/Dominica', | |
'currency' => 'Dollar', | |
'lang_codes' => [ | |
'en-DM', | |
], | |
'languages' => 'English (official), French patois', | |
], | |
[ | |
'id' => 60, | |
'name' => 'Dominican Republic', | |
'iso2' => 'DO', | |
'iso3' => 'DOM', | |
'tld' => 'do', | |
'fips' => 'DR', | |
'iso' => '214', | |
'geo_name_id' => '3508796', | |
'e164' => '1', | |
'dial_code' => '1809, 1829, 1849', | |
'continent' => 'North America', | |
'capital' => 'Santo Domingo', | |
'timezone' => 'America/Santo_Domingo', | |
'currency' => 'Peso', | |
'lang_codes' => [ | |
'es-DO', | |
], | |
'languages' => 'Spanish (official)', | |
], | |
[ | |
'id' => 61, | |
'name' => 'East Timor', | |
'iso2' => 'TL', | |
'iso3' => 'TLS', | |
'tld' => 'tl', | |
'fips' => 'TT', | |
'iso' => '626', | |
'geo_name_id' => '1966436', | |
'e164' => '670', | |
'dial_code' => '670', | |
'continent' => 'Oceania', | |
'capital' => 'Dili', | |
'timezone' => 'Asia/Dili', | |
'currency' => 'Dollar', | |
'lang_codes' => [ | |
'tet', | |
'pt-TL', | |
'id', | |
'en', | |
], | |
'languages' => 'Tetum (official), Portuguese (official), Indonesian, English', | |
], | |
[ | |
'id' => 62, | |
'name' => 'Ecuador', | |
'iso2' => 'EC', | |
'iso3' => 'ECU', | |
'tld' => 'ec', | |
'fips' => 'EC', | |
'iso' => '218', | |
'geo_name_id' => '3658394', | |
'e164' => '593', | |
'dial_code' => '593', | |
'continent' => 'South America', | |
'capital' => 'Quito', | |
'timezone' => 'America/Guayaquil', | |
'currency' => 'Dollar', | |
'lang_codes' => [ | |
'es-EC', | |
], | |
'languages' => 'Spanish (Castillian) 93% (official), Quechua 4.1%, other indigenous 0.7%, foreign 2.2%', | |
], | |
[ | |
'id' => 63, | |
'name' => 'Egypt', | |
'iso2' => 'EG', | |
'iso3' => 'EGY', | |
'tld' => 'eg', | |
'fips' => 'EG', | |
'iso' => '818', | |
'geo_name_id' => '357994', | |
'e164' => '20', | |
'dial_code' => '20', | |
'continent' => 'Africa', | |
'capital' => 'Cairo', | |
'timezone' => 'Africa/Cairo', | |
'currency' => 'Pound', | |
'lang_codes' => [ | |
'ar-EG', | |
'en', | |
'fr', | |
], | |
'languages' => 'Arabic (official), English and French widely understood by educated classes', | |
], | |
[ | |
'id' => 64, | |
'name' => 'El Salvador', | |
'iso2' => 'SV', | |
'iso3' => 'SLV', | |
'tld' => 'sv', | |
'fips' => 'ES', | |
'iso' => '222', | |
'geo_name_id' => '3585968', | |
'e164' => '503', | |
'dial_code' => '503', | |
'continent' => 'North America', | |
'capital' => 'San Salvador', | |
'timezone' => 'America/El_Salvador', | |
'currency' => 'Dollar', | |
'lang_codes' => [ | |
'es-SV', | |
], | |
'languages' => 'Spanish (official), Nahua (among some Amerindians)', | |
], | |
[ | |
'id' => 65, | |
'name' => 'Equatorial Guinea', | |
'iso2' => 'GQ', | |
'iso3' => 'GNQ', | |
'tld' => 'gq', | |
'fips' => 'EK', | |
'iso' => '226', | |
'geo_name_id' => '2309096', | |
'e164' => '240', | |
'dial_code' => '240', | |
'continent' => 'Africa', | |
'capital' => 'Malabo', | |
'timezone' => 'Africa/Malabo', | |
'currency' => 'Franc', | |
'lang_codes' => [ | |
'es-GQ', | |
'fr', | |
], | |
'languages' => 'Spanish (official) 67.6%, other (includes French (official), Fang, Bubi) 32.4% (1994 census)', | |
], | |
[ | |
'id' => 66, | |
'name' => 'Eritrea', | |
'iso2' => 'ER', | |
'iso3' => 'ERI', | |
'tld' => 'er', | |
'fips' => 'ER', | |
'iso' => '232', | |
'geo_name_id' => '338010', | |
'e164' => '291', | |
'dial_code' => '291', | |
'continent' => 'Africa', | |
'capital' => 'Asmara', | |
'timezone' => 'Africa/Asmara', | |
'currency' => 'Nakfa', | |
'lang_codes' => [ | |
'aa-ER', | |
'ar', | |
'tig', | |
'kun', | |
'ti-ER', | |
], | |
'languages' => 'Tigrinya (official), Arabic (official), English (official), Tigre, Kunama, Afar, other Cushitic languages', | |
], | |
[ | |
'id' => 67, | |
'name' => 'Estonia', | |
'iso2' => 'EE', | |
'iso3' => 'EST', | |
'tld' => 'ee', | |
'fips' => 'EN', | |
'iso' => '233', | |
'geo_name_id' => '453733', | |
'e164' => '372', | |
'dial_code' => '372', | |
'continent' => 'Europe', | |
'capital' => 'Tallinn', | |
'timezone' => 'Europe/Tallinn', | |
'currency' => 'Euro', | |
'lang_codes' => [ | |
'et', | |
'ru', | |
], | |
'languages' => 'Estonian (official) 68.5%, Russian 29.6%, Ukrainian 0.6%, other 1.2%, unspecified 0.1% (2011 est.)', | |
], | |
[ | |
'id' => 68, | |
'name' => 'Ethiopia', | |
'iso2' => 'ET', | |
'iso3' => 'ETH', | |
'tld' => 'et', | |
'fips' => 'ET', | |
'iso' => '231', | |
'geo_name_id' => '337996', | |
'e164' => '251', | |
'dial_code' => '251', | |
'continent' => 'Africa', | |
'capital' => 'Addis Ababa', | |
'timezone' => 'Africa/Addis_Ababa', | |
'currency' => 'Birr', | |
'lang_codes' => [ | |
'am', | |
'en-ET', | |
'om-ET', | |
'ti-ET', | |
'so-ET', | |
'sid', | |
], | |
'languages' => 'Oromo (official working language in the State of Oromiya) 33.8%, Amharic (official national language) 29.3%, Somali (official working language of the State of Sumale) 6.2%, Tigrigna (Tigrinya) (official working language of the State of Tigray) 5.9%, Sidamo 4%, Wolaytta 2.2%, Gurage 2%, Afar (official working language of the State of Afar) 1.7%, Hadiyya 1.7%, Gamo 1.5%, Gedeo 1.3%, Opuuo 1.2%, Kafa 1.1%, other 8.1%, English (major foreign language taught in schools), Arabic (2007 est.)', | |
], | |
[ | |
'id' => 69, | |
'name' => 'Falkland Islands', | |
'iso2' => 'FK', | |
'iso3' => 'FLK', | |
'tld' => 'fk', | |
'fips' => 'FK', | |
'iso' => '238', | |
'geo_name_id' => '3474414', | |
'e164' => '500', | |
'dial_code' => '500', | |
'continent' => 'South America', | |
'capital' => 'Stanley', | |
'timezone' => 'Atlantic/Stanley', | |
'currency' => 'Pound', | |
'lang_codes' => [ | |
'en-FK', | |
], | |
'languages' => 'English 89%, Spanish 7.7%, other 3.3% (2006 est.)', | |
], | |
[ | |
'id' => 70, | |
'name' => 'Faroe Islands', | |
'iso2' => 'FO', | |
'iso3' => 'FRO', | |
'tld' => 'fo', | |
'fips' => 'FO', | |
'iso' => '234', | |
'geo_name_id' => '2622320', | |
'e164' => '298', | |
'dial_code' => '298', | |
'continent' => 'Europe', | |
'capital' => 'Torshavn', | |
'timezone' => 'Atlantic/Faroe', | |
'currency' => 'Krone', | |
'lang_codes' => [ | |
'fo', | |
'da-FO', | |
], | |
'languages' => 'Faroese (derived from Old Norse), Danish', | |
], | |
[ | |
'id' => 71, | |
'name' => 'Fiji', | |
'iso2' => 'FJ', | |
'iso3' => 'FJI', | |
'tld' => 'fj', | |
'fips' => 'FJ', | |
'iso' => '242', | |
'geo_name_id' => '2205218', | |
'e164' => '679', | |
'dial_code' => '679', | |
'continent' => 'Oceania', | |
'capital' => 'Suva', | |
'timezone' => 'Pacific/Fiji', | |
'currency' => 'Dollar', | |
'lang_codes' => [ | |
'en-FJ', | |
'fj', | |
], | |
'languages' => 'English (official), Fijian (official), Hindustani', | |
], | |
[ | |
'id' => 72, | |
'name' => 'Finland', | |
'iso2' => 'FI', | |
'iso3' => 'FIN', | |
'tld' => 'fi', | |
'fips' => 'FI', | |
'iso' => '246', | |
'geo_name_id' => '660013', | |
'e164' => '358', | |
'dial_code' => '358', | |
'continent' => 'Europe', | |
'capital' => 'Helsinki', | |
'timezone' => 'Europe/Helsinki', | |
'currency' => 'Euro', | |
'lang_codes' => [ | |
'fi-FI', | |
'sv-FI', | |
'smn', | |
], | |
'languages' => 'Finnish (official) 94.2%, Swedish (official) 5.5%, other (small Sami- and Russian-speaking minorities) 0.2% (2012 est.)', | |
], | |
[ | |
'id' => 73, | |
'name' => 'France', | |
'iso2' => 'FR', | |
'iso3' => 'FRA', | |
'tld' => 'fr', | |
'fips' => 'FR', | |
'iso' => '250', | |
'geo_name_id' => '3017382', | |
'e164' => '33', | |
'dial_code' => '33', | |
'continent' => 'Europe', | |
'capital' => 'Paris', | |
'timezone' => 'Europe/Paris', | |
'currency' => 'Euro', | |
'lang_codes' => [ | |
'fr-FR', | |
'frp', | |
'br', | |
'co', | |
'ca', | |
'eu', | |
'oc', | |
], | |
'languages' => 'French (official) 100%, rapidly declining regional dialects and languages (Provencal, Breton, Alsatian, Corsican, Catalan, Basque, Flemish)', | |
], | |
[ | |
'id' => 74, | |
'name' => 'French Polynesia', | |
'iso2' => 'PF', | |
'iso3' => 'PYF', | |
'tld' => 'pf', | |
'fips' => 'FP', | |
'iso' => '258', | |
'geo_name_id' => '4030656', | |
'e164' => '689', | |
'dial_code' => '689', | |
'continent' => 'Oceania', | |
'capital' => 'Papeete', | |
'timezone' => 'Pacific/Tahiti', | |
'currency' => 'Franc', | |
'lang_codes' => [ | |
'fr-PF', | |
'ty', | |
], | |
'languages' => 'French (official) 61.1%, Polynesian (official) 31.4%, Asian languages 1.2%, other 0.3%, unspecified 6% (2002 census)', | |
], | |
[ | |
'id' => 75, | |
'name' => 'Gabon', | |
'iso2' => 'GA', | |
'iso3' => 'GAB', | |
'tld' => 'ga', | |
'fips' => 'GB', | |
'iso' => '266', | |
'geo_name_id' => '2400553', | |
'e164' => '241', | |
'dial_code' => '241', | |
'continent' => 'Africa', | |
'capital' => 'Libreville', | |
'timezone' => 'Africa/Libreville', | |
'currency' => 'Franc', | |
'lang_codes' => [ | |
'fr-GA', | |
], | |
'languages' => 'French (official), Fang, Myene, Nzebi, Bapounou/Eschira, Bandjabi', | |
], | |
[ | |
'id' => 76, | |
'name' => 'Gambia', | |
'iso2' => 'GM', | |
'iso3' => 'GMB', | |
'tld' => 'gm', | |
'fips' => 'GA', | |
'iso' => '270', | |
'geo_name_id' => '2413451', | |
'e164' => '220', | |
'dial_code' => '220', | |
'continent' => 'Africa', | |
'capital' => 'Banjul', | |
'timezone' => 'Africa/Banjul', | |
'currency' => 'Dalasi', | |
'lang_codes' => [ | |
'en-GM', | |
'mnk', | |
'wof', | |
'wo', | |
'ff', | |
], | |
'languages' => 'English (official), Mandinka, Wolof, Fula, other indigenous vernaculars', | |
], | |
[ | |
'id' => 77, | |
'name' => 'Georgia', | |
'iso2' => 'GE', | |
'iso3' => 'GEO', | |
'tld' => 'ge', | |
'fips' => 'GG', | |
'iso' => '268', | |
'geo_name_id' => '614540', | |
'e164' => '995', | |
'dial_code' => '995', | |
'continent' => 'Asia', | |
'capital' => 'Tbilisi', | |
'timezone' => 'Asia/Tbilisi', | |
'currency' => 'Lari', | |
'lang_codes' => [ | |
'ka', | |
'ru', | |
'hy', | |
'az', | |
], | |
'languages' => 'Georgian (official) 71%, Russian 9%, Armenian 7%, Azeri 6%, other 7%', | |
], | |
[ | |
'id' => 78, | |
'name' => 'Germany', | |
'iso2' => 'DE', | |
'iso3' => 'DEU', | |
'tld' => 'de', | |
'fips' => 'GM', | |
'iso' => '276', | |
'geo_name_id' => '2921044', | |
'e164' => '49', | |
'dial_code' => '49', | |
'continent' => 'Europe', | |
'capital' => 'Berlin', | |
'timezone' => 'Europe/Berlin', | |
'currency' => 'Euro', | |
'lang_codes' => [ | |
'de', | |
], | |
'languages' => 'German (official)', | |
], | |
[ | |
'id' => 79, | |
'name' => 'Ghana', | |
'iso2' => 'GH', | |
'iso3' => 'GHA', | |
'tld' => 'gh', | |
'fips' => 'GH', | |
'iso' => '288', | |
'geo_name_id' => '2300660', | |
'e164' => '233', | |
'dial_code' => '233', | |
'continent' => 'Africa', | |
'capital' => 'Accra', | |
'timezone' => 'Africa/Accra', | |
'currency' => 'Cedi', | |
'lang_codes' => [ | |
'en-GH', | |
'ak', | |
'ee', | |
'tw', | |
], | |
'languages' => 'Asante 14.8%, Ewe 12.7%, Fante 9.9%, Boron (Brong) 4.6%, Dagomba 4.3%, Dangme 4.3%, Dagarte (Dagaba) 3.7%, Akyem 3.4%, Ga 3.4%, Akuapem 2.9%, other (includes English (official)) 36.1% (2000 census)', | |
], | |
[ | |
'id' => 80, | |
'name' => 'Gibraltar', | |
'iso2' => 'GI', | |
'iso3' => 'GIB', | |
'tld' => 'gi', | |
'fips' => 'GI', | |
'iso' => '292', | |
'geo_name_id' => '2411586', | |
'e164' => '350', | |
'dial_code' => '350', | |
'continent' => 'Europe', | |
'capital' => 'Gibraltar', | |
'timezone' => 'Europe/Gibraltar', | |
'currency' => 'Pound', | |
'lang_codes' => [ | |
'en-GI', | |
'es', | |
'it', | |
'pt', | |
], | |
'languages' => 'English (used in schools and for official purposes), Spanish, Italian, Portuguese', | |
], | |
[ | |
'id' => 81, | |
'name' => 'Greece', | |
'iso2' => 'GR', | |
'iso3' => 'GRC', | |
'tld' => 'gr', | |
'fips' => 'GR', | |
'iso' => '300', | |
'geo_name_id' => '390903', | |
'e164' => '30', | |
'dial_code' => '30', | |
'continent' => 'Europe', | |
'capital' => 'Athens', | |
'timezone' => 'Europe/Athens', | |
'currency' => 'Euro', | |
'lang_codes' => [ | |
'el-GR', | |
'en', | |
'fr', | |
], | |
'languages' => 'Greek (official) 99%, other (includes English and French) 1%', | |
], | |
[ | |
'id' => 82, | |
'name' => 'Greenland', | |
'iso2' => 'GL', | |
'iso3' => 'GRL', | |
'tld' => 'gl', | |
'fips' => 'GL', | |
'iso' => '304', | |
'geo_name_id' => '3425505', | |
'e164' => '299', | |
'dial_code' => '299', | |
'continent' => 'North America', | |
'capital' => 'Nuuk', | |
'timezone' => 'America/Godthab', | |
'currency' => 'Krone', | |
'lang_codes' => [ | |
'kl', | |
'da-GL', | |
'en', | |
], | |
'languages' => 'Greenlandic (East Inuit) (official), Danish (official), English', | |
], | |
[ | |
'id' => 83, | |
'name' => 'Grenada', | |
'iso2' => 'GD', | |
'iso3' => 'GRD', | |
'tld' => 'gd', | |
'fips' => 'GJ', | |
'iso' => '308', | |
'geo_name_id' => '3580239', | |
'e164' => '1', | |
'dial_code' => '1473', | |
'continent' => 'North America', | |
'capital' => 'St. George\'s', | |
'timezone' => 'America/Grenada', | |
'currency' => 'Dollar', | |
'lang_codes' => [ | |
'en-GD', | |
], | |
'languages' => 'English (official), French patois', | |
], | |
[ | |
'id' => 84, | |
'name' => 'Guam', | |
'iso2' => 'GU', | |
'iso3' => 'GUM', | |
'tld' => 'gu', | |
'fips' => 'GQ', | |
'iso' => '316', | |
'geo_name_id' => '4043988', | |
'e164' => '1', | |
'dial_code' => '1671', | |
'continent' => 'Oceania', | |
'capital' => 'Hagatna', | |
'timezone' => 'Pacific/Guam', | |
'currency' => 'Dollar', | |
'lang_codes' => [ | |
'en-GU', | |
'ch-GU', | |
], | |
'languages' => 'English 43.6%, Filipino 21.2%, Chamorro 17.8%, other Pacific island languages 10%, Asian languages 6.3%, other 1.1% (2010 est.)', | |
], | |
[ | |
'id' => 85, | |
'name' => 'Guatemala', | |
'iso2' => 'GT', | |
'iso3' => 'GTM', | |
'tld' => 'gt', | |
'fips' => 'GT', | |
'iso' => '320', | |
'geo_name_id' => '3595528', | |
'e164' => '502', | |
'dial_code' => '502', | |
'continent' => 'North America', | |
'capital' => 'Guatemala City', | |
'timezone' => 'America/Guatemala', | |
'currency' => 'Quetzal', | |
'lang_codes' => [ | |
'es-GT', | |
], | |
'languages' => 'Spanish (official) 60%, Amerindian languages 40%', | |
], | |
[ | |
'id' => 86, | |
'name' => 'Guernsey', | |
'iso2' => 'GG', | |
'iso3' => 'GGY', | |
'tld' => 'gg', | |
'fips' => 'GK', | |
'iso' => '831', | |
'geo_name_id' => '3042362', | |
'e164' => '44', | |
'dial_code' => '441481', | |
'continent' => 'Europe', | |
'capital' => 'St Peter Port', | |
'timezone' => 'Europe/Guernsey', | |
'currency' => 'Pound', | |
'lang_codes' => [ | |
'en', | |
'fr', | |
], | |
'languages' => 'English, French, Norman-French dialect spoken in country districts', | |
], | |
[ | |
'id' => 87, | |
'name' => 'Guinea', | |
'iso2' => 'GN', | |
'iso3' => 'GIN', | |
'tld' => 'gn', | |
'fips' => 'GV', | |
'iso' => '324', | |
'geo_name_id' => '2420477', | |
'e164' => '224', | |
'dial_code' => '224', | |
'continent' => 'Africa', | |
'capital' => 'Conakry', | |
'timezone' => 'Africa/Conakry', | |
'currency' => 'Franc', | |
'lang_codes' => [ | |
'fr-GN', | |
], | |
'languages' => 'French (official)', | |
], | |
[ | |
'id' => 88, | |
'name' => 'Guinea-Bissau', | |
'iso2' => 'GW', | |
'iso3' => 'GNB', | |
'tld' => 'gw', | |
'fips' => 'PU', | |
'iso' => '624', | |
'geo_name_id' => '2372248', | |
'e164' => '245', | |
'dial_code' => '245', | |
'continent' => 'Africa', | |
'capital' => 'Bissau', | |
'timezone' => 'Africa/Bissau', | |
'currency' => 'Franc', | |
'lang_codes' => [ | |
'pt-GW', | |
'pov', | |
], | |
'languages' => 'Portuguese (official), Crioulo, African languages', | |
], | |
[ | |
'id' => 89, | |
'name' => 'Guyana', | |
'iso2' => 'GY', | |
'iso3' => 'GUY', | |
'tld' => 'gy', | |
'fips' => 'GY', | |
'iso' => '328', | |
'geo_name_id' => '3378535', | |
'e164' => '592', | |
'dial_code' => '592', | |
'continent' => 'South America', | |
'capital' => 'Georgetown', | |
'timezone' => 'America/Guyana', | |
'currency' => 'Dollar', | |
'lang_codes' => [ | |
'en-GY', | |
], | |
'languages' => 'English, Amerindian dialects, Creole, Caribbean Hindustani (a dialect of Hindi), Urdu', | |
], | |
[ | |
'id' => 90, | |
'name' => 'Haiti', | |
'iso2' => 'HT', | |
'iso3' => 'HTI', | |
'tld' => 'ht', | |
'fips' => 'HA', | |
'iso' => '332', | |
'geo_name_id' => '3723988', | |
'e164' => '509', | |
'dial_code' => '509', | |
'continent' => 'North America', | |
'capital' => 'Port-au-Prince', | |
'timezone' => 'America/Port-au-Prince', | |
'currency' => 'Gourde', | |
'lang_codes' => [ | |
'ht', | |
'fr-HT', | |
], | |
'languages' => 'French (official), Creole (official)', | |
], | |
[ | |
'id' => 91, | |
'name' => 'Honduras', | |
'iso2' => 'HN', | |
'iso3' => 'HND', | |
'tld' => 'hn', | |
'fips' => 'HO', | |
'iso' => '340', | |
'geo_name_id' => '3608932', | |
'e164' => '504', | |
'dial_code' => '504', | |
'continent' => 'North America', | |
'capital' => 'Tegucigalpa', | |
'timezone' => 'America/Tegucigalpa', | |
'currency' => 'Lempira', | |
'lang_codes' => [ | |
'es-HN', | |
], | |
'languages' => 'Spanish (official), Amerindian dialects', | |
], | |
[ | |
'id' => 92, | |
'name' => 'Hong Kong', | |
'iso2' => 'HK', | |
'iso3' => 'HKG', | |
'tld' => 'hk', | |
'fips' => 'HK', | |
'iso' => '344', | |
'geo_name_id' => '1819730', | |
'e164' => '852', | |
'dial_code' => '852', | |
'continent' => 'Asia', | |
'capital' => 'Hong Kong', | |
'timezone' => 'Asia/Hong_Kong', | |
'currency' => 'Dollar', | |
'lang_codes' => [ | |
'zh-HK', | |
'yue', | |
'zh', | |
'en', | |
], | |
'languages' => 'Cantonese (official) 89.5%, English (official) 3.5%, Putonghua (Mandarin) 1.4%, other Chinese dialects 4%, other 1.6% (2011 est.)', | |
], | |
[ | |
'id' => 93, | |
'name' => 'Hungary', | |
'iso2' => 'HU', | |
'iso3' => 'HUN', | |
'tld' => 'hu', | |
'fips' => 'HU', | |
'iso' => '348', | |
'geo_name_id' => '719819', | |
'e164' => '36', | |
'dial_code' => '36', | |
'continent' => 'Europe', | |
'capital' => 'Budapest', | |
'timezone' => 'Europe/Budapest', | |
'currency' => 'Forint', | |
'lang_codes' => [ | |
'hu-HU', | |
], | |
'languages' => 'Hungarian (official) 99.6%, English 16%, German 11.2%, Russian 1.6%, Romanian 1.3%, French 1.2%, other 4.2%', | |
], | |
[ | |
'id' => 94, | |
'name' => 'Iceland', | |
'iso2' => 'IS', | |
'iso3' => 'ISL', | |
'tld' => 'is', | |
'fips' => 'IC', | |
'iso' => '352', | |
'geo_name_id' => '2629691', | |
'e164' => '354', | |
'dial_code' => '354', | |
'continent' => 'Europe', | |
'capital' => 'Reykjavik', | |
'timezone' => 'Atlantic/Reykjavik', | |
'currency' => 'Krona', | |
'lang_codes' => [ | |
'is', | |
'en', | |
'de', | |
'da', | |
'sv', | |
'no', | |
], | |
'languages' => 'Icelandic, English, Nordic languages, German widely spoken', | |
], | |
[ | |
'id' => 95, | |
'name' => 'India', | |
'iso2' => 'IN', | |
'iso3' => 'IND', | |
'tld' => 'in', | |
'fips' => 'IN', | |
'iso' => '356', | |
'geo_name_id' => '1269750', | |
'e164' => '91', | |
'dial_code' => '91', | |
'continent' => 'Asia', | |
'capital' => 'New Delhi', | |
'timezone' => 'Asia/Kolkata', | |
'currency' => 'Rupee', | |
'lang_codes' => [ | |
'en-IN', | |
'hi', | |
'bn', | |
'te', | |
'mr', | |
'ta', | |
'ur', | |
'gu', | |
'kn', | |
'ml', | |
'or', | |
'pa', | |
'as', | |
'bh', | |
'sat', | |
'ks', | |
'ne', | |
'sd', | |
'kok', | |
'doi', | |
'mni', | |
'sit', | |
'sa', | |
'fr', | |
'lus', | |
'inc', | |
], | |
'languages' => 'Hindi 41%, Bengali 8.1%, Telugu 7.2%, Marathi 7%, Tamil 5.9%, Urdu 5%, Gujarati 4.5%, Kannada 3.7%, Malayalam 3.2%, Oriya 3.2%, Punjabi 2.8%, Assamese 1.3%, Maithili 1.2%, other 5.9%', | |
], | |
[ | |
'id' => 96, | |
'name' => 'Indonesia', | |
'iso2' => 'ID', | |
'iso3' => 'IDN', | |
'tld' => 'id', | |
'fips' => 'ID', | |
'iso' => '360', | |
'geo_name_id' => '1643084', | |
'e164' => '62', | |
'dial_code' => '62', | |
'continent' => 'Asia', | |
'capital' => 'Jakarta', | |
'timezone' => 'Asia/Jakarta', | |
'currency' => 'Rupiah', | |
'lang_codes' => [ | |
'id', | |
'en', | |
'nl', | |
'jv', | |
], | |
'languages' => 'Bahasa Indonesia (official, modified form of Malay), English, Dutch, local dialects (of which the most widely spoken is Javanese)', | |
], | |
[ | |
'id' => 97, | |
'name' => 'Iran', | |
'iso2' => 'IR', | |
'iso3' => 'IRN', | |
'tld' => 'ir', | |
'fips' => 'IR', | |
'iso' => '364', | |
'geo_name_id' => '130758', | |
'e164' => '98', | |
'dial_code' => '98', | |
'continent' => 'Asia', | |
'capital' => 'Tehran', | |
'timezone' => 'Asia/Tehran', | |
'currency' => 'Rial', | |
'lang_codes' => [ | |
'fa-IR', | |
'ku', | |
], | |
'languages' => 'Persian (official) 53%, Azeri Turkic and Turkic dialects 18%, Kurdish 10%, Gilaki and Mazandarani 7%, Luri 6%, Balochi 2%, Arabic 2%, other 2%', | |
], | |
[ | |
'id' => 98, | |
'name' => 'Iraq', | |
'iso2' => 'IQ', | |
'iso3' => 'IRQ', | |
'tld' => 'iq', | |
'fips' => 'IZ', | |
'iso' => '368', | |
'geo_name_id' => '99237', | |
'e164' => '964', | |
'dial_code' => '964', | |
'continent' => 'Asia', | |
'capital' => 'Baghdad', | |
'timezone' => 'Asia/Baghdad', | |
'currency' => 'Dinar', | |
'lang_codes' => [ | |
'ar-IQ', | |
'ku', | |
'hy', | |
], | |
'languages' => 'Arabic (official), Kurdish (official), Turkmen (a Turkish dialect) and Assyrian (Neo-Aramaic) are official in areas where they constitute a majority of the population), Armenian', | |
], | |
[ | |
'id' => 99, | |
'name' => 'Ireland', | |
'iso2' => 'IE', | |
'iso3' => 'IRL', | |
'tld' => 'ie', | |
'fips' => 'EI', | |
'iso' => '372', | |
'geo_name_id' => '2963597', | |
'e164' => '353', | |
'dial_code' => '353', | |
'continent' => 'Europe', | |
'capital' => 'Dublin', | |
'timezone' => 'Europe/Dublin', | |
'currency' => 'Euro', | |
'lang_codes' => [ | |
'en-IE', | |
'ga-IE', | |
], | |
'languages' => 'English (official, the language generally used), Irish (Gaelic or Gaeilge) (official, spoken mainly in areas along the western coast)', | |
], | |
[ | |
'id' => 100, | |
'name' => 'Isle of Man', | |
'iso2' => 'IM', | |
'iso3' => 'IMN', | |
'tld' => 'im', | |
'fips' => 'IM', | |
'iso' => '833', | |
'geo_name_id' => '3042225', | |
'e164' => '44', | |
'dial_code' => '441624', | |
'continent' => 'Europe', | |
'capital' => 'Douglas, Isle of Man', | |
'timezone' => 'Europe/Isle_of_Man', | |
'currency' => 'Pound', | |
'lang_codes' => [ | |
'en', | |
'gv', | |
], | |
'languages' => 'English, Manx Gaelic (about 2% of the population has some knowledge)', | |
], | |
[ | |
'id' => 101, | |
'name' => 'Israel', | |
'iso2' => 'IL', | |
'iso3' => 'ISR', | |
'tld' => 'il', | |
'fips' => 'IS', | |
'iso' => '376', | |
'geo_name_id' => '294640', | |
'e164' => '972', | |
'dial_code' => '972', | |
'continent' => 'Asia', | |
'capital' => 'Jerusalem', | |
'timezone' => 'Asia/Jerusalem', | |
'currency' => 'Shekel', | |
'lang_codes' => [ | |
'he', | |
'ar-IL', | |
'en-IL', | |
], | |
'languages' => 'Hebrew (official), Arabic (used officially for Arab minority), English (most commonly used foreign language)', | |
], | |
[ | |
'id' => 102, | |
'name' => 'Italy', | |
'iso2' => 'IT', | |
'iso3' => 'ITA', | |
'tld' => 'it', | |
'fips' => 'IT', | |
'iso' => '380', | |
'geo_name_id' => '3175395', | |
'e164' => '39', | |
'dial_code' => '39', | |
'continent' => 'Europe', | |
'capital' => 'Rome', | |
'timezone' => 'Europe/Rome', | |
'currency' => 'Euro', | |
'lang_codes' => [ | |
'it-IT', | |
'de-IT', | |
'fr-IT', | |
'sc', | |
'ca', | |
'co', | |
'sl', | |
], | |
'languages' => 'Italian (official), German (parts of Trentino-Alto Adige region are predominantly German-speaking), French (small French-speaking minority in Valle d\'Aosta region), Slovene (Slovene-speaking minority in the Trieste-Gorizia area)', | |
], | |
[ | |
'id' => 103, | |
'name' => 'Ivory Coast', | |
'iso2' => 'CI', | |
'iso3' => 'CIV', | |
'tld' => 'ci', | |
'fips' => 'IV', | |
'iso' => '384', | |
'geo_name_id' => '2287781', | |
'e164' => '225', | |
'dial_code' => '225', | |
'continent' => 'Africa', | |
'capital' => 'Yamoussoukro', | |
'timezone' => 'Africa/Abidjan', | |
'currency' => 'Franc', | |
'lang_codes' => [ | |
'fr-CI', | |
], | |
'languages' => 'French (official), 60 native dialects of which Dioula is the most widely spoken', | |
], | |
[ | |
'id' => 104, | |
'name' => 'Jamaica', | |
'iso2' => 'JM', | |
'iso3' => 'JAM', | |
'tld' => 'jm', | |
'fips' => 'JM', | |
'iso' => '388', | |
'geo_name_id' => '3489940', | |
'e164' => '1', | |
'dial_code' => '1876', | |
'continent' => 'North America', | |
'capital' => 'Kingston', | |
'timezone' => 'America/Jamaica', | |
'currency' => 'Dollar', | |
'lang_codes' => [ | |
'en-JM', | |
], | |
'languages' => 'English, English patois', | |
], | |
[ | |
'id' => 105, | |
'name' => 'Japan', | |
'iso2' => 'JP', | |
'iso3' => 'JPN', | |
'tld' => 'jp', | |
'fips' => 'JA', | |
'iso' => '392', | |
'geo_name_id' => '1861060', | |
'e164' => '81', | |
'dial_code' => '81', | |
'continent' => 'Asia', | |
'capital' => 'Tokyo', | |
'timezone' => 'Asia/Tokyo', | |
'currency' => 'Yen', | |
'lang_codes' => [ | |
'ja', | |
], | |
'languages' => 'Japanese', | |
], | |
[ | |
'id' => 106, | |
'name' => 'Jersey', | |
'iso2' => 'JE', | |
'iso3' => 'JEY', | |
'tld' => 'je', | |
'fips' => 'JE', | |
'iso' => '832', | |
'geo_name_id' => '3042142', | |
'e164' => '44', | |
'dial_code' => '441534', | |
'continent' => 'Europe', | |
'capital' => 'Saint Helier', | |
'timezone' => 'Europe/Jersey', | |
'currency' => 'Pound', | |
'lang_codes' => [ | |
'en', | |
'pt', | |
], | |
'languages' => 'English 94.5% (official), Portuguese 4.6%, other 0.9% (2001 census)', | |
], | |
[ | |
'id' => 107, | |
'name' => 'Jordan', | |
'iso2' => 'JO', | |
'iso3' => 'JOR', | |
'tld' => 'jo', | |
'fips' => 'JO', | |
'iso' => '400', | |
'geo_name_id' => '248816', | |
'e164' => '962', | |
'dial_code' => '962', | |
'continent' => 'Asia', | |
'capital' => 'Amman', | |
'timezone' => 'Asia/Amman', | |
'currency' => 'Dinar', | |
'lang_codes' => [ | |
'ar-JO', | |
'en', | |
], | |
'languages' => 'Arabic (official), English (widely understood among upper and middle classes)', | |
], | |
[ | |
'id' => 108, | |
'name' => 'Kazakhstan', | |
'iso2' => 'KZ', | |
'iso3' => 'KAZ', | |
'tld' => 'kz', | |
'fips' => 'KZ', | |
'iso' => '398', | |
'geo_name_id' => '1522867', | |
'e164' => '7', | |
'dial_code' => '7', | |
'continent' => 'Asia', | |
'capital' => 'Astana', | |
'timezone' => 'Asia/Almaty', | |
'currency' => 'Tenge', | |
'lang_codes' => [ | |
'kk', | |
'ru', | |
], | |
'languages' => 'Kazakh (official, Qazaq) 64.4%, Russian (official, used in everyday business, designated the \'language of interethnic communication\') 95% (2001 est.)', | |
], | |
[ | |
'id' => 109, | |
'name' => 'Kenya', | |
'iso2' => 'KE', | |
'iso3' => 'KEN', | |
'tld' => 'ke', | |
'fips' => 'KE', | |
'iso' => '404', | |
'geo_name_id' => '192950', | |
'e164' => '254', | |
'dial_code' => '254', | |
'continent' => 'Africa', | |
'capital' => 'Nairobi', | |
'timezone' => 'Africa/Nairobi', | |
'currency' => 'Shilling', | |
'lang_codes' => [ | |
'en-KE', | |
'sw-KE', | |
], | |
'languages' => 'English (official), Kiswahili (official), numerous indigenous languages', | |
], | |
[ | |
'id' => 110, | |
'name' => 'Kiribati', | |
'iso2' => 'KI', | |
'iso3' => 'KIR', | |
'tld' => 'ki', | |
'fips' => 'KR', | |
'iso' => '296', | |
'geo_name_id' => '4030945', | |
'e164' => '686', | |
'dial_code' => '686', | |
'continent' => 'Oceania', | |
'capital' => 'Tarawa', | |
'timezone' => 'Pacific/Tarawa', | |
'currency' => 'Dollar', | |
'lang_codes' => [ | |
'en-KI', | |
'gil', | |
], | |
'languages' => 'I-Kiribati, English (official)', | |
], | |
[ | |
'id' => 111, | |
'name' => 'Kosovo', | |
'iso2' => 'XK', | |
'iso3' => 'XKX', | |
'tld' => null, | |
'fips' => 'KV', | |
'iso' => null, | |
'geo_name_id' => '831053', | |
'e164' => '383', | |
'dial_code' => '383', | |
'continent' => 'Europe', | |
'capital' => 'Pristina', | |
'timezone' => 'Europe/Podgorica', | |
'currency' => 'Euro', | |
'lang_codes' => [ | |
'sq', | |
'sr', | |
], | |
'languages' => 'Albanian (official), Serbian (official), Bosnian, Turkish, Roma', | |
], | |
[ | |
'id' => 112, | |
'name' => 'Kuwait', | |
'iso2' => 'KW', | |
'iso3' => 'KWT', | |
'tld' => 'kw', | |
'fips' => 'KU', | |
'iso' => '414', | |
'geo_name_id' => '285570', | |
'e164' => '965', | |
'dial_code' => '965', | |
'continent' => 'Asia', | |
'capital' => 'Kuwait City', | |
'timezone' => 'Asia/Kuwait', | |
'currency' => 'Dinar', | |
'lang_codes' => [ | |
'ar-KW', | |
'en', | |
], | |
'languages' => 'Arabic (official), English widely spoken', | |
], | |
[ | |
'id' => 113, | |
'name' => 'Kyrgyzstan', | |
'iso2' => 'KG', | |
'iso3' => 'KGZ', | |
'tld' => 'kg', | |
'fips' => 'KG', | |
'iso' => '417', | |
'geo_name_id' => '1527747', | |
'e164' => '996', | |
'dial_code' => '996', | |
'continent' => 'Asia', | |
'capital' => 'Bishkek', | |
'timezone' => 'Asia/Bishkek', | |
'currency' => 'Som', | |
'lang_codes' => [ | |
'ky', | |
'uz', | |
'ru', | |
], | |
'languages' => 'Kyrgyz (official) 64.7%, Uzbek 13.6%, Russian (official) 12.5%, Dungun 1%, other 8.2% (1999 census)', | |
], | |
[ | |
'id' => 114, | |
'name' => 'Laos', | |
'iso2' => 'LA', | |
'iso3' => 'LAO', | |
'tld' => 'la', | |
'fips' => 'LA', | |
'iso' => '418', | |
'geo_name_id' => '1655842', | |
'e164' => '856', | |
'dial_code' => '856', | |
'continent' => 'Asia', | |
'capital' => 'Vientiane', | |
'timezone' => 'Asia/Vientiane', | |
'currency' => 'Kip', | |
'lang_codes' => [ | |
'lo', | |
'fr', | |
'en', | |
], | |
'languages' => 'Lao (official), French, English, various ethnic languages', | |
], | |
[ | |
'id' => 115, | |
'name' => 'Latvia', | |
'iso2' => 'LV', | |
'iso3' => 'LVA', | |
'tld' => 'lv', | |
'fips' => 'LG', | |
'iso' => '428', | |
'geo_name_id' => '458258', | |
'e164' => '371', | |
'dial_code' => '371', | |
'continent' => 'Europe', | |
'capital' => 'Riga', | |
'timezone' => 'Europe/Riga', | |
'currency' => 'Euro', | |
'lang_codes' => [ | |
'lv', | |
'ru', | |
'lt', | |
], | |
'languages' => 'Latvian (official) 56.3%, Russian 33.8%, other 0.6% (includes Polish, Ukrainian, and Belarusian), unspecified 9.4% (2011 est.)', | |
], | |
[ | |
'id' => 116, | |
'name' => 'Lebanon', | |
'iso2' => 'LB', | |
'iso3' => 'LBN', | |
'tld' => 'lb', | |
'fips' => 'LE', | |
'iso' => '422', | |
'geo_name_id' => '272103', | |
'e164' => '961', | |
'dial_code' => '961', | |
'continent' => 'Asia', | |
'capital' => 'Beirut', | |
'timezone' => 'Asia/Beirut', | |
'currency' => 'Pound', | |
'lang_codes' => [ | |
'ar-LB', | |
'fr-LB', | |
'en', | |
'hy', | |
], | |
'languages' => 'Arabic (official), French, English, Armenian', | |
], | |
[ | |
'id' => 117, | |
'name' => 'Lesotho', | |
'iso2' => 'LS', | |
'iso3' => 'LSO', | |
'tld' => 'ls', | |
'fips' => 'LT', | |
'iso' => '426', | |
'geo_name_id' => '932692', | |
'e164' => '266', | |
'dial_code' => '266', | |
'continent' => 'Africa', | |
'capital' => 'Maseru', | |
'timezone' => 'Africa/Maseru', | |
'currency' => 'Loti', | |
'lang_codes' => [ | |
'en-LS', | |
'st', | |
'zu', | |
'xh', | |
], | |
'languages' => 'Sesotho (official) (southern Sotho), English (official), Zulu, Xhosa', | |
], | |
[ | |
'id' => 118, | |
'name' => 'Liberia', | |
'iso2' => 'LR', | |
'iso3' => 'LBR', | |
'tld' => 'lr', | |
'fips' => 'LI', | |
'iso' => '430', | |
'geo_name_id' => '2275384', | |
'e164' => '231', | |
'dial_code' => '231', | |
'continent' => 'Africa', | |
'capital' => 'Monrovia', | |
'timezone' => 'Africa/Monrovia', | |
'currency' => 'Dollar', | |
'lang_codes' => [ | |
'en-LR', | |
], | |
'languages' => 'English 20% (official), some 20 ethnic group languages few of which can be written or used in correspondence', | |
], | |
[ | |
'id' => 119, | |
'name' => 'Libya', | |
'iso2' => 'LY', | |
'iso3' => 'LBY', | |
'tld' => 'ly', | |
'fips' => 'LY', | |
'iso' => '434', | |
'geo_name_id' => '2215636', | |
'e164' => '218', | |
'dial_code' => '218', | |
'continent' => 'Africa', | |
'capital' => 'Tripolis', | |
'timezone' => 'Africa/Tripoli', | |
'currency' => 'Dinar', | |
'lang_codes' => [ | |
'ar-LY', | |
'it', | |
'en', | |
], | |
'languages' => 'Arabic (official), Italian, English (all widely understood in the major cities); Berber (Nafusi, Ghadamis, Suknah, Awjilah, Tamasheq)', | |
], | |
[ | |
'id' => 120, | |
'name' => 'Liechtenstein', | |
'iso2' => 'LI', | |
'iso3' => 'LIE', | |
'tld' => 'li', | |
'fips' => 'LS', | |
'iso' => '438', | |
'geo_name_id' => '3042058', | |
'e164' => '423', | |
'dial_code' => '423', | |
'continent' => 'Europe', | |
'capital' => 'Vaduz', | |
'timezone' => 'Europe/Vaduz', | |
'currency' => 'Franc', | |
'lang_codes' => [ | |
'de-LI', | |
], | |
'languages' => 'German 94.5% (official) (Alemannic is the main dialect), Italian 1.1%, other 4.3% (2010 est.)', | |
], | |
[ | |
'id' => 121, | |
'name' => 'Lithuania', | |
'iso2' => 'LT', | |
'iso3' => 'LTU', | |
'tld' => 'lt', | |
'fips' => 'LH', | |
'iso' => '440', | |
'geo_name_id' => '597427', | |
'e164' => '370', | |
'dial_code' => '370', | |
'continent' => 'Europe', | |
'capital' => 'Vilnius', | |
'timezone' => 'Europe/Vilnius', | |
'currency' => 'Euro', | |
'lang_codes' => [ | |
'lt', | |
'ru', | |
'pl', | |
], | |
'languages' => 'Lithuanian (official) 82%, Russian 8%, Polish 5.6%, other 0.9%, unspecified 3.5% (2011 est.)', | |
], | |
[ | |
'id' => 122, | |
'name' => 'Luxembourg', | |
'iso2' => 'LU', | |
'iso3' => 'LUX', | |
'tld' => 'lu', | |
'fips' => 'LU', | |
'iso' => '442', | |
'geo_name_id' => '2960313', | |
'e164' => '352', | |
'dial_code' => '352', | |
'continent' => 'Europe', | |
'capital' => 'Luxembourg', | |
'timezone' => 'Europe/Luxembourg', | |
'currency' => 'Euro', | |
'lang_codes' => [ | |
'lb', | |
'de-LU', | |
'fr-LU', | |
], | |
'languages' => 'Luxembourgish (official administrative language and national language (spoken vernacular)), French (official administrative language), German (official administrative language)', | |
], | |
[ | |
'id' => 123, | |
'name' => 'Macau', | |
'iso2' => 'MO', | |
'iso3' => 'MAC', | |
'tld' => 'mo', | |
'fips' => 'MC', | |
'iso' => '446', | |
'geo_name_id' => '1821275', | |
'e164' => '853', | |
'dial_code' => '853', | |
'continent' => 'Asia', | |
'capital' => 'Macao', | |
'timezone' => 'Asia/Macau', | |
'currency' => 'Pataca', | |
'lang_codes' => [ | |
'zh', | |
'zh-MO', | |
'pt', | |
], | |
'languages' => 'Cantonese 83.3%, Mandarin 5%, Hokkien 3.7%, English 2.3%, other Chinese dialects 2%, Tagalog 1.7%, Portuguese 0.7%, other 1.3%', | |
], | |
[ | |
'id' => 124, | |
'name' => 'Macedonia', | |
'iso2' => 'MK', | |
'iso3' => 'MKD', | |
'tld' => 'mk', | |
'fips' => 'MK', | |
'iso' => '807', | |
'geo_name_id' => '718075', | |
'e164' => '389', | |
'dial_code' => '389', | |
'continent' => 'Europe', | |
'capital' => 'Skopje', | |
'timezone' => 'Europe/Skopje', | |
'currency' => 'Denar', | |
'lang_codes' => [ | |
'mk', | |
'sq', | |
'tr', | |
'rmm', | |
'sr', | |
], | |
'languages' => 'Macedonian (official) 66.5%, Albanian (official) 25.1%, Turkish 3.5%, Roma 1.9%, Serbian 1.2%, other 1.8% (2002 census)', | |
], | |
[ | |
'id' => 125, | |
'name' => 'Madagascar', | |
'iso2' => 'MG', | |
'iso3' => 'MDG', | |
'tld' => 'mg', | |
'fips' => 'MA', | |
'iso' => '450', | |
'geo_name_id' => '1062947', | |
'e164' => '261', | |
'dial_code' => '261', | |
'continent' => 'Africa', | |
'capital' => 'Antananarivo', | |
'timezone' => 'Indian/Antananarivo', | |
'currency' => 'Ariary', | |
'lang_codes' => [ | |
'fr-MG', | |
'mg', | |
], | |
'languages' => 'French (official), Malagasy (official), English', | |
], | |
[ | |
'id' => 126, | |
'name' => 'Malawi', | |
'iso2' => 'MW', | |
'iso3' => 'MWI', | |
'tld' => 'mw', | |
'fips' => 'MI', | |
'iso' => '454', | |
'geo_name_id' => '927384', | |
'e164' => '265', | |
'dial_code' => '265', | |
'continent' => 'Africa', | |
'capital' => 'Lilongwe', | |
'timezone' => 'Africa/Blantyre', | |
'currency' => 'Kwacha', | |
'lang_codes' => [ | |
'ny', | |
'yao', | |
'tum', | |
'swk', | |
], | |
'languages' => 'English (official), Chichewa (common), Chinyanja, Chiyao, Chitumbuka, Chilomwe, Chinkhonde, Chingoni, Chisena, Chitonga, Chinyakyusa, Chilambya', | |
], | |
[ | |
'id' => 127, | |
'name' => 'Malaysia', | |
'iso2' => 'MY', | |
'iso3' => 'MYS', | |
'tld' => 'my', | |
'fips' => 'MY', | |
'iso' => '458', | |
'geo_name_id' => '1733045', | |
'e164' => '60', | |
'dial_code' => '60', | |
'continent' => 'Asia', | |
'capital' => 'Kuala Lumpur', | |
'timezone' => 'Asia/Kuala_Lumpur', | |
'currency' => 'Ringgit', | |
'lang_codes' => [ | |
'ms-MY', | |
'en', | |
'zh', | |
'ta', | |
'te', | |
'ml', | |
'pa', | |
'th', | |
], | |
'languages' => 'Bahasa Malaysia (official), English, Chinese (Cantonese, Mandarin, Hokkien, Hakka, Hainan, Foochow), Tamil, Telugu, Malayalam, Panjabi, Thai', | |
], | |
[ | |
'id' => 128, | |
'name' => 'Maldives', | |
'iso2' => 'MV', | |
'iso3' => 'MDV', | |
'tld' => 'mv', | |
'fips' => 'MV', | |
'iso' => '462', | |
'geo_name_id' => '1282028', | |
'e164' => '960', | |
'dial_code' => '960', | |
'continent' => 'Asia', | |
'capital' => 'Male', | |
'timezone' => 'Indian/Maldives', | |
'currency' => 'Rufiyaa', | |
'lang_codes' => [ | |
'dv', | |
'en', | |
], | |
'languages' => 'Dhivehi (official, dialect of Sinhala, script derived from Arabic), English (spoken by most government officials)', | |
], | |
[ | |
'id' => 129, | |
'name' => 'Mali', | |
'iso2' => 'ML', | |
'iso3' => 'MLI', | |
'tld' => 'ml', | |
'fips' => 'ML', | |
'iso' => '466', | |
'geo_name_id' => '2453866', | |
'e164' => '223', | |
'dial_code' => '223', | |
'continent' => 'Africa', | |
'capital' => 'Bamako', | |
'timezone' => 'Africa/Bamako', | |
'currency' => 'Franc', | |
'lang_codes' => [ | |
'fr-ML', | |
'bm', | |
], | |
'languages' => 'French (official), Bambara 46.3%, Peul/foulfoulbe 9.4%, Dogon 7.2%, Maraka/soninke 6.4%, Malinke 5.6%, Sonrhai/djerma 5.6%, Minianka 4.3%, Tamacheq 3.5%, Senoufo 2.6%, unspecified 0.6%, other 8.5%', | |
], | |
[ | |
'id' => 130, | |
'name' => 'Malta', | |
'iso2' => 'MT', | |
'iso3' => 'MLT', | |
'tld' => 'mt', | |
'fips' => 'MT', | |
'iso' => '470', | |
'geo_name_id' => '2562770', | |
'e164' => '356', | |
'dial_code' => '356', | |
'continent' => 'Europe', | |
'capital' => 'Valletta', | |
'timezone' => 'Europe/Malta', | |
'currency' => 'Euro', | |
'lang_codes' => [ | |
'mt', | |
'en-MT', | |
], | |
'languages' => 'Maltese (official) 90.1%, English (official) 6%, multilingual 3%, other 0.9% (2005 est.)', | |
], | |
[ | |
'id' => 131, | |
'name' => 'Marshall Islands', | |
'iso2' => 'MH', | |
'iso3' => 'MHL', | |
'tld' => 'mh', | |
'fips' => 'RM', | |
'iso' => '584', | |
'geo_name_id' => '2080185', | |
'e164' => '692', | |
'dial_code' => '692', | |
'continent' => 'Oceania', | |
'capital' => 'Majuro', | |
'timezone' => 'Pacific/Majuro', | |
'currency' => 'Dollar', | |
'lang_codes' => [ | |
'mh', | |
'en-MH', | |
], | |
'languages' => 'Marshallese (official) 98.2%, other languages 1.8% (1999 census)', | |
], | |
[ | |
'id' => 132, | |
'name' => 'Mauritania', | |
'iso2' => 'MR', | |
'iso3' => 'MRT', | |
'tld' => 'mr', | |
'fips' => 'MR', | |
'iso' => '478', | |
'geo_name_id' => '2378080', | |
'e164' => '222', | |
'dial_code' => '222', | |
'continent' => 'Africa', | |
'capital' => 'Nouakchott', | |
'timezone' => 'Africa/Nouakchott', | |
'currency' => 'Ouguiya', | |
'lang_codes' => [ | |
'ar-MR', | |
'fuc', | |
'snk', | |
'fr', | |
'mey', | |
'wo', | |
], | |
'languages' => 'Arabic (official and national), Pulaar, Soninke, Wolof (all national languages), French, Hassaniya (a variety of Arabic)', | |
], | |
[ | |
'id' => 133, | |
'name' => 'Mauritius', | |
'iso2' => 'MU', | |
'iso3' => 'MUS', | |
'tld' => 'mu', | |
'fips' => 'MP', | |
'iso' => '480', | |
'geo_name_id' => '934292', | |
'e164' => '230', | |
'dial_code' => '230', | |
'continent' => 'Africa', | |
'capital' => 'Port Louis', | |
'timezone' => 'Indian/Mauritius', | |
'currency' => 'Rupee', | |
'lang_codes' => [ | |
'en-MU', | |
'bho', | |
'fr', | |
], | |
'languages' => 'Creole 86.5%, Bhojpuri 5.3%, French 4.1%, two languages 1.4%, other 2.6% (includes English, the official language, which is spoken by less than 1% of the population), unspecified 0.1% (2011 est.)', | |
], | |
[ | |
'id' => 134, | |
'name' => 'Mayotte', | |
'iso2' => 'YT', | |
'iso3' => 'MYT', | |
'tld' => 'yt', | |
'fips' => 'MF', | |
'iso' => '175', | |
'geo_name_id' => '1024031', | |
'e164' => '262', | |
'dial_code' => '262', | |
'continent' => 'Africa', | |
'capital' => 'Mamoudzou', | |
'timezone' => 'Indian/Mayotte', | |
'currency' => 'Euro', | |
'lang_codes' => [ | |
'fr-YT', | |
], | |
'languages' => 'French', | |
], | |
[ | |
'id' => 135, | |
'name' => 'Mexico', | |
'iso2' => 'MX', | |
'iso3' => 'MEX', | |
'tld' => 'mx', | |
'fips' => 'MX', | |
'iso' => '484', | |
'geo_name_id' => '3996063', | |
'e164' => '52', | |
'dial_code' => '52', | |
'continent' => 'North America', | |
'capital' => 'Mexico City', | |
'timezone' => 'America/Mexico_City', | |
'currency' => 'Peso', | |
'lang_codes' => [ | |
'es-MX', | |
], | |
'languages' => 'Spanish only 92.7%, Spanish and indigenous languages 5.7%, indigenous only 0.8%, unspecified 0.8%', | |
], | |
[ | |
'id' => 136, | |
'name' => 'Micronesia', | |
'iso2' => 'FM', | |
'iso3' => 'FSM', | |
'tld' => 'fm', | |
'fips' => 'FM', | |
'iso' => '583', | |
'geo_name_id' => '2081918', | |
'e164' => '691', | |
'dial_code' => '691', | |
'continent' => 'Oceania', | |
'capital' => 'Palikir', | |
'timezone' => 'Pacific/Pohnpei', | |
'currency' => 'Dollar', | |
'lang_codes' => [ | |
'en-FM', | |
'chk', | |
'pon', | |
'yap', | |
'kos', | |
'uli', | |
'woe', | |
'nkr', | |
'kpg', | |
], | |
'languages' => 'English (official and common language), Chuukese, Kosrean, Pohnpeian, Yapese, Ulithian, Woleaian, Nukuoro, Kapingamarangi', | |
], | |
[ | |
'id' => 137, | |
'name' => 'Moldova', | |
'iso2' => 'MD', | |
'iso3' => 'MDA', | |
'tld' => 'md', | |
'fips' => 'MD', | |
'iso' => '498', | |
'geo_name_id' => '617790', | |
'e164' => '373', | |
'dial_code' => '373', | |
'continent' => 'Europe', | |
'capital' => 'Chisinau', | |
'timezone' => 'Europe/Chisinau', | |
'currency' => 'Leu', | |
'lang_codes' => [ | |
'ro', | |
'ru', | |
'gag', | |
'tr', | |
], | |
'languages' => 'Moldovan 58.8% (official; virtually the same as the Romanian language), Romanian 16.4%, Russian 16%, Ukrainian 3.8%, Gagauz 3.1% (a Turkish language), Bulgarian 1.1%, other 0.3%, unspecified 0.4%', | |
], | |
[ | |
'id' => 138, | |
'name' => 'Monaco', | |
'iso2' => 'MC', | |
'iso3' => 'MCO', | |
'tld' => 'mc', | |
'fips' => 'MN', | |
'iso' => '492', | |
'geo_name_id' => '2993457', | |
'e164' => '377', | |
'dial_code' => '377', | |
'continent' => 'Europe', | |
'capital' => 'Monaco', | |
'timezone' => 'Europe/Monaco', | |
'currency' => 'Euro', | |
'lang_codes' => [ | |
'fr-MC', | |
'en', | |
'it', | |
], | |
'languages' => 'French (official), English, Italian, Monegasque', | |
], | |
[ | |
'id' => 139, | |
'name' => 'Mongolia', | |
'iso2' => 'MN', | |
'iso3' => 'MNG', | |
'tld' => 'mn', | |
'fips' => 'MG', | |
'iso' => '496', | |
'geo_name_id' => '2029969', | |
'e164' => '976', | |
'dial_code' => '976', | |
'continent' => 'Asia', | |
'capital' => 'Ulan Bator', | |
'timezone' => 'Asia/Ulaanbaatar', | |
'currency' => 'Tugrik', | |
'lang_codes' => [ | |
'mn', | |
'ru', | |
], | |
'languages' => 'Khalkha Mongol 90% (official), Turkic, Russian (1999)', | |
], | |
[ | |
'id' => 140, | |
'name' => 'Montenegro', | |
'iso2' => 'ME', | |
'iso3' => 'MNE', | |
'tld' => 'me', | |
'fips' => 'MJ', | |
'iso' => '499', | |
'geo_name_id' => '3194884', | |
'e164' => '382', | |
'dial_code' => '382', | |
'continent' => 'Europe', | |
'capital' => 'Podgorica', | |
'timezone' => 'Europe/Podgorica', | |
'currency' => 'Euro', | |
'lang_codes' => [ | |
'sr', | |
'hu', | |
'bs', | |
'sq', | |
'hr', | |
'rom', | |
], | |
'languages' => 'Serbian 42.9%, Montenegrin (official) 37%, Bosnian 5.3%, Albanian 5.3%, Serbo-Croat 2%, other 3.5%, unspecified 4% (2011 est.)', | |
], | |
[ | |
'id' => 141, | |
'name' => 'Montserrat', | |
'iso2' => 'MS', | |
'iso3' => 'MSR', | |
'tld' => 'ms', | |
'fips' => 'MH', | |
'iso' => '500', | |
'geo_name_id' => '3578097', | |
'e164' => '1', | |
'dial_code' => '1664', | |
'continent' => 'North America', | |
'capital' => 'Plymouth', | |
'timezone' => 'America/Montserrat', | |
'currency' => 'Dollar', | |
'lang_codes' => [ | |
'en-MS', | |
], | |
'languages' => 'English', | |
], | |
[ | |
'id' => 142, | |
'name' => 'Morocco', | |
'iso2' => 'MA', | |
'iso3' => 'MAR', | |
'tld' => 'ma', | |
'fips' => 'MO', | |
'iso' => '504', | |
'geo_name_id' => '2542007', | |
'e164' => '212', | |
'dial_code' => '212', | |
'continent' => 'Africa', | |
'capital' => 'Rabat', | |
'timezone' => 'Africa/Casablanca', | |
'currency' => 'Dirham', | |
'lang_codes' => [ | |
'ar-MA', | |
'fr', | |
], | |
'languages' => 'Arabic (official), Berber languages (Tamazight (official), Tachelhit, Tarifit), French (often the language of business, government, and diplomacy)', | |
], | |
[ | |
'id' => 143, | |
'name' => 'Mozambique', | |
'iso2' => 'MZ', | |
'iso3' => 'MOZ', | |
'tld' => 'mz', | |
'fips' => 'MZ', | |
'iso' => '508', | |
'geo_name_id' => '1036973', | |
'e164' => '258', | |
'dial_code' => '258', | |
'continent' => 'Africa', | |
'capital' => 'Maputo', | |
'timezone' => 'Africa/Maputo', | |
'currency' => 'Metical', | |
'lang_codes' => [ | |
'pt-MZ', | |
'vmw', | |
], | |
'languages' => 'Emakhuwa 25.3%, Portuguese (official) 10.7%, Xichangana 10.3%, Cisena 7.5%, Elomwe 7%, Echuwabo 5.1%, other Mozambican languages 30.1%, other 4% (1997 census)', | |
], | |
[ | |
'id' => 144, | |
'name' => 'Myanmar', | |
'iso2' => 'MM', | |
'iso3' => 'MMR', | |
'tld' => 'mm', | |
'fips' => 'BM', | |
'iso' => '104', | |
'geo_name_id' => '1327865', | |
'e164' => '95', | |
'dial_code' => '95', | |
'continent' => 'Asia', | |
'capital' => 'Nay Pyi Taw', | |
'timezone' => 'Asia/Rangoon', | |
'currency' => 'Kyat', | |
'lang_codes' => [ | |
'my', | |
], | |
'languages' => 'Burmese (official)', | |
], | |
[ | |
'id' => 145, | |
'name' => 'Namibia', | |
'iso2' => 'NA', | |
'iso3' => 'NAM', | |
'tld' => 'na', | |
'fips' => 'WA', | |
'iso' => '516', | |
'geo_name_id' => '3355338', | |
'e164' => '264', | |
'dial_code' => '264', | |
'continent' => 'Africa', | |
'capital' => 'Windhoek', | |
'timezone' => 'Africa/Windhoek', | |
'currency' => 'Dollar', | |
'lang_codes' => [ | |
'en-NA', | |
'af', | |
'de', | |
'hz', | |
'naq', | |
], | |
'languages' => 'Oshiwambo languages 48.9%, Nama/Damara 11.3%, Afrikaans 10.4% (common language of most of the population and about 60% of the white population), Otjiherero languages 8.6%, Kavango languages 8.5%, Caprivi languages 4.8%, English (official) 3.4%, other African languages 2.3%, other 1.7%', | |
], | |
[ | |
'id' => 146, | |
'name' => 'Nauru', | |
'iso2' => 'NR', | |
'iso3' => 'NRU', | |
'tld' => 'nr', | |
'fips' => 'NR', | |
'iso' => '520', | |
'geo_name_id' => '2110425', | |
'e164' => '674', | |
'dial_code' => '674', | |
'continent' => 'Oceania', | |
'capital' => 'Yaren', | |
'timezone' => 'Pacific/Nauru', | |
'currency' => 'Dollar', | |
'lang_codes' => [ | |
'na', | |
'en-NR', | |
], | |
'languages' => 'Nauruan 93% (official, a distinct Pacific Island language), English 2% (widely understood, spoken, and used for most government and commercial purposes), other 5% (includes I-Kiribati 2% and Chinese 2%)', | |
], | |
[ | |
'id' => 147, | |
'name' => 'Nepal', | |
'iso2' => 'NP', | |
'iso3' => 'NPL', | |
'tld' => 'np', | |
'fips' => 'NP', | |
'iso' => '524', | |
'geo_name_id' => '1282988', | |
'e164' => '977', | |
'dial_code' => '977', | |
'continent' => 'Asia', | |
'capital' => 'Kathmandu', | |
'timezone' => 'Asia/Kathmandu', | |
'currency' => 'Rupee', | |
'lang_codes' => [ | |
'ne', | |
'en', | |
], | |
'languages' => 'Nepali (official) 44.6%, Maithali 11.7%, Bhojpuri 6%, Tharu 5.8%, Tamang 5.1%, Newar 3.2%, Magar 3%, Bajjika 3%, Urdu 2.6%, Avadhi 1.9%, Limbu 1.3%, Gurung 1.2%, other 10.4%, unspecified 0.2%', | |
], | |
[ | |
'id' => 148, | |
'name' => 'Netherlands', | |
'iso2' => 'NL', | |
'iso3' => 'NLD', | |
'tld' => 'nl', | |
'fips' => 'NL', | |
'iso' => '528', | |
'geo_name_id' => '2750405', | |
'e164' => '31', | |
'dial_code' => '31', | |
'continent' => 'Europe', | |
'capital' => 'Amsterdam', | |
'timezone' => 'Europe/Amsterdam', | |
'currency' => 'Euro', | |
'lang_codes' => [ | |
'nl-NL', | |
'fy-NL', | |
], | |
'languages' => 'Dutch (official)', | |
], | |
[ | |
'id' => 149, | |
'name' => 'Netherlands Antilles', | |
'iso2' => 'AN', | |
'iso3' => 'ANT', | |
'tld' => 'an', | |
'fips' => 'NT', | |
'iso' => '530', | |
'geo_name_id' => null, | |
'e164' => '599', | |
'dial_code' => '599', | |
'continent' => 'North America', | |
'capital' => 'Willemstad', | |
'timezone' => 'America/Curacao', | |
'currency' => 'Guilder', | |
'lang_codes' => [ | |
'nl-AN', | |
'en', | |
'es', | |
], | |
'languages' => 'Dutch, English, Spanish', | |
], | |
[ | |
'id' => 150, | |
'name' => 'New Caledonia', | |
'iso2' => 'NC', | |
'iso3' => 'NCL', | |
'tld' => 'nc', | |
'fips' => 'NC', | |
'iso' => '540', | |
'geo_name_id' => '2139685', | |
'e164' => '687', | |
'dial_code' => '687', | |
'continent' => 'Oceania', | |
'capital' => 'Noumea', | |
'timezone' => 'Pacific/Noumea', | |
'currency' => 'Franc', | |
'lang_codes' => [ | |
'fr-NC', | |
], | |
'languages' => 'French (official), 33 Melanesian-Polynesian dialects', | |
], | |
[ | |
'id' => 151, | |
'name' => 'New Zealand', | |
'iso2' => 'NZ', | |
'iso3' => 'NZL', | |
'tld' => 'nz', | |
'fips' => 'NZ', | |
'iso' => '554', | |
'geo_name_id' => '2186224', | |
'e164' => '64', | |
'dial_code' => '64', | |
'continent' => 'Oceania', | |
'capital' => 'Wellington', | |
'timezone' => 'Pacific/Auckland', | |
'currency' => 'Dollar', | |
'lang_codes' => [ | |
'en-NZ', | |
'mi', | |
], | |
'languages' => 'English (de facto official) 89.8%, Maori (de jure official) 3.5%, Samoan 2%, Hindi 1.6%, French 1.2%, Northern Chinese 1.2%, Yue 1%, Other or not stated 20.5%, New Zealand Sign Language (de jure official)', | |
], | |
[ | |
'id' => 152, | |
'name' => 'Nicaragua', | |
'iso2' => 'NI', | |
'iso3' => 'NIC', | |
'tld' => 'ni', | |
'fips' => 'NU', | |
'iso' => '558', | |
'geo_name_id' => '3617476', | |
'e164' => '505', | |
'dial_code' => '505', | |
'continent' => 'North America', | |
'capital' => 'Managua', | |
'timezone' => 'America/Managua', | |
'currency' => 'Cordoba', | |
'lang_codes' => [ | |
'es-NI', | |
'en', | |
], | |
'languages' => 'Spanish (official) 95.3%, Miskito 2.2%, Mestizo of the Caribbean coast 2%, other 0.5%', | |
], | |
[ | |
'id' => 153, | |
'name' => 'Niger', | |
'iso2' => 'NE', | |
'iso3' => 'NER', | |
'tld' => 'ne', | |
'fips' => 'NG', | |
'iso' => '562', | |
'geo_name_id' => '2440476', | |
'e164' => '227', | |
'dial_code' => '227', | |
'continent' => 'Africa', | |
'capital' => 'Niamey', | |
'timezone' => 'Africa/Niamey', | |
'currency' => 'Franc', | |
'lang_codes' => [ | |
'fr-NE', | |
'ha', | |
'kr', | |
'dje', | |
], | |
'languages' => 'French (official), Hausa, Djerma', | |
], | |
[ | |
'id' => 154, | |
'name' => 'Nigeria', | |
'iso2' => 'NG', | |
'iso3' => 'NGA', | |
'tld' => 'ng', | |
'fips' => 'NI', | |
'iso' => '566', | |
'geo_name_id' => '2328926', | |
'e164' => '234', | |
'dial_code' => '234', | |
'continent' => 'Africa', | |
'capital' => 'Abuja', | |
'timezone' => 'Africa/Lagos', | |
'currency' => 'Naira', | |
'lang_codes' => [ | |
'en-NG', | |
'ha', | |
'yo', | |
'ig', | |
'ff', | |
], | |
'languages' => 'English (official), Hausa, Yoruba, Igbo (Ibo), Fulani, over 500 additional indigenous languages', | |
], | |
[ | |
'id' => 155, | |
'name' => 'Niue', | |
'iso2' => 'NU', | |
'iso3' => 'NIU', | |
'tld' => 'nu', | |
'fips' => 'NE', | |
'iso' => '570', | |
'geo_name_id' => '4036232', | |
'e164' => '683', | |
'dial_code' => '683', | |
'continent' => 'Oceania', | |
'capital' => 'Alofi', | |
'timezone' => 'Pacific/Niue', | |
'currency' => 'Dollar', | |
'lang_codes' => [ | |
'niu', | |
'en-NU', | |
], | |
'languages' => 'Niuean (official) 46% (a Polynesian language closely related to Tongan and Samoan), Niuean and English 32%, English (official) 11%, Niuean and others 5%, other 6% (2011 est.)', | |
], | |
[ | |
'id' => 156, | |
'name' => 'North Korea', | |
'iso2' => 'KP', | |
'iso3' => 'PRK', | |
'tld' => 'kp', | |
'fips' => 'KN', | |
'iso' => '408', | |
'geo_name_id' => '1873107', | |
'e164' => '850', | |
'dial_code' => '850', | |
'continent' => 'Asia', | |
'capital' => 'Pyongyang', | |
'timezone' => 'Asia/Pyongyang', | |
'currency' => 'Won', | |
'lang_codes' => [ | |
'ko-KP', | |
], | |
'languages' => 'Korean', | |
], | |
[ | |
'id' => 157, | |
'name' => 'Northern Mariana Islands', | |
'iso2' => 'MP', | |
'iso3' => 'MNP', | |
'tld' => 'mp', | |
'fips' => 'CQ', | |
'iso' => '580', | |
'geo_name_id' => '4041468', | |
'e164' => '1', | |
'dial_code' => '1670', | |
'continent' => 'Oceania', | |
'capital' => 'Saipan', | |
'timezone' => 'Pacific/Saipan', | |
'currency' => 'Dollar', | |
'lang_codes' => [ | |
'fil', | |
'tl', | |
'zh', | |
'ch-MP', | |
'en-MP', | |
], | |
'languages' => 'Philippine languages 32.8%, Chamorro (official) 24.1%, English (official) 17%, other Pacific island languages 10.1%, Chinese 6.8%, other Asian languages 7.3%, other 1.9% (2010 est.)', | |
], | |
[ | |
'id' => 158, | |
'name' => 'Norway', | |
'iso2' => 'NO', | |
'iso3' => 'NOR', | |
'tld' => 'no', | |
'fips' => 'NO', | |
'iso' => '578', | |
'geo_name_id' => '3144096', | |
'e164' => '47', | |
'dial_code' => '47', | |
'continent' => 'Europe', | |
'capital' => 'Oslo', | |
'timezone' => 'Europe/Oslo', | |
'currency' => 'Krone', | |
'lang_codes' => [ | |
'no', | |
'nb', | |
'nn', | |
'se', | |
'fi', | |
], | |
'languages' => 'Bokmal Norwegian (official), Nynorsk Norwegian (official), small Sami- and Finnish-speaking minorities', | |
], | |
[ | |
'id' => 159, | |
'name' => 'Oman', | |
'iso2' => 'OM', | |
'iso3' => 'OMN', | |
'tld' => 'om', | |
'fips' => 'MU', | |
'iso' => '512', | |
'geo_name_id' => '286963', | |
'e164' => '968', | |
'dial_code' => '968', | |
'continent' => 'Asia', | |
'capital' => 'Muscat', | |
'timezone' => 'Asia/Muscat', | |
'currency' => 'Rial', | |
'lang_codes' => [ | |
'ar-OM', | |
'en', | |
'bal', | |
'ur', | |
], | |
'languages' => 'Arabic (official), English, Baluchi, Urdu, Indian dialects', | |
], | |
[ | |
'id' => 160, | |
'name' => 'Pakistan', | |
'iso2' => 'PK', | |
'iso3' => 'PAK', | |
'tld' => 'pk', | |
'fips' => 'PK', | |
'iso' => '586', | |
'geo_name_id' => '1168579', | |
'e164' => '92', | |
'dial_code' => '92', | |
'continent' => 'Asia', | |
'capital' => 'Islamabad', | |
'timezone' => 'Asia/Karachi', | |
'currency' => 'Rupee', | |
'lang_codes' => [ | |
'ur-PK', | |
'en-PK', | |
'pa', | |
'sd', | |
'ps', | |
'brh', | |
], | |
'languages' => 'Punjabi 48%, Sindhi 12%, Saraiki (a Punjabi variant) 10%, Pashto (alternate name, Pashtu) 8%, Urdu (official) 8%, Balochi 3%, Hindko 2%, Brahui 1%, English (official; lingua franca of Pakistani elite and most government ministries), Burushaski, and other 8%', | |
], | |
[ | |
'id' => 161, | |
'name' => 'Palau', | |
'iso2' => 'PW', | |
'iso3' => 'PLW', | |
'tld' => 'pw', | |
'fips' => 'PS', | |
'iso' => '585', | |
'geo_name_id' => '1559582', | |
'e164' => '680', | |
'dial_code' => '680', | |
'continent' => 'Oceania', | |
'capital' => 'Melekeok', | |
'timezone' => 'Pacific/Palau', | |
'currency' => 'Dollar', | |
'lang_codes' => [ | |
'pau', | |
'sov', | |
'en-PW', | |
'tox', | |
'ja', | |
'fil', | |
'zh', | |
], | |
'languages' => 'Palauan (official on most islands) 66.6%, Carolinian 0.7%, other Micronesian 0.7%, English (official) 15.5%, Filipino 10.8%, Chinese 1.8%, other Asian 2.6%, other 1.3%', | |
], | |
[ | |
'id' => 162, | |
'name' => 'Palestine', | |
'iso2' => 'PS', | |
'iso3' => 'PSE', | |
'tld' => 'ps', | |
'fips' => 'WE', | |
'iso' => '275', | |
'geo_name_id' => '6254930', | |
'e164' => '970', | |
'dial_code' => '970', | |
'continent' => 'Asia', | |
'capital' => 'East Jerusalem', | |
'timezone' => 'Asia/Hebron', | |
'currency' => 'Shekel', | |
'lang_codes' => [ | |
'ar-PS', | |
], | |
'languages' => 'Arabic, Hebrew, English', | |
], | |
[ | |
'id' => 163, | |
'name' => 'Panama', | |
'iso2' => 'PA', | |
'iso3' => 'PAN', | |
'tld' => 'pa', | |
'fips' => 'PM', | |
'iso' => '591', | |
'geo_name_id' => '3703430', | |
'e164' => '507', | |
'dial_code' => '507', | |
'continent' => 'North America', | |
'capital' => 'Panama City', | |
'timezone' => 'America/Panama', | |
'currency' => 'Balboa', | |
'lang_codes' => [ | |
'es-PA', | |
'en', | |
], | |
'languages' => 'Spanish (official), English 14%', | |
], | |
[ | |
'id' => 164, | |
'name' => 'Papua New Guinea', | |
'iso2' => 'PG', | |
'iso3' => 'PNG', | |
'tld' => 'pg', | |
'fips' => 'PP', | |
'iso' => '598', | |
'geo_name_id' => '2088628', | |
'e164' => '675', | |
'dial_code' => '675', | |
'continent' => 'Oceania', | |
'capital' => 'Port Moresby', | |
'timezone' => 'Pacific/Port_Moresby', | |
'currency' => 'Kina', | |
'lang_codes' => [ | |
'en-PG', | |
'ho', | |
'meu', | |
'tpi', | |
], | |
'languages' => 'Tok Pisin (official), English (official), Hiri Motu (official), some 836 indigenous languages spoken (about 12% of the world\'s total); most languages have fewer than 1,000 speakers', | |
], | |
[ | |
'id' => 165, | |
'name' => 'Paraguay', | |
'iso2' => 'PY', | |
'iso3' => 'PRY', | |
'tld' => 'py', | |
'fips' => 'PA', | |
'iso' => '600', | |
'geo_name_id' => '3437598', | |
'e164' => '595', | |
'dial_code' => '595', | |
'continent' => 'South America', | |
'capital' => 'Asuncion', | |
'timezone' => 'America/Asuncion', | |
'currency' => 'Guarani', | |
'lang_codes' => [ | |
'es-PY', | |
'gn', | |
], | |
'languages' => 'Spanish (official), Guarani (official)', | |
], | |
[ | |
'id' => 166, | |
'name' => 'Peru', | |
'iso2' => 'PE', | |
'iso3' => 'PER', | |
'tld' => 'pe', | |
'fips' => 'PE', | |
'iso' => '604', | |
'geo_name_id' => '3932488', | |
'e164' => '51', | |
'dial_code' => '51', | |
'continent' => 'South America', | |
'capital' => 'Lima', | |
'timezone' => 'America/Lima', | |
'currency' => 'Sol', | |
'lang_codes' => [ | |
'es-PE', | |
'qu', | |
'ay', | |
], | |
'languages' => 'Spanish (official) 84.1%, Quechua (official) 13%, Aymara (official) 1.7%, Ashaninka 0.3%, other native languages (includes a large number of minor Amazonian languages) 0.7%, other (includes foreign languages and sign language) 0.2% (2007 est.)', | |
], | |
[ | |
'id' => 167, | |
'name' => 'Philippines', | |
'iso2' => 'PH', | |
'iso3' => 'PHL', | |
'tld' => 'ph', | |
'fips' => 'RP', | |
'iso' => '608', | |
'geo_name_id' => '1694008', | |
'e164' => '63', | |
'dial_code' => '63', | |
'continent' => 'Asia', | |
'capital' => 'Manila', | |
'timezone' => 'Asia/Manila', | |
'currency' => 'Peso', | |
'lang_codes' => [ | |
'tl', | |
'en-PH', | |
'fil', | |
], | |
'languages' => 'Filipino (official; based on Tagalog) and English (official); eight major dialects - Tagalog, Cebuano, Ilocano, Hiligaynon or Ilonggo, Bicol, Waray, Pampango, and Pangasinan', | |
], | |
[ | |
'id' => 168, | |
'name' => 'Pitcairn', | |
'iso2' => 'PN', | |
'iso3' => 'PCN', | |
'tld' => 'pn', | |
'fips' => 'PC', | |
'iso' => '612', | |
'geo_name_id' => '4030699', | |
'e164' => '64', | |
'dial_code' => '64', | |
'continent' => 'Oceania', | |
'capital' => 'Adamstown', | |
'timezone' => 'Pacific/Pitcairn', | |
'currency' => 'Dollar', | |
'lang_codes' => [ | |
'en-PN', | |
], | |
'languages' => 'English', | |
], | |
[ | |
'id' => 169, | |
'name' => 'Poland', | |
'iso2' => 'PL', | |
'iso3' => 'POL', | |
'tld' => 'pl', | |
'fips' => 'PL', | |
'iso' => '616', | |
'geo_name_id' => '798544', | |
'e164' => '48', | |
'dial_code' => '48', | |
'continent' => 'Europe', | |
'capital' => 'Warsaw', | |
'timezone' => 'Europe/Warsaw', | |
'currency' => 'Zloty', | |
'lang_codes' => [ | |
'pl', | |
], | |
'languages' => 'Polish (official) 96.2%, Polish and non-Polish 2%, non-Polish 0.5%, unspecified 1.3%', | |
], | |
[ | |
'id' => 170, | |
'name' => 'Portugal', | |
'iso2' => 'PT', | |
'iso3' => 'PRT', | |
'tld' => 'pt', | |
'fips' => 'PO', | |
'iso' => '620', | |
'geo_name_id' => '2264397', | |
'e164' => '351', | |
'dial_code' => '351', | |
'continent' => 'Europe', | |
'capital' => 'Lisbon', | |
'timezone' => 'Europe/Lisbon', | |
'currency' => 'Euro', | |
'lang_codes' => [ | |
'pt-PT', | |
'mwl', | |
], | |
'languages' => 'Portuguese (official), Mirandese (official, but locally used)', | |
], | |
[ | |
'id' => 171, | |
'name' => 'Puerto Rico', | |
'iso2' => 'PR', | |
'iso3' => 'PRI', | |
'tld' => 'pr', | |
'fips' => 'RQ', | |
'iso' => '630', | |
'geo_name_id' => '4566966', | |
'e164' => '1', | |
'dial_code' => '1787, 1939', | |
'continent' => 'North America', | |
'capital' => 'San Juan', | |
'timezone' => 'America/Puerto_Rico', | |
'currency' => 'Dollar', | |
'lang_codes' => [ | |
'en-PR', | |
'es-PR', | |
], | |
'languages' => 'Spanish, English', | |
], | |
[ | |
'id' => 172, | |
'name' => 'Qatar', | |
'iso2' => 'QA', | |
'iso3' => 'QAT', | |
'tld' => 'qa', | |
'fips' => 'QA', | |
'iso' => '634', | |
'geo_name_id' => '289688', | |
'e164' => '974', | |
'dial_code' => '974', | |
'continent' => 'Asia', | |
'capital' => 'Doha', | |
'timezone' => 'Asia/Qatar', | |
'currency' => 'Rial', | |
'lang_codes' => [ | |
'ar-QA', | |
'es', | |
], | |
'languages' => 'Arabic (official), English commonly used as a second language', | |
], | |
[ | |
'id' => 173, | |
'name' => 'Republic of the Congo', | |
'iso2' => 'CG', | |
'iso3' => 'COG', | |
'tld' => 'cg', | |
'fips' => 'CF', | |
'iso' => '178', | |
'geo_name_id' => '2260494', | |
'e164' => '242', | |
'dial_code' => '242', | |
'continent' => 'Africa', | |
'capital' => 'Brazzaville', | |
'timezone' => 'Africa/Brazzaville', | |
'currency' => 'Franc', | |
'lang_codes' => [ | |
'fr-CG', | |
'kg', | |
'ln-CG', | |
], | |
'languages' => 'French (official), Lingala and Monokutuba (lingua franca trade languages), many local languages and dialects (of which Kikongo is the most widespread)', | |
], | |
[ | |
'id' => 174, | |
'name' => 'Reunion', | |
'iso2' => 'RE', | |
'iso3' => 'REU', | |
'tld' => 're', | |
'fips' => 'RE', | |
'iso' => '638', | |
'geo_name_id' => '935317', | |
'e164' => '262', | |
'dial_code' => '262', | |
'continent' => 'Africa', | |
'capital' => 'Saint-Denis', | |
'timezone' => 'Indian/Reunion', | |
'currency' => 'Euro', | |
'lang_codes' => [ | |
'fr-RE', | |
], | |
'languages' => 'French', | |
], | |
[ | |
'id' => 175, | |
'name' => 'Romania', | |
'iso2' => 'RO', | |
'iso3' => 'ROU', | |
'tld' => 'ro', | |
'fips' => 'RO', | |
'iso' => '642', | |
'geo_name_id' => '798549', | |
'e164' => '40', | |
'dial_code' => '40', | |
'continent' => 'Europe', | |
'capital' => 'Bucharest', | |
'timezone' => 'Europe/Bucharest', | |
'currency' => 'Leu', | |
'lang_codes' => [ | |
'ro', | |
'hu', | |
'rom', | |
], | |
'languages' => 'Romanian (official) 85.4%, Hungarian 6.3%, Romany (Gypsy) 1.2%, other 1%, unspecified 6.1% (2011 est.)', | |
], | |
[ | |
'id' => 176, | |
'name' => 'Russia', | |
'iso2' => 'RU', | |
'iso3' => 'RUS', | |
'tld' => 'ru', | |
'fips' => 'RS', | |
'iso' => '643', | |
'geo_name_id' => '2017370', | |
'e164' => '7', | |
'dial_code' => '7', | |
'continent' => 'Europe', | |
'capital' => 'Moscow', | |
'timezone' => 'Europe/Moscow', | |
'currency' => 'Ruble', | |
'lang_codes' => [ | |
'ru', | |
'tt', | |
'xal', | |
'cau', | |
'ady', | |
'kv', | |
'ce', | |
'tyv', | |
'cv', | |
'udm', | |
'tut', | |
'mns', | |
'bua', | |
'myv', | |
'mdf', | |
'chm', | |
'ba', | |
'inh', | |
'tut', | |
'kbd', | |
'krc', | |
'ava', | |
'sah', | |
'nog', | |
], | |
'languages' => 'Russian (official) 96.3%, Dolgang 5.3%, German 1.5%, Chechen 1%, Tatar 3%, other 10.3%', | |
], | |
[ | |
'id' => 177, | |
'name' => 'Rwanda', | |
'iso2' => 'RW', | |
'iso3' => 'RWA', | |
'tld' => 'rw', | |
'fips' => 'RW', | |
'iso' => '646', | |
'geo_name_id' => '49518', | |
'e164' => '250', | |
'dial_code' => '250', | |
'continent' => 'Africa', | |
'capital' => 'Kigali', | |
'timezone' => 'Africa/Kigali', | |
'currency' => 'Franc', | |
'lang_codes' => [ | |
'rw', | |
'en-RW', | |
'fr-RW', | |
'sw', | |
], | |
'languages' => 'Kinyarwanda only (official, universal Bantu vernacular) 93.2%, Kinyarwanda and other language(s) 6.2%, French (official) and other language(s) 0.1%, English (official) and other language(s) 0.1%, Swahili (or Kiswahili, used in commercial centers) 0.02%, other 0.03%, unspecified 0.3% (2002 est.)', | |
], | |
[ | |
'id' => 178, | |
'name' => 'Saint Barthelemy', | |
'iso2' => 'BL', | |
'iso3' => 'BLM', | |
'tld' => 'gp', | |
'fips' => 'TB', | |
'iso' => '652', | |
'geo_name_id' => '3578476', | |
'e164' => '590', | |
'dial_code' => '590', | |
'continent' => 'North America', | |
'capital' => 'Gustavia', | |
'timezone' => 'America/St_Barthelemy', | |
'currency' => 'Euro', | |
'lang_codes' => [ | |
'fr', | |
], | |
'languages' => 'French (primary), English', | |
], | |
[ | |
'id' => 179, | |
'name' => 'Saint Helena', | |
'iso2' => 'SH', | |
'iso3' => 'SHN', | |
'tld' => 'sh', | |
'fips' => 'SH', | |
'iso' => '654', | |
'geo_name_id' => '3370751', | |
'e164' => '290', | |
'dial_code' => '290', | |
'continent' => 'Africa', | |
'capital' => 'Jamestown', | |
'timezone' => 'Atlantic/St_Helena', | |
'currency' => 'Pound', | |
'lang_codes' => [ | |
'en-SH', | |
], | |
'languages' => 'English', | |
], | |
[ | |
'id' => 180, | |
'name' => 'Saint Kitts and Nevis', | |
'iso2' => 'KN', | |
'iso3' => 'KNA', | |
'tld' => 'kn', | |
'fips' => 'SC', | |
'iso' => '659', | |
'geo_name_id' => '3575174', | |
'e164' => '1', | |
'dial_code' => '1869', | |
'continent' => 'North America', | |
'capital' => 'Basseterre', | |
'timezone' => 'America/St_Kitts', | |
'currency' => 'Dollar', | |
'lang_codes' => [ | |
'en-KN', | |
], | |
'languages' => 'English (official)', | |
], | |
[ | |
'id' => 181, | |
'name' => 'Saint Lucia', | |
'iso2' => 'LC', | |
'iso3' => 'LCA', | |
'tld' => 'lc', | |
'fips' => 'ST', | |
'iso' => '662', | |
'geo_name_id' => '3576468', | |
'e164' => '1', | |
'dial_code' => '1758', | |
'continent' => 'North America', | |
'capital' => 'Castries', | |
'timezone' => 'America/St_Lucia', | |
'currency' => 'Dollar', | |
'lang_codes' => [ | |
'en-LC', | |
], | |
'languages' => 'English (official), French patois', | |
], | |
[ | |
'id' => 182, | |
'name' => 'Saint Martin', | |
'iso2' => 'MF', | |
'iso3' => 'MAF', | |
'tld' => 'gp', | |
'fips' => 'RN', | |
'iso' => '663', | |
'geo_name_id' => '3578421', | |
'e164' => '1', | |
'dial_code' => '590', | |
'continent' => 'North America', | |
'capital' => 'Marigot', | |
'timezone' => 'America/Marigot', | |
'currency' => 'Euro', | |
'lang_codes' => [ | |
'fr', | |
], | |
'languages' => 'French (official), English, Dutch, French Patois, Spanish, Papiamento (dialect of Netherlands Antilles)', | |
], | |
[ | |
'id' => 183, | |
'name' => 'Saint Pierre and Miquelon', | |
'iso2' => 'PM', | |
'iso3' => 'SPM', | |
'tld' => 'pm', | |
'fips' => 'SB', | |
'iso' => '666', | |
'geo_name_id' => '3424932', | |
'e164' => '508', | |
'dial_code' => '508', | |
'continent' => 'North America', | |
'capital' => 'Saint-Pierre', | |
'timezone' => 'America/Miquelon', | |
'currency' => 'Euro', | |
'lang_codes' => [ | |
'fr-PM', | |
], | |
'languages' => 'French (official)', | |
], | |
[ | |
'id' => 184, | |
'name' => 'Saint Vincent and the Grenadines', | |
'iso2' => 'VC', | |
'iso3' => 'VCT', | |
'tld' => 'vc', | |
'fips' => 'VC', | |
'iso' => '670', | |
'geo_name_id' => '3577815', | |
'e164' => '1', | |
'dial_code' => '1784', | |
'continent' => 'North America', | |
'capital' => 'Kingstown', | |
'timezone' => 'America/St_Vincent', | |
'currency' => 'Dollar', | |
'lang_codes' => [ | |
'en-VC', | |
'fr', | |
], | |
'languages' => 'English, French patois', | |
], | |
[ | |
'id' => 185, | |
'name' => 'Samoa', | |
'iso2' => 'WS', | |
'iso3' => 'WSM', | |
'tld' => 'ws', | |
'fips' => 'WS', | |
'iso' => '882', | |
'geo_name_id' => '4034894', | |
'e164' => '685', | |
'dial_code' => '685', | |
'continent' => 'Oceania', | |
'capital' => 'Apia', | |
'timezone' => 'Pacific/Apia', | |
'currency' => 'Tala', | |
'lang_codes' => [ | |
'sm', | |
'en-WS', | |
], | |
'languages' => 'Samoan (Polynesian) (official), English', | |
], | |
[ | |
'id' => 186, | |
'name' => 'San Marino', | |
'iso2' => 'SM', | |
'iso3' => 'SMR', | |
'tld' => 'sm', | |
'fips' => 'SM', | |
'iso' => '674', | |
'geo_name_id' => '3168068', | |
'e164' => '378', | |
'dial_code' => '378', | |
'continent' => 'Europe', | |
'capital' => 'San Marino', | |
'timezone' => 'Europe/San_Marino', | |
'currency' => 'Euro', | |
'lang_codes' => [ | |
'it-SM', | |
], | |
'languages' => 'Italian', | |
], | |
[ | |
'id' => 187, | |
'name' => 'Sao Tome and Principe', | |
'iso2' => 'ST', | |
'iso3' => 'STP', | |
'tld' => 'st', | |
'fips' => 'TP', | |
'iso' => '678', | |
'geo_name_id' => '2410758', | |
'e164' => '239', | |
'dial_code' => '239', | |
'continent' => 'Africa', | |
'capital' => 'Sao Tome', | |
'timezone' => 'Africa/Sao_Tome', | |
'currency' => 'Dobra', | |
'lang_codes' => [ | |
'pt-ST', | |
], | |
'languages' => 'Portuguese 98.4% (official), Forro 36.2%, Cabo Verdian 8.5%, French 6.8%, Angolar 6.6%, English 4.9%, Lunguie 1%, other (including sign language) 2.4%', | |
], | |
[ | |
'id' => 188, | |
'name' => 'Saudi Arabia', | |
'iso2' => 'SA', | |
'iso3' => 'SAU', | |
'tld' => 'sa', | |
'fips' => 'SA', | |
'iso' => '682', | |
'geo_name_id' => '102358', | |
'e164' => '966', | |
'dial_code' => '966', | |
'continent' => 'Asia', | |
'capital' => 'Riyadh', | |
'timezone' => 'Asia/Riyadh', | |
'currency' => 'Rial', | |
'lang_codes' => [ | |
'ar-SA', | |
], | |
'languages' => 'Arabic (official)', | |
], | |
[ | |
'id' => 189, | |
'name' => 'Senegal', | |
'iso2' => 'SN', | |
'iso3' => 'SEN', | |
'tld' => 'sn', | |
'fips' => 'SG', | |
'iso' => '686', | |
'geo_name_id' => '2245662', | |
'e164' => '221', | |
'dial_code' => '221', | |
'continent' => 'Africa', | |
'capital' => 'Dakar', | |
'timezone' => 'Africa/Dakar', | |
'currency' => 'Franc', | |
'lang_codes' => [ | |
'fr-SN', | |
'wo', | |
'fuc', | |
'mnk', | |
], | |
'languages' => 'French (official), Wolof, Pulaar, Jola, Mandinka', | |
], | |
[ | |
'id' => 190, | |
'name' => 'Serbia', | |
'iso2' => 'RS', | |
'iso3' => 'SRB', | |
'tld' => 'rs', | |
'fips' => 'RI', | |
'iso' => '688', | |
'geo_name_id' => '6290252', | |
'e164' => '381', | |
'dial_code' => '381', | |
'continent' => 'Europe', | |
'capital' => 'Belgrade', | |
'timezone' => 'Europe/Belgrade', | |
'currency' => 'Dinar', | |
'lang_codes' => [ | |
'sr', | |
'hu', | |
'bs', | |
'rom', | |
], | |
'languages' => 'Serbian (official) 88.1%, Hungarian 3.4%, Bosnian 1.9%, Romany 1.4%, other 3.4%, undeclared or unknown 1.8%', | |
], | |
[ | |
'id' => 191, | |
'name' => 'Seychelles', | |
'iso2' => 'SC', | |
'iso3' => 'SYC', | |
'tld' => 'sc', | |
'fips' => 'SE', | |
'iso' => '690', | |
'geo_name_id' => '241170', | |
'e164' => '248', | |
'dial_code' => '248', | |
'continent' => 'Africa', | |
'capital' => 'Victoria', | |
'timezone' => 'Indian/Mahe', | |
'currency' => 'Rupee', | |
'lang_codes' => [ | |
'en-SC', | |
'fr-SC', | |
], | |
'languages' => 'Seychellois Creole (official) 89.1%, English (official) 5.1%, French (official) 0.7%, other 3.8%, unspecified 1.4% (2010 est.)', | |
], | |
[ | |
'id' => 192, | |
'name' => 'Sierra Leone', | |
'iso2' => 'SL', | |
'iso3' => 'SLE', | |
'tld' => 'sl', | |
'fips' => 'SL', | |
'iso' => '694', | |
'geo_name_id' => '2403846', | |
'e164' => '232', | |
'dial_code' => '232', | |
'continent' => 'Africa', | |
'capital' => 'Freetown', | |
'timezone' => 'Africa/Freetown', | |
'currency' => 'Leone', | |
'lang_codes' => [ | |
'en-SL', | |
'men', | |
'tem', | |
], | |
'languages' => 'English (official, regular use limited to literate minority), Mende (principal vernacular in the south), Temne (principal vernacular in the north), Krio (English-based Creole, spoken by the descendants of freed Jamaican slaves who were settled in the Freetown area, a lingua franca and a first language for 10% of the population but understood by 95%)', | |
], | |
[ | |
'id' => 193, | |
'name' => 'Singapore', | |
'iso2' => 'SG', | |
'iso3' => 'SGP', | |
'tld' => 'sg', | |
'fips' => 'SN', | |
'iso' => '702', | |
'geo_name_id' => '1880251', | |
'e164' => '65', | |
'dial_code' => '65', | |
'continent' => 'Asia', | |
'capital' => 'Singapore', | |
'timezone' => 'Asia/Singapore', | |
'currency' => 'Dollar', | |
'lang_codes' => [ | |
'cmn', | |
'en-SG', | |
'ms-SG', | |
'ta-SG', | |
'zh-SG', | |
], | |
'languages' => 'Mandarin (official) 36.3%, English (official) 29.8%, Malay (official) 11.9%, Hokkien 8.1%, Tamil (official) 4.4%, Cantonese 4.1%, Teochew 3.2%, other Indian languages 1.2%, other Chinese dialects 1.1%, other 1.1% (2010 est.)', | |
], | |
[ | |
'id' => 194, | |
'name' => 'Sint Maarten', | |
'iso2' => 'SX', | |
'iso3' => 'SXM', | |
'tld' => 'sx', | |
'fips' => 'NN', | |
'iso' => '534', | |
'geo_name_id' => '7609695', | |
'e164' => '1', | |
'dial_code' => '1721', | |
'continent' => 'North America', | |
'capital' => 'Philipsburg', | |
'timezone' => 'America/Lower_Princes', | |
'currency' => 'Guilder', | |
'lang_codes' => [ | |
'nl', | |
'en', | |
], | |
'languages' => 'English (official) 67.5%, Spanish 12.9%, Creole 8.2%, Dutch (official) 4.2%, Papiamento (a Spanish-Portuguese-Dutch-English dialect) 2.2%, French 1.5%, other 3.5% (2001 census)', | |
], | |
[ | |
'id' => 195, | |
'name' => 'Slovakia', | |
'iso2' => 'SK', | |
'iso3' => 'SVK', | |
'tld' => 'sk', | |
'fips' => 'LO', | |
'iso' => '703', | |
'geo_name_id' => '3057568', | |
'e164' => '421', | |
'dial_code' => '421', | |
'continent' => 'Europe', | |
'capital' => 'Bratislava', | |
'timezone' => 'Europe/Bratislava', | |
'currency' => 'Euro', | |
'lang_codes' => [ | |
'sk', | |
'hu', | |
], | |
'languages' => 'Slovak (official) 78.6%, Hungarian 9.4%, Roma 2.3%, Ruthenian 1%, other or unspecified 8.8% (2011 est.)', | |
], | |
[ | |
'id' => 196, | |
'name' => 'Slovenia', | |
'iso2' => 'SI', | |
'iso3' => 'SVN', | |
'tld' => 'si', | |
'fips' => 'SI', | |
'iso' => '705', | |
'geo_name_id' => '3190538', | |
'e164' => '386', | |
'dial_code' => '386', | |
'continent' => 'Europe', | |
'capital' => 'Ljubljana', | |
'timezone' => 'Europe/Ljubljana', | |
'currency' => 'Euro', | |
'lang_codes' => [ | |
'sl', | |
'sh', | |
], | |
'languages' => 'Slovenian (official) 91.1%, Serbo-Croatian 4.5%, other or unspecified 4.4%, Italian (official, only in municipalities where Italian national communities reside), Hungarian (official, only in municipalities where Hungarian national communities reside) (2002 census)', | |
], | |
[ | |
'id' => 197, | |
'name' => 'Solomon Islands', | |
'iso2' => 'SB', | |
'iso3' => 'SLB', | |
'tld' => 'sb', | |
'fips' => 'BP', | |
'iso' => '090', | |
'geo_name_id' => '2103350', | |
'e164' => '677', | |
'dial_code' => '677', | |
'continent' => 'Oceania', | |
'capital' => 'Honiara', | |
'timezone' => 'Pacific/Guadalcanal', | |
'currency' => 'Dollar', | |
'lang_codes' => [ | |
'en-SB', | |
'tpi', | |
], | |
'languages' => 'Melanesian pidgin (in much of the country is lingua franca), English (official but spoken by only 1%-2% of the population), 120 indigenous languages', | |
], | |
[ | |
'id' => 198, | |
'name' => 'Somalia', | |
'iso2' => 'SO', | |
'iso3' => 'SOM', | |
'tld' => 'so', | |
'fips' => 'SO', | |
'iso' => '706', | |
'geo_name_id' => '51537', | |
'e164' => '252', | |
'dial_code' => '252', | |
'continent' => 'Africa', | |
'capital' => 'Mogadishu', | |
'timezone' => 'Africa/Mogadishu', | |
'currency' => 'Shilling', | |
'lang_codes' => [ | |
'so-SO', | |
'ar-SO', | |
'it', | |
'en-SO', | |
], | |
'languages' => 'Somali (official), Arabic (official, according to the Transitional Federal Charter), Italian, English', | |
], | |
[ | |
'id' => 199, | |
'name' => 'South Africa', | |
'iso2' => 'ZA', | |
'iso3' => 'ZAF', | |
'tld' => 'za', | |
'fips' => 'SF', | |
'iso' => '710', | |
'geo_name_id' => '953987', | |
'e164' => '27', | |
'dial_code' => '27', | |
'continent' => 'Africa', | |
'capital' => 'Pretoria', | |
'timezone' => 'Africa/Johannesburg', | |
'currency' => 'Rand', | |
'lang_codes' => [ | |
'zu', | |
'xh', | |
'af', | |
'nso', | |
'en-ZA', | |
'tn', | |
'st', | |
'ts', | |
'ss', | |
've', | |
'nr', | |
], | |
'languages' => 'IsiZulu (official) 22.7%, IsiXhosa (official) 16%, Afrikaans (official) 13.5%, English (official) 9.6%, Sepedi (official) 9.1%, Setswana (official) 8%, Sesotho (official) 7.6%, Xitsonga (official) 4.5%, siSwati (official) 2.5%, Tshivenda (official) 2.4%, isiNdebele (official) 2.1%, sign language 0.5%, other 1.6% (2011 est.)', | |
], | |
[ | |
'id' => 200, | |
'name' => 'South Korea', | |
'iso2' => 'KR', | |
'iso3' => 'KOR', | |
'tld' => 'kr', | |
'fips' => 'KS', | |
'iso' => '410', | |
'geo_name_id' => '1835841', | |
'e164' => '82', | |
'dial_code' => '82', | |
'continent' => 'Asia', | |
'capital' => 'Seoul', | |
'timezone' => 'Asia/Seoul', | |
'currency' => 'Won', | |
'lang_codes' => [ | |
'ko-KR', | |
'en', | |
], | |
'languages' => 'Korean, English (widely taught in junior high and high school)', | |
], | |
[ | |
'id' => 201, | |
'name' => 'South Sudan', | |
'iso2' => 'SS', | |
'iso3' => 'SSD', | |
'tld' => 'ss', | |
'fips' => 'OD', | |
'iso' => '728', | |
'geo_name_id' => '7909807', | |
'e164' => '211', | |
'dial_code' => '211', | |
'continent' => 'Africa', | |
'capital' => 'Juba', | |
'timezone' => 'Africa/Juba', | |
'currency' => 'Pound', | |
'lang_codes' => [ | |
'en', | |
], | |
'languages' => 'English (official), Arabic (includes Juba and Sudanese variants), regional languages include Dinka, Nuer, Bari, Zande, Shilluk', | |
], | |
[ | |
'id' => 202, | |
'name' => 'Spain', | |
'iso2' => 'ES', | |
'iso3' => 'ESP', | |
'tld' => 'es', | |
'fips' => 'SP', | |
'iso' => '724', | |
'geo_name_id' => '2510769', | |
'e164' => '34', | |
'dial_code' => '34', | |
'continent' => 'Europe', | |
'capital' => 'Madrid', | |
'timezone' => 'Europe/Madrid', | |
'currency' => 'Euro', | |
'lang_codes' => [ | |
'es-ES', | |
'ca', | |
'gl', | |
'eu', | |
'oc', | |
], | |
'languages' => 'Castilian Spanish (official) 74%, Catalan 17%, Galician 7%, and Basque 2%', | |
], | |
[ | |
'id' => 203, | |
'name' => 'Sri Lanka', | |
'iso2' => 'LK', | |
'iso3' => 'LKA', | |
'tld' => 'lk', | |
'fips' => 'CE', | |
'iso' => '144', | |
'geo_name_id' => '1227603', | |
'e164' => '94', | |
'dial_code' => '94', | |
'continent' => 'Asia', | |
'capital' => 'Colombo', | |
'timezone' => 'Asia/Colombo', | |
'currency' => 'Rupee', | |
'lang_codes' => [ | |
'si', | |
'ta', | |
'en', | |
], | |
'languages' => 'Sinhala (official and national language) 74%, Tamil (national language) 18%, other 8%', | |
], | |
[ | |
'id' => 204, | |
'name' => 'Sudan', | |
'iso2' => 'SD', | |
'iso3' => 'SDN', | |
'tld' => 'sd', | |
'fips' => 'SU', | |
'iso' => '729', | |
'geo_name_id' => '366755', | |
'e164' => '249', | |
'dial_code' => '249', | |
'continent' => 'Africa', | |
'capital' => 'Khartoum', | |
'timezone' => 'Africa/Khartoum', | |
'currency' => 'Pound', | |
'lang_codes' => [ | |
'ar-SD', | |
'en', | |
'fia', | |
], | |
'languages' => 'Arabic (official), English (official), Nubian, Ta Bedawie, Fur', | |
], | |
[ | |
'id' => 205, | |
'name' => 'Suriname', | |
'iso2' => 'SR', | |
'iso3' => 'SUR', | |
'tld' => 'sr', | |
'fips' => 'NS', | |
'iso' => '740', | |
'geo_name_id' => '3382998', | |
'e164' => '597', | |
'dial_code' => '597', | |
'continent' => 'South America', | |
'capital' => 'Paramaribo', | |
'timezone' => 'America/Paramaribo', | |
'currency' => 'Dollar', | |
'lang_codes' => [ | |
'nl-SR', | |
'en', | |
'srn', | |
'hns', | |
'jv', | |
], | |
'languages' => 'Dutch (official), English (widely spoken), Sranang Tongo (Surinamese, sometimes called Taki-Taki, is native language of Creoles and much of the younger population and is lingua franca among others), Caribbean Hindustani (a dialect of Hindi), Javanese', | |
], | |
[ | |
'id' => 206, | |
'name' => 'Svalbard and Jan Mayen', | |
'iso2' => 'SJ', | |
'iso3' => 'SJM', | |
'tld' => 'sj', | |
'fips' => 'SV', | |
'iso' => '744', | |
'geo_name_id' => '607072', | |
'e164' => '47', | |
'dial_code' => '47', | |
'continent' => 'Europe', | |
'capital' => 'Longyearbyen', | |
'timezone' => 'Arctic/Longyearbyen', | |
'currency' => 'Krone', | |
'lang_codes' => [ | |
'no', | |
'ru', | |
], | |
'languages' => 'Norwegian, Russian', | |
], | |
[ | |
'id' => 207, | |
'name' => 'Swaziland', | |
'iso2' => 'SZ', | |
'iso3' => 'SWZ', | |
'tld' => 'sz', | |
'fips' => 'WZ', | |
'iso' => '748', | |
'geo_name_id' => '934841', | |
'e164' => '268', | |
'dial_code' => '268', | |
'continent' => 'Africa', | |
'capital' => 'Mbabane', | |
'timezone' => 'Africa/Mbabane', | |
'currency' => 'Lilangeni', | |
'lang_codes' => [ | |
'en-SZ', | |
'ss-SZ', | |
], | |
'languages' => 'English (official, used for government business), siSwati (official)', | |
], | |
[ | |
'id' => 208, | |
'name' => 'Sweden', | |
'iso2' => 'SE', | |
'iso3' => 'SWE', | |
'tld' => 'se', | |
'fips' => 'SW', | |
'iso' => '752', | |
'geo_name_id' => '2661886', | |
'e164' => '46', | |
'dial_code' => '46', | |
'continent' => 'Europe', | |
'capital' => 'Stockholm', | |
'timezone' => 'Europe/Stockholm', | |
'currency' => 'Krona', | |
'lang_codes' => [ | |
'sv-SE', | |
'se', | |
'sma', | |
'fi-SE', | |
], | |
'languages' => 'Swedish (official), small Sami- and Finnish-speaking minorities', | |
], | |
[ | |
'id' => 209, | |
'name' => 'Switzerland', | |
'iso2' => 'CH', | |
'iso3' => 'CHE', | |
'tld' => 'ch', | |
'fips' => 'SZ', | |
'iso' => '756', | |
'geo_name_id' => '2658434', | |
'e164' => '41', | |
'dial_code' => '41', | |
'continent' => 'Europe', | |
'capital' => 'Berne', | |
'timezone' => 'Europe/Zurich', | |
'currency' => 'Franc', | |
'lang_codes' => [ | |
'de-CH', | |
'fr-CH', | |
'it-CH', | |
'rm', | |
], | |
'languages' => 'German (official) 64.9%, French (official) 22.6%, Italian (official) 8.3%, Serbo-Croatian 2.5%, Albanian 2.6%, Portuguese 3.4%, Spanish 2.2%, English 4.6%, Romansch (official) 0.5%, other 5.1%', | |
], | |
[ | |
'id' => 210, | |
'name' => 'Syria', | |
'iso2' => 'SY', | |
'iso3' => 'SYR', | |
'tld' => 'sy', | |
'fips' => 'SY', | |
'iso' => '760', | |
'geo_name_id' => '163843', | |
'e164' => '963', | |
'dial_code' => '963', | |
'continent' => 'Asia', | |
'capital' => 'Damascus', | |
'timezone' => 'Asia/Damascus', | |
'currency' => 'Pound', | |
'lang_codes' => [ | |
'ar-SY', | |
'ku', | |
'hy', | |
'arc', | |
'fr', | |
'en', | |
], | |
'languages' => 'Arabic (official), Kurdish, Armenian, Aramaic, Circassian (widely understood); French, English (somewhat understood)', | |
], | |
[ | |
'id' => 211, | |
'name' => 'Taiwan', | |
'iso2' => 'TW', | |
'iso3' => 'TWN', | |
'tld' => 'tw', | |
'fips' => 'TW', | |
'iso' => '158', | |
'geo_name_id' => '1668284', | |
'e164' => '886', | |
'dial_code' => '886', | |
'continent' => 'Asia', | |
'capital' => 'Taipei', | |
'timezone' => 'Asia/Taipei', | |
'currency' => 'Dollar', | |
'lang_codes' => [ | |
'zh-TW', | |
'zh', | |
'nan', | |
'hak', | |
], | |
'languages' => 'Mandarin Chinese (official), Taiwanese (Min), Hakka dialects', | |
], | |
[ | |
'id' => 212, | |
'name' => 'Tajikistan', | |
'iso2' => 'TJ', | |
'iso3' => 'TJK', | |
'tld' => 'tj', | |
'fips' => 'TI', | |
'iso' => '762', | |
'geo_name_id' => '1220409', | |
'e164' => '992', | |
'dial_code' => '992', | |
'continent' => 'Asia', | |
'capital' => 'Dushanbe', | |
'timezone' => 'Asia/Dushanbe', | |
'currency' => 'Somoni', | |
'lang_codes' => [ | |
'tg', | |
'ru', | |
], | |
'languages' => 'Tajik (official), Russian widely used in government and business', | |
], | |
[ | |
'id' => 213, | |
'name' => 'Tanzania', | |
'iso2' => 'TZ', | |
'iso3' => 'TZA', | |
'tld' => 'tz', | |
'fips' => 'TZ', | |
'iso' => '834', | |
'geo_name_id' => '149590', | |
'e164' => '255', | |
'dial_code' => '255', | |
'continent' => 'Africa', | |
'capital' => 'Dodoma', | |
'timezone' => 'Africa/Dar_es_Salaam', | |
'currency' => 'Shilling', | |
'lang_codes' => [ | |
'sw-TZ', | |
'en', | |
'ar', | |
], | |
'languages' => 'Kiswahili or Swahili (official), Kiunguja (name for Swahili in Zanzibar), English (official, primary language of commerce, administration, and higher education), Arabic (widely spoken in Zanzibar), many local languages', | |
], | |
[ | |
'id' => 214, | |
'name' => 'Thailand', | |
'iso2' => 'TH', | |
'iso3' => 'THA', | |
'tld' => 'th', | |
'fips' => 'TH', | |
'iso' => '764', | |
'geo_name_id' => '1605651', | |
'e164' => '66', | |
'dial_code' => '66', | |
'continent' => 'Asia', | |
'capital' => 'Bangkok', | |
'timezone' => 'Asia/Bangkok', | |
'currency' => 'Baht', | |
'lang_codes' => [ | |
'th', | |
'en', | |
], | |
'languages' => 'Thai (official) 90.7%, Burmese 1.3%, other 8%', | |
], | |
[ | |
'id' => 215, | |
'name' => 'Togo', | |
'iso2' => 'TG', | |
'iso3' => 'TGO', | |
'tld' => 'tg', | |
'fips' => 'TO', | |
'iso' => '768', | |
'geo_name_id' => '2363686', | |
'e164' => '228', | |
'dial_code' => '228', | |
'continent' => 'Africa', | |
'capital' => 'Lome', | |
'timezone' => 'Africa/Lome', | |
'currency' => 'Franc', | |
'lang_codes' => [ | |
'fr-TG', | |
'ee', | |
'hna', | |
'kbp', | |
'dag', | |
'ha', | |
], | |
'languages' => 'French (official, the language of commerce), Ewe and Mina (the two major African languages in the south), Kabye (sometimes spelled Kabiye) and Dagomba (the two major African languages in the north)', | |
], | |
[ | |
'id' => 216, | |
'name' => 'Tokelau', | |
'iso2' => 'TK', | |
'iso3' => 'TKL', | |
'tld' => 'tk', | |
'fips' => 'TL', | |
'iso' => '772', | |
'geo_name_id' => '4031074', | |
'e164' => '690', | |
'dial_code' => '690', | |
'continent' => 'Oceania', | |
'capital' => null, | |
'timezone' => 'Pacific/Fakaofo', | |
'currency' => 'Dollar', | |
'lang_codes' => [ | |
'tkl', | |
'en-TK', | |
], | |
'languages' => 'Tokelauan 93.5% (a Polynesian language), English 58.9%, Samoan 45.5%, Tuvaluan 11.6%, Kiribati 2.7%, other 2.5%, none 4.1%, unspecified 0.6%', | |
], | |
[ | |
'id' => 217, | |
'name' => 'Tonga', | |
'iso2' => 'TO', | |
'iso3' => 'TON', | |
'tld' => 'to', | |
'fips' => 'TN', | |
'iso' => '776', | |
'geo_name_id' => '4032283', | |
'e164' => '676', | |
'dial_code' => '676', | |
'continent' => 'Oceania', | |
'capital' => 'Nuku\'alofa', | |
'timezone' => 'Pacific/Tongatapu', | |
'currency' => 'Pa\'anga', | |
'lang_codes' => [ | |
'to', | |
'en-TO', | |
], | |
'languages' => 'English and Tongan 87%, Tongan (official) 10.7%, English (official) 1.2%, other 1.1%, uspecified 0.03% (2006 est.)', | |
], | |
[ | |
'id' => 218, | |
'name' => 'Trinidad and Tobago', | |
'iso2' => 'TT', | |
'iso3' => 'TTO', | |
'tld' => 'tt', | |
'fips' => 'TD', | |
'iso' => '780', | |
'geo_name_id' => '3573591', | |
'e164' => '1', | |
'dial_code' => '1868', | |
'continent' => 'North America', | |
'capital' => 'Port of Spain', | |
'timezone' => 'America/Port_of_Spain', | |
'currency' => 'Dollar', | |
'lang_codes' => [ | |
'en-TT', | |
'hns', | |
'fr', | |
'es', | |
'zh', | |
], | |
'languages' => 'English (official), Caribbean Hindustani (a dialect of Hindi), French, Spanish, Chinese', | |
], | |
[ | |
'id' => 219, | |
'name' => 'Tunisia', | |
'iso2' => 'TN', | |
'iso3' => 'TUN', | |
'tld' => 'tn', | |
'fips' => 'TS', | |
'iso' => '788', | |
'geo_name_id' => '2464461', | |
'e164' => '216', | |
'dial_code' => '216', | |
'continent' => 'Africa', | |
'capital' => 'Tunis', | |
'timezone' => 'Africa/Tunis', | |
'currency' => 'Dinar', | |
'lang_codes' => [ | |
'ar-TN', | |
'fr', | |
], | |
'languages' => 'Arabic (official, one of the languages of commerce), French (commerce), Berber (Tamazight)', | |
], | |
[ | |
'id' => 220, | |
'name' => 'Turkey', | |
'iso2' => 'TR', | |
'iso3' => 'TUR', | |
'tld' => 'tr', | |
'fips' => 'TU', | |
'iso' => '792', | |
'geo_name_id' => '298795', | |
'e164' => '90', | |
'dial_code' => '90', | |
'continent' => 'Asia', | |
'capital' => 'Ankara', | |
'timezone' => 'Europe/Istanbul', | |
'currency' => 'Lira', | |
'lang_codes' => [ | |
'tr-TR', | |
'ku', | |
'diq', | |
'az', | |
'av', | |
], | |
'languages' => 'Turkish (official), Kurdish, other minority languages', | |
], | |
[ | |
'id' => 221, | |
'name' => 'Turkmenistan', | |
'iso2' => 'TM', | |
'iso3' => 'TKM', | |
'tld' => 'tm', | |
'fips' => 'TX', | |
'iso' => '795', | |
'geo_name_id' => '1218197', | |
'e164' => '993', | |
'dial_code' => '993', | |
'continent' => 'Asia', | |
'capital' => 'Ashgabat', | |
'timezone' => 'Asia/Ashgabat', | |
'currency' => 'Manat', | |
'lang_codes' => [ | |
'tk', | |
'ru', | |
'uz', | |
], | |
'languages' => 'Turkmen (official) 72%, Russian 12%, Uzbek 9%, other 7%', | |
], | |
[ | |
'id' => 222, | |
'name' => 'Turks and Caicos Islands', | |
'iso2' => 'TC', | |
'iso3' => 'TCA', | |
'tld' => 'tc', | |
'fips' => 'TK', | |
'iso' => '796', | |
'geo_name_id' => '3576916', | |
'e164' => '1', | |
'dial_code' => '1649', | |
'continent' => 'North America', | |
'capital' => 'Cockburn Town', | |
'timezone' => 'America/Grand_Turk', | |
'currency' => 'Dollar', | |
'lang_codes' => [ | |
'en-TC', | |
], | |
'languages' => 'English (official)', | |
], | |
[ | |
'id' => 223, | |
'name' => 'Tuvalu', | |
'iso2' => 'TV', | |
'iso3' => 'TUV', | |
'tld' => 'tv', | |
'fips' => 'TV', | |
'iso' => '798', | |
'geo_name_id' => '2110297', | |
'e164' => '688', | |
'dial_code' => '688', | |
'continent' => 'Oceania', | |
'capital' => 'Funafuti', | |
'timezone' => 'Pacific/Funafuti', | |
'currency' => 'Dollar', | |
'lang_codes' => [ | |
'tvl', | |
'en', | |
'sm', | |
'gil', | |
], | |
'languages' => 'Tuvaluan (official), English (official), Samoan, Kiribati (on the island of Nui)', | |
], | |
[ | |
'id' => 224, | |
'name' => 'U.S. Virgin Islands', | |
'iso2' => 'VI', | |
'iso3' => 'VIR', | |
'tld' => 'vi', | |
'fips' => 'VQ', | |
'iso' => '850', | |
'geo_name_id' => '4796775', | |
'e164' => '1', | |
'dial_code' => '1340', | |
'continent' => 'North America', | |
'capital' => 'Charlotte Amalie', | |
'timezone' => 'America/St_Thomas', | |
'currency' => 'Dollar', | |
'lang_codes' => [ | |
'en-VI', | |
], | |
'languages' => 'English 74.7%, Spanish or Spanish Creole 16.8%, French or French Creole 6.6%, other 1.9% (2000 census)', | |
], | |
[ | |
'id' => 225, | |
'name' => 'Uganda', | |
'iso2' => 'UG', | |
'iso3' => 'UGA', | |
'tld' => 'ug', | |
'fips' => 'UG', | |
'iso' => '800', | |
'geo_name_id' => '226074', | |
'e164' => '256', | |
'dial_code' => '256', | |
'continent' => 'Africa', | |
'capital' => 'Kampala', | |
'timezone' => 'Africa/Kampala', | |
'currency' => 'Shilling', | |
'lang_codes' => [ | |
'en-UG', | |
'lg', | |
'sw', | |
'ar', | |
], | |
'languages' => 'English (official national language, taught in grade schools, used in courts of law and by most newspapers and some radio broadcasts), Ganda or Luganda (most widely used of the Niger-Congo languages, preferred for native language publications in the capital and may be taught in school), other Niger-Congo languages, Nilo-Saharan languages, Swahili, Arabic', | |
], | |
[ | |
'id' => 226, | |
'name' => 'Ukraine', | |
'iso2' => 'UA', | |
'iso3' => 'UKR', | |
'tld' => 'ua', | |
'fips' => 'UP', | |
'iso' => '804', | |
'geo_name_id' => '690791', | |
'e164' => '380', | |
'dial_code' => '380', | |
'continent' => 'Europe', | |
'capital' => 'Kiev', | |
'timezone' => 'Europe/Kiev', | |
'currency' => 'Hryvnia', | |
'lang_codes' => [ | |
'uk', | |
'ru-UA', | |
'rom', | |
'pl', | |
'hu', | |
], | |
'languages' => 'Ukrainian (official) 67%, Russian (regional language) 24%, other (includes small Romanian-, Polish-, and Hungarian-speaking minorities) 9%', | |
], | |
[ | |
'id' => 227, | |
'name' => 'United Arab Emirates', | |
'iso2' => 'AE', | |
'iso3' => 'ARE', | |
'tld' => 'ae', | |
'fips' => 'AE', | |
'iso' => '784', | |
'geo_name_id' => '290557', | |
'e164' => '971', | |
'dial_code' => '971', | |
'continent' => 'Asia', | |
'capital' => 'Abu Dhabi', | |
'timezone' => 'Asia/Dubai', | |
'currency' => 'Dirham', | |
'lang_codes' => [ | |
'ar-AE', | |
'fa', | |
'en', | |
'hi', | |
'ur', | |
], | |
'languages' => 'Arabic (official), Persian, English, Hindi, Urdu', | |
], | |
[ | |
'id' => 228, | |
'name' => 'United Kingdom', | |
'iso2' => 'GB', | |
'iso3' => 'GBR', | |
'tld' => 'uk', | |
'fips' => 'UK', | |
'iso' => '826', | |
'geo_name_id' => '2635167', | |
'e164' => '44', | |
'dial_code' => '44', | |
'continent' => 'Europe', | |
'capital' => 'London', | |
'timezone' => 'Europe/London', | |
'currency' => 'Pound', | |
'lang_codes' => [ | |
'en-GB', | |
'cy-GB', | |
'gd', | |
], | |
'languages' => 'English', | |
], | |
[ | |
'id' => 229, | |
'name' => 'United States', | |
'iso2' => 'US', | |
'iso3' => 'USA', | |
'tld' => 'us', | |
'fips' => 'US', | |
'iso' => '840', | |
'geo_name_id' => '6252001', | |
'e164' => '1', | |
'dial_code' => '1', | |
'continent' => 'North America', | |
'capital' => 'Washington', | |
'timezone' => 'America/New_York', | |
'currency' => 'Dollar', | |
'lang_codes' => [ | |
'en-US', | |
'es-US', | |
'haw', | |
'fr', | |
], | |
'languages' => 'English 82.1%, Spanish 10.7%, other Indo-European 3.8%, Asian and Pacific island 2.7%, other 0.7% (2000 census)', | |
], | |
[ | |
'id' => 230, | |
'name' => 'Uruguay', | |
'iso2' => 'UY', | |
'iso3' => 'URY', | |
'tld' => 'uy', | |
'fips' => 'UY', | |
'iso' => '858', | |
'geo_name_id' => '3439705', | |
'e164' => '598', | |
'dial_code' => '598', | |
'continent' => 'South America', | |
'capital' => 'Montevideo', | |
'timezone' => 'America/Montevideo', | |
'currency' => 'Peso', | |
'lang_codes' => [ | |
'es-UY', | |
], | |
'languages' => 'Spanish (official), Portunol, Brazilero (Portuguese-Spanish mix on the Brazilian frontier)', | |
], | |
[ | |
'id' => 231, | |
'name' => 'Uzbekistan', | |
'iso2' => 'UZ', | |
'iso3' => 'UZB', | |
'tld' => 'uz', | |
'fips' => 'UZ', | |
'iso' => '860', | |
'geo_name_id' => '1512440', | |
'e164' => '998', | |
'dial_code' => '998', | |
'continent' => 'Asia', | |
'capital' => 'Tashkent', | |
'timezone' => 'Asia/Tashkent', | |
'currency' => 'Som', | |
'lang_codes' => [ | |
'uz', | |
'ru', | |
'tg', | |
], | |
'languages' => 'Uzbek (official) 74.3%, Russian 14.2%, Tajik 4.4%, other 7.1%', | |
], | |
[ | |
'id' => 232, | |
'name' => 'Vanuatu', | |
'iso2' => 'VU', | |
'iso3' => 'VUT', | |
'tld' => 'vu', | |
'fips' => 'NH', | |
'iso' => '548', | |
'geo_name_id' => '2134431', | |
'e164' => '678', | |
'dial_code' => '678', | |
'continent' => 'Oceania', | |
'capital' => 'Port Vila', | |
'timezone' => 'Pacific/Efate', | |
'currency' => 'Vatu', | |
'lang_codes' => [ | |
'bi', | |
'en-VU', | |
'fr-VU', | |
], | |
'languages' => 'local languages (more than 100) 63.2%, Bislama (official; creole) 33.7%, English (official) 2%, French (official) 0.6%, other 0.5% (2009 est.)', | |
], | |
[ | |
'id' => 233, | |
'name' => 'Vatican', | |
'iso2' => 'VA', | |
'iso3' => 'VAT', | |
'tld' => 'va', | |
'fips' => 'VT', | |
'iso' => '336', | |
'geo_name_id' => '3164670', | |
'e164' => '39', | |
'dial_code' => '379', | |
'continent' => 'Europe', | |
'capital' => 'Vatican City', | |
'timezone' => 'Europe/Vatican', | |
'currency' => 'Euro', | |
'lang_codes' => [ | |
'la', | |
'it', | |
'fr', | |
], | |
'languages' => 'Latin, Italian, French', | |
], | |
[ | |
'id' => 234, | |
'name' => 'Venezuela', | |
'iso2' => 'VE', | |
'iso3' => 'VEN', | |
'tld' => 've', | |
'fips' => 'VE', | |
'iso' => '862', | |
'geo_name_id' => '3625428', | |
'e164' => '58', | |
'dial_code' => '58', | |
'continent' => 'South America', | |
'capital' => 'Caracas', | |
'timezone' => 'America/Caracas', | |
'currency' => 'Bolivar', | |
'lang_codes' => [ | |
'es-VE', | |
], | |
'languages' => 'Spanish (official), numerous indigenous dialects', | |
], | |
[ | |
'id' => 235, | |
'name' => 'Vietnam', | |
'iso2' => 'VN', | |
'iso3' => 'VNM', | |
'tld' => 'vn', | |
'fips' => 'VM', | |
'iso' => '704', | |
'geo_name_id' => '1562822', | |
'e164' => '84', | |
'dial_code' => '84', | |
'continent' => 'Asia', | |
'capital' => 'Hanoi', | |
'timezone' => 'Asia/Ho_Chi_Minh', | |
'currency' => 'Dong', | |
'lang_codes' => [ | |
'vi', | |
'en', | |
'fr', | |
'zh', | |
'km', | |
], | |
'languages' => 'Vietnamese (official), English (increasingly favored as a second language), some French, Chinese, and Khmer, mountain area languages (Mon-Khmer and Malayo-Polynesian)', | |
], | |
[ | |
'id' => 236, | |
'name' => 'Wallis and Futuna', | |
'iso2' => 'WF', | |
'iso3' => 'WLF', | |
'tld' => 'wf', | |
'fips' => 'WF', | |
'iso' => '876', | |
'geo_name_id' => '4034749', | |
'e164' => '681', | |
'dial_code' => '681', | |
'continent' => 'Oceania', | |
'capital' => 'Mata Utu', | |
'timezone' => 'Pacific/Wallis', | |
'currency' => 'Franc', | |
'lang_codes' => [ | |
'wls', | |
'fud', | |
'fr-WF', | |
], | |
'languages' => 'Wallisian (indigenous Polynesian language) 58.9%, Futunian 30.1%, French (official) 10.8%, other 0.2% (2003 census)', | |
], | |
[ | |
'id' => 237, | |
'name' => 'Western Sahara', | |
'iso2' => 'EH', | |
'iso3' => 'ESH', | |
'tld' => 'eh', | |
'fips' => 'WI', | |
'iso' => '732', | |
'geo_name_id' => '2461445', | |
'e164' => '212', | |
'dial_code' => '212', | |
'continent' => 'Africa', | |
'capital' => 'El-Aaiun', | |
'timezone' => 'Africa/El_Aaiun', | |
'currency' => 'Dirham', | |
'lang_codes' => [ | |
'ar', | |
'mey', | |
], | |
'languages' => 'Standard Arabic (national), Hassaniya Arabic, Moroccan Arabic', | |
], | |
[ | |
'id' => 238, | |
'name' => 'Yemen', | |
'iso2' => 'YE', | |
'iso3' => 'YEM', | |
'tld' => 'ye', | |
'fips' => 'YM', | |
'iso' => '887', | |
'geo_name_id' => '69543', | |
'e164' => '967', | |
'dial_code' => '967', | |
'continent' => 'Asia', | |
'capital' => 'Sanaa', | |
'timezone' => 'Asia/Aden', | |
'currency' => 'Rial', | |
'lang_codes' => [ | |
'ar-YE', | |
], | |
'languages' => 'Arabic (official)', | |
], | |
[ | |
'id' => 239, | |
'name' => 'Zambia', | |
'iso2' => 'ZM', | |
'iso3' => 'ZMB', | |
'tld' => 'zm', | |
'fips' => 'ZA', | |
'iso' => '894', | |
'geo_name_id' => '895949', | |
'e164' => '260', | |
'dial_code' => '260', | |
'continent' => 'Africa', | |
'capital' => 'Lusaka', | |
'timezone' => 'Africa/Lusaka', | |
'currency' => 'Kwacha', | |
'lang_codes' => [ | |
'en-ZM', | |
'bem', | |
'loz', | |
'lun', | |
'lue', | |
'ny', | |
'toi', | |
], | |
'languages' => 'Bembe 33.4%, Nyanja 14.7%, Tonga 11.4%, Lozi 5.5%, Chewa 4.5%, Nsenga 2.9%, Tumbuka 2.5%, Lunda (North Western) 1.9%, Kaonde 1.8%, Lala 1.8%, Lamba 1.8%, English (official) 1.7%, Luvale 1.5%, Mambwe 1.3%, Namwanga 1.2%, Lenje 1.1%, Bisa 1%, other 9.2%, unspecified 0.4%', | |
], | |
[ | |
'id' => 240, | |
'name' => 'Zimbabwe', | |
'iso2' => 'ZW', | |
'iso3' => 'ZWE', | |
'tld' => 'zw', | |
'fips' => 'ZI', | |
'iso' => '716', | |
'geo_name_id' => '878675', | |
'e164' => '263', | |
'dial_code' => '263', | |
'continent' => 'Africa', | |
'capital' => 'Harare', | |
'timezone' => 'Africa/Harare', | |
'currency' => 'Dollar', | |
'lang_codes' => [ | |
'en-ZW', | |
'sn', | |
'nr', | |
'nd', | |
], | |
'languages' => 'English (official), Shona, Sindebele (the language of the Ndebele, sometimes called Ndebele), numerous but minor tribal dialects', | |
], | |
]; | |
foreach ($seeds as $seed) { | |
Country::create($seed); | |
} | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment