migrant-web/database/seeders/NationalitySeeder.php
2026-06-17 22:20:17 +05:30

251 lines
54 KiB
PHP

<?php
namespace Database\Seeders;
use Illuminate\Database\Seeder;
use Illuminate\Support\Facades\DB;
class NationalitySeeder extends Seeder
{
/**
* Run the database seeds.
*/
public function run(): void
{
DB::table('nationalities')->truncate();
$nationalities = [
['code' => 'AF', 'iso3' => 'AFG', 'name' => 'Afghan', 'hi' => 'अफ़ग़ान', 'sw' => 'Waafgani', 'tl' => 'Afghan', 'ta' => 'ஆப்கானியர்', 'created_at' => now(), 'updated_at' => now()],
['code' => 'AL', 'iso3' => 'ALB', 'name' => 'Albanian', 'hi' => 'अल्बानियाई', 'sw' => 'Mwalbania', 'tl' => 'Albanian', 'ta' => 'அல்பேனியன்', 'created_at' => now(), 'updated_at' => now()],
['code' => 'DZ', 'iso3' => 'DZA', 'name' => 'Algerian', 'hi' => 'अल्जीरियाई', 'sw' => 'Mwaljeria', 'tl' => 'Algerian', 'ta' => 'அல்ஜீரியன்', 'created_at' => now(), 'updated_at' => now()],
['code' => 'US', 'iso3' => 'USA', 'name' => 'American', 'hi' => 'अमेरिकी', 'sw' => 'Mmarekani', 'tl' => 'Amerikano', 'ta' => 'அமெரிக்கன்', 'created_at' => now(), 'updated_at' => now()],
['code' => 'AD', 'iso3' => 'AND', 'name' => 'Andorran', 'hi' => 'अंडोरन', 'sw' => 'Mandora', 'tl' => 'Andorran', 'ta' => 'அண்டோரன்', 'created_at' => now(), 'updated_at' => now()],
['code' => 'AO', 'iso3' => 'AGO', 'name' => 'Angolan', 'hi' => 'अंगोलन', 'sw' => 'Mwangola', 'tl' => 'Angolan', 'ta' => 'अंगोलन', 'created_at' => now(), 'updated_at' => now()],
['code' => 'AI', 'iso3' => 'AIA', 'name' => 'Anguillan', 'hi' => 'अंगुइला का', 'sw' => 'Manguilla', 'tl' => 'Anguillan', 'ta' => 'அங்குயிலன்', 'created_at' => now(), 'updated_at' => now()],
['code' => 'AG', 'iso3' => 'ATG', 'name' => 'Citizen of Antigua and Barbuda', 'hi' => 'एंटीगुआ और बारबुडा का नागरिक', 'sw' => 'Mwananchi wa Antigua na Barbuda', 'tl' => 'Citizen of Antigua and Barbuda', 'ta' => 'ஆன்டிகுவா மற்றும் பார்புடா குடிமகன்', 'created_at' => now(), 'updated_at' => now()],
['code' => 'AR', 'iso3' => 'ARG', 'name' => 'Argentine', 'hi' => 'अर्जेंटीना का', 'sw' => 'Mwargentina', 'tl' => 'Argentine', 'ta' => 'அர்ஜென்டினியர்', 'created_at' => now(), 'updated_at' => now()],
['code' => 'AM', 'iso3' => 'ARM', 'name' => 'Armenian', 'hi' => 'अर्मेनियाई', 'sw' => 'Mwarmenia', 'tl' => 'Armenian', 'ta' => 'அர்மீனியன்', 'created_at' => now(), 'updated_at' => now()],
['code' => 'AU', 'iso3' => 'AUS', 'name' => 'Australian', 'hi' => 'ऑस्ट्रेलियाई', 'sw' => 'Mwaustralia', 'tl' => 'Australian', 'ta' => 'ஆஸ்திரேலியர்', 'created_at' => now(), 'updated_at' => now()],
['code' => 'AT', 'iso3' => 'AUT', 'name' => 'Austrian', 'hi' => 'ऑस्ट्रियाई', 'sw' => 'Mwaustria', 'tl' => 'Austrian', 'ta' => 'ஆஸ்திரியன்', 'created_at' => now(), 'updated_at' => now()],
['code' => 'AZ', 'iso3' => 'AZE', 'name' => 'Azerbaijani', 'hi' => 'अज़रबैजानी', 'sw' => 'Mwazeria', 'tl' => 'Azerbaijani', 'ta' => 'அஜர்பைஜானி', 'created_at' => now(), 'updated_at' => now()],
['code' => 'BS', 'iso3' => 'BHS', 'name' => 'Bahamian', 'hi' => 'बहामियन', 'sw' => 'Mbahama', 'tl' => 'Bahamian', 'ta' => 'பஹாமியன்', 'created_at' => now(), 'updated_at' => now()],
['code' => 'BH', 'iso3' => 'BHR', 'name' => 'Bahraini', 'hi' => 'बहरीनी', 'sw' => 'Mbahraini', 'tl' => 'Bahraini', 'ta' => 'பஹ்ரைனி', 'created_at' => now(), 'updated_at' => now()],
['code' => 'BD', 'iso3' => 'BGD', 'name' => 'Bangladeshi', 'hi' => 'बांग्लादेशी', 'sw' => 'Mbangladeshi', 'tl' => 'Bangladeshi', 'ta' => 'பங்களாதேஷ்', 'created_at' => now(), 'updated_at' => now()],
['code' => 'BB', 'iso3' => 'BRB', 'name' => 'Barbadian', 'hi' => 'बारबेडियन', 'sw' => 'Mbarbados', 'tl' => 'Barbadian', 'ta' => 'பார்பேடியன்', 'created_at' => now(), 'updated_at' => now()],
['code' => 'BY', 'iso3' => 'BLR', 'name' => 'Belarusian', 'hi' => 'बेलारूसी', 'sw' => 'Mbelarusi', 'tl' => 'Belarusian', 'ta' => 'பெலாரஷ்யன்', 'created_at' => now(), 'updated_at' => now()],
['code' => 'BE', 'iso3' => 'BEL', 'name' => 'Belgian', 'hi' => 'बेल्जियम का', 'sw' => 'Mbelgiji', 'tl' => 'Belgian', 'ta' => 'பெல்ஜியன்', 'created_at' => now(), 'updated_at' => now()],
['code' => 'BZ', 'iso3' => 'BLZ', 'name' => 'Belizean', 'hi' => 'बेलीज़ का', 'sw' => 'Mbelize', 'tl' => 'Belizean', 'ta' => 'பெலிஸியன்', 'created_at' => now(), 'updated_at' => now()],
['code' => 'BJ', 'iso3' => 'BEN', 'name' => 'Beninese', 'hi' => 'बेनीनी', 'sw' => 'Mbenini', 'tl' => 'Beninese', 'ta' => 'பெனினீஸ்', 'created_at' => now(), 'updated_at' => now()],
['code' => 'BM', 'iso3' => 'BMU', 'name' => 'Bermudian', 'hi' => 'बरमूडा का', 'sw' => 'Mbermuda', 'tl' => 'Bermudian', 'ta' => 'பெர்முடியன்', 'created_at' => now(), 'updated_at' => now()],
['code' => 'BT', 'iso3' => 'BTN', 'name' => 'Bhutanese', 'hi' => 'भूटानी', 'sw' => 'Mbhutani', 'tl' => 'Bhutanese', 'ta' => 'பூட்டானியர்', 'created_at' => now(), 'updated_at' => now()],
['code' => 'BO', 'iso3' => 'BOL', 'name' => 'Bolivian', 'hi' => 'बोलिवियाई', 'sw' => 'Mbolivia', 'tl' => 'Bolivian', 'ta' => 'பொலிவியன்', 'created_at' => now(), 'updated_at' => now()],
['code' => 'BA', 'iso3' => 'BIH', 'name' => 'Citizen of Bosnia and Herzegovina', 'hi' => 'बोस्निया और हर्जेगोविना का नागरिक', 'sw' => 'Mwananchi wa Bosnia na Herzegovina', 'tl' => 'Citizen of Bosnia and Herzegovina', 'ta' => 'போஸ்னியா மற்றும் ஹெர்சகோவினா குடிமகன்', 'created_at' => now(), 'updated_at' => now()],
['code' => 'BW', 'iso3' => 'BWA', 'name' => 'Botswanan', 'hi' => 'बोत्सवाना का', 'sw' => 'Mswana', 'tl' => 'Botswanan', 'ta' => 'போட்ஸ்வானா', 'created_at' => now(), 'updated_at' => now()],
['code' => 'BR', 'iso3' => 'BRA', 'name' => 'Brazilian', 'hi' => 'ब्राज़ीलियाई', 'sw' => 'Mbrazili', 'tl' => 'Brazilian', 'ta' => 'பிரேசிலியன்', 'created_at' => now(), 'updated_at' => now()],
['code' => 'GB', 'iso3' => 'GBR', 'name' => 'British', 'hi' => 'ब्रिटिश', 'sw' => 'Mwingereza', 'tl' => 'British', 'ta' => 'பிரிட்டிஷ்', 'created_at' => now(), 'updated_at' => now()],
['code' => 'VG', 'iso3' => 'VGB', 'name' => 'British Virgin Islander', 'hi' => 'ब्रिटिश वर्जिन द्वीप समूह का नागरिक', 'sw' => 'Mkaazi wa Visiwa vya Virgin vya Uingereza', 'tl' => 'British Virgin Islander', 'ta' => 'பிரிட்டிஷ் விர்ஜின் தீவுவாசி', 'created_at' => now(), 'updated_at' => now()],
['code' => 'BN', 'iso3' => 'BRN', 'name' => 'Bruneian', 'hi' => 'ब्रुनेई का', 'sw' => 'Mbrunei', 'tl' => 'Bruneian', 'ta' => 'புருனேயன்', 'created_at' => now(), 'updated_at' => now()],
['code' => 'BG', 'iso3' => 'BGR', 'name' => 'Bulgarian', 'hi' => 'बुल्गारियाई', 'sw' => 'Mbulgaria', 'tl' => 'Bulgarian', 'ta' => 'பல்கேரியன்', 'created_at' => now(), 'updated_at' => now()],
['code' => 'BF', 'iso3' => 'BFA', 'name' => 'Burkinan', 'hi' => 'बुर्किना का', 'sw' => 'Mburkina', 'tl' => 'Burkinan', 'ta' => 'புர்கினன்', 'created_at' => now(), 'updated_at' => now()],
['code' => 'MM', 'iso3' => 'MMR', 'name' => 'Burmese', 'hi' => 'बर्मी', 'sw' => 'Mburma', 'tl' => 'Burmese', 'ta' => 'பர்மீஸ்', 'created_at' => now(), 'updated_at' => now()],
['code' => 'BI', 'iso3' => 'BDI', 'name' => 'Burundian', 'hi' => 'बुरुंडी का', 'sw' => 'Mrundi', 'tl' => 'Burundian', 'ta' => 'புருண்டியன்', 'created_at' => now(), 'updated_at' => now()],
['code' => 'KH', 'iso3' => 'KHM', 'name' => 'Cambodian', 'hi' => 'कंबोडियाई', 'sw' => 'Mkambodia', 'tl' => 'Cambodian', 'ta' => 'கம்போடியன்', 'created_at' => now(), 'updated_at' => now()],
['code' => 'CM', 'iso3' => 'CMR', 'name' => 'Cameroonian', 'hi' => 'कैमरून का', 'sw' => 'Mkameruni', 'tl' => 'Cameroonian', 'ta' => 'கேமரூனியன்', 'created_at' => now(), 'updated_at' => now()],
['code' => 'CA', 'iso3' => 'CAN', 'name' => 'Canadian', 'hi' => 'कनाडाई', 'sw' => 'Mkanada', 'tl' => 'Canadian', 'ta' => 'கனடியன்', 'created_at' => now(), 'updated_at' => now()],
['code' => 'CV', 'iso3' => 'CPV', 'name' => 'Cape Verdean', 'hi' => 'केप वर्ड का', 'sw' => 'Mkaboverde', 'tl' => 'Cape Verdean', 'ta' => 'கேப் வெர்டியன்', 'created_at' => now(), 'updated_at' => now()],
['code' => 'KY', 'iso3' => 'CYM', 'name' => 'Cayman Islander', 'hi' => 'केमैन द्वीप समूह का नागरिक', 'sw' => 'Mkaazi wa Visiwa vya Cayman', 'tl' => 'Cayman Islander', 'ta' => 'கேமன் தீவுவாசி', 'created_at' => now(), 'updated_at' => now()],
['code' => 'CF', 'iso3' => 'CAF', 'name' => 'Central African', 'hi' => 'मध्य अफ्रीकी', 'sw' => 'Mkaazi wa Afrika ya Kati', 'tl' => 'Central African', 'ta' => 'மத்திய ஆப்பிரிக்கர்', 'created_at' => now(), 'updated_at' => now()],
['code' => 'TD', 'iso3' => 'TCD', 'name' => 'Chadian', 'hi' => 'चाड का', 'sw' => 'Mchadi', 'tl' => 'Chadian', 'ta' => 'சாடியன்', 'created_at' => now(), 'updated_at' => now()],
['code' => 'CL', 'iso3' => 'CHL', 'name' => 'Chilean', 'hi' => 'चिली का', 'sw' => 'Mchile', 'tl' => 'Chilean', 'ta' => 'சிலியன்', 'created_at' => now(), 'updated_at' => now()],
['code' => 'CN', 'iso3' => 'CHN', 'name' => 'Chinese', 'hi' => 'चीनी', 'sw' => 'Mchina', 'tl' => 'Intsik', 'ta' => 'சீனர்', 'created_at' => now(), 'updated_at' => now()],
['code' => 'CO', 'iso3' => 'COL', 'name' => 'Colombian', 'hi' => 'कोलंबियाई', 'sw' => 'Mkolombia', 'tl' => 'Colombian', 'ta' => 'கொலம்பியன்', 'created_at' => now(), 'updated_at' => now()],
['code' => 'KM', 'iso3' => 'COM', 'name' => 'Comoran', 'hi' => 'कोमोरियन', 'sw' => 'Mkomoro', 'tl' => 'Comoran', 'ta' => 'கொமோரியன்', 'created_at' => now(), 'updated_at' => now()],
['code' => 'CG', 'iso3' => 'COG', 'name' => 'Congolese (Congo)', 'hi' => 'कांगो का', 'sw' => 'Mkongo', 'tl' => 'Congolese', 'ta' => 'காங்கோலிஸ் (காங்கோ)', 'created_at' => now(), 'updated_at' => now()],
['code' => 'CD', 'iso3' => 'CDX', 'name' => 'Congolese (DRC)', 'hi' => 'डीआर कांगो का', 'sw' => 'Mkongo wa DRC', 'tl' => 'Congolese', 'ta' => 'காங்கோலிஸ் (டிஆர்सी)', 'created_at' => now(), 'updated_at' => now()],
['code' => 'CK', 'iso3' => 'COK', 'name' => 'Cook Islander', 'hi' => 'कुक द्वीप समूह का', 'sw' => 'Mkaazi wa Visiwa vya Cook', 'tl' => 'Cook Islander', 'ta' => 'குக் தீவுவாசி', 'created_at' => now(), 'updated_at' => now()],
['code' => 'CR', 'iso3' => 'CRI', 'name' => 'Costa Rican', 'hi' => 'कोस्टा रिका का', 'sw' => 'Mkostarika', 'tl' => 'Costa Rican', 'ta' => 'கோஸ்டா ரிகான்', 'created_at' => now(), 'updated_at' => now()],
['code' => 'HR', 'iso3' => 'HRV', 'name' => 'Croatian', 'hi' => 'क्रोएशियाई', 'sw' => 'Mkroatia', 'tl' => 'Croatian', 'ta' => 'குரோஷியன்', 'created_at' => now(), 'updated_at' => now()],
['code' => 'CU', 'iso3' => 'CUB', 'name' => 'Cuban', 'hi' => 'क्यूबा का', 'sw' => 'Mkyuba', 'tl' => 'Cuban', 'ta' => 'कியூபன்', 'created_at' => now(), 'updated_at' => now()],
['code' => 'CY-W', 'iso3' => 'CY-WX', 'name' => 'Cymraes', 'hi' => 'वेल्श महिला', 'sw' => 'Mwelshi wa Kike', 'tl' => 'Cymraes', 'ta' => 'வெல்ஷ் பெண்', 'created_at' => now(), 'updated_at' => now()],
['code' => 'CY-M', 'iso3' => 'CY-MX', 'name' => 'Cymro', 'hi' => 'वेल्श पुरुष', 'sw' => 'Mwelshi wa Kiume', 'tl' => 'Cymro', 'ta' => 'வெல்ஷ் ஆண்', 'created_at' => now(), 'updated_at' => now()],
['code' => 'CY', 'iso3' => 'CYP', 'name' => 'Cypriot', 'hi' => 'साइप्रस का', 'sw' => 'Msaiprasi', 'tl' => 'Cypriot', 'ta' => 'சைப்ரியாட்', 'created_at' => now(), 'updated_at' => now()],
['code' => 'CZ', 'iso3' => 'CZE', 'name' => 'Czech', 'hi' => 'चेक', 'sw' => 'Mcheki', 'tl' => 'Czech', 'ta' => 'செக்', 'created_at' => now(), 'updated_at' => now()],
['code' => 'DK', 'iso3' => 'DNK', 'name' => 'Danish', 'hi' => 'डेनिश', 'sw' => 'Mdeni', 'tl' => 'Danish', 'ta' => 'டேனிஷ்', 'created_at' => now(), 'updated_at' => now()],
['code' => 'DJ', 'iso3' => 'DJI', 'name' => 'Djiboutian', 'hi' => 'जिबूती का', 'sw' => 'Mdjibuti', 'tl' => 'Djiboutian', 'ta' => 'ஜிபூட்டியன்', 'created_at' => now(), 'updated_at' => now()],
['code' => 'DM', 'iso3' => 'DMA', 'name' => 'Dominican', 'hi' => 'डोमिनिकन', 'sw' => 'Mdominika', 'tl' => 'Dominican', 'ta' => 'டொமினிக்கன்', 'created_at' => now(), 'updated_at' => now()],
['code' => 'DO', 'iso3' => 'DOM', 'name' => 'Citizen of the Dominican Republic', 'hi' => 'डोमिनिकन गणराज्य का नागरिक', 'sw' => 'Mwananchi wa Jamhuri ya Dominika', 'tl' => 'Citizen of the Dominican Republic', 'ta' => 'டொமினிக்கன் குடியரசு குடிமகன்', 'created_at' => now(), 'updated_at' => now()],
['code' => 'NL', 'iso3' => 'NLD', 'name' => 'Dutch', 'hi' => 'डच', 'sw' => 'Mholanzi', 'tl' => 'Dutch', 'ta' => 'டச்சு', 'created_at' => now(), 'updated_at' => now()],
['code' => 'TL', 'iso3' => 'TLS', 'name' => 'East Timorese', 'hi' => 'पूर्वी तिमोर का', 'sw' => 'Mtimor-Mashariki', 'tl' => 'East Timorese', 'ta' => 'கிழக்கு திமோர்', 'created_at' => now(), 'updated_at' => now()],
['code' => 'EC', 'iso3' => 'ECU', 'name' => 'Ecuadorean', 'hi' => 'इक्वाडोर का', 'sw' => 'Mekwado', 'tl' => 'Ecuadorean', 'ta' => 'ஈக்வடோரியன்', 'created_at' => now(), 'updated_at' => now()],
['code' => 'EG', 'iso3' => 'EGY', 'name' => 'Egyptian', 'hi' => 'मिस्र का', 'sw' => 'Mmisri', 'tl' => 'Egyptian', 'ta' => 'எகிப்தியன்', 'created_at' => now(), 'updated_at' => now()],
['code' => 'AE', 'iso3' => 'ARE', 'name' => 'Emirati', 'hi' => 'अमीराती', 'sw' => 'Mwarabu wa UAE', 'tl' => 'Emirati', 'ta' => 'எமிராட்டி', 'created_at' => now(), 'updated_at' => now()],
['code' => 'EN', 'iso3' => 'ENX', 'name' => 'English', 'hi' => 'अंग्रेजी', 'sw' => 'Mwingereza', 'tl' => 'English', 'ta' => 'ஆங்கிலேயர்', 'created_at' => now(), 'updated_at' => now()],
['code' => 'GQ', 'iso3' => 'GNQ', 'name' => 'Equatorial Guinean', 'hi' => 'भूमध्यरेखीय गिनी का', 'sw' => 'Mginikweta', 'tl' => 'Equatorial Guinean', 'ta' => 'எக்குவடோரியல் கினியன்', 'created_at' => now(), 'updated_at' => now()],
['code' => 'ER', 'iso3' => 'ERI', 'name' => 'Eritrean', 'hi' => 'इरिट्रियाई', 'sw' => 'Mueritrea', 'tl' => 'Eritrean', 'ta' => 'எரித்திரியன்', 'created_at' => now(), 'updated_at' => now()],
['code' => 'EE', 'iso3' => 'EST', 'name' => 'Estonian', 'hi' => 'एस्टोनियाई', 'sw' => 'Mestonia', 'tl' => 'Estonian', 'ta' => 'எஸ்டோனியன்', 'created_at' => now(), 'updated_at' => now()],
['code' => 'ET', 'iso3' => 'ETH', 'name' => 'Ethiopian', 'hi' => 'इथियोपियाई', 'sw' => 'Mhabeshi', 'tl' => 'Ethiopian', 'ta' => 'எத்தியோப்பியன்', 'created_at' => now(), 'updated_at' => now()],
['code' => 'FO', 'iso3' => 'FRO', 'name' => 'Faroese', 'hi' => 'फेरो द्वीप समूह का', 'sw' => 'Mfaro', 'tl' => 'Faroese', 'ta' => 'பரோயீஸ்', 'created_at' => now(), 'updated_at' => now()],
['code' => 'FJ', 'iso3' => 'FJI', 'name' => 'Fijian', 'hi' => 'फिजी का', 'sw' => 'Mfiji', 'tl' => 'Fijian', 'ta' => 'பிஜியன்', 'created_at' => now(), 'updated_at' => now()],
['code' => 'PH', 'iso3' => 'PHL', 'name' => 'Filipino', 'hi' => 'फ़िलिपिनो', 'sw' => 'Wafilipino', 'tl' => 'Pilipino', 'ta' => 'பிலிப்பைன்ஸ்', 'created_at' => now(), 'updated_at' => now()],
['code' => 'FI', 'iso3' => 'FIN', 'name' => 'Finnish', 'hi' => 'फिनिश', 'sw' => 'Mfini', 'tl' => 'Finnish', 'ta' => 'பின்னிஷ்', 'created_at' => now(), 'updated_at' => now()],
['code' => 'FR', 'iso3' => 'FRA', 'name' => 'French', 'hi' => 'फ्रांसीसी', 'sw' => 'Mfaransa', 'tl' => 'Pranses', 'ta' => 'பிரெஞ்சு', 'created_at' => now(), 'updated_at' => now()],
['code' => 'GA', 'iso3' => 'GAB', 'name' => 'Gabonese', 'hi' => 'गैबॉन का', 'sw' => 'Mgaboni', 'tl' => 'Gabonese', 'ta' => 'கேபோனீஸ்', 'created_at' => now(), 'updated_at' => now()],
['code' => 'GM', 'iso3' => 'GMB', 'name' => 'Gambian', 'hi' => 'गाम्बिया का', 'sw' => 'Mgambia', 'tl' => 'Gambian', 'ta' => 'காம்பியன்', 'created_at' => now(), 'updated_at' => now()],
['code' => 'GE', 'iso3' => 'GEO', 'name' => 'Georgian', 'hi' => 'जॉर्जियाई', 'sw' => 'Mjojia', 'tl' => 'Georgian', 'ta' => 'ஜார்ஜியன்', 'created_at' => now(), 'updated_at' => now()],
['code' => 'DE', 'iso3' => 'DEU', 'name' => 'German', 'hi' => 'जर्मन', 'sw' => 'Mjerumani', 'tl' => 'Aleman', 'ta' => 'ஜெர்மன்', 'created_at' => now(), 'updated_at' => now()],
['code' => 'GH', 'iso3' => 'GHA', 'name' => 'Ghanaian', 'hi' => 'घाना का', 'sw' => 'Mghana', 'tl' => 'Ghanaian', 'ta' => 'கானியன்', 'created_at' => now(), 'updated_at' => now()],
['code' => 'GI', 'iso3' => 'GIB', 'name' => 'Gibraltarian', 'hi' => 'जिब्राल्टर का', 'sw' => 'Mgibralta', 'tl' => 'Gibraltarian', 'ta' => 'ஜிப்ரால்டரியன்', 'created_at' => now(), 'updated_at' => now()],
['code' => 'GR', 'iso3' => 'GRC', 'name' => 'Greek', 'hi' => 'यूनानी', 'sw' => 'Mgiriki', 'tl' => 'Greek', 'ta' => 'கிரேக்கர்', 'created_at' => now(), 'updated_at' => now()],
['code' => 'GL', 'iso3' => 'GRL', 'name' => 'Greenlandic', 'hi' => 'ग्रीनलैंड का', 'sw' => 'Mgreenland', 'tl' => 'Greenlandic', 'ta' => 'கிரீன்லாந்திக்', 'created_at' => now(), 'updated_at' => now()],
['code' => 'GD', 'iso3' => 'GRD', 'name' => 'Grenadian', 'hi' => 'ग्रेनाडा का', 'sw' => 'Mgrenada', 'tl' => 'Grenadian', 'ta' => 'கிரெனடியन', 'created_at' => now(), 'updated_at' => now()],
['code' => 'GU', 'iso3' => 'GUM', 'name' => 'Guamanian', 'hi' => 'गुआम का', 'sw' => 'Mguam', 'tl' => 'Guamanian', 'ta' => 'குவாமேனியன்', 'created_at' => now(), 'updated_at' => now()],
['code' => 'GT', 'iso3' => 'GTM', 'name' => 'Guatemalan', 'hi' => 'ग्वाटेमाला का', 'sw' => 'Mguatemala', 'tl' => 'Guatemalan', 'ta' => 'குவாத்தமாலன்', 'created_at' => now(), 'updated_at' => now()],
['code' => 'GW', 'iso3' => 'GNB', 'name' => 'Citizen of Guinea-Bissau', 'hi' => 'गिनी-बिसाऊ का नागरिक', 'sw' => 'Mwananchi wa Guinea-Bissau', 'tl' => 'Citizen of Guinea-Bissau', 'ta' => 'கினி-பிசாவு குடிமகன்', 'created_at' => now(), 'updated_at' => now()],
['code' => 'GN', 'iso3' => 'GIN', 'name' => 'Guinean', 'hi' => 'गिनी का', 'sw' => 'Mginia', 'tl' => 'Guinean', 'ta' => 'கினியன்', 'created_at' => now(), 'updated_at' => now()],
['code' => 'GY', 'iso3' => 'GUY', 'name' => 'Guyanese', 'hi' => 'गुयाना का', 'sw' => 'Mguyana', 'tl' => 'Guyanese', 'ta' => 'கயானீஸ்', 'created_at' => now(), 'updated_at' => now()],
['code' => 'HT', 'iso3' => 'HTI', 'name' => 'Haitian', 'hi' => 'हैती का', 'sw' => 'Mhaiti', 'tl' => 'Haitian', 'ta' => 'ஹைட்டியன்', 'created_at' => now(), 'updated_at' => now()],
['code' => 'HN', 'iso3' => 'HND', 'name' => 'Honduran', 'hi' => 'होंडुरास का', 'sw' => 'Mhondurasi', 'tl' => 'Honduran', 'ta' => 'ஹोண்டுரான்', 'created_at' => now(), 'updated_at' => now()],
['code' => 'HK', 'iso3' => 'HKG', 'name' => 'Hong Konger', 'hi' => 'हांगकांग का', 'sw' => 'Mkaazi wa Hong Kong', 'tl' => 'Hong Konger', 'ta' => 'ஹாங்காங்கர்', 'created_at' => now(), 'updated_at' => now()],
['code' => 'HU', 'iso3' => 'HUN', 'name' => 'Hungarian', 'hi' => 'हंगेरियन', 'sw' => 'Mhungaria', 'tl' => 'Hungarian', 'ta' => 'ஹங்கேரியன்', 'created_at' => now(), 'updated_at' => now()],
['code' => 'IS', 'iso3' => 'ISL', 'name' => 'Icelandic', 'hi' => 'आइसलैंड का', 'sw' => 'Miaislandi', 'tl' => 'Icelandic', 'ta' => 'ஐஸ்லாந்திக்', 'created_at' => now(), 'updated_at' => now()],
['code' => 'IN', 'iso3' => 'IND', 'name' => 'Indian', 'hi' => 'भारतीय', 'sw' => 'Kihindi', 'tl' => 'Kano/Indian', 'ta' => 'இந்தியன்', 'created_at' => now(), 'updated_at' => now()],
['code' => 'ID', 'iso3' => 'IDN', 'name' => 'Indonesian', 'hi' => 'इंडोनेशियाई', 'sw' => 'Mwindonesia', 'tl' => 'Indonesian', 'ta' => 'இந்தோனேசிய', 'created_at' => now(), 'updated_at' => now()],
['code' => 'IR', 'iso3' => 'IRN', 'name' => 'Iranian', 'hi' => 'ईरानी', 'sw' => 'Mwirani', 'tl' => 'Iranian', 'ta' => 'ஈரானியர்', 'created_at' => now(), 'updated_at' => now()],
['code' => 'IQ', 'iso3' => 'IRQ', 'name' => 'Iraqi', 'hi' => 'इराकी', 'sw' => 'Mwiraki', 'tl' => 'Iraqi', 'ta' => 'ஈராக்கியர்', 'created_at' => now(), 'updated_at' => now()],
['code' => 'IE', 'iso3' => 'IRL', 'name' => 'Irish', 'hi' => 'आयरिश', 'sw' => 'Miairishi', 'tl' => 'Irish', 'ta' => 'ஐரிஷ்', 'created_at' => now(), 'updated_at' => now()],
['code' => 'IL', 'iso3' => 'ISR', 'name' => 'Israeli', 'hi' => 'इजरायली', 'sw' => 'Mwisraeli', 'tl' => 'Israeli', 'ta' => 'இஸ்ரேலி', 'created_at' => now(), 'updated_at' => now()],
['code' => 'IT', 'iso3' => 'ITA', 'name' => 'Italian', 'hi' => 'इतालवी', 'sw' => 'Mwitaliano', 'tl' => 'Italian', 'ta' => 'இத்தாலியன்', 'created_at' => now(), 'updated_at' => now()],
['code' => 'CI', 'iso3' => 'CIX', 'name' => 'Ivorian', 'hi' => 'आइवेरियन', 'sw' => 'Mkodivaa', 'tl' => 'Ivorian', 'ta' => 'ஐவோரியன்', 'created_at' => now(), 'updated_at' => now()],
['code' => 'JM', 'iso3' => 'JAM', 'name' => 'Jamaican', 'hi' => 'जमैकन', 'sw' => 'Mjamaika', 'tl' => 'Jamaican', 'ta' => 'ஜமைக்கன்', 'created_at' => now(), 'updated_at' => now()],
['code' => 'JP', 'iso3' => 'JPN', 'name' => 'Japanese', 'hi' => 'जापानी', 'sw' => 'Mjapani', 'tl' => 'Hapon', 'ta' => 'ஜப்பானியர்', 'created_at' => now(), 'updated_at' => now()],
['code' => 'JO', 'iso3' => 'JOR', 'name' => 'Jordanian', 'hi' => 'जॉर्डन का', 'sw' => 'Mjordani', 'tl' => 'Jordanian', 'ta' => 'ஜோர்டானியன்', 'created_at' => now(), 'updated_at' => now()],
['code' => 'KZ', 'iso3' => 'KAZ', 'name' => 'Kazakh', 'hi' => 'कज़ाख', 'sw' => 'Mkazakhi', 'tl' => 'Kazakh', 'ta' => 'கசாக்', 'created_at' => now(), 'updated_at' => now()],
['code' => 'KE', 'iso3' => 'KEN', 'name' => 'Kenyan', 'hi' => 'केन्याई', 'sw' => 'Mkenya', 'tl' => 'Kenyan', 'ta' => 'கென்யன்', 'created_at' => now(), 'updated_at' => now()],
['code' => 'KN', 'iso3' => 'KNA', 'name' => 'Kittitian', 'hi' => 'किटिटियन', 'sw' => 'Mkittits', 'tl' => 'Kittitian', 'ta' => 'கிட்டிஷியன்', 'created_at' => now(), 'updated_at' => now()],
['code' => 'KI', 'iso3' => 'KIR', 'name' => 'Citizen of Kiribati', 'hi' => 'किरिबाती का नागरिक', 'sw' => 'Mwananchi wa Kiribati', 'tl' => 'Citizen of Kiribati', 'ta' => 'கிரிபதி குடிமகன்', 'created_at' => now(), 'updated_at' => now()],
['code' => 'XK', 'iso3' => 'XKX', 'name' => 'Kosovan', 'hi' => 'कोसोवो का', 'sw' => 'Mkosovo', 'tl' => 'Kosovan', 'ta' => 'கொசோவன்', 'created_at' => now(), 'updated_at' => now()],
['code' => 'KW', 'iso3' => 'KWT', 'name' => 'Kuwaiti', 'hi' => 'कुवैती', 'sw' => 'Mkuwaiti', 'tl' => 'Kuwaiti', 'ta' => 'குவைத்தி', 'created_at' => now(), 'updated_at' => now()],
['code' => 'KG', 'iso3' => 'KGZ', 'name' => 'Kyrgyz', 'hi' => 'किर्गिज़', 'sw' => 'Mkirgizi', 'tl' => 'Kyrgyz', 'ta' => 'கிர்கிஸ்', 'created_at' => now(), 'updated_at' => now()],
['code' => 'LA', 'iso3' => 'LAO', 'name' => 'Lao', 'hi' => 'लाओ', 'sw' => 'Mlao', 'tl' => 'Lao', 'ta' => 'லாவோ', 'created_at' => now(), 'updated_at' => now()],
['code' => 'LV', 'iso3' => 'LVA', 'name' => 'Latvian', 'hi' => 'लातवियाई', 'sw' => 'Mlatvia', 'tl' => 'Latvian', 'ta' => 'லாட்வியன்', 'created_at' => now(), 'updated_at' => now()],
['code' => 'LB', 'iso3' => 'LBN', 'name' => 'Lebanese', 'hi' => 'लेबनानी', 'sw' => 'Mlebanoni', 'tl' => 'Lebanese', 'ta' => 'லெபனானியர்', 'created_at' => now(), 'updated_at' => now()],
['code' => 'LR', 'iso3' => 'LBR', 'name' => 'Liberian', 'hi' => 'लाइबेरियाई', 'sw' => 'Mliberia', 'tl' => 'Liberian', 'ta' => 'லைபீரியன்', 'created_at' => now(), 'updated_at' => now()],
['code' => 'LY', 'iso3' => 'LBY', 'name' => 'Libyan', 'hi' => 'लीबिया का', 'sw' => 'Mlibya', 'tl' => 'Libyan', 'ta' => 'லிபியன்', 'created_at' => now(), 'updated_at' => now()],
['code' => 'LI', 'iso3' => 'LIE', 'name' => 'Liechtenstein citizen', 'hi' => 'लिकटेंस्टीन का नागरिक', 'sw' => 'Mwananchi wa Liechtenstein', 'tl' => 'Liechtenstein citizen', 'ta' => 'லிச்சென்ஸ்டீன் குடிமகன்', 'created_at' => now(), 'updated_at' => now()],
['code' => 'LT', 'iso3' => 'LTU', 'name' => 'Lithuanian', 'hi' => 'लिथुआनियाई', 'sw' => 'Mlituania', 'tl' => 'Lithuanian', 'ta' => 'லிதுவேனியன்', 'created_at' => now(), 'updated_at' => now()],
['code' => 'LU', 'iso3' => 'LUX', 'name' => 'Luxembourger', 'hi' => 'लक्ज़मबर्ग का', 'sw' => 'Mluxembourg', 'tl' => 'Luxembourger', 'ta' => 'லக்சம்பர்கர்', 'created_at' => now(), 'updated_at' => now()],
['code' => 'MO', 'iso3' => 'MAC', 'name' => 'Macanese', 'hi' => 'मकाऊ का', 'sw' => 'Mmacao', 'tl' => 'Macanese', 'ta' => 'மக்கானீஸ்', 'created_at' => now(), 'updated_at' => now()],
['code' => 'MK', 'iso3' => 'MKD', 'name' => 'Macedonian', 'hi' => 'मैसिडोनियाई', 'sw' => 'Mmasedonia', 'tl' => 'Macedonian', 'ta' => 'மாசிடோனியன்', 'created_at' => now(), 'updated_at' => now()],
['code' => 'MG', 'iso3' => 'MDG', 'name' => 'Malagasy', 'hi' => 'मालागासी', 'sw' => 'Mmalagasi', 'tl' => 'Malagasy', 'ta' => 'மலகாசி', 'created_at' => now(), 'updated_at' => now()],
['code' => 'MW', 'iso3' => 'MWI', 'name' => 'Malawian', 'hi' => 'मलावी का', 'sw' => 'Mmalawi', 'tl' => 'Malawian', 'ta' => 'மலாவி', 'created_at' => now(), 'updated_at' => now()],
['code' => 'MY', 'iso3' => 'MYS', 'name' => 'Malaysian', 'hi' => 'मलेशियाई', 'sw' => 'Mmalaysia', 'tl' => 'Malaysian', 'ta' => 'மலேசியன்', 'created_at' => now(), 'updated_at' => now()],
['code' => 'MV', 'iso3' => 'MDV', 'name' => 'Maldivian', 'hi' => 'मालदीव का', 'sw' => 'Mmaldivi', 'tl' => 'Maldivian', 'ta' => 'மாலத்தீவியர்', 'created_at' => now(), 'updated_at' => now()],
['code' => 'ML', 'iso3' => 'MLI', 'name' => 'Malian', 'hi' => 'माली का', 'sw' => 'Mmali', 'tl' => 'Malian', 'ta' => 'மாலியன்', 'created_at' => now(), 'updated_at' => now()],
['code' => 'MT', 'iso3' => 'MLT', 'name' => 'Maltese', 'hi' => 'माल्टीज़', 'sw' => 'Mmalta', 'tl' => 'Maltese', 'ta' => 'மால்டீஸ்', 'created_at' => now(), 'updated_at' => now()],
['code' => 'MH', 'iso3' => 'MHL', 'name' => 'Marshallese', 'hi' => 'मार्शलीज़', 'sw' => 'Mmarshall', 'tl' => 'Marshallese', 'ta' => 'மார்ஷலீஸ்', 'created_at' => now(), 'updated_at' => now()],
['code' => 'MQ', 'iso3' => 'MTQ', 'name' => 'Martiniquais', 'hi' => 'मार्टीनिक का', 'sw' => 'Mmartinique', 'tl' => 'Martiniquais', 'ta' => 'மார்டினிகாஸ்', 'created_at' => now(), 'updated_at' => now()],
['code' => 'MR', 'iso3' => 'MRT', 'name' => 'Mauritanian', 'hi' => 'मॉरिटानिया का', 'sw' => 'Mmoritania', 'tl' => 'Mauritanian', 'ta' => 'மௌரிடானியன்', 'created_at' => now(), 'updated_at' => now()],
['code' => 'MU', 'iso3' => 'MUS', 'name' => 'Mauritian', 'hi' => 'मॉरीशस का', 'sw' => 'Mmorisi', 'tl' => 'Mauritian', 'ta' => 'மொரிஷியன்', 'created_at' => now(), 'updated_at' => now()],
['code' => 'MX', 'iso3' => 'MEX', 'name' => 'Mexican', 'hi' => 'मैक्सिकन', 'sw' => 'Mmeksiko', 'tl' => 'Mexican', 'ta' => 'மெக்சிகன்', 'created_at' => now(), 'updated_at' => now()],
['code' => 'FM', 'iso3' => 'FSM', 'name' => 'Micronesian', 'hi' => 'माइक्रोनेशियन', 'sw' => 'Mmikronesia', 'tl' => 'Micronesian', 'ta' => 'மைக்ரோனேசியன்', 'created_at' => now(), 'updated_at' => now()],
['code' => 'MD', 'iso3' => 'MDA', 'name' => 'Moldovan', 'hi' => 'मोल्दोवन', 'sw' => 'Mmoldova', 'tl' => 'Moldovan', 'ta' => 'மால்டோவன்', 'created_at' => now(), 'updated_at' => now()],
['code' => 'MC', 'iso3' => 'MCO', 'name' => 'Monegasque', 'hi' => 'मोनेगास्क', 'sw' => 'Mmonaco', 'tl' => 'Monegasque', 'ta' => 'மொனகாஸ்க்', 'created_at' => now(), 'updated_at' => now()],
['code' => 'MN', 'iso3' => 'MNG', 'name' => 'Mongolian', 'hi' => 'मंगोलियाई', 'sw' => 'Mmongolia', 'tl' => 'Mongolian', 'ta' => 'மங்கோலியன்', 'created_at' => now(), 'updated_at' => now()],
['code' => 'ME', 'iso3' => 'MNE', 'name' => 'Montenegrin', 'hi' => 'मोंटेनेग्रिन', 'sw' => 'Mmontenegro', 'tl' => 'Montenegrin', 'ta' => 'மாண்டினீக்ரின்', 'created_at' => now(), 'updated_at' => now()],
['code' => 'MS', 'iso3' => 'MSR', 'name' => 'Montserratian', 'hi' => 'मोंटसेराट का', 'sw' => 'Mmontserrat', 'tl' => 'Montserratian', 'ta' => 'மான்ட்செராட்டியன்', 'created_at' => now(), 'updated_at' => now()],
['code' => 'MA', 'iso3' => 'MAR', 'name' => 'Moroccan', 'hi' => 'मोरक्कन', 'sw' => 'Mmoroko', 'tl' => 'Moroccan', 'ta' => 'மொராக்கோ', 'created_at' => now(), 'updated_at' => now()],
['code' => 'LS', 'iso3' => 'LSO', 'name' => 'Mosotho', 'hi' => 'लेसोथो का', 'sw' => 'Msotho', 'tl' => 'Mosotho', 'ta' => 'மொசோதோ', 'created_at' => now(), 'updated_at' => now()],
['code' => 'MZ', 'iso3' => 'MOZ', 'name' => 'Mozambican', 'hi' => 'मोज़ाम्बिक का', 'sw' => 'Msumbiji', 'tl' => 'Mozambican', 'ta' => 'மொசாம்பிகன்', 'created_at' => now(), 'updated_at' => now()],
['code' => 'NA', 'iso3' => 'NAM', 'name' => 'Namibian', 'hi' => 'नामीबिया का', 'sw' => 'Mnamibia', 'tl' => 'Namibian', 'ta' => 'நமீபியன்', 'created_at' => now(), 'updated_at' => now()],
['code' => 'NR', 'iso3' => 'NRU', 'name' => 'Nauruan', 'hi' => 'नाउरू का', 'sw' => 'Mnauru', 'tl' => 'Nauruan', 'ta' => 'நவூருவன்', 'created_at' => now(), 'updated_at' => now()],
['code' => 'NP', 'iso3' => 'NPL', 'name' => 'Nepalese', 'hi' => 'नेपाली', 'sw' => 'Mnepali', 'tl' => 'Nepalese', 'ta' => 'நேபாளியர்', 'created_at' => now(), 'updated_at' => now()],
['code' => 'NZ', 'iso3' => 'NZL', 'name' => 'New Zealander', 'hi' => 'न्यूजीलैंड का', 'sw' => 'Mnyuzilandi', 'tl' => 'New Zealander', 'ta' => 'நியூசிலாந்தர்', 'created_at' => now(), 'updated_at' => now()],
['code' => 'NI', 'iso3' => 'NIC', 'name' => 'Nicaraguan', 'hi' => 'निकारागुआ का', 'sw' => 'Mnikaragua', 'tl' => 'Nicaraguan', 'ta' => 'நிகரகுவான்', 'created_at' => now(), 'updated_at' => now()],
['code' => 'NG', 'iso3' => 'NGA', 'name' => 'Nigerian', 'hi' => 'नाइजीरियाई', 'sw' => 'Mnaigeria', 'tl' => 'Nigerian', 'ta' => 'நைஜீரியன்', 'created_at' => now(), 'updated_at' => now()],
['code' => 'NE', 'iso3' => 'NER', 'name' => 'Nigerien', 'hi' => 'नाइजर का', 'sw' => 'Mniger', 'tl' => 'Nigerien', 'ta' => 'நைஜீரியன் (நைஜர்)', 'created_at' => now(), 'updated_at' => now()],
['code' => 'NU', 'iso3' => 'NIU', 'name' => 'Niuean', 'hi' => 'नियू का', 'sw' => 'Mniue', 'tl' => 'Niuean', 'ta' => 'நியூயன்', 'created_at' => now(), 'updated_at' => now()],
['code' => 'KP', 'iso3' => 'PRK', 'name' => 'North Korean', 'hi' => 'उत्तर कोरियाई', 'sw' => 'Mwakorea Kaskazini', 'tl' => 'North Korean', 'ta' => 'வட கொரியர்', 'created_at' => now(), 'updated_at' => now()],
['code' => 'GB-NIR', 'iso3' => 'GB-NIRX', 'name' => 'Northern Irish', 'hi' => 'उत्तरी आयरिश', 'sw' => 'Miairishi wa Kaskazini', 'tl' => 'Northern Irish', 'ta' => 'வடக்கு ஐரிஷ்', 'created_at' => now(), 'updated_at' => now()],
['code' => 'NO', 'iso3' => 'NOR', 'name' => 'Norwegian', 'hi' => 'नॉर्वेजियन', 'sw' => 'Mnorwei', 'tl' => 'Norwegian', 'ta' => 'நோர்வேஜியன்', 'created_at' => now(), 'updated_at' => now()],
['code' => 'OM', 'iso3' => 'OMN', 'name' => 'Omani', 'hi' => 'ओमानी', 'sw' => 'Momani', 'tl' => 'Omani', 'ta' => 'ஓமானி', 'created_at' => now(), 'updated_at' => now()],
['code' => 'PK', 'iso3' => 'PAK', 'name' => 'Pakistani', 'hi' => 'पाकिस्तानी', 'sw' => 'Mpakistani', 'tl' => 'Pakistani', 'ta' => 'பாகிஸ்தானி', 'created_at' => now(), 'updated_at' => now()],
['code' => 'PW', 'iso3' => 'PLW', 'name' => 'Palauan', 'hi' => 'पलाऊ का', 'sw' => 'Mpalau', 'tl' => 'Palauan', 'ta' => 'பாலோவன்', 'created_at' => now(), 'updated_at' => now()],
['code' => 'PS', 'iso3' => 'PSE', 'name' => 'Palestinian', 'hi' => 'फिलिस्तीनी', 'sw' => 'Mpalestina', 'tl' => 'Palestinian', 'ta' => 'பாலஸ்தீனியர்', 'created_at' => now(), 'updated_at' => now()],
['code' => 'PA', 'iso3' => 'PAN', 'name' => 'Panamanian', 'hi' => 'पनामा का', 'sw' => 'Mpanama', 'tl' => 'Panamanian', 'ta' => 'பனமேனியன்', 'created_at' => now(), 'updated_at' => now()],
['code' => 'PG', 'iso3' => 'PNG', 'name' => 'Papua New Guinean', 'hi' => 'पापुआ न्यू गिनी का', 'sw' => 'Mpapua', 'tl' => 'Papua New Guinean', 'ta' => 'பப்புவா நியூ கினியன்', 'created_at' => now(), 'updated_at' => now()],
['code' => 'PY', 'iso3' => 'PRY', 'name' => 'Paraguayan', 'hi' => 'पराग्वे का', 'sw' => 'Mparagwai', 'tl' => 'Paraguayan', 'ta' => 'பராகுவேயன்', 'created_at' => now(), 'updated_at' => now()],
['code' => 'PE', 'iso3' => 'PER', 'name' => 'Peruvian', 'hi' => 'पेरू का', 'sw' => 'Mperu', 'tl' => 'Peruvian', 'ta' => 'பெருவியன்', 'created_at' => now(), 'updated_at' => now()],
['code' => 'PN', 'iso3' => 'PCN', 'name' => 'Pitcairn Islander', 'hi' => 'पिटकेर्न द्वीप समूह का', 'sw' => 'Mpitcairn', 'tl' => 'Pitcairn Islander', 'ta' => 'பிட்கேர்ன் தீவுவாசி', 'created_at' => now(), 'updated_at' => now()],
['code' => 'PL', 'iso3' => 'POL', 'name' => 'Polish', 'hi' => 'पोलिश', 'sw' => 'Mpolandi', 'tl' => 'Polish', 'ta' => 'போலிஷ்', 'created_at' => now(), 'updated_at' => now()],
['code' => 'PT', 'iso3' => 'PRT', 'name' => 'Portuguese', 'hi' => 'पुर्तगाली', 'sw' => 'Mreno', 'tl' => 'Portuguese', 'ta' => 'போர்த்துகீசியர்', 'created_at' => now(), 'updated_at' => now()],
['code' => 'PRY', 'iso3' => 'PRYX', 'name' => 'Prydeinig', 'hi' => 'प्राइडेनिग (ब्रिटिश)', 'sw' => 'Mwananchi wa Prydain', 'tl' => 'Prydeinig', 'ta' => 'பிரிட்டிஷ் (வெல்ஷ்)', 'created_at' => now(), 'updated_at' => now()],
['code' => 'PR', 'iso3' => 'PRI', 'name' => 'Puerto Rican', 'hi' => 'प्यूर्टो रिको का', 'sw' => 'Mpuertoriko', 'tl' => 'Puerto Rican', 'ta' => 'போர்ட்டோ ரிகான்', 'created_at' => now(), 'updated_at' => now()],
['code' => 'QA', 'iso3' => 'QAT', 'name' => 'Qatari', 'hi' => 'कतरी', 'sw' => 'Mkatari', 'tl' => 'Qatari', 'ta' => 'கத்தாரி', 'created_at' => now(), 'updated_at' => now()],
['code' => 'RO', 'iso3' => 'ROU', 'name' => 'Romanian', 'hi' => 'रोमानियाई', 'sw' => 'Mromania', 'tl' => 'Romanian', 'ta' => 'ரோமானியன்', 'created_at' => now(), 'updated_at' => now()],
['code' => 'RU', 'iso3' => 'RUS', 'name' => 'Russian', 'hi' => 'रूसी', 'sw' => 'Mrusi', 'tl' => 'Ruso', 'ta' => 'ரஷ்யர்', 'created_at' => now(), 'updated_at' => now()],
['code' => 'RW', 'iso3' => 'RWA', 'name' => 'Rwandan', 'hi' => 'रवांडा का', 'sw' => 'Mnyarwanda', 'tl' => 'Rwandan', 'ta' => 'ருவாண்டன்', 'created_at' => now(), 'updated_at' => now()],
['code' => 'SV', 'iso3' => 'SLV', 'name' => 'Salvadorean', 'hi' => 'अल साल्वाडोर का', 'sw' => 'Msalvador', 'tl' => 'Salvadorean', 'ta' => 'சால்வடோரியன்', 'created_at' => now(), 'updated_at' => now()],
['code' => 'SM', 'iso3' => 'SMR', 'name' => 'Sammarinese', 'hi' => 'सैन मैरिनो का', 'sw' => 'Msanmarino', 'tl' => 'Sammarinese', 'ta' => 'சான் மரினீஸ்', 'created_at' => now(), 'updated_at' => now()],
['code' => 'WS', 'iso3' => 'WSM', 'name' => 'Samoan', 'hi' => 'समोआ का', 'sw' => 'Msamoa', 'tl' => 'Samoan', 'ta' => 'சமோவன்', 'created_at' => now(), 'updated_at' => now()],
['code' => 'ST', 'iso3' => 'STP', 'name' => 'Sao Tomean', 'hi' => 'साओ टोम का', 'sw' => 'Msaotome', 'tl' => 'Sao Tomean', 'ta' => 'சாவோ டோமியன்', 'created_at' => now(), 'updated_at' => now()],
['code' => 'SA', 'iso3' => 'SAU', 'name' => 'Saudi Arabian', 'hi' => 'सऊदी अरब का', 'sw' => 'Msaudi', 'tl' => 'Saudi', 'ta' => 'சவுதி அரேபியன்', 'created_at' => now(), 'updated_at' => now()],
['code' => 'GB-SCT', 'iso3' => 'GB-SCTX', 'name' => 'Scottish', 'hi' => 'स्कॉटिश', 'sw' => 'Mskochi', 'tl' => 'Scottish', 'ta' => 'ஸ்காட்டிஷ்', 'created_at' => now(), 'updated_at' => now()],
['code' => 'SN', 'iso3' => 'SEN', 'name' => 'Senegalese', 'hi' => 'सेनेगल का', 'sw' => 'Msenegali', 'tl' => 'Senegalese', 'ta' => 'செனகலீஸ்', 'created_at' => now(), 'updated_at' => now()],
['code' => 'RS', 'iso3' => 'SRB', 'name' => 'Serbian', 'hi' => 'सर्बियाई', 'sw' => 'Mserbia', 'tl' => 'Serbian', 'ta' => 'செர்பியன்', 'created_at' => now(), 'updated_at' => now()],
['code' => 'SC', 'iso3' => 'SYC', 'name' => 'Citizen of Seychelles', 'hi' => 'सेशेल्स का नागरिक', 'sw' => 'Mshelisheli', 'tl' => 'Citizen of Seychelles', 'ta' => 'சீஷெல்ஸ் குடிமகன்', 'created_at' => now(), 'updated_at' => now()],
['code' => 'SL', 'iso3' => 'SLE', 'name' => 'Sierra Leonean', 'hi' => 'सिएरा लियोन का', 'sw' => 'Msieraleoni', 'tl' => 'Sierra Leonean', 'ta' => 'சியரா லியோனியன்', 'created_at' => now(), 'updated_at' => now()],
['code' => 'SG', 'iso3' => 'SGP', 'name' => 'Singaporean', 'hi' => 'सिंगापुर का', 'sw' => 'Msingapuri', 'tl' => 'Singaporean', 'ta' => 'சிங்கப்பூரியர்', 'created_at' => now(), 'updated_at' => now()],
['code' => 'SK', 'iso3' => 'SVK', 'name' => 'Slovak', 'hi' => 'स्लोवाक', 'sw' => 'Mslovakia', 'tl' => 'Slovak', 'ta' => 'ஸ்லோவாக்', 'created_at' => now(), 'updated_at' => now()],
['code' => 'SI', 'iso3' => 'SVN', 'name' => 'Slovenian', 'hi' => 'स्लोवेनियाई', 'sw' => 'Mslovenia', 'tl' => 'Slovenian', 'ta' => 'ஸ்லோவேனியன்', 'created_at' => now(), 'updated_at' => now()],
['code' => 'SB', 'iso3' => 'SLB', 'name' => 'Solomon Islander', 'hi' => 'सोलोमन द्वीप का', 'sw' => 'Msolomon', 'tl' => 'Solomon Islander', 'ta' => 'சாலமன் தீவுவாசி', 'created_at' => now(), 'updated_at' => now()],
['code' => 'SO', 'iso3' => 'SOM', 'name' => 'Somali', 'hi' => 'सोमाली', 'sw' => 'Msomali', 'tl' => 'Somali', 'ta' => 'சோமாலி', 'created_at' => now(), 'updated_at' => now()],
['code' => 'ZA', 'iso3' => 'ZAF', 'name' => 'South African', 'hi' => 'दक्षिण अफ्रीकी', 'sw' => 'Mswazi', 'tl' => 'South African', 'ta' => 'தென்னாப்பிரிக்கர்', 'created_at' => now(), 'updated_at' => now()],
['code' => 'KR', 'iso3' => 'KOR', 'name' => 'South Korean', 'hi' => 'दक्षिण कोरियाई', 'sw' => 'Mwakorea Kusini', 'tl' => 'South Korean', 'ta' => 'தென் கொரியர்', 'created_at' => now(), 'updated_at' => now()],
['code' => 'SS', 'iso3' => 'SSX', 'name' => 'South Sudanese', 'hi' => 'दक्षिण सूडानी', 'sw' => 'Msudani Kusini', 'tl' => 'South Sudanese', 'ta' => 'தெற்கு சூடானியர்', 'created_at' => now(), 'updated_at' => now()],
['code' => 'ES', 'iso3' => 'ESP', 'name' => 'Spanish', 'hi' => 'स्पैनिश', 'sw' => 'Mhispania', 'tl' => 'Kastila', 'ta' => 'ஸ்பானிஷ்', 'created_at' => now(), 'updated_at' => now()],
['code' => 'LK', 'iso3' => 'LKA', 'name' => 'Sri Lankan', 'hi' => 'श्रीलंकाई', 'sw' => 'Msri Lanka', 'tl' => 'Sri Lankan', 'ta' => 'இலங்கை', 'created_at' => now(), 'updated_at' => now()],
['code' => 'SH', 'iso3' => 'SHN', 'name' => 'St Helenian', 'hi' => 'सेंट हेलेना का', 'sw' => 'Mtakatifu Helena', 'tl' => 'St Helenian', 'ta' => 'செயின்ட் ஹெலினியன்', 'created_at' => now(), 'updated_at' => now()],
['code' => 'LC', 'iso3' => 'LCA', 'name' => 'St Lucian', 'hi' => 'सेंट लूसिया का', 'sw' => 'Mtakatifu Lusia', 'tl' => 'St Lucian', 'ta' => 'செயின்ட் லூசியன்', 'created_at' => now(), 'updated_at' => now()],
['code' => 'ST-L', 'iso3' => 'ST-LX', 'name' => 'Stateless', 'hi' => 'राज्यविहीन', 'sw' => 'Bila Uraia', 'tl' => 'Stateless', 'ta' => 'நாடற்றவர்', 'created_at' => now(), 'updated_at' => now()],
['code' => 'SD', 'iso3' => 'SDN', 'name' => 'Sudanese', 'hi' => 'सूडानी', 'sw' => 'Msudani', 'tl' => 'Sudanese', 'ta' => 'சூடானியர்', 'created_at' => now(), 'updated_at' => now()],
['code' => 'SR', 'iso3' => 'SUR', 'name' => 'Surinamese', 'hi' => 'सूरीनाम का', 'sw' => 'Msuriname', 'tl' => 'Surinamese', 'ta' => 'சுரிநாமீஸ்', 'created_at' => now(), 'updated_at' => now()],
['code' => 'SZ', 'iso3' => 'SWZ', 'name' => 'Swazi', 'hi' => 'स्वाजी', 'sw' => 'Mswazi', 'tl' => 'Swazi', 'ta' => 'சுவாசி', 'created_at' => now(), 'updated_at' => now()],
['code' => 'SE', 'iso3' => 'SWE', 'name' => 'Swedish', 'hi' => 'स्वीडिश', 'sw' => 'Mswidi', 'tl' => 'Swedish', 'ta' => 'சுவீடிஷ்', 'created_at' => now(), 'updated_at' => now()],
['code' => 'CH', 'iso3' => 'CHE', 'name' => 'Swiss', 'hi' => 'स्विस', 'sw' => 'Mswisi', 'tl' => 'Swiss', 'ta' => 'சுவிஸ்', 'created_at' => now(), 'updated_at' => now()],
['code' => 'SY', 'iso3' => 'SYR', 'name' => 'Syrian', 'hi' => 'सीरियाई', 'sw' => 'Msiria', 'tl' => 'Syrian', 'ta' => 'சிரியன்', 'created_at' => now(), 'updated_at' => now()],
['code' => 'TW', 'iso3' => 'TWN', 'name' => 'Taiwanese', 'hi' => 'ताइवानी', 'sw' => 'Mtaiwan', 'tl' => 'Taiwanese', 'ta' => 'தைவானியர்', 'created_at' => now(), 'updated_at' => now()],
['code' => 'TJ', 'iso3' => 'TJK', 'name' => 'Tajik', 'hi' => 'ताजिक', 'sw' => 'Mtajiki', 'tl' => 'Tajik', 'ta' => 'தஜிக்', 'created_at' => now(), 'updated_at' => now()],
['code' => 'TZ', 'iso3' => 'TZA', 'name' => 'Tanzanian', 'hi' => 'तंजानिया का', 'sw' => 'Mtanzania', 'tl' => 'Tanzanian', 'ta' => 'தான்சானியன்', 'created_at' => now(), 'updated_at' => now()],
['code' => 'TH', 'iso3' => 'THA', 'name' => 'Thai', 'hi' => 'थाई', 'sw' => 'Mthai', 'tl' => 'Thai', 'ta' => 'தாய்லாந்தியர்', 'created_at' => now(), 'updated_at' => now()],
['code' => 'TG', 'iso3' => 'TGO', 'name' => 'Togolese', 'hi' => 'टोगो का', 'sw' => 'Mtogo', 'tl' => 'Togolese', 'ta' => 'டோகோலீஸ்', 'created_at' => now(), 'updated_at' => now()],
['code' => 'TO', 'iso3' => 'TON', 'name' => 'Tongan', 'hi' => 'टोंगा का', 'sw' => 'Mtonga', 'tl' => 'Tongan', 'ta' => 'தொங்கன்', 'created_at' => now(), 'updated_at' => now()],
['code' => 'TT', 'iso3' => 'TTO', 'name' => 'Trinidadian', 'hi' => 'त्रिनिदाद का', 'sw' => 'Mtrinidad', 'tl' => 'Trinidadian', 'ta' => 'திரினிடாடியன்', 'created_at' => now(), 'updated_at' => now()],
['code' => 'TA-T', 'iso3' => 'TA-TX', 'name' => 'Tristanian', 'hi' => 'ट्रिस्टन का', 'sw' => 'Mtristan', 'tl' => 'Tristanian', 'ta' => 'டிரிஸ்டானியன்', 'created_at' => now(), 'updated_at' => now()],
['code' => 'TN', 'iso3' => 'TUN', 'name' => 'Tunisian', 'hi' => 'ट्यूनीशियाई', 'sw' => 'Mtunisia', 'tl' => 'Tunisian', 'ta' => 'துனிசியன்', 'created_at' => now(), 'updated_at' => now()],
['code' => 'TR', 'iso3' => 'TUR', 'name' => 'Turkish', 'hi' => 'तुर्की', 'sw' => 'Mturki', 'tl' => 'Turko', 'ta' => 'துருக்கியர்', 'created_at' => now(), 'updated_at' => now()],
['code' => 'TM', 'iso3' => 'TKM', 'name' => 'Turkmen', 'hi' => 'तुर्कमेन', 'sw' => 'Mturkmeni', 'tl' => 'Turkmen', 'ta' => 'துருக்மேனியர்', 'created_at' => now(), 'updated_at' => now()],
['code' => 'TC', 'iso3' => 'TCA', 'name' => 'Turks and Caicos Islander', 'hi' => 'तुर्क और कैकोस का', 'sw' => 'Mkaazi wa Turks na Caicos', 'tl' => 'Turks and Caicos Islander', 'ta' => 'டர்க்ஸ் மற்றும் கைகோஸ் தீவுவாசி', 'created_at' => now(), 'updated_at' => now()],
['code' => 'TV', 'iso3' => 'TUV', 'name' => 'Tuvaluan', 'hi' => 'तुवालु का', 'sw' => 'Mtuvalu', 'tl' => 'Tuvaluan', 'ta' => 'துவாலுவன்', 'created_at' => now(), 'updated_at' => now()],
['code' => 'UG', 'iso3' => 'UGA', 'name' => 'Ugandan', 'hi' => 'युगांडा का', 'sw' => 'Mganda', 'tl' => 'Ugandan', 'ta' => 'உகாண்டா', 'created_at' => now(), 'updated_at' => now()],
['code' => 'UA', 'iso3' => 'UKR', 'name' => 'Ukrainian', 'hi' => 'यूक्रेनी', 'sw' => 'Myukraine', 'tl' => 'Ukrainian', 'ta' => 'உக்ரைனியன்', 'created_at' => now(), 'updated_at' => now()],
['code' => 'UY', 'iso3' => 'URY', 'name' => 'Uruguayan', 'hi' => 'उरुग्वे का', 'sw' => 'Murugwai', 'tl' => 'Uruguayan', 'ta' => 'உருகுவேயன்', 'created_at' => now(), 'updated_at' => now()],
['code' => 'UZ', 'iso3' => 'UZB', 'name' => 'Uzbek', 'hi' => 'उज़्बेक', 'sw' => 'Muzbeki', 'tl' => 'Uzbek', 'ta' => 'உஸ்பெக்', 'created_at' => now(), 'updated_at' => now()],
['code' => 'VA', 'iso3' => 'VAX', 'name' => 'Vatican citizen', 'hi' => 'वेटिकन का नागरिक', 'sw' => 'Mwananchi wa Vatican', 'tl' => 'Vatican citizen', 'ta' => 'வத்திக்கான் குடிமகன்', 'created_at' => now(), 'updated_at' => now()],
['code' => 'VU', 'iso3' => 'VUT', 'name' => 'Citizen of Vanuatu', 'hi' => 'वानुअतु का नागरिक', 'sw' => 'Mwananchi wa Vanuatu', 'tl' => 'Citizen of Vanuatu', 'ta' => 'வனுவாட்டு குடிமகன்', 'created_at' => now(), 'updated_at' => now()],
['code' => 'VE', 'iso3' => 'VEN', 'name' => 'Venezuelan', 'hi' => 'वेनेजुएला का', 'sw' => 'Mvenezuela', 'tl' => 'Venezuelan', 'ta' => 'வெனிசுலான்', 'created_at' => now(), 'updated_at' => now()],
['code' => 'VN', 'iso3' => 'VNM', 'name' => 'Vietnamese', 'hi' => 'वियतनामी', 'sw' => 'Mvietnam', 'tl' => 'Vietnamese', 'ta' => 'வியட்நாமியர்', 'created_at' => now(), 'updated_at' => now()],
['code' => 'VC', 'iso3' => 'VCT', 'name' => 'Vincentian', 'hi' => 'विन्सेंटियन', 'sw' => 'Mvincent', 'tl' => 'Vincentian', 'ta' => 'வின்சென்டியன்', 'created_at' => now(), 'updated_at' => now()],
['code' => 'WF', 'iso3' => 'WFX', 'name' => 'Wallisian', 'hi' => 'वालिसियन', 'sw' => 'Mwallis', 'tl' => 'Wallisian', 'ta' => 'வாலிசியன்', 'created_at' => now(), 'updated_at' => now()],
['code' => 'GB-WLS', 'iso3' => 'WLS', 'name' => 'Welsh', 'hi' => 'वेल्श', 'sw' => 'Mwelshi', 'tl' => 'Welsh', 'ta' => 'வெல்ஷ்', 'created_at' => now(), 'updated_at' => now()],
['code' => 'YE', 'iso3' => 'YEM', 'name' => 'Yemeni', 'hi' => 'यमनी', 'sw' => 'Myemeni', 'tl' => 'Yemeni', 'ta' => 'யேமனி', 'created_at' => now(), 'updated_at' => now()],
['code' => 'ZM', 'iso3' => 'ZMB', 'name' => 'Zambian', 'hi' => 'जाम्बियन', 'sw' => 'Mzambia', 'tl' => 'Zambian', 'ta' => 'சாம்பியன்', 'created_at' => now(), 'updated_at' => now()],
['code' => 'ZW', 'iso3' => 'ZWE', 'name' => 'Zimbabwean', 'hi' => 'जिम्बाब्वे का', 'sw' => 'Mzimbabwe', 'tl' => 'Zimbabwean', 'ta' => 'ஜிம்பாப்வேயன்', 'created_at' => now(), 'updated_at' => now()],
];
// Chunk insert to avoid parameter limits
foreach (array_chunk($nationalities, 50) as $chunk) {
DB::table('nationalities')->insert($chunk);
}
}
}