移动设备网络代码,整理成GO结构体

移动设备网络代码,整理成GO结构体:
struct 如下:

type MNCDescription struct {
	MMC        string //移动设备网络代码 (Mobile Network Code,MNC)
	MNC        string //移动设备国家代码 (Mobile Country Code,MCC)
	Brand      string // 品牌
	Operators  string // 运营商
	Status     string // 使用状态
	MHz        string // 频段
	Annotation string // 注解
}

package sms

var MobileNetworkCode = map[string][]MNCDescription{
	"测试": {
		MNCDescription{"001", "01", "测试", "测试网络", "营运中", "GSM 900 / GSM 1800", "用于GSM测试环境"},
	},
	"阿布哈兹 - GE": {
		MNCDescription{"289", "67", "Aquafon", "Aquafon", "营运中", "GSM 900 / GSM 1800 / UMTS 2100", ""},
		MNCDescription{"289", "88", "A-Mobile", "A-Mobile", "营运中", "GSM 900 / UMTS 2100", ""},
	},
	"阿富汗 - AF": {
		MNCDescription{"412", "01", "AWCC", "Afghan Wireless Communication Company", "营运中", "GSM 900 / GSM 1800", ""},
		MNCDescription{"412", "20", "Roshan", "Telecom Development Company Afghanistan Ltd.", "营运中", "GSM 900", ""},
		MNCDescription{"412", "40", "MTN", "MTN Group Afghanistan", "营运中", "GSM 900 / GSM 1800", ""},
		MNCDescription{"412", "50", "Etisalat", "Etisalat Afghanistan", "营运中", "GSM 900 / GSM 1800", ""},
	},
	"阿尔巴尼亚 - AL": {
		MNCDescription{"276", "01", "AMC", "Albanian Mobile Communications", "营运中", "GSM 900 / GSM 1800", ""},
		MNCDescription{"276", "02", "Vodafone", "Vodafone Albania", "营运中", "GSM 900 / GSM 1800", ""},
		MNCDescription{"276", "03", "Eagle Mobile", "Eagle Mobile", "营运中", "GSM 900 / GSM 1800", ""},
		MNCDescription{"276", "04", "Plus Communication", "Plus Communication", "营运中", "GSM 900 / GSM 1800", ""},
	},
	"阿尔及利亚 - DZ": {
		MNCDescription{"603", "01", "Mobilis", "ATM Mobilis", "营运中", "GSM 900", ""},
		MNCDescription{"603", "02", "Djezzy", "Orascom Telecom Algerie Spa", "营运中", "GSM 900 / GSM 1800", ""},
		MNCDescription{"603", "03", "Nedjma", "Wataniya Telecom Algerie", "营运中", "GSM 900 / GSM 1800", ""},
	},
	"美属萨摩亚 - AS": {
		MNCDescription{"544", "11", "Bluesky", "Bluesky", "营运中", "GSM", ""},
	},
	"安道尔 - AD": {
		MNCDescription{"213", "03", "Mobiland", "Servei De Tele. DAndorra", "营运中", "GSM 900", ""},
	},
	"安哥拉 - AO": {
		MNCDescription{"631", "02", "UNITEL", "UNITEL S.a.r.l.", "营运中", "GSM 900 / GSM 1800", ""},
		MNCDescription{"631", "04", "MOVICEL", "MOVICEL Telecommunications S.a.", "营运中", "GSM 900 / UMTS 900", ""},
	},
	"安圭拉(英属) - AI": {
		MNCDescription{"365", "010", "", "Weblinks Limited", "营运中", "未知", ""},
		MNCDescription{"365", "840", "", "Cable & Wireless", "营运中", "未知", ""},
	},
	"安提瓜和巴布达 - AG": {
		MNCDescription{"344", "030", "APUA", "Antigua Public Utilities Authority", "营运中", "GSM 1900", ""},
		MNCDescription{"344", "920", "LIME", "Cable & Wireless Caribbean Cellular (Antigua) Limited", "营运中", "GSM 850 / GSM 1800/ GSM 1900", ""},
		MNCDescription{"338", "050", "Digicel", "Antigua Wireless Ventures Limited", "营运中", "GSM 900 / GSM 1900", ""},
	},
	"阿根廷 - AR": {
		MNCDescription{"722", "010", "Movistar", "Telefonica Móviles Argentina SA", "营运中", "GSM 850 / GSM 1900", ""},
		MNCDescription{"722", "020", "Nextel", "NII Holdings", "营运中", "iDEN 800", ""},
		MNCDescription{"722", "070", "Movistar", "Telefonica Móviles Argentina SA", "营运中", "GSM 1900", ""},
		MNCDescription{"722", "310", "Claro", "AMX Argentina S.A", "营运中", "GSM 1900", ""},
		MNCDescription{"722", "320", "Claro", "AMX Argentina S.A", "营运中", "GSM 850 / GSM 1900", ""},
		MNCDescription{"722", "330", "Claro", "AMX Argentina S.A", "营运中", "GSM 850 / GSM 1900", ""},
		MNCDescription{"722", "34", "Personal", "Telecom Personal SA", "营运中", "", ""},
		MNCDescription{"722", "341", "Personal", "Telecom Personal SA", "营运中", "GSM 850 / GSM 1900", ""},
		MNCDescription{"722", "350", "", "Hutchinson (PORT HABLE)", "未知", "GSM 900", ""},
		MNCDescription{"722", "36", "Personal", "Telecom Personal SA", "未知", "未知", ""},
	},
	"亚美尼亚 - AM": {
		MNCDescription{"283", "01", "Beeline", "ArmenTel", "营运中", "GSM 900 / GSM 1800 / UMTS 2100", ""},
		MNCDescription{"283", "05", "VivaCell-MTS", "K Telecom CJSC", "营运中", "GSM 900 / GSM 1800 / UMTS 2100", ""},
		MNCDescription{"283", "10", "Orange", "", "营运中", "GSM 900 / GSM 1800 / UMTS 2100 / UMTS 900", ""},
	},
	"阿鲁巴(荷兰王国) - AW": {
		MNCDescription{"363", "01", "SETAR", "Servicio di Telecomunicacion di Aruba", "营运中", "GSM 900 / GSM 1900 / TDMA 800", ""},
		MNCDescription{"363", "02", "Digicel", "", "营运中", "GSM 900 / GSM 1800 / HSPA+ 2100", ""},
	},
	"澳大利亚 - AU": {
		MNCDescription{"505", "01", "Telstra", "Telstra Corporation Limited", "营运中", "GSM 900 / GSM 1800 / UMTS 850 / UMTS 2100", ""},
		MNCDescription{"505", "02", "Optus", "Singtel Optus Proprietary Limited", "营运中", "GSM 900 / GSM 1800 / UMTS 900 / UMTS 2100", ""},
		MNCDescription{"505", "03", "沃达丰", "沃达丰和记澳大利亚", "营运中", "GSM 900 / GSM 1800 / UMTS 850 / UMTS 900 / UMTS 2100", ""},
		MNCDescription{"505", "04", "", "Department of Defence", "营运中", "不明", ""},
		MNCDescription{"505", "05", "Ozitel", "", "非营运中", "", ""},
		MNCDescription{"505", "06", "3", "沃达丰和记澳大利亚", "营运中", "UMTS 2100", ""},
		MNCDescription{"505", "08", "One.Tel", "One.Tel Limited", "非营运中", "GSM 900", ""},
		MNCDescription{"505", "09", "Airnet", "", "非营运中", "", ""},
		MNCDescription{"505", "12", "3", "沃达丰和记澳大利亚", "营运中", "UMTS 2100", ""},
		MNCDescription{"505", "13", "Railcorp", "Rail Corporation New South Wales", "Reserved", "GSM 1800", ""},
		MNCDescription{"505", "14", "AAPT", "Telecom New Zealand", "营运中", "GSM 1800 / UMTS 2100", ""},
		MNCDescription{"505", "15", "3GIS", "", "非营运中", "", ""},
		MNCDescription{"505", "16", "Victorian Rail Track", "", "Reserved", "GSM 1800", ""},
		MNCDescription{"505", "21", "SOUL", "TPG Telecom Limited", "不明", "MVNO", ""},
		MNCDescription{"505", "24", "Advance Communications Technologies Pty. Ltd.", "", "不明", "不明", ""},
		MNCDescription{"505", "38", "Crazy John's", "沃达丰和记澳大利亚", "营运中", "GSM 900 / GSM 1800 / UMTS 900 / UMTS 2100", ""},
		MNCDescription{"505", "71", "Telstra", "Telstra Corporation Limited", "营运中", "不明", ""},
		MNCDescription{"505", "72", "Telstra", "Telstra Corporation Limited", "营运中", "不明", ""},
		MNCDescription{"505", "88", "Localstar Holding Pty. Ltd.", "", "非营运中", "", ""},
		MNCDescription{"505", "90", "Optus", "Singtel Optus Proprietary Limited", "营运中", "不明", ""},
		MNCDescription{"505", "99", "One.Tel", "One.Tel", "非营运中", "GSM 1800", ""},
	},
	"奥地利 - AT": {
		MNCDescription{"232", "01", "A1", "A1 Telekom Austria", "营运中", "GSM 900 / GSM 1800 / UMTS 2100", ""},
		MNCDescription{"232", "03", "T-Mobile", "T-Mobile Austria", "营运中", "GSM 900 / GSM 1800 / UMTS 2100", ""},
		MNCDescription{"232", "05", "Orange", "Orange Austria", "营运中", "GSM 900 / GSM 1800 / UMTS 2100", ""},
		MNCDescription{"232", "07", "tele.ring", "T-Mobile Austria", "营运中", "GSM 1800", ""},
		MNCDescription{"232", "09", "A1", "A1 Telekom Austria", "营运中", "未知", ""},
		MNCDescription{"232", "10", "3", "Hutchison 3G", "营运中", "UMTS 2100", ""},
		MNCDescription{"232", "11", "bob", "A1 Telekom Austria", "营运中", "MVNO", ""},
		MNCDescription{"232", "12", "yesss", "yesss", "营运中", "MVNO", ""},
		MNCDescription{"232", "14", "3", "Hutchison 3G", "未知", "Test", ""},
		MNCDescription{"232", "15", "Barablu", "Barablu Mobile Ltd.", "营运中", "MVNO", ""},
		MNCDescription{"232", "91", "GSM-R A", "ÖBB", "营运中", "GSM-R", ""},
	},
	"阿塞拜疆 - AZ": {
		MNCDescription{"400", "01", "Azercell电信", "", "营运中", "GSM 900 / GSM 1800 / UMTS 2100", ""},
		MNCDescription{"400", "02", "Bakcell", "", "营运中", "GSM 900 / GSM 1800 / UMTS 2100", ""},
		MNCDescription{"400", "03", "FONEX", "CATEL", "营运中", "CDMA2000", ""},
		MNCDescription{"400", "04", "Nar Mobile", "Azerfon", "营运中", "GSM 900 / GSM 1800 / UMTS 2100", ""},
	},
	"巴哈马 - BS": {
		MNCDescription{"364", "390", "BaTelCo", "The Bahamas Telecommunications Company Ltd", "营运中", "GSM 1900", ""},
	},
	"巴林 - BH": {
		MNCDescription{"426", "01", "Batelco", "Bahrain Telecommunications Company", "营运中", "GSM 900 / GSM 1800", ""},
		MNCDescription{"426", "02", "zain BH", "Zain Bahrain", "营运中", "GSM 900 / GSM 1800", ""},
		MNCDescription{"426", "04", "VIVA", "Viva Bahrain", "营运中", "GSM 900 / GSM 1800", ""},
	},
	"孟加拉国 - BD": {
		MNCDescription{"470", "01", "Grameenphone", "GrameenPhone Ltd", "营运中", "GSM 900", ""},
		MNCDescription{"470", "02", "Robi", "Axiata Bangladesh Ltd.", "营运中", "GSM 900", ""},
		MNCDescription{"470", "03", "Banglalink", "Orascom Telecom Holding", "营运中", "GSM 900", ""},
		MNCDescription{"470", "04", "TeleTalk", "", "营运中", "GSM 900 / GSM 1800", ""},
		MNCDescription{"470", "05", "Citycell", "", "营运中", "CDMA2000 800", ""},
		MNCDescription{"470", "06", "Airtel formerly Warid Telcom", "Bharti airtel Bangladesh Ltd.", "营运中", "GSM 900 / GSM 1800", ""},
	},
	"巴巴多斯 - BB": {
		MNCDescription{"342", "600", "LIME", "LIME (formerly known as Cable & Wireless)", "营运中", "GSM 1900", ""},
		MNCDescription{"342", "750", "Digicel", "Digicel (Barbados) Limited", "营运中", "GSM 900 / GSM 1800", ""},
		MNCDescription{"342", "820", "", "Sunbeach Communications", "Reserved", "未知", ""},
	},
	"白俄罗斯 - BY": {
		MNCDescription{"257", "01", "velcom", "", "营运中", "GSM 900 / GSM 1800 / UMTS 2100", ""},
		MNCDescription{"257", "02", "MTS", "Mobile TeleSystems", "营运中", "GSM 900 / GSM 1800 / UMTS 2100", ""},
		MNCDescription{"257", "03", "DIALLOG", "BelCel", "营运中", "CDMA2000", ""},
		MNCDescription{"257", "04", "life:)", "Belarussian Telecommunications Network", "营运中", "GSM 900 / GSM 1800 / UMTS 2100", ""},
		MNCDescription{"257", "501", "BelCel JV", "", "", "", ""},
	},
	"比利时 - BE": {
		MNCDescription{"206", "01", "Proximus", "Belgacom Mobile", "营运中", "GSM 900 / GSM 1800 / UMTS 2100 / UMTS 900", ""},
		MNCDescription{"206", "05", "Telenet", "Telenet", "营运中", "", ""},
		MNCDescription{"206", "10", "Mobistar", "France Telecom", "营运中", "GSM 900 / GSM 1800 / UMTS 2100", ""},
		MNCDescription{"206", "20", "BASE", "KPN", "营运中", "GSM 900 / GSM 1800 / UMTS 2100", ""},
	},
	"伯利兹 - BZ": {
		MNCDescription{"702", "67", "DigiCell", "Belize Telemedia", "营运中", "GSM 1900", ""},
		MNCDescription{"702", "99", "Smart", "SpeedNet Communications Limited", "营运中", "CDMA2000", ""},
	},
	"贝宁 - BJ": {
		MNCDescription{"616", "01", "Libercom", "Benin Telecoms Mobile", "营运中", "GSM 900 / GSM 1800", ""},
		MNCDescription{"616", "02", "Moov", "Telecel Benin", "营运中", "GSM 900", ""},
		MNCDescription{"616", "03", "MTN", "Spacetel Benin", "营运中", "GSM 900", ""},
		MNCDescription{"616", "04", "BBCOM", "Bell Benin Communications", "营运中", "GSM 900", ""},
		MNCDescription{"616", "05", "Glo", "Glo Communication Benin", "营运中", "GSM 900 / GSM 1800", ""},
	},
	"百慕大 - BM": {
		MNCDescription{"350", "01", "Digicel Bermuda", "Telecommunications (Bermuda & West Indies) Ltd", "Reserved", "GSM 1900", ""},
		MNCDescription{"350", "02", "Mobility", "M3 Wireless", "营运中", "GSM 1900", ""},
		MNCDescription{"338", "050", "Digicel Bermuda", "", "营运中", "GSM 1900", ""},
		MNCDescription{"310", "59", "Cellular One", "", "营运中", "CDMA2000", ""},
	},
	"不丹 - BT": {
		MNCDescription{"402", "11", "B-Mobile", "B-Mobile", "营运中", "GSM 900", ""},
		MNCDescription{"402", "77", "TashiCell", "Tashi InfoComm Limited", "营运中", "GSM 900 / GSM 1800", ""},
	},
	"玻利维亚 - BO": {
		MNCDescription{"736", "01", "Nuevatel", "Nuevatel PCS De Bolivia SA", "营运中", "GSM 1900", ""},
		MNCDescription{"736", "02", "Entel", "Entel SA", "营运中", "GSM 1900", ""},
		MNCDescription{"736", "03", "Tigo", "Telefonica Celular De Bolivia S.A", "营运中", "GSM 850", ""},
	},
	"波黑 - BA": {
		MNCDescription{"218", "03", "HT-ERONET", "Public Enterprise Croatian Telecom Ltd.", "营运中", "GSM 900", ""},
		MNCDescription{"218", "05", "m:tel", "RS Telecommunications JSC Banja Luka", "营运中", "GSM 900 / GSM 1800 / UMTS 2100", ""},
		MNCDescription{"218", "90", "BH Mobile", "BH Telecom", "营运中", "GSM 900 / GSM 1800", ""},
	},
	"博茨瓦纳 - BW": {
		MNCDescription{"652", "01", "Mascom", "Mascom Wireless (Pty) Limited", "营运中", "GSM 900", ""},
		MNCDescription{"652", "02", "Orange", "Orange (Botswana) Pty Limited", "营运中", "GSM 900", ""},
		MNCDescription{"652", "04", "BTC Mobile", "Botswana Telecommunications Corporation", "营运中", "GSM 900 / GSM 1800", ""},
	},
	"巴西 - BR": {
		MNCDescription{"724", "00", "Nextel", "NII Holdings, Inc.", "营运中", "IDEN 850", ""},
		MNCDescription{"724", "02", "TIM", "Telecom Italia Mobile", "营运中", "GSM 900 / GSM 1800 / UMTS 850 / UMTS 2100", ""},
		MNCDescription{"724", "03", "TIM", "Telecom Italia Mobile", "营运中", "GSM 900 / GSM 1800 / UMTS 850 / UMTS 2100", ""},
		MNCDescription{"724", "04", "TIM", "Telecom Italia Mobile", "营运中", "GSM 900 / GSM 1800 / UMTS 850 / UMTS 2100", ""},
		MNCDescription{"724", "05", "Claro BR", "Claro", "营运中", "GSM 900 / GSM 1800 / UMTS 850 / UMTS 2100", ""},
		MNCDescription{"724", "06", "Vivo", "Vivo S.A.", "营运中", "GSM 850/900/1800/1900 / UMTS 850 / UMTS 2100", ""},
		MNCDescription{"724", "07", "Sercomtel", "Sercomtel Celular", "营运中", "GSM 900 / GSM 1800 / UMTS 850", ""},
		MNCDescription{"724", "10", "Vivo", "Vivo S.A.", "营运中", "GSM 850/900/1800/1900 / UMTS 850 / UMTS 2100", ""},
		MNCDescription{"724", "11", "Vivo", "Vivo S.A.", "营运中", "GSM 850/900/1800/1900 / UMTS 850 / UMTS 2100", ""},
		MNCDescription{"724", "15", "CTBC Celular", "CTBC Celular S.A.", "营运中", "GSM 900/1800 UMTS 850 / UMTS 2100mhz", ""},
		MNCDescription{"724", "16", "Brasil Telecom GSM", "Brasil Telecom GSM", "Phasing out", "GSM 1800 / UMTS 2100", ""},
		MNCDescription{"724", "23", "Vivo", "Vivo S.A.", "营运中", "GSM 850/900/1800/1900 / UMTS 850 / UMTS 2100", ""},
		MNCDescription{"724", "31", "Oi", "TNL PCS", "营运中", "GSM 1800 / UMTS 2100", ""},
		MNCDescription{"724", "32", "CTBC Celular", "CTBC Celular S.A.", "营运中", "GSM 900/1800 UMTS 850 / UMTS 2100mhz", ""},
		MNCDescription{"724", "33", "CTBC Celular", "CTBC Celular S.A.", "营运中", "GSM 900/1800 UMTS 850 / UMTS 2100mhz", ""},
		MNCDescription{"724", "34", "CTBC Celular", "CTBC Celular S.A.", "营运中", "GSM 900/1800 UMTS 850 / UMTS 2100mhz", ""},
		MNCDescription{"724", "39", "Nextel", "NII Holdings, Inc.", "Deploying", "UMTS 2100", ""},
	},
	"英属维尔京群岛 - VG": {
		MNCDescription{"348", "170", "LIME", "Cable & Wireless", "营运中", "GSM 850", ""},
		MNCDescription{"348", "570", "CCT Boatphone", "Caribbean Cellular Telephone", "营运中", "GSM 900 / GSM 1900", ""},
		MNCDescription{"348", "770", "Digicel", "Digicel (BVI) Limited", "营运中", "GSM 1800 / GSM 1900", ""},
	},
	"文莱 - BN": {
		MNCDescription{"528", "01", "", "Jabatan Telekom Brunei", "未知", "未知", ""},
		MNCDescription{"528", "02", "B-Mobile", "B-Mobile Communications Sdn Bhd", "营运中", "UMTS 2100", ""},
		MNCDescription{"528", "11", "DSTCom", "Data Stream Technology", "营运中", "GSM 900 / UMTS 2100", ""},
	},
	"保加利亚 - BG": {
		MNCDescription{"284", "01", "M-Tel", "Mobiltel", "营运中", "GSM 900 / GSM 1800 / UMTS 2100", ""},
		MNCDescription{"284", "03", "Vivacom", "BTC", "营运中", "GSM 900 / GSM 1800 / UMTS 900 / UMTS 2100", ""},
		MNCDescription{"284", "04", "Undisclosed", "Undisclosed", "Reserved", "GSM 1800", ""},
		MNCDescription{"284", "05", "GLOBUL", "Cosmo Bulgaria Mobile", "营运中", "GSM 900 / GSM 1800 / UMTS 2100", ""},
	},
	"布基纳法索 - BF": {
		MNCDescription{"613", "01", "Telmob", "Onatal", "营运中", "GSM 900", ""},
		MNCDescription{"613", "02", "Zain", "Celtel Burkina Faso", "营运中", "GSM 900", ""},
		MNCDescription{"613", "03", "Telecel Faso", "Telecel Faso SA", "营运中", "GSM 900", ""},
	},
	"布隆迪 - BI": {
		MNCDescription{"642", "01", "Spacetel", "Econet Wireless Burundi PLC", "营运中", "GSM 900", ""},
		MNCDescription{"642", "02", "Africell", "Africell PLC", "营运中", "GSM 900", ""},
		MNCDescription{"642", "03", "Onatel", "Onatel", "营运中", "GSM 900", ""},
		MNCDescription{"642", "07", "Smart Mobile", "LACELL SU", "营运中", "GSM 1800", ""},
		MNCDescription{"642", "08", "HiTs Telecom", "HiTs Telecom", "Reserved", "GSM ???", ""},
		MNCDescription{"642", "82", "U-COM Burundi", "U-COM Burundi S.A.", "营运中", "GSM 900", ""},
	},
	"柬埔寨 - KH": {
		MNCDescription{"456", "01", "Mobitel", "CamGSM", "营运中", "GSM 900 / UMTS 2100", ""},
		MNCDescription{"456", "02", "hello", "Telekom Malaysia International (Cambodia) Co. Ltd", "营运中", "GSM 900", ""},
		MNCDescription{"456", "03", "", "S Telecom", "Reserved", "CDMA2000", ""},
		MNCDescription{"456", "04", "qb", "Cambodia Advance Communications Co. Ltd", "营运中", "GSM 1800 / UMTS 2100", ""},
		MNCDescription{"456", "05", "Star-Cell", "APPLIFONE CO. LTD.", "营运中", "GSM 1800", ""},
		MNCDescription{"456", "06", "Smart Mobile", "Latelz Co., Ltd", "营运中", "GSM 1800", ""},
		MNCDescription{"456", "18", "Mfone", "Camshin / Shinawatra", "营运中", "GSM 1800", ""},
		MNCDescription{"456", "11", "Seatel", "South East Asia Telecom Group", "营运中", "LTE-FDD 850", ""},
		MNCDescription{"456", "09", "Beeline", "Sotelco Ltd.", "营运中", "GSM 900 / GSM 1800", ""},
		MNCDescription{"456", "08", "Metfone", "Viettel", "营运中", "GSM 900 / GSM 1800", ""},
	},
	"喀麦隆 - CM": {
		MNCDescription{"624", "01", "MTN Cameroon", "Mobile Telephone Network Cameroon Ltd", "营运中", "GSM 900", ""},
		MNCDescription{"624", "02", "Orange", "Orange Cameroun S.A.", "营运中", "GSM 900", ""},
		MNCDescription{"624", "03", "camtel", "", "营运中", "cdma2000", ""},
	},
	"加拿大 - CA": {
		MNCDescription{"302", "220", "Telus", "Telus Mobility", "营运中", "UMTS 850 / UMTS 1900", ""},
		MNCDescription{"302", "221", "Telus", "Telus Mobility", "未知", "未知", ""},
		MNCDescription{"302", "270", "未知", "EastLink", "Testing", "UMTS 1700", ""},
		MNCDescription{"302", "290", "", "Airtel Wireless", "营运中", "iDEN 900", ""},
		MNCDescription{"302", "320", "Mobilicity", "DAVE Wireless", "营运中", "UMTS 1700", ""},
		MNCDescription{"302", "350", "FIRST", "FIRST Networks Operations", "营运中", "GSM 850", ""},
		MNCDescription{"302", "360", "MiKe", "Telus Mobility", "营运中", "iDEN 800", ""},
		MNCDescription{"302", "361", "Telus", "Telus Mobility", "营运中", "CDMA2000 800 / CDMA2000 1900", ""},
		MNCDescription{"302", "370", "Fido", "Fido Solutions (Rogers Wireless)", "营运中", "GSM 850 / GSM 1900 / UMTS 850 / UMTS 1900", ""},
		MNCDescription{"302", "380", "DMTS", "Dryden Mobility", "营运中", "GSM 850", ""},
		MNCDescription{"302", "490", "WIND Mobile", "Globalive Communications", "营运中", "UMTS 1700", ""},
		MNCDescription{"302", "500", "Videotron", "Videotron", "营运中", "UMTS 1700", ""},
		MNCDescription{"302", "510", "Videotron", "Videotron", "营运中", "UMTS 1700", ""},
		MNCDescription{"302", "610", "Bell", "Bell Mobility", "营运中", "UMTS 850 / UMTS 1900", ""},
		MNCDescription{"302", "610", "Bell", "Virgin Mobile Canada", "营运中", "UMTS 850 / UMTS 1900", ""},
		MNCDescription{"302", "620", "ICE Wireless", "ICE Wireless", "营运中", "GSM 1900", ""},
		MNCDescription{"302", "640", "Bell", "Bell Mobility", "营运中", "CDMA2000 800 / CDMA2000 1900", ""},
		MNCDescription{"302", "652", "", "BC Tel Mobility (Telus)", "营运中", "CDMA2000", ""},
		MNCDescription{"302", "653", "Telus", "Telus Mobility", "营运中", "CDMA2000 800 / CDMA2000 1900", ""},
		MNCDescription{"302", "655", "MTS", "MTS Mobility", "营运中", "CDMA2000 800 / CDMA2000 1900", ""},
		MNCDescription{"302", "656", "TBay", "Thunder Bay Telephone Mobility", "营运中", "CDMA2000", ""},
		MNCDescription{"302", "657", "Telus", "Telus Mobility", "营运中", "CDMA2000 800 / CDMA2000 1900", ""},
		MNCDescription{"302", "660", "MTS", "MTS Mobility", "营运中", "UMTS 850 / UMTS 1900", ""},
		MNCDescription{"302", "680", "SaskTel", "SaskTel Mobility", "营运中", "CDMA2000 800 / CDMA2000 1900", ""},
		MNCDescription{"302", "701", "", "MB Tel Mobility", "营运中", "CDMA2000", ""},
		MNCDescription{"302", "702", "", "MT&T Mobility (Aliant)", "营运中", "CDMA2000", ""},
		MNCDescription{"302", "703", "", "New Tel Mobility (Aliant)", "营运中", "CDMA2000", ""},
		MNCDescription{"302", "710", "Globalstar", "", "营运中", "未知", ""},
		MNCDescription{"302", "720", "Rogers Wireless", "Rogers Communications", "营运中", "GSM 850 / GSM 1900 / UMTS 850 / UMTS 1900", ""},
		MNCDescription{"302", "780", "SaskTel", "SaskTel Mobility", "营运中", "UMTS 850 / UMTS 1900", ""},
		MNCDescription{"302", "880", "Bell / Telus / SaskTel", "Shared Telus, Bell, and SaskTel", "营运中", "UMTS 850 / UMTS 1900", ""},
	},
	"佛得角 - CV": {
		MNCDescription{"625", "01", "CVMOVEL", "CVMovel, S.A.", "Operationa / GSM 1800", "", ""},
		MNCDescription{"625", "02", "T+", "T+", "营运中", "GSM 900", ""},
	},
	"开曼群岛(英国)- KY": {
		MNCDescription{"346", "140", "LIME", "Cable & Wireless (Cayman Islands) Limited", "营运中", "GSM 850 / GSM 1900", ""},
		MNCDescription{"346", "050", "Digicel", "Digicel Cayman Ltd.", "营运中", "GSM 900 / GSM 1800", ""},
	},
	"中非共和国 - CF": {
		MNCDescription{"623", "01", "CTP", "Centrafrique Telecom Plus", "营运中", "GSM 900", ""},
		MNCDescription{"623", "02", "TC", "Telecel Centrafrique", "营运中", "GSM 900", ""},
		MNCDescription{"623", "03", "Orange", "Orange RCA", "Reserved", "GSM 1800", ""},
		MNCDescription{"623", "04", "Nationlink", "Nationlink Telecom RCA", "营运中", "GSM 900", ""},
	},
	"乍得 - TD": {
		MNCDescription{"622", "01", "Airtel", "Bharti Airtel SA", "营运中", "GSM 900", ""},
		MNCDescription{"622", "02", "", "Tchad Mobile", "营运中", "GSM 900", ""},
		MNCDescription{"622", "03", "", "TIGO - Millicom", "营运中", "GSM 900", ""},
		MNCDescription{"622", "02", "TAWALI", "", "营运中", "CDMA2000", ""},
		MNCDescription{"622", "04", "Salam", "Sotel Mobile", "营运中", "GSM 900", ""},
	},
	"智利 - CL": {
		MNCDescription{"730", "01", "entel", "Entel PCS Telecomunicaciones S.A.", "营运中", "GSM 1900 / UMTS 1900", ""},
		MNCDescription{"730", "02", "movistar", "Telefónica Móvil de Chile", "营运中", "GSM 850 / UMTS 850 / UMTS 1900", ""},
		MNCDescription{"730", "03", "Claro", "Claro Chile S.A.", "营运中", "GSM 1900 / UMTS 1900 / UMTS 850", ""},
		MNCDescription{"730", "04", "Nextel", "Centennial Cayman Corp. Chile", "营运中", "iDEN 800", ""},
		MNCDescription{"730", "08", "VTR Móvil", "VTR S.A.", "营运中", "UMTS 1700 / UMTS 2100", ""},
		MNCDescription{"730", "09", "Nextel", "Centennial Cayman Corp. Chile", "营运中", "UMTS 1700 / UMTS 2100", ""},
		MNCDescription{"730", "10", "entel", "Entel Telefonía Móvil S.A.", "营运中", "GSM 1900 / UMTS 1900", ""},
		MNCDescription{"730", "99", "Will", "WILL Telefonía", "营运中", "GSM 1900 / UMTS 1900 (Residential).", ""},
	},
	"中华人民共和国 - CN": {
		MNCDescription{"460", "00", "中国移动(China Mobile)", "中国移动(China Mobile)", "营运中", "GSM 900 / GSM 1800 / TD-SCDMA 1880 / TD-SCDMA 2010 / TD-LTE 1800/2300/2600", ""},
		MNCDescription{"460", "01", "中国联通(China Unicom)", "中国联通(China Unicom)", "营运中", "GSM 900 / GSM 1800 / UMTS 2100 / TD-LTE 2300/2600 / FDD-LTE 1800/2100", ""},
		MNCDescription{"460", "02", "中国移动(China Mobile)", "中国移动(China Mobile)", "营运中", "GSM 900 / GSM 1800 / TD-SCDMA 1880 / TD-SCDMA 2010", ""},
		MNCDescription{"460", "03", "中国电信(China Telecom)", "中国电信(China Telecom)", "营运中", "CDMA2000 800 / CDMA2000 2100 / TD-LTE 2300/2600 / FDD-LTE 1800/2100 / EV-DO / eHRPD", ""},
		MNCDescription{"460", "05", "中国电信(China Telecom)", "中国电信(China Telecom)", "营运中", "", ""},
		MNCDescription{"460", "06", "中国联通(China Unicom)", "中国联通(China Unicom)", "营运中", "GSM 900 / GSM 1800 / UMTS 2100", ""},
		MNCDescription{"460", "07", "中国移动(China Mobile)", "中国移动(China Mobile)", "营运中", "GSM 900 / GSM 1800 / TD-SCDMA 1880 / TD-SCDMA 2010", ""},
		MNCDescription{"460", "09", "中国联通(China Unicom)", "中国联通(China Unicom)", "营运中", "", ""},
		MNCDescription{"460", "11", "中国电信(China Telecom)", "中国电信(China Telecom)", "营运中", "CDMA2000 800 / CDMA2000 2100 / TD-LTE 2300/2600 / FDD-LTE 1800/2100 / EV-DO / eHRPD", ""},
		MNCDescription{"460", "20", "中国铁通(China Tietong)", "中国铁通(China Tietong)", "营运中", "GSM-R", ""},
	},
	"哥伦比亚 - CO": {
		MNCDescription{"732", "001", "", "Colombia Telecomunicaciones S.A.", "营运中", "未知", ""},
		MNCDescription{"732", "002", "Edatel", "Edatel S.A.", "营运中", "未知", ""},
		MNCDescription{"732", "101", "Comcel", "Comcel Colombia", "营运中", "GSM 850 / GSM 1900", ""},
		MNCDescription{"732", "102", "movistar", "Bellsouth Colombia", "营运中", "GSM 850 / GSM 1900 / CDMA2000 850", ""},
		MNCDescription{"732", "103", "Tigo", "Colombia Móvil", "营运中", "GSM 1900", ""},
		MNCDescription{"732", "111", "Tigo", "Colombia Móvil", "营运中", "GSM 1900", ""},
		MNCDescription{"732", "123", "movistar", "Telefónica Móviles Colombia", "营运中", "GSM 850 / GSM 1900 / CDMA2000 850", ""},
	},
	"科摩罗 - KM": {
		MNCDescription{"654", "01", "", "HURI - SNPT", "营运中", "未知", ""},
	},
	"刚果共和国 - CG": {
		MNCDescription{"629", "01", "Airtel", "Celtel Congo", "营运中", "GSM 900", ""},
		MNCDescription{"629", "10", "Libertis Telecom", "MTN CONGO S.A", "营运中", "GSM 900", ""},
		MNCDescription{"629", "07", "", "Warid Telecom", "营运中", "GSM 900", ""},
	},
	"库克群岛(新西兰)- CK": {
		MNCDescription{"548", "01", "", "Telecom Cook", "营运中", "GSM 900", ""},
	},
	"哥斯达黎加 - CR": {
		MNCDescription{"712", "01", "Kolbi ICE", "Instituto Costarricense de Electricidad", "营运中", "GSM 1800, UMTS/HSPA+ 850", ""},
		MNCDescription{"712", "02", "Kolbi ICE", "Instituto Costarricense de Electricidad", "营运中", "GSM 1800, UMTS/HSPA+ 850", ""},
		MNCDescription{"712", "03", "Claro", "Claro CR Telecomunicaciones", "营运中", "GSM 1800 / UMTS 2100", ""},
		MNCDescription{"712", "04", "movistar", "Telefonica Móviles Costa Rica", "营运中", "GSM 1800, UMTS/HSPA 850/2100[31]", ""},
	},
	"克罗地亚 - HR": {
		MNCDescription{"219", "01", "T-Mobile", "T-Mobile Croatia", "营运中", "GSM 900 / GSM 1800 / UMTS 2100", ""},
		MNCDescription{"219", "02", "Tele2", "Tele2", "营运中", "GSM 900 / GSM 1800 / UMTS 2100", ""},
		MNCDescription{"219", "10", "Vip", "Vipnet", "营运中", "GSM 900 / UMTS 2100", ""},
	},
	"古巴 - CU": {
		MNCDescription{"368", "01", "CUBACEL", "Empresa de Telecomunicaciones de Cuba, SA", "营运中", "GSM 900 / GSM 850", ""},
	},
	"塞浦路斯 - CY": {
		MNCDescription{"280", "01", "Cytamobile-Vodafone", "Cyprus Telecommunications Auth", "营运中", "GSM 900 / GSM 1800", ""},
		MNCDescription{"280", "10", "MTN", "Areeba Ltd", "营运中", "GSM 900 / GSM 1800", ""},
	},
	"捷克共和国 - CZ [34]": {
		MNCDescription{"230", "01", "T-Mobile", "T-Mobile Czech Republic", "营运中", "GSM 1900 / GSM 1800 / UMTS 2100", ""},
		MNCDescription{"230", "02", "O2", "Telefónica Czech Republic", "营运中", "CDMA2000 450 / GSM 900 / GSM 1800 / UMTS 2100", ""},
		MNCDescription{"230", "03", "Vodafone", "Vodafone Czech Republic", "营运中", "GSM 900 / GSM 1800 / UMTS 2100", ""},
		MNCDescription{"230", "04", "U:fon", "MobilKom, a. s.", "营运中", "CDMA2000 410 - 430", ""},
		MNCDescription{"230", "05", "", "TRAVEL TELEKOMMUNIKATION, s.r.o.", "未知", "", ""},
		MNCDescription{"230", "06", "", "OSNO TELECOMUNICATION, s.r.o.", "未知", "", ""},
		MNCDescription{"230", "98", "", "Správa železniční dopravní cesty, s.o.", "营运中", "GSM-R 900", ""},
		MNCDescription{"230", "99", "Vodafone", "Vodafone Czech Republic", "营运中", "GSM 1800", ""},
	},
	"刚果民主共和国 - CD": {
		MNCDescription{"630", "01", "Vodacom", "Vodacom Congo RDC sprl", "营运中", "GSM 900 / GSM 1800", ""},
		MNCDescription{"630", "02", "Zain", "Celtel Congo", "营运中", "GSM 900", ""},
		MNCDescription{"630", "04", "", "Cellco", "未知", "未知", ""},
		MNCDescription{"630", "05", "Supercell", "Supercell SPRL", "营运中", "GSM 900 / GSM 1800", ""},
		MNCDescription{"630", "10", "Libertis Telecom", "", "营运中", "", ""},
		MNCDescription{"630", "86", "CCT", "Congo-Chine Telecom s.a.r.l.", "营运中", "GSM 900 / GSM 1800", ""},
		MNCDescription{"630", "89", "SAIT Telecom", "OASIS SPRL", "营运中", "GSM 1800", ""},
		MNCDescription{"630", "?", "Africell", "Africell RDC sprl", "营运中", "GSM 900", ""},
	},
	"丹麦(丹麦王国)- DK": {
		MNCDescription{"238", "01", "TDC", "TDC A/S", "营运中", "GSM 900 / GSM 1800 / UMTS 2100", ""},
		MNCDescription{"238", "02", "Telenor", "Telenor Denmark", "营运中", "GSM 900 / GSM 1800 / UMTS 2100", ""},
		MNCDescription{"238", "03", "", "MIGway A/S", "Reserved", "未知", ""},
		MNCDescription{"238", "05", "", "ApS KBUS", "Reserved", "未知", ""},
		MNCDescription{"238", "06", "3", "Hi3G Denmark ApS", "营运中", "UMTS 2100", ""},
		MNCDescription{"238", "07", "", "Barablu Mobile Ltd.", "Reserved", "未知", ""},
		MNCDescription{"238", "09", "", "Dansk Beredskabskommunikation A/S", "未知", "-", ""},
		MNCDescription{"238", "10", "TDC", "TDC A/S", "营运中", "未知", ""},
		MNCDescription{"238", "11", "", "Dansk Beredskabskommunikation A/S", "未知", "未知", ""},
		MNCDescription{"238", "12", "", "Lycamobile Denmark Ltd", "未知", "未知", ""},
		MNCDescription{"238", "20", "Telia", "", "营运中", "GSM 900 / GSM 1800", ""},
		MNCDescription{"238", "30", "Telia", "Telia Nättjänster Norden AB", "营运中", "GSM 900 / GSM 1800", ""},
		MNCDescription{"238", "40", "", "Ericsson Danmark A/S", "未知", "未知", ""},
		MNCDescription{"238", "77", "Telenor", "Telenor Denmark", "营运中", "GSM 900 / GSM 1800", ""},
	},
	"吉布提 - DJ": {
		MNCDescription{"638", "01", "Evatis", "Djibouti Telecom SA", "营运中", "GSM 900", ""},
	},
	"多米尼克 - DM": {
		MNCDescription{"366", "020", "Digicel", "Digicel Group Limited", "营运中", "GSM 900 / GSM 1900", ""},
		MNCDescription{"366", "110", "", "Cable & Wireless", "营运中", "GSM 850", ""},
	},
	"多米尼加共和国 - DO": {
		MNCDescription{"370", "01", "Orange", "Orange Dominicana", "营运中", "GSM 900 / GSM 1800 / 1900 / UMTS 900", ""},
		MNCDescription{"370", "02", "Claro", "Compañía Dominicana de Teléfonos, C por", "营运中", "CDMA2000 1900 / GSM 850 / GSM 1900 / UMTS 850", ""},
		MNCDescription{"370", "04", "Viva", "Trilogy Dominicana, S.A.", "营运中", "CDMA2000 1900 / GSM 1900", ""},
	},
	"东帝汶 - TL": {
		MNCDescription{"514", "02", "", "Timor Telecom", "营运中", "GSM 900", ""},
	},
	"厄瓜多尔 - EC": {
		MNCDescription{"740", "00", "Movistar", "Otecel S.A.", "营运中", "GSM 850 / UMTS 900 / UMTS 1900", ""},
		MNCDescription{"740", "01", "Claro", "CONECEL S.A.", "营运中", "GSM 850 / UMTS 900 / UMTS 1900", ""},
		MNCDescription{"740", "02", "Alegro", "Corporación Nacional de Telecomunicaciones CNT EP", "营运中", "GSM 850 / CDMA2000 1900", ""},
	},
	"埃及 - EG": {
		MNCDescription{"602", "01", "Mobinil", "ECMS-Mobinil", "营运中", "GSM 900 / GSM 1800 / UMTS 2100", ""},
		MNCDescription{"602", "02", "Vodafone", "Vodafone Egypt", "营运中", "GSM 900 / GSM 1800 / UMTS 2100", ""},
		MNCDescription{"602", "03", "Etisalat", "Etisalat Egypt", "营运中", "GSM 900 / GSM 1800 / UMTS 2100", ""},
	},
	"萨尔瓦多 - SV": {
		MNCDescription{"706", "01", "CTE Telecom Personal", "CTE Telecom Personal SA de CV", "营运中", "GSM 1900", ""},
		MNCDescription{"706", "02", "digicel", "Digicel Group", "营运中", "GSM 900", ""},
		MNCDescription{"706", "03", "Tigo", "Telemovil EL Salvador S.A.", "营运中", "GSM 850", ""},
		MNCDescription{"706", "04", "movistar", "Telefónica Móviles El Salvador", "营运中", "CDMA2000 850 / GSM 850", ""},
		MNCDescription{"706", "11", "Claro", "América Móvil", "营运中", "GSM 1900 / UMTS 1900", ""},
	},
	"赤道几内亚 - GQ": {
		MNCDescription{"627", "01", "Orange GQ", "GETESA", "营运中", "GSM 900", ""},
		MNCDescription{"627", "03", "Hits GQ", "HiTs EG.SA", "营运中", "GSM 900 / GSM 1800", ""},
		MNCDescription{"627", "04", "GECOMSA", "GECOMSA", "营运中", "CDMA2000", ""},
	},
	"厄立特里亚 - ER": {
		MNCDescription{"657", "01", "Eritel", "Eritrea Telecommunications Services Corporation", "营运中", "GSM 900", ""},
	},
	"爱沙尼亚 - EE": {
		MNCDescription{"248", "01", "EMT", "Estonian Mobile Telecom", "营运中", "GSM 900 / GSM 1800 / UMTS 2100", ""},
		MNCDescription{"248", "02", "Elisa", "Elisa Eesti", "营运中", "GSM 900 / GSM 1800 / UMTS 900 / UMTS 2100", ""},
		MNCDescription{"248", "03", "Tele 2", "Tele 2 Eesti", "营运中", "GSM 900 / GSM 1800 / UMTS 2100", ""},
		MNCDescription{"248", "04", "", "OY Top Connect", "未知", "未知", ""},
		MNCDescription{"248", "05", "", "AS Bravocom Mobiil", "未知", "未知", ""},
		MNCDescription{"248", "06", "", "Progroup Holding", "营运中", "UMTS 2100", ""},
	},
	"埃塞俄比亚 - ET": {
		MNCDescription{"636", "01", "ETH-MTN", "Ethio Telecom", "营运中", "GSM 900 / GSM 1800 / UMTS 2100", ""},
	},
	"法罗群岛(丹麦王国)- FO": {
		MNCDescription{"288", "01", "Faroese Telecom", "Faroese Telecom", "营运中", "GSM 900", ""},
		MNCDescription{"288", "02", "Vodafone", "Vodafone Faroe Islands", "营运中", "GSM 900", ""},
	},
	"斐济 - FJ": {
		MNCDescription{"542", "01", "Vodafone", "Vodafone Fiji", "营运中", "GSM 900 / UMTS 2100", ""},
		MNCDescription{"542", "02", "Digicel", "Digicel Fiji", "营运中", "GSM 900", ""},
	},
	"芬兰 - FI": {
		MNCDescription{"244", "03", "DNA", "DNA Oy", "营运中", "GSM 1800", ""},
		MNCDescription{"244", "05", "Elisa", "Elisa Oyj", "营运中", "GSM 900 / GSM 1800 / UMTS 900 / UMTS 2100", ""},
		MNCDescription{"244", "07", "Nokia", "Nokia Test Network", "营运中", "未知", ""},
		MNCDescription{"244", "08", "", "未知", "营运中", "未知", ""},
		MNCDescription{"244", "10", "", "TDC Oy", "未知", "未知", ""},
		MNCDescription{"244", "11", "VIRVE", "Suomen Erillisverkot Oy", "营运中", "TETRA", ""},
		MNCDescription{"244", "12", "DNA", "DNA Oy", "营运中", "GSM 900 / GSM 1800 / UMTS 900 / UMTS 2100", ""},
		MNCDescription{"244", "14", "AMT", "Ålands Mobiltelefon", "营运中", "GSM 900", ""},
		MNCDescription{"244", "15", "SAMK", "Samk student network", "营运中", "GSM 900", ""},
		MNCDescription{"244", "21", "Saunalahti", "Elisa Oyj", "营运中", "MVNO", ""},
		MNCDescription{"244", "29", "", "Scnl Truphone", "未知", "未知", ""},
		MNCDescription{"244", "91", "Sonera", "TeliaSonera Finland Oyj", "营运中", "GSM 900 / GSM 1800 / UMTS 900 / UMTS 2100 / LTE", ""},
	},
	"法国 - FR": {
		MNCDescription{"208", "00", "Orange", "France Télécom", "营运中", "GSM 900 / GSM 1800 / UMTS 2100 / UMTS 900", ""},
		MNCDescription{"208", "01", "Orange", "France Télécom", "营运中", "GSM 900 / GSM 1800 / UMTS 2100 / UMTS 900", ""},
		MNCDescription{"208", "02", "Orange", "France Télécom", "营运中", "GSM 900 / GSM 1800 / UMTS 2100 / UMTS 900", ""},
		MNCDescription{"208", "05", "", "Globalstar Europe", "营运中", "Satellite", ""},
		MNCDescription{"208", "06", "", "Globalstar Europe", "营运中", "Satellite", ""},
		MNCDescription{"208", "07", "", "Globalstar Europe", "营运中", "Satellite", ""},
		MNCDescription{"208", "10", "SFR", "威望迪", "营运中", "GSM 900 / GSM 1800 / UMTS 2100 / UMTS 900", ""},
		MNCDescription{"208", "11", "SFR", "威望迪", "营运中", "UMTS 2100", ""},
		MNCDescription{"208", "13", "SFR", "威望迪", "营运中", "未知", ""},
		MNCDescription{"208", "14", "Free Mobile", "Iliad", "营运中", "UMTS 2100 / UMTS 900", ""},
		MNCDescription{"208", "15", "Free Mobile", "Iliad", "营运中", "UMTS 2100 / UMTS 900", ""},
		MNCDescription{"208", "20", "Bouygues", "Bouygues Telecom", "营运中", "GSM 900 / GSM 1800 / UMTS 2100 / UMTS 900", ""},
		MNCDescription{"208", "21", "Bouygues", "Bouygues Telecom", "未知", "GSM 900 / GSM 1800 / UMTS 2100 / UMTS 900", ""},
		MNCDescription{"208", "22", "Transatel Mobile", "Transatel", "未知", "未知", ""},
		MNCDescription{"234", "24", "Stour Marine", "Greenfone", "营运中", "未知", ""},
		MNCDescription{"208", "88", "Bouygues", "Bouygues Telecom", "营运中", "GSM 900 / GSM 1800", ""},
	},
	"法属玻里尼西亚(法国)- PF": {
		MNCDescription{"547", "20", "Vini", "Tikiphone SA", "营运中", "GSM 900", ""},
	},
	"加蓬 - GA": {
		MNCDescription{"628", "01", "Libertis", "Gabon Telecom & Libertis S.A.", "营运中", "GSM 900", ""},
		MNCDescription{"628", "02", "Moov", "Atlantique Télécom (Etisalat Group) Gabon S.A.", "营运中", "GSM 900", ""},
		MNCDescription{"628", "03", "Airtel", "Airtel Gabon S.A.", "营运中", "GSM 900", ""},
		MNCDescription{"628", "04", "Azur", "USAN Gabon S.A.", "营运中", "GSM 900", ""},
	},
	"冈比亚 - GM": {
		MNCDescription{"607", "01", "Gamcel", "Gamcel", "营运中", "GSM 900 / GSM 1900", ""},
		MNCDescription{"607", "02", "Africel", "Africel", "营运中", "GSM 900 / GSM 1900", ""},
		MNCDescription{"607", "03", "Comium", "Comium", "营运中", "GSM 900 / GSM 1900", ""},
		MNCDescription{"607", "04", "QCell", "QCell Gambia", "营运中", "GSM 900 / GSM 1800 / UMTS 2100", ""},
	},
	"格鲁吉亚 - GE": {
		MNCDescription{"282", "01", "Geocell", "Geocell Limited", "营运中", "GSM 900 / GSM 1800 / UMTS 2100", ""},
		MNCDescription{"282", "02", "MagtiCom", "Magticom GSM", "营运中", "GSM 900 / GSM 1800 / UMTS 2100", ""},
		MNCDescription{"282", "03", "MagtiCom", "Magtifix", "营运中", "CDMA2000 450", ""},
		MNCDescription{"282", "04", "Beeline", "Mobitel LLC", "营运中", "GSM 1800", ""},
		MNCDescription{"282", "05", "Silknet", "Silknet CDMA", "营运中", "CDMA2000 800", ""},
	},
	"德国 - DE": {
		MNCDescription{"262", "01", "T-Mobile", "T-Mobile Deutschland GmbH", "营运中", "LTE 800 / GSM 900 / GSM/LTE 1800 / UMTS 2100 / LTE 2600", ""},
		MNCDescription{"262", "02", "Vodafone", "Vodafone D2 GmbH", "营运中", "GSM 900 / GSM 1800 / UMTS 2100", ""},
		MNCDescription{"262", "03", "E-Plus", "E-Plus Mobilfunk", "营运中", "GSM 900 / GSM 1800 / UMTS 2100", ""},
		MNCDescription{"262", "04", "Vodafone", "", "Reserved", "GSM 900 / GSM 1800 / UMTS 2100", ""},
		MNCDescription{"262", "05", "E-Plus", "E-Plus Mobilfunk", "Reserved", "GSM 900 / GSM 1800 / UMTS 2100", ""},
		MNCDescription{"262", "06", "T-Mobile", "", "Reserved", "LTE 800 / GSM 900 / GSM/LTE 1800 / UMTS 2100 / LTE 2600", ""},
		MNCDescription{"262", "07", "O2", "O2 (Germany) GmbH & Co. OHG", "营运中", "GSM 900 / GSM 1800 / UMTS 2100", ""},
		MNCDescription{"262", "08", "O2", "", "Reserved", "GSM 900 / GSM 1800 / UMTS 2100", ""},
		MNCDescription{"262", "09", "Vodafone", "", "Reserved", "GSM 900 / GSM 1800 / UMTS 2100", ""},
		MNCDescription{"262", "10", "", "Arcor AG & Co", "营运中", "GSM-R", ""},
		MNCDescription{"262", "11", "O2", "", "Reserved", "GSM 900 / GSM 1800 / UMTS 2100", ""},
		MNCDescription{"262", "12", "", "Dolphin Telecom", "非营运中", "TETRA", ""},
		MNCDescription{"262", "13", "", "Mobilcom Multimedia", "非营运中", "UMTS 2100", ""},
		MNCDescription{"262", "14", "", "Group 3G UMTS", "非营运中", "UMTS 2100", ""},
		MNCDescription{"262", "15", "Airdata", "", "营运中", "TD-SCDMA", ""},
		MNCDescription{"262", "16", "Vistream", "", "未知", "GSM 900 / GSM 1800 / UMTS 2100 (MVNE)", ""},
		MNCDescription{"262", "42", "27C3", "Chaos Computer Club", "非营运中", "GSM 1800", ""},
		MNCDescription{"262", "43", "LYCA", "Lycamobile", "营运中", "未知", ""},
		MNCDescription{"262", "60", "", "DB Telematik", "营运中", "GSM-R 900", ""},
		MNCDescription{"262", "76", "", "Siemens AG", "营运中", "GSM 900", ""},
		MNCDescription{"262", "77", "E-Plus", "", "营运中", "GSM 900", ""},
		MNCDescription{"262", "92", "Nash Technologies", "", "营运中", "GSM 1800 / UMTS 2100", ""},
		MNCDescription{"262", "901", "Debitel", "", "营运中", "未知", ""},
	},
	"加纳 - GH": {
		MNCDescription{"620", "01", "MTN", "MTN Group", "营运中", "GSM 900 / GSM 1800", ""},
		MNCDescription{"620", "02", "Vodafone", "Vodafone Group", "营运中", "GSM 900 / GSM 1800", ""},
		MNCDescription{"620", "03", "tiGO", "Millicom Ghana", "营运中", "GSM 900 / GSM 1800", ""},
		MNCDescription{"620", "04", "Expresso", "Kasapa / Hutchison Telecom", "营运中", "CDMA2000", ""},
		MNCDescription{"620", "06", "Airtel", "Airtel", "营运中", "GSM 900 / GSM 1800 / WCDMA", ""},
	},
	"直布罗陀(英国)- GI": {
		MNCDescription{"266", "01", "GibTel", "Gibraltar Telecoms", "营运中", "GSM 900", ""},
		MNCDescription{"266", "06", "CTS Mobile", "CTS Gibraltar", "营运中", "UMTS 2100", ""},
	},
	"希腊 - GR": {
		MNCDescription{"202", "01", "Cosmote", "COSMOTE - Mobile Telecommunications S.A.", "营运中", "GSM 900 / GSM 1800 / UMTS 2100", ""},
		MNCDescription{"202", "05", "Vodafone", "Vodafone Greece", "营运中", "GSM 900 / GSM 1800 / UMTS 2100", ""},
		MNCDescription{"202", "09", "Wind", "Wind Hellas Telecommunications S.A. (Q-Telecom)", "营运中", "GSM 900 / GSM 1800 / UMTS 2100", ""},
		MNCDescription{"202", "10", "Wind", "Wind Hellas Telecommunications S.A.", "营运中", "GSM 900 / GSM 1800 / UMTS 2100", ""},
	},
	"格陵兰(丹麦王国)- GL": {
		MNCDescription{"290", "01", "", "TELE Greenland A/S", "营运中", "GSM 900", ""},
	},
	"格林纳达 - GD": {
		MNCDescription{"352", "030", "Digicel", "Digicel Grenada Ltd.", "营运中", "GSM 900 / GSM 1800", ""},
		MNCDescription{"352", "110", "Cable & Wireless", "Cable & Wireless Grenada Ltd.", "营运中", "GSM 850", ""},
	},
	"哥德洛普(法国)- GP": {
		MNCDescription{"340", "01", "Orange", "Orange Caraïbe Mobiles", "营运中", "GSM 900", ""},
		MNCDescription{"340", "02", "Outremer", "Outremer Telecom", "营运中", "GSM 900 / GSM 1800", ""},
		MNCDescription{"340", "03", "Telcell", "Saint Martin et Saint Barthelemy Telcell Sarl", "营运中", "GSM 900 / GSM 1800", ""},
		MNCDescription{"340", "08", "Dauphin", "Dauphin Telecom", "营运中", "GSM 900 / GSM 1800", ""},
		MNCDescription{"340", "20", "Digicel", "DIGICEL Antilles Française Guyane", "营运中", "GSM 900", ""},
	},
	"关岛(美国)- GU": {
		MNCDescription{"310", "032", "IT&E Wireless", "IT&E Overseas, Inc", "营运中", "CDMA2000 1900", ""},
		MNCDescription{"310", "033", "", "Guam Telephone Authority", "未知", "未知", ""},
		MNCDescription{"310", "140", "mPulse", "GTA Wireless", "营运中", "GSM 850 / GSM 1900", ""},
		MNCDescription{"310", "370", "docomo", "docomo Pacific", "非营运中", "CDMA2000 850", ""},
		MNCDescription{"311", "250", "i CAN_GSM", "Wave Runner LLC", "非营运中", "GSM 1900", ""},
		MNCDescription{"310", "470", "docomo", "docomo Pacific", "营运中", "GSM 1900 / UMTS 850", ""},
	},
	"危地马拉 - GT": {
		MNCDescription{"704", "01", "Claro", "Servicios de Comunicaciones Personales Inalambricas (SERCOM)", "营运中", "CDMA2000 1900 / GSM 900 / GSM 1900 / UMTS 1900", ""},
		MNCDescription{"704", "02", "Comcel / Tigo", "Millicom / Local partners", "营运中", "GSM 850 / TDMA 800 / UMTS 850", ""},
		MNCDescription{"704", "03", "movistar", "Telefonica Móviles Guatemala (Telefónica)", "营运中", "CDMA2000 1900 / GSM 1900 / UMTS 1900", ""},
		MNCDescription{"704", "?", "digicel", "Digicel Group", "Reserved", "GSM 900", ""},
	},
	"耿济岛(英国)- GB": {
		MNCDescription{"234", "55", "Sure Mobile", "Cable & Wireless Guernsey", "营运中", "GSM 900 / UMTS 2100", ""},
		MNCDescription{"234", "50", "Wave Telecom", "Wave Telecom (JT-Wave)", "营运中", "GSM 1800 / UMTS 2100", ""},
		MNCDescription{"234", "03", "Airtel Vodafone", "Guernsey Airtel Ltd", "营运中", "GSM 1800 / UMTS 2100", ""},
	},
	"几内亚 - GN": {
		MNCDescription{"611", "01", "Orange S.A.", "Orange", "营运中", "GSM 900", ""},
		MNCDescription{"611", "02", "Sotelgui", "Sotelgui Lagui", "营运中", "GSM 900", ""},
		MNCDescription{"611", "03", "Telecel Guinee", "INTERCEL Guinée", "营运中", "GSM 900", ""},
		MNCDescription{"611", "04", "MTN", "Areeba Guinea", "营运中", "GSM 900 / GSM 1800", ""},
		MNCDescription{"611", "05", "Cellcom", "Cellcom", "营运中", "GSM 900 / GSM 1800", ""},
	},
	"几内亚比绍 - GW": {
		MNCDescription{"632", "02", "Areeba", "Spacetel Guiné-Bissau S.A.", "营运中", "GSM 900", ""},
		MNCDescription{"632", "03", "Orange", "", "营运中", "GSM 900/1800", ""},
	},
	"圭亚那 - GY": {
		MNCDescription{"738", "01", "Digicel", "U-Mobile (Cellular) Inc.", "营运中", "GSM 900", ""},
		MNCDescription{"738", "02", "GT&T Cellink Plus", "Guyana Telephone & Telegraph Co.", "营运中", "GSM 900", ""},
	},
	"海地 - HT": {
		MNCDescription{"372", "01", "Voila", "Communication Cellulaire d'Haiti S.A.", "营运中", "GSM 850", ""},
		MNCDescription{"372", "02", "Digicel", "Unigestion Holding S.A.", "营运中", "GSM 1800", ""},
		MNCDescription{"372", "03", "NATCOM", "Telecommunication S.A.", "营运中", "GSM 900", ""},
	},
	"洪都拉斯 - HN": {
		MNCDescription{"708", "01", "Claro", "Servicios de Comunicaciones de Honduras S.A. de C.V.", "营运中", "GSM 1900", ""},
		MNCDescription{"708", "02", "Tigo", "Celtel / Tigo", "营运中", "CDMA2000 850 / GSM 850", ""},
		MNCDescription{"708", "30", "Hondutel", "Empresa Hondureña de Telecomunicaciones", "营运中", "GSM 1900", ""},
		MNCDescription{"708", "40", "DIGICEL", "Digicel de Honduras", "营运中", "GSM 1900", ""},
	},
	"香港- HK": {
		MNCDescription{"454", "00", "1O1O / csl. / SUN Mobile", "CSL Mobile Limited", "营运中", "GSM 900 / GSM 1800 / UMTS 900 / UMTS 2100", ""},
		MNCDescription{"454", "01", "", "CITIC Telecom", "营运中", "GSM 900 / GSM 1800", ""},
		MNCDescription{"454", "02", "", "CSL", "营运中", "GSM 900 / GSM 1800", ""},
		MNCDescription{"454", "03", "3 (3G)", "Hutchison Telecom", "营运中", "UMTS 900 / UMTS 2100", ""},
		MNCDescription{"454", "04", "3 (2G)", "Hutchison Telecom", "营运中", "GSM 900 / GSM 1800", ""},
		MNCDescription{"454", "05", "3 (CDMA)", "Hutchison Telecom", "非营运中", "CDMA2000 800", ""},
		MNCDescription{"454", "06", "SmarTone", "SmarTone Mobile Communications Limited", "营运中", "GSM 900 / GSM 1800 / UMTS 850 / UMTS 2100", ""},
		MNCDescription{"454", "07", "", "China Unicom (Hong Kong) Limited", "营运中", "GSM 900 / GSM 1800 / UMTS 2100", ""},
		MNCDescription{"454", "08", "", "Trident Telecom", "非营运中", "GSM 900 / GSM 1800", ""},
		MNCDescription{"454", "09", "", "China Motion Telecom", "营运中", "GSM 900 / GSM 1800", ""},
		MNCDescription{"454", "10", "New World Mobility", "CSL", "营运中", "GSM 1800", ""},
		MNCDescription{"454", "11", "", "China-Hong Kong Telecom", "营运中", "UMTS 2100", ""},
		MNCDescription{"454", "12", "CMCC HK", "China Mobile Hong Kong Company Limited", "营运中", "GSM 1800", ""},
		MNCDescription{"454", "13", "CMCC HK", "China Mobile Hong Kong Company Limited", "营运中", "UMTS 2100", ""},
		MNCDescription{"454", "14", "", "Hutchison Telecom", "营运中", "GSM 1800", ""},
		MNCDescription{"454", "15", "", "SmarTone Mobile Communications Limited", "营运中", "GSM 1800", ""},
		MNCDescription{"454", "16", "PCCW Mobile (2G)", "PCCW Limited", "营运中", "GSM 1800", ""},
		MNCDescription{"454", "17", "", "SmarTone Mobile Communications Limited", "营运中", "GSM 1800", ""},
		MNCDescription{"454", "18", "", "CSL", "营运中", "GSM 1800", ""},
		MNCDescription{"454", "19", "PCCW Mobile (3G)", "PCCW Limited", "营运中", "UMTS 2100", ""},
		MNCDescription{"454", "29", "PCCW Mobile (CDMA)", "PCCW Limited", "营运中", "CDMA2000 800", ""},
	},
	"匈牙利 - HU": {
		MNCDescription{"216", "01", "Telenor", "Telenor Magyarország Zrt.", "营运中", "GSM 900 / GSM 1800 / UMTS 2100", ""},
		MNCDescription{"216", "30", "T-Mobile", "Magyar Telekom Plc", "营运中", "GSM 900 / GSM 1800 / UMTS 2100", ""},
		MNCDescription{"216", "70", "Vodafone", "Vodafone Magyarország Zrt.", "营运中", "GSM 900 / GSM 1800 / UMTS 2100", ""},
	},
	"冰岛 - IS": {
		MNCDescription{"274", "01", "Síminn", "Iceland Telecom", "营运中", "GSM 900 / GSM 1800 / UMTS 2100", ""},
		MNCDescription{"274", "02", "Vodafone", "Og fjarskipti hf", "营运中", "GSM 900 / GSM 1800", ""},
		MNCDescription{"274", "03", "Vodafone", "Vodafone Iceland", "营运中", "未知", ""},
		MNCDescription{"274", "04", "Viking", "IMC Island ehf", "营运中", "GSM 1800", ""},
		MNCDescription{"274", "06", "", "Núll níu ehf", "Reserved", "未知", ""},
		MNCDescription{"274", "07", "IceCell", "IceCell ehf", "营运中", "GSM 1800", ""},
		MNCDescription{"274", "08", "On-waves", "Iceland Telecom", "营运中", "未知", ""},
		MNCDescription{"274", "11", "Nova", "Nova ehf", "营运中", "UMTS 2100", ""},
		MNCDescription{"274", "12", "Tal", "Tal hf", "营运中", "GSM 900 / GSM 1800", ""},
	},
	"印度 - IN": {
		MNCDescription{"404", "01", "Vodafone IN", "Haryana", "营运中", "GSM 900", ""},
		MNCDescription{"404", "02", "AirTel", "Punjab", "营运中", "GSM 900", ""},
		MNCDescription{"404", "03", "AirTel", "Himachal Pradesh", "营运中", "GSM 900", ""},
		MNCDescription{"404", "04", "IDEA", "Delhi & NCR", "营运中", "GSM 1800", ""},
		MNCDescription{"404", "05", "Vodafone IN", "Gujarat", "营运中", "GSM 900", ""},
		MNCDescription{"404", "07", "IDEA", "Andhra Pradesh", "营运中", "GSM 900", ""},
		MNCDescription{"404", "09", "Reliance", "Assam", "营运中", "GSM 900", ""},
		MNCDescription{"404", "10", "AirTel", "Delhi & NCR", "营运中", "GSM 900", ""},
		MNCDescription{"404", "11", "Vodafone IN", "Delhi & NCR", "营运中", "GSM 900 / GSM 1800", ""},
		MNCDescription{"404", "12", "IDEA", "Haryana", "营运中", "GSM 900", ""},
		MNCDescription{"404", "13", "Vodafone IN", "Andhra Pradesh", "营运中", "GSM 1800", ""},
		MNCDescription{"404", "14", "IDEA", "Punjab", "营运中", "GSM 900 / GSM 1800", ""},
		MNCDescription{"404", "15", "Vodafone IN", "Uttar Pradesh (East)", "营运中", "GSM 900", ""},
		MNCDescription{"404", "17", "AIRCEL", "West Bengal", "营运中", "GSM 900 / GSM 1800", ""},
		MNCDescription{"404", "19", "IDEA", "Kerala", "营运中", "GSM 900 / GSM 1800", ""},
		MNCDescription{"404", "20", "Vodafone IN", "Mumbai", "营运中", "GSM 900", ""},
		MNCDescription{"404", "21", "Loop Mobile", "Mumbai", "营运中", "GSM 900", ""},
		MNCDescription{"404", "22", "IDEA", "Maharashtra & Goa", "营运中", "GSM 900", ""},
		MNCDescription{"404", "24", "IDEA", "Gujarat", "营运中", "GSM 900", ""},
		MNCDescription{"404", "25", "AIRCEL", "Bihar", "营运中", "GSM 900 / GSM 1800", ""},
		MNCDescription{"404", "27", "Vodafone IN", "Maharashtra & Goa", "营运中", "GSM 900", ""},
		MNCDescription{"404", "28", "AIRCEL", "Orissa", "营运中", "GSM 900", ""},
		MNCDescription{"404", "29", "AIRCEL", "Assam", "营运中", "GSM 900", ""},
		MNCDescription{"404", "30", "Vodafone IN", "Kolkata", "营运中", "GSM 900 / GSM 1800", ""},
		MNCDescription{"404", "31", "AirTel", "Kolkata", "营运中", "GSM 900", ""},
		MNCDescription{"404", "34", "CellOne", "Haryana", "营运中", "GSM 900", ""},
		MNCDescription{"404", "36", "Reliance", "Bihar & Jharkhand", "营运中", "未知", ""},
		MNCDescription{"404", "37", "Aircel", "Jammu & Kashmir", "营运中", "GSM 900 / UMTS 2100", ""},
		MNCDescription{"404", "38", "CellOne", "Assam", "营运中", "GSM 900 / UMTS 2100", ""},
		MNCDescription{"404", "41", "Aircel", "Chennai", "营运中", "GSM 900", ""},
		MNCDescription{"404", "42", "Aircel", "Tamil Nadu", "营运中", "GSM 900", ""},
		MNCDescription{"404", "44", "IDEA", "Karnataka", "营运中", "GSM 900", ""},
		MNCDescription{"404", "45", "Airtel", "Karnataka", "营运中", "GSM", ""},
		MNCDescription{"404", "46", "Vodafone IN", "Kerala", "营运中", "GSM 900", ""},
		MNCDescription{"404", "48", "Dishnet Wireless", "未知", "营运中", "GSM 900", ""},
		MNCDescription{"404", "49", "Airtel", "Andhra Pradesh", "营运中", "GSM 900", ""},
		MNCDescription{"404", "51", "CellOne", "Himachal Pradesh", "营运中", "GSM 900", ""},
		MNCDescription{"404", "52", "Reliance", "Orissa", "营运中", "GSM 900", ""},
		MNCDescription{"404", "53", "CellOne", "Punjab", "营运中", "GSM 900", ""},
		MNCDescription{"404", "54", "CellOne", "Uttar Pradesh (West)", "营运中", "GSM 900", ""},
		MNCDescription{"404", "55", "CellOne", "Uttar Pradesh (East)", "营运中", "GSM 900", ""},
		MNCDescription{"404", "71", "CellOne", "Karnataka (Bangalore)", "营运中", "GSM 900", ""},
		MNCDescription{"404", "56", "IDEA", "Uttar Pradesh (West)", "营运中", "GSM 900", ""},
		MNCDescription{"404", "57", "CellOne", "Gujarat", "营运中", "GSM 900", ""},
		MNCDescription{"404", "58", "CellOne", "Madhya Pradesh & Chhattisgarh", "营运中", "GSM 900 / UMTS 2100", ""},
		MNCDescription{"404", "59", "CellOne", "Rajasthan", "营运中", "GSM 900", ""},
		MNCDescription{"404", "60", "Vodafone IN", "Rajasthan", "营运中", "GSM 900", ""},
		MNCDescription{"404", "62", "CellOne", "Jammu & Kashmir", "营运中", "GSM 900 / UMTS 2100", ""},
		MNCDescription{"404", "64", "CellOne", "Chennai", "营运中", "GSM 900 / UMTS 2100", ""},
		MNCDescription{"404", "66", "CellOne", "Maharashtra & Goa", "营运中", "GSM 900", ""},
		MNCDescription{"404", "67", "Reliance GSM", "Madhya Pradesh & Chhattisgarh", "营运中", "GSM 900", ""},
		MNCDescription{"404", "68", "DOLPHIN", "Delhi & NCR", "营运中", "GSM 900 / UMTS 2100", ""},
		MNCDescription{"404", "69", "DOLPHIN", "Mumbai", "营运中", "GSM 900 / UMTS 2100", ""},
		MNCDescription{"404", "72", "CellOne", "Kerala", "营运中", "GSM 900", ""},
		MNCDescription{"404", "74", "CellOne", "West Bengal", "营运中", "GSM 900 / UMTS 2100", ""},
		MNCDescription{"404", "76", "CellOne", "Orissa", "营运中", "GSM 900 / UMTS 2100", ""},
		MNCDescription{"404", "78", "Idea Cellular Ltd", "Madhya Pradesh & Chattishgarh", "营运中", "GSM 900 / UMTS 2100", ""},
		MNCDescription{"404", "80", "BSNL MOBILE", "Bharat Sanchar Nigam Limited", "营运中", "未知", ""},
		MNCDescription{"404", "81", "CellOne", "Kolkata", "营运中", "GSM 900 / UMTS 2100", ""},
		MNCDescription{"404", "82", "Idea", "Himachal Pradesh", "营运中", "未知", ""},
		MNCDescription{"404", "83", "Reliance Smart GSM", "Kolkata", "营运中", "GSM 1800", ""},
		MNCDescription{"404", "84", "Vodafone IN", "Chennai", "营运中", "GSM 1800", ""},
		MNCDescription{"404", "85", "Reliance", "West Bengal", "营运中", "GSM 1800", ""},
		MNCDescription{"404", "86", "Vodafone IN", "Karnataka", "营运中", "未知", ""},
		MNCDescription{"404", "87", "Idea", "Rajisthan", "营运中", "未知", ""},
		MNCDescription{"404", "88", "Vodafone IN", "Vodafone Punjab", "营运中", "未知", ""},
		MNCDescription{"404", "89", "Idea", "Uttar Pradesh (East)", "营运中", "未知", ""},
		MNCDescription{"404", "90", "AirTel", "Maharashtra & Goa", "营运中", "GSM 1800", ""},
		MNCDescription{"404", "91", "AIRCEL", "Kolkata", "营运中", "GSM 900", ""},
		MNCDescription{"404", "92", "AirTel", "Mumbai", "营运中", "GSM 1800", ""},
		MNCDescription{"404", "93", "AirTel", "Madhya Pradesh", "营运中", "GSM 1800", ""},
		MNCDescription{"404", "96", "AirTel", "Haryana", "营运中", "GSM 1800", ""},
		MNCDescription{"405", "01", "Reliance", "Andhra Pradesh", "营运中", "GSM 1800", ""},
		MNCDescription{"405", "03", "Reliance", "Bihar", "营运中", "GSM 1800", ""},
		MNCDescription{"405", "04", "Reliance", "Chennai", "营运中", "GSM 1800", ""},
		MNCDescription{"405", "05", "Reliance", "Delhi & NCR", "营运中", "GSM 1800", ""},
		MNCDescription{"405", "09", "Reliance", "Jammu & Kashmir", "营运中", "GSM 1800 / UTMS 2100", ""},
		MNCDescription{"405", "10", "Reliance", "Karnataka", "营运中", "GSM 1800", ""},
		MNCDescription{"405", "13", "Reliance", "Maharashtra & Goa", "营运中", "GSM 1800", ""},
		MNCDescription{"405", "025", "TATA Teleservice", "Andhra Pradesh", "营运中", "CDMA 2000 / GSM 1800 / UMTS 2100", ""},
		MNCDescription{"405", "026", "TATA Teleservice", "Assam", "营运中", "CDMA 2000", ""},
		MNCDescription{"405", "027", "TATA Teleservice", "Bihar/Jharkhand", "营运中", "CDMA 2000 / GSM 1800", ""},
		MNCDescription{"405", "029", "TATA Teleservice", "Delhi", "营运中", "CDMA 2000", ""},
		MNCDescription{"405", "030", "TATA Teleservice", "Gujarat", "营运中", "CDMA 2000 / GSM 1800 / UMTS 2100", ""},
		MNCDescription{"405", "031", "TATA Teleservice", "Haryana", "营运中", "CDMA 2000 / GSM 1800 / UMTS 2100", ""},
		MNCDescription{"405", "032", "TATA Teleservice", "Himachal Pradesh", "营运中", "CDMA 2000 / GSM 1800 / UMTS 2100", ""},
		MNCDescription{"405", "033", "TATA Teleservice", "Jammu & Kashmir", "营运中", "CDMA 2000", ""},
		MNCDescription{"405", "034", "TATA Teleservice", "Karnataka", "营运中", "CDMA 2000 / GSM 1800 / UMTS 2100", ""},
		MNCDescription{"405", "035", "TATA Teleservice", "Kerala", "营运中", "CDMA 2000 / GSM 1800 / UMTS 2100", ""},
		MNCDescription{"405", "036", "TATA Teleservice", "Kolkata", "营运中", "CDMA 2000 / GSM 1800", ""},
		MNCDescription{"405", "037", "TATA Teleservice", "Maharashtra & Goa", "营运中", "CDMA 2000 / GSM 1800 / UMTS 2100", ""},
		MNCDescription{"405", "038", "TATA Teleservice", "Madhya Pradesh", "营运中", "CDMA 2000 / GSM 1800 / UMTS 2100", ""},
		MNCDescription{"405", "039", "TATA Teleservice", "Mumbai", "营运中", "CDMA 2000 / GSM 1800", ""},
		MNCDescription{"405", "041", "TATA Teleservice", "Orissa", "营运中", "CDMA 2000 / GSM 1800", ""},
		MNCDescription{"405", "042", "TATA Teleservice", "Punjab", "营运中", "CDMA 2000 / GSM 1800 / UMTS 2100", ""},
		MNCDescription{"405", "043", "TATA Teleservice", "Rajasthan", "营运中", "CDMA 2000 / GSM 1800 / UMTS 2100", ""},
		MNCDescription{"405", "044", "TATA Teleservice", "Tamil Nadu including Chennai", "营运中", "CDMA 2000 / GSM 1800", ""},
		MNCDescription{"405", "045", "TATA Teleservice", "[Uttar Pradesh (E)]", "营运中", "CDMA 2000 / GSM 1800", ""},
		MNCDescription{"405", "046", "TATA Teleservice", "[Uttar Pradesh (W) & Uttarkhand ]", "营运中", "CDMA 2000 / GSM 1800 / UMTS 2100", ""},
		MNCDescription{"405", "047", "TATA Teleservice", "[West Bengal]", "营运中", "CDMA 2000 / GSM 1800", ""},
		MNCDescription{"405", "51", "AirTel", "West Bengal", "营运中", "GSM 900", ""},
		MNCDescription{"405", "52", "AirTel", "Bihar & Jharkhand", "营运中", "GSM 900", ""},
		MNCDescription{"405", "54", "AirTel", "Uttar Pradesh (East)", "营运中", "GSM 900", ""},
		MNCDescription{"405", "55", "Airtel", "Jammu & Kashmir", "营运中", "GSM 900 / UTMS 2100", ""},
		MNCDescription{"405", "56", "AirTel", "Assam", "营运中", "GSM 900 / GSM 1800", ""},
		MNCDescription{"405", "66", "Vodafone IN", "Uttar Pradesh (West)", "营运中", "GSM 900 / GSM 1800", ""},
		MNCDescription{"405", "70", "IDEA", "Bihar & Jharkhand", "营运中", "GSM 1800", ""},
		MNCDescription{"405", "750", "Vodafone IN", "Jammu & Kashmir", "营运中", "GSM 1800", ""},
		MNCDescription{"405", "751", "Vodafone IN", "Assam", "营运中", "GSM 1800", ""},
		MNCDescription{"405", "752", "Vodafone IN", "Bihar & Jharkhand", "营运中", "GSM 1800", ""},
		MNCDescription{"405", "753", "Vodafone IN", "Orissa", "营运中", "GSM 1800", ""},
		MNCDescription{"405", "754", "Vodafone IN", "Himachal Pradesh", "营运中", "GSM 1800", ""},
		MNCDescription{"405", "755", "Vodafone IN", "North East", "营运中", "GSM 1800", ""},
		MNCDescription{"405", "756", "Vodafone IN", "Madhya Pradesh & Chhattisgarh", "营运中", "GSM 1800", ""},
		MNCDescription{"405", "799", "IDEA", "Mumbai", "营运中", "GSM 900 / GSM 1800", ""},
		MNCDescription{"405", "800", "AIRCEL", "Delhi & NCR", "营运中", "GSM 1800", ""},
		MNCDescription{"405", "801", "AIRCEL", "Andhra Pradesh", "营运中", "GSM 1800", ""},
		MNCDescription{"405", "802", "AIRCEL", "Gujarat", "非营运中", "GSM 1800", ""},
		MNCDescription{"405", "803", "AIRCEL", "Karnataka", "营运中", "GSM 1800", ""},
		MNCDescription{"405", "804", "AIRCEL", "Maharashtra & Goa", "营运中", "GSM 1800", ""},
		MNCDescription{"405", "805", "AIRCEL", "Mumbai", "营运中", "GSM 1800", ""},
		MNCDescription{"405", "806", "AIRCEL", "Rajasthan", "营运中", "GSM 1800", ""},
		MNCDescription{"405", "807", "AIRCEL", "Haryana", "非营运中", "GSM 1800", ""},
		MNCDescription{"405", "808", "AIRCEL", "Madhya Pradesh", "非营运中", "GSM 1800", ""},
		MNCDescription{"405", "809", "AIRCEL", "Kerala", "营运中", "GSM 1800", ""},
		MNCDescription{"405", "810", "AIRCEL", "Uttar Pradesh (East)", "营运中", "GSM 1800", ""},
		MNCDescription{"405", "811", "AIRCEL", "Uttar Pradesh (West)", "营运中", "GSM", ""},
		MNCDescription{"405", "812", "AIRCEL", "Punjab", "非营运中", "GSM", ""},
		MNCDescription{"405", "819", "Uninor", "Andhra Pradesh", "营运中", "GSM", ""},
		MNCDescription{"405", "818", "Uninor", "Uttar Pradesh (West)", "营运中", "GSM", ""},
		MNCDescription{"405", "820", "Uninor", "Karnataka", "营运中", "GSM 1800", ""},
		MNCDescription{"405", "821", "Uninor", "Kerala", "营运中", "GSM 1800", ""},
		MNCDescription{"405", "822", "Uninor", "Kolkata", "营运中", "GSM", ""},
		MNCDescription{"405", "824", "Videocon Datacom", "Assam", "Reserved", "GSM 1800", ""},
		MNCDescription{"405", "827", "Videocon Datacom", "Gujarat", "营运中", "GSM 1800", ""},
		MNCDescription{"405", "834", "Videocon Datacom", "Madhya Pradesh", "Reserved", "GSM 1800", ""},
		MNCDescription{"405", "844", "Uninor", "Delhi & NCR", "非营运中", "GSM", ""},
		MNCDescription{"405", "845", "IDEA", "Assam", "营运中", "GSM 1800", ""},
		MNCDescription{"405", "86", "IDEA", "Jammu & Kashmir", "营运中", "GSM 1800 / UTMS 2100", ""},
		MNCDescription{"405", "848", "IDEA", "Kolkata", "营运中", "GSM 1800", ""},
		MNCDescription{"405", "850", "IDEA", "Orissa", "营运中", "GSM 1800", ""},
		MNCDescription{"405", "855", "Loop Mobile", "Assam", "Reserved", "GSM 1800", ""},
		MNCDescription{"405", "864", "Loop Mobile", "Kolkata", "非营运中", "GSM", ""},
		MNCDescription{"405", "865", "Loop Mobile", "Madhya Pradesh", "Reserved", "GSM 1800", ""},
		MNCDescription{"405", "875", "Uninor", "Assam", "Reserved", "GSM 1800", ""},
		MNCDescription{"405", "880", "Uninor", "West Bengal", "营运中", "GSM 1800", ""},
		MNCDescription{"405", "881", "S Tel", "Assam", "Reserved", "GSM 1800", ""},
		MNCDescription{"405", "912", "Etisalat DB(cheers)", "Andhra Pradesh", "Reserved", "未知", ""},
		MNCDescription{"405", "913", "Etisalat DB(cheers)", "Delhi & NCR", "Reserved", "GSM", ""},
		MNCDescription{"405", "914", "Etisalat DB(cheers)", "Gujarat", "营运中", "未知", ""},
		MNCDescription{"405", "917", "Etisalat DB(cheers)", "Kerala", "Reserved", "未知", ""},
		MNCDescription{"404", "927", "Uninor", "Gujarat", "营运中", "未知", ""},
		MNCDescription{"405", "929", "Uninor", "Maharashtra", "营运中", "GSM 1800", ""},
	},
	"印度尼西亚 - ID": {
		MNCDescription{"510", "00", "PSN", "PT Pasifik Satelit Nusantara (ACeS)", "营运中", "Satellite", ""},
		MNCDescription{"510", "01", "INDOSAT", "PT Indonesian Satellite Corporation Tbk (INDOSAT)", "营运中", "GSM 900 / GSM 1800 / UMTS 2100", ""},
		MNCDescription{"510", "03", "StarOne", "PT Indosat Tbk", "营运中", "CDMA2000 800", ""},
		MNCDescription{"510", "07", "TelkomFlexi", "PT Telkom", "营运中", "CDMA2000 800", ""},
		MNCDescription{"510", "08", "AXIS", "PT Natrindo Telepon Seluler", "营运中", "GSM 1800 / UMTS 2100", ""},
		MNCDescription{"510", "09", "SMART", "PT Smart Telecom", "营运中", "CDMA2000 1900", ""},
		MNCDescription{"510", "10", "Telkomsel", "PT Telekomunikasi Selular", "营运中", "GSM 900 / GSM 1800 / UMTS 2100/apn free arutmin", ""},
		MNCDescription{"510", "11", "XL", "PT XL Axiata Tbk", "营运中", "GSM 900 / GSM 1800 / UMTS 2100", ""},
		MNCDescription{"510", "20", "TELKOMMobile", "PT Telkom Indonesia Tbk", "未知", "GSM 1800", ""},
		MNCDescription{"510", "21", "IM3", "PT Indonesian Satellite Corporation Tbk (INDOSAT)", "非营运中", "GSM 1800", ""},
		MNCDescription{"510", "27", "Ceria", "PT Sampoerna Telekomunikasi Indonesia", "营运中", "CDMA2000 450", ""},
		MNCDescription{"510", "28", "Fren/Hepi", "PT Mobile-8 Telecom", "营运中", "CDMA2000 800", ""},
		MNCDescription{"510", "89", "3", "PT Hutchison CP Telecommunications", "营运中", "GSM 1800 / UMTS 2100", ""},
		MNCDescription{"510", "99", "Esia", "PT Bakrie Telecom", "营运中", "CDMA2000 800", ""},
	},
	"伊朗 - IR": {
		MNCDescription{"432", "11", "IR-MCI", "Mobile Communications Company of Iran", "营运中", "GSM 900 / GSM 1800", ""},
		MNCDescription{"432", "14", "TKC", "KFZO", "营运中", "GSM 900", ""},
		MNCDescription{"432", "19", "MTCE", "Mobile Telecommunications Company of Esfahan", "营运中", "GSM 900", ""},
		MNCDescription{"432", "32", "Taliya", "Rafsanjan Industrial Complex", "营运中", "GSM 900 / GSM 1800", ""},
		MNCDescription{"432", "35", "Irancell", "Irancell Telecommunications Services Company", "营运中", "GSM 900 / GSM 1800", ""},
		MNCDescription{"432", "70", "TCI", "Telephone Communications Company of Iran", "营运中", "GSM 900 / GSM 1800", ""},
		MNCDescription{"432", "93", "Iraphone", "Iraphone", "营运中", "GSM 1800", ""},
	},
	"伊拉克 - IQ": {
		MNCDescription{"418", "05", "Asia Cell", "Asia Cell Telecommunications Company", "营运中", "GSM 900", ""},
		MNCDescription{"418", "08", "SanaTel", "", "营运中", "GSM 900", ""},
		MNCDescription{"418", "20", "Zain", "Zain Iraq", "营运中", "GSM 900 / GSM 1800", ""},
		MNCDescription{"418", "30", "Zain", "Zain Iraq", "营运中", "GSM 900 / GSM 1800", ""},
		MNCDescription{"418", "40", "Korek", "Korek Telecom Ltd", "营运中", "GSM 900", ""},
		MNCDescription{"418", "45", "Mobitel", "Mobitel Co. Ltd.", "营运中", "3.5G/UMTS", ""},
		MNCDescription{"418", "?", "IRAQNA", "Orascom Telecom Iraq Corporation", "营运中", "GSM 900", ""},
		MNCDescription{"418", "92", "Omnnea", "Omnnea Wireless", "营运中", "3.5G/UMTS", ""},
	},
	"爱尔兰 - IE": {
		MNCDescription{"272", "01", "Vodafone", "Vodafone Ireland", "营运中", "GSM 900 / GSM 1800 / UMTS 2100", ""},
		MNCDescription{"272", "02", "O2", "O2 Ireland", "营运中", "GSM 900 / GSM 1800 / UMTS 2100", ""},
		MNCDescription{"272", "03", "Meteor", "Meteor Mobile Communications", "营运中", "GSM 900 / GSM 1800 / UMTS 2100", ""},
		MNCDescription{"272", "04", "", "Access Telecom", "未知", "未知", ""},
		MNCDescription{"272", "05", "3", "Hutchison 3G Ireland limited", "营运中", "UMTS 2100", ""},
		MNCDescription{"272", "07", "Eircom", "Eircom Mobile", "营运中", "GSM 900 / GSM 1800 / UMTS 2100", ""},
		MNCDescription{"272", "09", "", "Clever Communications", "未知", "未知", ""},
		MNCDescription{"272", "11", "", "Liffey Telecom", "营运中", "GSM 900 / GSM 1800 / UMTS 2100", ""},
	},
	"马恩岛(英国)- IM": {
		MNCDescription{"234", "58", "Pronto GSM", "Manx Telecom", "营运中", "GSM 900 / UMTS 2100", ""},
		MNCDescription{"234", "09", "Sure Mobile", "Cable & Wireless Isle of Man Ltd.", "营运中", "GSM 900/1800", ""},
		MNCDescription{"234", "", "Cloud 9 Mobile", "Cloud 9 Mobile Communications PLC", "非营运中", "GSM 1800 / UMTS 2100", ""},
	},
	"以色列 - IL": {
		MNCDescription{"425", "01", "Orange", "Partner Communications Company Ltd", "营运中", "GSM 900 / GSM 1800 / UMTS 2100", ""},
		MNCDescription{"425", "02", "Cellcom", "", "营运中", "TDMA 850 / GSM 1800 / UMTS 2100", ""},
		MNCDescription{"425", "03", "Pelephone", "", "营运中", "CDMA2000 800 / UMTS 850 / 2100", ""},
		MNCDescription{"425", "77", "Mirs", "", "营运中", "iDEN", ""},
	},
	"意大利 - IT": {
		MNCDescription{"222", "01", "TIM", "Telecom Italia SpA", "营运中", "GSM 900 / GSM 1800 / UMTS 2100", ""},
		MNCDescription{"222", "02", "Elsacom", "", "非营运中", "Satellite (Globalstar)", ""},
		MNCDescription{"222", "07", "Noverca", "", "营运中", "MVNO", ""},
		MNCDescription{"222", "10", "Vodafone", "Vodafone Omnitel N.V.", "营运中", "GSM 900 / GSM 1800 / UMTS 2100", ""},
		MNCDescription{"222", "30", "RFI", "Rete Ferroviaria Italiana", "营运中", "GSM-R 900", ""},
		MNCDescription{"222", "77", "IPSE 2000", "", "非营运中", "UMTS 2100", ""},
		MNCDescription{"222", "88", "Wind", "Wind Telecomunicazioni SpA", "营运中", "GSM 900 / GSM 1800 / UMTS 2100", ""},
		MNCDescription{"222", "98", "Blu", "", "非营运中", "GSM 1800", ""},
		MNCDescription{"222", "99", "3 Italia", "Hutchison 3G", "营运中", "UMTS 2100", ""},
	},
	"科特迪瓦 - CI": {
		MNCDescription{"612", "01", "", "Cora de Comstar", "非营运中", "未知", ""},
		MNCDescription{"612", "02", "Moov", "", "营运中", "GSM 900 / GSM 1800", ""},
		MNCDescription{"612", "03", "Orange", "", "营运中", "GSM 900", ""},
		MNCDescription{"612", "04", "KoZ", "Comium Ivory Coast Inc", "营运中", "GSM 900 / GSM 1800", ""},
		MNCDescription{"612", "05", "MTN", "", "营运中", "GSM 900", ""},
		MNCDescription{"612", "06", "ORICEL", "ORICEL", "营运中", "GSM 1800", ""},
	},
	"牙买加 - JM": {
		MNCDescription{"338", "020", "LIME", "Cable & Wireless", "非营运中", "未知", ""},
		MNCDescription{"338", "050", "Digicel", "Digicel (Jamaica) Limited", "营运中", "GSM 900 / GSM 1800 / CDMA2000 1900", ""},
		MNCDescription{"338", "070", "Claro", "Oceanic Digital Jamaica Limited", "营运中", "GSM 850 / GSM 1900 / CDMA2000 850", ""},
		MNCDescription{"338", "180", "LIME", "Cable & Wireless", "营运中", "GSM 850 / GSM 1900 / WCDMA 850", ""},
	},
	"日本 - JP": {
		MNCDescription{"440", "00", "eMobile", "EMOBILE Limited", "营运中", "UMTS 1700", ""},
		MNCDescription{"440", "01", "NTT docomo", "NTT docomo", "营运中", "UMTS 2100", ""},
		MNCDescription{"440", "02", "NTT docomo", "NTT DoCoMo Kansai", "营运中", "UMTS 2100", ""},
		MNCDescription{"440", "03", "NTT docomo", "NTT DoCoMo Hokuriku", "营运中", "UMTS 2100", ""},
		MNCDescription{"440", "04", "SoftBank", "SoftBank Mobile Corp", "营运中", "UMTS 2100", ""},
		MNCDescription{"440", "06", "SoftBank", "SoftBank Mobile Corp", "营运中", "UMTS 2100", ""},
		MNCDescription{"440", "07", "KDDI", "KDDI Corporation", "营运中", "CDMA2000", ""},
		MNCDescription{"440", "08", "KDDI", "KDDI Corporation", "营运中", "未知", ""},
		MNCDescription{"440", "09", "NTT docomo", "NTT DoCoMo Kansai", "营运中", "未知", ""},
		MNCDescription{"440", "10", "NTT docomo", "NTT DoCoMo Kansai", "营运中", "UMTS 800 / UMTS 1700 / UMTS 2100", ""},
		MNCDescription{"440", "11", "NTT docomo", "NTT DoCoMo Tokai", "营运中", "未知", ""},
		MNCDescription{"440", "12", "NTT docomo", "NTT DoCoMo", "营运中", "未知", ""},
		MNCDescription{"440", "13", "NTT docomo", "NTT DoCoMo", "营运中", "未知", ""},
		MNCDescription{"440", "14", "NTT docomo", "NTT DoCoMo Tohoku", "营运中", "未知", ""},
		MNCDescription{"440", "15", "NTT docomo", "NTT DoCoMo", "营运中", "未知", ""},
		MNCDescription{"440", "16", "NTT docomo", "NTT DoCoMo", "营运中", "未知", ""},
		MNCDescription{"440", "17", "NTT docomo", "NTT DoCoMo", "营运中", "未知", ""},
		MNCDescription{"440", "18", "NTT docomo", "NTT DoCoMo Tokai", "营运中", "未知", ""},
		MNCDescription{"440", "19", "NTT docomo", "NTT DoCoMo Hokkaido", "营运中", "未知", ""},
		MNCDescription{"440", "20", "SoftBank", "SoftBank Mobile Corp", "营运中", "UMTS 2100", ""},
		MNCDescription{"440", "21", "NTT docomo", "NTT DoCoMo", "营运中", "未知", ""},
		MNCDescription{"440", "22", "NTT docomo", "NTT DoCoMo Kansai", "营运中", "未知", ""},
		MNCDescription{"440", "23", "DoCoMo", "NTT DoCoMo Tokai", "营运中", "未知", ""},
		MNCDescription{"440", "24", "DoCoMo", "NTT DoCoMo Chugoku", "营运中", "未知", ""},
		MNCDescription{"440", "25", "DoCoMo", "NTT DoCoMo Hokkaido", "营运中", "未知", ""},
		MNCDescription{"440", "26", "DoCoMo", "NTT DoCoMo Kyushu", "营运中", "未知", ""},
		MNCDescription{"440", "27", "DoCoMo", "NTT DoCoMoTohoku", "营运中", "未知", ""},
		MNCDescription{"440", "28", "DoCoMo", "NTT DoCoMo Shikoku", "营运中", "未知", ""},
		MNCDescription{"440", "29", "DoCoMo", "NTT DoCoMo", "营运中", "未知", ""},
		MNCDescription{"440", "30", "DoCoMo", "NTT DoCoMo", "营运中", "未知", ""},
		MNCDescription{"440", "31", "DoCoMo", "NTT DoCoMo Kansai", "营运中", "未知", ""},
		MNCDescription{"440", "32", "DoCoMo", "NTT DoCoMo", "营运中", "未知", ""},
		MNCDescription{"440", "33", "DoCoMo", "NTT DoCoMo Tokai", "营运中", "未知", ""},
		MNCDescription{"440", "34", "DoCoMo", "NTT DoCoMo Kyushu", "营运中", "未知", ""},
		MNCDescription{"440", "35", "DoCoMo", "NTT DoCoMo Kansai", "营运中", "未知", ""},
		MNCDescription{"440", "36", "DoCoMo", "NTT DoCoMo", "营运中", "未知", ""},
		MNCDescription{"440", "37", "DoCoMo", "NTT DoCoMo", "营运中", "未知", ""},
		MNCDescription{"440", "38", "DoCoMo", "NTT DoCoMo", "营运中", "未知", ""},
		MNCDescription{"440", "39", "DoCoMo", "NTT DoCoMo", "营运中", "未知", ""},
		MNCDescription{"440", "40", "SoftBank", "SoftBank Mobile Corp", "营运中", "未知", ""},
		MNCDescription{"440", "41", "SoftBank", "SoftBank Mobile Corp", "营运中", "未知", ""},
		MNCDescription{"440", "42", "SoftBank", "SoftBank Mobile Corp", "营运中", "未知", ""},
		MNCDescription{"440", "43", "SoftBank", "SoftBank Mobile Corp", "营运中", "未知", ""},
		MNCDescription{"440", "44", "SoftBank", "SoftBank Mobile Corp", "营运中", "未知", ""},
		MNCDescription{"440", "45", "SoftBank", "SoftBank Mobile Corp", "营运中", "未知", ""},
		MNCDescription{"440", "46", "SoftBank", "SoftBank Mobile Corp", "营运中", "未知", ""},
		MNCDescription{"440", "47", "SoftBank", "SoftBank Mobile Corp", "营运中", "未知", ""},
		MNCDescription{"440", "48", "SoftBank", "SoftBank Mobile Corp", "营运中", "未知", ""},
		MNCDescription{"440", "49", "DoCoMo", "NTT DoCoMo", "营运中", "未知", ""},
		MNCDescription{"440", "50", "KDDI", "KDDI Corporation", "营运中", "未知", ""},
		MNCDescription{"440", "51", "KDDI", "KDDI Corporation", "营运中", "未知", ""},
		MNCDescription{"440", "52", "KDDI", "KDDI Corporation", "营运中", "未知", ""},
		MNCDescription{"440", "53", "KDDI", "KDDI Corporation", "营运中", "未知", ""},
		MNCDescription{"440", "54", "KDDI", "KDDI Corporation", "营运中", "未知", ""},
		MNCDescription{"440", "55", "KDDI", "KDDI Corporation", "营运中", "未知", ""},
		MNCDescription{"440", "56", "KDDI", "KDDI Corporation", "营运中", "未知", ""},
		MNCDescription{"440", "58", "DoCoMo", "NTT DoCoMo Kansai", "营运中", "未知", ""},
		MNCDescription{"440", "60", "DoCoMo", "NTT DoCoMo Kansai", "营运中", "未知", ""},
		MNCDescription{"440", "61", "DoCoMo", "NTT DoCoMo Chugoku", "营运中", "未知", ""},
		MNCDescription{"440", "62", "DoCoMo", "NTT DoCoMo Kyushu", "营运中", "未知", ""},
		MNCDescription{"440", "63", "DoCoMo", "NTT DoCoMo", "营运中", "未知", ""},
		MNCDescription{"440", "64", "DoCoMo", "NTT DoCoMo", "营运中", "未知", ""},
		MNCDescription{"440", "65", "DoCoMo", "NTT DoCoMo Shikoku", "营运中", "未知", ""},
		MNCDescription{"440", "66", "DoCoMo", "NTT DoCoMo", "营运中", "未知", ""},
		MNCDescription{"440", "67", "DoCoMo", "NTT DoCoMo Tohoku", "营运中", "未知", ""},
		MNCDescription{"440", "68", "DoCoMo", "NTT DoCoMo Kyushu", "营运中", "未知", ""},
		MNCDescription{"440", "69", "DoCoMo", "NTT DoCoMo", "营运中", "未知", ""},
		MNCDescription{"440", "70", "au", "KDDI Corporation", "营运中", "CDMA2000 800 / CDMA2000 2100", ""},
		MNCDescription{"440", "71", "KDDI", "KDDI Corporation", "营运中", "未知", ""},
		MNCDescription{"440", "72", "KDDI", "KDDI Corporation", "营运中", "未知", ""},
		MNCDescription{"440", "73", "KDDI", "KDDI Corporation", "营运中", "未知", ""},
		MNCDescription{"440", "74", "KDDI", "KDDI Corporation", "营运中", "未知", ""},
		MNCDescription{"440", "75", "KDDI", "KDDI Corporation", "营运中", "未知", ""},
		MNCDescription{"440", "76", "KDDI", "KDDI Corporation", "营运中", "未知", ""},
		MNCDescription{"440", "77", "KDDI", "KDDI Corporation", "营运中", "未知", ""},
		MNCDescription{"440", "78", "", "Okinawa Cellular Telephone", "营运中", "未知", ""},
		MNCDescription{"440", "79", "KDDI", "KDDI Corporation", "营运中", "未知", ""},
		MNCDescription{"440", "80", "TU-KA", "TU-KA Cellular Tokyo", "非营运中", "未知", ""},
		MNCDescription{"440", "81", "TU-KA", "TU-KA Cellular Tokyo", "非营运中", "未知", ""},
		MNCDescription{"440", "82", "TU-KA", "TU-KA Phone Kansai", "非营运中", "未知", ""},
		MNCDescription{"440", "83", "TU-KA", "TU-KA Cellular Tokai", "非营运中", "未知", ""},
		MNCDescription{"440", "84", "TU-KA", "TU-KA Phone Kansai", "非营运中", "未知", ""},
		MNCDescription{"440", "85", "TU-KA", "TU-KA Cellular Tokai", "非营运中", "未知", ""},
		MNCDescription{"440", "86", "TU-KA", "TU-KA Cellular Tokyo", "非营运中", "未知", ""},
		MNCDescription{"440", "87", "DoCoMo", "NTT DoCoMo Chugoku", "营运中", "未知", ""},
		MNCDescription{"440", "88", "KDDI", "KDDI Corporation", "营运中", "未知", ""},
		MNCDescription{"440", "89", "KDDI", "KDDI Corporation", "营运中", "未知", ""},
		MNCDescription{"440", "90", "SoftBank", "SoftBank Mobile Corp", "营运中", "未知", ""},
		MNCDescription{"440", "92", "SoftBank", "SoftBank Mobile Corp", "营运中", "未知", ""},
		MNCDescription{"440", "93", "SoftBank", "SoftBank Mobile Corp", "营运中", "未知", ""},
		MNCDescription{"440", "94", "SoftBank", "SoftBank Mobile Corp", "营运中", "未知", ""},
		MNCDescription{"440", "95", "SoftBank", "SoftBank Mobile Corp", "营运中", "未知", ""},
		MNCDescription{"440", "96", "SoftBank", "SoftBank Mobile Corp", "营运中", "未知", ""},
		MNCDescription{"440", "97", "SoftBank", "SoftBank Mobile Corp", "营运中", "未知", ""},
		MNCDescription{"440", "98", "SoftBank", "SoftBank Mobile Corp", "营运中", "未知", ""},
		MNCDescription{"440", "99", "DoCoMo", "NTT DoCoMo", "营运中", "未知", ""},
	},
	"泽西岛(英国)- JE": {
		MNCDescription{"234", "50", "JT-Wave", "Jersey Telecom (JT-Wave)", "营运中", "GSM 900 / GSM 1800 / UMTS 2100", ""},
		MNCDescription{"234", "55", "Sure Mobile", "Cable & Wireless Jersey Limited", "营运中", "GSM 900 / GSM 1800 / UMTS 2100", ""},
		MNCDescription{"234", "03", "Airtel Vodafone", "JERSEY AIRTEL LIMITED", "营运中", "GSM 900 / GSM 1800 / UMTS 2100", ""},
	},
	"约旦 - JO": {
		MNCDescription{"416", "01", "zain JO", "Jordan Mobile Telephone Services", "营运中", "GSM 900", ""},
		MNCDescription{"416", "02", "XPress Telecom", "", "营运中", "iDEN 800", ""},
		MNCDescription{"416", "03", "Umniah", "Umniah Mobile Company", "营运中", "GSM 1800", ""},
		MNCDescription{"416", "77", "Orange", "Petra Jordanian Mobile Telecommunications Company (MobileCom)", "营运中", "GSM 900", ""},
	},
	"哈萨克斯坦 - KZ": {
		MNCDescription{"401", "01", "Beeline", "KaR-Tel LLP", "营运中", "GSM 900 / GSM 1800", ""},
		MNCDescription{"401", "02", "Kcell", "GSM Kazakhstan Ltd", "营运中", "GSM 900 / GSM 1800", ""},
		MNCDescription{"401", "07", "Dalacom", "", "营运中", "CDMA2000 800", ""},
		MNCDescription{"401", "08", "Kazakhtelecom", "", "营运中", "CDMA2000 800 / CDMA2000 450", ""},
		MNCDescription{"401", "77", "Mobile Telecom Service", "Mobile Telecom Service LLP", "营运中", "GSM 900", ""},
	},
	"肯尼亚 - KE": {
		MNCDescription{"639", "02", "Safaricom", "Safaricom Limited", "营运中", "GSM 900 / GSM 1800", ""},
		MNCDescription{"639", "03", "Airtel", "B Airtel", "营运中", "GSM 900", ""},
		MNCDescription{"639", "07", "Orange Kenya", "Telkom Kenya", "营运中", "CDMA2000 / GSM 900 / GSM 1800", ""},
		MNCDescription{"639", "05", "yu", "Econet Wireless Kenya", "营运中", "GSM 900 / GSM 1800", ""},
	},
	"基里巴斯 - KI": {
		MNCDescription{"545", "09", "Kiribati Frigate", "Telecom Services Kiribati Ltd", "营运中", "GSM 900", ""},
	},
	"朝鲜民主主义人民共和国 - KP": {
		MNCDescription{"467", "192", "Koryolink", "Cheo Technology Jv Company", "营运中", "UMTS 2100", ""},
		MNCDescription{"467", "193", "SunNet", "Korea Posts and Telecommunications Corporation", "营运中", "GSM 900", ""},
	},
	"韩国 - KR": {
		MNCDescription{"450", "02", "KT", "KT", "营运中", "CDMA2000 1700", ""},
		MNCDescription{"450", "03", "Power 017", "Shinsegi Telecom, Inc.", "非营运中", "CDMA2000 800", ""},
		MNCDescription{"450", "04", "KT", "KT", "营运中", "CDMA2000 1700", ""},
		MNCDescription{"450", "05", "SKT", "SK Telecom", "营运中", "CDMA2000 800 / UMTS 2100", ""},
		MNCDescription{"450", "06", "LGU+", "LG Telecom", "营运中", "CDMA2000 1700", ""},
		MNCDescription{"450", "08", "olleh", "KT", "营运中", "UMTS 2100", ""},
	},
	"科索沃 - RKS": {
		MNCDescription{"212", "01", "Vala", "PTK - Directory of Post of Kosovo", "营运中", "GSM 900", ""},
		MNCDescription{"293", "41", "IPKO", "IPKO", "营运中", "GSM 900 / GSM 1800", ""},
		MNCDescription{"293", "41", "D3 Mobile", "Dukagjini", "营运中", "GSM 900 / GSM 1800", ""},
		MNCDescription{"212", "01", "Z Mobile", "Dardaphone", "营运中", "GSM 900", ""},
	},
	"科威特 - KW": {
		MNCDescription{"419", "02", "zain KW", "Zain Kuwait", "营运中", "GSM 900 / UMTS 2100", ""},
		MNCDescription{"419", "03", "Wataniya", "National Mobile Telecommunications", "营运中", "GSM 900 / GSM 1800 / UMTS 2100", ""},
		MNCDescription{"419", "04", "Viva", "Kuwait Telecommunication Company", "营运中", "GSM 900 / GSM 1800 / UMTS 2100", ""},
	},
	"吉尔吉斯斯坦 - KG": {
		MNCDescription{"437", "01", "Beeline", "Sky Mobile LLC", "营运中", "GSM 900 / GSM 1800", ""},
		MNCDescription{"437", "03", "Fonex", "Aktel Ltd", "营运中", "CDMA2000", ""},
		MNCDescription{"437", "05", "MegaCom", "Alfa Telecom CJSC", "营运中", "GSM 900 / GSM 1800", ""},
		MNCDescription{"437", "09", "O!", "NurTelecom LLC", "营运中", "GSM 900 / GSM 1800", ""},
	},
	"老挝 - LA": {
		MNCDescription{"457", "01", "LTC", "LaoTelecom", "营运中", "GSM 900 / GSM 1800 / TD-SCDMA 1880 / TD-SCDMA 2010 / TD-LTE 1800/2300/2600 / UMTS 2100", ""},
		MNCDescription{"457", "02", "ETL", "Enterprise of Telecommunications Lao", "营运中", "GSM 900 / GSM 1800 / TD-SCDMA 1880 / TD-SCDMA 2010", ""},
		MNCDescription{"457", "03", "Unitel", "Star Telecom Co., Ltd", "营运中", "GSM 900 / GSM 1800 / UMTS 2100", ""},
		MNCDescription{"457", "08", "Tigo", "Millicom Lao Co Ltd", "营运中", "GSM 900 / GSM 1800", ""},
	},
	"拉托维亚 - LV": {
		MNCDescription{"247", "01", "LMT", "Latvian Mobile Telephone", "营运中", "GSM 900 / GSM 1800 / UMTS 2100", ""},
		MNCDescription{"247", "02", "Tele2", "Tele2", "营运中", "GSM 900 / GSM 1800 / UMTS 2100", ""},
		MNCDescription{"247", "03", "TRIATEL", "Telekom Baltija", "营运中", "CDMA2000 450", ""},
		MNCDescription{"247", "05", "Bite", "Bite Latvija", "营运中", "GSM 900 / GSM 1800 / UMTS 2100", ""},
		MNCDescription{"247", "06", "", "Rigatta", "Reserved", "未知", ""},
		MNCDescription{"247", "07", "MTS", "Master Telecom", "营运中", "MVNO", ""},
		MNCDescription{"247", "08", "IZZI", "IZZI", "营运中", "MVNO", ""},
		MNCDescription{"247", "09", "Camel Mobile", "Camel Mobile", "营运中", "MVNO", ""},
	},
	"黎巴嫩 - LB": {
		MNCDescription{"415", "01", "Alfa", "MIC 1", "营运中", "GSM 900", ""},
		MNCDescription{"415", "03", "mtc touch", "MIC 2", "营运中", "GSM 900", ""},
		MNCDescription{"415", "05", "Ogero Mobile", "Ogero Telecom", "Planned", "GSM 900", ""},
	},
	"莱索托 - LS": {
		MNCDescription{"651", "01", "Vodacom", "Vodacom Lesotho (Pty) Ltd", "营运中", "GSM 900", ""},
		MNCDescription{"651", "02", "", "Econet Ezin-cel", "营运中", "未知", ""},
	},
	"利比里亚 - LR": {
		MNCDescription{"618", "01", "Lonestar Cell", "Lonestar Communications Corporation", "营运中", "GSM 900", ""},
		MNCDescription{"618", "02", "Libercell", "Atlantic Wireless (Liberia) Inc.", "营运中", "未知", ""},
		MNCDescription{"618", "04", "Comium", "Comium Liberia", "营运中", "GSM 900", ""},
		MNCDescription{"618", "07", "Cellcom", "Cellcom Telecommunications, Inc", "营运中", "GSM 900 / GSM 1800", ""},
		MNCDescription{"618", "20", "LIBTELCO", "Liberia Telecommunications Corporation", "营运中", "CDMA2000", ""},
	},
	"利比亚 - LY": {
		MNCDescription{"606", "00", "Libyana", "Libyana", "营运中", "GSM900 / GSM 1800 / UMTS 2100", ""},
		MNCDescription{"606", "01", "Madar", "Al-Madar Al-Jadeed", "营运中", "GSM900 / GSM 1800", ""},
		MNCDescription{"606", "02", "Al-Jeel Phone", "Al-Jeel Al-Jadeed", "营运中", "GSM900 / GSM 1800", ""},
		MNCDescription{"606", "03", "Libya Phone", "Libya Telecom and Technology (LTT)", "营运中", "GSM900 / GSM 1800 / UMTS 2100", ""},
		MNCDescription{"606", "06", "Hatef Libya", "Hatef Libya", "营运中", "CDMA2000", ""},
	},
	"列支敦士登 - LI": {
		MNCDescription{"295", "01", "Swisscom", "Swisscom Schweiz AG", "营运中", "GSM 900 / GSM 1800", ""},
		MNCDescription{"295", "02", "Orange", "Orange Liechtenstein AG", "营运中", "GSM 1800 / UMTS 2100", ""},
		MNCDescription{"295", "05", "FL1", "Mobilkom Liechtenstein AG", "营运中", "GSM 900 / GSM 1800 / UMTS 2100", ""},
		MNCDescription{"295", "77", "Alpmobil", "Alpcom AG", "营运中", "GSM 900", ""},
		MNCDescription{"295", "04", "Cubic Telecom", "Cubic Telecom AG", "营运中", "GSM 900 / GSM 1800 / UMTS 2100", ""},
	},
	"立陶宛 - LT": {
		MNCDescription{"246", "01", "Omnitel", "", "营运中", "GSM 900 / GSM 1800 / UMTS 2100", ""},
		MNCDescription{"246", "02", "BITE", "UAB Bité Lietuva", "营运中", "GSM 900 / GSM 1800 / UMTS 2100", ""},
		MNCDescription{"246", "03", "Tele 2", "", "营运中", "GSM 900 / GSM 1800 / UMTS 2100", ""},
		MNCDescription{"246", "05", "LitRail", "Lithuanian Railways", "营运中", "GSM-R 900", ""},
		MNCDescription{"246", "06", "Mediafon", "UAB Mediafon", "营运中", "GSM 1800", ""},
	},
	"卢森堡 - LU": {
		MNCDescription{"270", "01", "LuxGSM", "P&T Luxembourg", "营运中", "GSM 900 / GSM 1800 / UMTS 2100", ""},
		MNCDescription{"270", "77", "Tango", "Tango SA", "营运中", "GSM 900 / GSM 1800 / UMTS 2100", ""},
		MNCDescription{"270", "99", "Orange", "Orange S.A.", "营运中", "GSM 900 / GSM 1800 / UMTS 2100", ""},
	},
	"中国澳门(中华人民共和国)- MO": {
		MNCDescription{"455", "00", "SmarTone", "SmarTone Macao", "营运中", "GSM 900 / GSM 1800 / UMTS 2100", ""},
		MNCDescription{"455", "01", "CTM", "C.T.M. Telemovel+", "营运中", "GSM 900 / GSM 1800", ""},
		MNCDescription{"455", "02", "China Telecom", "China Telecom", "营运中", "CDMA2000 800", ""},
		MNCDescription{"455", "03", "3", "Hutchison Telecom", "营运中", "GSM 900 / GSM 1800", ""},
		MNCDescription{"455", "04", "CTM", "C.T.M. Telemovel+", "营运中", "GSM900 / GSM 1800 / UMTS 2100", ""},
		MNCDescription{"455", "05", "3", "Hutchison Telecom", "营运中", "UMTS 2100", ""},
		MNCDescription{"455", "06", "SmarTone", "SmarTone Macao", "未知", "未知", ""},
		MNCDescription{"455", "07", "China Telecom", "China Telecom", "营运中", "LTE", ""},
	},
	"马其顿 - MK": {
		MNCDescription{"294", "01", "T-Mobile MK", "T-Mobile Macedonia", "营运中", "GSM 900 / UMTS 2100", ""},
		MNCDescription{"294", "02", "ONE", "One", "营运中", "GSM 900 / UMTS 2100", ""},
		MNCDescription{"294", "03", "Vip MK", "VIP Operator", "营运中", "GSM 900 / GSM 1800", ""},
	},
	"马达加斯加 - MG": {
		MNCDescription{"646", "01", "Airtel", "Bharti Airtel", "营运中", "GSM 900 / GSM 1800", ""},
		MNCDescription{"646", "02", "Orange", "Orange Madagascar S.A.", "营运中", "GSM 900", ""},
		MNCDescription{"646", "03", "Sacel", "Sacel Madagascar S.A.", "营运中", "GSM 900", ""},
		MNCDescription{"646", "04", "Telma", "Telma Mobile S.A.", "营运中", "GSM 900", ""},
	},
	"马拉维 - MW": {
		MNCDescription{"650", "01", "TNM", "Telecom Network Malawi", "营运中", "GSM 900 / GSM 1800", ""},
		MNCDescription{"650", "10", "Airtel", "Bharti Airtel Limited", "营运中", "GSM 900", ""},
	},
	"马来西亚 - MY": {
		MNCDescription{"502", "01", "ATUR 450", "Telekom Malaysia Bhd", "营运中", "CDMA2000 450 (depreciated)011-(6digits)", ""},
		MNCDescription{"502", "10", "", "DiGi Telecommunications", "", "", ""},
		MNCDescription{"502", "11", "TM Homeline", "Telekom Malaysia Bhd [78]", "", "", ""},
		MNCDescription{"502", "12", "Maxis", "Maxis Mobile Services SDN Berhad", "营运中", "GSM 900 / GSM 1800 / UMTS 2100", ""},
		MNCDescription{"502", "13", "Celcom", "Celcom Axiata Berhad", "营运中", "GSM 900 / GSM 1800 / UMTS 2100", ""},
		MNCDescription{"[80]", "", "", "", "", "", ""},
		MNCDescription{"502", "14", "", "Telekom Malaysia Berhad for PSTN SMS", "", "", ""},
		MNCDescription{"502", "16", "DiGi", "DiGi Telecommunications", "营运中", "GSM 1800 / UMTS 2100", ""},
		MNCDescription{"502", "17", "Hotlink", "Maxis Prepaid", "营运中", "GSM 900 / GSM 1800 / UMTS 2100", ""},
		MNCDescription{"502", "18", "U Mobile", "U Mobile Sdn Bhd", "营运中", "UMTS 2100", ""},
		MNCDescription{"502", "18", "TM Homeline", "Telekom Malaysia Bhd", "营运中", "CDMA 850[81]", ""},
		MNCDescription{"502", "19", "Celcom", "Celcom Axiata Berhad", "营运中", "GSM 900 / GSM 1800 / UMTS 2100", ""},
		MNCDescription{"502", "20", "", "Electcoms Wireless Sdn Bhd", "营运中", "CDMA", ""},
		MNCDescription{"502", "150", "Tune Talk", "Tune Talk Sdn Bhd", "营运中", "MVNO", ""},
		MNCDescription{"502", "151", "", "Baraka Telecom Sdn Bhd (MVNE)", "营运中", "MVNO", ""},
		MNCDescription{"502", "152", "Yes", "YTL Communications Sdn Bhd", "营运中", "WiMAX 2.3 GHz / LTE 4G", ""},
	},
	"马尔代夫 - MV": {
		MNCDescription{"472", "01", "Dhiraagu", "Dhivehi Raajjeyge Gulhun", "营运中", "GSM 900", ""},
		MNCDescription{"472", "02", "Wataniya", "Wataniya Telecom Maldives", "营运中", "GSM 900 / UMTS 2100", ""},
	},
	"马里 - ML": {
		MNCDescription{"610", "01", "Malitel", "Malitel SA", "营运中", "GSM 900", ""},
		MNCDescription{"610", "02", "Orange", "Orange Mali SA", "营运中", "GSM 900", ""},
	},
	"马耳他 - MT": {
		MNCDescription{"278", "01", "Vodafone", "Vodafone Malta", "营运中", "GSM 900 / UMTS 2100", ""},
		MNCDescription{"278", "21", "GO", "Mobisle Communications Limited", "营运中", "GSM 1800 / UMTS 2100", ""},
		MNCDescription{"278", "77", "Melita", "Melita Plc", "营运中", "UMTS 2100", ""},
	},
	"马提尼克(法国)- MQ": {
		MNCDescription{"340", "01", "Orange", "Orange Caraïbe Mobiles", "营运中", "GSM 900", ""},
		MNCDescription{"340", "02", "Outremer", "Outremer Telecom", "营运中", "GSM 900 / GSM 1800", ""},
		MNCDescription{"340", "20", "Digicel", "DIGICEL Antilles Française Guyane", "营运中", "GSM 900", ""},
	},
	"毛里塔尼亚 - MR": {
		MNCDescription{"609", "01", "Mattel", "Mattel", "营运中", "GSM 900", ""},
		MNCDescription{"609", "02", "Chinguitel", "Chinguitel", "营运中", "GSM 900 / GSM 1800 / UMTS 2100", ""},
		MNCDescription{"609", "10", "Mauritel", "Mauritel Mobiles", "营运中", "GSM 900", ""},
	},
	"毛里求斯 - MU": {
		MNCDescription{"617", "01", "Orange", "Cellplus Mobile Communications Ltd.", "营运中", "GSM 900 / UMTS 2100", ""},
		MNCDescription{"617", "02", "MTML", "Mahanagar Telephone (Mauritius) Ltd.", "营运中", "CDMA2000", ""},
		MNCDescription{"617", "10", "Emtel", "Emtel Ltd", "营运中", "GSM 900 / UMTS 2100", ""},
	},
	"墨西哥 - MX": {
		MNCDescription{"334", "010", "Nextel", "Nextel México", "营运中", "iDEN 800", ""},
		MNCDescription{"334", "020", "Telcel", "América Móvil / Mextel", "营运中", "TDMA 850 / GSM 1900 / UMTS 850", ""},
		MNCDescription{"334", "030", "movistar", "Pegaso Comunicaciones y Sistemas", "营运中", "CDMA2000 1900 / CDMA2000 800 / GSM 1900 / UMTS 850", ""},
		MNCDescription{"334", "040", "Iusacell / Unefon", "Iusacell / Unefon", "营运中", "CDMA2000 800 / CDMA2000 1900", ""},
		MNCDescription{"334", "050", "Iusacell", "Iusacell", "营运中", "GSM 850 / GSM 1900", ""},
	},
	"密克罗尼西亚联邦 - FM": {
		MNCDescription{"550", "01", "", "FSM EMMANUEL", "营运中", "GSM 900 / GSM 1800", ""},
	},
	"摩尔多瓦 - MD": {
		MNCDescription{"259", "01", "Orange", "Orange Moldova", "营运中", "GSM 900 / GSM 1800 / UMTS 2100", ""},
		MNCDescription{"259", "02", "Moldcell", "", "营运中", "GSM 900 / GSM 1800 / UMTS 2100", ""},
		MNCDescription{"259", "03", "IDC", "Interdnestrcom", "营运中", "CDMA 450 / CDMA 800", ""},
		MNCDescription{"259", "03", "Unité", "Moldtelecom", "营运中", "CDMA 450", ""},
		MNCDescription{"259", "04", "Eventis", "Eventis Telecom", "非营运中", "GSM 900 / GSM 1800", ""},
		MNCDescription{"259", "05", "Unité", "Moldtelecom", "营运中", "UMTS 2100", ""},
		MNCDescription{"259", "99", "Unité", "Moldtelecom", "营运中", "UMTS 2100", ""},
	},
	"摩纳哥 - MC": {
		MNCDescription{"212", "01", "Office des Telephones", "Monaco Telecom", "营运中", "GSM 900 / UMTS 2100", ""},
	},
	"蒙古国 - MN": {
		MNCDescription{"428", "99", "MobiCom", "Mobicom Corporation", "营运中", "GSM 900 / UMTS 2100", ""},
		MNCDescription{"428", "88", "Unitel", "Unitel LLC", "营运中", "GSM 900 / GSM 1800 / UMTS 2100", ""},
		MNCDescription{"428", "91", "Skytel", "Skytel LLC", "营运中", "CDMA2000 800 / UMTS 2100", ""},
		MNCDescription{"428", "98", "G.Mobile", "G-Mobile LLC", "营运中", "CDMA2000 450", ""},
	},
	"黑山 - ME": {
		MNCDescription{"297", "01", "Telenor", "Telenor Montenegro", "营运中", "GSM 900 / GSM 1800 / UMTS 2100", ""},
		MNCDescription{"297", "02", "T-Mobile", "T-Mobile Montenegro LLC", "营运中", "GSM 900", ""},
		MNCDescription{"297", "03", "m:tel CG", "MTEL CG", "营运中", "GSM 900 / GSM 1800 / UMTS 2100", ""},
		MNCDescription{"297", "04", "T-Mobile", "T-Mobile Montenegro", "营运中", "GSM 900", ""},
	},
	"摩洛哥 - MA": {
		MNCDescription{"604", "00", "Méditel", "Medi Telecom", "营运中", "GSM 900 / GSM 1800", ""},
		MNCDescription{"604", "01", "IAM", "Ittissalat Al Maghrib (Maroc Telecom)", "营运中", "GSM 900 / GSM 1800 / UMTS 2100", ""},
		MNCDescription{"604", "02", "INWI", "WANA - Groupe ONA", "营运中", "GSM 900 / GSM 1800", ""},
	},
	"莫桑比克 - MZ": {
		MNCDescription{"643", "01", "mCel", "Mocambique Celular S.A.", "营运中", "GSM 900 / GSM 1800 / UMTS 2100", ""},
		MNCDescription{"643", "04", "Vodacom", "Vodacom Mozambique, S.A.", "营运中", "GSM 900 / GSM 1800 / UMTS 2100", ""},
	},
	"缅甸 - MM": {
		MNCDescription{"414", "01", "MPT", "Myanmar Post and Telecommunication", "营运中", "GSM 900", ""},
		MNCDescription{"414", "02", "MEC", "Myanmar Economic Corporation", "营运中", "CDMA2000 800MHz", ""},
	},
	"纳米比亚 - NA": {
		MNCDescription{"649", "01", "MTC", "MTC Namibia", "营运中", "GSM 900 / GSM 1800", ""},
		MNCDescription{"649", "02", "switch", "Telecom Namibia", "营运中", "CDMA2000 800", ""},
		MNCDescription{"649", "03", "Leo", "Orascom Telecom Holding", "营运中", "GSM 900 / GSM 1800", ""},
	},
	"瑙鲁 - NR": {
		MNCDescription{"536", "02", "Digicel", "Digicel (Nauru) Corporation", "营运中", "GSM 900 / GSM 1800 / UMTS 2100", ""},
	},
	"尼泊尔 - NP": {
		MNCDescription{"429", "01", "Namaste / NT Mobile", "Nepal Telecom", "营运中", "GSM 900 / GSM 1800", ""},
		MNCDescription{"429", "02", "Ncell", "Ncell Pvt. Ltd.Spice Nepal", "营运中", "GSM 900 / GSM 1800", ""},
		MNCDescription{"429", "04", "SmartCell", "Smart Telecom Pvt. Ltd.", "营运中", "GSM 900 / GSM 1800", ""},
		MNCDescription{"429", "03", "Sky/C-Phone", "Nepal Telecom", "营运中", "CDMA2000 800", ""},
	},
	"荷兰(荷兰王国)- NL": {
		MNCDescription{"204", "01", "", "VastMobiel B.V.", "非营运中", "", ""},
		MNCDescription{"204", "02", "Tele2", "Tele2 Nederland B.V.", "营运中", "", ""},
		MNCDescription{"204", "03", "", "Voiceworks B.V.", "", "", ""},
		MNCDescription{"204", "04", "Vodafone", "Vodafone Libertel B.V.", "营运中", "GSM 900 / GSM 1800 / UMTS 2100", ""},
		MNCDescription{"204", "05", "", "Elephant Talk Communications Premium Rate Services", "", "", ""},
		MNCDescription{"204", "06", "", "Mundio Mobile (Netherlands) Ltd", "", "", ""},
		MNCDescription{"204", "07", "", "Teleena (MVNE)", "营运中", "MVNE", ""},
		MNCDescription{"204", "08", "KPN", "KPN Mobile The Netherlands B.V.", "营运中", "GSM 900 / GSM 1800 / UMTS 2100", ""},
		MNCDescription{"204", "09", "Lycamobile", "Lycamobile Netherlands Limited", "", "", ""},
		MNCDescription{"204", "10", "KPN", "KPN B.V.", "营运中", "GSM 900 / GSM 1800 / UMTS 2100", ""},
		MNCDescription{"204", "12", "Telfort", "KPN Mobile The Netherlands B.V.", "营运中", "National Roaming Agreement on KPN", ""},
		MNCDescription{"204", "13", "", "Unica Installatietechniek B.V.", "", "", ""},
		MNCDescription{"204", "14", "6Gmobile", "6GMOBILE B.V.", "营运中", "MVNE", ""},
		MNCDescription{"204", "15", "", "Ziggo B.V.", "", "", ""},
		MNCDescription{"204", "16", "T-Mobile", "T-Mobile Netherlands B.V", "营运中", "GSM 900 / GSM 1800 / UMTS 2100", ""},
		MNCDescription{"204", "17", "Intercity Zakelijk", "Intercity Mobile Communications B.V.", "营运中", "MVNE", ""},
		MNCDescription{"204", "18", "", "UPC Nederland B.V.", "", "", ""},
		MNCDescription{"204", "19", "", "Mixe Communication Solutions B.V.", "", "", ""},
		MNCDescription{"204", "20", "T-Mobile", "T-Mobile Netherlands B.V", "营运中", "GSM 900 / GSM 1800 / UMTS 2100", ""},
		MNCDescription{"204", "21", "", "ProRail B.V.", "营运中", "GSM-R 900", ""},
		MNCDescription{"204", "22", "", "Ministerie van Defensie", "", "", ""},
		MNCDescription{"204", "23", "", "ASPIDER Solutions Nederland B.V.", "营运中", "MVNE", ""},
		MNCDescription{"204", "24", "", "Private Mobility Nederland B.V.", "", "", ""},
		MNCDescription{"204", "25", "", "CapX B.V.", "营运中", "PrivateGSM 1800", ""},
		MNCDescription{"204", "26", "", "SpeakUp B.V.", "", "", ""},
		MNCDescription{"204", "27", "", "Breezz Nederland B.V.", "", "", ""},
		MNCDescription{"204", "67", "", "RadioAccess B.V.", "营运中", "PrivateGSM 1800", ""},
		MNCDescription{"204", "68", "", "Unify Group Holding B.V.", "", "", ""},
		MNCDescription{"204", "69", "", "KPN Mobile The Netherlands B.V.", "", "", ""},
	},
	"荷属安的列斯(荷兰王国)- AN": {
		MNCDescription{"362", "51", "Telcell", "Telcell N.V.", "营运中", "GSM 900", ""},
		MNCDescription{"362", "69", "Digicel", "Curaçao Telecom N.V.", "营运中", "GSM 900 / GSM 1800", ""},
		MNCDescription{"362", "91", "UTS", "Setel N.V.", "营运中", "GSM 900", ""},
		MNCDescription{"362", "??", "", "East Caribbean Cellular", "营运中", "GSM 900 / GSM 1800", ""},
		MNCDescription{"362", "??", "", "Antiliano Por N.V.", "营运中", "GSM 900", ""},
		MNCDescription{"362", "95", "MIO", "E.O.C.G. Wireless", "营运中", "CDMA2000 850", ""},
		MNCDescription{"362", "94", "Bayòs", "Bòbò Frus N.V.", "营运中", "TDMA PCS", ""},
	},
	"新喀里多尼亚(法国)- NC": {
		MNCDescription{"546", "01", "Mobilis", "OPT New Caledonia", "营运中", "GSM 900", ""},
	},
	"新西兰 - NZ": {
		MNCDescription{"530", "00", "Telecom", "Telecom New Zealand", "非营运中", "AMPS 800 / TDMA 800", ""},
		MNCDescription{"530", "01", "Vodafone", "Vodafone New Zealand", "营运中", "GSM 900 / GSM 1800 / UMTS 900 / UMTS 2100", ""},
		MNCDescription{"530", "02", "Telecom", "Telecom New Zealand", "营运中", "CDMA2000 800", ""},
		MNCDescription{"530", "03", "Woosh", "Woosh Wireless New Zealand", "营运中", "UMTS 2000", ""},
		MNCDescription{"530", "04", "TelstraClear", "TelstraClear New Zealand", "非营运中", "UMTS 2100", ""},
		MNCDescription{"530", "05", "XT Mobile Network", "Telecom New Zealand", "营运中", "UMTS 850 / UMTS 2100", ""},
		MNCDescription{"530", "06", "Skinny", "Telecom New Zealand", "营运中", "UMTS 850 / UMTS 2100", ""},
		MNCDescription{"530", "24", "2degrees", "2degrees", "营运中", "GSM 900 / GSM 1800 / UMTS 2100", ""},
	},
	"尼加拉瓜 - NI": {
		MNCDescription{"710", "21", "Claro", "Empresa Nicaragüense de Telecomunicaciones, S.A.", "营运中", "UMTS 850 / GSM 1900", ""},
		MNCDescription{"710", "30", "movistar", "Telefónica Móviles de Nicaragua S.A.", "营运中", "UMTS 850 / GSM 850 / GSM 1900", ""},
		MNCDescription{"710", "73", "SERCOM", "Servicios de Comunicaciones S.A.", "营运中", "UMTS 850 / GSM 1900", ""},
	},
	"尼日尔 - NE": {
		MNCDescription{"614", "01", "SahelCom", "", "营运中", "GSM 900", ""},
		MNCDescription{"614", "02", "Airtel", "Bharti Airtel Limited", "营运中", "GSM 900", ""},
		MNCDescription{"614", "03", "Telecel", "Telecel Niger SA", "营运中", "GSM 900", ""},
		MNCDescription{"614", "04", "Orange", "Orange Niger", "营运中", "GSM 900 / GSM 1800", ""},
	},
	"尼日利亚 - NG": {
		MNCDescription{"621", "20", "Airtel", "Bharti Airtel Limited", "营运中", "GSM 900 / GSM 1800", ""},
		MNCDescription{"621", "30", "MTN", "MTN Nigeria Communications Limited", "营运中", "GSM 900 / GSM 1800", ""},
		MNCDescription{"621", "40", "M-Tel", "Nigerian Mobile Telecommunications Limited", "营运中", "GSM 900 / GSM 1800", ""},
		MNCDescription{"621", "50", "Glo", "Globacom Ltd", "营运中", "GSM 900 / GSM 1800", ""},
		MNCDescription{"621", "60", "Etisalat", "Emerging Markets Telecommunication Services Ltd (Etisalat)", "营运中", "GSM 900 / GSM 1800", ""},
		MNCDescription{"621", "25", "Visafone", "Visafone Communications Ltd.", "营运中", "CDMA2000 800 / CDMA2000 1900", ""},
	},
	"纽埃岛 - NU": {
		MNCDescription{"555", "01", "Telecom Niue", "Telecom Niue", "营运中", "GSM 900", ""},
	},
	"诺福克岛 - NF": {
		MNCDescription{"505", "10", "Norfolk Telecom", "Norfolk Telecom", "营运中", "GSM 900", ""},
	},
	"挪威 - NO": {
		MNCDescription{"242", "01", "Telenor", "", "营运中", "GSM 900 / GSM 1800 / UMTS 900 / UMTS 2100", ""},
		MNCDescription{"242", "02", "NetCom", "NetCom GSM", "营运中", "GSM 900 / GSM 1800 / UMTS 2100", ""},
		MNCDescription{"242", "03", "Teletopia", "Teletopia", "非营运中", "", ""},
		MNCDescription{"242", "04", "Tele2", "Mobile Norway AS", "营运中", "MNO", ""},
		MNCDescription{"242", "05", "Network Norway", "Mobile Norway AS", "营运中", "UMTS 900 / UMTS 2100", ""},
		MNCDescription{"242", "06", "Ice", "Nordisk Mobiltelefon", "营运中", "CDMA2000 450", ""},
		MNCDescription{"242", "07", "Ventelo", "Ventelo AS", "营运中", "MVNO of Telenor NO", ""},
		MNCDescription{"242", "08", "TDC", "TDC Mobil AS", "营运中", "MVNO", ""},
		MNCDescription{"242", "09", "Com4", "Com4 AS [107]", "营运中", "MVNO", ""},
		MNCDescription{"242", "11", "SystemNet", "SystemNet AS [108]", "未知", "Test", ""},
		MNCDescription{"242", "20", "", "Jernbaneverket AS", "营运中", "GSM-R 900", ""},
		MNCDescription{"242", "23", "Lyca", "Lyca Mobile Ltd", "营运中", "MVNO", ""},
		MNCDescription{"挪威官方提供:[109]", "", "", "", "", "", ""},
	},
	"阿曼 - OM": {
		MNCDescription{"422", "02", "Oman Mobile", "Oman Telecommunications Company", "营运中", "GSM 900 / GSM 1800", ""},
		MNCDescription{"422", "03", "Nawras", "Omani Qatari Telecommunications Company SAOC", "营运中", "GSM 900 / GSM 1800", ""},
	},
	"巴基斯坦 - PK": {
		MNCDescription{"410", "01", "Mobilink", "Mobilink-PMCL", "营运中", "GSM 900 / GSM 1800", ""},
		MNCDescription{"410", "03", "Ufone", "Pakistan Telecommunication Mobile Ltd", "营运中", "GSM 900 / GSM 1800", ""},
		MNCDescription{"410", "04", "Zong", "China Mobile", "营运中", "GSM 900 / GSM 1800", ""},
		MNCDescription{"410", "06", "Telenor", "Telenor Pakistan", "营运中", "GSM 900 / GSM 1800", ""},
		MNCDescription{"410", "07", "Warid", "WaridTel", "营运中", "GSM 900 / GSM 1800", ""},
	},
	"帕劳 - PW": {
		MNCDescription{"552", "01", "PNCC", "Palau National Communications Corp.", "营运中", "GSM 900", ""},
		MNCDescription{"552", "80", "Palau Mobile", "Palau Mobile Corporation", "营运中", "GSM 1800", ""},
	},
	"巴勒斯坦民族权力机构 - PS": {
		MNCDescription{"425", "05", "Jawwal", "Palestine Cellular Communications, Ltd.", "营运中", "GSM 900", ""},
		MNCDescription{"425", "06", "Wataniya", "Wataniya Palestine Mobile Telecommunications Company", "营运中", "GSM 900 / GSM 1800", ""},
	},
	"巴拿马 - PA": {
		MNCDescription{"714", "01", "Cable & Wireless", "Cable & Wireless Panama S.A.", "营运中", "GSM 850 / UMTS 850", ""},
		MNCDescription{"714", "02", "movistar", "Telefonica Moviles Panama S.A, Bell South Corp. (BSC)", "营运中", "GSM 850 / UMTS 850 / UMTS 1900", ""},
		MNCDescription{"714", "04", "Digicel", "Digicel Group", "营运中", "GSM 1800 / GSM 1900", ""},
		MNCDescription{"714", "03", "Claro", "América Móvil", "营运中", "GSM 1900 / UMTS 1900", ""},
	},
	"巴布亚新几内亚 - PG": {
		MNCDescription{"537", "01", "B-Mobile", "Pacific Mobile Communications", "营运中", "GSM 900", ""},
		MNCDescription{"537", "03", "Digicel", "Digicel PNG", "营运中", "GSM 900", ""},
	},
	"巴拉圭 - PY": {
		MNCDescription{"744", "01", "VOX", "Hola Paraguay S.A", "营运中", "GSM 1800", ""},
		MNCDescription{"744", "02", "Claro", "AMX Paraguay S.A.", "营运中", "GSM 1900 / UMTS 1900", ""},
		MNCDescription{"744", "04", "Tigo", "Telefonica Celular Del Paraguay S.A. (Telecel)", "营运中", "GSM 850 / UMTS 850", ""},
		MNCDescription{"744", "05", "Personal", "Núcleo S.A", "营运中", "GSM 850 / GSM 1900 / UMTS 850 / UMTS 1900", ""},
		MNCDescription{"744", "06", "Copaco", "Copaco S.A.", "营运中", "GSM 1800", ""},
	},
	"秘鲁 - PE": {
		MNCDescription{"716", "06", "Movistar", "Telefónica Móviles Perú", "营运中", "CDMA2000 850 / GSM 850 / UMTS 850", ""},
		MNCDescription{"716", "07", "NEXTEL", "NII Holdings", "营运中", "iDEN / UMTS 1900", ""},
		MNCDescription{"716", "10", "Claro", "América Móvil Perú", "营运中", "GSM 1900 / UMTS 850", ""},
	},
	"菲律宾 - PH": {
		MNCDescription{"515", "01", "Islacom", "Globe Telecom via Innove Communications", "非营运中", "GSM 900", ""},
		MNCDescription{"515", "02", "Globe", "Globe Telecom", "营运中", "EDGE 900 / EDGE 1800 / UMTS 850 / UMTS 2100", ""},
		MNCDescription{"515", "03", "Smart", "PLDT via Smart Communications", "营运中", "EDGE 900 / EDGE 1800 / UMTS 850 / UMTS 2100", ""},
		MNCDescription{"515", "05", "Sun", "Digital Telecommunications Philippines", "营运中", "EDGE 1800 / UMTS 2100", ""},
		MNCDescription{"515", "11", "", "PLDT via ACeS Philippines", "未知", "未知", ""},
		MNCDescription{"515", "18", "Cure", "PLDT via Smart's Connectivity Unlimited Resources Enterprise", "营运中", "GSM 900 / UMTS 2100 (defunct)", ""},
		MNCDescription{"515", "88", "", "Nextel", "未知", "未知", ""},
	},
	"波兰 - PL": {
		MNCDescription{"260", "01", "Plus", "Polkomtel S.A.", "营运中", "GSM 900 / GSM 1800 / UMTS 2100", ""},
		MNCDescription{"260", "02", "T-Mobile", "Polska Telefonia Cyfrowa Sp. z o.o.", "营运中", "GSM 900 / GSM 1800 / UMTS 2100", ""},
		MNCDescription{"260", "03", "Orange", "Polska Telefonia Komórkowa Centertel Sp. z o.o.", "营运中", "GSM 900 / GSM 1800 / UMTS 2100 / CDMA2000 450", ""},
		MNCDescription{"260", "04", "", "not in use", "非营运中", "未知", ""},
		MNCDescription{"260", "05", "", "Polska Telefonia Komórkowa Centertel Sp. z o.o.", "营运中", "UMTS 2100", ""},
		MNCDescription{"260", "06", "Play", "P4 Sp. z o.o.", "营运中", "GSM 900 / UMTS 2100", ""},
		MNCDescription{"260", "07", "Netia", "Netia S.A.", "营运中", "GSM 900 / UMTS 2100", ""},
		MNCDescription{"260", "08", "", "E-Telko Sp. z o.o.", "非营运中", "未知", ""},
		MNCDescription{"260", "09", "", "Telekomunikacja Kolejowa Sp. z o.o.", "非营运中", "GSM-R 900", ""},
		MNCDescription{"260", "10", "Sferia", "Sferia S.A.", "营运中", "UMTS 850", ""},
		MNCDescription{"260", "11", "Nordisk Polska", "Nordisk Polska Sp. z o.o.", "营运中", "CDMA2000 420", ""},
		MNCDescription{"260", "12", "Cyfrowy Polsat", "Cyfrowy Polsat S.A.", "营运中", "GSM 900 / GSM 1800 / UMTS 2100", ""},
		MNCDescription{"260", "15", "CenterNet", "CenterNet S.A.", "营运中", "UMTS 1800", ""},
		MNCDescription{"260", "16", "Mobyland", "Mobyland Sp. z o.o.", "营运中", "UMTS 1800", ""},
		MNCDescription{"260", "17", "Aero2", "Aero 2 Sp. z o.o.", "营运中", "UMTS 900", ""},
	},
	"葡萄牙 - PT": {
		MNCDescription{"268", "01", "Vodafone", "Vodafone Portugal", "营运中", "GSM 900 / GSM 1800 / UMTS 2100", ""},
		MNCDescription{"268", "03", "Optimus", "Sonaecom – Serviços de Comunicações, S.A.", "营运中", "GSM 900 / GSM 1800 / UMTS 2100", ""},
		MNCDescription{"268", "06", "TMN", "Telecomunicações Móveis Nacionais", "营运中", "GSM 900 / GSM 1800 / UMTS 2100", ""},
		MNCDescription{"268", "21", "Zapp", "Zapp Portugal", "营运中", "CDMA2000 450", ""},
	},
	"波多黎各 - PR": {
		MNCDescription{"330", "110", "Claro", "Puerto Rico Telephone Company", "营运中", "GSM 850 / GSM 1900 / UMTS 850", ""},
		MNCDescription{"330", "00", "Open Mobile", "PR Wireless", "营运中", "700 / PCS 1900 / AWS 1700", ""},
	},
	"卡塔尔 - QA": {
		MNCDescription{"427", "01", "Qtel", "Qtel", "营运中", "GSM 900 / GSM 1800", ""},
		MNCDescription{"427", "02", "Vodafone", "Vodafone Qatar", "营运中", "GSM 900 / GSM 1800 / UMTS 2100", ""},
		MNCDescription{"427", "05", "Ministry of Interior", "Ministry of Interior", "营运中", "TETRA 380", ""},
	},
	"留尼汪岛(法国)- RE": {
		MNCDescription{"647", "00", "Orange", "Orange La Réunion", "营运中", "GSM 900 / GSM 1800", ""},
		MNCDescription{"647", "02", "Outremer", "Outremer Telecom", "营运中", "GSM 900 / GSM 1800", ""},
		MNCDescription{"647", "10", "SFR Reunion", "Societe Reunionnaise de Radiotelephone", "营运中", "GSM 900", ""},
	},
	"罗马尼亚 - RO": {
		MNCDescription{"226", "01", "Vodafone", "Vodafone România", "营运中", "GSM 900 / GSM 1800 / UMTS 900 / UMTS 2100", ""},
		MNCDescription{"226", "02", "Romtelecom", "Romtelecom", "营运中", "CDMA2000 (1x & EVDO Rev.A) 420 Mhz", ""},
		MNCDescription{"226", "03", "Cosmote", "Cosmote România", "营运中", "EGSM 900 / GSM 1800", ""},
		MNCDescription{"226", "04", "Cosmote", "Cosmote România", "营运中", "CDMA2000 (1x & EVDO Rel.0 & EVDO Rev.A) 450 Mhz", ""},
		MNCDescription{"226", "05", "Digi.Mobil", "RCS&RDS", "营运中", "UMTS 2100", ""},
		MNCDescription{"226", "06", "Cosmote", "Cosmote România", "营运中", "UMTS 2100", ""},
		MNCDescription{"226", "10", "Orange", "Orange România", "营运中", "GSM 900 / GSM 1800 / UMTS 900 / UMTS 2100", ""},
		MNCDescription{"226", "11", "Enigma-System", "Enigma-System", "非营运中", "MVNO", ""},
	},
	"俄罗斯联邦 - RU": {
		MNCDescription{"250", "01", "MTS", "Mobile TeleSystems", "营运中", "GSM 900 / GSM 1800 / UMTS 900 / UMTS 2100", ""},
		MNCDescription{"250", "02", "MegaFon", "MegaFon OJSC——以前被称为西北GSM", "营运中", "GSM 900 / GSM 1800 / UMTS 900 / UMTS 2100", ""},
		MNCDescription{"250", "03", "NCC", "Nizhegorodskaya Cellular Communications", "营运中", "GSM 900 / GSM 1800", ""},
		MNCDescription{"250", "04", "Sibchallenge", "Sibchallenge", "非营运中", "GSM 900", ""},
		MNCDescription{"250", "05", "ETK", "Yeniseytelecom", "营运中", "GSM 900 / GSM 1800", ""},
		MNCDescription{"250", "06", "Skylink [7]", "CJSC Saratov System of Cellular Communications", "营运中", "CDMA2000 450", ""},
		MNCDescription{"250", "07", "SMARTS", "Zao SMARTS", "营运中", "GSM 900 / GSM 1800", ""},
		MNCDescription{"250", "09", "Skylink", "Khabarovsky Cellular Phone", "营运中", "CDMA2000 450", ""},
		MNCDescription{"250", "10", "DTC", "Dontelekom", "非营运中", "GSM 900", ""},
		MNCDescription{"250", "11", "Yota", "Scartel", "营运中", "LTE 2600", ""},
		MNCDescription{"250", "12", "Baykalwestcom", "Baykal Westcom / New Telephone Company / Far Eastern Cellular", "营运中", "GSM 900 / GSM 1800 / CDMA2000 450", ""},
		MNCDescription{"250", "12", "Akos", "", "营运中", "GSM 1800", ""},
		MNCDescription{"250", "13", "KUGSM", "Kuban GSM", "非营运中", "GSM 900 / GSM 1800", ""},
		MNCDescription{"250", "15", "SMARTS", "SMARTS Ufa, SMARTS Uljanovsk", "营运中", "GSM 1800", ""},
		MNCDescription{"250", "16", "NTC", "New Telephone Company", "营运中", "GSM 900 / GSM 1800", ""},
		MNCDescription{"250", "17", "Utel", "JSC Uralsvyazinform", "营运中", "GSM 900 / GSM 1800", ""},
		MNCDescription{"250", "19", "INDIGO", "INDIGO", "非营运中[来源请求]", "GSM 1800", ""},
		MNCDescription{"250", "20", "Tele2", "Tele2", "营运中", "GSM 900 / GSM 1800", ""},
		MNCDescription{"250", "23", "Mobicom - Novosibirsk", "Mobicom - Novosibirsk", "非营运中", "GSM 900 / GSM 1800", ""},
		MNCDescription{"250", "28", "Beeline", "Beeline", "非营运中", "GSM 900", ""},
		MNCDescription{"250", "35", "MOTIV", "MOTIV", "营运中", "GSM 1800", ""},
		MNCDescription{"250", "38", "Tambov GSM", "Central Telecommunication Company", "营运中", "GSM 900 / GSM 1800", ""},
		MNCDescription{"250", "39", "Utel", "Uralsvyazinform", "营运中", "GSM 900 / GSM 1800", ""},
		MNCDescription{"250", "44", "", "Stavtelesot / North Caucasian GSM", "非营运中", "未知", ""},
		MNCDescription{"250", "92", "", "Primtelefon", "非营运中", "未知", ""},
		MNCDescription{"250", "93", "", "Telecom XXI", "非营运中", "未知", ""},
		MNCDescription{"250", "99", "Beeline", "OJSC Vimpel-Communications", "营运中", "GSM 900 / GSM 1800 / UMTS 2100", ""},
		MNCDescription{"250", "?", "", "SkyLink/MTS/the Moscow Cellular communication", "营运中", "CDMA2000 450", ""},
	},
	"卢旺达 - RW": {
		MNCDescription{"635", "10", "MTN", "MTN Rwandacell SARL", "营运中", "GSM 900", ""},
		MNCDescription{"635", "12", "Rwandatel", "Rwandatel S.A.", "非营运中", "GSM ???", ""},
		MNCDescription{"635", "13", "Tigo", "TIGO RWANDA S.A", "营运中", "GSM 900 / GSM 1800 / UMTS 2100", ""},
	},
	"圣基茨和尼维斯 - SKN": {
		MNCDescription{"356", "050", "Digicel", "", "营运中", "GSM 900 / GSM 1800 / GSM 1900", ""},
		MNCDescription{"356", "110", "", "LIME", "营运中", "GSM 850 / GSM 1900", ""},
		MNCDescription{"356", "070", "Chippie", "UTS", "营运中", "", ""},
	},
	"圣卢西亚 - LC": {
		MNCDescription{"358", "050", "Digicel[来源请求]", "", "未知", "GSM 900 / GSM 1800 / GSM 1900", ""},
		MNCDescription{"358", "110", "", "Cable & Wireless", "未知", "GSM 850", ""},
	},
	"圣皮埃尔和密克隆(法国)- PM": {
		MNCDescription{"308", "01", "Ameris", "St. Pierre-et-Miquelon Télécom", "营运中", "GSM 900", ""},
	},
	"圣文森特和格林纳丁斯 - VC": {
		MNCDescription{"360", "070", "Digicel", "", "未知", "GSM 900 / GSM 1800 / GSM 1900", ""},
		MNCDescription{"360", "100", "Cingular Wireless", "", "未知", "GSM 850", ""},
		MNCDescription{"360", "110", "Cable & Wireless", "Cable & Wireless", "未知", "GSM 850", ""},
	},
	"萨摩亚 - WS": {
		MNCDescription{"549", "01", "Digicel", "Digicel Pacific Ltd.", "营运中", "GSM 900", ""},
		MNCDescription{"549", "27", "SamoaTel", "SamoaTel Ltd", "营运中", "GSM 900", ""},
	},
	"圣马力诺 - SM": {
		MNCDescription{"292", "01", "PRIMA", "San Marino Telecom", "营运中", "GSM 900 / GSM 1800 / UMTS 2100", ""},
	},
	"圣多美和普林西比 - ST": {
		MNCDescription{"626", "01", "CSTmovel", "Companhia Santomese de Telecomunicaçôe", "营运中", "GSM 900", ""},
	},
	"沙特阿拉伯 - SA": {
		MNCDescription{"420", "01", "Al Jawal", "Saudi Telecom Company", "营运中", "GSM 900 / UMTS 2100", ""},
		MNCDescription{"420", "03", "Mobily", "Etihad Etisalat Company", "营运中", "GSM 900 / UMTS 2100", ""},
		MNCDescription{"420", "04", "Zain SA", "Zain Saudi Arabia", "营运中", "GSM 900 / GSM 1800 / UMTS 2100", ""},
	},
	"塞内加尔 - SN": {
		MNCDescription{"608", "01", "Orange", "Sonatel", "营运中", "GSM 900 / UMTS 2100", ""},
		MNCDescription{"608", "02", "Tigo", "Millicom International Cellular S.A.", "营运中", "GSM 900 / UMTS 2100", ""},
		MNCDescription{"608", "03", "Expresso", "Sudatel", "营运中", "GSM 900 / UMTS 2100", ""},
	},
	"塞尔维亚 - RS": {
		MNCDescription{"220", "01", "Telenor", "Telenor Serbia", "营运中", "GSM 900 / GSM 1800 / UMTS 2100", ""},
		MNCDescription{"220", "02", "Telenor", "Telenor Montenegro", "营运中", "GSM 900 / GSM 1800 / UMTS 2100", ""},
		MNCDescription{"220", "03", "mt:s", "Telekom Srbija", "营运中", "GSM 900 / GSM 1800 / UMTS 2100", ""},
		MNCDescription{"220", "05", "VIP", "VIP Mobile", "营运中", "GSM 900 / GSM 1800 / UMTS 2100", ""},
	},
	"塞舌尔 - SC": {
		MNCDescription{"633", "01", "Cable & Wireless", "Cable & Wireless Seychelles", "营运中", "GSM 900", ""},
		MNCDescription{"633", "02", "Mediatech International", "Mediatech International", "营运中", "GSM 1800", ""},
		MNCDescription{"633", "10", "Airtel", "Telecom Seychelles Ltd", "营运中", "GSM 900 / UMTS 2100", ""},
	},
	"塞拉利昂 - SL": {
		MNCDescription{"619", "01", "Airtel", "Bharti Airtel Limited", "营运中", "GSM 900", ""},
		MNCDescription{"619", "02", "Tigo", "Millicom (SL) Limited", "未知", "未知", ""},
		MNCDescription{"619", "03", "Africell", "Lintel Sierra Leone Limited", "营运中", "GSM 900", ""},
		MNCDescription{"619", "04", "Comium", "Comium Sierra leone INC", "营运中", "GSM 900/1800", ""},
		MNCDescription{"619", "05", "Africell", "Lintel Sierra Leone Limited", "营运中", "GSM 900", ""},
		MNCDescription{"619", "25", "Mobitel", "Mobitel", "营运中", "未知", ""},
		MNCDescription{"619", "?", "LeoneCel", "Sierratel", "Reserved", "未知", ""},
	},
	"新加坡 - SG": {
		MNCDescription{"525", "01", "SingTel", "Singapore Telecom", "营运中", "GSM 900 / GSM 1800 / UMTS 2100", ""},
		MNCDescription{"525", "02", "SingTel-G18", "Singapore Telecom", "营运中", "GSM 1800", ""},
		MNCDescription{"525", "03", "M1", "MobileOne Asia", "营运中", "GSM 900 / GSM 1800 / UMTS 2100", ""},
		MNCDescription{"525", "05", "StarHub", "StarHub Mobile", "营运中", "GSM 1800 / UMTS 2100", ""},
		MNCDescription{"525", "12", "", "Digital Trunked Radio Network", "营运中", "iDEN 800", ""},
	},
	"斯洛伐克 - SK": {
		MNCDescription{"231", "01", "Orange", "Orange Slovensko", "营运中", "GSM 900 / GSM 1800 / UMTS 2100", ""},
		MNCDescription{"231", "02", "T-Mobile", "T-Mobile Slovensko", "营运中", "GSM 900 / GSM 1800", ""},
		MNCDescription{"231", "03", "", "Unient Communications", "未知", "未知", ""},
		MNCDescription{"231", "04", "T-Mobile", "T-Mobile Slovensko", "营运中", "UMTS 2100", ""},
		MNCDescription{"231", "06", "O2", "Telefónica O2 Slovakia", "营运中", "GSM 900 / GSM 1800 / UMTS 2100", ""},
		MNCDescription{"231", "99", "ŽSR", "Železnice Slovenskej Republiky", "营运中", "GSM-R", ""},
	},
	"斯洛文尼亚 - SI": {
		MNCDescription{"293", "40", "Si.mobil", "SI.MOBIL d.d.", "营运中", "GSM 900 / GSM 1800 / UMTS 2100", ""},
		MNCDescription{"293", "41", "Mobitel", "Mobitel D.D.", "营运中", "GSM 900 / GSM 1800 / UMTS 2100", ""},
		MNCDescription{"293", "64", "T-2", "T-2 d.o.o.", "营运中", "UMTS 2100", ""},
		MNCDescription{"293", "70", "Tušmobil", "Tušmobil d.o.o.", "营运中", "GSM 900 / GSM 1800 / UMTS 900 / UMTS 2100", ""},
	},
	"所罗门群岛 - SB": {
		MNCDescription{"540", "01", "BREEZE", "Solomon Telekom Co Ltd", "营运中", "GSM 900", ""},
	},
	"索马里 - SO": {
		MNCDescription{"637", "60", "Nationlink Telecom", "Nationlink Telecom", "营运中", "GSM 900/ GSM 1800", ""},
		MNCDescription{"637", "01", "Telesom", "Telesom", "营运中", "GSM 900", ""},
		MNCDescription{"637", "04", "Somafone", "Somafone FZLLC", "营运中", "GSM 900 / GSM 1800", ""},
		MNCDescription{"637", "10", "Nationlink", "NationLink Telecom", "营运中", "GSM 900", ""},
		MNCDescription{"637", "25", "Hormuud", "Hormuud Telecom Somalia Inc", "营运中", "GSM 900", ""},
		MNCDescription{"637", "30", "Golis", "Golis Telecom Somalia", "营运中", "GSM 900", ""},
		MNCDescription{"637", "82", "Telcom", "Telcom Somalia", "营运中", "GSM 900 / GSM 1800 / CDMA2000", ""},
	},
	"南非 - ZA": {
		MNCDescription{"655", "01", "Vodacom", "Vodacom", "营运中", "GSM 900 / UMTS 2100", ""},
		MNCDescription{"655", "02", "Telkom Mobile / 8.ta", "Telkom", "营运中", "GSM 1800 / UMTS 2100", ""},
		MNCDescription{"655", "06", "Sentech", "", "营运中", "未知", ""},
		MNCDescription{"655", "07", "Cell C", "Cell C", "营运中", "GSM 900 / GSM 1800 / UMTS 900", ""},
		MNCDescription{"655", "10", "MTN", "MTN Group", "营运中", "GSM 900 / UMTS 2100 / UMTS 900", ""},
		MNCDescription{"655", "11", "", "South African Police Service Gauteng", "营运中", "TETRA 410", ""},
		MNCDescription{"655", "13", "Neotel", "", "营运中", "CDMA2000 800", ""},
		MNCDescription{"655", "21", "", "Cape Town Metropolitan Council", "营运中", "TETRA 410", ""},
		MNCDescription{"655", "30", "", "Bokamoso Consortium", "营运中", "未知", ""},
		MNCDescription{"655", "31", "", "Karabo Telecoms (Pty) Ltd.", "营运中", "未知", ""},
		MNCDescription{"655", "32", "", "Ilizwi Telecommunications", "营运中", "未知", ""},
		MNCDescription{"655", "33", "", "Thinta Thinta Telecommunications", "营运中", "未知", ""},
		MNCDescription{"250", "30", "Megafon", "Ostelecom", "营运中", "GSM 900 / GSM 1800", ""},
	},
	"南苏丹 - SS[133]": {
		MNCDescription{"659 [134]", "", "", "", "", "", ""},
	},
	"西班牙 - ES": {
		MNCDescription{"214", "01", "Vodafone", "Vodafone Spain", "营运中", "GSM 900 / GSM 1800 / UMTS 2100", ""},
		MNCDescription{"214", "03", "Orange", "France Telecom España SA", "营运中", "GSM 900 / GSM 1800 / UMTS 2100", ""},
		MNCDescription{"214", "04", "Yoigo", "Xfera Moviles SA", "营运中", "UMTS 2100", ""},
		MNCDescription{"214", "05", "TME", "Telefónica Móviles España", "营运中", "GSM 900 / GSM 1800 / UMTS 2100", ""},
		MNCDescription{"214", "06", "Vodafone", "Vodafone Spain", "营运中", "GSM 900 / GSM 1800 / UMTS 2100", ""},
		MNCDescription{"214", "07", "movistar", "Telefónica Móviles España", "营运中", "GSM 900 / GSM 1800 / UMTS 2100", ""},
		MNCDescription{"214", "08", "Euskaltel", "", "营运中", "MVNO", ""},
		MNCDescription{"214", "09", "Orange", "France Telecom España SA", "营运中", "GSM 900 / GSM 1800 / UMTS 2100", ""},
		MNCDescription{"214", "15", "BT", "BT Group España Compañia de Servicios Globales de Telecomunicaciones S.A.U.", "营运中", "MVNO", ""},
		MNCDescription{"214", "16", "TeleCable", "Telecable de Asturias S.A.U.", "营运中", "MVNO", ""},
		MNCDescription{"214", "17", "Móbil R", "R Cable y Telecomunicaciones Galicia S.A.", "营运中", "MVNO", ""},
		MNCDescription{"214", "18", "ONO", "Cableuropa S.A.U.", "营运中", "MVNO", ""},
		MNCDescription{"214", "19", "Simyo", "E-PLUS Moviles Virtuales España S.L.U.", "营运中", "MVNO", ""},
		MNCDescription{"214", "20", "Fonyou", "Fonyou Telecom S.L.", "营运中", "MVNO", ""},
		MNCDescription{"214", "21", "Jazztel", "Jazz Telecom S.A.U.", "营运中", "MVNO", ""},
		MNCDescription{"214", "22", "DigiMobil", "Best Spain Telecom", "营运中", "MVNO", ""},
		MNCDescription{"214", "23", "Barablu", "Barablu Móvil España", "", "MVNO", ""},
		MNCDescription{"214", "24", "Eroski", "Eroski Móvil España", "营运中", "MVNO", ""},
		MNCDescription{"214", "25", "LycaMobile", "LycaMobile S.L.", "营运中", "MVNO", ""},
	},
	"斯里兰卡 - LK": {
		MNCDescription{"413", "01", "Mobitel", "Sri Lanka Telecom Mobitel", "营运中", "GSM 900 / GSM 1800 / UMTS 2100", ""},
		MNCDescription{"413", "02", "Dialog", "Dialog Axiata", "营运中", "GSM 900 / GSM 1800 / UMTS 2100", ""},
		MNCDescription{"413", "03", "Etisalat", "Emirates Telecommunication Corporation", "营运中", "GSM 900 / GSM 1800 / UMTS 2100", ""},
		MNCDescription{"413", "05", "Airtel", "Bharti Airtel", "营运中", "GSM 900 / GSM 1800 / UMTS 2100", ""},
		MNCDescription{"413", "08", "Hutch", "Hutchison Telecommunications Lanka", "营运中", "GSM 900", ""},
	},
	"苏丹 - SD": {
		MNCDescription{"634", "01", "Zain SD", "Zain Group - Sudan", "营运中", "GSM 900 / UMTS 2100", ""},
		MNCDescription{"634", "02", "MTN", "MTN Sudan", "营运中", "GSM 900 / GSM 1800 / UMTS 2100", ""},
		MNCDescription{"634", "05", "Vivacell", "Wawat Securities", "营运中", "GSM 900 / GSM 1800", ""},
		MNCDescription{"634", "07", "Sudani One", "Sudatel Group", "营运中", "GSM 1800 / UMTS 2100 / CDMA2000 800", ""},
		MNCDescription{"634", "", "Canar", "Canar Telecom", "营运中", "CDMA2000 450", ""},
	},
	"苏里南 - SR": {
		MNCDescription{"746", "02", "Telesur", "Telecommunications Company Suriname (Telesur)", "营运中", "GSM 900 / GSM 1800", ""},
		MNCDescription{"746", "03", "Digicel", "Digicel Group Limited", "营运中", "GSM 900/ GSM 1800", ""},
		MNCDescription{"746", "04", "Uniqa", "Intelsur N.V. / UTS N.V.", "营运中", "GSM 900", ""},
	},
	"斯威士兰 - SZ": {
		MNCDescription{"653", "10", "", "Swazi MTN", "营运中", "GSM 900", ""},
	},
	"瑞典 - SE": {
		MNCDescription{"240", "01", "Telia", "SwedenTeliaSonera", "营运中", "GSM 900 / GSM 1800", ""},
		MNCDescription{"240", "02", "3", "Hutchison 3G", "营运中", "UMTS 900 / UMTS 2100", ""},
		MNCDescription{"240", "03", "Ice.net", "Nordisk Mobiltelefon", "营运中", "CDMA2000 450", ""},
		MNCDescription{"240", "04", "", "3G Infrastructure Services", "营运中", "UMTS 2100", ""},
		MNCDescription{"240", "05", "Sweden 3G", "Svenska UMTS-Nät", "营运中", "UMTS 2100", ""},
		MNCDescription{"240", "06", "Telenor", "Telenor Sweden", "营运中", "UMTS 2100", ""},
		MNCDescription{"240", "07", "Tele2", "Tele2 Sweden", "营运中", "GSM 900 / GSM 1800", ""},
		MNCDescription{"240", "08", "Telenor", "Telenor Sweden", "营运中", "GSM 900 / GSM 1800", ""},
		MNCDescription{"240", "09", "djuice", "Telenor Sweden", "营运中", "GSM 900 / GSM 1800", ""},
		MNCDescription{"240", "10", "Spring Mobil", "Tele2", "营运中", "未知", ""},
		MNCDescription{"240", "11", "", "Lindholmen Science Park", "未知", "未知", ""},
		MNCDescription{"240", "12", "", "Barablu Mobile Scandinavia", "未知", "未知", ""},
		MNCDescription{"240", "13", "", "Ventelo Sverige", "未知", "未知", ""},
		MNCDescription{"240", "14", "", "TDC Mobil", "营运中", "GSM 900 / GSM 1800 / UMTS 2100", ""},
		MNCDescription{"240", "15", "", "Wireless Maingate Nordic", "未知", "GSM 900 / GSM 1800 / UMTS 2100", ""},
		MNCDescription{"240", "16", "", "42IT", "营运中", "GSM", ""},
		MNCDescription{"240", "17", "Gotanet", "Götalandsnätet", "未知", "未知", ""},
		MNCDescription{"240", "20", "", "Wireless Maingate Message Services", "营运中", "GSM", ""},
		MNCDescription{"240", "21", "MobiSir", "Trafikverket (formerly Banverket)", "营运中", "GSM-R 900", ""},
		MNCDescription{"240", "24", "Sweden 2G", "Net4Mobility", "营运中", "GSM 900/1800", ""},
		MNCDescription{"240", "25", "", "DigiTelMobile", "未知", "未知", ""},
		MNCDescription{"240", "26", "", "Beepsend", "营运中", "GSM", ""},
		MNCDescription{"240", "33", "", "Mobile Arts AB", "未知", "", ""},
	},
	"瑞士 - CH": {
		MNCDescription{"228", "01", "Swisscom", "Swisscom Ltd", "营运中", "GSM 900 / GSM 1800 / UMTS 2100", ""},
		MNCDescription{"228", "02", 

你可能感兴趣的:(golang)