Module:languages/data3/c

Hali sa Wiksyunaryo

This module contains definitions and metadata for three-letter language codes starting with "c". See Wiktionary:Languages for more information.

This module must not be used directly in other modules or templates. The data should be accessed through Module:languages.

See Module:data consistency check to check for errors in this data module.

Required values[baguhon]

Every entry in the table must contain the following indexed fields:

1
The "canonical" name of the language. This is the name that is used in Wiktionary entries and category names.
2
The Wikidata item id (Q number) for the language. Set to nil if not known/present. This replaces the older wikipedia_article property, which can still be used to link to specific sections or language editions.

Optional values[baguhon]

3
The code for the family that the language belongs to. See Wiktionary:Families.

The properties entry_name and sort_key are used for text substitution; they replace or remove certain characters or sets of characters. They both work similarly, and are optional. They can both be tables, and sort_key can be the name of a module that takes an entry name and generates a sortkey (which is used to sort the entry on category pages).

if sort_key is the name of a module, the module must contain a sortkey-generating function that is named makeSortKey. This function must take the arguments text, lang, sc, where text is the page name (or other text in the language), lang is the language code (not the language object), and sc is the script code (not the script object). The returned value should always be a string, or there will be a module error in the Language:makeSortKey() function.

If either one is a table, it must contain two tables inside it: one named from and one named to. These two tables are organised pairwise: each element in from is a pattern to identify which characters in the term to replace, while the corresponding element in to defines what to replace them with.

If the replacement is not present or if it is false or nil, it defaults to an empty replacement, meaning that the matching characters are removed altogether. This means that the from list can be longer than the to list, and an empty replacement will be assumed for any elements in from that have no counterpart in to.

The tables can contain literal characters, or the patterns (a type of [[|regular expression|regular expression]]s) that are used by the standard Scribunto mw.ustring.gsub function. See the Scribunto reference manual for more information.

At the top of the module, there is a list of combining characters with names. These are provided for convenience and readability, as combining characters generally do not display properly inside the module code (although they do not affect the actual operation of the module).

entry_name
Defines replacements to create the entry name from the displayed form of a term. This can be used to remove certain diacritical marks according to the customs or standard practice of the language. For example, it is used to remove accent marks from Russian words (ру́сскийрусский), or macrons from Latin or Old English words (ōsos), as these are not used in the normal written form of these languages. This is used by makeEntryName in Module:languages.
sort_key
Defines replacements to create a category sort key from the page name. The purpose is to remove any characters that are ignored in sorting, and to replace similar characters with identical ones if the sorting rules for that language do not distinguish them. For example, in German, the characters "ä" and "a" are considered equivalent for sorting, and are both treated as "a". The page name is converted to lowercase before applying the replacements, so you should not add uppercase letters to the "from" lists. This is used by makeSortKey in Module:languages.

These are other optional values:

otherNames
A table of all the names that this language is known by, other than the canonical name. The list should include not only synonyms for the language, but also names that refer to language varieties that are subsumed under the same grouping. For example, while "Flemish" is not synonymous with "Dutch", Flemish is considered a part of Dutch, so the name is listed there.
type
The type of language (which affects how it is handled on Wiktionary). Possible values are:
  • regular - This value is the default, so it doesn't need to be specified. It indicates that the is attested according to WT:CFI and therefore permitted in the main namespace. There may also be reconstructed terms for the language, which are placed in the Reconstruction namespace and must be prefixed with * to indicate a reconstruction.
  • reconstructed - This language is not attested according to CFI, and therefore is allowed only in the Reconstruction namespace. All terms in this language are reconstructed, and must be prefixed with *.
  • appendix-constructed - This language is attested but does not meet the additional requirements set out for constructed languages (WT:CFI#Constructed languages). Its entries must therefore be in the Appendix namespace, but they are not reconstructed and therefore should not have * prefixed in links.
scripts
A list of script codes, see Wiktionary:Scripts. These represent all the scripts (writing systems) that this language uses in the real world, as well as the ones that Wiktionary uses. The scripts that are used most often on Wiktionary should be first in the list, as this will speed up script detection.
Many templates and modules detect the script of text in a particular language using the findBestScript function in Module:scripts. This function goes down the list of scripts and counts how many characters in the text belong to each script. If all the characters belong to one script, that script will be returned; otherwise, the script with the most characters will be returned. Thus, script detection will be faster if the most frequently used scripts are first in the list.
translit_module
The name of a module that is used to generate transliterations of terms, without the Module: prefix. This module must export a function named tr that is defined as follows:
tr(text, lang, sc)
The three parameters are the text to be transliterated, the language code, and the script code. The function can ignore the language and script codes, but they are provided for cases when a language has more than one script, or when a single function is used to transliterate multiple languages sharing the same script.
ancestors
A table listing the language codes of the direct ancestors of this language. For example, the ancestor of English is listed as enm (Middle English); ang (Old English, the ancestor of Middle English), gem-pro (Proto-Germanic, the ancestor of Old English), and ine-pro (Proto-Indo-European, the ancestor of Proto-Germanic) are not listed.
For most languages, only one ancestor code should be given, but multiple ancestors can be listed for pidgins, creoles and mixed languages.
The ancestor language table should not be included if the language's direct ancestor is the proto-language of the family to which the language belongs. In such a case, if the family code has been provided, Module:languages will automatically add the proto-language as the language's ancestor. For example, Proto-Germanic (gem-pro) belongs to the Indo-European (ine) family, and its direct ancestor is Proto-Indo-European (ine-pro). Because Proto-Indo-European is the proto-language of the Indo-European languages, Proto-Germanic does not need an ancestors table; Proto-Indo-European will be automatically returned as its ancestor by the getAncestors function.
wikimedia_codes
A table listing the Wikimedia language codes that this language maps to. This is used to translate Wiktionary codes to Wikimedia codes, which are usually the same but there are a few languages where it is different. The language codes must be valid Wikimedia codes (as determined by the wiki software), and if they are not defined in one of the language data modules, they must be defined in Module:wikimedia languages/data.
wikipedia_article
The name of the Wikipedia article for the language. Should normally only be supplied if the Wikidata id cannot be used.

local u = mw.ustring.char

-- UTF-8 encoded strings for some commonly-used diacritics
local GRAVE     = u(0x0300)
local ACUTE     = u(0x0301)
local CIRC      = u(0x0302)
local TILDE     = u(0x0303)
local MACRON    = u(0x0304)
local BREVE     = u(0x0306)
local DOTABOVE  = u(0x0307)
local DIAER     = u(0x0308)
local CARON     = u(0x030C)
local DGRAVE    = u(0x030F)
local INVBREVE  = u(0x0311)
local DOTBELOW  = u(0x0323)
local RINGBELOW = u(0x0325)
local CEDILLA   = u(0x0327)

local Cyrl = {"Cyrl"}
local Deva = {"Deva"}
local Latn = {"Latn"}

local m = {}

m["caa"] = {
	"Ch'orti'",
	"Q35177",
	"myn",
	otherNames = {"Chorti"},
	scripts = Latn,
}

m["cab"] = {
	"Garifuna",
	"Q35490",
	"awd-taa",
	ancestors = {"awd-taa-pro"},
	scripts = Latn,
}

m["cac"] = {
	"Chuj",
	"Q35233",
	"myn",
	scripts = Latn,
}

m["cad"] = {
	"Caddo",
	"Q56756",
	"cdd",
	scripts = Latn,
}

m["cae"] = {
	"Laalaa",
	"Q35564",
	"alv-cng",
	scripts = Latn,
}

m["caf"] = {
	"Southern Carrier",
	"Q12953426",
	"ath-nor",
	scripts = Latn,
}

m["cag"] = {
	"Nivaclé",
	"Q3182557",
	"sai-mtc",
	scripts = Latn,
}

m["cah"] = {
	"Cahuarano",
	"Q2933175",
	"sai-zap",
	scripts = Latn,
}

m["caj"] = {
	"Chané",
	"Q56721",
	"awd",
	scripts = Latn,
}

m["cak"] = {
	"Kaqchikel",
	"Q35115",
	"myn",
	otherNames = {"Cakchiquel", "Kakchiquel", "Cachiquel"},
	scripts = Latn,
}

m["cal"] = {
	"Carolinian",
	"Q28427",
	"poz-mic",
	scripts = Latn,
}

m["cam"] = {
	"Cemuhî",
	"Q3009690",
	"poz-cln",
	scripts = Latn,
}

m["can"] = {
	"Chambri",
	"Q5069707",
	"paa-lsp",
	scripts = Latn,
}

m["cao"] = {
	"Chácobo",
	"Q2591202",
	"sai-pan",
	scripts = Latn,
}

m["cap"] = {
	"Chipaya",
	"Q35235",
	"sai-ucp",
	scripts = Latn,
}

m["caq"] = {
	"Car Nicobarese",
	"Q35156",
	"aav",
	otherNames = {"Car"},
	scripts = Latn,
}

m["car"] = {
	"Galibi Carib",
	"Q56611",
	"sai-car",
	otherNames = {"Carib", "Caribe", "Cariña", "Galibi", "Galibí", "Kalihna", "Kali'na", "Kalinya", "Maraworno", "Marworno"},
	scripts = Latn,
}

m["cas"] = {
	"Tsimané",
	"Q35950",
	"qfa-iso",
	otherNames = {"Chimané", "Mosetén"},
	scripts = Latn,
}

m["cav"] = {
	"Cavineña",
	"Q524102",
	"sai-tac",
	otherNames = {"Cavinena"},
	scripts = Latn,
}

m["caw"] = {
	"Callawalla",
	"Q266417",
	"qfa-mix",
	scripts = Latn,
}

m["cax"] = {
	"Chiquitano",
	"Q1844993",
	"qfa-iso",
	scripts = Latn,
}

m["cay"] = {
	"Cayuga",
	"Q32967",
	"iro",
	scripts = Latn,
}

m["caz"] = {
	"Canichana",
	"Q2936374",
	"qfa-iso",
	scripts = Latn,
}

m["cbb"] = {
	"Cabiyarí",
	"Q3450660",
	"awd-nwk",
	scripts = Latn,
}

m["cbc"] = {
	"Carapana",
	"Q924405",
	"sai-tuc",
	scripts = Latn,
}

m["cbd"] = {
	"Carijona",
	"Q3446655",
	"sai-car",
	otherNames = {"Carihona", "Karijona", "Karihona", "Jianacoto", "Jianácoto", "Hianakoto", "Hianacoto", "Hianákoto", "Guaque", "Omagua", "Umaua", "Umawa"},
	scripts = Latn,
}

m["cbg"] = {
	"Chimila",
	"Q2963680",
	"cba",
	scripts = Latn,
}

m["cbi"] = {
	"Chachi",
	"Q2591329",
	"sai-bar",
	otherNames = {"Cha'palaa", "Chapalaa", "Cha'palaachi", "Chapalaachi", "Cayapa"},
	scripts = Latn,
}

m["cbj"] = {
	"Ede Cabe",
	"Q33112829",
	"alv-von",
	scripts = Latn,
}

m["cbk"] = {
	"Chavacano",
	"Q33281",
	"crp",
	ancestors = {"es"},
	otherNames = {"Zamboanga Chavacano"},
	scripts = Latn,
}

m["cbl"] = {
	"Bualkhaw Chin",
	"Q9229830",
	"tbq-kuk",
	otherNames = {"Bualkhaw"},
	scripts = Latn,
}

m["cbn"] = {
	"Nyah Kur",
	"Q116849",
	"aav",
	otherNames = {"Nyahkur"},
	scripts = {"Thai"},
	sort_key = {
		from = {"%p", "[็-๎]", "([เแโใไ])([ก-ฮ])"},
		to   = {"", "", "%2%1"}},
}

m["cbo"] = {
	"Izora",
	"Q3915454",
	"nic-knj",
	scripts = Latn,
}

m["cbq"] = {
	"Shuba",
	nil,
	"nic-knj",
	otherNames = {"Tsucuba", "Cuba"},
	scripts = Latn,
}

m["cbr"] = {
	"Cashibo-Cacataibo",
	"Q5359560",
	"sai-pan",
	otherNames = {"Cashibo", "Cacataibo"},
	scripts = Latn,
}

m["cbs"] = {
	"Cashinahua",
	"Q2591230",
	"sai-pan",
	scripts = Latn,
}

m["cbt"] = {
	"Chayahuita",
	"Q1526525",
	"sai-cah",
	scripts = Latn,
}

m["cbu"] = {
	"Candoshi-Shapra",
	"Q642843",
	"qfa-iso",
	scripts = Latn,
}

m["cbv"] = {
	"Cacua",
	"Q3192052",
	"sai-nad",
	ancestors = {"mbr"},
	scripts = Latn,
}

m["cbw"] = {
	"Kinabalian",
	"Q6410324",
	"phi",
	scripts = Latn,
}

m["cby"] = {
	"Carabayo",
	"Q3441762",
	"sai-tyu",
	otherNames = {"Caraballo", "Yuri", "Aroje", "Yacumo", "Maku", "Macu", "Macusa"},
	scripts = Latn,
}

m["cca"] = {
	"Cauca",
	"Q5054242",
	"sai-chc",
	scripts = Latn,
}

m["ccc"] = {
	"Chamicuro",
	"Q2155119",
	"awd",
	scripts = Latn,
}

m["ccd"] = {
	"Cafundó",
	"Q3331506",
	"roa-ibe",
	scripts = Latn,
	ancestors = {"pt"},
}

m["cce"] = {
	"Chopi",
	"Q3437616",
	"bnt",
	scripts = Latn,
}

m["ccg"] = {
	"Chamba Daka",
	"Q33120805",
	"nic-bco",
	otherNames = {"Samba Daka", "Nakanyare"},
	scripts = Latn,
}

m["cch"] = {
	"Atsam",
	"Q34794",
	"nic-knj",
	scripts = Latn,
}

m["ccj"] = {
	"Kasanga",
	"Q35542",
	"alv-nyn",
	scripts = Latn,
}

m["ccl"] = {
	"Cutchi-Swahili",
	"Q5196729",
	"crp",
	scripts = Latn,
	ancestors = {"sw"},
}

m["ccm"] = {
	"Malaccan Creole Malay",
	"Q12636092",
	"crp",
	scripts = Latn,
	ancestors = {"ms"},
}

m["cco"] = {
	"Comaltepec Chinantec",
	"Q2963735",
	"omq-chi",
	scripts = Latn,
}

m["ccp"] = {
	"Chakma",
	"Q32952",
	"inc",
	scripts = {"Cakm"},
	ancestors = {"inc-mgd"},
}

m["ccr"] = {
	"Cacaopera",
	"Q3438338",
	"nai-min",
	scripts = Latn,
}

m["cda"] = {
	"Choni",
	"Q2964447",
	"sit-tib",
}

m["cde"] = {
	"Chenchu",
	"Q32981",
	"dra",
	scripts = {"Telu"},
	ancestors = {"te"},
}

m["cdf"] = {
	"Chiru",
	"Q5102016",
	"tbq-kuk",
	scripts = {"Latn", "Beng"},
}

m["cdh"] = {
	"Chambeali",
	"Q12953424",
	"him",
	scripts = {"Deva", "Takr"},
}

m["cdi"] = {
	"Chodri",
	"Q5103788",
	"inc-bhi",
	scripts = {"Gujr"},
}

m["cdj"] = {
	"Churahi",
	"Q12629039",
	"him",
}

m["cdm"] = {
	"Chepang",
	"Q5091700",
	"sit-gma",
	scripts = Deva,
}

m["cdn"] = {
	"Chaudangsi",
	"Q5088056",
	"sit-alm",
}

m["cdo"] = {
	"Min Dong",
	"Q36455",
	"zhx-min-hai",
	otherNames = {"Min Dong Chinese"},
	scripts = {"Hani"},
}

m["cdr"] = {
	"Cinda-Regi-Tiyal",
	"Q35596",
	"nic-bco",
	scripts = Latn,
}

m["cds"] = {
	"Chadian Sign Language",
	"Q10322099",
	"sgn",
	scripts = Latn, -- when documented
}

m["cdy"] = {
	"Chadong",
	"Q926742",
	"qfa-kms",
}

m["cdz"] = {
	"Koda",
	"Q6425038",
	"mun",
	scripts = {"Beng"},
}

m["cea"] = {
	"Lower Chehalis",
	"Q6693377",
	"sal",
	scripts = Latn,
}

m["ceb"] = {
	"Cebuano",
	"Q33239",
	"phi",
	scripts = Latn,
}

m["ceg"] = {
	"Chamacoco",
	"Q3436637",
	"sai-zam",
	scripts = Latn,
}

m["cen"] = {
	"Cen",
	"Q12628777",
	"nic-bco",
	otherNames = {"Cèn", "Chen"},
	scripts = Latn,
}

m["cet"] = {
	"Centúúm",
	"Q33608",
	"qfa-iso",
	otherNames = {"Jalaa", "Cèntûm", "Cen Tuum"},
	scripts = Latn,
}

m["cfa"] = {
	"Dijim-Bwilim",
	"Q3438350",
	"alv-sav",
	scripts = Latn,
}

m["cfd"] = {
	"Cara",
	"Q35048",
	"alv",
	scripts = Latn,
}

m["cfg"] = {
	"Como Karim",
	"Q35304",
	"nic-bco",
	scripts = Latn,
}

m["cfm"] = {
	"Falam Chin",
	"Q56815",
	"tbq-kuk",
	otherNames = {"Falam"},
	scripts = {"Beng", "Latn"},
}

m["cga"] = {
	"Changriwa",
	"Q5072105",
	"paa-yua",
	scripts = Latn,
}

m["cgc"] = {
	"Kagayanen",
	"Q6346422",
	"mno",
	scripts = Latn,
}

m["cgg"] = {
	"Rukiga",
	"Q3270727",
	"bnt",
	scripts = Latn,
}

m["cgk"] = {
	"Chocangaca",
	"Q56604",
	"sit-tib",
	scripts = {"Tibt"},
	ancestors = {"xct"},
}

m["chb"] = {
	"Chibcha",
	"Q2356431",
	"cba",
}

m["chc"] = {
	"Catawba",
	"Q5051602",
	"nai-cat",
	scripts = Latn,
}

m["chd"] = {
	"Highland Oaxaca Chontal",
	"Q2964457",
	"nai-tqn",
	otherNames = {"Oaxaca Chontal", "Oaxacan Chontal", "Chontal", "Tequistlatec", "Mountain Tequistlateco", "Highland Chontal", "Mountain Chontal"},
	scripts = Latn,
}

m["chf"] = {
	"Tabasco Chontal",
	"Q35175",
	"myn",
	scripts = Latn,
}

m["chg"] = {
	"Chagatai",
	"Q36831",
	"trk-kar",
	scripts = {"Arab"},
	entry_name = {
		from = {u(0x0671), u(0x064B), u(0x064C), u(0x064D), u(0x064E), u(0x064F), u(0x0650), u(0x0651), u(0x0652), u(0x0670), u(0x0640)},
		to   = {u(0x0627)}
	},
}

m["chh"] = {
	"Chinook",
	"Q6693380",
	"nai-ckn",
	scripts = Latn,
}

m["chj"] = {
	"Ojitlán Chinantec",
	"Q5100110",
	"omq-chi",
	scripts = Latn,
}

m["chk"] = {
	"Chuukese",
	"Q33161",
	"poz-mic",
	scripts = Latn,
}

m["chl"] = {
	"Cahuilla",
	"Q56438",
	"azc-cup",
	scripts = Latn,
	entry_name = {
		from = {"Á", "á", "É", "é", "Í", "í", "Ó", "ó", "Ú", "ú", MACRON},
		to   = {"A", "a", "E", "e", "I", "i", "O", "o", "U", "u"}} ,
}

m["chm"] = {
	"Eastern Mari",
	"Q973685",
	"urj",
	otherNames = {"Meadow Mari", "Lowland Mari", "Midland Mari", "Standard Mari", "Upo Mari", "Mari", "Mari (Russia)"},	
	scripts = Cyrl,
	translit_module = "chm-translit",
	override_translit = true,
	wikimedia_codes = {"mhr"},
	entry_name = {
		from = {GRAVE, ACUTE},
		to   = {}} ,
}

m["chn"] = {
	"Chinook Jargon",
	"Q35173",
	"crp",
	scripts = {"Latn", "Dupl"},
	ancestors = {"chh", "nuk"},
}

m["cho"] = {
	"Choctaw",
	"Q32979",
	"nai-mus",
	scripts = Latn,
}

m["chp"] = {
	"Chipewyan",
	"Q27692",
	"ath-nor",
	otherNames = {"Dëne Sųłiné", "Dënesųłiné", "Dëne", "Dene Suline", "Denesuline", "Dene"},
	scripts = {"Latn", "Cans"},
}

m["chq"] = {
	"Quiotepec Chinantec",
	"Q5758709",
	"omq-chi",
	scripts = Latn,
}

m["chr"] = {
	"Cherokee",
	"Q33388",
	"iro",
	scripts = {"Cher"},
	translit_module = "Cher-translit",
}

m["cht"] = {
	"Cholón",
	"Q2591243",
	scripts = Latn,
}

m["chw"] = {
	"Chuwabu",
	"Q5118412",
	"bnt",
	scripts = Latn,
}

m["chx"] = {
	"Chantyal",
	"Q4926344",
	"sit-tam",
	scripts = Deva,
}

m["chy"] = {
	"Cheyenne",
	"Q33265",
	"alg",
	scripts = Latn,
}

m["chz"] = {
	"Ozumacín Chinantec",
	"Q5100111",
	"omq-chi",
	scripts = Latn,
}

m["cia"] = {
	"Cia-Cia",
	"Q35284",
	"poz-mun",
	scripts = {"Hang", "Latn", "Arab"},
}

m["cib"] = {
	"Ci Gbe",
	"Q12952445",
	"alv-gbe",
	scripts = Latn,
}

m["cic"] = {
	"Chickasaw",
	"Q33192",
	"nai-mus",
	scripts = Latn,
}

m["cid"] = {
	"Chimariko",
	"Q1294251",
	"qfa-iso",
	scripts = Latn,
}

m["cie"] = {
	"Cineni",
	"Q56243",
	"cdc-cbm",
	scripts = Latn,
}

m["cih"] = {
	"Chinali",
	"Q11855245",
	"inc",
	scripts = Deva,
}

m["cik"] = {
	"Chitkuli Kinnauri",
	"Q15615982",
	"sit-kin",
}

m["cim"] = {
	"Cimbrian",
	"Q37053",
	"gmw",
	scripts = Latn,
	ancestors = {"bar"},
}

m["cin"] = {
	"Cinta Larga",
	"Q5121095",
	"tup",
	scripts = Latn,
}

m["cip"] = {
	"Chiapanec",
	"Q3364475",
	"omq",
	scripts = Latn,
}

m["cir"] = {
	"Tiri",
	"Q7862281",
	"poz-cln",
	otherNames = {"Tîrî", "Ciri", "Tinrin", "Méa", "Haméa"},
	scripts = Latn,
}

m["ciy"] = {
	"Chaima",
	"Q12628867",
	"sai-car",
	scripts = Latn,
}

m["cja"] = {
	"Western Cham",
	"Q12645578",
	"cmc",
	scripts = {"Arab"},
}

m["cje"] = {
	"Chru",
	"Q2967321",
	"cmc",
	scripts = Latn,
}

m["cjh"] = {
	"Upper Chehalis",
	"Q2962074",
	"sal",
	scripts = Latn,
}

m["cji"] = {
	"Chamalal",
	"Q56567",
	"cau-ava",
	scripts = Cyrl,
}

m["cjk"] = {
	"Chokwe",
	"Q2422065",
	"bnt",
	scripts = Latn,
}

m["cjm"] = {
	"Eastern Cham",
	"Q2948019",
	"cmc",
	scripts = {"Cham"},
}

m["cjn"] = {
	"Chenapian",
	"Q5091044",
	"paa-spk",
	scripts = Latn,
}

m["cjo"] = {
	"Ashéninka Pajonal",
	"Q3450481",
	"awd",
	scripts = Latn,
}

m["cjp"] = {
	"Cabécar",
	"Q27878",
	"cba",
	scripts = Latn,
}

m["cjs"] = {
	"Shor",
	"Q34139",
	"trk-sib",
	scripts = Cyrl,
}

m["cjv"] = {
	"Chuave",
	"Q5115226",
	"ngf",
	scripts = Latn,
}

m["cjy"] = {
	"Jin",
	"Q56479",
	"zhx",
	otherNames = {"Jinyu", "Jinhua", "Jinese", "Shanxinese", "Jin Chinese", "Jinyu Chinese"},
	scripts = {"Hani"},
	ancestors = {"ltc"},
}

m["ckb"] = {
	"Central Kurdish",
	"Q36811",
	"ira-nwi",
	otherNames = {"Sorani"},
	scripts = {"ku-Arab"},
	ancestors = {"ku"},
	translit_module = "ckb-translit",
	entry_name = {
		from = {u(0x0650), u(0x0652)},
		to   = {}} ,
}

m["ckh"] = {
	"Chak",
	"Q12628870",
	"sit-luu",
	otherNames = {"Sak"},
	scripts = Latn,
	ancestors = {"kdv"},
}

m["ckl"] = {
	"Cibak",
	"Q56279",
	"cdc-cbm",
	otherNames = {"Chibuk", "Chibok", "Chibbak", "Chibbuk", "Kyibaku", "Kibbaku", "Kibaku"},
	scripts = Latn,
}

m["ckn"] = {
	"Kaang Chin",
	"Q6343432",
	"tbq-kuk",
	otherNames = {"Kaang"},
	scripts = Latn,
}

m["cko"] = {
	"Anufo",
	"Q34845",
	"alv-kwa",
	otherNames = {"Chakosi"},
	scripts = Latn,
}

m["ckq"] = {
	"Kajakse",
	"Q3440422",
	"cdc-est",
	scripts = Latn,
}

m["ckr"] = {
	"Kairak",
	"Q3503002",
	"paa-bng",
	scripts = Latn,
}

m["cks"] = {
	"Tayo",
	"Q1133089",
	"crp",
	ancestors = {"fr"},
	scripts = Latn,
}

m["ckt"] = {
	"Chukchi",
	"Q33170",
	"qfa-cka",
	scripts = Cyrl,
}

m["cku"] = {
	"Koasati",
	"Q35162",
	"nai-mus",
	scripts = Latn,
}

m["ckv"] = {
	"Kavalan",
	"Q716627",
	"map",
	otherNames = {"Kebalan"},
	scripts = Latn,
}

m["ckx"] = {
	"Caka",
	"Q5018037",
	"nic-bod",
	scripts = Latn,
}

m["cky"] = {
	"Cakfem-Mushere",
	"Q3441199",
	"cdc-wst",
	scripts = Latn,
}

m["ckz"] = {
	"Cakchiquel-Quiché Mixed Language",
	"Q5054550",
	"myn",
	otherNames = {"Cauque Mayan"},
	scripts = Latn,
}

m["cla"] = {
	"Ron",
	"Q3440432",
	"cdc-wst",
	otherNames = {"Bokkos", "Daffo-Butura", "Shagawu"},
	scripts = Latn,
}

m["clc"] = {
	"Chilcotin",
	"Q28535",
	"ath-nor",
	otherNames = {"Tsilhqot'in", "Tsilhqut'in", "Tzilkotin"},
	scripts = Latn,
}

m["cld"] = {
	"Chaldean Neo-Aramaic",
	"Q33236",
	"sem-ara",
	scripts = {"Syrc"},
}

m["cle"] = {
	"Lealao Chinantec",
	"Q6509365",
	"omq-chi",
	scripts = Latn,
}

m["clh"] = {
	"Chilisso",
	"Q3250629",
	"inc-dar",
}

m["cli"] = {
	"Chakali",
	"Q35206",
	"nic-gur",
	scripts = Latn,
}

m["clj"] = {
	"Laitu Chin",
	"Q6474196",
	"tbq-kuk",
	otherNames = {"Laitu"},
}

m["clk"] = {
	"Idu",
	"Q56412",
	"sit-gsi",
	otherNames = {"Idu-Mishmi", "Idu Mishmi"},
	scripts = {"Tibt"},
}

m["cll"] = {
	"Chala",
	"Q35190",
	"nic-gur",
	scripts = Latn,
}

m["clm"] = {
	"Klallam",
	"Q33404",
	"sal",
	otherNames = {"Clallam", "S'Klallam"},
	scripts = Latn,
}

m["clo"] = {
	"Lowland Oaxaca Chontal",
	"Q2964450",
	"nai-tqn",
	otherNames = {"Oaxaca Chontal", "Oaxacan Chontal", "Chontal", "Huamelultec", "Huamelula Chontal", "Coastal Chontal"},
	scripts = Latn,
}

m["clt"] = {
	"Lautu Chin",
	"Q6502107",
	"tbq-kuk",
	otherNames = {"Lautu"},
}

m["clu"] = {
	"Caluyanun",
	"Q32964",
	"phi",
	scripts = Latn,
}

m["clw"] = {
	"Chulym",
	"Q33125",
	"trk-sib",
	otherNames = {"Chulim", "Chulym-Turkic", "Küerik", "Chulym Tatar", "Melets Tatar"},
	scripts = {"Latn", "Cyrl"},
}

m["cly"] = {
	"Eastern Highland Chatino",
	"Q12642078",
	"omq-cha",
	scripts = Latn,
}

m["cma"] = {
	"Maa",
	"Q12953680",
	"mkh-ban",
	scripts = Latn,
}

m["cme"] = {
	"Cerma",
	"Q35074",
	"nic-gur",
	scripts = Latn,
}

m["cmg"] = {
	"Classical Mongolian",
	"Q5128303",
	"xgn",
	scripts = {"Mong"},
	ancestors = {"xng"},
	translit_module = "mn-translit",
}

m["cmi"] = {
	"Emberá-Chamí",
	"Q3052042",
	"sai-chc",
	scripts = Latn,
}

m["cml"] = {
	"Campalagian",
	"Q5027893",
	"poz-ssw",
	scripts = Latn,
}

m["cmm"] = {
	"Michigamea",
	"Q12636809",
	"sio-msv",
	scripts = Latn,
}

m["cmn"] = {
	"Mandarin",
	"Q9192",
	"zhx",
	otherNames = {"Mandarin Chinese", "Putonghua", "Guoyu", "Huayu", "Guanhua", "Beifanghua", "Standard Chinese"},
	scripts = {"Hani", "Latn"},
	ancestors = {"ltc"},
	wikimedia_codes = {"zh"},
}

m["cmo"] = {
	"Central Mnong",
	"Q33369881",
	"mkh-ban",
}

m["cmr"] = {
	"Mro Chin",
	"Q16889978",
	"tbq-kuk",
	otherNames = {"Mro-Khimi Chin", "Mro", "Mro-Khimi"},
}

m["cms"] = {
	"Messapic",
	"Q36383",
	"ine",
	otherNames = {"Messapian"},
	scripts = Latn, -- when documented here; otherwise written in a native script
}

m["cmt"] = {
	"Camtho",
	"Q12628652",
	"crp",
	scripts = Latn,
	ancestors = {"fly", "zu"}
}

m["cna"] = {
	"Changthang",
	"Q12952322",
	"sit-lab",
	scripts = {"Tibt"},
}

m["cnb"] = {
	"Chinbon Chin",
	"Q12952327",
	"tbq-kuk",
	otherNames = {"Chinbon"},
}

m["cnc"] = {
	"Côông",
	"Q5202780",
	"tbq-lol",
}

m["cng"] = {
	"Northern Qiang",
	"Q56559",
	"sit-qia",
}

m["cnh"] = {
	"Lai",
	"Q3250286",
	"tbq-kuk",
	otherNames = {"Haka Chin", "Haka"},
}

m["cni"] = {
	"Asháninka",
	"Q3437230",
	"awd",
	otherNames = {"Ashaninka"},
	scripts = Latn,
}

m["cnk"] = {
	"Khumi Chin",
	"Q56308",
	"tbq-kuk",
	otherNames = {"Khumi", "Khami", "Nisay", "Nise", "Eastern Khumi", "Eastern Khumi Chin"},
}

m["cnl"] = {
	"Lalana Chinantec",
	"Q12953437",
	"omq-chi",
	scripts = Latn,
}

m["cno"] = {
	"Con",
	"Q3440883",
	"mkh-pal",
}

m["cns"] = {
	"Central Asmat",
	"Q11732048",
	"ngf",
	scripts = Latn,
}

m["cnt"] = {
	"Tepetotutla Chinantec",
	"Q5100113",
	"omq-chi",
	scripts = Latn,
}

m["cnu"] = {
	"Chenoua",
	"Q33276",
	"ber",
	otherNames = {"Shenwa"},
}

m["cnw"] = {
	"Ngawn Chin",
	"Q6583675",
	"tbq-kuk",
	otherNames = {"Ngawn"},
}

m["cnx"] = {
	"Middle Cornish",
	"Q12642603",
	"cel-bry",
	scripts = Latn,
	ancestors = {"oco"},
}

m["coa"] = {
	"Cocos Islands Malay",
	"Q3441699",
	"crp",
	otherNames = {"Cocos Malay"},
	scripts = Latn,
	ancestors = {"ms"},
}

m["cob"] = {
	"Chicomuceltec",
	"Q3307204",
	"myn",
	scripts = Latn,
}

m["coc"] = {
	"Cocopa",
	"Q33044",
	"nai-yuc",
	scripts = Latn,
}

m["cod"] = {
	"Cocama",
	"Q33317",
	"tup",
	otherNames = {"Kokama", "Kokáma", "Cocama-Cocamilla", "Kukama-Kukamiria", "Cocamilla", "Kokamíya", "Cocaima"},
	scripts = Latn,
}

m["coe"] = {
	"Koreguaje",
	"Q3198924",
	"sai-tuc",
	scripts = Latn,
}

m["cof"] = {
	"Tsafiki",
	"Q2567055",
	"sai-bar",
	otherNames = {"Colorado", "Tsáchila"},
	scripts = Latn,
}

m["cog"] = {
	"Chong",
	"Q3914630",
	"mkh-pea",
	scripts = {"Thai", "Khmr"},
	sort_key = {
		from = {"%p", "[็-๎]", "([เแโใไ])([ก-ฮ])"},
		to   = {"", "", "%2%1"}},
}

m["coh"] = {
	"Chichonyi-Chidzihana-Chikauma",
	"Q12629011",
	"bnt",
	scripts = Latn,
}

m["coj"] = {
	"Cochimi",
	"Q3915551",
	"nai-yuc",
	scripts = Latn,
}

m["cok"] = {
	"Santa Teresa Cora",
	"Q12641754",
	"azc",
	scripts = Latn,
}

m["col"] = {
	"Columbia-Wenatchi",
	"Q3324744",
	"sal",
	otherNames = {"Columbia-Wenatchee", "Columbia-Moses", "Nxaamxcin", "Wenatchi", "Wenatchee"},
	scripts = Latn,
}

m["com"] = {
	"Comanche",
	"Q32972",
	"azc-num",
	scripts = Latn,
}

m["con"] = {
	"Cofán",
	"Q2669254",
	"qfa-iso",
	otherNames = {"Cofan", "Kofan", "Kofane", "A'ingae", "Maku", "Macu"},
	scripts = Latn,
}

m["coo"] = {
	"Comox",
	"Q13583746",
	"sal",
	scripts = Latn,
}

m["cop"] = {
	"Coptic",
	"Q36155",
	"egx",
	otherNames = {"Akhmimic", "Assiutic", "Bashmuric", "Bohairic", "Faiyumic", "Fayyumic", "Lycopolitan", "Memphitic", "Mesokemic", "Oxyrhynchite", "Sahidic", "Subakhmimic", "Thebaic"}, -- Akhmimic etc are names of dialects which are currently, pending any suggestion that we should do otherwise, subsumed into this code
	scripts = {"Copt"},
	translit_module = "Copt-translit",
	ancestors = {"egx-dem"},
	entry_name = {
		from =	{ "ˋ", GRAVE, MACRON, },
		to =	{},
	},
	sort_key = "cop-sortkey",
}

m["coq"] = {
	"Coquille",
	"Q12953452",
	"ath-pco",
	scripts = Latn,
}

m["cot"] = {
	"Caquinte",
	"Q3915557",
	"awd",
	scripts = Latn,
}

m["cou"] = {
	"Wamey",
	"Q36935",
	"alv-ten",
	scripts = Latn,
}

m["cov"] = {
	"Cao Miao",
	"Q2936935",
	"qfa-tak",
}

m["cow"] = {
	"Cowlitz",
	"Q3001877",
	"sal",
	scripts = Latn,
}

m["cox"] = {
	"Nanti",
	"Q15342275",
	"awd",
	scripts = Latn,
}

m["coy"] = {
	"Coyaima",
	"Q56450",
	"sai-car",
	scripts = Latn,
}

m["coz"] = {
	"Chochotec",
	"Q2964262",
	"omq-pop",
	otherNames = {"Chocho", "Chocholtec"},
	scripts = Latn,
}

m["cpa"] = {
	"Palantla Chinantec",
	"Q5100112",
	"omq-chi",
	scripts = Latn,
}

m["cpb"] = {
	"Ucayali-Yurúa Ashéninka",
	"Q3501858",
	"awd",
	scripts = Latn,
}

m["cpc"] = {
	"Ajyíninka Apurucayali",
	"Q3327405",
	"awd",
	scripts = Latn,
}

m["cpg"] = {
	"Cappadocian Greek",
	"Q853414",
	"grk",
	otherNames = {"Cappadocian"},
	scripts = {"polytonic", "fa-Arab"},
	ancestors = {"grc"},
	translit_module = "grc-translit",
	sort_key = {  -- Keep this synchronized with el, grc, pnt
		from = {"[ᾳάᾴὰᾲᾶᾷἀᾀἄᾄἂᾂἆᾆἁᾁἅᾅἃᾃἇᾇ]", "[έὲἐἔἒἑἕἓ]", "[ῃήῄὴῂῆῇἠᾐἤᾔἢᾒἦᾖἡᾑἥᾕἣᾓἧᾗ]", "[ίὶῖἰἴἲἶἱἵἳἷϊΐῒῗ]", "[όὸὀὄὂὁὅὃ]", "[ύὺῦὐὔὒὖὑὕὓὗϋΰῢῧ]", "[ῳώῴὼῲῶῷὠᾠὤᾤὢᾢὦᾦὡᾡὥᾥὣᾣὧᾧ]", "ῥ", "ς"},
		to   = {"α"						, "ε"		 , "η"						, "ι"				, "ο"		 , "υ"				, "ω"						, "ρ", "σ"}} ,
}

m["cpi"] = {
	"Chinese Pidgin English",
	"Q3435078",
	"crp",
	scripts = Latn,
	ancestors = {"en"},
}

m["cpn"] = {
	"Cherepon",
	"Q35181",
	"alv-kwa",
	otherNames = {"Chiripon", "Chiripong", "Kyerepong", "Okere"},
	scripts = Latn,
}

m["cpo"] = {
	"Kpee",
	"Q6435722",
	"dmn",
	otherNames = {"Kpeego", "Kpeen", "Numu"},
}

m["cps"] = {
	"Capiznon",
	"Q2937525",
	"phi",
	scripts = Latn,
}

m["cpu"] = {
	"Pichis Ashéninka",
	"Q7190661",
	"awd",
	scripts = Latn,
}

m["cpx"] = {
	"Puxian",
	"Q56583",
	"zhx-min-hai",
	otherNames = {"Pu-Xian", "Puxian Min", "Pu-Xian Min", "Pu Xian", "Pu Xian Chinese", "Putian", "Xinghua", "Hinghwa"},
	scripts = {"Hani"},
}

m["cpy"] = {
	"South Ucayali Ashéninka",
	"Q3501868",
	"awd",
	scripts = Latn,
}

m["cqd"] = {
	"Chuanqiandian Cluster Miao",
	"Q3307894",
	"hmn",
	scripts = {"Latn", "Plrd"},
}

m["cra"] = {
	"Chara",
	"Q5073694",
	"omv",
	scripts = Latn,
}

m["crb"] = {
	"Island Carib",
	"Q3450735",
	"awd-taa",
	ancestors = {"awd-taa-pro"},
	scripts = Latn,
}

m["crc"] = {
	"Lonwolwol",
	"Q3259216",
	"poz-oce",
	scripts = Latn,
}

m["crd"] = {
	"Coeur d'Alene",
	"Q32915",
	"sal",
	scripts = Latn,
}

m["crf"] = {
	"Caramanta",
	"Q3504195",
	"sai-chc",
	scripts = Latn,
}

m["crg"] = {
	"Michif",
	"Q13315",
	"qfa-mix",
	ancestors = {"cr", "fr"},
	scripts = Latn,
}

m["crh"] = {
	"Crimean Tatar",
	"Q33357",
	"trk",
	scripts = {"Latn", "Cyrl"},
}

m["cri"] = {
	"Sãotomense",
	"Q36536",
	"crp",
	ancestors = {"pt"},
	otherNames = {"Forro", "São Tomense"},
	scripts = Latn,
}

m["crj"] = {
	"Southern East Cree",
	"Q12953464",
	"alg",
	scripts = {"Cans"},
	ancestors = {"cr"},
	translit_module = "cr-translit",
}

m["crk"] = {
	"Plains Cree",
	"Q56699",
	"alg",
	scripts = {"Cans", "Latn"},
	ancestors = {"cr"},
}

m["crl"] = {
	"Northern East Cree",
	"Q12642195",
	"alg",
	scripts = {"Cans"},
	ancestors = {"cr"},
	translit_module = "cr-translit",
}

m["crm"] = {
	"Moose Cree",
	"Q3446671",
	"alg",
	scripts = {"Cans"},
	ancestors = {"cr"},
}

m["crn"] = {
	"Cora",
	"Q12953454",
	"azc",
	scripts = Latn,
}

m["cro"] = {
	"Crow",
	"Q1207611",
	"sio-mor",
	otherNames = {"Apsalooke"},
	scripts = Latn,
}

m["crq"] = {
	"Iyo'wujwa Chorote",
	"Q3540927",
	"sai-mtc",
	scripts = Latn,
}

m["crr"] = {
	"Carolina Algonquian",
	"Q16113723",
	"alg-eas",
	scripts = Latn,
}

m["crs"] = {
	"Seychellois Creole",
	"Q34015",
	"crp",
	scripts = Latn,
	ancestors = {"fr"},
}

m["crt"] = {
	"Iyojwa'ja Chorote",
	"Q3504118",
	"sai-mtc",
	scripts = Latn,
}

m["crv"] = {
	"Chaura",
	"Q2605680",
	"aav",
	otherNames = {"Tutet"},
}

m["crw"] = {
	"Chrau",
	"Q5105629",
	"mkh-ban",
	scripts = Latn,
}

m["crx"] = {
	"Carrier",
	"Q12953431",
	"ath-nor",
	scripts = {"Latn", "Cans"},
}

m["cry"] = {
	"Cori",
	"Q35204",
	"nic-bco",
	scripts = Latn,
}

m["crz"] = {
	"Cruzeño",
	"Q2967636",
	"nai-chu",
	scripts = Latn,
}

m["csa"] = {
	"Chiltepec Chinantec",
	"Q12953435",
	"omq-chi",
	scripts = Latn,
}

m["csb"] = {
	"Kashubian",
	"Q33690",
	"zlw-lch",
	scripts = Latn,
	ancestors = {"zlw-pom"},
}

m["csc"] = {
	"Catalan Sign Language",
	"Q35768",
	"sgn",
	scripts = Latn, -- when documented
}

m["csd"] = {
	"Chiangmai Sign Language",
	"Q5095211",
	"sgn",
}

m["cse"] = {
	"Czech Sign Language",
	"Q5201809",
	"sgn",
	scripts = Latn, -- when documented
}

m["csf"] = {
	"Cuban Sign Language",
	"Q5192046",
	"sgn",
	scripts = Latn, -- when documented
}

m["csg"] = {
	"Chilean Sign Language",
	"Q3322112",
	"sgn",
	scripts = Latn, -- when documented
}

m["csh"] = {
	"Asho Chin",
	"Q12627282",
	"tbq-kuk",
	otherNames = {"Asho"},
}

m["csi"] = {
	"Coast Miwok",
	"Q2981109",
	"nai-you",
	scripts = Latn,
}

m["csj"] = {
	"Songlai Chin",
	"Q7561280",
	"tbq-kuk",
	otherNames = {"Songlai"},
}

m["csk"] = {
	"Jola-Kasa",
	"Q3446622",
	"alv-jol",
	scripts = Latn,
}

m["csl"] = {
	"Chinese Sign Language",
	"Q1094190",
	"sgn",
}

m["csm"] = {
	"Central Sierra Miwok",
	"Q2944443",
	"nai-you",
	scripts = Latn,
}

m["csn"] = {
	"Colombian Sign Language",
	"Q2748229",
	"sgn",
	scripts = Latn, -- when documented
}

m["cso"] = {
	"Sochiapam Chinantec",
	"Q7550388",
	"omq-chi",
	scripts = Latn,
}

m["csq"] = {
	"Croatian Sign Language",
	"Q3507506",
	"sgn",
}

m["csr"] = {
	"Costa Rican Sign Language",
	"Q5174901",
	"sgn",
	scripts = Latn, -- when documented
}

m["css"] = {
	"Southern Ohlone",
	"Q25559664",
	"nai-you",
	otherNames = {"Mutsun", "San Juan Bautista Costanoan", "Rumsien", "San Carlos Costanoan", "Carmeleno"},
	scripts = Latn,
}

m["cst"] = {
	"Northern Ohlone",
	"Q25559666",
	"nai-you",
	scripts = Latn,
}

m["csv"] = {
	"Sumtu Chin",
	"Q7638087",
	"tbq-kuk",
	otherNames = {"Sumtu"},
}

m["csw"] = {
	"Swampy Cree",
	"Q56696",
	"alg",
	scripts = {"Latn", "Cans"},
	ancestors = {"cr"},
}

m["csy"] = {
	"Siyin Chin",
	"Q7533375",
	"tbq-kuk",
	otherNames = {"Siyin"},
}

m["csz"] = {
	"Coos",
	"Q3126783",
	"nai-coo",
	otherNames = {"Hanis", "Hanis Coos"},
	scripts = Latn,
}

m["cta"] = {
	"Tataltepec Chatino",
	"Q7687853",
	"omq-cha",
	scripts = Latn,
}

m["ctc"] = {
	"Chetco-Tolowa",
	"Q12628946",
	"ath-pco",
	otherNames = {"Chetco", "Siletz Dee-ni", "Deeni", "Tututni", "Siletz"},
	scripts = Latn,
}

m["ctd"] = {
	"Tedim Chin",
	"Q56357",
	"tbq-kuk",
	otherNames = {"Tedim", "Tiddim", "Sukte"},
	scripts = {"Latn", "Pauc"},
}

m["cte"] = {
	"Tepinapa Chinantec",
	"Q12953443",
	"omq-chi",
	scripts = Latn,
}

m["ctg"] = {
	"Chittagonian",
	"Q33173",
	"inc",
	scripts = {"Beng"},
	ancestors = {"inc-mgd"},
}

m["cth"] = {
	"Thaiphum Chin",
	"Q16912048",
	"tbq-kuk",
	otherNames = {"Thaiphum"},
}

m["ctl"] = {
	"Tlacoatzintepec Chinantec",
	"Q12643657",
	"omq-chi",
	scripts = Latn,
}

m["ctm"] = {
	"Chitimacha",
	"Q1294227",
	"qfa-iso",
	scripts = Latn,
}

m["ctn"] = {
	"Chhintange",
	"Q32994",
	"sit-kie",
	scripts = Deva,
}

m["cto"] = {
	"Emberá-Catío",
	"Q3052039",
	"sai-chc",
	scripts = Latn,
}

m["ctp"] = {
	"Western Highland Chatino",
	"Q32861734",
	"omq-cha",
	scripts = Latn,
	sort_key = {
		from = {"á", "é", "í", "ó", "ú"},
		to   = {"a", "e", "i", "o", "u"}},
	entry_name = {
		from = {"[¹²³⁴⁵]"},
		to   = {}}
}

m["cts"] = {
	"Northern Catanduanes Bicolano",
	"Q7130477",
	"phi",
	scripts = Latn,
}

m["ctt"] = {
	"Wayanad Chetti",
	"Q7975850",
	"dra",
	otherNames = {"Chetti"},
	scripts = {"Taml"},
}

m["ctu"] = {
	"Chol",
	"Q35179",
	"myn",
	scripts = Latn,
}

m["ctz"] = {
	"Zacatepec Chatino",
	"Q8063754",
	"omq-cha",
	scripts = Latn,
}

m["cua"] = {
	"Cua",
	"Q3441115",
	"mkh-ban",
	scripts = Latn,
}

m["cub"] = {
	"Cubeo",
	"Q3006705",
	"sai-tuc",
	otherNames = {"Cuveo", "Kubéo", "Kubeo", "Kubéu", "Kubeu", "Cobewa", "Cobéua", "Cobeua", "Kubéwa", "Kubewa", "Kobéua", "Kobeua", "Kobewa", "Pamiwa"},
	scripts = Latn,
}

m["cuc"] = {
	"Usila Chinantec",
	"Q7901979",
	"omq-chi",
	scripts = Latn,
}

m["cug"] = {
	"Cung",
	"Q35194",
	"nic-bbe",
	otherNames = {"Chung", "Chungmboko", "Chung-Mboko", "Mboko"},
	scripts = Latn,
}

m["cuh"] = {
	"Chuka",
	"Q12952344",
	"bnt",
	scripts = Latn,
}

m["cui"] = {
	"Cuiba",
	"Q2980421",
	"sai-guh",
	scripts = Latn,
}

m["cuj"] = {
	"Mashco Piro",
	"Q3446596",
	"awd",
	scripts = Latn,
}

m["cuk"] = {
	"Kuna",
	"Q12953659",
	"cba",
	scripts = Latn,
}

m["cul"] = {
	"Culina",
	"Q2475442",
	"auf",
	otherNames = {"Kulina", "Kulína", "Kulyna", "Curina", "Corina", "Korina", "Culina-Madijá", "Madijá", "Madija", "Madiha", "Madihá"},
	scripts = Latn,
}

m["cuo"] = {
	"Cumanagoto",
	"Q5193784",
	"sai-cpc",
	otherNames = {"Cumanogota", "Cumana", "Cumaná", "Kumana", "Kumaná"},
	scripts = Latn,
}

m["cup"] = {
	"Cupeño",
	"Q143130",
	"azc-cup",
	scripts = Latn,
}

m["cuq"] = {
	"Cun",
	"Q2475478",
	"qfa-lic",
}

m["cur"] = {
	"Chhulung",
	"Q5116126",
	"sit-kie",
	scripts = Deva,
}

m["cut"] = {
	"Teutila Cuicatec",
	"Q12953453",
	"omq-mix",
	scripts = Latn,
}

m["cuu"] = {
	"Tai Ya",
	"Q3441122",
	"qfa-tak",
	scripts = Latn,
}

m["cuv"] = {
	"Cuvok",
	"Q3515056",
	"cdc-cbm",
	scripts = Latn,
}

m["cuw"] = {
	"Chukwa",
	"Q12629033",
	"sit-kic",
}

m["cux"] = {
	"Tepeuxila Cuicatec",
	"Q20527242",
	"omq-mix",
	scripts = Latn,
}

m["cuy"] = {
	"Cuitlatec",
	"Q2030998",
	"qfa-iso",
	otherNames = {"Cuitlateco"},
	scripts = Latn,
}

m["cvg"] = {
	"Chug",
	"Q47683644",
	"sit-khb",
}

m["cvn"] = {
	"Valle Nacional Chinantec",
	"Q12953442",
	"omq-chi",
	scripts = Latn,
}

m["cwa"] = {
	"Kabwa",
	"Q6344537",
	"bnt",
	scripts = Latn,
}

m["cwb"] = {
	"Maindo",
	"Q11002891",
	"bnt",
	scripts = Latn,
}

m["cwd"] = {
	"Woods Cree",
	"Q56305",
	"alg",
	scripts = {"Latn", "Cans"},
	ancestors = {"cr"},
}

m["cwe"] = {
	"Kwere",
	"Q779632",
	"bnt",
	scripts = Latn,
}

m["cwg"] = {
	"Chewong",
	"Q646718",
	"mkh-asl",
	otherNames = {"Cheq Wong", "Cheq-Wong", "Ceq Wong"},
	scripts = Latn,
}

m["cwt"] = {
	"Kuwaataay",
	"Q35699",
	"alv-jol",
	scripts = Latn,
}

m["cya"] = {
	"Nopala Chatino",
	"Q15616302",
	"omq-cha",
	scripts = Latn,
}

m["cyb"] = {
	"Cayubaba",
	"Q3183382",
	"qfa-iso",
	otherNames = {"Cayuvava", "Cayuwaba"},
	scripts = Latn,
}

m["cyo"] = {
	"Cuyunon",
	"Q33153",
	"phi",
	scripts = Latn,
}

m["czh"] = {
	"Huizhou",
	"Q56546",
	"zhx",
	otherNames = {"Huizhou Chinese"},
	scripts = {"Hani"}, -- ?
	ancestors = {"ltc"},
}

m["czk"] = {
	"Knaanic",
	"Q56384",
	"zlw",
	scripts = {"Hebr"},
	ancestors = {"zlw-ocs"},
}

m["czn"] = {
	"Zenzontepec Chatino",
	"Q603106",
	"omq-cha",
	scripts = Latn,
}

m["czo"] = {
	"Min Zhong",
	"Q56435",
	"zhx-min-shn",
	otherNames = {"Min Zhong Chinese"},
	scripts = {"Hani"},
}

m["czt"] = {
	"Zotung Chin",
	"Q8074599",
	"tbq-kuk",
	otherNames = {"Zotung"},
	scripts = Latn,
}

return m