<?xml version="1.0"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="en">
		<id>https://chaldeanwiki.com/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=Ian</id>
		<title>ChaldeanWiki - User contributions [en]</title>
		<link rel="self" type="application/atom+xml" href="https://chaldeanwiki.com/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=Ian"/>
		<link rel="alternate" type="text/html" href="https://chaldeanwiki.com/Special:Contributions/Ian"/>
		<updated>2026-04-29T18:15:35Z</updated>
		<subtitle>User contributions</subtitle>
		<generator>MediaWiki 1.24.0</generator>

	<entry>
		<id>https://chaldeanwiki.com/index.php?title=Template:Other_persons&amp;diff=3437</id>
		<title>Template:Other persons</title>
		<link rel="alternate" type="text/html" href="https://chaldeanwiki.com/index.php?title=Template:Other_persons&amp;diff=3437"/>
				<updated>2015-05-19T01:35:28Z</updated>
		
		<summary type="html">&lt;p&gt;Ian: 1 revision imported&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;#REDIRECT [[Template:Other people]]&lt;/div&gt;</summary>
		<author><name>Ian</name></author>	</entry>

	<entry>
		<id>https://chaldeanwiki.com/index.php?title=Template:EasternCatholic-bishop-stub&amp;diff=3431</id>
		<title>Template:EasternCatholic-bishop-stub</title>
		<link rel="alternate" type="text/html" href="https://chaldeanwiki.com/index.php?title=Template:EasternCatholic-bishop-stub&amp;diff=3431"/>
				<updated>2015-05-19T01:35:27Z</updated>
		
		<summary type="html">&lt;p&gt;Ian: 1 revision imported&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{asbox&lt;br /&gt;
| image     = Christ Pantocrator Deesis mosaic Hagia Sophia.jpg&lt;br /&gt;
| pix       = 35&lt;br /&gt;
| subject   = &lt;br /&gt;
| qualifier = about an Eastern Catholic bishop&lt;br /&gt;
| category  = Eastern Catholic bishop stubs&lt;br /&gt;
| tempsort  =  Eastern&lt;br /&gt;
| name      = Template:EasternCatholic-bishop-stub&lt;br /&gt;
}}&lt;/div&gt;</summary>
		<author><name>Ian</name></author>	</entry>

	<entry>
		<id>https://chaldeanwiki.com/index.php?title=Module:Buffer&amp;diff=3433</id>
		<title>Module:Buffer</title>
		<link rel="alternate" type="text/html" href="https://chaldeanwiki.com/index.php?title=Module:Buffer&amp;diff=3433"/>
				<updated>2015-05-19T01:35:27Z</updated>
		
		<summary type="html">&lt;p&gt;Ian: 1 revision imported&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;--[[=============================&lt;br /&gt;
This Module was written by Alexander Zhikun He, also known as, User:Codehydro on the English Wikipedia&lt;br /&gt;
&lt;br /&gt;
All methods were developed independently and any resemblance to other string buffer libraries would be coincidental.&lt;br /&gt;
Furthermore, many methods will not work when compiled by standard Lua libraries as they depend on behaviors unique to&lt;br /&gt;
the MediaMiki Scribunto mod, which, for example, has a getmetatable() method that always returns nil on non-tables.&lt;br /&gt;
https://www.mediawiki.org/wiki/Extension:Scribunto/Lua_reference_manual&lt;br /&gt;
&lt;br /&gt;
Source code comments may be thin at some points because they are intended to be supplemented by the documentation page:&lt;br /&gt;
https://en.wikipedia.org/wiki/Module:Buffer/doc&lt;br /&gt;
&lt;br /&gt;
Licensed under Creative Commons Attribution-ShareAlike 3.0 Unported License&lt;br /&gt;
https://en.wikipedia.org/wiki/Wikipedia:Text_of_Creative_Commons_Attribution-ShareAlike_3.0_Unported_License&lt;br /&gt;
&lt;br /&gt;
https://en.wikipedia.org/wiki/Module:Buffer&lt;br /&gt;
https://en.wikipedia.org/wiki/User:Codehydro&lt;br /&gt;
=============================--]]&lt;br /&gt;
local function Valid(v)--type validation&lt;br /&gt;
	if v and v~=true then--reject nil/boolean; faster than 2 type() comparisons&lt;br /&gt;
		local str = tostring(v)--functions not filtered since unlikely passed by accident (Scribunto does not have userdata/thread types)&lt;br /&gt;
		if str~=v and str=='table' then return rawget(v, 1) and table.concat(v) end--tostring(string-type) returns same ref; same refs compare faster than type()&lt;br /&gt;
		if str~='' then return str end--numbers are coerced to string per table.concat op; appending in string form saves ops on repeat concat&lt;br /&gt;
	end&lt;br /&gt;
end&lt;br /&gt;
local noOp, MBpairs = function()end do local iMap, vMap, oMap, pIter, pOther, pFast, Next--Map&lt;br /&gt;
	local function init()--init = noOp after first run&lt;br /&gt;
		function Next(t) return next, t end--slightly faster to do this than to use select()&lt;br /&gt;
		function pIter(t, k) k = (iMap[t] or MBpairs(t, true) and iMap[t])[not k and 1 or vMap[t][k]] return k, t[k] end--don't use rawget; accepting unmapped tables does not measurably affect performance.&lt;br /&gt;
		function pOther(t, k) k = (oMap[t] or MBpairs(t, true) and oMap[t])[nil==k and 1 or vMap[t][k]] return k, t[k] end--comparison to nil because false is a valid key&lt;br /&gt;
		function pFast(t, k) k = not k and 1 or k &amp;lt; (vMap[t] or #t) and k + 1 or nil return k, t[k] end--mapless iterator; almost as fast as native ipairs; slight performance penalty when length not cached&lt;br /&gt;
							   --k and k &amp;lt; (vMap[t] or #t) and k + 1 or not k and 1 or nil return k, t[k] end--mapless iterator; almost as fast as native ipairs; slight performance penalty when length not cached&lt;br /&gt;
		local mk = {__mode = 'k'}--use mode 'k'; found that mode 'kv' sometimes garbage collects maps mid-loop (may not error because iterators auto re-map, but that's expensive)&lt;br /&gt;
		init, iMap, vMap, oMap = noOp, setmetatable({}, mk), setmetatable({}, mk), setmetatable({}, mk)--iMap is numeric keys, oMap is non-numeric keys, and vMap points to next key&lt;br /&gt;
	end&lt;br /&gt;
	function MBpairs(t, ...)--pairs always iterates in order&lt;br /&gt;
		local iter, ex = ...&lt;br /&gt;
		iter = iter==init()--nil&lt;br /&gt;
		if iter and not oMap[t] and ex==nil and rawget(t, 1)~=nil and next(t, #t)==nil then--while possible to miss keys, more thorough check would negate the benefit of pFast&lt;br /&gt;
			vMap[t] = #t return pFast, t, nil&lt;br /&gt;
		elseif ... or not vMap[t] or select('#', ...)~=1 then&lt;br /&gt;
			local ti, tn, to, n = {}, {}, {}, #t--reduces table lookups&lt;br /&gt;
			iMap[t], vMap[t], oMap[t] = ti, tn, to&lt;br /&gt;
			for k = 1, n do ti[k], tn[k] = k, k + 1 end--stage one avoids number type checking op in stage two for most numeric keys&lt;br /&gt;
			for k in (ex or Next)(t) do&lt;br /&gt;
				if not tn[k] then table.insert(tonumber(k)~=k and to or ti, k) end&lt;br /&gt;
			end&lt;br /&gt;
			if #ti~=n then&lt;br /&gt;
				table.sort(ti)&lt;br /&gt;
				for k = 1, #ti do tn[ti[k]] = k + 1 end--somewhat wasteful, but trying to avoid overwriting can be even more expensive&lt;br /&gt;
			end&lt;br /&gt;
			for k = 1, #to do tn[to[k]] = k + 1 end&lt;br /&gt;
		end&lt;br /&gt;
		return iter and pIter or oMap[t] and pOther or noOp, t--noOp for mapless&lt;br /&gt;
	end&lt;br /&gt;
end&lt;br /&gt;
local parent, rawkey, spec do--new scope for variables not reused outside (reduces number of var names that need to checked outside of scope)&lt;br /&gt;
	local mkv = {__mode='kv', __call=function(t,k,v)t[k]=v return k end}--shared meta for Buffer parent property, raw mode, and specialized functions&lt;br /&gt;
	parent, rawkey, spec = setmetatable({}, mkv), setmetatable({}, mkv), setmetatable({}, mkv)--shared meta less memory&lt;br /&gt;
end&lt;br /&gt;
&lt;br /&gt;
local MB, MBi, MBmix, buffHTML, gfuncs, noCache, Element do--minimize number of locals per scope to reduce time spent sifting through irrelevant variable names&lt;br /&gt;
	local _stream do local stream--keep stream near top of scope&lt;br /&gt;
		local function init(f)--init = noOp after first run&lt;br /&gt;
			local function each(self, ...)&lt;br /&gt;
				for k = 1, select('#', ...) do&lt;br /&gt;
					k = Valid(select(k, ...))--slightly faster than table.insert(self, (Valid(select(k, ...))))&lt;br /&gt;
					if k then table.insert(self, k) end&lt;br /&gt;
				end&lt;br /&gt;
				return self&lt;br /&gt;
			end&lt;br /&gt;
			init, stream, _stream = noOp, {&lt;br /&gt;
				__call = function(t, v) v = v and Valid(v) return v and table.insert(t, v) or t end,--last_concat cleared before entering stream mode&lt;br /&gt;
				__index = function(t, i) return i=='each' and each or MB.__index(t, i) and setmetatable(t, MB)[i] end,--no table look up minimizes resources to retrieve the only stream function&lt;br /&gt;
				__tostring = function(t) return setmetatable(t, MB)() end&lt;br /&gt;
			} for k, v in next, MB do stream[k] = stream[k] or v end&lt;br /&gt;
			setmetatable(stream, getmetatable(MB))&lt;br /&gt;
		end&lt;br /&gt;
		function _stream(self, ...) self.last_concat = init() return setmetatable(self, stream):each(...) end&lt;br /&gt;
	end&lt;br /&gt;
	local function isMBfunc(Buffer, s, ...)--helper for :getParent()-like methods (including getBuffer which does not return a parent)&lt;br /&gt;
		return s and (select('#', ...)==0 and--eventually should figure out to make this work for :getHTML which is very similar&lt;br /&gt;
				(not rawkey[s] and tostring(s):match'^_.*' and MB.__index(Buffer, s) and MB.__index(Buffer, s)(Buffer) or MBmix(Buffer, s))--unprefixed function names append as a string&lt;br /&gt;
				or assert(MB.__index(Buffer, s), ('&amp;quot; %s &amp;quot; does not match any available Module:Buffer function'):format(s))(Buffer, ...)--getParent is a one-way trip so one-time assert not expensive&lt;br /&gt;
			) or Buffer&lt;br /&gt;
	end&lt;br /&gt;
	local function MBselect(n, ...)--helper for :_out and :_str&lt;br /&gt;
		local n, seps = n - 1, {select(2, ...)}&lt;br /&gt;
		if type(seps[n])=='table' then &lt;br /&gt;
			if buffHTML and rawget(seps[n], buffHTML) then return ... end&lt;br /&gt;
			setmetatable(seps, {__index = setmetatable(seps[n], {__index = function(t) return rawget(t, 1) end})})[n] = nil&lt;br /&gt;
		end&lt;br /&gt;
		return ..., seps&lt;br /&gt;
	end&lt;br /&gt;
	local _inHTML do local lastBuffer, lastHTML&lt;br /&gt;
		local function init(...)--init replaced and new version called on return&lt;br /&gt;
			local create, mwFunc = mw.html.create do&lt;br /&gt;
				local mwHTMLmeta = getmetatable(create())&lt;br /&gt;
				buffHTML, mwFunc, _inHTML = setmetatable(mw.clone(mwHTMLmeta), getmetatable(MB)), mwHTMLmeta.__index--buffHTML declared near top of module; remove _inHTML from outer scope&lt;br /&gt;
				function init(nodes, ...)&lt;br /&gt;
					local name, args, tag = select(... and type(...)=='table' and 1 or 2, nil, ...)&lt;br /&gt;
					tag = create(Valid(name), args)&lt;br /&gt;
					if nodes then table.insert(nodes, tag.parent and tag or rawset(tag, 'parent', parent[nodes])) end&lt;br /&gt;
					if args then&lt;br /&gt;
						local a, b = args.selfClosing, args.parent&lt;br /&gt;
						args.selfClosing, args.parent = nil&lt;br /&gt;
						if next(args) then Element._add(parent(tag.nodes, tag), args) end&lt;br /&gt;
						args.selfClosing, args.parent = a, b--in case args is reused&lt;br /&gt;
					end&lt;br /&gt;
					return tag&lt;br /&gt;
				end&lt;br /&gt;
				for k, v in next, {[mw] = mwHTMLmeta,&lt;br /&gt;
					__call = function(h, v) return MBmix(spec[h.nodes] and h.nodes or spec(setmetatable(parent(h.nodes, h), MB), Element), v) end,&lt;br /&gt;
					__concat = false,--false means take from MB&lt;br /&gt;
					__eq = false&lt;br /&gt;
				} do buffHTML[k] = v or MB[k] end&lt;br /&gt;
			end&lt;br /&gt;
			local nonSelf, BHi = {tag=true,done=true,allDone=true}, buffHTML.__index do local g&lt;br /&gt;
				g = {__index = function(t, i)&lt;br /&gt;
					if gfuncs and gfuncs[i] then g.__index, gfuncs = gfuncs return g.__index[i] end&lt;br /&gt;
				end}&lt;br /&gt;
				setmetatable(nonSelf, g)&lt;br /&gt;
				setmetatable(BHi, g)&lt;br /&gt;
			end&lt;br /&gt;
			for k in next, nonSelf do--any HTML objects returned by these funcs will be granted Module:Buffer enhancements&lt;br /&gt;
				local func = mwFunc[k]&lt;br /&gt;
				BHi[k] = function(t, ...) local HTML = func(t, ...) return parent[HTML] and HTML or setmetatable(parent(HTML, t), buffHTML) end&lt;br /&gt;
			end&lt;br /&gt;
			do local function joinNode(HTML, sep)&lt;br /&gt;
					local nodes, join = HTML.nodes&lt;br /&gt;
					if noCache and rawkey[sep] or Valid(sep) then join, HTML.nodes = tostring(rawset(HTML, 'nodes', {MB.__call(nodes, sep)})), nodes end&lt;br /&gt;
					return join or tostring(HTML)&lt;br /&gt;
				end&lt;br /&gt;
				for k, v in next, {&lt;br /&gt;
					getParent = function(HTML, ...) lastHTML = HTML return MBi.getParent(HTML:allDone(), ...) end,--return to Buffer that created the HTML tree&lt;br /&gt;
					getBuffer = function(HTML, ...) lastHTML = HTML return isMBfunc(lastBuffer, ...) end,--return to last used&lt;br /&gt;
					killParent = function(HTML, ...) MBi.killParent(HTML:allDone(), ...) return HTML end,&lt;br /&gt;
					_out = function(HTML, ...)&lt;br /&gt;
						if ...==0 then MBi._out(HTML.nodes, ...) return HTML end&lt;br /&gt;
						lastHTML, HTML = HTML, HTML:allDone()&lt;br /&gt;
						local n, ops, seps = select('#', ...)&lt;br /&gt;
						if n &amp;gt; 1 then&lt;br /&gt;
							local ops, seps = MBselect(n, ...)&lt;br /&gt;
							return parent[HTML]:_in(joinNode(HTML, rawget(seps, 0))):_out(ops, rawset(seps, buffHTML, true))&lt;br /&gt;
						end&lt;br /&gt;
						return parent[HTML]:_(joinNode(HTML, ...))&lt;br /&gt;
					end,&lt;br /&gt;
					_str = function(HTML, ...)--does not set lastHTML&lt;br /&gt;
						if ...==0 then return joinNode(HTML, select(2, ...)) end--passing 0 strings without calling allDone()&lt;br /&gt;
						local HTML, n = HTML:allDone(), select('#', ...)&lt;br /&gt;
						if n &amp;gt; 1 then&lt;br /&gt;
							local ops, seps = MBselect(n, ...)&lt;br /&gt;
							return parent[HTML]:_in(joinNode(HTML, rawget(seps, 1))):_str(ops, rawset(seps, buffHTML, true))&lt;br /&gt;
						end&lt;br /&gt;
						return joinNode(HTML, ...)&lt;br /&gt;
					end,&lt;br /&gt;
					_parent = function(HTML, ...) table.insert(HTML.nodes, parent[HTML:allDone()]:_str(...)) return HTML end&lt;br /&gt;
				} do BHi[k] = v end&lt;br /&gt;
			end&lt;br /&gt;
			do local htmlArg, skip, outFuncs = {parent=true,selfClosing=true,tagName=true}, {}&lt;br /&gt;
				do local out local function func(nodes, ...) return out(parent[nodes], ...) end&lt;br /&gt;
					outFuncs = setmetatable({&lt;br /&gt;
						tag = function(nodes, ...) return parent(setmetatable(init(nodes, ...), buffHTML), parent[nodes]) end,&lt;br /&gt;
						done = function(b, ops)&lt;br /&gt;
							b = parent[b] &lt;br /&gt;
							while b.parent and ops~=0 do b, ops = b.parent, ops and ops - 1 or 0 end&lt;br /&gt;
							return b&lt;br /&gt;
						end&lt;br /&gt;
					}, {__index = function(nodes, i)&lt;br /&gt;
						if rawget(BHi, i) then out = BHi[i] return func end--rawget to exclude globals&lt;br /&gt;
					end})&lt;br /&gt;
				end&lt;br /&gt;
				Element = {&lt;br /&gt;
					_add = function(nodes, t)&lt;br /&gt;
						for k, v in MBpairs(t), t, skip[t] do (v~=true and MBmix or noOp)(nodes, v) end&lt;br /&gt;
						local HTML = parent[nodes] for k, v in MBpairs(t, false) do&lt;br /&gt;
							if htmlArg[k] then HTML[k] = v&lt;br /&gt;
							elseif v and v~=true then&lt;br /&gt;
								if nonSelf[k] then&lt;br /&gt;
									if k=='tag' then&lt;br /&gt;
										if type(v)=='table' then&lt;br /&gt;
											skip[v], k = 1, rawset(create(Valid(v[1])), 'parent', HTML)&lt;br /&gt;
											Element._add(spec(parent(k.nodes, k, table.insert(nodes, k)), Element), v)&lt;br /&gt;
											if k.selfClosing then k.nodes = nil else spec[k.nodes], parent[k.nodes] = nil end--free memory/reduce clutter; parent ref will auto-unset when k.nodes is nil&lt;br /&gt;
											if not k.tagName then k.styles, k.attributes = nil end&lt;br /&gt;
										else table.insert(nodes, create(v)) end&lt;br /&gt;
									elseif mwFunc[k] then&lt;br /&gt;
										if k=='done' and tonumber(v)~=v and v[1] and tonumber(v[1])==v[1] then skip[v] = 1 end&lt;br /&gt;
										MBmix(outFuncs[k](nodes, skip[v] and v[1]).nodes, v)&lt;br /&gt;
									elseif v[1] or v[2] then&lt;br /&gt;
										k = MBi[k](nodes, unpack(v, 1, rawset(skip, v, k=='_B' and 1 or 2)[v]))&lt;br /&gt;
										Element._add(getmetatable(k) and rawget(k, 'nodes') or k, v)--if k is not a table, then v should not contain any extra keys or this may error.&lt;br /&gt;
									else MBi[k](nodes, v) end--k probably == '_G' or '_R'&lt;br /&gt;
								elseif mwFunc[k] then&lt;br /&gt;
									if type(v)~='table' or rawget(v, 'nodes') then mwFunc[k](HTML, v)&lt;br /&gt;
									else&lt;br /&gt;
										local css = k=='css'&lt;br /&gt;
										for x, y in MBpairs(v, true) do (y and y~=true and mwFunc[k] or noOp)(HTML, css and x:gsub('_', '-') or x, y) end--iterate non-numbers first&lt;br /&gt;
										for _, y in MBpairs(v, nil) do (y and y~=true and mwFunc[k] or noOp)(HTML, y) end--don't bother with gsub since text must be quoted anyhow&lt;br /&gt;
									end&lt;br /&gt;
								elseif rawget(Element, k) or rawget(MBi, k) then&lt;br /&gt;
									if tonumber(v)==v or v[1]==nil or getmetatable(v) then (Element[k] or MBi[k])(nodes, v)--v is probably string-able object, or a table to be handled by :_all&lt;br /&gt;
									else (Element[k] or MBi[k])(nodes, unpack(v, 1, table.maxn(v))) end--v is definately a table&lt;br /&gt;
								else mwFunc.css(HTML, k:gsub('_', '-', 1), tostring(v)) end--oddly enough, :_add clocked its fastest runtime after adding auto-gsub as a feature&lt;br /&gt;
								skip[v] = nil&lt;br /&gt;
							end&lt;br /&gt;
						end&lt;br /&gt;
						return nodes&lt;br /&gt;
					end&lt;br /&gt;
				}&lt;br /&gt;
				local tempMeta = {mode='v', copy={styles=true,attributes=true}}&lt;br /&gt;
				function tempMeta.__index(t, i) return tempMeta.copy[i] and rawset(t, i, MBi._cc(false, 0, t.orig[i]))[i] or t.orig[i] end&lt;br /&gt;
				rawkey[setmetatable(Element, {__index = outFuncs, __concat=function(Element, v) return setmetatable({nodes=spec({}, Element),orig=parent[v]}, tempMeta) end})] = math.huge&lt;br /&gt;
			end&lt;br /&gt;
			function MBi:getHTML(...)&lt;br /&gt;
				lastBuffer = self&lt;br /&gt;
				if ... then&lt;br /&gt;
					if select('#', ...)==1 then return not rawkey[s] and tostring(...):match'^_' and BHi[...] and BHi[...](lastHTML) or lastHTML(...)&lt;br /&gt;
					else return assert(BHi[...], ('&amp;quot; %s &amp;quot; does not match any mw.html or Buffer-mw.html function'):format(tostring(...)))(lastHTML, select(2, ...)) end&lt;br /&gt;
				end&lt;br /&gt;
				return lastHTML&lt;br /&gt;
			end&lt;br /&gt;
			function MBi:_html(...) return MBi._(self, lastHTML, select(spec[self]==Element and select('#', ...)==0 and 1 or 2, true, ...)) end&lt;br /&gt;
			return init(...)&lt;br /&gt;
		end&lt;br /&gt;
		function _inHTML(self, ...)&lt;br /&gt;
			local HTML = init(nil, ...)&lt;br /&gt;
			if HTML.selfClosing and spec[self]==Element then self.last_concat = table.insert(self, HTML) return self end&lt;br /&gt;
			lastBuffer, lastHTML = self, setmetatable(parent(HTML, self), buffHTML)--set after 'args' table processed by :_add&lt;br /&gt;
			return HTML&lt;br /&gt;
		end&lt;br /&gt;
	end&lt;br /&gt;
	local _var, unbuild do local prev, rebuild&lt;br /&gt;
		local function init(...)--init replaced before return&lt;br /&gt;
			local function pick(b, v) return b and table.insert(b, v) or v end&lt;br /&gt;
			local function c(a, num) return rawset(a.a or a, 0, a[0] and a[0] + a.c or num and a[1] or a[1]:byte())[0] end&lt;br /&gt;
			local same, build, alt = {__tostring = function(a, b) return a.a[0] and pick(b, a.a.string and string.char(a.a[0]) or a.a.table and a.a[1][a.a[0]] or a.a[0]) end}, {&lt;br /&gt;
				__index = {c = 1},&lt;br /&gt;
				__tostring = function(t) return t:_build() end,&lt;br /&gt;
				table = function(a, b) local i = next(a[1], a[0]) or a[0]==#a[1] and next(a[1]) return pick(b, rawset(a.a or a, 0, i)[1][i]) end,--change rate (a.c) ignored since users control the table's contents&lt;br /&gt;
				number = function(a, b) return pick(b, c(a, true)) end,&lt;br /&gt;
				string = function(a, b) return pick(b, string.char(c(a))) end&lt;br /&gt;
			}, {__index = function(a, i) return a.a[i] end, __tostring = function(a, b) return (rawget(a, 0) and a[0]==tostring(a[0]) and rawset(a, 0, a[0]:byte()) or a).a._build(a, b) end}&lt;br /&gt;
			local function shift(t, c)&lt;br /&gt;
				t[0] = t[0] and t[0] + c or t:_build() and t[0] - t.c + c&lt;br /&gt;
				if t.table then t[0] = (t[0] - 1) % #t[1] + 1 end&lt;br /&gt;
			end&lt;br /&gt;
			function rebuild(...)&lt;br /&gt;
				local v, c = ...&lt;br /&gt;
				if v or select('#', ...)==0 then&lt;br /&gt;
					if v and not c then return prev end&lt;br /&gt;
					local meta, c = select(v and 1 or 3, alt, c, same, 0)&lt;br /&gt;
					return setmetatable({a = prev, _build = meta.__tostring, c = c}, meta)&lt;br /&gt;
				elseif v==nil then--no-op&lt;br /&gt;
				elseif c then shift(prev, c)--v == false&lt;br /&gt;
				else prev:_build() end&lt;br /&gt;
			end&lt;br /&gt;
			init, noCache = function(v, c) prev = setmetatable({v, c = c, _build = build[type(v)] or v, [type(v)] = true, alt = {}}, build) return prev end, true&lt;br /&gt;
			return init(...)&lt;br /&gt;
		end&lt;br /&gt;
		function unbuild(sep)&lt;br /&gt;
			for k, v in MBpairs(sep, nil) do&lt;br /&gt;
				k = getmetatable(v) if k and (k==build or k==alt) then shift(v.a or v, -v.c) end&lt;br /&gt;
			end&lt;br /&gt;
		end&lt;br /&gt;
		function _var(self, ...)&lt;br /&gt;
			local obj if ... and ...~=true then obj = init(...)&lt;br /&gt;
			elseif prev then&lt;br /&gt;
				if ...~=false then obj = rebuild(...)&lt;br /&gt;
				else rebuild(...) end&lt;br /&gt;
			end&lt;br /&gt;
			return obj and MBi._(self, obj, nil, true) or self&lt;br /&gt;
		end&lt;br /&gt;
	end&lt;br /&gt;
	local lib; MBi = setmetatable({stream = _stream,&lt;br /&gt;
		_inHTML = _inHTML,&lt;br /&gt;
		_var = _var,&lt;br /&gt;
		_ = function(self, v, ...)&lt;br /&gt;
			local at, raw = select(select('#', ...)==1 and ...==true and 1 or 2, nil, ...)&lt;br /&gt;
			if raw then rawkey[self] = math.huge else v = Valid(v) end&lt;br /&gt;
			if v or raw then&lt;br /&gt;
				if at or rawkey[self] then raw = #self end--if length increases by more than one after table.insert, then set rawkey[self] = math.huge; rawkey[self] may be equal to a previous 'at'&lt;br /&gt;
				at, self.last_concat = at and (tonumber(at)~=at and raw + at or at)&lt;br /&gt;
				table.insert(self, select(at and 1 or 2, at, v))&lt;br /&gt;
				if at and at &amp;lt; 0 or raw and #self - raw &amp;gt; 1 then rawkey[self] = math.huge elseif at and #self==raw then rawkey[self] = rawkey[self] and math.max(rawkey[self], at) or at end&lt;br /&gt;
			end--above line looks bizarre because one table.insert op may make length jump from 0 to 8: local wtf={[2]=2,[4]=4,[8]=8}mw.log(#wtf,table.insert(wtf,1),#wtf)&lt;br /&gt;
			return self&lt;br /&gt;
		end,&lt;br /&gt;
		_nil = function(self, at, ...)&lt;br /&gt;
			if ...~=true and ...~=false then--faster than type(...) ~= 'boolean'&lt;br /&gt;
				if not at or at=='0' then&lt;br /&gt;
					self[#self] = ... if ... then rawkey[self] = math.huge end&lt;br /&gt;
				else&lt;br /&gt;
					local n, v = tonumber(at), ...&lt;br /&gt;
					if n~=at then &lt;br /&gt;
						if n then n = #self + at&lt;br /&gt;
						elseif at~=true and select('#', ...)==0 then v, n = at, #self end&lt;br /&gt;
					end&lt;br /&gt;
					if n then &lt;br /&gt;
						if v==nil and n &amp;gt; 0 then table.remove(self, n)&lt;br /&gt;
						else self[math.floor(n)], rawkey[self] = v, math.huge end--floor position for consistency with Table library&lt;br /&gt;
					end&lt;br /&gt;
				end&lt;br /&gt;
				self.last_concat = nil&lt;br /&gt;
			end&lt;br /&gt;
			return self&lt;br /&gt;
		end,&lt;br /&gt;
		_all = function(self, t, valKey)&lt;br /&gt;
			for k, v in MBpairs(t) do MBmix(self, v, valKey) end&lt;br /&gt;
			for k, v in valKey and MBpairs(t, false) or noOp, t do&lt;br /&gt;
				if tonumber(v) then MBi._(self, k, v)--self not always a buffer&lt;br /&gt;
				elseif rawget(MBi, k) and v and v~=true then&lt;br /&gt;
					if v[1]==nil or getmetatable(v) then MBi[k](self, v)&lt;br /&gt;
					else MBi[k](self, unpack(v, 1, table.maxn(v))) end&lt;br /&gt;
				end&lt;br /&gt;
			end&lt;br /&gt;
			return self&lt;br /&gt;
		end,&lt;br /&gt;
		_str = function(t, ...)&lt;br /&gt;
			local n = select('#', ...)&lt;br /&gt;
			if n &amp;gt; 1 then&lt;br /&gt;
				local k, ops, seps, r = 2, MBselect(n, ...)&lt;br /&gt;
				r = MB(t(seps[1]))&lt;br /&gt;
				while parent[t] and ops &amp;gt; 1 and r:_(parent[t](seps[k]), 1) do t, k, ops = parent[t], k + 1, ops - 1 end&lt;br /&gt;
				return table.concat(r, seps[k] or nil)&lt;br /&gt;
			end&lt;br /&gt;
			return MB.__call(t, ...)&lt;br /&gt;
		end,&lt;br /&gt;
		_in = function (self, ...) return parent(MB(...), self) end,&lt;br /&gt;
		_out = function(t, ...)&lt;br /&gt;
			if ...==0 then return parent(t, parent[t], MBi._cc(t, t, MB.__call(t, (select(2, ...))), getmetatable(t))) end--love how :_cc needed nothing new to implement this *self pat on back*&lt;br /&gt;
			local n = select('#', ...)&lt;br /&gt;
			if n &amp;gt; 1 then&lt;br /&gt;
				local k, ops, seps = 1, MBselect(n, ...)&lt;br /&gt;
				while parent[t] and ops &amp;gt; 0 do t, k, ops = parent[t]:_(t(seps[k])), k + 1, ops - 1 end&lt;br /&gt;
			elseif parent[t] then return parent[t]:_(t(...)) end&lt;br /&gt;
			return t&lt;br /&gt;
		end,&lt;br /&gt;
		_cc = function(self, clear, copy, meta)&lt;br /&gt;
			if clear then&lt;br /&gt;
				if rawequal(clear, copy) then return self, spec[MBi._cc] and setmetatable(spec[MBi._cc], MB)--rawequal to avoid re-string via __eq in case both are different Buffer objects&lt;br /&gt;
				elseif copy==true then copy = self end&lt;br /&gt;
				if clear~=0 then&lt;br /&gt;
					assert(type(clear)=='table', debug.traceback('Buffer:_cc can only &amp;quot;clear&amp;quot; tables. Did you forget to call with a colon?', 2))--errors can be hard to trace without this&lt;br /&gt;
					for k in self and next or noOp, clear do rawset(clear, k, nil) end&lt;br /&gt;
				else return MBi._cc(false, {unpack(copy)}, copy) end--copy length w/o empty strings; recursion to avoid self = false causing garbage collection (non-weak child may exist)&lt;br /&gt;
				if self==false or copy and type(copy)=='table' then--self==false means copy is a table (saves a type op for recursive calls)&lt;br /&gt;
					meta = meta or getmetatable(copy)&lt;br /&gt;
					if self and #copy &amp;gt; 1 then--preserves length with empty strings; developed from studying http://www.lua.org/source/5.1/ltable.c.html		&lt;br /&gt;
						local n, null, i, e = #copy, {}, math.ldexp(2, select(2, math.frexp(#copy)) - 2)&lt;br /&gt;
						e, spec[MBi._cc], parent[null] = i - 1, null, clear&lt;br /&gt;
						for k = 1, e do table.insert(clear, false) end&lt;br /&gt;
						while i&amp;lt;=n do table.insert(clear, i, '') i, null[i] = i + math.ldexp(2, select(2, math.frexp(n - i)) - 2), '' end&lt;br /&gt;
						for k = 1, e do rawset(clear, k, nil) end&lt;br /&gt;
					end&lt;br /&gt;
					for k, v in next, copy do rawset(clear, k, type(v)=='table' and MBi._cc(false, 0, v) or v) end&lt;br /&gt;
				elseif copy then rawset(clear, 1, (Valid(copy))) end&lt;br /&gt;
				rawkey[setmetatable(clear, meta)], parent[clear] = rawkey[copy], parent[copy]&lt;br /&gt;
			end&lt;br /&gt;
			return self and rawset(self, 'last_concat', nil) or clear&lt;br /&gt;
		end,&lt;br /&gt;
		_parent = function(self, ...) return parent[self] and MBi._(self, parent[self]:_str(...)) or self end,&lt;br /&gt;
		getParent = function(self, ...) return isMBfunc(parent[self] or parent[parent(self, setmetatable({}, MB))], ...) end,&lt;br /&gt;
		killParent = function(self, ...) return parent[self] and isMBfunc(parent[self], ...) and parent(self) or self end,&lt;br /&gt;
		_build = function(self, t) table.insert(t, self()) end,--for compatibility with mw.html:node()&lt;br /&gt;
		last_concat = false--prevent library check&lt;br /&gt;
	}, {__index = function(t, i)--import string, mw.text, and mw.ustring libraries on an as-needed basis&lt;br /&gt;
		local func = string[i] or mw.text[i] or mw.ustring[i] or type(i)=='string' and mw.ustring[i:match'^u(.+)'] if func then&lt;br /&gt;
			lib	= lib or function (s, f, ...)&lt;br /&gt;
				if parent[s] and next(s)==nil then return s:_((f(tostring(parent[Element and (spec[s]==Element and s:allDone() or spec[parent[s]]==Element and parent[s]) or s]), ...))) end&lt;br /&gt;
				return f(tostring(s), ...)--not using ternary/logical operators here to allow multiple return values&lt;br /&gt;
			end&lt;br /&gt;
			return rawset(t, i, i:match'^u?gsub' and function(self, p, r, ...)return lib(self, func, p, r or '', ...)end--Why are ugsub/gsub special? because empty strings are against my religion!&lt;br /&gt;
				or function(self, ...)return lib(self, func, ...)end)[i]&lt;br /&gt;
		end&lt;br /&gt;
	end})&lt;br /&gt;
end&lt;br /&gt;
&lt;br /&gt;
function MBmix(t, v, ...) return v and ((type(v)~='table' or getmetatable(v)) and MBi._(t, v) or (select('#', ...)==0 and spec[t] and spec[t]._add or MBi._all)(t, v, ...)) or t end--:_all always passes two args&lt;br /&gt;
&lt;br /&gt;
local _G, new_G = _G--localize _G for console testing (console _G ~= module _G)&lt;br /&gt;
return setmetatable({__index = function(t, i) return spec[t] and spec[t][i] or MBi[i] end,&lt;br /&gt;
	__call = function(t, ...)&lt;br /&gt;
		local rawsep, sep, i, j, raw = noCache and rawkey[...] and ..., ...&lt;br /&gt;
		if i or j or rawsep or Valid(sep) then&lt;br /&gt;
			raw, sep, i, j = rawkey[spec[t]] or rawkey[t], rawsep or Valid(sep), i and (i~=tonumber(i) and i + #t or i), j and (j~=tonumber(j) and j + #t or j)&lt;br /&gt;
			if rawsep or raw and (raw&amp;gt;=(j or #t) or i &amp;lt; 1) then&lt;br /&gt;
				raw, i, j = {}, i and math.floor(i), j and math.floor(j)--floor for consistency with table.concat(t, sep, i, j), which ignores decimals&lt;br /&gt;
				raw.lc, t.last_concat = t.last_concat--temporarily unset last_concat to prevent disqualification from mapless iteration&lt;br /&gt;
				for k, v in MBpairs(t) do&lt;br /&gt;
					if raw[1] or not i or k&amp;gt;=i then if j and k &amp;gt; j then break end&lt;br /&gt;
						if raw.s then raw.s = table.insert(raw, tostring(sep)) end--if sep contains v and v is a Buffer-variable, sep must be strung before v&lt;br /&gt;
						k = Valid(v) if k then&lt;br /&gt;
							raw.s = rawsep or sep and raw[1] and table.insert(raw, sep)&lt;br /&gt;
							table.insert(raw, k)&lt;br /&gt;
						end&lt;br /&gt;
					end&lt;br /&gt;
				end&lt;br /&gt;
				if rawsep and not raw.s then raw[#raw] = unbuild(sep) end--unbuild rawsep if final index in t was invalid&lt;br /&gt;
				t.last_concat = raw.lc return table.concat(raw)&lt;br /&gt;
			end&lt;br /&gt;
			return table.concat(t, sep, i and math.max(i, 1), j and math.min(j, #t))&lt;br /&gt;
		end&lt;br /&gt;
		return MB.__tostring(t)&lt;br /&gt;
	end,&lt;br /&gt;
	__tostring = function(t)&lt;br /&gt;
		if t.last_concat then return t.last_concat end&lt;br /&gt;
		local r = rawkey[spec[t]] or rawkey[t]&lt;br /&gt;
		r = table.concat(r and r&amp;gt;=#t and MBi._all({}, t) or t)&lt;br /&gt;
		return (noCache or rawset(t, 'last_concat', r)) and r&lt;br /&gt;
	end,&lt;br /&gt;
	__concat = function(a, b)&lt;br /&gt;
		if buffHTML then&lt;br /&gt;
			for k = 1, 2 do local v = select(k, a, b)--faster than for k, v in pairs{a, b} do&lt;br /&gt;
				if v and spec[v] and spec[v]==Element then&lt;br /&gt;
					if parent[v].selfClosing then&lt;br /&gt;
						if rawequal(a, b) then return (not noCache or parent[v].tagName) and v:_str(0):rep(2) or v:_str(0)..v:_str(0) end--rawequal avoids premature tostring of Buffer:_var objects;&lt;br /&gt;
						b, a = select(k, b, parent[v], a)&lt;br /&gt;
					else local temp = Element .. v --helper method; returns a mirror of parent[v]&lt;br /&gt;
						MBmix(MBmix(parent(temp.nodes, temp), a), k==1 and spec[b]==Element and parent[b] or b)&lt;br /&gt;
						return buffHTML.__tostring(setmetatable(temp, {__index=parent[v], __mode='v'}))--switch from tempMeta to avoid MBi._cc op of styles/attributes&lt;br /&gt;
					end&lt;br /&gt;
				end&lt;br /&gt;
			end&lt;br /&gt;
		end&lt;br /&gt;
		return table.concat(MBmix(MBmix({}, a), b))&lt;br /&gt;
	end,&lt;br /&gt;
	__pairs = MBpairs,&lt;br /&gt;
	__ipairs = MBpairs,&lt;br /&gt;
	__eq = function(a, b) return tostring(a)==tostring(b) end--avoid a==b in this module; use rawequal(a,b) when they may be different Buffers (premature tostring waste ops and is bad for Buffer:_var)&lt;br /&gt;
}, {__tostring = function()return''end,&lt;br /&gt;
	__call = function(self, ...) MB = MB or self&lt;br /&gt;
		if new_G then if ... and _G and ...==_G then new_G = ... end&lt;br /&gt;
		elseif ... and (...==_G or type(...)=='table' and (...)._G==...) then&lt;br /&gt;
			local Nil, mG = {}, (...):getmetatable() or (...):setmetatable{}:getmetatable()&lt;br /&gt;
			new_G, _G, gfuncs = ..., ..., {--gfuncs stored for Buffer:_inHTML; new_G is a is a Module:Buffer local declared just before the final return statement.&lt;br /&gt;
				_G = function(self, i, ...)&lt;br /&gt;
					local X, save = rawget(new_G, i), select('#', ...)==0 and self or ...&lt;br /&gt;
					if i and i~=true and not (X and save and rawequal(X, save)) and rawset(new_G, i, save) and (X~=nil or save==nil and new_G[i]~=nil) then--rawequal in case X is another buffer&lt;br /&gt;
						local mG = getmetatable(new_G) or {__call=mG.__call}&lt;br /&gt;
						if mG.__index then pcall(rawset, mG.__index, i, X)&lt;br /&gt;
						else mG.__index = setmetatable(new_G, mG) and {[i] = X} end&lt;br /&gt;
					end&lt;br /&gt;
					return self, ...--avoiding __eq with rawequal(self,save) is overkill since buffers can self-save without being passed as save&lt;br /&gt;
				end,&lt;br /&gt;
				_R = function(self, i, v, m)&lt;br /&gt;
					if i~='new_G' then if i and i~=true then rawset(new_G, i , v) end&lt;br /&gt;
					elseif not v or v==true or v._G~=_G then new_G = setmetatable(v~=true and v or {}, {__call = mG.__call, __index = v~=true and m~=true and (m or new_G) or nil})&lt;br /&gt;
					else new_G, (not m and (m~=nil or v==new_G) and Nil or getmetatable(v)).__index = v, m~=true and (m or new_G) or nil end--setting Nil.__index is noOp&lt;br /&gt;
					return self&lt;br /&gt;
				end,&lt;br /&gt;
				_2 = function(self, ...)&lt;br /&gt;
					if new_G[...]~=nil then return new_G[...] end--higher priority so Buffer:_G('new_G', ...) can prevent an overwrite&lt;br /&gt;
					if ...=='new_G' then return rawset((select('#', ...)~=1 and MBi._R(new_G, ...) or new_G), '_G', _G) end&lt;br /&gt;
					return select(select('#', ...)==1 and 1 or 2, self:_G(...))--return only one value; 'return select(2, self:_G(...)) or self' doesn't work for returning nil&lt;br /&gt;
				end,&lt;br /&gt;
				_B = function(self, v) return v or v==nil and Nil end&lt;br /&gt;
			} for k, v in next, gfuncs do MBi[k] = v end &lt;br /&gt;
			setmetatable(Nil,{__concat=MB.__concat,__newindex=noOp,__call=noOp,__tostring=noOp,__metatable=MB,__index=setmetatable({_B=MBi._B,_=function()return Nil end,last_concat=''},&lt;br /&gt;
				{__index=function(t,i)return (MBi[i] or i and not tonumber(i)) and t._ or nil end})})&lt;br /&gt;
			function mG.__call(G, k, ...) return (k._G or G.type(k)=='table') and (G.select('#', ...)~=1 and G.rawset(k, ...) or G:rawset(..., k) and k) or G:rawset(k, (...)) and ... end&lt;br /&gt;
		end&lt;br /&gt;
		local new = setmetatable({}, self)&lt;br /&gt;
		if ... and (...)==new_G then return select(2, ...) and MBmix(new:_G((select(2, ...))), select(3, ...)) or new end&lt;br /&gt;
		return ... and MBi._(new, ...) or new&lt;br /&gt;
	end,&lt;br /&gt;
	__index = function(t, i)&lt;br /&gt;
		MB = MB or t return MBi[i] and function(...) return MBi[i](setmetatable({}, t), select(...==t and 2 or 1,...)) end&lt;br /&gt;
	end&lt;br /&gt;
})&lt;/div&gt;</summary>
		<author><name>Ian</name></author>	</entry>

	<entry>
		<id>https://chaldeanwiki.com/index.php?title=Template:EC-clergy-stub&amp;diff=3435</id>
		<title>Template:EC-clergy-stub</title>
		<link rel="alternate" type="text/html" href="https://chaldeanwiki.com/index.php?title=Template:EC-clergy-stub&amp;diff=3435"/>
				<updated>2015-05-19T01:35:27Z</updated>
		
		<summary type="html">&lt;p&gt;Ian: 1 revision imported&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{asbox&lt;br /&gt;
| image     = Christ Pantocrator Deesis mosaic Hagia Sophia.jpg&lt;br /&gt;
| pix       = 30&lt;br /&gt;
| subject   = biographical&lt;br /&gt;
| qualifier = about Eastern Catholicism&lt;br /&gt;
| category = Eastern Catholic clergy stubs&lt;br /&gt;
| tempsort =  Clergy&lt;br /&gt;
| name      = Template:EC-clergy-stub&lt;br /&gt;
}}&lt;/div&gt;</summary>
		<author><name>Ian</name></author>	</entry>

	<entry>
		<id>https://chaldeanwiki.com/index.php?title=Template:Birth_date_and_age&amp;diff=3425</id>
		<title>Template:Birth date and age</title>
		<link rel="alternate" type="text/html" href="https://chaldeanwiki.com/index.php?title=Template:Birth_date_and_age&amp;diff=3425"/>
				<updated>2015-05-19T01:35:26Z</updated>
		
		<summary type="html">&lt;p&gt;Ian: 1 revision imported&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;includeonly&amp;gt;&amp;lt;span style=&amp;quot;display:none&amp;quot;&amp;gt; (&amp;lt;span class=&amp;quot;bday&amp;quot;&amp;gt;{{{1|{{{year}}}}}}-{{padleft:{{{2|{{{month}}}}}}|2|0}}-{{padleft:{{{3|{{{day}}}}}}|2|0}}&amp;lt;/span&amp;gt;) &amp;lt;/span&amp;gt;{{#if:{{{df|}}}|{{#expr:{{{3|{{{day}}}}}}}} {{MONTHNAME|{{{2|{{{month}}}}}}}}|{{MONTHNAME|{{{2|{{{month}}}}}}}} {{#expr:{{{3|{{{day}}}}}}}},}} {{{1|{{{year}}}}}}&amp;lt;span class=&amp;quot;noprint ForceAgeToShow&amp;quot;&amp;gt; (age&amp;amp;nbsp;{{age | {{{1|{{{year}}}}}} | {{{2|{{{month}}}}}} | {{{3|{{{day}}}}}} }})&amp;lt;/span&amp;gt;&amp;lt;!--&lt;br /&gt;
 -- Error checks --&lt;br /&gt;
--&amp;gt;{{#ifexpr: ( {{{1|{{{year}}}}}} &amp;gt; {{CURRENTYEAR}} ) OR ( {{CURRENTYEAR}} - {{{1|{{{year}}}}}} &amp;gt; 150 )&lt;br /&gt;
 | &amp;amp;#32;{{error|invalid year}}{{main other|[[Category:Pages using age template with invalid date]]}}&lt;br /&gt;
}}{{#ifexpr: ( {{{2|{{{month}}}}}} &amp;gt; 12 ) OR ( {{{2|{{{month}}}}}} &amp;lt; 1 )&lt;br /&gt;
 | &amp;amp;#32;{{error|invalid month}}{{main other|[[Category:Pages using age template with invalid date]]}}&lt;br /&gt;
}}{{#ifexpr: ( {{{3|{{{day}}}}}} &amp;gt; 31 ) OR ( {{{3|{{{day}}}}}} &amp;lt; 1 )&lt;br /&gt;
 | &amp;amp;#32;{{error|invalid day}}{{main other|[[Category:Pages using age template with invalid date]]}}&lt;br /&gt;
}}&amp;lt;/includeonly&amp;gt;&amp;lt;noinclude&amp;gt;&lt;br /&gt;
{{documentation}}&lt;br /&gt;
&amp;lt;/noinclude&amp;gt;&lt;/div&gt;</summary>
		<author><name>Ian</name></author>	</entry>

	<entry>
		<id>https://chaldeanwiki.com/index.php?title=Template:S-break&amp;diff=3427</id>
		<title>Template:S-break</title>
		<link rel="alternate" type="text/html" href="https://chaldeanwiki.com/index.php?title=Template:S-break&amp;diff=3427"/>
				<updated>2015-05-19T01:35:26Z</updated>
		
		<summary type="html">&lt;p&gt;Ian: 1 revision imported&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;includeonly&amp;gt;|-&amp;lt;/includeonly&amp;gt;&amp;lt;noinclude&amp;gt;&lt;br /&gt;
{{documentation}}&lt;br /&gt;
{{/TemplateData}}&lt;br /&gt;
&amp;lt;/noinclude&amp;gt;&lt;/div&gt;</summary>
		<author><name>Ian</name></author>	</entry>

	<entry>
		<id>https://chaldeanwiki.com/index.php?title=Template:S-inc&amp;diff=3429</id>
		<title>Template:S-inc</title>
		<link rel="alternate" type="text/html" href="https://chaldeanwiki.com/index.php?title=Template:S-inc&amp;diff=3429"/>
				<updated>2015-05-19T01:35:26Z</updated>
		
		<summary type="html">&lt;p&gt;Ian: 1 revision imported&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;includeonly&amp;gt;| style=&amp;quot;width: 30%; text-align: center;&amp;quot; rowspan=&amp;quot;{{{rows|1}}}&amp;quot;|{{#if:{{{1|}}}|{{#switch:{{{1}}}&lt;br /&gt;
 |current='''Current holder'''&lt;br /&gt;
 |recent='''Most recent'''&lt;br /&gt;
 |#default={{#if:{{{1}}}|'''Incumbent'''}}&lt;br /&gt;
}}|'''Incumbent'''}}{{#if:{{{heir|}}}|&amp;lt;br /&amp;gt;&amp;lt;small&amp;gt;''{{#if:{{{heir-type|}}}|{{{heir-type}}}|Heir}}:&amp;lt;br /&amp;gt;{{{heir}}}''&amp;lt;/small&amp;gt;}}&lt;br /&gt;
|-&amp;lt;/includeonly&amp;gt;&amp;lt;noinclude&amp;gt;&lt;br /&gt;
{{documentation}}&lt;br /&gt;
&amp;lt;!-- Add categories and interwikis to the /doc subpage, not here. --&amp;gt;&lt;br /&gt;
&amp;lt;/noinclude&amp;gt;&lt;/div&gt;</summary>
		<author><name>Ian</name></author>	</entry>

	<entry>
		<id>https://chaldeanwiki.com/index.php?title=Template:Patriarchs_of_the_Church_of_the_East&amp;diff=3423</id>
		<title>Template:Patriarchs of the Church of the East</title>
		<link rel="alternate" type="text/html" href="https://chaldeanwiki.com/index.php?title=Template:Patriarchs_of_the_Church_of_the_East&amp;diff=3423"/>
				<updated>2015-05-19T01:35:25Z</updated>
		
		<summary type="html">&lt;p&gt;Ian: 1 revision imported&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{Navbox&lt;br /&gt;
 | name = Patriarchs of the Church of the East&lt;br /&gt;
 | title = [[Patriarchs of the Church of the East]]&lt;br /&gt;
 |listclass = hlist&lt;br /&gt;
 | basestyle = background-color: #FFFF66&lt;br /&gt;
 | evenstyle  = background:#FFFFBB;&lt;br /&gt;
 | above = &lt;br /&gt;
 | state = {{{1&amp;lt;includeonly&amp;gt;|expanded&amp;lt;/includeonly&amp;gt;}}}&lt;br /&gt;
&lt;br /&gt;
 | group1 = 1st–4th centuries&lt;br /&gt;
 | list1 = &lt;br /&gt;
* [[Addai]] &lt;br /&gt;
* [[Aggai (bishop)|Aggai (66–87)]] &lt;br /&gt;
* [[Saint Mari|Mari (''ob.''104)]]&lt;br /&gt;
* [[Abris|Abris (121–37)]] &lt;br /&gt;
* [[Abraham (bishop)|Abraham (159–71)]] &lt;br /&gt;
* [[Yaqob I|Yaʿqob I (''c.'' 190)]] &lt;br /&gt;
* [[Ahadabui|Ahadabui (204–20)]] &lt;br /&gt;
* [[Shahlufa|Shahlufa (220–4)]] &lt;br /&gt;
* [[Papa (bishop)|Papa (''c.'' 280–317)]] &lt;br /&gt;
* [[Shemon Bar Sabbae|Shemʿon Bar Sabbaʿe (329–41)]] &lt;br /&gt;
* [[Shahdost|Shahdost (341–3)]] &lt;br /&gt;
* [[Barba'shmin|Barbaʿshmin (343–6)]] &lt;br /&gt;
* [[Tomarsa|Tomarsa (363–71)]] &lt;br /&gt;
* [[Qayyoma|Qayyoma (377–99)]]   &lt;br /&gt;
&lt;br /&gt;
 | group2 = 5th–8th centuries&lt;br /&gt;
 | list2 = &lt;br /&gt;
* [[Isaac (patriarch)|Isaac (399–410)]] &lt;br /&gt;
* [[Ahha|Ahha (410–14)]] &lt;br /&gt;
* [[Yahballaha I|Yahballaha I (415–20)]] &lt;br /&gt;
* [[Mana (patriarch)|Maʿna (420)]] &lt;br /&gt;
* [[Farbokht|Farbokht (421)]] &lt;br /&gt;
* [[Dadisho|Dadishoʿ (421–56)]] &lt;br /&gt;
* [[Babowai|Babowai (457–84)]] &lt;br /&gt;
* [[Acacius (Nestorian Patriarch)|Acacius (485–96)]] &lt;br /&gt;
* [[Babai (Nestorian Patriarch)|Babai (497–503)]] &lt;br /&gt;
* [[Shila (Nestorian Patriarch)|Shila (503–23)]] &lt;br /&gt;
* [[Elisha (Nestorian Patriarch)|Elishaʿ (524–37)]] &lt;br /&gt;
* [[Narsai (Nestorian Patriarch)|Narsai ''intrusus'' (524–37)]] &lt;br /&gt;
* [[Paul (Nestorian Patriarch)|Paul (539)]] &lt;br /&gt;
* [[Aba I|Aba I (540–52)]] &lt;br /&gt;
* [[Joseph (Nestorian Patriarch)|Joseph (552–67)]] &lt;br /&gt;
* [[Ezekiel (Nestorian Patriarch)|Ezekiel (570–81)]] &lt;br /&gt;
* [[Ishoyahb I|Isho{{transl|ar|DIN|ʿ}}yahb I (582–95)]] &lt;br /&gt;
* [[Sabrisho I|Sabrishoʿ I (596–604)]] &lt;br /&gt;
* [[Gregory (Nestorian Patriarch)|Gregory (605–9)]] &lt;br /&gt;
* [[Ishoyahb II|Ishoʿyahb II (628–45)]] &lt;br /&gt;
* [[Maremmeh|Maremmeh (646–9)]]&lt;br /&gt;
* [[Ishoyahb III|Ishoʿyahb III (649–59)]] &lt;br /&gt;
* [[Giwargis I|Giwargis I (661–80)]] &lt;br /&gt;
* [[Yohannan I|Yohannan I (680–3)]] &lt;br /&gt;
* [[Hnanisho I|Hnanishoʿ I (686–98)]] &lt;br /&gt;
* [[Yohannan the Leper|Yohannan Garba ''intrusus'' (691–3)]] &lt;br /&gt;
* [[Sliba-zkha|Sliba-zkha (714–28)]] &lt;br /&gt;
* [[Pethion|Pethion (731–40)]] &lt;br /&gt;
* [[Aba II|Aba II (741–51)]] &lt;br /&gt;
* [[Surin (Nestorian Patriarch)|Surin (753)]] &lt;br /&gt;
* [[Yaqob II|Yaʿqob II (753–73)]] &lt;br /&gt;
* [[Hnanisho II|Hnanishoʿ II (773–80)]] &lt;br /&gt;
* [[Timothy I (Nestorian Patriarch)|Timothy I (780–823)]] &lt;br /&gt;
* &lt;br /&gt;
&lt;br /&gt;
 | group3 = 9th–12th centuries&lt;br /&gt;
 | list3 = &lt;br /&gt;
* [[Isho Bar Nun|Ishoʿ bar Nun (823–8)]] &lt;br /&gt;
* [[Giwargis II|Giwargis II (828–31)]] &lt;br /&gt;
* [[Sabrisho II|Sabrishoʿ II (831–5)]] &lt;br /&gt;
* [[Abraham II|Abraham II (837–50)]] &lt;br /&gt;
* [[Theodosius (Nestorian Patriarch)|Theodosius (853–8)]] &lt;br /&gt;
* [[Sargis (Nestorian Patriarch)|Sargis (860–72)]] &lt;br /&gt;
* [[Israel of Kashkar|Israel of Kashkar ''intrusus'' (877)]] &lt;br /&gt;
* [[Enosh (Nestorian Patriarch)|Enosh (877–84)]] &lt;br /&gt;
* [[Yohannan II|Yohannan II (884–91)]] &lt;br /&gt;
* [[Yohannan III|Yohannan III (893–9)]] &lt;br /&gt;
* [[Yohannan IV|Yohannan IV (900–05)]] &lt;br /&gt;
* [[Abraham III (Nestorian Patriarch)|Abraham III (906–37)]] &lt;br /&gt;
* [[Emmanuel I (Nestorian Patriarch)|Emmanuel I (937–60)]] &lt;br /&gt;
* [[Israel (Nestorian Patriarch)|Israel (961)]] &lt;br /&gt;
* [[Abdisho I|ʿAbdishoʿ I (963–86)]] &lt;br /&gt;
* [[Mari (Nestorian Patriarch)|Mari (987–99)]] &lt;br /&gt;
* [[Yohannan V|Yohannan V (1000–11)]] &lt;br /&gt;
* [[Yohannan VI|Yohannan VI (1012–16)]] &lt;br /&gt;
* [[Ishoyahb IV|Ishoʿyahb IV (1020–5)]] &lt;br /&gt;
* [[Eliya I|Eliya I (1028–49)]] &lt;br /&gt;
* [[Yohannan VII|Yohannan VII (1049–57)]] &lt;br /&gt;
* [[Sabrisho III|Sabrishoʿ III (1064–72)]] &lt;br /&gt;
* [[Abdisho II|ʿAbdishoʿ II (1074–90)]] &lt;br /&gt;
* [[Makkikha I|Makkikha I (1092–1110)]] &lt;br /&gt;
* [[Eliya II|Eliya II (1111–32)]] &lt;br /&gt;
* [[Bar Sawma (Nestorian Patriarch)|Bar Sawma (1134–6)]] &lt;br /&gt;
* [[Abdisho III|ʿAbdishoʿ III (1139–48)]] &lt;br /&gt;
* [[Ishoyahb V|Ishoʿyahb V (1149–75)]] &lt;br /&gt;
* [[Eliya III|Eliya III (1176–90)]] &lt;br /&gt;
&lt;br /&gt;
 &lt;br /&gt;
 | group4 = 13th–16th centuries&lt;br /&gt;
 | list4 = &lt;br /&gt;
* [[Yahballaha II|Yahballaha II (1190–1222)]] &lt;br /&gt;
* [[Sabrisho IV|Sabrishoʿ IV (1222–4)]] &lt;br /&gt;
* [[Sabrisho V|Sabrishoʿ V (1226–56)]] &lt;br /&gt;
* [[Makkikha II|Makkikha II (1257–65)]] &lt;br /&gt;
* [[Denha I|Denha I (1265–81)]] &lt;br /&gt;
* [[Yahballaha III|Yahballaha III (1281–1317)]] &lt;br /&gt;
* [[Timothy II (Nestorian Patriarch)|Timothy II (1318–''c.'' 1332)]] &lt;br /&gt;
* [[Denha II|Denha II (1336/7–1381/2)]] &lt;br /&gt;
* [[Shemon II|Shemʿon II (''c.'' 1385–''c.'' 1405)]] &lt;br /&gt;
* [[Eliya IV|Eliya IV (''c.'' 1405–''c.'' 1425)]] &lt;br /&gt;
* [[Shemon III|Shemʿon III (''c.'' 1425–''c.'' 1450)]] &lt;br /&gt;
* [[Shemon IV Basidi|Shemʿon IV Basidi (''c.'' 1450–1497)]] &lt;br /&gt;
* [[Shemon V|Shemʿon V (1497–1502)]] &lt;br /&gt;
* [[Eliya V|Eliya V (1503–4)]] &lt;br /&gt;
* [[Shemon VI|Shemʿon VI (1504–38)]] &lt;br /&gt;
* [[Shemon VII Ishoyahb|Shemʿon VII Ishoʿyahb (1539–58)]]&lt;br /&gt;
&lt;br /&gt;
 | belowclass = hlist&lt;br /&gt;
 | below = &lt;br /&gt;
* [[File:YHWH Syriac.svg|17px]] '''[[Portal:Syriac Christianity|Syriac Christianity Portal]]'''&lt;br /&gt;
* [[List of Patriarchs of the Church of the East|Patriarch List]]&lt;br /&gt;
&lt;br /&gt;
}}&amp;lt;noinclude&amp;gt;&lt;br /&gt;
[[Category:Bishops of the Assyrian Church of the East]]&lt;br /&gt;
[[Category:Patriarchs of the Church of the East]]&amp;lt;noinclude&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;/noinclude&amp;gt;&lt;/div&gt;</summary>
		<author><name>Ian</name></author>	</entry>

	<entry>
		<id>https://chaldeanwiki.com/index.php?title=Template:Other_people&amp;diff=3421</id>
		<title>Template:Other people</title>
		<link rel="alternate" type="text/html" href="https://chaldeanwiki.com/index.php?title=Template:Other_people&amp;diff=3421"/>
				<updated>2015-05-19T01:35:24Z</updated>
		
		<summary type="html">&lt;p&gt;Ian: 1 revision imported&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{Hatnote|1=For other people {{#if:{{{2|}}}&lt;br /&gt;
 |{{#if:{{{1|}}}&lt;br /&gt;
  |{{{named|named}}} {{{1}}}&lt;br /&gt;
  |with the same name&lt;br /&gt;
 }}&lt;br /&gt;
 |{{{named|named}}} {{{1|{{PAGENAME}}}}}&lt;br /&gt;
}}, see [[:{{{2|{{{1|{{PAGENAME}}}}} (disambiguation)}}}]].}}&amp;lt;noinclude&amp;gt;&lt;br /&gt;
{{documentation}}&lt;br /&gt;
&amp;lt;!-- Add categories and interwikis to the /doc subpage, not here! --&amp;gt;&lt;br /&gt;
&amp;lt;/noinclude&amp;gt;&lt;/div&gt;</summary>
		<author><name>Ian</name></author>	</entry>

	<entry>
		<id>https://chaldeanwiki.com/index.php?title=Template:Ordination&amp;diff=3419</id>
		<title>Template:Ordination</title>
		<link rel="alternate" type="text/html" href="https://chaldeanwiki.com/index.php?title=Template:Ordination&amp;diff=3419"/>
				<updated>2015-05-19T01:35:24Z</updated>
		
		<summary type="html">&lt;p&gt;Ian: 1 revision imported&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{infobox&lt;br /&gt;
| bodyclass = bordered collapsible collapsed&lt;br /&gt;
| abovestyle = background-color: #ddd; font-size:88%;&lt;br /&gt;
| above = &amp;lt;includeonly&amp;gt;{{resize|114%|Ordination history of {{{name|{{PAGENAME}}}}}}}&amp;lt;/includeonly&amp;gt;&lt;br /&gt;
&lt;br /&gt;
| headerstyle = background:#f2f2f2;&lt;br /&gt;
&lt;br /&gt;
| header1 = {{#if:{{{ordained deacon by|}}}{{{date of diaconal ordination|}}}{{{place of diaconal ordination|}}}|&amp;lt;div style=&amp;quot;width:100%;border-top: 5px solid #333&amp;quot;&amp;gt;Diaconal ordination&amp;lt;/div&amp;gt;}}&lt;br /&gt;
&lt;br /&gt;
| label2 = Ordained by&lt;br /&gt;
| data2 =  {{{ordained deacon by|}}}&lt;br /&gt;
&lt;br /&gt;
| label3 = Date of ordination&lt;br /&gt;
| data3 =  {{{date of diaconal ordination|}}}&lt;br /&gt;
&lt;br /&gt;
| label4 = Place of ordination&lt;br /&gt;
| data4 =  {{{place of diaconal ordination|}}}&lt;br /&gt;
&lt;br /&gt;
| header5 = {{#if:{{{ordained priest by|}}}{{{date of priestly ordination|}}}{{{place of priestly ordination|}}}|&amp;lt;div style=&amp;quot;width:100%;border-top: 5px solid #333&amp;quot;&amp;gt;Priestly ordination&amp;lt;/div&amp;gt;}}&lt;br /&gt;
&lt;br /&gt;
| label6 = Ordained by&lt;br /&gt;
| data6 =  {{{ordained priest by|}}}&lt;br /&gt;
&lt;br /&gt;
| label7 = Date of ordination&lt;br /&gt;
| data7 =  {{{date of priestly ordination|}}}&lt;br /&gt;
&lt;br /&gt;
| label8 = Place of ordination&lt;br /&gt;
| data8 =  {{{place of priestly ordination|}}}&lt;br /&gt;
&lt;br /&gt;
| header9 = {{#if:{{{consecrated by|}}}{{{date of consecration|}}}{{{place of consecration|}}}|&amp;lt;div style=&amp;quot;width:100%;border-top: 5px solid #800080&amp;quot;&amp;gt;Episcopal consecration&amp;lt;/div&amp;gt;}}&lt;br /&gt;
&lt;br /&gt;
| label10 = Principal consecrator&lt;br /&gt;
| data10 =  {{{consecrated by|}}}&lt;br /&gt;
&lt;br /&gt;
| label11 = Co-consecrators&lt;br /&gt;
| data11 =  {{{co-consecrators|}}}&lt;br /&gt;
&lt;br /&gt;
| label12 = Co-consecrator&lt;br /&gt;
| data12 =  {{{co-consecrator1|}}}&lt;br /&gt;
&lt;br /&gt;
| label13 = Co-consecrator&lt;br /&gt;
| data13 =  {{{co-consecrator2|}}}&lt;br /&gt;
&lt;br /&gt;
| label14 = Date&amp;amp;nbsp;of&amp;amp;nbsp;consecration&lt;br /&gt;
| data14 =  {{{date of consecration|}}}&lt;br /&gt;
&lt;br /&gt;
| label15 = Place&amp;amp;nbsp;of&amp;amp;nbsp;consecration&lt;br /&gt;
| data15 =  {{{place of consecration|}}}&lt;br /&gt;
&lt;br /&gt;
| header16 = {{#if:{{{date created cardinal|}}}{{{date of elevation|}}}{{{elevated by|}}}|&amp;lt;div style=&amp;quot;width:100%;border-top: 5px solid #FF2400&amp;quot;&amp;gt;Cardinalate&amp;lt;/div&amp;gt;}}&lt;br /&gt;
&lt;br /&gt;
| label17 = Elevated&amp;amp;nbsp;by&lt;br /&gt;
| data17 =  {{{elevated by|}}}&lt;br /&gt;
&lt;br /&gt;
| label18 = Date&amp;amp;nbsp;of&amp;amp;nbsp;elevation&lt;br /&gt;
| data18 =  {{{date created cardinal|}}}&lt;br /&gt;
&lt;br /&gt;
| label19 = Date&amp;amp;nbsp;of&amp;amp;nbsp;elevation&lt;br /&gt;
| data19 =  {{{date of elevation|}}}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
| header20 = {{#if:{{{bishop 1|}}}|&amp;lt;div style=&amp;quot;width:100%;border-top: 5px solid #800080&amp;quot;&amp;gt;Bishops consecrated by {{{surname|{{{name|{{PAGENAME}}}}}}}} as principal consecrator&amp;lt;/div&amp;gt;}}&lt;br /&gt;
&lt;br /&gt;
| label21 = {{{bishop 1|}}}&lt;br /&gt;
|  data21 = {{#if:{{{bishop 1|}}}|{{{consecration date 1|}}}}}&lt;br /&gt;
&lt;br /&gt;
| label22 = {{{bishop 2|}}}&lt;br /&gt;
|  data22 = {{#if:{{{bishop 2|}}}|{{{consecration date 2|}}}}}&lt;br /&gt;
&lt;br /&gt;
| label23 = {{{bishop 3|}}}&lt;br /&gt;
|  data23 = {{#if:{{{bishop 3|}}}|{{{consecration date 3|}}}}}&lt;br /&gt;
&lt;br /&gt;
| label24 = {{{bishop 4|}}}&lt;br /&gt;
|  data24 = {{#if:{{{bishop 4|}}}|{{{consecration date 4|}}}}}&lt;br /&gt;
&lt;br /&gt;
| label25 = {{{bishop 5|}}}&lt;br /&gt;
|  data25 = {{#if:{{{bishop 5|}}}|{{{consecration date 5|}}}}}&lt;br /&gt;
&lt;br /&gt;
| label26 = {{{bishop 6|}}}&lt;br /&gt;
|  data26 = {{#if:{{{bishop 6|}}}|{{{consecration date 6|}}}}}&lt;br /&gt;
&lt;br /&gt;
| label27 = {{{bishop 7|}}}&lt;br /&gt;
|  data27 = {{#if:{{{bishop 7|}}}|{{{consecration date 7|}}}}}&lt;br /&gt;
&lt;br /&gt;
| label28 = {{{bishop 8|}}}&lt;br /&gt;
|  data28 = {{#if:{{{bishop 8|}}}|{{{consecration date 8|}}}}}&lt;br /&gt;
&lt;br /&gt;
| label29 = {{{bishop 9|}}}&lt;br /&gt;
|  data29 = {{#if:{{{bishop 9|}}}|{{{consecration date 9|}}}}}&lt;br /&gt;
&lt;br /&gt;
| label30 = {{{bishop 10|}}}&lt;br /&gt;
|  data30 = {{#if:{{{bishop 10|}}}|{{{consecration date 10|}}}}}&lt;br /&gt;
&lt;br /&gt;
| label31 = {{{bishop 11|}}}&lt;br /&gt;
|  data31 = {{#if:{{{bishop 11|}}}|{{{consecration date 11|}}}}}&lt;br /&gt;
&lt;br /&gt;
| label32 = {{{bishop 12|}}}&lt;br /&gt;
|  data32 = {{#if:{{{bishop 12|}}}|{{{consecration date 12|}}}}}&lt;br /&gt;
&lt;br /&gt;
| label33 = {{{bishop 13|}}}&lt;br /&gt;
|  data33 = {{#if:{{{bishop 13|}}}|{{{consecration date 13|}}}}}&lt;br /&gt;
&lt;br /&gt;
| label34 = {{{bishop 14|}}}&lt;br /&gt;
|  data34 = {{#if:{{{bishop 14|}}}|{{{consecration date 14|}}}}}&lt;br /&gt;
&lt;br /&gt;
| label35 = {{{bishop 15|}}}&lt;br /&gt;
|  data35 = {{#if:{{{bishop 15|}}}|{{{consecration date 15|}}}}}&lt;br /&gt;
&lt;br /&gt;
| label36 = {{{bishop 16|}}}&lt;br /&gt;
|  data36 = {{#if:{{{bishop 16|}}}|{{{consecration date 16|}}}}}&lt;br /&gt;
&lt;br /&gt;
| label37 = {{{bishop 17|}}}&lt;br /&gt;
|  data37 = {{#if:{{{bishop 17|}}}|{{{consecration date 17|}}}}}&lt;br /&gt;
&lt;br /&gt;
| label38 = {{{bishop 18|}}}&lt;br /&gt;
|  data38 = {{#if:{{{bishop 18|}}}|{{{consecration date 18|}}}}}&lt;br /&gt;
&lt;br /&gt;
| label39 = {{{bishop 19|}}}&lt;br /&gt;
|  data39 = {{#if:{{{bishop 19|}}}|{{{consecration date 19|}}}}}&lt;br /&gt;
&lt;br /&gt;
| label40 = {{{bishop 20|}}}&lt;br /&gt;
|  data40 = {{#if:{{{bishop 20|}}}|{{{consecration date 20|}}}}}&lt;br /&gt;
&lt;br /&gt;
| label41 = {{{bishop 21|}}}&lt;br /&gt;
|  data41 = {{#if:{{{bishop 21|}}}|{{{consecration date 21|}}}}}&lt;br /&gt;
&lt;br /&gt;
| label42 = {{{bishop 22|}}}&lt;br /&gt;
|  data42 = {{#if:{{{bishop 22|}}}|{{{consecration date 22|}}}}}&lt;br /&gt;
&lt;br /&gt;
| label43 = {{{bishop 23|}}}&lt;br /&gt;
|  data43 = {{#if:{{{bishop 23|}}}|{{{consecration date 23|}}}}}&lt;br /&gt;
&lt;br /&gt;
| label44 = {{{bishop 24|}}}&lt;br /&gt;
|  data44 = {{#if:{{{bishop 24|}}}|{{{consecration date 24|}}}}}&lt;br /&gt;
&lt;br /&gt;
| label45 = {{{bishop 25|}}}&lt;br /&gt;
|  data45 = {{#if:{{{bishop 25|}}}|{{{consecration date 25|}}}}}&lt;br /&gt;
&lt;br /&gt;
| label46 = {{{bishop 26|}}}&lt;br /&gt;
|  data46 = {{#if:{{{bishop 26|}}}|{{{consecration date 26|}}}}}&lt;br /&gt;
&lt;br /&gt;
| label47 = {{{bishop 27|}}}&lt;br /&gt;
|  data47 = {{#if:{{{bishop 27|}}}|{{{consecration date 27|}}}}}&lt;br /&gt;
&lt;br /&gt;
| label48 = {{{bishop 28|}}}&lt;br /&gt;
|  data48 = {{#if:{{{bishop 28|}}}|{{{consecration date 28|}}}}}&lt;br /&gt;
&lt;br /&gt;
| label49 = {{{bishop 29|}}}&lt;br /&gt;
|  data49 = {{#if:{{{bishop 29|}}}|{{{consecration date 29|}}}}}&lt;br /&gt;
&lt;br /&gt;
| label50 = {{{bishop 30|}}}&lt;br /&gt;
|  data50 = {{#if:{{{bishop 30|}}}|{{{consecration date 30|}}}}}&lt;br /&gt;
&lt;br /&gt;
| label51 = {{{bishop 31|}}}&lt;br /&gt;
|  data51 = {{#if:{{{bishop 31|}}}|{{{consecration date 31|}}}}}&lt;br /&gt;
&lt;br /&gt;
| label52 = {{{bishop 32|}}}&lt;br /&gt;
|  data52 = {{#if:{{{bishop 32|}}}|{{{consecration date 32|}}}}}&lt;br /&gt;
&lt;br /&gt;
| label53 = {{{bishop 33|}}}&lt;br /&gt;
|  data53 = {{#if:{{{bishop 33|}}}|{{{consecration date 33|}}}}}&lt;br /&gt;
&lt;br /&gt;
| label54 = {{{bishop 34|}}}&lt;br /&gt;
|  data54 = {{#if:{{{bishop 34|}}}|{{{consecration date 34|}}}}}&lt;br /&gt;
&lt;br /&gt;
| label55 = {{{bishop 35|}}}&lt;br /&gt;
|  data55 = {{#if:{{{bishop 35|}}}|{{{consecration date 35|}}}}}&lt;br /&gt;
&lt;br /&gt;
| label56 = {{{bishop 36|}}}&lt;br /&gt;
|  data56 = {{#if:{{{bishop 36|}}}|{{{consecration date 36|}}}}}&lt;br /&gt;
&lt;br /&gt;
| label57 = {{{bishop 37|}}}&lt;br /&gt;
|  data57 = {{#if:{{{bishop 37|}}}|{{{consecration date 37|}}}}}&lt;br /&gt;
&lt;br /&gt;
| label58 = {{{bishop 38|}}}&lt;br /&gt;
|  data58 = {{#if:{{{bishop 38|}}}|{{{consecration date 38|}}}}}&lt;br /&gt;
&lt;br /&gt;
| label59 = {{{bishop 39|}}}&lt;br /&gt;
|  data59 = {{#if:{{{bishop 39|}}}|{{{consecration date 39|}}}}}&lt;br /&gt;
&lt;br /&gt;
| label60 = {{{bishop 40|}}}&lt;br /&gt;
|  data60 = {{#if:{{{bishop 40|}}}|{{{consecration date 40|}}}}}&lt;br /&gt;
&lt;br /&gt;
| label61 = {{{bishop 41|}}}&lt;br /&gt;
|  data61 = {{#if:{{{bishop 41|}}}|{{{consecration date 41|}}}}}&lt;br /&gt;
&lt;br /&gt;
| label62 = {{{bishop 42|}}}&lt;br /&gt;
|  data62 = {{#if:{{{bishop 42|}}}|{{{consecration date 42|}}}}}&lt;br /&gt;
&lt;br /&gt;
| label63 = {{{bishop 43|}}}&lt;br /&gt;
|  data63 = {{#if:{{{bishop 43|}}}|{{{consecration date 43|}}}}}&lt;br /&gt;
&lt;br /&gt;
| label64 = {{{bishop 44|}}}&lt;br /&gt;
|  data64 = {{#if:{{{bishop 44|}}}|{{{consecration date 44|}}}}}&lt;br /&gt;
&lt;br /&gt;
| label65 = {{{bishop 45|}}}&lt;br /&gt;
|  data65 = {{#if:{{{bishop 45|}}}|{{{consecration date 45|}}}}}&lt;br /&gt;
&lt;br /&gt;
| label66 = {{{bishop 46|}}}&lt;br /&gt;
|  data66 = {{#if:{{{bishop 46|}}}|{{{consecration date 46|}}}}}&lt;br /&gt;
&lt;br /&gt;
| label67 = {{{bishop 47|}}}&lt;br /&gt;
|  data67 = {{#if:{{{bishop 47|}}}|{{{consecration date 47|}}}}}&lt;br /&gt;
&lt;br /&gt;
| label68 = {{{bishop 48|}}}&lt;br /&gt;
|  data68 = {{#if:{{{bishop 48|}}}|{{{consecration date 48|}}}}}&lt;br /&gt;
&lt;br /&gt;
| label69 = {{{bishop 49|}}}&lt;br /&gt;
|  data69 = {{#if:{{{bishop 49|}}}|{{{consecration date 49|}}}}}&lt;br /&gt;
&lt;br /&gt;
| label70 = {{{bishop 50|}}}&lt;br /&gt;
|  data70 = {{#if:{{{bishop 50|}}}|{{{consecration date 50|}}}}}&lt;br /&gt;
&lt;br /&gt;
| label71 = {{{bishop 51|}}}&lt;br /&gt;
|  data71 = {{#if:{{{bishop 51|}}}|{{{consecration date 51|}}}}}&lt;br /&gt;
&lt;br /&gt;
| label72 = {{{bishop 52|}}}&lt;br /&gt;
|  data72 = {{#if:{{{bishop 52|}}}|{{{consecration date 52|}}}}}&lt;br /&gt;
&lt;br /&gt;
| label73 = {{{bishop 53|}}}&lt;br /&gt;
|  data73 = {{#if:{{{bishop 53|}}}|{{{consecration date 53|}}}}}&lt;br /&gt;
&lt;br /&gt;
| label74 = {{{bishop 54|}}}&lt;br /&gt;
|  data74 = {{#if:{{{bishop 54|}}}|{{{consecration date 54|}}}}}&lt;br /&gt;
&lt;br /&gt;
| label75 = {{{bishop 55|}}}&lt;br /&gt;
|  data75 = {{#if:{{{bishop 55|}}}|{{{consecration date 55|}}}}}&lt;br /&gt;
&lt;br /&gt;
| label76 = {{{bishop 56|}}}&lt;br /&gt;
|  data76 = {{#if:{{{bishop 56|}}}|{{{consecration date 56|}}}}}&lt;br /&gt;
&lt;br /&gt;
| label77 = {{{bishop 57|}}}&lt;br /&gt;
|  data77 = {{#if:{{{bishop 57|}}}|{{{consecration date 57|}}}}}&lt;br /&gt;
&lt;br /&gt;
| label78 = {{{bishop 58|}}}&lt;br /&gt;
|  data78 = {{#if:{{{bishop 58|}}}|{{{consecration date 58|}}}}}&lt;br /&gt;
&lt;br /&gt;
| label79 = {{{bishop 59|}}}&lt;br /&gt;
|  data79 = {{#if:{{{bishop 59|}}}|{{{consecration date 59|}}}}}&lt;br /&gt;
&lt;br /&gt;
| label80 = {{{bishop 60|}}}&lt;br /&gt;
|  data80 = {{#if:{{{bishop 60|}}}|{{{consecration date 60|}}}}}&lt;br /&gt;
&lt;br /&gt;
| label81 = {{{bishop 61|}}}&lt;br /&gt;
|  data81 = {{#if:{{{bishop 61|}}}|{{{consecration date 61|}}}}}&lt;br /&gt;
&lt;br /&gt;
| label82 = {{{bishop 62|}}}&lt;br /&gt;
|  data82 = {{#if:{{{bishop 62|}}}|{{{consecration date 62|}}}}}&lt;br /&gt;
&lt;br /&gt;
| label83 = {{{bishop 63|}}}&lt;br /&gt;
|  data83 = {{#if:{{{bishop 63|}}}|{{{consecration date 63|}}}}}&lt;br /&gt;
&lt;br /&gt;
| label84 = {{{bishop 64|}}}&lt;br /&gt;
|  data84 = {{#if:{{{bishop 64|}}}|{{{consecration date 64|}}}}}&lt;br /&gt;
&lt;br /&gt;
| label85 = {{{bishop 65|}}}&lt;br /&gt;
|  data85 = {{#if:{{{bishop 65|}}}|{{{consecration date 65|}}}}}&lt;br /&gt;
&lt;br /&gt;
| label86 = {{{bishop 66|}}}&lt;br /&gt;
|  data86 = {{#if:{{{bishop 66|}}}|{{{consecration date 66|}}}}}&lt;br /&gt;
&lt;br /&gt;
| label87 = {{{bishop 67|}}}&lt;br /&gt;
|  data87 = {{#if:{{{bishop 67|}}}|{{{consecration date 67|}}}}}&lt;br /&gt;
&lt;br /&gt;
| label88 = {{{bishop 68|}}}&lt;br /&gt;
|  data88 = {{#if:{{{bishop 68|}}}|{{{consecration date 68|}}}}}&lt;br /&gt;
&lt;br /&gt;
| label89 = {{{bishop 69|}}}&lt;br /&gt;
|  data89 = {{#if:{{{bishop 69|}}}|{{{consecration date 69|}}}}}&lt;br /&gt;
&lt;br /&gt;
| label90 = {{{bishop 70|}}}&lt;br /&gt;
|  data90 = {{#if:{{{bishop 70|}}}|{{{consecration date 70|}}}}}&lt;br /&gt;
&lt;br /&gt;
| label91 = {{{bishop 71|}}}&lt;br /&gt;
|  data91 = {{#if:{{{bishop 71|}}}|{{{consecration date 71|}}}}}&lt;br /&gt;
&lt;br /&gt;
| label92 = {{{bishop 72|}}}&lt;br /&gt;
|  data92 = {{#if:{{{bishop 72|}}}|{{{consecration date 72|}}}}}&lt;br /&gt;
&lt;br /&gt;
| label93 = {{{bishop 73|}}}&lt;br /&gt;
|  data93 = {{#if:{{{bishop 73|}}}|{{{consecration date 73|}}}}}&lt;br /&gt;
&lt;br /&gt;
| label94 = {{{bishop 74|}}}&lt;br /&gt;
|  data94 = {{#if:{{{bishop 74|}}}|{{{consecration date 74|}}}}}&lt;br /&gt;
&lt;br /&gt;
| label95 = {{{bishop 75|}}}&lt;br /&gt;
|  data95 = {{#if:{{{bishop 75|}}}|{{{consecration date 75|}}}}}&lt;br /&gt;
&lt;br /&gt;
| label96 = {{{bishop 76|}}}&lt;br /&gt;
|  data96 = {{#if:{{{bishop 76|}}}|{{{consecration date 76|}}}}}&lt;br /&gt;
&lt;br /&gt;
| label97 = {{{bishop 77|}}}&lt;br /&gt;
|  data97 = {{#if:{{{bishop 77|}}}|{{{consecration date 77|}}}}}&lt;br /&gt;
&lt;br /&gt;
| label98 = {{{bishop 78|}}}&lt;br /&gt;
|  data98 = {{#if:{{{bishop 78|}}}|{{{consecration date 78|}}}}}&lt;br /&gt;
&lt;br /&gt;
| label99 = {{{bishop 79|}}}&lt;br /&gt;
|  data99 = {{#if:{{{bishop 79|}}}|{{{consecration date 79|}}}}}&lt;br /&gt;
&lt;br /&gt;
| label100 = {{{bishop 80|}}}&lt;br /&gt;
|  data100 = {{#if:{{{bishop 80|}}}|{{{consecration date 80|}}}}}&lt;br /&gt;
&lt;br /&gt;
| label101 = {{{bishop 81|}}}&lt;br /&gt;
|  data101 = {{#if:{{{bishop 81|}}}|{{{consecration date 81|}}}}}&lt;br /&gt;
&lt;br /&gt;
| label102 = {{{bishop 82|}}}&lt;br /&gt;
|  data102 = {{#if:{{{bishop 82|}}}|{{{consecration date 82|}}}}}&lt;br /&gt;
&lt;br /&gt;
| label103 = {{{bishop 83|}}}&lt;br /&gt;
|  data103 = {{#if:{{{bishop 83|}}}|{{{consecration date 83|}}}}}&lt;br /&gt;
&lt;br /&gt;
| label104 = {{{bishop 84|}}}&lt;br /&gt;
|  data104 = {{#if:{{{bishop 84|}}}|{{{consecration date 84|}}}}}&lt;br /&gt;
&lt;br /&gt;
| label105 = {{{bishop 85|}}}&lt;br /&gt;
|  data105 = {{#if:{{{bishop 85|}}}|{{{consecration date 85|}}}}}&lt;br /&gt;
&lt;br /&gt;
| label106 = {{{bishop 86|}}}&lt;br /&gt;
|  data106 = {{#if:{{{bishop 86|}}}|{{{consecration date 86|}}}}}&lt;br /&gt;
&lt;br /&gt;
| label107 = {{{bishop 87|}}}&lt;br /&gt;
|  data107 = {{#if:{{{bishop 87|}}}|{{{consecration date 87|}}}}}&lt;br /&gt;
&lt;br /&gt;
| label108 = {{{bishop 88|}}}&lt;br /&gt;
|  data108 = {{#if:{{{bishop 88|}}}|{{{consecration date 88|}}}}}&lt;br /&gt;
&lt;br /&gt;
| label109 = {{{bishop 89|}}}&lt;br /&gt;
|  data109 = {{#if:{{{bishop 89|}}}|{{{consecration date 89|}}}}}&lt;br /&gt;
&lt;br /&gt;
| label110 = {{{bishop 90|}}}&lt;br /&gt;
|  data110 = {{#if:{{{bishop 90|}}}|{{{consecration date 90|}}}}}&lt;br /&gt;
&lt;br /&gt;
| label111 = {{{bishop 91|}}}&lt;br /&gt;
|  data111 = {{#if:{{{bishop 91|}}}|{{{consecration date 91|}}}}}&lt;br /&gt;
&lt;br /&gt;
| label112 = {{{bishop 92|}}}&lt;br /&gt;
|  data112 = {{#if:{{{bishop 92|}}}|{{{consecration date 92|}}}}}&lt;br /&gt;
&lt;br /&gt;
| label113 = {{{bishop 93|}}}&lt;br /&gt;
|  data113 = {{#if:{{{bishop 93|}}}|{{{consecration date 93|}}}}}&lt;br /&gt;
&lt;br /&gt;
| label114 = {{{bishop 94|}}}&lt;br /&gt;
|  data114 = {{#if:{{{bishop 94|}}}|{{{consecration date 94|}}}}}&lt;br /&gt;
&lt;br /&gt;
| label115 = {{{bishop 95|}}}&lt;br /&gt;
|  data115 = {{#if:{{{bishop 95|}}}|{{{consecration date 95|}}}}}&lt;br /&gt;
&lt;br /&gt;
| label116 = {{{bishop 96|}}}&lt;br /&gt;
|  data116 = {{#if:{{{bishop 96|}}}|{{{consecration date 96|}}}}}&lt;br /&gt;
&lt;br /&gt;
| label117 = {{{bishop 97|}}}&lt;br /&gt;
|  data117 = {{#if:{{{bishop 97|}}}|{{{consecration date 97|}}}}}&lt;br /&gt;
&lt;br /&gt;
| label118 = {{{bishop 98|}}}&lt;br /&gt;
|  data118 = {{#if:{{{bishop 98|}}}|{{{consecration date 98|}}}}}&lt;br /&gt;
&lt;br /&gt;
| label119 = {{{bishop 99|}}}&lt;br /&gt;
|  data119 = {{#if:{{{bishop 99|}}}|{{{consecration date 99|}}}}}&lt;br /&gt;
&lt;br /&gt;
| label120 = {{{bishop 100|}}}&lt;br /&gt;
|  data120 = {{#if:{{{bishop 100|}}}|{{{consecration date 100|}}}}}&lt;br /&gt;
&lt;br /&gt;
| label121 = {{{bishop 101|}}}&lt;br /&gt;
|  data121 = {{#if:{{{bishop 101|}}}|{{{consecration date 101|}}}}}&lt;br /&gt;
&lt;br /&gt;
| label122 = {{{bishop 102|}}}&lt;br /&gt;
|  data122 = {{#if:{{{bishop 102|}}}|{{{consecration date 102|}}}}}&lt;br /&gt;
&lt;br /&gt;
| label123 = {{{bishop 103|}}}&lt;br /&gt;
|  data123 = {{#if:{{{bishop 103|}}}|{{{consecration date 103|}}}}}&lt;br /&gt;
&lt;br /&gt;
| label124 = {{{bishop 104|}}}&lt;br /&gt;
|  data124 = {{#if:{{{bishop 104|}}}|{{{consecration date 104|}}}}}&lt;br /&gt;
&lt;br /&gt;
| label125 = {{{bishop 105|}}}&lt;br /&gt;
|  data125 = {{#if:{{{bishop 105|}}}|{{{consecration date 105|}}}}}&lt;br /&gt;
&lt;br /&gt;
| label126 = {{{bishop 106|}}}&lt;br /&gt;
|  data126 = {{#if:{{{bishop 106|}}}|{{{consecration date 106|}}}}}&lt;br /&gt;
&lt;br /&gt;
| label127 = {{{bishop 107|}}}&lt;br /&gt;
|  data127 = {{#if:{{{bishop 107|}}}|{{{consecration date 107|}}}}}&lt;br /&gt;
&lt;br /&gt;
| label128 = {{{bishop 108|}}}&lt;br /&gt;
|  data128 = {{#if:{{{bishop 108|}}}|{{{consecration date 108|}}}}}&lt;br /&gt;
&lt;br /&gt;
| label129 = {{{bishop 109|}}}&lt;br /&gt;
|  data129 = {{#if:{{{bishop 109|}}}|{{{consecration date 109|}}}}}&lt;br /&gt;
&lt;br /&gt;
| label130 = {{{bishop 110|}}}&lt;br /&gt;
|  data130 = {{#if:{{{bishop 110|}}}|{{{consecration date 110|}}}}}&lt;br /&gt;
&lt;br /&gt;
| label131 = {{{bishop 111|}}}&lt;br /&gt;
|  data131 = {{#if:{{{bishop 111|}}}|{{{consecration date 111|}}}}}&lt;br /&gt;
&lt;br /&gt;
| label132 = {{{bishop 112|}}}&lt;br /&gt;
|  data132 = {{#if:{{{bishop 112|}}}|{{{consecration date 112|}}}}}&lt;br /&gt;
&lt;br /&gt;
| label133 = {{{bishop 113|}}}&lt;br /&gt;
|  data133 = {{#if:{{{bishop 113|}}}|{{{consecration date 113|}}}}}&lt;br /&gt;
&lt;br /&gt;
| label134 = {{{bishop 114|}}}&lt;br /&gt;
|  data134 = {{#if:{{{bishop 114|}}}|{{{consecration date 114|}}}}}&lt;br /&gt;
&lt;br /&gt;
| label135 = {{{bishop 115|}}}&lt;br /&gt;
|  data135 = {{#if:{{{bishop 115|}}}|{{{consecration date 115|}}}}}&lt;br /&gt;
&lt;br /&gt;
| label136 = {{{bishop 116|}}}&lt;br /&gt;
|  data136 = {{#if:{{{bishop 116|}}}|{{{consecration date 116|}}}}}&lt;br /&gt;
&lt;br /&gt;
| label137 = {{{bishop 117|}}}&lt;br /&gt;
|  data137 = {{#if:{{{bishop 117|}}}|{{{consecration date 117|}}}}}&lt;br /&gt;
&lt;br /&gt;
| label138 = {{{bishop 118|}}}&lt;br /&gt;
|  data138 = {{#if:{{{bishop 118|}}}|{{{consecration date 118|}}}}}&lt;br /&gt;
&lt;br /&gt;
| label139 = {{{bishop 119|}}}&lt;br /&gt;
|  data139 = {{#if:{{{bishop 119|}}}|{{{consecration date 119|}}}}}&lt;br /&gt;
&lt;br /&gt;
| label140 = {{{bishop 120|}}}&lt;br /&gt;
|  data140 = {{#if:{{{bishop 120|}}}|{{{consecration date 120|}}}}}&lt;br /&gt;
&lt;br /&gt;
| label141 = {{{bishop 121|}}}&lt;br /&gt;
|  data141 = {{#if:{{{bishop 121|}}}|{{{consecration date 121|}}}}}&lt;br /&gt;
&lt;br /&gt;
| label142 = {{{bishop 122|}}}&lt;br /&gt;
|  data142 = {{#if:{{{bishop 122|}}}|{{{consecration date 122|}}}}}&lt;br /&gt;
&lt;br /&gt;
| label143 = {{{bishop 123|}}}&lt;br /&gt;
|  data143 = {{#if:{{{bishop 123|}}}|{{{consecration date 123|}}}}}&lt;br /&gt;
&lt;br /&gt;
| label144 = {{{bishop 124|}}}&lt;br /&gt;
|  data144 = {{#if:{{{bishop 124|}}}|{{{consecration date 124|}}}}}&lt;br /&gt;
&lt;br /&gt;
| label145 = {{{bishop 125|}}}&lt;br /&gt;
|  data145 = {{#if:{{{bishop 125|}}}|{{{consecration date 125|}}}}}&lt;br /&gt;
&lt;br /&gt;
| label146 = {{{bishop 126|}}}&lt;br /&gt;
|  data146 = {{#if:{{{bishop 126|}}}|{{{consecration date 126|}}}}}&lt;br /&gt;
&lt;br /&gt;
| label147 = {{{bishop 127|}}}&lt;br /&gt;
|  data147 = {{#if:{{{bishop 127|}}}|{{{consecration date 127|}}}}}&lt;br /&gt;
&lt;br /&gt;
| label148 = {{{bishop 128|}}}&lt;br /&gt;
|  data148 = {{#if:{{{bishop 128|}}}|{{{consecration date 128|}}}}}&lt;br /&gt;
&lt;br /&gt;
| label149 = {{{bishop 129|}}}&lt;br /&gt;
|  data149 = {{#if:{{{bishop 129|}}}|{{{consecration date 129|}}}}}&lt;br /&gt;
&lt;br /&gt;
| label150 = {{{bishop 130|}}}&lt;br /&gt;
|  data150 = {{#if:{{{bishop 130|}}}|{{{consecration date 130|}}}}}&lt;br /&gt;
&lt;br /&gt;
| belowstyle = background:#f2f2f2; font-size:smaller;&lt;br /&gt;
| below = {{#if:{{{sources|}}}| '''Source(s):''' {{{sources}}}}}&lt;br /&gt;
}}&amp;lt;noinclude&amp;gt;&lt;br /&gt;
{{documentation}}&lt;br /&gt;
&amp;lt;!-- Please add categories and interwiki links to /doc subpage, not here! --&amp;gt;&lt;br /&gt;
&amp;lt;/noinclude&amp;gt;&lt;/div&gt;</summary>
		<author><name>Ian</name></author>	</entry>

	<entry>
		<id>https://chaldeanwiki.com/index.php?title=Module:Authority_control&amp;diff=3413</id>
		<title>Module:Authority control</title>
		<link rel="alternate" type="text/html" href="https://chaldeanwiki.com/index.php?title=Module:Authority_control&amp;diff=3413"/>
				<updated>2015-05-19T01:35:22Z</updated>
		
		<summary type="html">&lt;p&gt;Ian: 1 revision imported&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;require('Module:No globals')&lt;br /&gt;
&lt;br /&gt;
local function getCatForId( id )&lt;br /&gt;
    local title = mw.title.getCurrentTitle()&lt;br /&gt;
    local namespace = title.namespace&lt;br /&gt;
    if namespace == 0 then&lt;br /&gt;
        return '[[Category:Wikipedia articles with ' .. id .. ' identifiers]]'&lt;br /&gt;
    elseif namespace == 2 and not title.isSubpage then&lt;br /&gt;
        return '[[Category:User pages with ' .. id .. ' identifiers]]'&lt;br /&gt;
    else&lt;br /&gt;
        return '[[Category:Miscellaneous pages with ' .. id .. ' identifiers]]'&lt;br /&gt;
    end&lt;br /&gt;
end&lt;br /&gt;
&lt;br /&gt;
local function viafLink( id )&lt;br /&gt;
    if not string.match( id, '^%d+$' ) then&lt;br /&gt;
        return false&lt;br /&gt;
    end&lt;br /&gt;
    return '[https://viaf.org/viaf/' .. id .. ' ' .. id .. ']' .. getCatForId( 'VIAF' )&lt;br /&gt;
end&lt;br /&gt;
&lt;br /&gt;
local function kulturnavLink( id )&lt;br /&gt;
    return '[http://kulturnav.org/language/en/' .. id .. ' id]' &lt;br /&gt;
end&lt;br /&gt;
&lt;br /&gt;
local function sikartLink( id )&lt;br /&gt;
    return '[http://www.sikart.ch/KuenstlerInnen.aspx?id=' .. id .. '&amp;amp;lng=en ' .. id .. ']' &lt;br /&gt;
end&lt;br /&gt;
&lt;br /&gt;
local function tlsLink( id )&lt;br /&gt;
	local id2 = mw.ustring.gsub(id, '%s', function(s) return mw.uri.encode(s, 'WIKI') end)&lt;br /&gt;
    return '[http://tls.theaterwissenschaft.ch/wiki/' .. id2 .. ' ' .. id .. ']' &lt;br /&gt;
end&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
local function ciniiLink( id )&lt;br /&gt;
    return '[http://ci.nii.ac.jp/author/' .. id .. '?l=en ' .. id .. ']' &lt;br /&gt;
end&lt;br /&gt;
&lt;br /&gt;
local function bneLink( id )&lt;br /&gt;
    return '[http://catalogo.bne.es/uhtbin/authoritybrowse.cgi?action=display&amp;amp;authority_id=' .. id .. ' ' .. id .. ']' &lt;br /&gt;
end&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
local function uscongressLink( id )&lt;br /&gt;
    return '[http://bioguide.congress.gov/scripts/biodisplay.pl?index=' .. id .. ' ' .. id .. ']' &lt;br /&gt;
end&lt;br /&gt;
&lt;br /&gt;
local function narapersonLink( id )&lt;br /&gt;
    return '[http://research.archives.gov/person/' .. id .. ' ' .. id .. ']' &lt;br /&gt;
end&lt;br /&gt;
&lt;br /&gt;
local function naraorganizationLink( id )&lt;br /&gt;
    return '[http://research.archives.gov/organization/' .. id .. ' ' .. id .. ']' &lt;br /&gt;
end&lt;br /&gt;
&lt;br /&gt;
local function botanistLink( id )&lt;br /&gt;
	local id2 = mw.ustring.gsub(id, '%s', function(s) return mw.uri.encode(s, 'PATH') end)&lt;br /&gt;
    return '[http://www.ipni.org/ipni/advAuthorSearch.do?find_abbreviation=' .. id2 .. ' ' .. id .. ']' &lt;br /&gt;
end&lt;br /&gt;
&lt;br /&gt;
local function mgpLink( id )&lt;br /&gt;
    -- TODO Implement some sanity checking regex&lt;br /&gt;
    return '[http://www.genealogy.ams.org/id.php?id=' .. id .. ' ' .. id .. ']' &lt;br /&gt;
end&lt;br /&gt;
&lt;br /&gt;
local function rslLink( id )&lt;br /&gt;
    -- TODO Implement some sanity checking regex&lt;br /&gt;
    return '[http://aleph.rsl.ru/F?func=find-b&amp;amp;find_code=SYS&amp;amp;adjacent=Y&amp;amp;local_base=RSL11&amp;amp;request=' .. id .. '&amp;amp;CON_LNG=ENG ' .. id .. ']'&lt;br /&gt;
end&lt;br /&gt;
&lt;br /&gt;
local function leonoreLink( id )&lt;br /&gt;
-- Identifiants allant de LH/1/1 à LH/2794/54 (légionnaires)&lt;br /&gt;
-- Identifiants allant de C/0/1 à C/0/84 (84 légionnaires célèbres)&lt;br /&gt;
-- Identifiants allant de 19800035/1/1 à 19800035/385/51670 (légionnaires décédés entre 1954 et 1977, et quelques dossiers de légionnaires décédés avant 1954)&lt;br /&gt;
    if not string.match( id, '^LH/%d%d?%d?%d?/%d%d?%d?$' ) and&lt;br /&gt;
       not string.match( id, '^C/0/%d%d?$' ) and&lt;br /&gt;
	   not string.match( id, '^19800035/%d%d?%d?%d?/%d%d?%d?%d?%d?$' ) then&lt;br /&gt;
        return false&lt;br /&gt;
    end&lt;br /&gt;
    return '[//www.culture.gouv.fr/public/mistral/leonore_fr?ACTION=CHERCHER&amp;amp;FIELD_1=COTE&amp;amp;VALUE_1=' .. id .. ' ' .. id .. ']' &lt;br /&gt;
end&lt;br /&gt;
&lt;br /&gt;
local function sbnLink( id )&lt;br /&gt;
    if not string.match( id, '^IT\\ICCU\\%d%d%d%d%d%d%d%d%d%d$' ) and not string.match( id, '^IT\\ICCU\\%u%u[%d%u]%u\\%d%d%d%d%d%d$' ) then&lt;br /&gt;
        return false&lt;br /&gt;
    end&lt;br /&gt;
    return '[http://opac.sbn.it/opacsbn/opac/iccu/scheda_authority.jsp?bid=' .. id .. ' ' .. id .. ']'&lt;br /&gt;
end&lt;br /&gt;
&lt;br /&gt;
local function nkcLink( id )&lt;br /&gt;
	return '[http://aleph.nkp.cz/F/?func=find-c&amp;amp;local_base=aut&amp;amp;ccl_term=ica=' .. id .. '&amp;amp;CON_LNG=ENG ' .. id .. ']' &lt;br /&gt;
end&lt;br /&gt;
&lt;br /&gt;
local function nclLink( id )&lt;br /&gt;
    if not string.match( id, '^%d+$' ) then&lt;br /&gt;
        return false&lt;br /&gt;
    end&lt;br /&gt;
    return '[http://aleweb.ncl.edu.tw/F/?func=accref&amp;amp;acc_sequence=' .. id .. '&amp;amp;CON_LNG=ENG ' .. id .. ']' &lt;br /&gt;
end&lt;br /&gt;
&lt;br /&gt;
local function ndlLink( id )&lt;br /&gt;
	return '[http://id.ndl.go.jp/auth/ndlna/' .. id .. ' ' .. id .. ']' &lt;br /&gt;
end&lt;br /&gt;
&lt;br /&gt;
local function sudocLink( id )&lt;br /&gt;
    if not string.match( id, '^%d%d%d%d%d%d%d%d[%dxX]$' ) then&lt;br /&gt;
        return false&lt;br /&gt;
    end&lt;br /&gt;
    return '[http://www.idref.fr/' .. id .. ' ' .. id .. ']' &lt;br /&gt;
end&lt;br /&gt;
&lt;br /&gt;
local function hlsLink( id )&lt;br /&gt;
    if not string.match( id, '^%d+$' ) then&lt;br /&gt;
        return false&lt;br /&gt;
    end&lt;br /&gt;
    return '[http://www.hls-dhs-dss.ch/textes/f/F' .. id .. '.php ' .. id .. ']'&lt;br /&gt;
end&lt;br /&gt;
&lt;br /&gt;
local function lirLink( id )&lt;br /&gt;
    if not string.match( id, '^%d+$' ) then&lt;br /&gt;
        return false&lt;br /&gt;
    end&lt;br /&gt;
    return '[http://www.e-lir.ch/e-LIR___Lexicon.' .. id .. '.450.0.html ' .. id .. ']'&lt;br /&gt;
end&lt;br /&gt;
&lt;br /&gt;
local function splitLccn( id )&lt;br /&gt;
    if id:match( '^%l%l?%l?%d%d%d%d%d%d%d%d%d?%d?$' ) then&lt;br /&gt;
        id = id:gsub( '^(%l+)(%d+)(%d%d%d%d%d%d)$', '%1/%2/%3' )&lt;br /&gt;
    end&lt;br /&gt;
    if id:match( '^%l%l?%l?/%d%d%d?%d?/%d+$' ) then&lt;br /&gt;
         return mw.text.split( id, '/' )&lt;br /&gt;
    end&lt;br /&gt;
    return false&lt;br /&gt;
end&lt;br /&gt;
&lt;br /&gt;
local function append(str, c, length)&lt;br /&gt;
    while str:len() &amp;lt; length do&lt;br /&gt;
        str = c .. str&lt;br /&gt;
    end&lt;br /&gt;
    return str&lt;br /&gt;
end&lt;br /&gt;
&lt;br /&gt;
local function lccnLink( id )&lt;br /&gt;
    local parts = splitLccn( id )&lt;br /&gt;
    if not parts then&lt;br /&gt;
        return false&lt;br /&gt;
    end&lt;br /&gt;
    local lccnType = parts[1] ~= 'sh' and 'names' or 'subjects'&lt;br /&gt;
    id = parts[1] .. parts[2] .. append( parts[3], '0', 6 )&lt;br /&gt;
    return '[http://id.loc.gov/authorities/' .. lccnType .. '/' .. id .. ' ' .. id .. ']' .. getCatForId( 'LCCN' )&lt;br /&gt;
end&lt;br /&gt;
&lt;br /&gt;
local function mbLink( id )&lt;br /&gt;
    -- TODO Implement some sanity checking regex&lt;br /&gt;
    return '[//musicbrainz.org/artist/' .. id .. ' ' .. id .. ']' .. getCatForId( 'MusicBrainz' )&lt;br /&gt;
end&lt;br /&gt;
&lt;br /&gt;
--Returns the ISNI check digit isni must be a string where the 15 first elements are digits&lt;br /&gt;
local function getIsniCheckDigit( isni )&lt;br /&gt;
    local total = 0&lt;br /&gt;
    for i = 1, 15 do&lt;br /&gt;
        local digit = isni:byte( i ) - 48 --Get integer value&lt;br /&gt;
        total = (total + digit) * 2&lt;br /&gt;
    end&lt;br /&gt;
    local remainder = total % 11&lt;br /&gt;
    local result = (12 - remainder) % 11&lt;br /&gt;
    if result == 10 then&lt;br /&gt;
        return &amp;quot;X&amp;quot;&lt;br /&gt;
    end&lt;br /&gt;
    return tostring( result )&lt;br /&gt;
end&lt;br /&gt;
&lt;br /&gt;
--Validate ISNI (and ORCID) and retuns it as a 16 characters string or returns false if it's invalid&lt;br /&gt;
--See http://support.orcid.org/knowledgebase/articles/116780-structure-of-the-orcid-identifier&lt;br /&gt;
local function validateIsni( id )&lt;br /&gt;
    id = id:gsub( '[ %-]', '' ):upper()&lt;br /&gt;
    if not id:match( '^%d%d%d%d%d%d%d%d%d%d%d%d%d%d%d[%dX]$' ) then&lt;br /&gt;
        return false&lt;br /&gt;
    end&lt;br /&gt;
    if getIsniCheckDigit( id ) ~= string.char( id:byte( 16 ) ) then&lt;br /&gt;
        return false&lt;br /&gt;
    end&lt;br /&gt;
    return id&lt;br /&gt;
end&lt;br /&gt;
&lt;br /&gt;
local function isniLink( id )&lt;br /&gt;
    id = validateIsni( id )&lt;br /&gt;
    if not id then&lt;br /&gt;
        return false&lt;br /&gt;
    end&lt;br /&gt;
    return '[http://isni-url.oclc.nl/isni/' .. id .. ' ' .. id:sub( 1, 4 ) .. ' ' .. id:sub( 5, 8 ) .. ' '  .. id:sub( 9, 12 ) .. ' '  .. id:sub( 13, 16 ) .. ']' .. getCatForId( 'ISNI' )&lt;br /&gt;
end&lt;br /&gt;
&lt;br /&gt;
local function orcidLink( id )&lt;br /&gt;
    id = validateIsni( id )&lt;br /&gt;
    if not id then&lt;br /&gt;
        return false&lt;br /&gt;
    end&lt;br /&gt;
    id = id:sub( 1, 4 ) .. '-' .. id:sub( 5, 8 ) .. '-'  .. id:sub( 9, 12 ) .. '-'  .. id:sub( 13, 16 )&lt;br /&gt;
    return '[http://orcid.org/' .. id .. ' ' .. id .. ']' .. getCatForId( 'ORCID' )&lt;br /&gt;
end&lt;br /&gt;
&lt;br /&gt;
local function gndLink( id )&lt;br /&gt;
    return '[http://d-nb.info/gnd/' .. id .. ' ' .. id .. ']' .. getCatForId( 'GND' )&lt;br /&gt;
end&lt;br /&gt;
&lt;br /&gt;
local function selibrLink( id )&lt;br /&gt;
	if not string.match( id, '^%d+$' ) then&lt;br /&gt;
        return false&lt;br /&gt;
    end&lt;br /&gt;
    return '[//libris.kb.se/auth/' .. id .. ' ' .. id .. ']' .. getCatForId( 'SELIBR' )&lt;br /&gt;
end&lt;br /&gt;
&lt;br /&gt;
local function bnfLink( id )&lt;br /&gt;
    --Add cb prefix if it has been removed&lt;br /&gt;
    if not string.match( id, '^cb.+$' ) then&lt;br /&gt;
        id = 'cb' .. id&lt;br /&gt;
    end&lt;br /&gt;
&lt;br /&gt;
    return '[http://catalogue.bnf.fr/ark:/12148/' .. id .. ' ' .. id .. '] [http://data.bnf.fr/ark:/12148/' .. id .. ' (data)]' .. getCatForId( 'BNF' )&lt;br /&gt;
end&lt;br /&gt;
&lt;br /&gt;
local function bpnLink( id )&lt;br /&gt;
    if not string.match( id, '^%d+$' ) then&lt;br /&gt;
        return false&lt;br /&gt;
    end&lt;br /&gt;
    return '[http://www.biografischportaal.nl/en/persoon/' .. id .. ' ' .. id .. ']' .. getCatForId( 'BPN' )&lt;br /&gt;
end&lt;br /&gt;
&lt;br /&gt;
local function ridLink( id )&lt;br /&gt;
    return '[http://www.researcherid.com/rid/' .. id .. ' ' .. id .. ']' .. getCatForId( 'RID' )&lt;br /&gt;
end&lt;br /&gt;
&lt;br /&gt;
local function bibsysLink( id )&lt;br /&gt;
    return '[http://ask.bibsys.no/ask/action/result?cmd=&amp;amp;kilde=biblio&amp;amp;cql=bs.autid+%3D+' .. id .. '&amp;amp;feltselect=bs.autid ' .. id .. ']' .. getCatForId( 'BIBSYS' )&lt;br /&gt;
end&lt;br /&gt;
&lt;br /&gt;
local function ulanLink( id )&lt;br /&gt;
    return '[//www.getty.edu/vow/ULANFullDisplay?find=&amp;amp;role=&amp;amp;nation=&amp;amp;subjectid=' .. id .. ' ' .. id .. ']' .. getCatForId( 'ULAN' )&lt;br /&gt;
end&lt;br /&gt;
&lt;br /&gt;
local function nlaLink( id )&lt;br /&gt;
	return '[//nla.gov.au/anbd.aut-an' .. id .. ' ' .. id .. ']' .. getCatForId( 'NLA' )&lt;br /&gt;
end&lt;br /&gt;
&lt;br /&gt;
local function rkdartistsLink( id )&lt;br /&gt;
	return '[https://rkd.nl/en/explore/artists/' .. id .. ' ' .. id .. ']' .. getCatForId( 'RKDartists' )&lt;br /&gt;
end&lt;br /&gt;
&lt;br /&gt;
local function getIdsFromWikidata( item, property )&lt;br /&gt;
    local ids = {}&lt;br /&gt;
    if not item.claims[property] then&lt;br /&gt;
        return ids&lt;br /&gt;
    end&lt;br /&gt;
    for _, statement in pairs( item.claims[property] ) do&lt;br /&gt;
		if statement.mainsnak.datavalue then&lt;br /&gt;
			table.insert( ids, statement.mainsnak.datavalue.value )&lt;br /&gt;
		end&lt;br /&gt;
    end&lt;br /&gt;
    return ids&lt;br /&gt;
end&lt;br /&gt;
&lt;br /&gt;
local function matchesWikidataRequirements( item, reqs )&lt;br /&gt;
    for _, group in pairs( reqs ) do&lt;br /&gt;
        local property = 'p' .. group[1]&lt;br /&gt;
        local qid = group[2]&lt;br /&gt;
        if item.claims[property] ~= nil then&lt;br /&gt;
            for _, statement in pairs ( item.claims[property] ) do&lt;br /&gt;
            	if statement.mainsnak.datavalue ~= nil then&lt;br /&gt;
	                if statement.mainsnak.datavalue.value['numeric-id'] == qid then&lt;br /&gt;
    	                return true&lt;br /&gt;
        	        end&lt;br /&gt;
        	    end&lt;br /&gt;
            end&lt;br /&gt;
        end&lt;br /&gt;
    end&lt;br /&gt;
    return false&lt;br /&gt;
end&lt;br /&gt;
&lt;br /&gt;
local function createRow( id, label, rawValue, link, withUid )&lt;br /&gt;
    if link then&lt;br /&gt;
        if withUid then&lt;br /&gt;
            return '* ' .. label .. ' &amp;lt;span class=&amp;quot;uid&amp;quot;&amp;gt;' .. link .. '&amp;lt;/span&amp;gt;\n'&lt;br /&gt;
        else&lt;br /&gt;
            return '* ' .. label .. ' ' .. link .. '\n'&lt;br /&gt;
        end&lt;br /&gt;
    else&lt;br /&gt;
        return '* &amp;lt;span class=&amp;quot;error&amp;quot;&amp;gt;The ' .. id .. ' id ' .. rawValue .. ' is not valid.&amp;lt;/span&amp;gt;[[Category:Wikipedia articles with faulty authority control identifiers (' .. id .. ')]]\n'&lt;br /&gt;
    end&lt;br /&gt;
end&lt;br /&gt;
&lt;br /&gt;
--In this order: name of the parameter, label, propertyId in Wikidata, formatting function&lt;br /&gt;
local conf = {&lt;br /&gt;
    { 'VIAF', '[[Virtual International Authority File|VIAF]]', 214, viafLink },&lt;br /&gt;
    { 'LCCN', '[[Library of Congress Control Number|LCCN]]', 244, lccnLink },&lt;br /&gt;
    { 'ISNI', '[[International Standard Name Identifier|ISNI]]', 213, isniLink },&lt;br /&gt;
    { 'ORCID', '[[ORCID]]', 496, orcidLink },&lt;br /&gt;
    { 'GND', '[[Integrated Authority File|GND]]', 227, gndLink },&lt;br /&gt;
    { 'SELIBR', '[[LIBRIS|SELIBR]]', 906, selibrLink },&lt;br /&gt;
    { 'SUDOC', '[[Système universitaire de documentation|SUDOC]]', 269, sudocLink },    &lt;br /&gt;
    { 'BNF', '[[Bibliothèque nationale de France|BNF]]', 268, bnfLink },&lt;br /&gt;
    { 'BPN', '[[Biografisch Portaal|BPN]]', 651, bpnLink },&lt;br /&gt;
    { 'RID', '[[ResearcherID]]', 1053, ridLink },&lt;br /&gt;
    { 'BIBSYS', '[[BIBSYS]]', 1015, bibsysLink },&lt;br /&gt;
    { 'ULAN', '[[Union List of Artist Names|ULAN]]', 245, ulanLink },&lt;br /&gt;
    { 'HDS', '[[Historical Dictionary of Switzerland|HDS]]', 902, hlsLink },&lt;br /&gt;
    { 'LIR', '[[Historical Dictionary of Switzerland#Lexicon_Istoric_Retic|LIR]]', 886, lirLink },&lt;br /&gt;
    { 'MBA', '[[MusicBrainz]]', 434, mbLink },&lt;br /&gt;
    { 'MGP', '[[Mathematics Genealogy Project|MGP]]', 549, mgpLink },    &lt;br /&gt;
    { 'NLA', '[[National Library of Australia|NLA]]', 409, nlaLink },&lt;br /&gt;
    { 'NDL', '[[National Diet Library|NDL]]', 349, ndlLink },&lt;br /&gt;
    { 'NCL', '[[National Central Library|NCL]]', 1048, nclLink },&lt;br /&gt;
    { 'NKC', '[[National Library of the Czech Republic|NKC]]', 691, nkcLink },&lt;br /&gt;
    { 'Léonore', '[[:fr:Base Léonore|Léonore]]', 640, leonoreLink }, &lt;br /&gt;
    { 'SBN', '[[Istituto Centrale per il Catalogo Unico|ICCU]]', 396, sbnLink },     &lt;br /&gt;
    { 'RLS', '[[Russian State Library|RLS]]', 947, rslLink },&lt;br /&gt;
    { 'Botanist', '[[Author citation (botany)|Botanist]]', 428, botanistLink },&lt;br /&gt;
    { 'NARA-person', '[[National Archives and Records Administration|NARA]]', 1222, narapersonLink },&lt;br /&gt;
    { 'NARA-organization', '[[National Archives and Records Administration|NARA]]', 1223, naraorganizationLink },&lt;br /&gt;
    { 'USCongress', '[[Biographical Directory of the United States Congress|US Congress]]', 1157, uscongressLink },&lt;br /&gt;
    { 'BNE', '[[Biblioteca Nacional de España|BNE]]', 950, bneLink },&lt;br /&gt;
    { 'CINII', '[[CiNii]]', 271, ciniiLink },&lt;br /&gt;
    { 'TLS', '[[Theaterlexikon der Schweiz|TLS]]', 1362, tlsLink },&lt;br /&gt;
    { 'SIKART', '[[SIKART]]', 781, sikartLink },&lt;br /&gt;
    { 'KULTURNAV', '[[KulturNav]]', 1248, kulturnavLink },&lt;br /&gt;
    { 'RKDartists', '[[Netherlands Institute for Art History#Online artist pages|RKD]]', 650, rkdartistsLink },&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
-- Check that the Wikidata item has this property--&amp;gt;value before adding it&lt;br /&gt;
local reqs = {}&lt;br /&gt;
&lt;br /&gt;
local p = {}&lt;br /&gt;
&lt;br /&gt;
function p.authorityControl( frame )&lt;br /&gt;
    local parentArgs = frame:getParent().args&lt;br /&gt;
    --Create rows&lt;br /&gt;
    local elements = {}&lt;br /&gt;
&lt;br /&gt;
    --redirect PND to GND&lt;br /&gt;
    if (parentArgs.GND == nil or parentArgs.GND == '') and parentArgs.PND ~= nil and parentArgs.PND ~= '' then&lt;br /&gt;
        parentArgs.GND = parentArgs.PND&lt;br /&gt;
    end&lt;br /&gt;
&lt;br /&gt;
    --Wikidata fallback if requested&lt;br /&gt;
    local item = mw.wikibase.getEntityObject()&lt;br /&gt;
    if item ~= nil and item.claims ~= nil then&lt;br /&gt;
        for _, params in pairs( conf ) do&lt;br /&gt;
            if params[3] ~= 0 then&lt;br /&gt;
                local val = parentArgs[params[1]]&lt;br /&gt;
                if not val or val == '' then&lt;br /&gt;
                	local canUseWikidata = nil&lt;br /&gt;
                    if reqs[params[1]] ~= nil then&lt;br /&gt;
                        canUseWikidata = matchesWikidataRequirements( item, reqs[params[1]] )&lt;br /&gt;
                    else&lt;br /&gt;
                        canUseWikidata = true&lt;br /&gt;
                    end&lt;br /&gt;
                    if canUseWikidata then&lt;br /&gt;
                        local wikidataIds = getIdsFromWikidata( item, 'P' .. params[3] )&lt;br /&gt;
                        if wikidataIds[1] then&lt;br /&gt;
                            parentArgs[params[1]] = wikidataIds[1]&lt;br /&gt;
                        end&lt;br /&gt;
                    end&lt;br /&gt;
                end&lt;br /&gt;
            end&lt;br /&gt;
        end&lt;br /&gt;
    end&lt;br /&gt;
&lt;br /&gt;
    --Worldcat&lt;br /&gt;
    if parentArgs['WORLDCATID'] and parentArgs['WORLDCATID'] ~= '' then&lt;br /&gt;
        table.insert( elements, createRow( 'WORLDCATID', '', parentArgs['WORLDCATID'], '[//www.worldcat.org/identities/' .. parentArgs['WORLDCATID'] .. ' WorldCat]', false ) ) --Validation?&lt;br /&gt;
    elseif parentArgs['LCCN'] and parentArgs['LCCN'] ~= '' then&lt;br /&gt;
        local lccnParts = splitLccn( parentArgs['LCCN'] )&lt;br /&gt;
        if lccnParts then&lt;br /&gt;
            table.insert( elements, createRow( 'LCCN', '', parentArgs['LCCN'], '[//www.worldcat.org/identities/lccn-' .. lccnParts[1] .. lccnParts[2] .. '-' .. lccnParts[3] .. ' WorldCat]', false ) )&lt;br /&gt;
        end&lt;br /&gt;
    end&lt;br /&gt;
&lt;br /&gt;
    --Configured rows&lt;br /&gt;
    local rct = 0&lt;br /&gt;
    for k, params in pairs( conf ) do&lt;br /&gt;
        local val = parentArgs[params[1]]&lt;br /&gt;
        if val and val ~= '' then&lt;br /&gt;
            table.insert( elements, createRow( params[1], params[2] .. ':', val, params[4]( val ), true ) )&lt;br /&gt;
            rct = rct + 1&lt;br /&gt;
        end&lt;br /&gt;
    end&lt;br /&gt;
    local Navbox = require('Module:Navbox')&lt;br /&gt;
    local elementscats = ''&lt;br /&gt;
    if rct &amp;gt; 13 then&lt;br /&gt;
    	elementscats  = '[[Category:AC with ' .. rct .. ' elements]]'&lt;br /&gt;
	end&lt;br /&gt;
	&lt;br /&gt;
	if #elements ~= 0 then&lt;br /&gt;
		return Navbox._navbox( {&lt;br /&gt;
			name  = 'Authority control',&lt;br /&gt;
			bodyclass = 'hlist',&lt;br /&gt;
			group1 = '[[Authority control]]' .. elementscats,&lt;br /&gt;
			list1 = table.concat( elements )&lt;br /&gt;
			} )&lt;br /&gt;
	else&lt;br /&gt;
		return &amp;quot;&amp;quot;&lt;br /&gt;
	end&lt;br /&gt;
end&lt;br /&gt;
&lt;br /&gt;
return p&lt;/div&gt;</summary>
		<author><name>Ian</name></author>	</entry>

	<entry>
		<id>https://chaldeanwiki.com/index.php?title=Template:Cite_press_release&amp;diff=3415</id>
		<title>Template:Cite press release</title>
		<link rel="alternate" type="text/html" href="https://chaldeanwiki.com/index.php?title=Template:Cite_press_release&amp;diff=3415"/>
				<updated>2015-05-19T01:35:22Z</updated>
		
		<summary type="html">&lt;p&gt;Ian: 1 revision imported&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;includeonly&amp;gt;{{#invoke:citation/CS1|citation&lt;br /&gt;
|CitationClass=pressrelease&lt;br /&gt;
|type={{{type|Press release}}}&lt;br /&gt;
}}&amp;lt;/includeonly&amp;gt;&amp;lt;noinclude&amp;gt;&lt;br /&gt;
{{documentation}}&lt;br /&gt;
&amp;lt;/noinclude&amp;gt;&lt;/div&gt;</summary>
		<author><name>Ian</name></author>	</entry>

	<entry>
		<id>https://chaldeanwiki.com/index.php?title=Template:Cn&amp;diff=3417</id>
		<title>Template:Cn</title>
		<link rel="alternate" type="text/html" href="https://chaldeanwiki.com/index.php?title=Template:Cn&amp;diff=3417"/>
				<updated>2015-05-19T01:35:22Z</updated>
		
		<summary type="html">&lt;p&gt;Ian: 1 revision imported&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;#REDIRECT [[Template:Citation needed]]&lt;br /&gt;
&lt;br /&gt;
{{This is a redirect|from template shortcut|protected}}&lt;/div&gt;</summary>
		<author><name>Ian</name></author>	</entry>

	<entry>
		<id>https://chaldeanwiki.com/index.php?title=Nicholas_I_Zaya&amp;diff=3411</id>
		<title>Nicholas I Zaya</title>
		<link rel="alternate" type="text/html" href="https://chaldeanwiki.com/index.php?title=Nicholas_I_Zaya&amp;diff=3411"/>
				<updated>2015-05-19T01:35:21Z</updated>
		
		<summary type="html">&lt;p&gt;Ian: 1 revision imported&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{Infobox Patriarch&lt;br /&gt;
|image=&lt;br /&gt;
|name=Nicholas I Zaya&lt;br /&gt;
|birth_name=Nicholas Zaya&lt;br /&gt;
|church=[[Chaldean Catholic Church]]&lt;br /&gt;
|see=[[Patriarchial See of Babylon of the Chaldeans|Babylon of the Chaldeans]]&lt;br /&gt;
|patriarch_of=[[Patriarch of Babylon of the Chaldeans]]&lt;br /&gt;
|residence=[[Iraq]]&lt;br /&gt;
|enthroned=1839&lt;br /&gt;
|ended=May 1847&lt;br /&gt;
|predecessor=[[Yohannan Hormizd]]&lt;br /&gt;
|successor=[[Joseph Audo|Joseph VI Audo]]&lt;br /&gt;
|death_date=1855&lt;br /&gt;
|death_place=[[Khosrowabad, West Azerbaijan|Khosrowa]]&lt;br /&gt;
|consecration = 1836 ([[Bishop (Catholic Church)|Bishop]])&lt;br /&gt;
|consecrated_by=[[Yohannan Hormizd]]&lt;br /&gt;
}}&lt;br /&gt;
Mar '''Nicholas I Zaya''' (or ''Zay{{transl|ar|DIN|ʿ}}a'' or ''Esha{{transl|ar|DIN|ʿ}}ya'') was the patriarch of the [[Chaldean Catholic Church]] from 1839 to 1847.  He succeeded [[Yohannan Hormizd|Yohannan VIII Hormizd]], the last of the [[Mosul]] patriarchs who traced their descent from Eliya VII (1558–91), and his elevation ended four centuries of hereditary succession in the Eliya line.  After Zay{{transl|ar|DIN|ʿ}}a's accession the [[Holy See|Vatican]] attempted to reform abuses within the Chaldean Church, but its interference was strenuously resisted by several Chaldean bishops. As a result, Zay{{transl|ar|DIN|ʿ}}a's short reign was plagued by one crisis after another. In 1846, after the Vatican conspicuously failed to support him against his recalcitrant bishops, he resigned the patriarchate and retired to his native town of Khosrowa, where he died in 1855.  He was succeeded by [[Joseph Audo|Joseph VI Audo]], one of his most determined opponents.&lt;br /&gt;
&lt;br /&gt;
==Early years==&lt;br /&gt;
Zay{{transl|ar|DIN|ʿ}}a was born in [[Khosrowabad, West Azerbaijan|Khosrowa]] ({{lang-syr|ܟܘܣܪܒܐܕ}}), a village near [[Salmas]] in the [[Lake Urmia|Urmia]] region of [[Persia]].  In his youth he studied for several years at the [[College of the Propaganda]] in [[Rome]].  According to the missionary Sheil, who met him in [[Dilman]] in 1836, Zay{{transl|ar|DIN|ʿ}}a studied at the Propaganda for fifteen years and was an outstanding scholar.&amp;lt;ref&amp;gt;Sheil, ''Journey through Kurdistan'', 54–5&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
He was ordained a priest ''c.''1830, and was consecrated [[coadjutor bishop]] of [[Salmas (Chaldean Archdiocese)|Salmas]] in 1836 by the Chaldean patriarch [[Yohannan Hormizd]].&amp;lt;ref&amp;gt;Wilmshurst, ''EOCE'', 198, 313 and 740&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Succession to the patriarchate ==&lt;br /&gt;
On 13 October 1837, conscious that he had not long to live, Yohannan Hormizd designated as coadjutor and 'guardian of the throne' Gregory Peter di Natale, metropolitan of [[Gazarta]], presumably with the intention of excluding his nephew Eliya from the patriarchal dignity.  However, he did not promise the succession to his coadjutor, and in a bull of 25 September 1838 the Vatican appointed Nicholas Zay{{transl|ar|DIN|ʿ}}a Yohannan's coadjutor, with the right of succession.   The main reason for the Vatican's intervention was to ensure that the hereditary principle, first introduced into the Church of the East in the fifteenth century, would play no part in the selection of the next patriarch.  The bull mentioned Yohannan Hormizd's growing infirmity and the desirability of avoiding inconvenience and harm should the patriarchate suddenly become vacant. As a [[Persian people|Persian]] by birth, Zay{{transl|ar|DIN|ʿ}}a could lay claim to the protection of the foreign consuls in [[Turkey]].  He had also been educated at the Propaganda, and it was hoped that after Yohannan's death he would loyally implement Vatican policy.&amp;lt;ref&amp;gt;Giamil, ''Genuinae Relationes'', 400–1&amp;lt;/ref&amp;gt; The [[Papal bull|bull]] of appointment arrived in Mosul after the death of Yohannan Hormizd, thus Nicholas Zay{{transl|ar|DIN|ʿ}}a became patriarch in 1839 and was confirmed by the [[pope]] on April 27, 1840.&lt;br /&gt;
&lt;br /&gt;
The Chaldean metropolitans Lawrent Sho{{transl|ar|DIN|ʿ}}a of [[Kirkuk]], Basil Asmar of [[Amid]], [[Joseph Audo]] of [[Amadiyah|{{transl|ar|DIN|ʿ}}Amadiya]] and Mikha'il Kattula of [[Seert]], angered that they had not been consulted in the choice of Yohannan Hormizd's successor, met in the spring of 1839 in an attempt to elect one of their number patriarch, but were unable to agree.  Meanwhile, Zay{{transl|ar|DIN|ʿ}}a retained the support of the Vatican's apostolic vicar, Laurent Trioche, and the metropolitan Gregory Peter di Natale, who wrote to the Vatican denouncing the conduct of the other bishops and requesting an unequivocal show of support for the new patriarch.  The Vatican confirmed Zay{{transl|ar|DIN|ʿ}}a's succession on 27 April 1840, and directed the Chaldean bishops to obey him.&amp;lt;ref&amp;gt;Badger, ''Nestorians'', i. 168&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Patriarchate ==&lt;br /&gt;
&lt;br /&gt;
Because the manner of his succession was resented by most of the Chaldean hierarchy, Nicholas I Zay{{transl|ar|DIN|ʿ}}a had throughout his short reign limited control over his bishops.  He began by directing [[Joseph Audo]] to leave Amid for {{transl|ar|DIN|ʿ}}Amadiya, so that he could properly administer his metropolitan province, but eventually agreed to let him reside at [[Alqosh]].  He also, like his predecessor, had to reckon with the intransigence of the monks of the monastery of [[Rabban Hormizd Monastery|Rabban Hormizd]], and friends of the patriarch said later that he would have closed down the monastery if he had dared. Instead he permitted 45 elderly monks, including the priest Mikha'il, to retire to lay life.  This indirect approach so reduced the number of monks that the monastery thereafter lost much of its former influence.&amp;lt;ref&amp;gt;[[George Percy Badger|Badger]], ''Nestorians'', i. 168&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
In 1843, after the Nestorian patriarch Shem{{transl|ar|DIN|ʿ}}on XVII Abraham (1820–61) declined to join a [[Kurdish people|Kurdish]] expedition against {{transl|ar|DIN|ʿ}}Amadiya, the Kurdish emirs Nurallah Khan and Bedr Khan Beg attacked the mountain Nestorians of the [[Hakkâri Province|Hakkari]] region of eastern Turkey, with the connivance of the [[Ottoman Empire|Ottoman]] authorities.  The Kurds invaded the Tiyari, Walto and Dez districts, sacking the Nestorian town of [[Ashitha]] and burning most of the villages.  About 10,000 men out of a total population of about 50,000 in these three districts were killed, and many women and children were carried off by the Kurds as captives.  Mar Shem{{transl|ar|DIN|ʿ}}on's elderly mother was raped and then beheaded, and her murderers threw the corpse into the [[Great Zab|Zab]]. Those who survived the massacre, including the patriarch himself, took refuge in Mosul.&amp;lt;ref&amp;gt;Badger, ''Nestorians'', i. 270–1&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
The Kurdish attack on the mountain Nestorians had indirect consequences for the Chaldean Church. Early in 1843 an attempt by Zay{{transl|ar|DIN|ʿ}}a to reform the [[Liturgical year|church calendar]] by adopting the Western date for [[Easter]] aroused strong resentment among the Mosul Chaldeans, and provoked a movement, in which the [[Anglican]] [[missionary]] [[George Percy Badger]] was implicated, to depose him and replace him with Yohannan Hormizd's nephew Eliya.  Eliya was unwilling to challenge the patriarch's authority, and Zay{{transl|ar|DIN|ʿ}}a's opponents turned instead to the Nestorian patriarch Shem{{transl|ar|DIN|ʿ}}on XVII Abraham, then a refugee in Mosul, urging him to lay claim to the patriarchate himself.  Zay{{transl|ar|DIN|ʿ}}a and the [[French people|French]] missionaries who supported him complained vigorously to the Turkish authorities, and wrote to the [[British people|British]] embassy in [[Constantinople]] to protest at Badger's interference.  The Turkish government was initially reluctant to intervene, because of Zay{{transl|ar|DIN|ʿ}}a's ambiguous status as a Persian national, and Zay{{transl|ar|DIN|ʿ}}a finally took his cause to Constantinople, where through the influence of the French embassy he obtained a ''firman'' recognising the Chaldean church as a separate [[Millet (Ottoman Empire)|millet]] and acknowledging him as patriarch. The Anglican mission was withdrawn from Mosul, and Badger returned to England in disgrace.&amp;lt;ref&amp;gt;Badger, ''Nestorians'', i. 169–70&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
After his return from Constantinople in 1845, Zay{{transl|ar|DIN|ʿ}}a did what he could to undermine the influence of the old patriarchal family.  Mar Eliya was not allowed to exercise his episcopal functions, and the monks of the monastery of [[Rabban Hormizd Monastery|Rabban Hormizd]] were encouraged to claim a number of strips of property around Alqosh which may once have belonged to the monastery but had for years been considered as possessions of the patriarchal family.  The French consul supported these claims, and the disputed lands were awarded to the monastery.  According to Badger, 'two hundred and fifty persons were deprived of their patrimony and reduced to beggary through this joint agency.'  Badger persuaded the British consul to intervene, and part of the property was eventually restored to its previous owners.&amp;lt;ref name=&amp;quot;BadgerNestorians&amp;quot;&amp;gt;Badger, ''Nestorians'', i. 171–2&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Resignation and death ==&lt;br /&gt;
The intrigues against Zay{{transl|ar|DIN|ʿ}}a continued into 1846.  His opponents accused him of embezzling church funds, which he had in fact used to restore the monastery of Mar Giwargis near Mosul, and spread rumours, 'generally believed to be without foundation', according to Badger, of immoral conduct.  As a result he was summoned to Rome by the Vatican authorities for these allegations to be investigated.  He refused to obey the summons, and left Mosul for his native village of Khosrowa, where he resigned the patriarchate in May 1847.&amp;lt;ref name=&amp;quot;BadgerNestorians&amp;quot; /&amp;gt;  He remained in Khosrowa until his death in 1855.&amp;lt;ref&amp;gt;Fiey, ''POCN'', 39; Wilmshurst, ''EOCE'', 740&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==Notes==&lt;br /&gt;
{{reflist|2}}&lt;br /&gt;
&lt;br /&gt;
==References==&lt;br /&gt;
*{{cite book |last=Badger |first=George Percy |title=The Nestorians and Their Rituals with the Narrative of a Mission to Mesopotamia and Coordistan in 1842 to 1844 (two volumes)|year=1852 |publisher=Kessinger Publishing |isbn=978-1-4179-4675-4}}&lt;br /&gt;
* Fiey, J. M., ''Pour un Oriens Christianus novus; répertoire des diocèses Syriaques orientaux et occidentaux'' (Beirut, 1993)&lt;br /&gt;
* {{cite book |last=Frazee |first=Charles A. | title=Catholics and Sultans: The Church and the Ottoman Empire 1453-1923 |year=2006 | publisher=Cambridge University Press |isbn= 0-521-02700-4}}&lt;br /&gt;
* {{cite book |last=Giamil |first=Samuel |title=Genuinae relationes inter Sedem Apostolicam et Assyrorum Orientalium seu Chaldaeorum ecclesiam |location=Rome |year=1902}} &lt;br /&gt;
* Hornus, J.-M., 'Mémoire sur l'état actuel et l'avenir de la religion catholique et des missions lazaristes et protestantes en Perse par le Comte de Challaye, consul de France à Erzéroun' (''Cahiers d'Études Chrétiennes Orientales 8-9 für 1970/73''), Action Chrétienne en Orient, Strasbourg o. J., 79f. 85f. 102-109. 148.&lt;br /&gt;
* {{cite journal |last=Tfinkdji |first=J. | title=L’église chaldéenne catholique autrefois et aujourd’hui |journal=Annuaire Pontifical Catholique| issue=17 |year=1914 |pages=449–525}}&lt;br /&gt;
* {{cite book |last=Wilmshurst |first=David |title=The Ecclesiastical Organisation of the Church of the East, 1318-1913 |publisher=Peeters Publishers |year=2000 |isbn=978-90-429-0876-5}} &lt;br /&gt;
* {{cite web|url=http://www.gcatholic.org/dioceses/diocese/baby0.htm|title=Patriarchal See of Babylon|publisher=GCatholic.org|accessdate=2009-02-01}}&lt;br /&gt;
&lt;br /&gt;
{{s-start}}&lt;br /&gt;
{{s-rel|ca}}&lt;br /&gt;
{{s-bef|before=[[Yohannan VIII Hormizd]]&amp;lt;br&amp;gt;(1830-1838)}}&lt;br /&gt;
{{s-ttl|title=[[List of Chaldean Catholic Patriarchs of Babylon|Patriarch of Babylon &amp;lt;br&amp;gt;of the Chaldean Catholic Church]]|years=1839&amp;amp;ndash;1846}} &lt;br /&gt;
{{s-aft|after=[[Joseph Audo|Joseph VI Audo]]&amp;lt;br&amp;gt; (1847-1878)}}&lt;br /&gt;
{{end}}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!-- Metadata: see [[Wikipedia:Persondata]] --&amp;gt;&lt;br /&gt;
{{Persondata&lt;br /&gt;
|NAME= Zaya, Nicholas&lt;br /&gt;
|ALTERNATIVE NAMES= Zayʿa; Eshaʿya&lt;br /&gt;
|SHORT DESCRIPTION=Patriarch of the Chaldean Catholic Church&lt;br /&gt;
|DATE OF BIRTH=&lt;br /&gt;
|PLACE OF BIRTH=&lt;br /&gt;
|DATE OF DEATH=1855&lt;br /&gt;
|PLACE OF DEATH=Khosrowa&lt;br /&gt;
}}&lt;br /&gt;
{{DEFAULTSORT:Zaya, Nicholas 1}}&lt;br /&gt;
[[Category:Assyrian people]]&lt;br /&gt;
[[Category:Iraqi archbishops]]&lt;br /&gt;
[[Category:Chaldean Catholic Patriarchs of Babylon]]&lt;br /&gt;
[[Category:1855 deaths]]&lt;br /&gt;
[[Category:Year of birth unknown]]&lt;/div&gt;</summary>
		<author><name>Ian</name></author>	</entry>

	<entry>
		<id>https://chaldeanwiki.com/index.php?title=Yahballaha_V&amp;diff=3409</id>
		<title>Yahballaha V</title>
		<link rel="alternate" type="text/html" href="https://chaldeanwiki.com/index.php?title=Yahballaha_V&amp;diff=3409"/>
				<updated>2015-05-19T01:35:20Z</updated>
		
		<summary type="html">&lt;p&gt;Ian: 1 revision imported&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{Infobox Patriarch&lt;br /&gt;
|image=&lt;br /&gt;
|honorific-prefix = Mar&lt;br /&gt;
|name=Yahballaha V&lt;br /&gt;
|birth_name=&lt;br /&gt;
|church=[[Chaldean Catholic Church]]&lt;br /&gt;
|see=[[Patriarchial See of Babylon of the Chaldeans|Amid of the Chaldeans]]&lt;br /&gt;
|patriarch_of=[[Patriarch of Babylon of the Chaldeans|Patriarch of the Chaldeans]]&lt;br /&gt;
|residence=[[Siirt]]&lt;br /&gt;
|enthroned= 1572&lt;br /&gt;
|ended= 1580&lt;br /&gt;
|predecessor= [[Abdisho IV Maron]] &lt;br /&gt;
|successor=[[Shimun IX Dinkha]] &lt;br /&gt;
|birth_date= &lt;br /&gt;
|death_date=1580&lt;br /&gt;
}}&lt;br /&gt;
{{Other persons|Yahballaha}}&lt;br /&gt;
&lt;br /&gt;
[[Mar]] '''Yahballaha V''' was the third Patriarch of the [[Chaldean Catholic Church]], from 1572 to 1580.&lt;br /&gt;
&lt;br /&gt;
==See also==&lt;br /&gt;
*[[List of Chaldean Catholic Patriarchs of Babylon]]&lt;br /&gt;
&lt;br /&gt;
{{s-start}}&lt;br /&gt;
{{s-bef|before=[[Abdisho IV Maron]]}}&lt;br /&gt;
{{s-ttl|title=[[List of Chaldean Catholic Patriarchs of Babylon|Patriarch of Babylon]]|years=1572&amp;amp;ndash;1580}}&lt;br /&gt;
{{s-aft|after=[[Shimun IX Dinkha]]}}&lt;br /&gt;
{{end}}&lt;br /&gt;
&lt;br /&gt;
{{Persondata &amp;lt;!-- Metadata: see [[Wikipedia:Persondata]]. --&amp;gt;&lt;br /&gt;
| NAME              = Yahballaha V&lt;br /&gt;
| ALTERNATIVE NAMES =&lt;br /&gt;
| SHORT DESCRIPTION = Chaldean Catholic Patriarch of Babylon&lt;br /&gt;
| DATE OF BIRTH     =&lt;br /&gt;
| PLACE OF BIRTH    =&lt;br /&gt;
| DATE OF DEATH     = 1580&lt;br /&gt;
| PLACE OF DEATH    =&lt;br /&gt;
}}&lt;br /&gt;
{{DEFAULTSORT:Yahballaha, V}}&lt;br /&gt;
[[Category:Chaldean Catholic Patriarchs of Babylon]]&lt;br /&gt;
[[Category:1580 deaths]]&lt;br /&gt;
[[Category:Year of birth unknown]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
{{EC-clergy-stub}}&lt;/div&gt;</summary>
		<author><name>Ian</name></author>	</entry>

	<entry>
		<id>https://chaldeanwiki.com/index.php?title=Shimun_XIII_Dinkha&amp;diff=3407</id>
		<title>Shimun XIII Dinkha</title>
		<link rel="alternate" type="text/html" href="https://chaldeanwiki.com/index.php?title=Shimun_XIII_Dinkha&amp;diff=3407"/>
				<updated>2015-05-19T01:35:19Z</updated>
		
		<summary type="html">&lt;p&gt;Ian: 1 revision imported&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{Infobox Patriarch&lt;br /&gt;
|image=&lt;br /&gt;
|honorific-prefix = Mar&lt;br /&gt;
|name=Shimun XIII Dinkha&lt;br /&gt;
|birth_name=&lt;br /&gt;
|church=[[Chaldean Catholic Church]] (1662–1692)&amp;lt;br&amp;gt;[[Assyrian Church of the East]] (until c. 1700)&lt;br /&gt;
|see=[[Patriarchial See of Babylon of the Chaldeans]] (until 1692)&amp;lt;br&amp;gt; [[Apostolic See]] of [[Seleucia-Ctesiphon]] (until 1700)&lt;br /&gt;
|patriarch_of=[[Patriarch of Babylon of the Chaldeans|Patriarch of the Chaldeans]] &amp;lt;br&amp;gt; Catholicos Patriarch of the [[Assyrian Church of the East]]&lt;br /&gt;
|residence=[[Salmas]] &amp;lt;br&amp;gt;Later in [[Mosul]]&lt;br /&gt;
|enthroned= 1662&lt;br /&gt;
|ended= 1692 (in the Chaldean Catholic Church) &amp;lt;br&amp;gt;1700 (in the Assyrian Church of the East)&lt;br /&gt;
|predecessor= [[Shimun XII Yoalaha]] (Chaldean Catholic Church) &amp;lt;br&amp;gt; Eliya IX (Church of the East)&lt;br /&gt;
|successor=[[Joseph I (Chaldean Patriarch)|Joseph I]] (Chaldean Catholic Church)&amp;lt;br&amp;gt;[[Shimun VIV Shlemon|Shemʿon XIV Shlemon]] (Assyrian Church of the East)&lt;br /&gt;
|birth_date= &lt;br /&gt;
|birth_place=&lt;br /&gt;
|death_date=c. 1700&lt;br /&gt;
|death_place=&lt;br /&gt;
}}&lt;br /&gt;
'''Mar Shimun XIII Dinkha''' was Patriarch of the [[Chaldean Catholic Church]] carrying the title  [[List of Chaldean Catholic Patriarchs of Babylon|Patriarch of Babylon]] between 1662 and 1692 in communion with Rome and residing in [[Salmas]]. He was the last in the hereditary Shimun line of Patriarchs in the Chaldean Catholic Church and, as his predecessors Shimun X Eliyah (1600–1638), Shimun XI Eshuyow (1638–1656) and Shimun XII Yoalaha (1656–1662), not recognized by Rome since the Catholic church does not approve of hereditary line of Patriarchs.&lt;br /&gt;
&lt;br /&gt;
In 1692, Patriarch Shimun XIII moved the seat of his patriarchate to [[Qochanis]] (modern-day [[Konak, Hakkari]]), broke communion with Rome and became Patriarch of the [[Assyrian Church of the East]], continuing the Shimun hereditary line of Patriarchs in the Assyrian church instead, a tradition that continued until the death of Patriarch [[Shimun XXIII Eshai]] in 1975.&lt;br /&gt;
&lt;br /&gt;
Patriarch Shimun Dinkha died around 1700 AD and was succeeded in the Assyrian Church of the East by [[Shimun XIV Shlemon|Shemʿon XIV Shlemon]].&lt;br /&gt;
&lt;br /&gt;
{{s-start}}&lt;br /&gt;
{{s-bef|before=[[Shimun XII Yoalaha]]}}&lt;br /&gt;
{{s-ttl|title=[[List of Chaldean Catholic Patriarchs of Babylon|Patriarch of Babylon]]|years=1662&amp;amp;ndash;1692}}&lt;br /&gt;
{{s-aft|after=[[Joseph I (Chaldean Patriarch)|Joseph I]]}}&lt;br /&gt;
{{end}}&lt;br /&gt;
&lt;br /&gt;
{{s-start}}&lt;br /&gt;
{{succession box&lt;br /&gt;
 |before=[[Eliya IX]]&amp;lt;br&amp;gt;1617–1660&lt;br /&gt;
 |title=[[List of Patriarchs of the Church of the East|Catholicos-Patriarch of the Church of the East]]&lt;br /&gt;
 |years=1681–c. 1700&lt;br /&gt;
 |after=[[Shimun XIV Shlemon|Shemʿon XIV Shlemon]]&amp;lt;br&amp;gt;c. 1700–c. 1740&lt;br /&gt;
}}&lt;br /&gt;
{{s-end}}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
{{Persondata &amp;lt;!-- Metadata: see [[Wikipedia:Persondata]]. --&amp;gt;&lt;br /&gt;
| NAME              = Shimun, XIII&lt;br /&gt;
| ALTERNATIVE NAMES =&lt;br /&gt;
| SHORT DESCRIPTION = Patriarch of Babylon&lt;br /&gt;
| DATE OF BIRTH     =&lt;br /&gt;
| PLACE OF BIRTH    = &lt;br /&gt;
| DATE OF DEATH     = c.1700&lt;br /&gt;
| PLACE OF DEATH    = &lt;br /&gt;
}}&lt;br /&gt;
{{DEFAULTSORT:Shimun, Xiii}}&lt;br /&gt;
&lt;br /&gt;
==See also==&lt;br /&gt;
*[[List of Chaldean Catholic Patriarchs of Babylon]]&lt;br /&gt;
*[[List of Patriarchs of the Church of the East]]&lt;br /&gt;
&lt;br /&gt;
[[Category:Chaldean Catholic Patriarchs of Babylon]]&lt;br /&gt;
[[Category:Catholicos Patriarchs of the Assyrian Church of the East]]&lt;/div&gt;</summary>
		<author><name>Ian</name></author>	</entry>

	<entry>
		<id>https://chaldeanwiki.com/index.php?title=Shimun_XII_Yoalaha&amp;diff=3405</id>
		<title>Shimun XII Yoalaha</title>
		<link rel="alternate" type="text/html" href="https://chaldeanwiki.com/index.php?title=Shimun_XII_Yoalaha&amp;diff=3405"/>
				<updated>2015-05-19T01:35:17Z</updated>
		
		<summary type="html">&lt;p&gt;Ian: 1 revision imported&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{Other people|Shimun}}&lt;br /&gt;
{{Infobox Patriarch&lt;br /&gt;
|image=&lt;br /&gt;
|honorific-prefix = Mar&lt;br /&gt;
|name=Shimun XII Yoalaha&lt;br /&gt;
|birth_name=&lt;br /&gt;
|church=[[Chaldean Catholic Church]]&lt;br /&gt;
|see=[[Patriarchial See of Babylon of the Chaldeans|Patriarchial See of Babylon of the Chaldeans Shimun line of the Chaldeans]]&lt;br /&gt;
|patriarch_of=[[Patriarch of Babylon of the Chaldeans|Patriarch of the Chaldeans]]&lt;br /&gt;
|residence=[[Salmas]]&lt;br /&gt;
|enthroned= 1656&lt;br /&gt;
|ended= 1662&lt;br /&gt;
|predecessor= [[Shimun XI Eshuyow]] &lt;br /&gt;
|successor=[[Shimun XIII Dinkha]] &lt;br /&gt;
|birth_date= &lt;br /&gt;
|death_date=1662&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
[[Mar]] '''Shimun XII Yoalaha''' was the seventh Patriarch of the [[Chaldean Catholic Church]], from 1656 to 1662.&lt;br /&gt;
&lt;br /&gt;
He succeeded Patriarch [[Shimun XI Eshuyow]], the seat of the patriarchate of Babylon of the Chaldean Catholic church being in [[Salmas]] during his reign.&lt;br /&gt;
&lt;br /&gt;
Mar Shimun XII Yoalaha like his predecessors [[Shimun X Eliyah]] and [[Shimun XI Eshuyow]] was not formally recognized by Rome after the hereditary Shimun line of Patriarchs was reintroduced by  Patriarch [[Shimun IX Dinkha]] in the Chaldean church. Hereditary succession is an unacceptable practice in Roman Catholic Church.&lt;br /&gt;
&lt;br /&gt;
His successor in 1662 was [[Shimun XIII Dinkha]] the last of the Shimun line in the Chaldean Church.&lt;br /&gt;
&lt;br /&gt;
==See also==&lt;br /&gt;
*[[List of Chaldean Catholic Patriarchs of Babylon]]&lt;br /&gt;
&lt;br /&gt;
{{s-start}}&lt;br /&gt;
{{s-bef|before=[[Shimun XI Eshuyow]]}}&lt;br /&gt;
{{s-ttl|title=[[List of Chaldean Catholic Patriarchs of Babylon|Patriarch of Babylon]]|years=1656&amp;amp;ndash;1662}}&lt;br /&gt;
{{s-aft|after=[[Shimun XIII Dinkha]]}}&lt;br /&gt;
{{end}}&lt;br /&gt;
&lt;br /&gt;
{{Persondata &amp;lt;!-- Metadata: see [[Wikipedia:Persondata]]. --&amp;gt;&lt;br /&gt;
| NAME              = Shimun 12 &lt;br /&gt;
| ALTERNATIVE NAMES =&lt;br /&gt;
| SHORT DESCRIPTION = Patriarch of Babylonia&lt;br /&gt;
| DATE OF BIRTH     =&lt;br /&gt;
| PLACE OF BIRTH    =&lt;br /&gt;
| DATE OF DEATH     = 1662&lt;br /&gt;
| PLACE OF DEATH    =&lt;br /&gt;
}}&lt;br /&gt;
{{DEFAULTSORT:Shimun, Xii}}&lt;br /&gt;
[[Category:Chaldean Catholic Patriarchs of Babylon]]&lt;br /&gt;
[[Category:1662 deaths]]&lt;br /&gt;
[[Category:Year of birth unknown]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
{{EasternCatholic-bishop-stub}}&lt;/div&gt;</summary>
		<author><name>Ian</name></author>	</entry>

	<entry>
		<id>https://chaldeanwiki.com/index.php?title=Shimun_XI_Eshuyow&amp;diff=3403</id>
		<title>Shimun XI Eshuyow</title>
		<link rel="alternate" type="text/html" href="https://chaldeanwiki.com/index.php?title=Shimun_XI_Eshuyow&amp;diff=3403"/>
				<updated>2015-05-19T01:35:15Z</updated>
		
		<summary type="html">&lt;p&gt;Ian: 1 revision imported&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{Other people|Shimun}}&lt;br /&gt;
{{Infobox Patriarch&lt;br /&gt;
|image=&lt;br /&gt;
|honorific-prefix = Mar&lt;br /&gt;
|name=Shimun XI Eshuyow&lt;br /&gt;
|birth_name=&lt;br /&gt;
|church=[[Chaldean Catholic Church]]&lt;br /&gt;
|see=[[Patriarchial See of Babylon of the Chaldeans|Patriarchial See of Babylon of the Chaldeans Shimun line of the Chaldeans]]&lt;br /&gt;
|patriarch_of=[[Patriarch of Babylon of the Chaldeans|Patriarch of the Chaldeans]]&lt;br /&gt;
|residence=[[Salmas]]&lt;br /&gt;
|enthroned= c.1638&lt;br /&gt;
|ended= 1656&lt;br /&gt;
|predecessor= [[Shimun X Eliyah]] &lt;br /&gt;
|successor=[[Shimun XII Yoalaha]] &lt;br /&gt;
|birth_date= &lt;br /&gt;
|death_date=1656&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
[[Mar]] '''Shimun XI Eshuyow''' was the sixth Patriarch of the [[Chaldean Catholic Church]], from 1638 to 1656.&lt;br /&gt;
&lt;br /&gt;
He succeeded Patriarch [[Shimun X Eliyah]], The seat of the patriarchate of Babylon of the Chaldean Catholic church being in [[Salmas]] during his reign.&lt;br /&gt;
&lt;br /&gt;
Mar Shimun XI Eshuyow like his predecessor [[Shimun X Eliyah]] was not formally recognized by Rome, after the hereditary Shimun line of Patriarchs was reintroduced by Patriarch [[Shimun IX Dinkha]]. Hereditary succession ia an unacceptable practice by Roman Catholic Church.&lt;br /&gt;
&lt;br /&gt;
His successor was [[Shimun XII Yoalaha]] (1656–1662).&lt;br /&gt;
&lt;br /&gt;
==See also==&lt;br /&gt;
*[[List of Chaldean Catholic Patriarchs of Babylon]]&lt;br /&gt;
&lt;br /&gt;
{{s-start}}&lt;br /&gt;
{{s-bef|before=[[Shimun X Eliyah]]}}&lt;br /&gt;
{{s-ttl|title=[[List of Chaldean Catholic Patriarchs of Babylon|Patriarch of Babylon]]|years=1638&amp;amp;ndash;1656}}&lt;br /&gt;
{{s-aft|after=[[Shimun XII Yoalaha]]}}&lt;br /&gt;
{{end}}&lt;br /&gt;
&lt;br /&gt;
{{Persondata &amp;lt;!-- Metadata: see [[Wikipedia:Persondata]]. --&amp;gt;&lt;br /&gt;
| NAME              = Shimun 11 &lt;br /&gt;
| ALTERNATIVE NAMES =&lt;br /&gt;
| SHORT DESCRIPTION = Patriarch of Babylonia&lt;br /&gt;
| DATE OF BIRTH     =&lt;br /&gt;
| PLACE OF BIRTH    =&lt;br /&gt;
| DATE OF DEATH     = 1656&lt;br /&gt;
| PLACE OF DEATH    =&lt;br /&gt;
}}&lt;br /&gt;
{{DEFAULTSORT:Shimun, Xi}}&lt;br /&gt;
[[Category:Chaldean Catholic Patriarchs of Babylon]]&lt;br /&gt;
[[Category:1656 deaths]]&lt;br /&gt;
[[Category:Year of birth unknown]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
{{EasternCatholic-bishop-stub}}&lt;/div&gt;</summary>
		<author><name>Ian</name></author>	</entry>

	<entry>
		<id>https://chaldeanwiki.com/index.php?title=Shimun_X_Eliyah&amp;diff=3401</id>
		<title>Shimun X Eliyah</title>
		<link rel="alternate" type="text/html" href="https://chaldeanwiki.com/index.php?title=Shimun_X_Eliyah&amp;diff=3401"/>
				<updated>2015-05-19T01:35:10Z</updated>
		
		<summary type="html">&lt;p&gt;Ian: 1 revision imported&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{Other people|Shimun}}&lt;br /&gt;
{{Infobox Patriarch&lt;br /&gt;
|image=&lt;br /&gt;
|honorific-prefix = Mar&lt;br /&gt;
|name=Shimun X Eliyah&lt;br /&gt;
|birth_name=&lt;br /&gt;
|church=[[Chaldean Catholic Church]]&lt;br /&gt;
|see=[[Patriarchial See of Babylon of the Chaldeans|Patriarchial See of Babylon of the Chaldeans Shimun line of the Chaldeans]]&lt;br /&gt;
|patriarch_of=[[Patriarch of Babylon of the Chaldeans|Patriarch of the Chaldeans]]&lt;br /&gt;
|residence=[[Salmas]]&lt;br /&gt;
|enthroned= c. 1600&lt;br /&gt;
|ended= 1638&lt;br /&gt;
|predecessor= [[Shimun IX Dinkha]] &lt;br /&gt;
|successor=[[Shimun XI Eshuyow]] &lt;br /&gt;
|birth_date= &lt;br /&gt;
|death_date=1638&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
[[Mar]] '''Shimun X Eliyah''' was the fifth Patriarch of the [[Chaldean Catholic Church]], from c. 1600 to c. 1638.&lt;br /&gt;
&lt;br /&gt;
He succeeded Patriarch [[Shimun IX Dinkha]] and moved the seat of the patriarchate of Babylon of the Chaldean Catholic church from [[Urmia]] to [[Salmas]].&lt;br /&gt;
&lt;br /&gt;
Mar Shimun X Eliyah was not formally recognized by Rome as he was part of the hereditary Shimun line of Patriarchs reintroduced by his predecessor [[Shimun IX Dinkha]]. Hereditary succession is an unacceptable practice by Roman Catholic Church.&lt;br /&gt;
&lt;br /&gt;
His successor was [[Shimun XI Eshuyow]] (1638–1656).&lt;br /&gt;
&lt;br /&gt;
==See also==&lt;br /&gt;
*[[List of Chaldean Catholic Patriarchs of Babylon]]&lt;br /&gt;
&lt;br /&gt;
{{s-start}}&lt;br /&gt;
{{s-bef|before=[[Shimun IX Dinkha]]}}&lt;br /&gt;
{{s-ttl|title=[[List of Chaldean Catholic Patriarchs of Babylon|Patriarch of Babylon]]|years=1600&amp;amp;ndash;1638}}&lt;br /&gt;
{{s-aft|after=[[Shimun XI Eshuyow]]}}&lt;br /&gt;
{{end}}&lt;br /&gt;
&lt;br /&gt;
{{Persondata &amp;lt;!-- Metadata: see [[Wikipedia:Persondata]]. --&amp;gt;&lt;br /&gt;
| NAME              = Shimun 10 &lt;br /&gt;
| ALTERNATIVE NAMES =&lt;br /&gt;
| SHORT DESCRIPTION = Patriarch of Babylonia&lt;br /&gt;
| DATE OF BIRTH     =&lt;br /&gt;
| PLACE OF BIRTH    =&lt;br /&gt;
| DATE OF DEATH     = 1638&lt;br /&gt;
| PLACE OF DEATH    =&lt;br /&gt;
}}&lt;br /&gt;
{{DEFAULTSORT:Shimun, X}}&lt;br /&gt;
[[Category:Chaldean Catholic Patriarchs of Babylon]]&lt;br /&gt;
[[Category:1638 deaths]]&lt;br /&gt;
[[Category:Year of birth unknown]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
{{EasternCatholic-bishop-stub}}&lt;/div&gt;</summary>
		<author><name>Ian</name></author>	</entry>

	<entry>
		<id>https://chaldeanwiki.com/index.php?title=Shimun_VIII_Yohannan_Sulaqa&amp;diff=3399</id>
		<title>Shimun VIII Yohannan Sulaqa</title>
		<link rel="alternate" type="text/html" href="https://chaldeanwiki.com/index.php?title=Shimun_VIII_Yohannan_Sulaqa&amp;diff=3399"/>
				<updated>2015-05-19T01:35:08Z</updated>
		
		<summary type="html">&lt;p&gt;Ian: 1 revision imported&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{Infobox Patriarch&lt;br /&gt;
|image=John sulaqa.gif&lt;br /&gt;
|honorific-prefix = Mar&lt;br /&gt;
|name=Shimun VIII Yohannan Sulaqa&lt;br /&gt;
|birth_name=Yohannan Sulaqa&lt;br /&gt;
|church=[[Chaldean Catholic Church]]&lt;br /&gt;
|see=[[Patriarchial See of Babylon of the Chaldeans|Amid of the Chaldeans]]&lt;br /&gt;
|patriarch_of=[[Patriarch of Babylon of the Chaldeans|Patriarch of the Chaldeans]]&lt;br /&gt;
|residence=[[Amid]], [[Turkey]]&lt;br /&gt;
|enthroned= 28 April 1553&lt;br /&gt;
|ended= January 1555&lt;br /&gt;
|predecessor=&lt;br /&gt;
|successor=[[Abdisho IV Maron]]&lt;br /&gt;
|birth_date= ''[[circa]]'' 1510&lt;br /&gt;
|birth_place=[[Mosul]]&lt;br /&gt;
|death_date=January 1555&lt;br /&gt;
|death_place=[[Amadiyah]]&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
[[Mar]] '''Shimun VIII Yohannan Sulaqa''' ({{lang-syc|ܫܡܥܘܢ ܬܡܝܢܝܐ ܝܘܚܢܢ ܣܘܠܩܐ}}; also '''John Soulaqa''', '''Sulaka''' or '''Sulacha''', circa 1510–1555) was the first [[List of Chaldean Catholic Patriarchs of Babylon|Patriarch]] of what was to become the [[Chaldean Catholic Church]], from 1553 to 1555, after it broke from the Assyrian Church.&lt;br /&gt;
&lt;br /&gt;
Yohannan Sulaqa's ascension as Patriarch was part of the [[Schism of 1552|1552 schism]] in the [[Assyrian Church of the East]] which resulted in the establishment of rival patriarchates and ultimately a permanent rift in the Assyrian Church. He was elected by those who opposed the hereditary patriarchal succession within the [[Abuna]] family, and he took an unprecedented step in the Church of the East: he traveled to [[Rome]], accepted the [[Catholic Church|Catholic]] creed and was consecrated as Patriarch in 1553, after at first failing in an attempt to join the [[Syriac Orthodox Church]].&amp;lt;ref name=&amp;quot;Baum&amp;quot;&amp;gt;{{cite book|first1=Wilhelm|last1=Baum|first2=Dietmar W.|last2=Winkler |title=The Church of the East: A Concise History|year=2003|publisher=[[Routledge]]|isbn=978-0-415-29770-7 |url=http://books.google.com/?id=yt0X840SjpEC|accessdate=2009-02-05|page=113}}&amp;lt;/ref&amp;gt;&amp;lt;ref&amp;gt;''Cambridge History'', p. 521&amp;lt;/ref&amp;gt; His reign did not last long though: Upon his return, due to strong opposition by the opposing patriarch, Sulaqa was imprisoned by the [[Ottoman Empire|Ottoman]] leader of [[Amadiyah]], tortured, and executed in January 1555.&amp;lt;ref name=Frazee/&amp;gt; He is considered a martyr of the Catholic Church.&amp;lt;ref&amp;gt;{{cite book|editor=Angold, Michael|title=The Cambridge History of Christianity|volume=Volume 5, Eastern Christianity|year=2006|publisher=Cambridge University Press|isbn=978-0-521-81113-2|page=527}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==Background==&lt;br /&gt;
Up to Yohannan Sulaqa, the Assyrian Church of the East was united in a single patriarchate and the [[Episcopal see]] was located in the ancient Assyrian city of [[Alqosh]]. In the 15th century the Patriarch Mar [[Shimun IV Basidi]] (1437&amp;amp;ndash;1493) made the office hereditary in his own family,&amp;lt;ref name=&amp;quot;newCath Encyclopedia&amp;quot;&amp;gt;{{cite encyclopedia |title =Chaldean Catholic Church (Eastern Catholic) | encyclopedia =The new Catholic Encyclopedia| volume=3| pages =366| publisher =The Catholic University of America |year =2003}}&amp;lt;/ref&amp;gt; whose name was known as ''Bar Mama'' or ''Abuna'' family.&lt;br /&gt;
&lt;br /&gt;
This was made possible through the ancient [[Canonical law]] of the Church of East, which decreed that only [[metropolitan bishop]]s could confirm a patriarch. As a result, Shimun IV and his successor only appointed their family members as metropolitan bishops,&amp;lt;ref name=&amp;quot;Wilmshurst&amp;quot;&amp;gt;{{cite book |last=Wilmshurst |first=David |title=The Ecclesiastical Organisation of the Church of the East, 1318&amp;amp;ndash;1913 |publisher=Peeters Publishers |year=2000 |isbn=978-90-429-0876-5|page=19}}&amp;lt;/ref&amp;gt; in order for the uncle to choose his brothers or nephews to succeed him as patriarch. This designated successor, once consecrated as metropolitan bishop with right of succession, was called ''natar kursi''.&lt;br /&gt;
&lt;br /&gt;
The patriarch [[Shemon VII Ishoyahb]], consecrated either towards the end of 1538 or early in 1539, was highly unpopular due to his illicit activities in profligate life, selling church properties and allowing the use of concubines. Furthermore, he consecrated his own nephews at the ages of twelve and fifteen as metropolitan bishops. These actions led to wide protest causing further upheaval and instability in the church.&lt;br /&gt;
&lt;br /&gt;
==Life==&lt;br /&gt;
Yohannan Sulaqa was born c. 1510 to Daniel Bit-Bellu, a member of an ethnic [[Assyrian people|Assyrian]] family in the [[Mosul]] region of northern Mesopotamia. Around 1540 Sulaqa became [[abbot]] of the monastery of [[Rabban Hormizd Monastery|Rabban Hormizd]] in [[Alqosh]] (or, according to an alternative account, of the monastery of Beth Qoqa near [[Erbil]]). The literal translation of Sulaqa in English is [[Ascension of Jesus|Ascension]].&lt;br /&gt;
&lt;br /&gt;
Widespread complaints emerged against Shimun VII's consecration of his younger nephew as his designated successor. This led to three non-related Assyrian bishops of Shimun VII (the bishops of [[Arbil]], [[Urmia]] and [[Salmas]]) to call an assembly in Mosul of clergy, monks, and members from ten regions, to elect the hesitant Yohannan Sulaqa as the new patriarch. A bishop of metropolitan rank was needed at the ceremony in order to consecrate Sulaqa as patriarch. Opposition from members of the patriarchal Abuna family, and the doctrinal differences with the [[Syrian Orthodox Church]], led to the decision of asking [[Pope Julius III]] of Rome to celebrate the consecration.&lt;br /&gt;
&lt;br /&gt;
Yohannan Sulaqa, along with seventy delegates, traveled to [[Jerusalem]] to meet the [[Custodian of the Holy Land]]. The group persuaded the [[Franciscan]] friars that they agreed with the faith professed by the [[Papacy]] and expressed the desire to have Sulaqa confirmed as patriarch by the pope.&amp;lt;ref&amp;gt;{{cite book|last=Frazee|first=Charles A. |title=Catholics and Sultans: The Church and the Ottoman Empire 1453&amp;amp;ndash;1923 |year=2006 |publisher=Cambridge University Press |isbn=978-0-521-02700-7|page=56}}&amp;lt;/ref&amp;gt; The Friars gave them a letter of presentation to the pope, and Sulaqa with a noble traveled to Rome, where [[Andreas Masius]] gave him assistance as a translator in the court of pope Julius III.&lt;br /&gt;
&lt;br /&gt;
Yohannan Sulaqa requested the pope consecrate him as patriarch. He justified this request by informing the papacy that after Mar Shimun VII Ishuyau's death in 1551, his nephew (also to be named the traditional Shimun) would succeed him as the head of the church, but this nephew was not qualified to be consecrated as bishop because the restrictions pronounced in the Canonical Law regarding age were violated. Moreover it was understood that the young nephew had died.&amp;lt;ref name=&amp;quot;Becchetti&amp;quot;&amp;gt;{{cite book |last=Becchetti |first=Filippo Angelico |title=Istoria degli ultimo quattro secoli della Chiesa, Vol. 10|year=1796 |location=Rome|url=http://books.google.com/?id=LU4TAAAAQAAJ&amp;amp;pg=PA155|accessdate=2009-02-06|pages=155&amp;amp;ndash;157}}&amp;lt;/ref&amp;gt; For this reason many historians such as Tisserant, Tfinkdji, and Fiey postulate the existence of one Shimun (VIII) who reigned in Alqosh from 1552 to 1558. More recently scholars such as Habbi and Lampart, as well as Becchetti in the 18th century,&amp;lt;ref name=&amp;quot;Becchetti&amp;quot;/&amp;gt; suggest on the contrary that Shimun VII did not die in 1551 but reigned till 1558,&amp;lt;ref name=&amp;quot;Murre&amp;quot;&amp;gt;{{cite web|url=http://syrcom.cua.edu/Hugoye/Vol2No2/HV2N2Murre.html |title=The Patriarchs of the Church of the East from the Fifteenth to Eighteenth Centuries |publisher=Hugoye: Journal of Syriac Studies |accessdate=2009-02-04 |author=Heleen H.L. Murre}}&amp;lt;/ref&amp;gt; thus Sulaqa had lied to the pope.&lt;br /&gt;
&lt;br /&gt;
On February 20, 1553, Yohannan Sulaqa made a profession of faith in front of the Pope. On April 9, 1553, he was consecrated as bishop in [[St. Peter's Basilica]] in Rome by Cardinal [[John Álvarez y Alva de Toledo]], [[Dominican Order|OP]] (1488&amp;amp;ndash;1557) (or by the pope himself according other sources).&amp;lt;ref name=&amp;quot;Angold&amp;quot;&amp;gt;{{cite book|last=O’Mahony |first=Anthony |editor=Angold, Michael |title=Eastern Christianity|series=Cambridge History of Christianity|volume=5|year=2006|publisher=[[Cambridge University Press]] |isbn=978-0-521-81113-2 |chapter=Syriac Christianity in the modern Middle East|page=527}}&amp;lt;/ref&amp;gt; Sulaqa's appointment as patriarch was ratified by the [[papal bull]] entitled ''&amp;quot;Divina disponente clementia.&amp;quot;'' In the course of the [[Papal Consistory|consistory]] held on April 28, 1553 Sulaqa received the [[pallium]], i.e. the sign of his patriarchal authority, from the hands of the pope. He took the traditional Assyrian Christian name of ''Shimun'' VIII.&lt;br /&gt;
&lt;br /&gt;
Yohannan Sulaqa traveled land via to [[Constantinople]] and from there to the northern Assyrian town of [[Amid]] where he arrived on November 12, 1553 and where he fixed his [[episcopal see|See]]. He was accompanied by the bishop [[Ambrose Buttigeg]], OP († 1558), a powerful [[Maltese people|Maltese]] clergyman, who was specially appointed as &amp;quot;Nuncio for Mosul.&amp;quot;&lt;br /&gt;
&lt;br /&gt;
In January 1555 he was summoned, imprisoned for many months, tortured and executed, probably by drowning, by the local [[Pasha]] of [[Amadiyah]] instigated by the partisans of Shimun VII,&amp;lt;ref name=&amp;quot;Frazee&amp;quot;&amp;gt;{{cite book|last=Frazee|first=Charles A. |title=Catholics and Sultans: The Church and the Ottoman Empire 1453&amp;amp;ndash;1923 |year=2006 |publisher=Cambridge University Press |isbn=978-0-521-02700-7|page=57}}&amp;lt;/ref&amp;gt; shortly after ordaining five metropolitans. For [[Catholics]] he is considered a martyr.&lt;br /&gt;
&lt;br /&gt;
Sulaqa's brother, Joseph Mar (Sulaqa) of India, held the office from 1556 to 1569 of Metropolitan of the [[Saint Thomas Christian tradition|Thomas Christians]] in South India.&lt;br /&gt;
&lt;br /&gt;
==Title==&lt;br /&gt;
Yohannan Sulaqa was pointedly given the title of &amp;quot;Patriarch of Mosul and Athur&amp;quot; ([[Assyria]]) in Rome,&amp;lt;ref&amp;gt;{{cite book |last=Koodapuzha |first=Xavier |title=Faith and Communion in the Indian Church of Saint Thomas Christians|location=Kerala, India|publisher=Oriental Institute of Religious Studies|page=59}}&amp;lt;/ref&amp;gt; not in a restrictive sense, but meaning ''of the Church of the East.'', which was founded in Assyria, and at that time, Kerala aside, was exclusive to northern Mesopotamia, the former Assyria. The Chronicle of the Carmelites states that Sulaqa was proclaimed ''Patriarch of the Eastern Assyrians'' but on April 19, 1553 the title was changed to ''Patriarch of the Chaldeans,''&amp;lt;ref&amp;gt;{{cite journal |last=Yana (Bebla) |first=George V. |title=Myth vs. Reality|journal=JAA Studies|volume=14|issue=1|page=80|year=2000}}&amp;lt;/ref&amp;gt; perhaps in reference to the [[Old Testament]], which  gives Abraham's birthplace as &amp;quot;Ur of Chaldees&amp;quot; at a time long before the Chaldeans entered Mesopotamia (and which many modern scholars now believe was actually in [[Assyria]] or [[Asia Minor]]), rather than to any ethnic or geographic link with the long extinct [[Chaldea]]ns of the south eastern extremities of Iraq.&amp;lt;ref&amp;gt;{{cite web|url=http://www.biblegateway.com/passage/?search=Genesis%2011:28-31;&amp;amp;version=9; |title=Genesis 11:28-31; KJV; - And Haran died before his father Terah |publisher=Bible Gateway |date= |accessdate=2012-08-17}}&amp;lt;/ref&amp;gt;&amp;lt;ref&amp;gt;{{cite web|url=http://www.biblegateway.com/passage/?book_id=16&amp;amp;chapter=9&amp;amp;verse=7&amp;amp;version=9&amp;amp;context=verse |title=Nehemiah 9:7 KJV - Thou art the LORD the God, who didst |publisher=Bible Gateway |date= |accessdate=2012-08-17}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
The term ''Chaldeans'' had a history of being used in an ethnically and geographically inaccurate sense by Rome, having been previously officially used by the [[Council of Florence]] in 1445 as a new name for a group of [[Greek people|Greek]] [[Nestorianism|Nestorian]]s of [[Cyprus]] who entered in [[Full Communion]] with the [[Catholic Church]].&amp;lt;ref&amp;gt;Council of Florence, ''Bull of union with the Chaldeans and the Maronites of Cyprus'' Session 14, 7 August 1445 [http://www.papalencyclicals.net/Councils/ecum17.htm]&amp;lt;/ref&amp;gt; Rome followed to use the term ''Chaldeans'' to indicate the members of the Church of the East in Communion with Rome (mainly not to use the term ''Nestorian'' that was theologically unacceptable) also in 1681 for [[Joseph I (Chaldean Patriarch)|Joseph I]] and later in 1830 when [[Yohannan Hormizd]], of the line of Alqosh, became the first ''&amp;quot;Patriarch of Babylon of the Chaldeans&amp;quot;'' of the modern Chaldean Catholic Church.&lt;br /&gt;
&lt;br /&gt;
==The ''Shimun'' line==&lt;br /&gt;
Shimun VIII Yohannan Sulaqa was the first incumbent of the ''Shimun'' line of the Assyrian Church of the East. This patriarchal See was initially located in Amid, but very soon moved to [[Siirt]], then to [[Urmia]], then to [[Khosrowa]] (near [[Salmas]]) and from the second half of 17th century to [[Qochanis]]. Also the area of influence moved from the North West of the [[Assyrian homeland]] to the North Eastern mountains.&lt;br /&gt;
&lt;br /&gt;
The last patriarch of this line recognized by the Pope was [[Shimun IX Dinkha]] (died 1600) and later there were only few correspondences thought missionaries. This See reintroduced in 1600 the traditional heredity system for patriarchs' succession, a practice unacceptable to Rome. In 1692, patriarch [[Mar Shimun XIII Dinkha]]&amp;lt;ref name=&amp;quot;Angold&amp;quot;/&amp;gt; broke formally the communion with Rome and returned his members to the Assyrian Church. The patriarchate of the present-day [[Assyrian Church of the East]], with its See in [[Chicago]], forms the continuation of this line.&amp;lt;ref name=&amp;quot;Murre&amp;quot;/&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==See also==&lt;br /&gt;
*[[Schism of 1552]]&lt;br /&gt;
*[[List of Chaldean Catholic Patriarchs of Babylon]]&lt;br /&gt;
&lt;br /&gt;
==Notes==&lt;br /&gt;
{{reflist|2}}&lt;br /&gt;
&lt;br /&gt;
==Sources==&lt;br /&gt;
* {{cite book|editor=Angold, Michael|title=The Cambridge History of Christianity|volume=Volume 5, Eastern Christianity|year=2006|publisher=Cambridge University Press|isbn=978-0-521-81113-2}}&lt;br /&gt;
* {{cite journal |last=Gulik |first=W. v. |title=Die Konsistorialakten über die Begründung des uniert-chaldäischen Patriarchates von Mosul unter Papst Julius III |journal=Oriens Christianus |volume=4|page=261&amp;amp;ndash;277|year=1904}}&lt;br /&gt;
* {{cite journal |last=Habbi |first=Joseph |title=Signification de l'union chaldéenne de Mar Sulaqa avec Rome en 1553 |journal=L'Orient Syrien |volume=11|pages=99&amp;amp;ndash;132|year=1966}}&lt;br /&gt;
&lt;br /&gt;
==External links==&lt;br /&gt;
* http://www.chaldeancatholics.com&lt;br /&gt;
&lt;br /&gt;
{{s-start}}&lt;br /&gt;
{{s-rel|ca}}&lt;br /&gt;
{{s-bef|before=N/A}}&lt;br /&gt;
{{s-ttl|title=[[List of Chaldean Catholic Patriarchs of Babylon|Patriarch of Babylon]]|years=1553&amp;amp;ndash;1555}}&lt;br /&gt;
{{s-aft|after=[[Abdisho IV Maron]]}}&lt;br /&gt;
{{end}}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
{{Persondata &amp;lt;!-- Metadata: see [[Wikipedia:Persondata]]. --&amp;gt;&lt;br /&gt;
| NAME              = Shimun, VIII Yohannan Sulaqa&lt;br /&gt;
| ALTERNATIVE NAMES =&lt;br /&gt;
| SHORT DESCRIPTION = Patriarch of Babylonia&lt;br /&gt;
| DATE OF BIRTH     =&lt;br /&gt;
| PLACE OF BIRTH    = [[Mosul]]&lt;br /&gt;
| DATE OF DEATH     = 1555&lt;br /&gt;
| PLACE OF DEATH    = [[Amadiyah]]&lt;br /&gt;
}}&lt;br /&gt;
{{DEFAULTSORT:Shimun, VIII Yohannan Sulaqa}}&lt;br /&gt;
[[Category:1555 deaths]]&lt;br /&gt;
[[Category:16th-century archbishops]]&lt;br /&gt;
[[Category:Iraqi Assyrian people]]&lt;br /&gt;
[[Category:16th-century Roman Catholic martyrs]]&lt;br /&gt;
[[Category:Converts to Eastern Catholicism]]&lt;br /&gt;
[[Category:Converts to Catholicism from the Assyrian Church of the East]]&lt;br /&gt;
[[Category:Chaldean Catholic Patriarchs of Babylon]]&lt;br /&gt;
[[Category:People executed by drowning]]&lt;br /&gt;
[[Category:Year of birth uncertain]]&lt;/div&gt;</summary>
		<author><name>Ian</name></author>	</entry>

	<entry>
		<id>https://chaldeanwiki.com/index.php?title=Shimun_IX_Dinkha&amp;diff=3397</id>
		<title>Shimun IX Dinkha</title>
		<link rel="alternate" type="text/html" href="https://chaldeanwiki.com/index.php?title=Shimun_IX_Dinkha&amp;diff=3397"/>
				<updated>2015-05-19T01:35:04Z</updated>
		
		<summary type="html">&lt;p&gt;Ian: 1 revision imported&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{Other people|Shimun}}&lt;br /&gt;
{{Infobox Patriarch&lt;br /&gt;
|image=&lt;br /&gt;
|honorific-prefix = Mar&lt;br /&gt;
|name=Shimun IX Dinkha&lt;br /&gt;
|birth_name=&lt;br /&gt;
|church=[[Chaldean Catholic Church]]&lt;br /&gt;
|see=[[Patriarchial See of Babylon of the Chaldeans|Amid of the Chaldeans]]&lt;br /&gt;
|patriarch_of=[[Patriarch of Babylon of the Chaldeans|Patriarch of the Chaldeans]]&lt;br /&gt;
|residence=[[Siirt]] then [[Urmia]]&lt;br /&gt;
|enthroned= 1580&lt;br /&gt;
|ended= c. 1600&lt;br /&gt;
|predecessor= [[Yahballaha V]] &lt;br /&gt;
|successor=[[Shimun X Eliyah]] &lt;br /&gt;
|birth_date= &lt;br /&gt;
|death_date=c. 1600&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
[[Mar]] '''Shimun IX Dinkha''' was the fourth Patriarch of the [[Chaldean Catholic Church]], from 1580 to c.1600.&lt;br /&gt;
&lt;br /&gt;
He moved the seat of the patriarchate of Babylon of the Chaldean Catholic church from [[Siirt]] to [[Urmia]] whereas his successor [[Shimun X Eliyah]] moved it to [[Salmas]].&lt;br /&gt;
&lt;br /&gt;
Mar Shimun IX Dinkha was the last Patriarch of the Shimun line to be formally recognized by Rome. He reintroduced the hereditary succession, an unacceptable practice by Roman Catholic Church. His hereditary line of successors [[Shimun X Eliyah]] (c. 1600–1638), [[Shimun XI Eshuyow]] (1638–1656), Shimun XII Yoalaha (1656–1662) and [[Shimun XIII Dinkha]] (1662–1692) resided all in [[Salmas]] and were not recognized by Rome.&lt;br /&gt;
&lt;br /&gt;
[[Shimun XIII Dinkha]] moved the See to [[Qochanis]] and from 1692 became Patriarch of the [[Assyrian Church of the East]] continuing the Shimun line there.&lt;br /&gt;
&lt;br /&gt;
==See also==&lt;br /&gt;
*[[List of Chaldean Catholic Patriarchs of Babylon]]&lt;br /&gt;
&lt;br /&gt;
{{s-start}}&lt;br /&gt;
{{s-bef|before=[[Yahballaha V]]}}&lt;br /&gt;
{{s-ttl|title=[[List of Chaldean Catholic Patriarchs of Babylon|Patriarch of Babylon]]|years=1580&amp;amp;ndash;1600}}&lt;br /&gt;
{{s-aft|after=[[Shimun X Eliyah]]}}&lt;br /&gt;
{{end}}&lt;br /&gt;
&lt;br /&gt;
{{Persondata &amp;lt;!-- Metadata: see [[Wikipedia:Persondata]]. --&amp;gt;&lt;br /&gt;
| NAME              = Shimun 09 &lt;br /&gt;
| ALTERNATIVE NAMES =&lt;br /&gt;
| SHORT DESCRIPTION = Patriarch of Babylonia&lt;br /&gt;
| DATE OF BIRTH     =&lt;br /&gt;
| PLACE OF BIRTH    =&lt;br /&gt;
| DATE OF DEATH     = c1600&lt;br /&gt;
| PLACE OF DEATH    =&lt;br /&gt;
}}&lt;br /&gt;
{{DEFAULTSORT:Shimun, Ix}}&lt;br /&gt;
[[Category:Chaldean Catholic Patriarchs of Babylon]]&lt;br /&gt;
[[Category:1600 deaths]]&lt;br /&gt;
[[Category:Year of birth unknown]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
{{EasternCatholic-bishop-stub}}&lt;/div&gt;</summary>
		<author><name>Ian</name></author>	</entry>

	<entry>
		<id>https://chaldeanwiki.com/index.php?title=Louis_Raphael_I_Sako&amp;diff=3395</id>
		<title>Louis Raphael I Sako</title>
		<link rel="alternate" type="text/html" href="https://chaldeanwiki.com/index.php?title=Louis_Raphael_I_Sako&amp;diff=3395"/>
				<updated>2015-05-19T01:35:02Z</updated>
		
		<summary type="html">&lt;p&gt;Ian: 1 revision imported&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{Infobox Christian leader&lt;br /&gt;
| type             = Patriarch&lt;br /&gt;
| honorific-prefix = His Beatitude&lt;br /&gt;
| name             = {{unbulleted list|Louis Raphaël I Sako|ܠܘܝܣ ܪܘܦܐܝܠ ܩܕܡܝܐ ܣܟܘ}}&lt;br /&gt;
| honorific-suffix = &lt;br /&gt;
| native_name      = &lt;br /&gt;
| native_name_lang = &lt;br /&gt;
| title            = [[Patriarch of Babylon of the Chaldeans]]&lt;br /&gt;
| image            = &lt;br /&gt;
| image_size       = &lt;br /&gt;
| alt              = &lt;br /&gt;
| caption          = &lt;br /&gt;
| church           = &lt;br /&gt;
| archdiocese      = &lt;br /&gt;
| province         = &lt;br /&gt;
| metropolis       = &lt;br /&gt;
| diocese          = &lt;br /&gt;
| see              = [[Chaldean Catholic Patriarchate of Babylon]]&lt;br /&gt;
| elected          = 31 January 2013&lt;br /&gt;
| appointed        = 1 February 2013&lt;br /&gt;
| term             = &lt;br /&gt;
| term_start       = &lt;br /&gt;
| quashed          = &lt;br /&gt;
| term_end         = &lt;br /&gt;
| predecessor      =[[Emmanuel III Delly]] &lt;br /&gt;
| opposed          = &lt;br /&gt;
| successor        = &lt;br /&gt;
| other_post       = Chaldean Archbishop of Baghdad&lt;br /&gt;
&amp;lt;!---------- Orders ----------&amp;gt;&lt;br /&gt;
| ordination       = 1 June 1974&lt;br /&gt;
| ordinated_by     = &lt;br /&gt;
| consecration     = 14 November 2003&lt;br /&gt;
| consecrated_by   = [[André Sana]]&lt;br /&gt;
| cardinal         = &lt;br /&gt;
| rank             = &lt;br /&gt;
&amp;lt;!---------- Personal details ----------&amp;gt;&lt;br /&gt;
| birth_name       = Louis Sako&lt;br /&gt;
| birth_date       = {{Birth date and age|1948|07|04|df=y}}&lt;br /&gt;
| birth_place      = [[Zakho]], [[Iraq]]&lt;br /&gt;
| death_date       = &amp;lt;!-- {{Death date and age|YYYY|MM|DD|YYYY|MM|DD}} (death date then birth date) --&amp;gt;&lt;br /&gt;
| death_place      = &lt;br /&gt;
| buried           = &lt;br /&gt;
| nationality      = &lt;br /&gt;
| religion         = [[Chaldean Catholic Church|Chaldean Catholic]]&lt;br /&gt;
| residence        = Iraq&lt;br /&gt;
| parents          = &lt;br /&gt;
| spouse           = &lt;br /&gt;
| children         = &lt;br /&gt;
| occupation       = &lt;br /&gt;
| profession       = &lt;br /&gt;
| previous_post    = {{unbulleted list|Archbishop of Kerkūk (2002–2013)}}&lt;br /&gt;
| education        =&lt;br /&gt;
| alma_mater       = &lt;br /&gt;
| motto            = &lt;br /&gt;
| signature        = &lt;br /&gt;
| signature_alt    = &lt;br /&gt;
| coat_of_arms     = Coat of arms of Louis Raphael I Sako.svg&lt;br /&gt;
| coat_of_arms_alt = &lt;br /&gt;
&amp;lt;!---------- Sainthood ----------&amp;gt;&lt;br /&gt;
| feast_day        = &lt;br /&gt;
| venerated        = &lt;br /&gt;
| saint_title      = &lt;br /&gt;
| beatified_date   = &lt;br /&gt;
| beatified_place  = &lt;br /&gt;
| beatified_by     = &lt;br /&gt;
| canonized_date   = &lt;br /&gt;
| canonized_place  = &lt;br /&gt;
| canonized_by     = &lt;br /&gt;
| attributes       = &lt;br /&gt;
| patronage        = &lt;br /&gt;
| shrine           = &lt;br /&gt;
| suppressed_date  = &lt;br /&gt;
&amp;lt;!---------- Other ----------&amp;gt;&lt;br /&gt;
| other            = &lt;br /&gt;
}}&lt;br /&gt;
{{Ordination&lt;br /&gt;
| date of diaconal ordination =&lt;br /&gt;
| place of diaconal ordination =&lt;br /&gt;
| ordained deacon by =&lt;br /&gt;
| date of priestly ordination =1 June 1974&lt;br /&gt;
| place of priestly ordination =&lt;br /&gt;
| ordained priest by =&lt;br /&gt;
| date of consecration = 14 November 2003&lt;br /&gt;
| place of consecration = &lt;br /&gt;
| consecrated by       = [[André Sana]]&lt;br /&gt;
| co-consecrator1       = [[Shlemon Warduni]]&lt;br /&gt;
| co-consecrator2       = [[Paulos Faraj Rahho]]&lt;br /&gt;
}}&lt;br /&gt;
'''Louis Raphaël I Sako''' ({{lang-syr|ܠܘܝܣ ܪܘܦܐܝܠ ܩܕܡܝܐ ܣܟܘ}}) (born 4 July 1948) is the current [[Chaldean Catholic Patriarchate of Babylon|Chaldean Catholic Patriarch of Babylon]] and the Head of the [[Chaldean Catholic Church]] since his [[Appointment of Catholic bishops|election]] on 1 February 2013.&lt;br /&gt;
&lt;br /&gt;
== Biography ==&lt;br /&gt;
=== Early life ===&lt;br /&gt;
Sako was born in the city of [[Zakho]] on the Iraq–Turkey border. He is ethnically Assyrian and from a community that has had a religious presence in the city since the 5th century AD. &amp;lt;ref&amp;gt;Chabot, &amp;quot;Synodicon orientale&amp;quot;, 676&amp;lt;/ref&amp;gt;Before he was ordained a bishop, then-Fr Sako had demanded to see President [[Saddam Hussein]] after the Iraqi Government refused to allow him to teach religious education. Saddam refused his request but the cleric responded by doing a separate doctorate and, because it had little religious content, the Government gave him his teaching licence, which enabled him to teach the subject.&amp;lt;ref&amp;gt;[http://www.thetablet.co.uk/latest-news/5045] {{dead link|date=March 2014}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
On 1 February 2013, Pope Benedict XVI granted him ''ecclesiastica communio'' (ecclesiastical communion)&amp;lt;ref&amp;gt;{{cite web | url=http://www.news.va/en/news/vatican-abp-louis-sako-elected-patriarch-of-the-ch | title=Abp. Louis Sako elected Patriarch of the Chaledean Church | publisher=News.va | date=February 1, 2013 | accessdate=February 1, 2013}}&amp;lt;/ref&amp;gt; which the leaders of the [[Eastern Catholic Churches|Eastern-rite Catholic churches]] seek as a sign of their unity with the wider Catholic church.&amp;lt;ref name=&amp;quot;catholica1&amp;quot;&amp;gt;{{cite web|url=http://press.catholica.va/news_services/bulletin/news/30411.php?index=30411&amp;amp;lang=en |title=Elezione del nuovo Patriarca di Babilonia dei Caldei (Iraq) |publisher=Press.catholica.va |date= |accessdate=2013-12-28}}&amp;lt;/ref&amp;gt;&amp;lt;ref&amp;gt;{{cite web|url=http://www.microsofttranslator.com/BV.aspx?ref=IE8Activity&amp;amp;a=http%3A%2F%2Fpress.catholica.va%2Fnews_services%2Fbulletin%2Fnews%2F30412.php%3Findex%3D30412%26lang%3Den |title=Granting of Ecclesiastica Communio to the new Patriarch of Babylon for the Chaldeans |publisher=Microsofttranslator.com |date= |accessdate=2013-12-28}}&amp;lt;/ref&amp;gt; Patriarch Louis Raphaël I Sako speaks Syriac, German, French, English, Italian, and Arabic.&amp;lt;ref name=&amp;quot;catholica1&amp;quot;/&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Sako was ordained a [[Priesthood (Catholic Church)|priest]] on 1 June 1974 for the Chaldean Archeparchy of [[Mosul]]. After his election and subsequent confirmation in 2003 he was consecrated the [[Chaldean Catholic]] [[Eparch|Archeparch]] of [[Kirkuk]] on 27 September 2003. He was elected to the position by a synod of bishops of the Chaeldean Catholic Church on 24 October 2002.&amp;lt;ref&amp;gt;{{Catholic-hierarchy|bishop|bsako|Patriarch Louis Raphaël I Sako|23 January 2015}}&amp;lt;/ref&amp;gt; He was awarded the Defensor Fidei prize in 2008 and in 2010, he was awarded the International [[Pax Christi]] Award.&lt;br /&gt;
&lt;br /&gt;
In August 2009, and at the beginning of [[Ramadan]], Sako sent out an appeal for national peace, reconciliation and end to violence along with other religious leaders in Kirkuk. Archeparch Sako explained that this is &amp;quot;a gesture of closeness to our Muslim brothers. We are all brothers, sons of the same God we must respect and cooperate for the good of the people and our country. &amp;quot; &amp;quot;Iraq – said Msgr. Sako – needs reconciliation and dialogue”. The participants included representatives of Ali Sistani and Muqtada al Sadr.&amp;lt;ref&amp;gt;{{cite web|last=Gheddo |first=Piero |url=http://www.asianews.it/news-en/In-Kirkuk-Christian-and-Muslim-leaders-for-dialogue-and-reconciliation-16181.html |title=In Kirkuk Christian and Muslim leaders for dialogue and reconciliation |publisher=Asianews.it |date= |accessdate=2013-12-28}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
Sako has stated that he would go against a centuries old tradition of wearing the traditional Assyrian head cover &amp;quot;shash&amp;quot;.&amp;lt;ref&amp;gt;{{cite web|url=http://vaticaninsider.lastampa.it/nel-mondo/dettaglio-articolo/articolo/caldei-sako-papa-pope-el-papa-21930/ |title=Il patriarca che rinuncia al &amp;quot;Shash&amp;quot; – Vatican Insider |publisher=Vaticaninsider.lastampa.it |date=2013-02-04 |accessdate=2013-12-28}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== As Patriarch ===&lt;br /&gt;
The Synod of Bishops of the Chaldean Catholic Church, convoked in Rome on 28 January 2013, electing him Patriarch of Babylon in succession of [[Emmanuel III Delly]] who had resigned because of old age. Sako chose Louis Raphael I as his regnal name.&lt;br /&gt;
&lt;br /&gt;
In July 2014 Sako led a wave of condemnation for the [[Islamic State of Iraq and Syria|Sunni Islamists]] who demanded Christians either convert, submit to their radical rule and pay a religious levy or face death by the sword. At the Vatican, [[Pope Francis]] decried what he said was the persecution of Christians in the birthplace of their faith, while U.N. Secretary-General [[Ban Ki-moon]] said the Islamic State's actions could constitute a crime against humanity.Hundreds of Christian families left Mosul ahead of Saturday's ultimatum, many of them stripped of their possessions as they fled for safety. They formed the remnants of a community which once numbered in the tens of thousands and traced its presence in Mosul to the earliest years of Christianity.&amp;lt;ref&amp;gt;[http://www.reuters.com/article/2014/07/20/us-iraq-security-christians-idUSKBN0FP0R120140720?utm_source=Sailthru&amp;amp;utm_medium=email&amp;amp;utm_term=%2AMideast%20Brief&amp;amp;utm_campaign=2014_The%20Middle%20East%20Daily_7.21.14 Iraq Catholic leader says Islamic State worse than Genghis Khan]&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
In September 2014 he said “The U.S. is indirectly responsible for what is going on in Iraq as it said it would ensure democracy and the well-being of the people, but 10 years have passed and on the contrary we have gone backward,” Sako told reporters at Beirut's airport. He was responding to a question following remarks attributed to him in the local daily Ad-Diyar in which he accused the U.S. of supporting ISIS. Sako had also criticized Muslim countries for lack of support. “Our Muslim neighbours did not help us,” he said, as he urged Muslim preachers to issue a religious ruling against the killing of all innocent people. “Issuing a fatwa preventing Muslims from killing fellow Muslims is not enough,” Sako said.&amp;lt;ref&amp;gt;[http://www.dailystar.com.lb/News/Lebanon-News/2014/Aug-28/268782-chaldean-patriarch-sako-says-us-behind-isis.ashx#ixzz3CAEVgSUD In Kirkuk Christian and Muslim leaders for dialogue and reconciliation |date=2009-08-29  |accessdate=2014-09-23]&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
In October 2014, Patriarch Sako suspended 10 priests that fled Iraq after they refused an order to return to the country. &amp;lt;ref&amp;gt;{{cite news |title=Chaldean Catholic patriarch suspends 10 priests, including 1 from El Cajon |last=Phillips |first=Preston|url=http://www.10news.com/news/chaldean-catholic-patriarch-suspends-10-priests-including-1-from-el-cajon-10222014 |publisher=KGTV | date=2014-10-22 |accessdate=2015-05-17}}&amp;lt;/ref&amp;gt; The priests, including Fr. Noel Gorgis, who has lived in the United States for 20 years, appealed to [[Pope Francis]] for relief from the order. In January 2015, Pope Francis granted permission to the 10 to remain in the United States. &amp;lt;ref&amp;gt;{{cite news |title=Pope to El Cajon priest: stay put&lt;br /&gt;
 |last=Popescu, first=Roxana| url=http://m.utsandiego.com/news/2015/jan/08/chaldean-priest-vatican-safety/ |publisher=San Diego Union Tribune |date=2015-01-08 |accessdate=2015-05-18}}&amp;lt;/ref&amp;gt;  Patriarch Sako later renewed his order despite the Pope's decision.&amp;lt;ref&amp;gt;{{cite web |title=Chaldean patriarch defies pope, orders priests back to Iraq |url=http://www.sandiego6.com/news/local/Chaldean-Patriarch-of-Iraq-defies-Pope-and-orders-local-Chaldean-priests-back-to-Iraq-288358501.html?m=y&amp;amp;smobile=y |publisher=XETV San Diego 6 |accessdate=2015-05-18}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==References==&lt;br /&gt;
{{Reflist}}&lt;br /&gt;
&lt;br /&gt;
{{s-start}}&lt;br /&gt;
{{s-rel|ca}}&lt;br /&gt;
{{s-bef|before=[[André Sana]]}}&lt;br /&gt;
{{s-ttl|title=[[Kirkuk (Chaldean Archdiocese)|Chaldean Catholic Archbishop of Kirkuk]]|years=2003–2013}}&lt;br /&gt;
{{s-aft|after=[[Yousif Thomas Mirkis]]}}&lt;br /&gt;
{{s-break}}&lt;br /&gt;
{{s-bef|before=[[Emmanuel III Delly]]}}&lt;br /&gt;
{{s-ttl|title=[[List of Chaldean Catholic Patriarchs of Babylon|Patriarch of Babylon &amp;lt;br&amp;gt;of the Chaldean Catholic Church]]|years=2013–present}}&lt;br /&gt;
{{s-inc}}&lt;br /&gt;
{{s-end}}&lt;br /&gt;
&lt;br /&gt;
{{Persondata&lt;br /&gt;
| NAME             = Sako, Louis Raphaël I&lt;br /&gt;
| ALTERNATIVE NAMES =&lt;br /&gt;
| SHORT DESCRIPTION = [[Chaldean Catholic]] [[Eparch|Archeparch]] of [[Kirkuk, Iraq]]&lt;br /&gt;
| DATE OF BIRTH     = 4 July 1948&lt;br /&gt;
| PLACE OF BIRTH    = [[Zakho]], [[Iraq]]&lt;br /&gt;
| DATE OF DEATH     =&lt;br /&gt;
| PLACE OF DEATH    =&lt;br /&gt;
}}&lt;br /&gt;
{{DEFAULTSORT:Sako, Louis Raphael I}}&lt;br /&gt;
[[Category:1948 births]]&lt;br /&gt;
[[Category:Living people]]&lt;br /&gt;
[[Category:Chaldean Catholic Patriarchs of Babylon]]&lt;br /&gt;
[[Category:Iraqi Assyrian people]]&lt;br /&gt;
[[Category:21st-century Roman Catholic archbishops]]&lt;br /&gt;
[[Category:Eastern Catholic bishops]]&lt;br /&gt;
[[Category:Iraqi Eastern Catholics]]&lt;br /&gt;
[[Category:People from Zakho]]&lt;br /&gt;
[[Category:Iraqi archbishops]]&lt;br /&gt;
[[Category:Iraqi bishops]]&lt;br /&gt;
[[Category:Chaldean Catholics]]&lt;br /&gt;
[[Category:Chaldean archbishops]]&lt;br /&gt;
[[Category:Pontifical Urbaniana University alumni]]&lt;br /&gt;
[[Category:Members of the Congregation for the Oriental Churches]]&lt;/div&gt;</summary>
		<author><name>Ian</name></author>	</entry>

	<entry>
		<id>https://chaldeanwiki.com/index.php?title=Patriarchs_of_the_Church_of_the_East&amp;diff=3393</id>
		<title>Patriarchs of the Church of the East</title>
		<link rel="alternate" type="text/html" href="https://chaldeanwiki.com/index.php?title=Patriarchs_of_the_Church_of_the_East&amp;diff=3393"/>
				<updated>2015-05-19T01:34:56Z</updated>
		
		<summary type="html">&lt;p&gt;Ian: 1 revision imported&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Conventional [[List of Patriarchs of the Church of the East|lists]] of '''Patriarchs of the Church of the East''' include around 130 patriarchs.  A number of these patriarchs are legendary, or invented, or have been included in the standard lists on dubious evidence.  This article sets out the historical evidence for the patriarchal succession in the [[Church of the East]] and its successor churches, the [[Assyrian Church of the East]], the [[Chaldean Catholic Church]], and the [[Ancient Church of the East]].&lt;br /&gt;
&lt;br /&gt;
== Fictionalisation of the early history of the Church of the East ==&lt;br /&gt;
The Church of the East, although separated from the [[State church of the Roman Empire]], was not immune to its fashions.  One such fashion was to fill in the inevitable gaps in the historical record to trace a succession of bishops in individual dioceses right back to the 1st century, preferably to an apostolic founder.  This fashion found particular favour in the case of the diocese of Seleucia-Ctesiphon.  The first bishop of Seleucia-Ctesiphon for whom incontestable evidence exists was [[Papa (bishop)|Papa]], who was consecrated around 280.  During the 6th century ingenious attempts were made to link Papa with [[Saint Mari|Mari]], the legendary apostle of Babylonia.  The author of the 6th-century ''Acts of Mari'' simply ignored the gap of two and a half centuries that separated the two men and declared that Mari had founded the diocese of Seleucia-Ctesiphon shortly before his death and consecrated Papa as his successor.  Later writers were more cunning with their inventions.  [[Shahlufa]] and [[Ahadabui]], two late-3rd-century bishops of Erbil who had played a notable part in the affairs of the church of Seleucia-Ctesiphon, were converted retrospectively into early patriarchs.  Ahadabui was said to have governed the church of Seleucia-Ctesiphon from 204 to 220, and Shahlufa from 220 to 224.  For the 2nd century, three patriarchs were frankly invented:  [[Abris]] (121–37), [[Abraham (bishop)|Abraham]] (159–71) and [[Yaqob I|Ya{{transl|ar|DIN|ʿ}}qob]] (190).  All three men were declared to be relatives of Joseph, the earthly father of Jesus, and given plausible backstories.  These five phantom 'patriarchs' were included in all the later histories of the Church of the East, and by the 12th century their existence was an article of faith for the historian Mari bin Sulaiman.  They are still included by courtesy in the traditional [[List of Patriarchs of the Church of the East]], even though most scholars agree that they never existed.&amp;lt;ref&amp;gt;Fiey, ''Jalons'', 64–5&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Uncertain patriarchal succession, 1318–1552 ==&lt;br /&gt;
The patriarchal succession of the Church of the East between 1318 and 1552 cannot be satisfactorily determined.  The conventional lists of its patriarchs given by [[Fiey]] and others rest on very dubious evidence, and the few known facts are set out here.&lt;br /&gt;
&lt;br /&gt;
The patriarch [[Yahballaha III]] died in November 1317, probably on Saturday 12 November.&amp;lt;ref&amp;gt;Wallis Budge, ''The Monks of Kublai Khan'', 305–6; Gismondi, ''Maris Amri et Slibae de Patriarchis Nestorianorum Commentaria'', ii. 97 and 99; and Moule, ''Christians in China Before the Year 1550'', 126–7&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
His successor [[Timothy II (Nestorian Patriarch)|Timothy II]], according to the acts of his synod, was consecrated in February 1318.  He was still alive in 1328, but probably died two or three years later, to be succeeded after an uncertain interval by [[Denha II]] in 1336/7, who himself died in 1381/2.&amp;lt;ref&amp;gt;MSS Diyarbakr (Scher) 70, Jerusalem Syr 10 and Mingana Syr 561 (folio 43a)&amp;lt;/ref&amp;gt;  Denha II is known to have been consecrated in Baghdad, thanks to the patronage of the Christian emir Haggi Togai, but may have been normally resident in the Mosul plain village of Karamlish.  Three ceremonial contacts between Denha II and the Jacobite church are recorded by the continuator of Bar Hebraeus's ''Ecclesiastical Chronicle'' between 1358 and 1364, and on each occasion Denha was living in Karamlish.&amp;lt;ref&amp;gt;Wilmshurst, ''Ecclesiastical Organisation'', 18–19&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Denha II is conventionally believed to have been succeeded by the patriarchs Shem{{transl|ar|DIN|ʿ}}on I, Shem{{transl|ar|DIN|ʿ}}on II and Eliya IV, but a 15th-century list of patriarchs mentions only a single patriarch named Shem{{transl|ar|DIN|ʿ}}on between Denha II and Eliya IV, and is probably to be preferred.&amp;lt;ref&amp;gt;Wallis Budge, ''The Book of the Bee'', 119&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Eliya IV was succeeded by Shem{{transl|ar|DIN|ʿ}}on IV at an unknown date in the first half of the 15th century.  Eliya’s death has conventionally been placed in 1437 but must have been earlier, as a patriarch named Shem{{transl|ar|DIN|ʿ}}on is mentioned in a colophon of 1429/30.&amp;lt;ref&amp;gt;MS Paris BN Syr 184&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Shem{{transl|ar|DIN|ʿ}}on IV died on 20 February 1497 and was buried in the monastery of [[Rabban Hormizd Monastery|Rabban Hormizd]] near the Mosul village of Alqosh.&amp;lt;ref&amp;gt;Vosté, ''Inscriptions'', 283–5&amp;lt;/ref&amp;gt;    He was succeeded by two short-reigned patriarchs:  Shem{{transl|ar|DIN|ʿ}}on V, first mentioned in a colophon of 1500/1, who died in September 1502 and was buried in the monastery of Mar Awgin; and Eliya V, elected in 1503, who died in 1504 and was buried in the church of Mart Meskinta in Mosul.&amp;lt;ref&amp;gt;MSS Diyarbakr (Scher) 102, Paris BN Syr 25 and Vat Syr 204a&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Eliya V was succeeded by the patriarch Shem{{transl|ar|DIN|ʿ}}on VI (1504–38), who died on 5 August 1538 and was buried in the monastery of Rabban Hormizd.&amp;lt;ref&amp;gt;Vosté, ''Inscriptions'', 286&amp;lt;/ref&amp;gt;   According to the [[Colophon (publishing)|colophon]] of a contemporary manuscript, the patriarchal throne was still vacant on 19 October 1538.&amp;lt;ref&amp;gt;MS Vat Syr 83&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Shem{{transl|ar|DIN|ʿ}}on’s brother the metropolitan Isho{{transl|ar|DIN|ʿ}}yahb Bar Mama, who had been ''natar kursya'' throughout his reign, is first mentioned as patriarch in a colophon of 1539.&amp;lt;ref&amp;gt;MS Vat Syr 339&amp;lt;/ref&amp;gt; Shem{{transl|ar|DIN|ʿ}}on VII Isho{{transl|ar|DIN|ʿ}}yahb died on 1 November 1558 and was buried, like his predecessor, in the monastery of Rabban Hormizd near [[Alqosh]].&amp;lt;ref&amp;gt;Vosté, ''Inscriptions'', 286&amp;lt;/ref&amp;gt;  His reign saw the schism of 1552 that resulted in the creation of the [[Chaldean Catholic Church]] in 1553.&lt;br /&gt;
&lt;br /&gt;
== 'Shemon VIII Denha' and the schism of 1552 ==&lt;br /&gt;
{{main|Schism of 1552}}&lt;br /&gt;
In 1552 a section of the Church of the East, angered by the appointment of minors to important episcopal positions by the patriarch [[Shemon VII Ishoyahb|Shem{{transl|ar|DIN|ʿ}}on VII Isho{{transl|ar|DIN|ʿ}}yahb]], revolted against his authority. The rebels elected in his stead Sulaqa, the superior of the monastery of Rabban Hormizd near Alqosh, but were unable to consecrate him as no bishop of metropolitan rank was available, as canonically required. Franciscan missionaries were already at work among the Nestorians, and they persuaded Sulaqa's supporters to legitimize their position by seeking Sulaqa's consecration by Pope Julius III (1550–5).  Sulaqa went to Rome, where he made a satisfactory Catholic profession of faith and presented a letter, drafted by his supporters in Mosul, which set out his claims to be recognized as patriarch. This letter, which has survived in the Vatican archives, grossly distorted the truth. The rebels claimed that the Nestorian patriarch Shem{{transl|ar|DIN|ʿ}}on VII Isho{{transl|ar|DIN|ʿ}}yahb had died in 1551 and had been succeeded illegitimately by 'Shem{{transl|ar|DIN|ʿ}}on VIII Denha' (1551–8), a non-existent patriarch invented purely for the purpose of bolstering the legitimacy of Sulaqa's election. The Vatican was taken in by this fraud, and recognised Sulaqa as the founding patriarch of the [[Chaldean Catholic Church]] in April 1553, thereby creating a permanent schism in the Church of the East.  It was only several years later that the Vatican discovered that Shem{{transl|ar|DIN|ʿ}}on VII Isho{{transl|ar|DIN|ʿ}}yahb was still alive.&amp;lt;ref&amp;gt;Wilmshurst, ''EOCE'', 21–2&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Patriarchal succession, 16th to 18th centuries ==&lt;br /&gt;
The patriarchal succession after the schism of 1552 is certain in the case of the Mosul patriarchate, because up to the beginning of the 19th century all but one of its patriarchs were buried in the monastery of [[Rabban Hormizd Monastery|Rabban Hormizd]] and their epitaphs, which give the date of their deaths, have survived.  Shem{{transl|ar|DIN|ʿ}}on VII’s successor Eliya VII died on 26 May 1591, after having been a metropolitan for 15 years and patriarch for 32 years; Eliya VIII on 26 May 1617; Eliya IX on 18 June 1660; Eliya X Yohannan Marogin on 17 May 1700; Eliya XI Marogin on 14 December 1722; and Eliya XIII Isho{{transl|ar|DIN|ʿ}}yahb in 1804.   Eliya XII Denha died of plague in Alqosh on 29 April 1778, and was exceptionally buried in the town rather than the monastery, which had been abandoned and locked up following a Persian attack in 1743.&lt;br /&gt;
&lt;br /&gt;
The information available on Sulaqa and his successors is much less exact.  The date of Sulaqa's election in 1552 is not known, but he was confirmed as 'patriarch of Mosul' by the Vatican on 28 April 1553, and was martyred at the beginning of 1555, probably (according to a contemporary poem of [[Abdisho IV Maron|{{transl|ar|DIN|ʿ}}Abdisho{{transl|ar|DIN|ʿ}} IV]]) on 12 January.   The date of [[Abdisho IV Maron|{{transl|ar|DIN|ʿ}}Abdisho{{transl|ar|DIN|ʿ}} IV]]’s succession in 1555 is not known, but a colophon mentions that he died on 11 September 1570.    The dates of Shem{{transl|ar|DIN|ʿ}}on VIII Yahballaha's succession and death (presumably in 1570 and 1580 respectively) are not known.  Shem{{transl|ar|DIN|ʿ}}on IX Denha was elected patriarch in 1580 and (according to Assemani) died in 1600.    Shem{{transl|ar|DIN|ʿ}}on X, elected in 1600, is said to have died in 1638, according to a letter of Eliya XIII cited by Tisserant.&lt;br /&gt;
&lt;br /&gt;
Information on the patriarchal succession in the Qudshanis patriarchate for the remainder of the seventeenth and the whole of the 18th century is equally scanty.  Several of the Qudshanis patriarchs who succeeded Shem{{transl|ar|DIN|ʿ}}on X corresponded with the Vatican, but the surviving correspondence does not enable individual patriarchs to be distinguished.  The following list of 17th- and 18th-century Qudshanis patriarchs has conventionally been adopted, most recently by Fiey and (provisionally) by Wilmshurst:  Shem{{transl|ar|DIN|ʿ}}on XI (1638–56), Shem{{transl|ar|DIN|ʿ}}on XII (1656–62), Shem{{transl|ar|DIN|ʿ}}on XIII Denha (1662–1700), Shem{{transl|ar|DIN|ʿ}}on XIV Shlemun (1700–40), Shem{{transl|ar|DIN|ʿ}}on XVI Mikhail Mukhtas (1740–80), and Shem{{transl|ar|DIN|ʿ}}on XVI Yohannan (1780–1820).&amp;lt;ref&amp;gt;Fiey, ''POCN'', 37; Wilmshurst, ''EOCE'', 356–7&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
These names and reign-dates were first given towards the end of the 19th century by the Anglican missionary William Ainger Wigram.   A recently discovered list of Qudshanis patriarchs compiled after the First World War by the bishop Eliya of Alqosh, however, gives a completely different set of dates:  Shem{{transl|ar|DIN|ʿ}}on X (1600–39); Shem{{transl|ar|DIN|ʿ}}on XI (1639–53); Shem{{transl|ar|DIN|ʿ}}on XII (1653–92); Shem{{transl|ar|DIN|ʿ}}on XIII Denha (1692–1700); and Shem{{transl|ar|DIN|ʿ}}on XIV Shlemun (1700–17).   It is not yet clear whether either list is based on a reliable source, and the patriarchal succession must for the time being remain uncertain.&lt;br /&gt;
&lt;br /&gt;
In 1681 a Catholic line of patriarchs who took the name Joseph was founded at Amid (Diyarbakr).  The reign dates of these patriarchs are not in doubt:  [[Joseph I (Chaldean Patriarch)|Joseph I]] (1681–95); [[Joseph II (Chaldean Patriarch)|Joseph II]] (1696–1712); [[Joseph III (Chaldean Patriarch)|Joseph III]] (1713–57); [[Joseph IV (Chaldean Patriarch)|Joseph IV]] (patriarch, 1757–80; patriarchal administrator, 1781–96); and [[Augustine Hindi|Joseph V]] (1804–28).  Strictly speaking, Augustine Hindi, who styled himself Joseph V, was merely the patriarchal administrator of the Amid and Mosul patriarchates, but he liked to think of himself as a patriarch and the Vatican found it politic to indulge him in this fantasy.&lt;br /&gt;
&lt;br /&gt;
== Patriarchal succession, 19th and 20th centuries ==&lt;br /&gt;
There were three Qudshanis patriarchs in the decades leading up to the First World War: Shem{{transl|ar|DIN|ʿ}}on XVII Abraham (1820–61), Shem{{transl|ar|DIN|ʿ}}on XVIII Rubil (1861–1903), and Shem{{transl|ar|DIN|ʿ}}on XIX Benjamin (1903–18), who was consecrated at an uncanonically early age.  Shem{{transl|ar|DIN|ʿ}}on XIX Benjamin (1903–18) was murdered in the village of [[Tazeh Shahr|Kohnashahr]] in the Salmas district in 1918, and was succeeded by the feeble Shem{{transl|ar|DIN|ʿ}}on XX Paul (1918–20).  Paul died only two years after taking office.  As there were no other qualified members of the patriarchal family available, he was succeeded by his twelve-year-old nephew Eshai, who was consecrated patriarch on 20 June 1920 under the name [[Mar Eshai Shimun XXIII|Shem{{transl|ar|DIN|ʿ}}on XXI Eshai]].&lt;br /&gt;
&lt;br /&gt;
[[Mar Eshai Shimun XXIII|Shem{{transl|ar|DIN|ʿ}}on XXI Eshai]] (who arbitrarily added the apostle Simon Peter, Shem{{transl|ar|DIN|ʿ}}on Shliha, to the head of the list of patriarchs of the Church of the East and thereafter styled himself Shem{{transl|ar|DIN|ʿ}}on XXIII Eshai) was murdered in the United States in 1975 and succeeded in 1976 by [[Mar Dinkha IV|Dinkha IV Hnanya]], the first non-Catholic patriarch of the Church of the East to be appointed canonically (i.e., not by hereditary succession) since the 15th century.  Dinkha IV was consecrated in the United Kingdom.&lt;br /&gt;
&lt;br /&gt;
The recognition of the Mosul patriarch [[Yohannan VIII Hormizd]] by the Vatican in 1830 marked the birth of the modern Chaldean church.  Yohannan Hormizd died in 1838, and was succeeded by [[Joseph Audo|Joseph VI Audo]] (1848–78), [[Nicholas I Zaya|Nicholas I Zay{{transl|ar|DIN|ʿ}}a]] (1840–7), [[Eliya Abulyonan|Eliya XII {{transl|ar|DIN|ʿ}}Abulyonan]] (1879–94), [[Audishu V Khayyath|{{transl|ar|DIN|ʿ}}Abdisho{{transl|ar|DIN|ʿ}} V Khayyat]] (1895–9), [[Yousef VI Emmanuel II Thomas|Emmanuel II Thomas]] (1900–47), [[Yousef VII Ghanima|Joseph VII Ghanima]] (1947–58), [[Paul II Cheikho]] (1958–89) and [[Raphael I Bidawid]] (1989–2003).  The present Chaldean patriarch is [[Emmanuel III Delly]], consecrated in 2003.&lt;br /&gt;
&lt;br /&gt;
== See also ==&lt;br /&gt;
* [[List of Patriarchs of the Church of the East]]&lt;br /&gt;
&lt;br /&gt;
== Notes ==&lt;br /&gt;
{{reflist|2}}&lt;br /&gt;
&lt;br /&gt;
== References ==&lt;br /&gt;
* {{cite book |last=Assemani|first=J.A. |authorlink=Giuseppe Luigi Assemani |title=De Catholicis seu Patriarchis Chaldaeorum et Nestorianorum |year=1775 |location=Rome}} &lt;br /&gt;
* {{cite book |last=Assemani|first=J.S. |authorlink=Giuseppe Simone Assemani |title=Bibliotheca Orientalis Clementino-Vaticana (4 vols) |year=1719–28 |location=Rome}}&lt;br /&gt;
* {{cite book |last=Fiey |first=J.M. |title=Communautés syriaques en Iran et en Irak, des origines à 1552 |year=1979 |location=London |isbn=0-86078-051-1}}&lt;br /&gt;
* {{cite book |last=Fiey |first=J.M. |title=Pour un Oriens Christianus novus; répertoire des diocèses Syriaques orientaux et occidentaux |year=1993 |location=Beirut |isbn=3-515-05718-8}}&lt;br /&gt;
* Fiey, J. M., ''Jalons pour un histoire de l'Église en Iraq'' (Louvain, 1970)&lt;br /&gt;
* [http://syrcom.cua.edu/hugoye/vol2no2/HV2N2Murre.html The Patriarchs of the Church of the East from the Fifteenth to Eighteenth Centuries]&lt;br /&gt;
* {{cite journal |last=Tfinkdji |first=J. | title=L’église chaldéenne catholique autrefois et aujourd’hui |journal=Annuaire Pontifical Catholique| issue=17 |year=1914 |pages=449–525}}&lt;br /&gt;
* {{cite encyclopedia |last=Tisserant |first=E. | title=Église nestorienne |journal=Dictionnaire de Théologie Catholique| volume=11 |pages=157–323}}&lt;br /&gt;
* {{cite journal |last=Vosté |first=J.-M | title=Les inscriptions de Rabban Hormizd et de N.-D. des Semences près d'Alqoš (Iraq) |journal=Le Muséon| issue=43 |year=1930 |pages=263–316}}&lt;br /&gt;
* {{cite book |last=Wilmshurst |first=David |title=The Ecclesiastical Organisation of the Church of the East, 1318-1913 |publisher=Peeters Publishers |year=2000 |isbn=978-90-429-0876-5}}&lt;br /&gt;
&lt;br /&gt;
{{Patriarchs of the Church of the East}}&lt;br /&gt;
&lt;br /&gt;
{{DEFAULTSORT:Patriarchs Of The Church Of The East}}&lt;br /&gt;
[[Category:Patriarchs of the Church of the East| ]]&lt;br /&gt;
[[Category:Bishops of the Assyrian Church of the East]]&lt;br /&gt;
[[Category:Chaldean Catholic Patriarchs of Babylon]]&lt;br /&gt;
[[Category:Assyrian Church of the East-related lists]]&lt;/div&gt;</summary>
		<author><name>Ian</name></author>	</entry>

	<entry>
		<id>https://chaldeanwiki.com/index.php?title=Abdisho_IV_Maron&amp;diff=3391</id>
		<title>Abdisho IV Maron</title>
		<link rel="alternate" type="text/html" href="https://chaldeanwiki.com/index.php?title=Abdisho_IV_Maron&amp;diff=3391"/>
				<updated>2015-05-19T01:34:54Z</updated>
		
		<summary type="html">&lt;p&gt;Ian: 1 revision imported&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{Other people|Abdisho}}&lt;br /&gt;
{{Infobox Patriarch&lt;br /&gt;
|image=Abdisho-IV-Maron.jpg&lt;br /&gt;
|honorific-prefix = Mar&lt;br /&gt;
|name=Abdisho IV Maron&lt;br /&gt;
|birth_name=Abdisho Maron of Yohannan&lt;br /&gt;
|church=[[Chaldean Catholic Church]]&lt;br /&gt;
|see=[[Patriarchial See of Babylon of the Chaldeans|Amid of the Chaldeans]]&lt;br /&gt;
|patriarch_of=[[Patriarch of Babylon of the Chaldeans|Patriarch of the Chaldeans]]&lt;br /&gt;
|residence=[[Siirt]]&lt;br /&gt;
|enthroned= 1555&lt;br /&gt;
|ended= 11 September 1570&lt;br /&gt;
|predecessor= [[Shimun VIII Yohannan Sulaqa]] &lt;br /&gt;
|successor=[[Yahballaha V]] &lt;br /&gt;
|birth_date= &lt;br /&gt;
|death_date=11 September 1570&lt;br /&gt;
}}&lt;br /&gt;
[[Mar]] '''Abdisho IV Maron''' ({{lang-syc|ܥܒܕܝܫܘܥ ܪܒܝܥܝܐ ܡܪܘܢ}}) was the second Patriarch of the [[Chaldean Catholic Church]], from 1555 to 1570.&lt;br /&gt;
&lt;br /&gt;
==Life==&lt;br /&gt;
&lt;br /&gt;
Abdisho, whose name is spelled in many different ways (''Abdisu'', ''Abd-Jesu'', ''Hebed-Jesu'', ''Abdissi'', ''Audishu'') meaning ''Servant of [[Jesus]]'', was born in [[Gazarta]] on the River [[Tigris]], son of Yohannan of the house of Mari. He entered in the monasteries of Saint Antony and of Mar Ahha and Yohannan,&amp;lt;ref name=&amp;quot;Wilmshurst&amp;quot;&amp;gt;{{cite book |last=Wilmshurst |first=David |title=The Ecclesiastical Organisation of the Church of the East, 1318-1913 |publisher=Peeters Publishers |year=2000 |isbn=978-90-429-0876-5}}&amp;lt;/ref&amp;gt;{{rp|349}} and in 1554 was consecrated [[metropolitan bishop]] of Gazarta by [[Shimun VIII Yohannan Sulaqa]].&lt;br /&gt;
&lt;br /&gt;
After Sulaqa's death in 1555, Abdisho was elected patriarch of the Chaldean Church. He could travel to [[Rome]] only in 1561. On 7 March 1562 Abdisho made a profession of faith in front of [[pope Pius IV]] and on 17 April 1562 he received from the pope the [[pallium]], the sign of the confirmation of his election.&lt;br /&gt;
&lt;br /&gt;
In a letter of him dated 1562 to the pope he listed thirty-eight dioceses under his rule, ranging from the [[Ottoman Empire]] to the [[Persia]] and [[India]]. Modern scholars suggest that the actual dioceses could be only about fourteen, and the error in the list was due to a probable mistake in translation from [[Syriac language|Syriac]] to [[Latin]].&lt;br /&gt;
&lt;br /&gt;
He preferred to return to his church without waiting for attending the next session of the [[Council of Trent]], where, on 17 Sept 1562 (XXII session), was given a detailed account of what he narrated about his Church and his faith.&amp;lt;ref&amp;gt;{{Cite book|title=Dictionary of Christian Biography|editor=Michael Walsh|publisher=Continuum|isbn=0826452639|page=2}}&amp;lt;/ref&amp;gt; The [[Portuguese people|Portuguese]] bishops excepted when it was narrated that Abdisho considered the jurisdiction of the Church of the East wide-ranging up to South [[India]].&amp;lt;ref&amp;gt;{{cite book |first=Paolo |last=Sarpi |authorlink=Paolo Sarpi|title=Storia del Concilio tridentino: ridotta alla primitiva lezione, con la vita scritta da Fra F. Micanzio |year=1858|origyear=1619 |publisher=Pubblicato da Barbèra Bianchi |volume=3|url=http://books.google.it/books?id=7iwVAAAAQAAJ&amp;amp;printsec=titlepage#PPA387,M1|accessdate=2009-02-09|page=387}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
About his reign, we know that in 1565 the pope confirmed the use of the traditional Chaldean uses and rites,&amp;lt;ref&amp;gt;{{cite book |first=Suha |last=Rassam |title=Christianity in Iraq: Its Origins and Development to the Present Day |year=2005 |publisher=Gracewing Publishing |isbn=978-0-85244-633-1|page=109}}&amp;lt;/ref&amp;gt; and that he moved the [[episcopal See|See]] from [[Amid]] to the monastery of Mar Yaqub Khbhisha near [[Siirt]].&amp;lt;ref name=&amp;quot;Murre&amp;quot;/&amp;gt;&lt;br /&gt;
Among the different possible dates of Abdisho's death, Murre suggests the 11 September 1570.&amp;lt;ref name=&amp;quot;Murre&amp;quot;&amp;gt;{{cite journal|url=http://syrcom.cua.edu/Hugoye/Vol2No2/HV2N2Murre.html |title=The Patriarchs of the Church of the East from the Fifteenth to Eighteenth Centuries |journal=Hugoye: Journal of Syriac Studies |accessdate=2009-02-04 |author=Heleen H.L. Murre}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==Works==&lt;br /&gt;
&lt;br /&gt;
Abdisho left a poem in which he narrated the events of [[Shimun VIII Yohannan Sulaqa|Yohannan Sulaqa]]'s life. He should not be confused with [[Abdisho bar Berika]] who lived in the 13th - 14th century and was a prolific writer.&lt;br /&gt;
&lt;br /&gt;
==Mentions in literature and art==&lt;br /&gt;
Abdisho is a character in [[Hans Pfitzner]]'s opera ''[[Palestrina (opera)|Palestrina]]'', in which he is one of the prelates attending the Council of Trent.&lt;br /&gt;
&lt;br /&gt;
==See also==&lt;br /&gt;
*[[List of Chaldean Catholic Patriarchs of Babylon]]&lt;br /&gt;
&lt;br /&gt;
==Notes==&lt;br /&gt;
{{reflist|2}}&lt;br /&gt;
&lt;br /&gt;
{{s-start}}&lt;br /&gt;
{{s-bef|before=[[Shimun VIII Yohannan Sulaqa]]}}&lt;br /&gt;
{{s-ttl|title=[[List of Chaldean Catholic Patriarchs of Babylon|Patriarch of Babylon]]|years=1555&amp;amp;ndash;1570}}&lt;br /&gt;
{{s-aft|after=[[Yahballaha V]]}}&lt;br /&gt;
{{end}}&lt;br /&gt;
&lt;br /&gt;
{{Persondata &amp;lt;!-- Metadata: see [[Wikipedia:Persondata]]. --&amp;gt;&lt;br /&gt;
| NAME              = Maron, Abdisho Iv&lt;br /&gt;
| ALTERNATIVE NAMES =&lt;br /&gt;
| SHORT DESCRIPTION = Chaldean Catholic Patriarch of Babylon&lt;br /&gt;
| DATE OF BIRTH     =&lt;br /&gt;
| PLACE OF BIRTH    =&lt;br /&gt;
| DATE OF DEATH     = 11 September 1570&lt;br /&gt;
| PLACE OF DEATH    =&lt;br /&gt;
}}&lt;br /&gt;
{{DEFAULTSORT:Maron, Abdisho Iv}}&lt;br /&gt;
[[Category:Chaldean Catholic Patriarchs of Babylon]]&lt;br /&gt;
[[Category:Year of birth unknown]]&lt;br /&gt;
[[Category:1570 deaths]]&lt;/div&gt;</summary>
		<author><name>Ian</name></author>	</entry>

	<entry>
		<id>https://chaldeanwiki.com/index.php?title=Audishu_V_Khayyath&amp;diff=3389</id>
		<title>Audishu V Khayyath</title>
		<link rel="alternate" type="text/html" href="https://chaldeanwiki.com/index.php?title=Audishu_V_Khayyath&amp;diff=3389"/>
				<updated>2015-05-19T01:34:50Z</updated>
		
		<summary type="html">&lt;p&gt;Ian: 1 revision imported&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{Other people|Abdisho}}&lt;br /&gt;
{{Infobox Patriarch&lt;br /&gt;
| image          = Patriarch Abdisho V. KhayatJS.jpg&lt;br /&gt;
| name           = Audishu V Khayyath&lt;br /&gt;
| birth_name     = Georges Ebed-Iesu Khayyath&lt;br /&gt;
| church         = [[Chaldean Catholic Church]]&lt;br /&gt;
| see            = [[Patriarchial See of Babylon of the Chaldeans|Babylon of the Chaldeans]]&lt;br /&gt;
| patriarch_of   = [[Patriarch of Babylon of the Chaldeans]]&lt;br /&gt;
| residence      = [[Iraq]]&lt;br /&gt;
| enthroned      = October 28, 1894&lt;br /&gt;
| ended          = November 06, 1899&lt;br /&gt;
| predecessor    = [[Eliya Abulyonan|Eliya XIV [XIII] Abulyonan]]&lt;br /&gt;
| successor      = [[Yousef VI Emmanuel II Thomas]]&lt;br /&gt;
| birth_date     = October 15, 1827&lt;br /&gt;
| birth_place    = &lt;br /&gt;
| death_date     = {{BirthDeathAge||1827|10|15|1899|11|6}}&lt;br /&gt;
| death_place    = &lt;br /&gt;
| ordination     = 1855 ([[Priesthood (Catholic Church)|Priest]])&lt;br /&gt;
| consecration   = 23 Sept 1860 ([[Bishop (Catholic Church)|Bishop]])&lt;br /&gt;
| consecrated_by = [[Joseph Audo]]&lt;br /&gt;
}}&lt;br /&gt;
'''Mar Audishu V, (Ebed-Jesu V), Georges Khayyath''' † (or '''Abdisho V, Giwargis Hayyat''') was the patriarch of the [[Chaldean Catholic Church]] in 1894–1899. He was also a [[Syriac language|Syriac]] scholar.&lt;br /&gt;
&lt;br /&gt;
He is remembered also as editor of the ''Mosul Edition'' of the Syriac [[Peshitta#Early print editions|Peshitta]]. He wrote of a book with title ''&amp;quot;Romanorum Pontificum Primatus&amp;quot;''.&lt;br /&gt;
&lt;br /&gt;
==Life==&lt;br /&gt;
He was born on October 15, 1827 in [[Mossul]]. He studied in the [[Congregation for the Propagation of the Faith]] in [[Rome]] and was ordained priest in 1855. On 23 September 1860 he was ordained Bishop of [[Amadiyah]], [[Iraq]], by Patriarch [[Joseph Audo]].&amp;lt;ref&amp;gt;David Wilmshurst, ''The Ecclesiastical Organisation of the Church of the East, 1318-1913'', Peeters Publishers, 2000 ISBN 90-429-0876-9, pag 741&amp;lt;/ref&amp;gt; He was the patriarchal vicar of [[Mossul]] from 1863 to 1870 and metropolitan of [[Amid]] from 1874 to 1894. He was appointed Patriarch of the Chaldean Church on October 28, 1894 and served till his death on November 6, 1899. He replaced Patriarch [[Eliya Abulyonan|Eliya XIV [XIII] Abulyonan]] † and was followed by [[Yousef VI Emmanuel II Thomas]] †.&lt;br /&gt;
&lt;br /&gt;
==Images==&lt;br /&gt;
{|&lt;br /&gt;
| [[File:Yezidischld.JPG|thumb|Audishu V Khayyath meets with [[Yazidi]] leaders in Mosul, ''c.'' 1895]]&lt;br /&gt;
| [[File:Audishu-V-Khayyath.jpg|thumb|upright|Audishu V Khayyath]]&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
==References==&lt;br /&gt;
&amp;lt;references/&amp;gt;&lt;br /&gt;
*{{cite web|url=http://www.catholic-hierarchy.org/bishop/bkhay.html|title=Archbishop Audishu V (Georges Ebed-Iesu) Khayyath|publisher=Catholic-Hierarchy.org|accessdate=2008-12-08}}&lt;br /&gt;
&lt;br /&gt;
{{s-start}}&lt;br /&gt;
{{s-bef|before=[[Eliya Abulyonan|Eliya XIV Abulyonan]]&amp;lt;br&amp;gt;(1878–1894)}}&lt;br /&gt;
{{s-ttl|title=[[List of Chaldean Catholic Patriarchs of Babylon|Patriarch of Babylon &amp;lt;br&amp;gt;of the Chaldean Catholic Church]]|years=1894–1899}} &lt;br /&gt;
{{s-aft|after=[[Yousef VI Emmanuel II Thomas]]&amp;lt;br&amp;gt; (1900–1946)}}&lt;br /&gt;
{{end}}&lt;br /&gt;
&lt;br /&gt;
{{Persondata &amp;lt;!-- Metadata: see [[Wikipedia:Persondata]]. --&amp;gt;&lt;br /&gt;
| NAME              = Khayyath, Audishu 05&lt;br /&gt;
| ALTERNATIVE NAMES = &lt;br /&gt;
| SHORT DESCRIPTION = Iraqi archbishop&lt;br /&gt;
| DATE OF BIRTH     = October 15, 1827&lt;br /&gt;
| PLACE OF BIRTH    = &lt;br /&gt;
| DATE OF DEATH     = 1899&lt;br /&gt;
| PLACE OF DEATH    = &lt;br /&gt;
}}&lt;br /&gt;
{{DEFAULTSORT:Khayyath, Audishu 05}}&lt;br /&gt;
[[Category:Assyrian people]]&lt;br /&gt;
[[Category:Iraqi archbishops]]&lt;br /&gt;
[[Category:Chaldean Catholic Patriarchs of Babylon]]&lt;br /&gt;
[[Category:1827 births]]&lt;br /&gt;
[[Category:1899 deaths]]&lt;/div&gt;</summary>
		<author><name>Ian</name></author>	</entry>

	<entry>
		<id>https://chaldeanwiki.com/index.php?title=Joseph_IV_(Chaldean_Patriarch)&amp;diff=3387</id>
		<title>Joseph IV (Chaldean Patriarch)</title>
		<link rel="alternate" type="text/html" href="https://chaldeanwiki.com/index.php?title=Joseph_IV_(Chaldean_Patriarch)&amp;diff=3387"/>
				<updated>2015-05-19T01:34:42Z</updated>
		
		<summary type="html">&lt;p&gt;Ian: 1 revision imported&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{Infobox Patriarch&lt;br /&gt;
|image=&lt;br /&gt;
|honorific-prefix = Mar&lt;br /&gt;
|name=Joseph IV Lazar Hindi&lt;br /&gt;
|birth_name=Lazar Hindi&lt;br /&gt;
|church=[[Chaldean Catholic Church]]&lt;br /&gt;
|see=[[Patriarchial See of Babylon of the Chaldeans|Amid of the Chaldeans]]&lt;br /&gt;
|patriarch_of=[[Patriarch of Babylon of the Chaldeans|Patriarch of the Chaldeans]]&lt;br /&gt;
|residence=[[Amid]], [[Turkey]]&lt;br /&gt;
|enthroned= 25 March 1759&lt;br /&gt;
|ended= 1796 &lt;br /&gt;
|predecessor=[[Joseph III (Chaldean Patriarch)|Joseph III Timothy Maroge]]&lt;br /&gt;
|successor=[[Augustine Hindi|Joseph V Augustine Hindi]]&lt;br /&gt;
|birth_date= 14 September 1726 &lt;br /&gt;
|death_date= {{BirthDeathAge||1726|9|14|1796|||yes}}   &lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
Mar '''Joseph IV Timotheus Lazar Hindi''' was the fourth incumbent of the ''Josephite'' line of [[Church of the East]], a patriarchate in [[Full Communion]] with the [[pope]] mainly active in the areas of [[Amid]] and [[Mardin]], thus being considered the Patriarch of the [[Chaldean Catholic Church]] from 1757 to 1796.&lt;br /&gt;
&lt;br /&gt;
==Life==&lt;br /&gt;
&lt;br /&gt;
Lazar Hindi, born on 14 September 1726,&amp;lt;ref&amp;gt;{{cite book |title=Annuario pontificio 1773 |location=Rome |year=1773 |page=254 |url= http://books.google.it/books?id=D0gQAAAAIAAJ |accessdate= 2009-04-24}}&amp;lt;/ref&amp;gt; educated by the [[Pontifical Urbaniana University|Urban college]] in [[Rome]], was elected patriarch after the death, happened on 23 January 1757, of his predecessor [[Joseph III (Chaldean Patriarch)|Joseph III Timothy Maroge]]. He was consecrated bishop on 8 February 1757 by Yohannan Basil, bishop of Mardin (died 1758), who in turn was consecrated bishop in 1741 by [[Joseph III (Chaldean Patriarch)|Joseph III]].&amp;lt;ref name=&amp;quot;Wilmshurst&amp;quot;&amp;gt;{{cite book |last=David |first=Wilmshurst |title=The Ecclesiastical Organization of the Church of the East, 1318-1913 |publisher=Peeters Publishers |year=2000 |isbn=978-90-429-0876-5}}&amp;lt;/ref&amp;gt;{{rp|54}} Lazar Hindi was confirmed patriarch by the [[Clement XIII]] on 25 March 1759 and received the [[pallium]] on 9 April 1759. He took the name of Joseph (''Youssef'') IV.&lt;br /&gt;
&lt;br /&gt;
From 1765 to 1768 he went to [[Rome]] for printing Chaldean liturgical books and Gospels.&lt;br /&gt;
&lt;br /&gt;
Lazar Hindi coped with the main problem of his predecessors: the tax burdens imposed by the [[Ottoman Empire|Ottoman]] authorities on his churches with any kind of pretexts.&amp;lt;ref name=&amp;quot;Wilmshurst&amp;quot;/&amp;gt;{{rp|27}} As his predecessor, in the 1770s he visited the European courts to raise founds but without results.&lt;br /&gt;
&lt;br /&gt;
Back in Amid, dispirited, he resigned in August 1780, appointing as successor his nephew [[Augustine Hindi]].  The [[Holy See]] accepted the resignation in 1781 but objected the succession to his nephew. Informed of this, Lazar Hindi withdrew his resignation and remained in Amid.&amp;lt;ref name=&amp;quot;Frazee&amp;quot;/&amp;gt;{{rp|212}}&lt;br /&gt;
&lt;br /&gt;
In 1789 Lazar Hindi was imprisoned by the Turkish authorities for his debt of twenty thousand ''piastras''.&amp;lt;ref name=&amp;quot;Frazee&amp;quot;&amp;gt;{{cite book |last=Frazee|first=Charles A.|title=Catholics and Sultans: The Church and the Ottoman Empire 1453-1923|year=2006|publisher=Cambridge University Press|isbn=978-0-521-02700-7}}&amp;lt;/ref&amp;gt;{{rp|211}} He escaped in 1790 and left for Rome.&lt;br /&gt;
When he arrived in Rome in March 1791, he found that the [[Holy See|Vatican]] was not so interested in his little patriarchate, while was working on possible unions with both the patriarchate of [[Qochanis]], whose patriarch [[Mar Shimun XV Maqdassi Mikhail]] in 1770&amp;lt;ref name=&amp;quot;Murre&amp;quot;&amp;gt;{{cite web|url=http://syrcom.cua.edu/Hugoye/Vol2No2/HV2N2Murre.html|title=The Patriarchs of the Church of the East from the Fifteenth to Eighteenth Centuries|publisher=Hugoye: Journal of Syriac Studies|accessdate=2009-01-24|author=Heleen H.L. Murre}}&amp;lt;/ref&amp;gt; wrote to Rome to establish contacts, and mainly with the ancient patriarchate of [[Alqosh]], contended by two cousins, one of which, [[Yohannan Hormizd|Yohannan VIII Eliya Hormizd]], considered himself a Catholic. In 1791 the Vatican had given the government of Amid, the main town of Lazar Hindi's patriarchate, to Yohannan Hormizd. Lazar Hindi vehemently excepted, and in 1793 succeeded to have his nephew Augustine returned to be the episcopal administrator of Amid, besides being patriarchal administrator.&amp;lt;ref name=&amp;quot;Frazee&amp;quot;/&amp;gt;{{rp|211}}&lt;br /&gt;
&lt;br /&gt;
Lazar Hindi died in [[Italy]] in 1796.&amp;lt;ref name=&amp;quot;Wilmshurst&amp;quot;/&amp;gt;{{rp|27}}&lt;br /&gt;
&lt;br /&gt;
==Notes==&lt;br /&gt;
{{reflist|2}}&lt;br /&gt;
&lt;br /&gt;
{{s-start}}&lt;br /&gt;
{{s-bef|before=[[Joseph III (Chaldean Patriarch)|Joseph III Timothy Maroge]]}}&lt;br /&gt;
{{s-ttl|title=[[List of Chaldean Catholic Patriarchs of Babylon|Patriarch of Babylon]]|years=1757&amp;amp;ndash;1780}}&lt;br /&gt;
{{s-aft|after=[[Joseph V Augustine Hindi]]}}&lt;br /&gt;
{{end}}&lt;br /&gt;
&lt;br /&gt;
{{Persondata &amp;lt;!-- Metadata: see [[Wikipedia:Persondata]]. --&amp;gt;&lt;br /&gt;
| NAME              = Joseph, IV&lt;br /&gt;
| ALTERNATIVE NAMES =&lt;br /&gt;
| SHORT DESCRIPTION = Chaldean Patriarch&lt;br /&gt;
| DATE OF BIRTH     = 14 September 1726&lt;br /&gt;
| PLACE OF BIRTH    =&lt;br /&gt;
| DATE OF DEATH     = 1796&lt;br /&gt;
| PLACE OF DEATH    =&lt;br /&gt;
}}&lt;br /&gt;
{{DEFAULTSORT:Joseph, Iv}}&lt;br /&gt;
[[Category:Assyrian people]]&lt;br /&gt;
[[Category:Chaldean Catholic Patriarchs of Babylon]]&lt;br /&gt;
[[Category:1726 births]]&lt;br /&gt;
[[Category:1796 deaths]]&lt;/div&gt;</summary>
		<author><name>Ian</name></author>	</entry>

	<entry>
		<id>https://chaldeanwiki.com/index.php?title=Joseph_III_(Chaldean_Patriarch)&amp;diff=3385</id>
		<title>Joseph III (Chaldean Patriarch)</title>
		<link rel="alternate" type="text/html" href="https://chaldeanwiki.com/index.php?title=Joseph_III_(Chaldean_Patriarch)&amp;diff=3385"/>
				<updated>2015-05-19T01:34:41Z</updated>
		
		<summary type="html">&lt;p&gt;Ian: 1 revision imported&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{Infobox Patriarch&lt;br /&gt;
|image=&lt;br /&gt;
|honorific-prefix = Mar&lt;br /&gt;
|name=Joseph III Timothy Maroge&lt;br /&gt;
|birth_name=Timothy Maroge&lt;br /&gt;
|church=[[Chaldean Catholic Church]]&lt;br /&gt;
|see=[[Patriarchial See of Babylon of the Chaldeans|Amid of the Chaldeans]]&lt;br /&gt;
|patriarch_of=[[Patriarch of Babylon of the Chaldeans|Patriarch of the Chaldeans]]&lt;br /&gt;
|residence=[[Amid]], [[Turkey]]&lt;br /&gt;
|enthroned= 1713&lt;br /&gt;
|ended= 23 January 1757 &lt;br /&gt;
|predecessor=[[Joseph II (Chaldean Patriarch)|Joseph II Sliba Maruf]]&lt;br /&gt;
|successor=[[Joseph IV (Chaldean Patriarch)|Joseph IV Lazare Hindi]]&lt;br /&gt;
|death_date= 23 January 1757   &lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
Mar '''Joseph III Timothy Maroge''' (or ''Youssef III Timotheos Maraugin'' or ''Maroghin'') was the third incumbent of the ''Josephite'' line of [[Church of the East]], a patriarchate in [[Full Communion]] with the [[pope]] mainly active in the areas of [[Amid]] and [[Mardin]], thus being the Patriarch of the [[Chaldean Catholic Church]] from 1713 to 1757.&lt;br /&gt;
&lt;br /&gt;
==Life==&lt;br /&gt;
&lt;br /&gt;
Timothy Maroge was born in [[Baghdad]]&amp;lt;ref name=&amp;quot;Wilmshurst&amp;quot;&amp;gt;{{cite book |last=David |first=Wilmshurst |title=The Ecclesiastical Organisation of the Church of the East, 1318-1913 |publisher=Peeters Publishers |year=2000 |isbn=978-90-429-0876-5}}&amp;lt;/ref&amp;gt;{{rp|52}} and educated by the [[Order of Friars Minor Capuchin|Capuchin]] [[Catholic missions|missionaries]] in [[Amid]].&amp;lt;ref name=&amp;quot;Murre&amp;quot;&amp;gt;{{cite web|url=http://syrcom.cua.edu/Hugoye/Vol2No2/HV2N2Murre.html|title=The Patriarchs of the Church of the East from the Fifteenth to Eighteenth Centuries|publisher=Hugoye: Journal of Syriac Studies|accessdate=2009-01-24|author=Heleen H.L. Murre}}&amp;lt;/ref&amp;gt; He was consecrated bishop of [[Mardin]] by [[Joseph II (Chaldean Patriarch)|Joseph II Sliba Maruf]] in 1705.&amp;lt;ref&amp;gt;in 1705 according to Wilmshurst (2000) ISBN 978-90-429-0876-5 page 52, or in 1696 according to Murre [http://syrcom.cua.edu/Hugoye/Vol2No2/HV2N2Murre.html]&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
He became patriarch after his predecessor death, being the only Chaldean bishop who survived the 1708-1713 plague. &lt;br /&gt;
He was confirmed by the [[Holy See]] on March 18, 1714&amp;lt;ref name=&amp;quot;Giga&amp;quot;&amp;gt;{{cite web |url=http://www.gcatholic.org/dioceses/diocese/baby0.htm|title=Patriarchal See of Babylon|publisher=www.gcatholic.org|accessdate=2009-02-01}}&amp;lt;/ref&amp;gt; and took the name of Joseph III.&lt;br /&gt;
&lt;br /&gt;
During his patriarchate the there was a growth of the number of faithfuls of the patriarchate, mainly in the area of the [[Alqosh]]'s patriarchate. Joseph III was a skilful preacher, and it is remembered that more than three thousands people of [[Mosul]] entered in his patriarchate in 1723. This success caused a strong reaction of the traditionalist Patriarch of Alqosh, [[Eliya XII (XI) Denkha]], who succeeded to have Joseph III imprisoned many times by the [[Ottoman Empire|Turkish]] authorities.&amp;lt;ref name=&amp;quot;Wilmshurst&amp;quot;/&amp;gt;{{rp|52}} Shortly after some problems arose in also Amid, where the traditionalists occupied Joseph's cathedral and the Capuchins left the town in 1726.&amp;lt;ref name=&amp;quot;Frazee&amp;quot;/&amp;gt;{{rp|210}}&lt;br /&gt;
&lt;br /&gt;
The patriarchate struggled with financial difficulties due to the tax burden imposed by the Turkish authorities and to the ransoms required to free Joseph from the prison. Furthermore according to the [[Ottoman Empire|Ottoman]] law the Chaldean community was administratively subject to traditionalist Patriarchate of Alqosh, resulting so to be in a weak position and exposed to vexations.&lt;br /&gt;
&lt;br /&gt;
In 1734 Joseph left for Europe to try to raise funds to pay his debts, and during the next seven years visited the Catholic courts of Poland, Austria and Rome asking for financial support.  He was given some money, but far less than he had hoped for. While he was abroad, the Chaldeans in [[Istanbul]] obtained from the Ottoman authorities recognition of his authority over Amid and Mardin, but Mosul and [[Aleppo]] were assigned to the traditionalist patriarchate of Alqosh,&amp;lt;ref name=&amp;quot;Frazee&amp;quot;&amp;gt;{{cite book |last=Frazee|first=Charles A.|title=Catholics and Sultans: The Church and the Ottoman Empire 1453-1923|year=2006|publisher=Cambridge University Press|isbn=978-0-521-02700-7}}&amp;lt;/ref&amp;gt;{{rp|210}} thus creating many difficulties for the growing numbers of Chaldeans who lived there.&lt;br /&gt;
&lt;br /&gt;
In 1754 Joseph appointed as successor Mar Antun Galla, but the [[Holy See]] objected and did not allow him to resign: thus he remained the incumbent till his death on 23 January 1757.&lt;br /&gt;
&lt;br /&gt;
==Notes==&lt;br /&gt;
{{reflist|2}}&lt;br /&gt;
&lt;br /&gt;
{{s-start}}&lt;br /&gt;
{{s-bef|before=[[Joseph II (Chaldean Patriarch)|Joseph II Sliba Maruf]]}}&lt;br /&gt;
{{s-ttl|title=[[List of Chaldean Catholic Patriarchs of Babylon|Patriarch of Babylon]]|years=1713&amp;amp;ndash;1757}}&lt;br /&gt;
{{s-aft|after=[[Joseph IV (Chaldean Patriarch)|Joseph IV Lazare Hindi]]}}&lt;br /&gt;
{{end}}&lt;br /&gt;
&lt;br /&gt;
{{Persondata &amp;lt;!-- Metadata: see [[Wikipedia:Persondata]]. --&amp;gt;&lt;br /&gt;
| NAME              = Joseph, III&lt;br /&gt;
| ALTERNATIVE NAMES =&lt;br /&gt;
| SHORT DESCRIPTION = Chaldean Patriarch&lt;br /&gt;
| DATE OF BIRTH     =&lt;br /&gt;
| PLACE OF BIRTH    =&lt;br /&gt;
| DATE OF DEATH     = 23 January 1757&lt;br /&gt;
| PLACE OF DEATH    =&lt;br /&gt;
}}&lt;br /&gt;
{{DEFAULTSORT:Joseph, III}}&lt;br /&gt;
[[Category:People from Baghdad]]&lt;br /&gt;
[[Category:Assyrian people]]&lt;br /&gt;
[[Category:Chaldean Catholic Patriarchs of Babylon]]&lt;br /&gt;
[[Category:1757 deaths]]&lt;br /&gt;
[[Category:Year of birth unknown]]&lt;/div&gt;</summary>
		<author><name>Ian</name></author>	</entry>

	<entry>
		<id>https://chaldeanwiki.com/index.php?title=Joseph_II_(Chaldean_Patriarch)&amp;diff=3383</id>
		<title>Joseph II (Chaldean Patriarch)</title>
		<link rel="alternate" type="text/html" href="https://chaldeanwiki.com/index.php?title=Joseph_II_(Chaldean_Patriarch)&amp;diff=3383"/>
				<updated>2015-05-19T01:34:39Z</updated>
		
		<summary type="html">&lt;p&gt;Ian: 1 revision imported&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{Infobox Patriarch&lt;br /&gt;
|image=&lt;br /&gt;
|honorific-prefix = Mar&lt;br /&gt;
|name=Joseph II Sliba Maruf&lt;br /&gt;
|birth_name=Sliba Maruf&lt;br /&gt;
|church=[[Chaldean Catholic Church]]&lt;br /&gt;
|see=[[Patriarchial See of Babylon of the Chaldeans|Amid of the Chaldeans]]&lt;br /&gt;
|patriarch_of=[[Patriarch of Babylon of the Chaldeans|Patriarch of the Chaldeans]]&lt;br /&gt;
|residence=[[Amid]], [[Turkey]]&lt;br /&gt;
|enthroned= 18 June 1696&lt;br /&gt;
|ended= 1713&lt;br /&gt;
|predecessor=[[Joseph I (Chaldean Patriarch)|Joseph I]]&lt;br /&gt;
|successor=[[Joseph III (Chaldean Patriarch)|Joseph III Timothy Maroge]]&lt;br /&gt;
|birth_date= 1667&lt;br /&gt;
|birth_place=[[Tel Keppe]]&lt;br /&gt;
|death_date= {{BirthDeathAge||1667|||1713||}}   &lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
Mar '''Joseph II Sliba Maruf''' (or ''Youssef II Sliba Bet Macruf'') was the second incumbent of the ''Josephite'' line of [[Church of the East]], a little patriarchate in [[Full Communion]] with the [[pope]] active in the areas of [[Amid]] and [[Mardin]] in the 17th-19th century, thus being the Patriarch of the [[Chaldean Catholic Church]] from 1696 to 1713.&lt;br /&gt;
&lt;br /&gt;
==Life==&lt;br /&gt;
&lt;br /&gt;
Sliba Maruf was born in 1667&amp;lt;ref name=&amp;quot;Giga&amp;quot;&amp;gt;{{cite web|url=http://www.gcatholic.org/dioceses/diocese/baby0.htm|title=Patriarchal See of Babylon|publisher=www.gcatholic.org|accessdate=2009-02-01}}&amp;lt;/ref&amp;gt; in [[Tel Keppe]], [[Iraq]], received first orders at fourteen&amp;lt;ref name=&amp;quot;Murre&amp;quot;&amp;gt;{{cite web|url=http://syrcom.cua.edu/Hugoye/Vol2No2/HV2N2Murre.html|title=The Patriarchs of the Church of the East from the Fifteenth to Eighteenth Centuries|publisher=Hugoye: Journal of Syriac Studies|accessdate=2009-01-24|author=Heleen H.L. Murre}}&amp;lt;/ref&amp;gt; and was consecrated bishop, without the previous consent of Rome, at the age of 24 in 1691 by [[Joseph I (Chaldean Patriarch)|Joseph I]].&amp;lt;ref name=&amp;quot;Frazee&amp;quot;/&amp;gt;{{rp|209}} He was chosen by Joseph I as his successor in 1694, but this appointment became effective only when [[Rome]] accepted his predecessor resignation in 1696. Thus Sliba Maruf was confirmed patriarch by [[Holy See]] on June 18, 1696,&amp;lt;ref name=&amp;quot;Frazee&amp;quot;/&amp;gt;{{rp|209}} with the name of Joseph II.&lt;br /&gt;
&lt;br /&gt;
As happened for Joseph I, his ministry had to face the strong opposition of the traditionalists.&amp;lt;ref name=&amp;quot;Wilmshurst&amp;quot;&amp;gt;{{cite book |last=David |first=Wilmshurst |title=The Ecclesiastical Organisation of the Church of the East, 1318-1913 |publisher=Peeters Publishers |year=2000 |isbn=978-90-429-0876-5}}&amp;lt;/ref&amp;gt;{{rp|26}} This forced him in 1708 to ask permission to Rome to resign and move to [[Italy]], a request that was not granted.&lt;br /&gt;
&lt;br /&gt;
During the plague that spread from 1708 he distinguish himself for the help and the pastoral care he offered to the sicks&amp;lt;ref name=&amp;quot;Wilmshurst&amp;quot;/&amp;gt;{{rp|58}} until he too was infected.&lt;br /&gt;
Early in 1713 he choose as successor [[Joseph III (Chaldean Patriarch)|Timothy Maroge]] and died of plague a few months later in 1713&amp;lt;ref name=&amp;quot;Frazee&amp;quot;&amp;gt;{{cite book|last=Frazee|first=Charles A.|title=Catholics and Sultans: The Church and the Ottoman Empire 1453-1923|year=2006|publisher=Cambridge University Press|isbn=978-0-521-02700-7}}&amp;lt;/ref&amp;gt;{{rp|209}}&amp;lt;ref name=&amp;quot;Wilmshurst&amp;quot;/&amp;gt;{{rp|52}} (or according to other sources in 1712) at the age of 46.&lt;br /&gt;
&lt;br /&gt;
==Works==&lt;br /&gt;
&lt;br /&gt;
Joseph is remembered as [[Syriac language|Syriac]] and [[Arab language|Arab]] writer and for having translated many texts from [[Latin]]. His ''Speculum tersum'' (''Book of the pure Mirror'') was translated from Syriac into Latin by I. A. Assemani and is conserved in the [[Vatican Library]].&amp;lt;ref&amp;gt;[[Vatican Library]], segn. Borg.lat.177&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==Notes==&lt;br /&gt;
{{reflist|2}}&lt;br /&gt;
&lt;br /&gt;
{{s-start}}&lt;br /&gt;
{{s-bef|before=[[Joseph I (Chaldean Patriarch)|Joseph I]]}}&lt;br /&gt;
{{s-ttl|title=[[List of Chaldean Catholic Patriarchs of Babylon|Patriarch of Babylon]]|years=1696&amp;amp;ndash;1713}}&lt;br /&gt;
{{s-aft|after=[[Joseph III (Chaldean Patriarch)|Joseph III Timothy Maroge]]}}&lt;br /&gt;
{{end}}&lt;br /&gt;
&lt;br /&gt;
{{Authority control}}&lt;br /&gt;
{{Persondata &amp;lt;!-- Metadata: see [[Wikipedia:Persondata]]. --&amp;gt;&lt;br /&gt;
| NAME              = Joseph, II&lt;br /&gt;
| ALTERNATIVE NAMES =&lt;br /&gt;
| SHORT DESCRIPTION = Chaldean Patriarch&lt;br /&gt;
| DATE OF BIRTH     = 1667&lt;br /&gt;
| PLACE OF BIRTH    = [[Tel Keppe]]&lt;br /&gt;
| DATE OF DEATH     = 1713&lt;br /&gt;
| PLACE OF DEATH    =&lt;br /&gt;
}}&lt;br /&gt;
{{DEFAULTSORT:Joseph, II}}&lt;br /&gt;
[[Category:Assyrian people]]&lt;br /&gt;
[[Category:Chaldean Catholic Patriarchs of Babylon]]&lt;br /&gt;
[[Category:1667 births]]&lt;br /&gt;
[[Category:1713 deaths]]&lt;/div&gt;</summary>
		<author><name>Ian</name></author>	</entry>

	<entry>
		<id>https://chaldeanwiki.com/index.php?title=Joseph_I_(Chaldean_Patriarch)&amp;diff=3381</id>
		<title>Joseph I (Chaldean Patriarch)</title>
		<link rel="alternate" type="text/html" href="https://chaldeanwiki.com/index.php?title=Joseph_I_(Chaldean_Patriarch)&amp;diff=3381"/>
				<updated>2015-05-19T01:34:34Z</updated>
		
		<summary type="html">&lt;p&gt;Ian: 1 revision imported&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{Infobox Patriarch&lt;br /&gt;
|image=&lt;br /&gt;
| honorific-prefix = Mar&lt;br /&gt;
|name=Yousip I&lt;br /&gt;
|birth_name=Yousip&lt;br /&gt;
|church=[[Chaldean Catholic Church]]&lt;br /&gt;
|see=[[Patriarchial See of Babylon of the Chaldeans|Amid of the Chaldeans]]&lt;br /&gt;
|patriarch_of=[[Patriarch of Babylon of the Chaldeans|Patriarch of the Chaldeans]]&lt;br /&gt;
|residence=[[Amid]], [[Turkey]]&lt;br /&gt;
|enthroned= 23 June 1681&lt;br /&gt;
|ended= 2 February 1696&lt;br /&gt;
|predecessor=&lt;br /&gt;
|successor=[[Joseph II (Chaldean Patriarch)|Joseph II Sliba Maruf]]&lt;br /&gt;
|birth_date= &lt;br /&gt;
|birth_place=&lt;br /&gt;
|death_date= 10 November 1707   &lt;br /&gt;
|death_place=[[Rome]]&lt;br /&gt;
}}&lt;br /&gt;
Mar Yousip I ('''Joseph I''', † 1707) was the first incumbent of the ''Josephite'' line of [[Church of the East]], thus being considered the Patriarch of the [[Chaldean Catholic Church]] from 1681 to 1696.&lt;br /&gt;
&lt;br /&gt;
==Background situation==&lt;br /&gt;
By 1660, the Church of the East had become divided into two patriarchates:&lt;br /&gt;
* the largest and oldest [[episcopal see|patriarchal See]] was based at the [[Rabban Hormizd Monastery]] of [[Alqosh]]. It spread from [[Aqrah]] up to [[Amid]] and [[Nusaybin|Nisibis]], covering in the South the rich plain of [[Mosul]] (it is known also as ''Eliya'' line). Since the 15th century its Patriarchs were appointed through an hereditary system.&lt;br /&gt;
* the second patriarchal See was located in Khosrowa, near [[Salmas]] (from 1672 in [[Qochanis]]) and extended into the North East mountains (it is also known as the ''Shimun'' line). This patriarchal line began in 1553 when Mar [[Shimun VIII Yohannan Sulaqa|Yohannan Sulaqa]] was consecrated bishop by the [[Pope]] in 1553, but soon it lost the connections with Rome. The last patriarch of this line recognized by the [[Holy See]] was Shimun IX Dinkha (died 1600) and later there were only few correspondences through missionaries. This See reintroduced in 1600 the heredity system for patriarchs' succession, a use unacceptable for Rome. This patriarchal line still survives in the denomination today known as [[Assyrian Church of the East]].&lt;br /&gt;
&lt;br /&gt;
==Life==&lt;br /&gt;
&lt;br /&gt;
Although the town of [[Amid]] in 1553 has been the See of Yohanan Shimun VIII Sulaqa, the area of influence of the ''Shimun'' patriarchs moved soon towards East, and by 1660 the area of Amid was under the Alqosh's patriarchate. In 1667 the [[Order of Friars Minor Capuchin|Capuchin]] [[Catholic missions|missionary]] Jean-Baptiste de St-Aignan established there,&amp;lt;ref name=&amp;quot;Wilmshurst&amp;quot;&amp;gt;{{cite book |last=David |first=Wilmshurst |title=The Ecclesiastical Organisation of the Church of the East, 1318-1913 |publisher=Peeters Publishers |year=2000 |isbn=978-90-429-0876-5}}&amp;lt;/ref&amp;gt;{{rp|29}} teaching to omit the liturgical commemoration of  [[Nestorius]] and to use the title [[Mother of God]] for [[Saint Mary]].&amp;lt;ref name=&amp;quot;Frazee&amp;quot;/&amp;gt;{{rp|144}}&lt;br /&gt;
&lt;br /&gt;
Yousip (Joseph) was born in Amid and educated by the priest 'Abd Al-Ahad.&amp;lt;ref name=&amp;quot;Wilmshurst&amp;quot;/&amp;gt;{{rp|58}} He was consecrated metropolitan bishop of Amid between 1669 and 1672, and shortly after in 1672 became catholic.&amp;lt;ref name=&amp;quot;Wilmshurst&amp;quot;/&amp;gt;{{rp|51}} The reaction of Alqosh's patriarch [[Eliya X (XI) Yukhannan Maraugin]] was very strong: he came personally to Amid, installed a traditionalist bishop named David and had Joseph to be twice imprisoned. Joseph was released only after a payment of a ransom&amp;lt;ref name=&amp;quot;Frazee&amp;quot;&amp;gt;{{cite book|last=Frazee|first=Charles A.|title=Catholics and Sultans: The Church and the Ottoman Empire 1453-1923|year=2006|publisher=Cambridge University Press|isbn=978-0-521-02700-7}}&amp;lt;/ref&amp;gt;{{rp|144}} and had to leave to Rome. When Joseph returned in 1677, the bishop David fled in Egypt and the [[Ottoman Empire|Ottoman]] authorities recognized Joseph's independence and his government over the [[diocese]]s of Amid and [[Mardin]].&lt;br /&gt;
&lt;br /&gt;
On June 23, 1681&amp;lt;ref name=&amp;quot;Giga&amp;quot;&amp;gt;{{cite web|url=http://www.gcatholic.org/dioceses/diocese/baby0.htm|title=Patriarchal See of Babylon|publisher=www.gcatholic.org|accessdate=2009-02-01}}&amp;lt;/ref&amp;gt; arrived the formal recognition from Rome with the delivery of the [[pallium]] and the granting of the title ''&amp;quot;Patriarch of the Chaldean nation deprived of its patriarch&amp;quot;''. Thus into the Church of the East began a new patriarchal line in [[Full Communion]] with Rome.&lt;br /&gt;
&lt;br /&gt;
Felt ill, in August 1694 Joseph I left Amid for Rome, and formally abdicated in 1696. He died in Rome on Nov. 10, 1707.&amp;lt;ref name=&amp;quot;Murre&amp;quot;&amp;gt;{{cite web|url=http://syrcom.cua.edu/Hugoye/Vol2No2/HV2N2Murre.html|title=The Patriarchs of the Church of the East from the Fifteenth to Eighteenth Centuries|publisher=Hugoye: Journal of Syriac Studies|accessdate=2009-01-24|author=Heleen H.L. Murre}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
The life of Mar Yousip I is mainly known by his biography written in the early 18th century by 'Adb Al-Ahad son of Garabet (bishop of Amid, died 1728) and later translated in [[French language|French]] in 1898 by J.P. Chabot.&amp;lt;ref&amp;gt;{{cite journal |last=J.P. |first=Chabot |title=Les origines du patriarcat Chaldeén: vie de Mar Youssef Ier, premier patriarche des chaldeéns|journal=Revue de l'Orient Chrétien|issue=1|pages=66–90|year=1896}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==Notes==&lt;br /&gt;
{{reflist|2}}&lt;br /&gt;
&lt;br /&gt;
{{s-start}}&lt;br /&gt;
{{s-bef|before=[[Shimun XIII Dinkha]]}}&lt;br /&gt;
{{s-ttl|title=[[List of Chaldean Catholic Patriarchs of Babylon|Patriarch of Babylon]]|years=1681&amp;amp;ndash;1696}}&lt;br /&gt;
{{s-aft|after=[[Joseph II (Chaldean Patriarch)|Joseph II Sliba Maruf]]}}&lt;br /&gt;
{{end}}&lt;br /&gt;
&lt;br /&gt;
{{Authority control}}&lt;br /&gt;
{{Persondata &amp;lt;!-- Metadata: see [[Wikipedia:Persondata]]. --&amp;gt;&lt;br /&gt;
| NAME              = Joseph, I&lt;br /&gt;
| ALTERNATIVE NAMES =&lt;br /&gt;
| SHORT DESCRIPTION = Chaldean Patriarch&lt;br /&gt;
| DATE OF BIRTH     =&lt;br /&gt;
| PLACE OF BIRTH    =&lt;br /&gt;
| DATE OF DEATH     = 10 November 1707&lt;br /&gt;
| PLACE OF DEATH    = [[Rome]]&lt;br /&gt;
}}&lt;br /&gt;
{{DEFAULTSORT:Joseph, I}}&lt;br /&gt;
[[Category:Assyrian people]]&lt;br /&gt;
[[Category:Iraqi Assyrian people]]&lt;br /&gt;
[[Category:Chaldean Catholic Patriarchs of Babylon]]&lt;br /&gt;
[[Category:Converts to Catholicism from the Assyrian Church of the East]]&lt;br /&gt;
[[Category:1707 deaths]]&lt;br /&gt;
[[Category:Year of birth unknown]]&lt;/div&gt;</summary>
		<author><name>Ian</name></author>	</entry>

	<entry>
		<id>https://chaldeanwiki.com/index.php?title=Yohannan_VIII_Hormizd&amp;diff=3379</id>
		<title>Yohannan VIII Hormizd</title>
		<link rel="alternate" type="text/html" href="https://chaldeanwiki.com/index.php?title=Yohannan_VIII_Hormizd&amp;diff=3379"/>
				<updated>2015-05-19T01:34:32Z</updated>
		
		<summary type="html">&lt;p&gt;Ian: 1 revision imported&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{Infobox Patriarch&lt;br /&gt;
|image=Yohannan Hormizd.jpg&lt;br /&gt;
|name=Yohannan VIII Hormizd&lt;br /&gt;
|birth_name=Yohannan Hormizd&lt;br /&gt;
|church=[[Chaldean Catholic Church]]&lt;br /&gt;
|see=[[List of Chaldean Catholic Patriarchs of Babylon|Babylon of the Chaldeans]]&lt;br /&gt;
|patriarch_of=[[List of Chaldean Catholic Patriarchs of Babylon|Patriarch of Babylon of the Chaldeans]]&lt;br /&gt;
|residence=[[Ottoman Iraq|Iraq]], [[Ottoman Empire]]&lt;br /&gt;
|enthroned=5 July 1830&lt;br /&gt;
|ended=1838&lt;br /&gt;
|predecessor=[[Augustine Hindi|Augustine (Yousef V) Hindi]]&lt;br /&gt;
|successor=[[Nicholas I Zaya|Nicholas I Zay{{transl|ar|DIN|ʿ}}a]]&lt;br /&gt;
|birth_date=1760&lt;br /&gt;
|birth_place=[[Alqosh]]&lt;br /&gt;
|death_date= {{BirthDeathAge||1760|||1838|8|16|yes}}&lt;br /&gt;
|death_place=[[Mosul]]&lt;br /&gt;
|consecration = 22 May 1776 ([[Bishop (Catholic Church)|Bishop]])&lt;br /&gt;
|consecrated_by=Patriarch Eliya XII Denha&lt;br /&gt;
}}&lt;br /&gt;
Mar '''Yohannan VIII Hormizd''' (often referred to by European missionaries as ''John Hormez'' or ''Hanna Hormizd'') was the last hereditary [[patriarch]] of the Eliya line of the [[Church of the East]] and the first patriarch of a united [[Chaldean Catholic Church|Chaldean Church]].  After succeeding his uncle Eliya XII Denha in 1780 as patriarch of Mosul, he made a [[Catholic Church|Catholic]] profession of faith and was recognised in 1783 by the [[Holy See|Vatican]] as patriarchal administrator and archbishop of Mosul. His career as patriarchal administrator was controversial, and was marked by a series of conflicts with his own bishops and also with the Vatican. Suspended from his functions in 1812 and again in 1818, he was reinstated by the Vatican in 1828.  In 1830, following the death of the [[Amid]] patriarchal administrator [[Augustine Hindi]], he was recognised by the Vatican as ''patriarch of Babylon of the Chaldeans'' and the Mosul and Amid patriarchates were united under his leadership.  This event marked the birth of the modern [[Chaldean Catholic Church]].  Yohannan Hormizd died in 1838 and his successor [[Nicholas I Zaya|Nicholas I Zay{{transl|ar|DIN|ʿ}}a]] was chosen by the Vatican, ending the centuries-old practice of hereditary succession in the Eliya line of the Church of the East.&lt;br /&gt;
&lt;br /&gt;
==Sources==&lt;br /&gt;
Yohannan Hormizd's career, first as patriarchal administrator and finally as patriarch, was dogged by disputes.  Most of the surviving contemporary accounts of his patriarchate are partisan, and must be used with care.&lt;br /&gt;
&lt;br /&gt;
Yohannan Hormizd himself wrote a polemical autobiography in [[Syriac language|Syriac]], a fragment of which (breaking off in 1795) was translated into English by the [[Anglican]] [[missionary]] [[George Percy Badger]] and reproduced in his classic 1852 study of the Church of the East, ''The Nestorians and Their Rituals''.&amp;lt;ref&amp;gt;[http://books.google.co.uk/books?id=Oo8AAAAAcAAJ&amp;amp;printsec=titlepage&amp;amp;hl=it#PPA150 Badger, ''Nestorians'', i. 150–60]&amp;lt;/ref&amp;gt;  His opponents responded with an equally intemperate history of the monastery of [[Rabban Hormizd Monastery|Rabban Hormizd]] under the headship of Gabriel Dambo of Mardin (1775–1832), which was published in a French translation by M. Brière in 1910 and 1911.&amp;lt;ref&amp;gt;Brière, 'Histoire du couvent de Rabban Hormizd', ''ROC'', 15 (1910) and 16 (1911)&amp;lt;/ref&amp;gt;  Both texts provide spirited accounts of the intrigues that followed Yohannan's election as patriarch in 1780.  Neither can be trusted on matters of interpretation, but if read judiciously they shed valuable light on the politics of the Chaldean Church in the late eighteenth- and early-nineteenth centuries and provide a wealth of factual detail omitted in many accounts of this period.&lt;br /&gt;
&lt;br /&gt;
The partisan spirit of the contemporary accounts was reflected in the texts of several later Chaldean authors, notably Giamil and Tfinkdji. Stephane Bello, writing in 1939 with access to the Vatican archives, was the first scholar to write a dispassionate account of Yohannan Hormizd's career.  He has been followed more recently by Habbi. Much of the recent scholarship on Yohannan Hormizd is in French or German, but convenient English summaries of his career were made by [[David Wilmshurst]] in 2000 and by [[Christoph Baumer]] in 2006.&amp;lt;ref&amp;gt;Wilmshurst, ''EOCE'', 28–32; Baumer, ''Church of the East'', 250–1&amp;lt;/ref&amp;gt;  In 2003 Wilhelm Baum and Dietmar Winkler devoted three paragraphs to Yohannan Hormizd.&amp;lt;ref&amp;gt;Baum and Winkler, ''Church of the East'', 121–2&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==Background==&lt;br /&gt;
By 1760 the Church of the East had become divided into three patriarchates:&lt;br /&gt;
* The largest and oldest [[episcopal See|Patriarchal See]] was based at the [[Rabban Hormizd Monastery|Rabban Hormizd]] monastery of Alqosh, near [[Mosul]]. It spread from [[Aqrah]] up to [[Siirt|Seert]] and [[Nusaybin|Nisibis]], covering the South rich plain of Mosul (it is known also as ''Eliya'' line). Since the 15th century, its Patriarchs belonged to the Bar Mama (or ''Abuna'') family and they were appointed through a strict hereditary system: the old patriarch chose one of his nephews (or sometimes his young brother), and consecrated him as metropolitan bishop with right of succession. The nephew was known as ''natar kursi'' (designated successor). In 1760 the patriarch of this See was [[Eliya XII (or XI) Denkha]], the uncle of Yohannan Hormizd.&lt;br /&gt;
* In 1681, the patriarchal See of [[Amid]] became independent and made a formal union with [[Rome]] (it is also known as the ''Josephite'' line). This See included a few towns such as Amid and [[Mardin]] in the North-West Mountains, which are now in [[Turkey]]. In 1760 the patriarch was [[Joseph IV (Chaldean Patriarch)|Joseph IV Lazar Hindi]], a relative of [[Augustine Hindi]]. The patriarchate struggled with financial difficulties due to the tax burden imposed by the [[Turkey|Turkish]] authorities.&lt;br /&gt;
* The third patriarchal See was located in [[Qochanis]] and extended into the North East Mountains (also known as the ''Shimun'' line). This patriarchal line began in 1553 when Mar [[Shimun VIII Yohannan Sulaqa|Yohannan Sulaqa]] was consecrated bishop by the [[Pope]], but soon became independent of Rome and still survives in the denomination today known as [[Assyrian Church of the East]]&lt;br /&gt;
&lt;br /&gt;
==Early life==&lt;br /&gt;
[[File:Badger 1852 Church in Mosul East side.jpg|left|thumb|300ppx|Church in Mosul about 1850]]&lt;br /&gt;
According to his autobiography, Yohannan Hormizd was born in 1760 in Alqosh to an [[Assyrian people|Assyrian]] family. His father, the [[deacon]] Hanna (Yohannan), was the brother of the Mosul patriarch Eliya XII Denha (1722–78).&amp;lt;ref&amp;gt;Badger, ''Nestorians'', i. 150&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
The [[Holy See|Vatican]] opened a correspondence with both the Mosul and Qochanis patriarchs in 1770. At this period hereditary succession (normally from uncle to nephew as the patriarchs themselves remained celibate) was in force in both patriarchates. Eliya XII Denha had consecrated his nephew Isho{{transl|ar|DIN|ʿ}}yahb a metropolitan in 1745 and had also bestowed upon him the traditional title ''natar kursya'' ('guardian of the throne'), thereby designating him his presumptive successor.  Eliya XII and his nephew Isho{{transl|ar|DIN|ʿ}}yahb both made Catholic professions of faith in 1771 in response to this overture from the Vatican, and [[Pope Clement XIV]] wrote to Eliya on 12 December 1772 to commend his zeal and to urge him to bring over his people to Catholicism.  Earlier in the same year, however, Eliya had deposed Isho{{transl|ar|DIN|ʿ}}yahb from his metropolitan rank, apparently alarmed by his ambition, and ordained the twelve-year-old Yohannan Hormizd, another nephew, as a deacon.  Four years later, on 22 May 1776, Yohannan was consecrated a metropolitan by Eliya XII Denha and named ''natar kursya'' in his turn.  If his uncle had lived a few years longer, Yohannan's succession would probably have been assured, but the patriarch was among the victims of a plague which swept through the Mosul district in 1778, and died in the village of Alqosh on 29 April 1778.&amp;lt;ref&amp;gt;Badger, ''Nestorians'', i. 150–1&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Irregular patriarchal succession, 1780–83 ==&lt;br /&gt;
On the following day his nephews Isho{{transl|ar|DIN|ʿ}}yahb and Yohannan both made Catholic professions of faith and were reconciled.  Despite the late patriarch's preference the Latin missionaries supported Isho{{transl|ar|DIN|ʿ}}yahb, who shortly afterwards succeeded his uncle as patriarch, taking the name Eliya XIII Isho{{transl|ar|DIN|ʿ}}yahb, without open opposition from the young Yohannan.  In May 1779, as soon as he had obtained his ''firman'' of office from the Ottoman civil authorities, Isho{{transl|ar|DIN|ʿ}}yahb abandoned his Catholic profession of faith.  The notables of Mosul, with the support of the [[Catholic missions|Latin missionaries]], deposed him and unanimously chose Shem{{transl|ar|DIN|ʿ}}on of [[Amid]], the Chaldean metropolitan of [[Mardin]] (1758–88), as patriarch in his place.  Shem{{transl|ar|DIN|ʿ}}on however declined to accept the honour, and Isho{{transl|ar|DIN|ʿ}}yahb’s opponents were obliged to turn instead to the young Yohannan Hormizd, who had demonstrated his zeal for the Catholic cause since Isho{{transl|ar|DIN|ʿ}}yahb's ''volte face'' by converting the Nestorians of the large [[Erbil Governorate|Erbil]] villages of {{transl|ar|DIN|ʿ}}Aïnqawa, Armuta and Shaqlawa to Catholicism and encouraging them to withdraw their loyalty from his cousin.  Yohannan was elected patriarch in 1780, and his supporters bribed the governor of Mosul to use his influence to obtain a [[firman (decree)|firman]] from [[Constantinople]], granting him authority over both the Chaldean Christians and the Nestorians.  Yohannan then sent a profession of faith and a letter of submission to the Vatican.&amp;lt;ref&amp;gt;Badger, ''Nestorians'', i. 152&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
The Vatican was placed in a dilemma by this turn of events. If Yohannan's profession of faith was genuine, he might be the Catholic [[List of Chaldean Catholic Patriarchs of Babylon|patriarch of Babylon]] the Vatican had long been hoping for, and his confirmation would be rapidly followed by the adoption of Catholicism by all the villages of the Mosul patriarchate. On the other hand, to confirm Yohannan's election would be to condone the distasteful practice of hereditary succession.  There was also the possibility that Yohannan's submission was no more sincere than Isho{{transl|ar|DIN|ʿ}}yahb's had been two years earlier.  The Vatican's initial response was therefore to inform Raphael Terconuski, the superior of the Catholic mission at Mosul, that Yohannan Hormizd's profession of faith appeared to be satisfactory, but that his election was to be considered null. On 18 February 1783, having considered further, the [[Congregation for the Evangelization of Peoples|Sacred Congregation]] decided to appoint Yohannan archbishop of Mosul and administrator of the patriarchate of Babylon, granting him all the necessary powers to that end except the title and the insignia of the patriarch.&amp;lt;ref&amp;gt;Bello, ''Congrégation de S. Hormisdas'', 11–14&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Patriarchal administrator and archbishop of Mosul, 1783–1830 ==&lt;br /&gt;
&lt;br /&gt;
=== Honeymoon period, 1783–1801 ===&lt;br /&gt;
For the next eight years Yohannan Hormizd seemed to justify the hopes placed in him.  He lived on amicable terms with the Catholic missionaries and devoted his energies to the conversion to Catholicism of the villages under his authority.  In May 1790, on the advice of the missionaries, he consecrated his nephew Shem{{transl|ar|DIN|ʿ}}on metropolitan, and in August of the same year sent him to the Zibar district, where he converted the Nestorian villages of Arena and Barzane.&amp;lt;ref name=&amp;quot;BadgerNestorians&amp;quot;&amp;gt;Badger, ''Nestorians'', i. 155&amp;lt;/ref&amp;gt;  The following year he sent Shem{{transl|ar|DIN|ʿ}}on to Mengesh in the Sapna district, where he was equally successful.&amp;lt;ref name=&amp;quot;BadgerNestorians&amp;quot; /&amp;gt;   The high point of this honeymoon period came in February 1791, when the Vatican appointed him patriarchal administrator of the [[Amid]] patriarchate, recalling [[Joseph IV (Chaldean Patriarch)|La{{transl|ar|DIN|ʿ}}zar Hindi]] to Rome to leave him a free hand.  This appointment led to strenuous protests from La{{transl|ar|DIN|ʿ}}zar Hindi, his vicar-general Joseph {{transl|ar|DIN|ʿ}}Attar and the clergy of Amid, and on 3 February 1793 Yohannan Hormizd's appointment was rescinded.&lt;br /&gt;
&lt;br /&gt;
At about the same time the Mosul missionaries began to report  disquieting rumours about his performance of his duties.  He was said, among other things, to have released a monk from his vows for a payment of 73 piastres, to have used liturgical books full of errors, to have visited families without a companion, and to have feasted in the house of a newly-wed couple.  Although each of these incidents was relatively minor in itself, and could equally have been explained by mere imprudence rather than active corruption, their frequency was disturbing.  For his part, Yohannan accused the missionaries of arrogance and mischief-making, and on his request the [[apostolic vicar]] of [[Baghdad]], Fulgence de Sainte Marie, was sent to Mosul as apostolic vicar in 1796 to report on the situation.&amp;lt;ref&amp;gt;Bello, ''Congrégation de S. Hormisdas'', 12–13&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
While his relations with the Vatican were cooling, Yohannan Hormizd also had to deal with the opposition of his cousin Isho{{transl|ar|DIN|ʿ}}yahb, who continued to assert that he was the rightful patriarch.  After Yohannan's irregular election in 1780 Isho{{transl|ar|DIN|ʿ}}yahb withdrew to [[Amadiya|{{transl|ar|DIN|ʿ}}Amadiya]], whose governor Isma'il gave him 'the Nestorian dioceses of the mountain' to govern.  He made another Catholic profession of faith on 7 April 1783 in an attempt to regain the sympathies of the missionaries, and to preserve the patriarchate within his family consecrated his nephew Hnanisho{{transl|ar|DIN|ʿ}} metropolitan in 1784. Several years of bitter faction-fighting followed, in which the civil authorities in Baghdad held the balance between Muhammad, governor of Mosul, who supported Yohannan Hormizd, and Isma'il, governor of {{transl|ar|DIN|ʿ}}Amadiya, who sheltered Isho{{transl|ar|DIN|ʿ}}yahb and his followers.  In 1788 Yohannan's nephew Shem{{transl|ar|DIN|ʿ}}on was arrested on a visit to the village of Bir Sivi in the Zakho district on Isma'il's orders, and was only released by the joint efforts of the governor of Mosul and Sulaiman, governor of Baghdad.&amp;lt;ref&amp;gt;Badger, ''Nestorians'', i. 153&amp;lt;/ref&amp;gt;   In 1792 Yohannan and his two brothers went to {{transl|ar|DIN|ʿ}}Amadiya on business, and were arrested, beaten and imprisoned for three and a half months by the Turkish authorities.   Again, the governor of Baghdad intervened to secure their release.&amp;lt;ref&amp;gt;Badger, ''Nestorians'', i. 156&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== First clash with the Vatican, 1802 ===&lt;br /&gt;
Yohannan's precarious relations with the Vatican survived a further test in 1801, only to sink further in 1802.  In 1796 a delegation from the [[Saint Thomas Christians|Malabar]] Christians arrived in Mosul and begged him to consecrate a bishop for them.  Yohannan punctiliously wrote to the [[Holy See|Vatican]] for guidance, but as [[Rome]] was then under French occupation he did not receive a reply, and in 1798 consecrated the Indian priest Paul Pandari as a bishop for the Malabar Christians.  As many of the Malabar Christians were now in communion with the [[Syriac Orthodox Church]], which had replaced the [[Church of the East]] as the main focus of loyalty among the Syrian Christians of [[India]] three centuries earlier, Yohannan tactfully appointed Pandari bishop 'of Mar Behnam', a celebrated [[West Syrian Rite|West Syrian]] monastery near Mosul.  The Malabar Christians informed the Vatican of Pandari's arrival in India in a letter of 17 January 1800, and Yohannan was asked to account for his actions.&amp;lt;ref&amp;gt;Puliurumpil, ''A Period of Jurisdictional Conflict in the Suriani Church of India'', 2–50&amp;lt;/ref&amp;gt;  His explanation was accepted, and in a general consistory of 23 September 1801 the possibility of appointing him patriarch of Babylon was considered.&amp;lt;ref name=&amp;quot;BelloCongregation&amp;quot;&amp;gt;Bello, ''Congrégation de S. Hormisdas'', 14–15&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Unfortunately for Yohannan, his position was immediately undermined by renewed complaints from a section of the Chaldean church.  On this occasion his opponents, supported by the Latin missionaries, impugned his orthodoxy and accused him of embezzling monastic property.  In 1802 the priest Yohannan Mushe of Tel Isqof was despatched to Rome with letters demanding the dismissal of both Yohannan and his nephew Shem{{transl|ar|DIN|ʿ}}on, metropolitan of {{transl|ar|DIN|ʿ}}Amadiya.  He had only sufficient funds to reach [[Saida, Syria|Saida]] in [[Syria]], where he entrusted the letter to the missionary Leopold Sebastien, who was leaving for Rome. The letters do not seem to have produced any immediate effect, but doubtless added to the concern in the Vatican about Yohannan Hormizd's reliability.&amp;lt;ref name=&amp;quot;BelloCongregation&amp;quot; /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== Increasing opposition, 1802–12 ===&lt;br /&gt;
[[File:Rabban Hurmizd.jpg|thumb|300ppx|The monastery of Rabban Hormizd, Alqosh]]&lt;br /&gt;
Some years later Yohannan Hormizd faced another challenge to his authority from a [[Baghdad]] merchant named Gabriel Dambo, one of the most remarkable figures of the nineteenth century Chaldean church. A Chaldean Christian born in Mardin in 1775, Dambo had made sufficient money by middle age to be able to retire from business, and he decided to devote the rest of his life to the service of the Church.  The once-thriving [[monastery]] of [[Rabban Hormizd Monastery|Rabban Hormizd]] near [[Alqosh]] had been abandoned for many years, and he dreamed of reviving its monastic life and restoring it to its former glory.  He paved the way by giving free lessons in [[Baghdad]] to young [[Chaldean Christians]] in [[Arabic language|Arabic]], grammar, logic and rhetoric, and after winning a formidable reputation as a teacher and scholar moved to Mosul. In 1808 he had no difficulty in persuading the Chaldean authorities and their Catholic missionary advisers to allow him to establish a [[seminary]] in the monastery of Rabban Hormizd. Before long he collected a number of pupils, who were vowed to poverty and celibacy, and was appointed lay superior of the seminary.&lt;br /&gt;
&lt;br /&gt;
An energetic and charismatic visionary, Gabriel had his own ideas of how things should be done, and had little patience with the leaders of the Chaldean Church.  If the new seminary was to succeed it needed its own income, and Gabriel insisted, probably correctly, that a large proportion of the property then in the hands of the patriarchal family was originally owned by the monastery of Rabban Hormizd and should rightly revert to it.  Yohannan Hormizd, understandably, did not agree.  This single issue would have been sufficient to poison relations between the two men, but there were other causes of friction as well.  The new seminary had attracted men who disliked Yohannan Hormizd and wanted more vigorous leadership.  The monks rallied around their superior and made no secret of their distaste for the patriarchal administrator.  They were joined by the Catholic missionaries, who shared their admiration for Gabriel, and by a number of influential priests, notably Yohannan of Tel Isqof and Yohannan of Alqosh.  In 1809 the [[Holy See|Vatican]] seriously considered the possibility of suspending Yohannan Hormizd, and rumours that he had indeed been suspended were circulated by his opponents, eliciting a spirited letter of protest to the Vatican by his supporters on 15 October 1811.&lt;br /&gt;
&lt;br /&gt;
Yohannan Hormizd's opponents were eventually able to win over the ''[[pasha]]'' of [[Mosul]] to their side, who briefly imprisoned him.  The missionaries, led by the priest Joseph Campanile, immediately took steps to replace him, and Campanile on his own authority consecrated the priest Shem{{transl|ar|DIN|ʿ}}on Sayyegh bishop of Mosul.  He was later reproved by the Vatican for this abusive consecration, and [[Augustine Hindi]] was ordered to send Shem{{transl|ar|DIN|ʿ}}on to Mosul merely as a priest.  At the same time, learning of Yohannan Hormizd's imprisonment, the Vatican appointed Augustine Hindi apostolic delegate and the priest Giwargis of Alqosh apostolic vicar of Mosul, 'during the absence of the said archbishop', on 4 October 1811.  This decision sent a clear signal that the Vatican’s patience with Yohannan Hormizd was, for the moment, almost at an end.&lt;br /&gt;
&lt;br /&gt;
=== Suspension and Reinstatement, 1812–30 ===&lt;br /&gt;
Yohannan Hormizd was eventually ransomed by his supporters and returned to [[Mosul]], where he had several of his opponents imprisoned.  After a series of mutual recriminations, the [[Rabban Hormizd Monastery|Rabban Hormizd]] monks and the Catholic missionaries wrote jointly to the [[Congregation for the Evangelization of Peoples|Propaganda]] calling for Yohannan's deposition, alleging that he was opposed to their order, that he incited the [[Kurds]] of Isma'il Pasha against them, and that he was endeavouring to lead the Chaldean proselytes back to Nestorianism.  The Vatican was alarmed at these charges and on 15 February 1812 suspended Yohannan from his functions as archbishop of Mosul and patriarchal administrator and appointed Shem{{transl|ar|DIN|ʿ}}on Sayyegh apostolic vicar for Mosul and the priest Giwargis of Alqosh apostolic vicar for the [[List of Chaldean Catholic Patriarchs of Babylon|patriarchate of Babylon]]. Both men were placed under the direct authority of [[Augustine Hindi]], who was named ''apostolic delegate for the affairs of the patriarchate of Babylon''. While this decision temporarily placed the two Catholic patriarchates under a single trustworthy authority, it was from the Vatican's point of view little more than a makeshift, as Hindi could never command the same prestige in the Mosul district as a member of the old patriarchal family.&amp;lt;ref&amp;gt;Bello, ''Congrégation de S. Hormisdas'', 16–18&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Yohannan Hormizd's suspension lasted for six years. At first he refused to accept the validity of the Vatican's decision, and issued threats against his opponents. Eventually he decided to seek a reconciliation with them, and a meeting was held on 20 February 1818 at [[Alqosh]], attended by a hundred clergymen and notables, in which he agreed to apologise in writing for his misdeeds. In return, the assembly decided to send a letter to the Vatican to ask for his suspension to be lifted.  Unfortunately, these good intentions were frustrated, as the letter’s courier was killed en route and the letter never reached its destination. The Vatican, ignorant of the ''rapprochement'' between Yohannan Hormizd and his opponents, was briefed on the affairs of the Chaldean Church early in 1818 by Campanile, who is unlikely to have placed a sympathetic construction on Yohannan Hormizd’s previous record. The Sacred Congregation concluded that Yohannan Hormizd had not taken his suspension seriously, and on 24 May 1818 it was renewed. The appointments of Augustine Hindi and Giwargis of Alqosh were renewed by briefs of 26 June 1818, and Yohannan Hormizd was informed of the new sentence in a latter of 11 July 1818.&amp;lt;ref&amp;gt;Giamil, ''Genuinae Relationes'', 391–4; Bello, ''Congrégation de S. Hormisdas'', 18 and 66–9&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Once again, Yohannan refused to accept the validity of the sentence, and for the next few years continued to assert his authority wherever he could, abetted by the civil authorities at {{transl|ar|DIN|ʿ}}Amadiya.  The [[Rabban Hormizd Monastery|Rabban Hormizd]] monks refused to have anything to do with him and accepted the authority of [[Augustine Hindi]] (the [[colophon (publishing)|colophon]] of manuscripts copied in the monastery at this period dutifully mention the patriarchal administrator Mar Augustine, not Mar Yohannan). Three monks of the monastery of Rabban Hormizd were consecrated metropolitan bishops at [[Amid]] by Hindi in March 1825: the future patriarch [[Joseph Audo]] for Mosul, Lawrent Sho{{transl|ar|DIN|ʿ}}a for [[Baghdad]], and Basil Asmar for {{transl|ar|DIN|ʿ}}Amadiya.  Two other bishops perhaps consecrated on the same occasion, Mikha'il Kattula and Ignatius Dashto, were sent to [[Seert]] and [[Mardin]], traditional sees of the Amid patriarchate, but the other three returned to their home villages north of Mosul; Basil Asmar to [[Tel Keppe|Telkepe]], Lawrent Sho{{transl|ar|DIN|ʿ}}a to [[Tel Esqof|Tel Isqof]] and Joseph Audo to [[Alqosh]].  There each of the three metropolitans began ordaining priests and deacons, in a direct challenge to Yohannan's authority.&amp;lt;ref&amp;gt;Badger, ''Nestorians'', i. 163&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Meanwhile, the Vatican reconsidered the condemnation of Yohannan Hormizd in the light of fresh information, and on 25 November 1826 publicly absolved him. At the same time, to restore the peace of the Chaldean Church, it urged the 66-year-old former patriarchal administrator to renounce his claims to the archdiocese of Mosul and to retire quietly. Yohannan, vindicated by the Vatican's absolution and supported by the local civil authorities, stubbornly refused to retire.  Instead, he fought back against his opponents.  In 1827, during the absence of the superior Gabriel Dambo in Rome, a number of monks in the monastery of [[Rabban Hormizd Monastery|Rabban Hormizd]] rebelled against its administrator Yohannan Gwera, who enjoyed the support of the metropolitan Joseph Audo.  Yohannan Hormizd upheld the rebels, and was also able to have Basil Asmar expelled from [[Tel Keppe|Telkepe]], forcing him to take refuge in Amid.&lt;br /&gt;
&lt;br /&gt;
On 3 April 1827, shortly after Basil's arrival, [[Augustine Hindi]] died at Amid and was buried in a cemetery outside the city's walls.  His death ended the 146-year independent existence of the Amid patriarchate.  Basil Asmar, who had endeared himself to the clergy and people of Amid, was appointed Hindi's successor as metropolitan of Amid in 1828, and the Vatican confirmed the appointment.  Amid reverted to a metropolitan diocese of the Chaldean Church, and the Amid patriarchate came to an end.  Basil's appointment required a bishop to be found for the see of {{transl|ar|DIN|ʿ}}Amadiya, and as Joseph Audo had failed to overcome the opposition of Yohannan's supporters to his appointment of metropolitan of Mosul, Gabriel Dambo and the Catholic missionaries agreed that he should be reassigned to {{transl|ar|DIN|ʿ}}Amadiya. Like Basil before him, however, he declined to trust his life to the good faith of Isma'il Pasha, and withdrew to Alqosh, where he continued to intrigue among the Chaldeans and with the local authorities of Mosul against Yohannan.  As a result of these intrigues Yohannan was imprisoned for a third time by the Ottoman authorities, for four months.&amp;lt;ref&amp;gt;Badger, ''Nestorians'', i. 163–4&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
After Yohannan's release the charges made by his opponents were investigated by the Latin [[apostolic vicar]] Pierre-Alexander Coupperie, who travelled to Mosul to interview him.  Yohannan was absolved of blame and restored to the exercise of his jurisdiction.  Gabriel Dambo was then in Rome, to lobby more effectively against his rival, and he and his supporters declared Coupperie's decision invalid and insisted that they would not accept Yohannan’s authority unless he was absolved personally by the pope. Coupperie therefore persuaded a number of influential Chaldeans to join him in a written appeal to the Vatican for Yohannan's reinstatement.&amp;lt;ref&amp;gt;Bello, ''Congrégation de S. Hormisdas'', 22&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Patriarch of Babylon, 1830–8 ==&lt;br /&gt;
&lt;br /&gt;
Couperrie died shortly afterwards, and was succeeded as apostolic vicar by his assistant Laurent Trioche, who was consecrated a bishop for the purpose by Yohannan and the metropolitan Lawrent Sho{{transl|ar|DIN|ʿ}}a of Kirkuk on the Vatican's instructions. Like his predecessor, Trioche took Yohannan’s part, and in a consistory held in the Vatican on 5 July 1830 it was agreed that Yohannan should be relieved of the archdiocese of Mosul, confirmed as patriarch of the Chaldeans and awarded the [[pallium]] (the traditional symbol of the Vatican's recognition of his succession).&amp;lt;ref&amp;gt;Giamil, ''Genuinae Relationes'', 394–5&amp;lt;/ref&amp;gt;  The decision was communicated to Yohannan Hormizd, now aged 74, in two [[papal bulls]] of the same date.&amp;lt;ref&amp;gt;Giamil, ''Genuinae Relationes'', 396–9; Bello, ''Congrégation de S. Hormisdas'', 22&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Fifty years after his irregular succession to Eliya XII Denha, Yohannan Hormizd was finally recognised as patriarch of the [[Chaldean Catholic Church|Chaldean Church]] and awarded the title ''patriarch of Babylon of the Chaldeans''. The suppression of the Amid patriarchate and the union of the Chaldean [[diocese]]s under the patriarch of Babylon in 1830 marked the birth of the modern [[Chaldean Catholic Church]]. The new patriarch was awarded the [[pallium]] in a ceremony held in [[Baghdad]] on 6 April 1834.&lt;br /&gt;
&lt;br /&gt;
=== Further troubles ===&lt;br /&gt;
Yohannan Hormizd was unhappy with the thought of the unbroken succession of the Eliya line ending with his death, and made a curious bargain with the Nestorian church in an attempt to continue the succession. He ordained his nephew Mansur Sefaro a priest, and in 1831 sent him to the Nestorian patriarch Shem{{transl|ar|DIN|ʿ}}on XVII Abraham (1820–61), who consecrated him at Urmi and appointed him metropolitan over the Nestorians of {{transl|ar|DIN|ʿ}}Amadiya. The new metropolitan took the name Eliya, the traditional name of the Chaldean patriarchs, and shortly afterwards abandoned the pretence of being a Nestorian and was re-admitted into the Chaldean church, ultimately becoming the first Chaldean bishop of {{transl|ar|DIN|ʿ}}Aqra in 1852.&amp;lt;ref&amp;gt;Badger, ''Nestorians'', i. 167–8&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
The feud between Gabriel Dambo and Yohannan Hormizd ended in 1832, when Alqosh was pillaged by Kör Muhammad, chief of the [[Soran Emirate|Soran Kurds]] of [[Rawanduz]]. Gabriel Dambo was among the hundreds of East Syrians killed by the Kurds, and was succeeded as superior of the monastery of Rabban Hormizd by Yohannan Gwera. Despite the death of his chief rival, the patriarch's troubles continued throughout the 1830s.  The monks of the monastery of Rabban Hormizd still refused to acknowledge his authority, and were supported by the metropolitan [[Joseph Audo]], who now claimed jurisdiction over the monastery on the grounds that it lay within his diocese of {{transl|ar|DIN|ʿ}}Amadiya. Yohannan Hormizd retaliated by suspending Audo and a number of Rabban Hormizd monks, but this action had little effect. A rumour spread that a new Latin apostolic vicar had been appointed in Rome and was now on his way to Mosul, and the patriarch's enemies temporarily came into line to make a good first impression on this important official. But when after two months he had still not arrived, they resumed their duties in flat defiance of Yohannan's orders.  One man only, a priest named Stephen, sent in his submission to the patriarch, and was appointed priest of Telkepe.&amp;lt;ref name=&amp;quot;BadgerNestorians_a&amp;quot;&amp;gt;Badger, ''Nestorians'', i. 166&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
The patriarch now sent the metropolitan Gregory Peter di Natale to Mosul, accompanied by a priest named Andrew to represent the apostolic vicar Laurent Trioche, to inquire into the conduct of the Rabban Hormizd monks. Joseph Audo thereupon retired to Amid, where he was welcomed by its metropolitan Basil, and the delegates condemned the obstinacy of the monks and returned to Baghdad.&amp;lt;ref name=&amp;quot;BadgerNestorians_a&amp;quot; /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
In the light of this vindication of the patriarch’s behaviour, an attempt was made by the monastery's superior Yohannan Gwera to put his side of the story. He travelled to Rome, accompanied by the monks Mikha'il Jammala and Peter, and eventually obtained a papal audience. The response of the Vatican authorities to the monks' complaints was lukewarm. They were assured that their allegations would be investigated but were also censured for their disobedience.&amp;lt;ref&amp;gt;Badger, ''Nestorians'', i. 166–7; Bello, ''Congrégation de S. Hormisdas'', 122–39&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
On 13 October 1837, conscious that he had not long to live, Yohannan designated as [[coadjutor bishop|coadjutor]] and 'guardian of the throne' Gregory Peter di Natale, metropolitan of [[Gazarta]], presumably with the intention of excluding his nephew Eliya from the patriarchal dignity. However, he did not promise the succession to his coadjutor, and in order to ensure that the hereditary principle would play no part in the selection of the next patriarch the Vatican appointed by a bull of 25 September 1838 [[Nicholas I Zaya|Nicholas Zay{{transl|ar|DIN|ʿ}}a]], metropolitan of [[Salmas]], Yohannan’s coadjutor with the right of succession.&amp;lt;ref&amp;gt;Giamil, ''Genuinae Relationes'', 400–1&amp;lt;/ref&amp;gt; The reason given in the bull for this decision was the growing infirmity of the patriarch and the desirability of avoiding inconvenience and harm should the patriarchate suddenly become vacant. Zay{{transl|ar|DIN|ʿ}}a was [[Persia]]n by birth, from Khosrowa, and as such could lay claim to the protection of the foreign consuls in [[Turkey]]. He had also been educated at the [[Congregation for the Evangelization of Peoples|Propaganda]], and it was hoped that after Yohannan's death he would loyally implement Vatican policy.&lt;br /&gt;
&lt;br /&gt;
Yohannan, meanwhile, had died a few weeks earlier, on 16 August 1838.  His family, which had provided successive patriarchs since the middle of the fifteenth century, now renounced its hereditary right of succession but insisted on keeping the title ''Abuna'' as the family name henceforward.  [[Nicholas I Zaya|Nicholas Zay{{transl|ar|DIN|ʿ}}a]] duly succeeded Yohannan Hormizd as patriarch, but the manner in which his succession had been arranged by the Vatican offended most of the Chaldean bishops, and Zay{{transl|ar|DIN|ʿ}}a's brief reign (1839–46) would prove to be as stormy as that of his predecessor.&lt;br /&gt;
&lt;br /&gt;
==Notes==&lt;br /&gt;
{{reflist|2}}&lt;br /&gt;
&lt;br /&gt;
==References==&lt;br /&gt;
* {{cite book |last=Badger |first=George Percy |title=The Nestorians and Their Rituals with the Narrative of a Mission to Mesopotamia and Coordistan in 1842 to 1844 (two volumes)|year=1852 |publisher=Kessinger Publishing |isbn=978-1-4179-4675-4}}&lt;br /&gt;
* {{cite book |first1=Wilhelm |last1=Baum |first2=Dietmar W. |last2=Winkler |title=The Church of the East: A Concise History |url=http://books.google.com/?id=yt0X840SjpEC |year=2003|publisher=[[Routledge]]|isbn=978-0-415-29770-7}}&lt;br /&gt;
* Baumer, Christophe, ''The Church of the East'' (London and New York, 2006)&lt;br /&gt;
* {{cite journal |last= Bello| first= Stephane| year= 1939| title=La congrégation de S. Hormisdas et l'église chaldéenne dans la première moitié du XIXe siècle| journal=Orientalia Christiana Analecta | location= Rome| issue= 122}}&lt;br /&gt;
* Brière, M., 'Histoire du couvent de Rabban Hormizd de 1808 a 1832', ''ROC'', 15 (1910), 4, 410–24;16 (1911), 2, 113–27; 3, 249–54; and 4, 346–55&lt;br /&gt;
* {{cite book |last=Fiey |first=J.M. |title=Pour un Oriens Christianus novus; répertoire des diocèses Syriaques orientaux et occidentaux |year=1993 |location=Beirut |isbn=3-515-05718-8}}&lt;br /&gt;
* {{cite book |last=Frazee |first=Charles A. | title=Catholics and Sultans: The Church and the Ottoman Empire 1453-1923 |year=2006 | publisher=Cambridge University Press |isbn= 0-521-02700-4}}&lt;br /&gt;
* {{cite book |last=Giamil |first=Samuel |title=Genuinae relationes inter Sedem Apostolicam et Assyrorum Orientalium seu Chaldaeorum ecclesiam |location=Rome |year=1902}}&lt;br /&gt;
* {{cite journal |last= Habbi| first= Joseph| year= 1971| title= L'unification de la hiérarchie chaldéenne dans la premiere moitié du XIX siècle, 1 partie| journal= Parole de l'Orient| volume= 2| issue= 1| pages= 141}}&lt;br /&gt;
* Hornus, J. M., 'Mémoire sur l'état actuel et l'avenir de la religion catholique et des missions lazaristes et protestantes en Perse par le Comte de Challaye, consul de France à Erzéroun' (''Cahiers d'Études Chrétiennes Orientales 8-9 für 1970/73''), Action Chrétienne en Orient, Strasbourg o. J., 79f. 85f. 102-109. 148.&lt;br /&gt;
* {{cite book |last=Puliurumpil |first=J. A.|title=A Period of Jurisdictional Conflict in the Suriani Church of India (1800–1838) |publisher=Oriental Institute of Religious Studies, India Publications |year=1994 |location=Kerala}}&lt;br /&gt;
* {{cite journal |last=Tfinkdji |first=J. | title=L’église chaldéenne catholique autrefois et aujourd’hui |journal=Annuaire Pontifical Catholique| issue=17 |year=1914 |pages=449–525}}&lt;br /&gt;
* {{cite book |last=Wilmshurst |first=David |title=The Ecclesiastical Organisation of the Church of the East, 1318-1913 |publisher=Peeters Publishers |year=2000 |url=http://books.google.com/?id=jB8ir0ek8bgC |isbn=978-90-429-0876-5}}&lt;br /&gt;
&lt;br /&gt;
{{Use dmy dates|date=August 2011}}&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!-- Metadata: see [[Wikipedia:Persondata]] --&amp;gt;&lt;br /&gt;
{{Persondata&lt;br /&gt;
|NAME= Hormizd, Yohannan VIII&lt;br /&gt;
|ALTERNATIVE NAMES= John Hormez; Hanna Hormizd&lt;br /&gt;
|SHORT DESCRIPTION=Patriarch of Chaldean Catholic Church&lt;br /&gt;
|DATE OF BIRTH=1760&lt;br /&gt;
|PLACE OF BIRTH=Alqosh, Iraq&lt;br /&gt;
|DATE OF DEATH=16 August 1838&lt;br /&gt;
|PLACE OF DEATH=Mosul, Iraq}}&lt;br /&gt;
{{DEFAULTSORT:Hormizd, Yohannan VIII}}&lt;br /&gt;
[[Category:Assyrian people]]&lt;br /&gt;
[[Category:Iraqi Assyrian people]]&lt;br /&gt;
[[Category:Chaldean Catholic Patriarchs of Babylon]]&lt;br /&gt;
[[Category:1760 births]]&lt;br /&gt;
[[Category:1838 deaths]]&lt;br /&gt;
[[Category:People from Alqosh]]&lt;/div&gt;</summary>
		<author><name>Ian</name></author>	</entry>

	<entry>
		<id>https://chaldeanwiki.com/index.php?title=Joseph_V_Augustine_Hindi&amp;diff=3377</id>
		<title>Joseph V Augustine Hindi</title>
		<link rel="alternate" type="text/html" href="https://chaldeanwiki.com/index.php?title=Joseph_V_Augustine_Hindi&amp;diff=3377"/>
				<updated>2015-05-19T01:34:27Z</updated>
		
		<summary type="html">&lt;p&gt;Ian: 1 revision imported&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{Infobox Patriarch&lt;br /&gt;
|image=&lt;br /&gt;
|name=Joseph V Augustine Hindi&lt;br /&gt;
|birth_name=Augustine Hindi&lt;br /&gt;
|church=[[Chaldean Catholic Church]]&lt;br /&gt;
|see=[[Patriarchial See of Babylon of the Chaldeans|Amid of the Chaldeans]]&lt;br /&gt;
|patriarch_of=[[Patriarch of Babylon of the Chaldeans|Patriarch of the Chaldeans]]&lt;br /&gt;
|residence=[[Iraq]]&lt;br /&gt;
|enthroned=&lt;br /&gt;
|ended=3 April 1827&lt;br /&gt;
|predecessor=[[Joseph IV (Chaldean Patriarch)|Joseph IV Lazar Hindi]]&lt;br /&gt;
|successor=[[Yohannan Hormizd|Yohannan VIII Hormizd]]&lt;br /&gt;
|birth_date= &lt;br /&gt;
|birth_place=&lt;br /&gt;
|death_date=3 April 1827&lt;br /&gt;
|death_place=&lt;br /&gt;
|consecration = Sept 8, 1804 ([[Bishop (Catholic Church)|Bishop]])&lt;br /&gt;
|consecrated_by=[[Yohannan Gabriel]]&lt;br /&gt;
}}&lt;br /&gt;
Mar '''Joseph V Augustine Hindi''' †  was the patriarchal administrator of the [[Chaldean Catholic Church]] from 1781 to 1827, since 1804 he considered himself Patriarch with the name of Joseph V and from 1812 to his death he actually governed both the patriarchal sees of Alqosh and Amid of the [[Church of the East]].&lt;br /&gt;
&lt;br /&gt;
==Life==&lt;br /&gt;
&lt;br /&gt;
The [[episcopal see|See]] of [[Amid]] of the Church of the East was since 1681 in [[Full Communion]] with the [[Holy See]] and formed a little patriarchate including a few towns on the North-West mountains of [[Assyria]], like Amid itself and [[Mardin]], now in [[Turkey]]. The patriarchs that rules over it are usually known as ''Josephine'' line, because all of them took the name of ''Joseph''. Augustine Hindi was a nephew of [[Joseph IV (Chaldean Patriarch)|Joseph IV Lazar Hindi]], the patriarch since 1759.&lt;br /&gt;
&lt;br /&gt;
In the 18th century this patriarchate suffered a great financial crisis due to over taxation from [[Turkey|Turkish]] authorities, and the patriarch had to travel all over Europe trying to raise founds. Returned in Amid without success, after a few years Lazare Hindi resigned in August 1780&amp;lt;ref name=&amp;quot;Frazee&amp;quot;&amp;gt;Charles A. Frazee, ''Catholics and Sultans: The Church and the Ottoman Empire 1453-1923'', Cambridge University Press, 2006 ISBN 0-521-02700-4&amp;lt;/ref&amp;gt;{{rp|212}} appointing his nephew Augustine Hindi as patriarchal administrator, without consecrating him bishop.&amp;lt;ref&amp;gt;{{cite web|url=http://syrcom.cua.edu/Hugoye/Vol2No2/HV2N2Murre.html|title=The Patriarchs of the Church of the East from the Fifteenth to Eighteenth Centuries|publisher=Hugoye: Journal of Syriac Studies|accessdate=2009-01-24}}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Rome did not recognized nor the appointment of Augustine, but only the resignation of Lazare Hindi, that were soon withdrawn.&amp;lt;ref name=&amp;quot;Frazee&amp;quot;/&amp;gt;{{rp|212}} Lazare Hindi was imprisoned by [[Ottoman Empire|Turkish]] authorities in 1789 and escaped to [[Rome]] in 1791 where he died in 1796.&amp;lt;ref name=&amp;quot;Wilmshurst&amp;quot;&amp;gt;David Wilmshurst, ''The Ecclesiastical Organisation of the Church of the East, 1318-1913'', Peeters Publishers, 2000 ISBN 90-429-0876-9&amp;lt;/ref&amp;gt;{{rp|27}} The hope of the [[Holy See|Vatican]] was to enter in Communion with the larger patriarchate of the Church of the East, the one with see in [[Alqosh]], in such a time divided between the two cousins [[Eliya Isho'yahb]] and [[Yohannan Hormizd]], the second of these who considered himself a Catholic.&lt;br /&gt;
&lt;br /&gt;
Thus in 1791 the [[Holy See|Vatican]] appointed Yohannan Hormizd, already metropolitan of [[Mosul]] and claiming the patriarchate, also as patriarchal administrator of Amid. The vehement complains of Lazare Hindi then in Rome forced Rome to reach an agreement: in 1793 Yohannan Hormizd withdrew from the see of Amid but Augustine Hindi could not be appointed Patriarch of the Chaldean Church.&lt;br /&gt;
&lt;br /&gt;
In the next years Augustine gained respect for his reliability and endeared himself to the supporters of the Roman cause also in the area ruled Yohannan Hormizd, his competitor to the title of patriarch.&lt;br /&gt;
&lt;br /&gt;
On 15 January 1802 Augustine Hindi was formally appointed metropolitan of Amid and patriarchal administrator&amp;lt;ref&amp;gt;{{cite web|url=http://www.gcatholic.org/dioceses/diocese/diar0.htm|title=Archdiocese of Diarbekir|publisher=GCatholic.org|accessdate=2009-01-24}}&amp;lt;/ref&amp;gt; and he was consecrated [[bishop (Catholic Church)|bishop]] on September 8, 1804&amp;lt;ref&amp;gt;{{cite web|url=http://www.catholic-hierarchy.org/bishop/bhindi.html|title=Archbishop Augustin Hindi|publisher=Catholic-Hierarchy.org|accessdate=2009-01-24}}&amp;lt;/ref&amp;gt; by [[Yohannan Gabriel|Isho'yahb Isha'ya Yohannan Gabriel]] (or ''Jean Guriel''), then Chaldean bishop of [[Salmas (Chaldean Archdiocese)|Salmas]].&lt;br /&gt;
&lt;br /&gt;
As much as Augustine gained respect, Yohannan Hormizd was opposed by the [[Catholic missions|Latin missionaries]] and by the [[abbot]] of the revitalized monastery of [[Rabban Hormizd Monastery|Rabban Hormizd]], the monk Gabriel Dambo of Mardin. After the suspension of Yohannan Hormizd as bishop of Mosul in 1812 because of his clashes with the monks of Rabban Hormizd, Augustine Hindi actually governed almost all the territory of both the patriarchal sees of Alqosh and Amid up to his death with the title of ''apostolic delegate for the Patriarchate of Babylon''.&lt;br /&gt;
&lt;br /&gt;
In 1818 Yohannan Hormizd was suspended also by his office of bishop (for about eight years) and on October 2 of the same year Augustine Hindi received from Rome the [[pallium]]. Probably in good faith, Hindi believed that the pallium were the recognition of his title of Patriarch, under the name of Joseph V, claimed by him from 1804 and most Chaldeans called him patriarch. Even if never formally confirmed patriarch by Rome, Rome never publicly objected to such a title.&amp;lt;ref name=&amp;quot;Wilmshurst&amp;quot;/&amp;gt;{{rp|197}} In 1824 and 1825 Augustine appointed and consecrated some of his supporters as bishops, such as [[Joseph Audo]] on March 25, 1825. Augustine died on April 3, 1827.&amp;lt;ref&amp;gt;The date of 1828 as death date listed by some sources is fault. See: {{cite journal |last= Habbi| first= Joseph| year= 1971| title= L'unification de la hiérarchie chaldéenne dans la premiere moitié du XIX siècle, 2 partie| journal= Parole de l'Orient| volume= 2| issue= 2| pages= 310 |url= http://documents.irevues.inist.fr/handle/2042/34999 }}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
{{s-start}}&lt;br /&gt;
{{s-bef|before=[[Joseph IV (Chaldean Patriarch)|Joseph IV Lazare Hindi]]}}&lt;br /&gt;
{{s-ttl|title=[[List of Chaldean Catholic Patriarchs of Babylon|Patriarch of Babylon]]|years=1780–1827}} &amp;lt;br&amp;gt;&amp;lt;small&amp;gt;Not recognized as patriarch by Rome, &amp;lt;br&amp;gt;only as  apostolic delegate for the Patriarchate&amp;lt;/small&amp;gt; &lt;br /&gt;
{{s-aft|after=''Vacant'' (1827–1830)&amp;lt;br&amp;gt; [[Yohannan VIII Hormizd]]&amp;lt;br&amp;gt;(1830–1838)}}&lt;br /&gt;
{{end}}&lt;br /&gt;
&lt;br /&gt;
==Notes==&lt;br /&gt;
{{reflist|2}}&lt;br /&gt;
&lt;br /&gt;
{{Persondata &amp;lt;!-- Metadata: see [[Wikipedia:Persondata]]. --&amp;gt;&lt;br /&gt;
| NAME              =Hindi, Augustine Yosep V&lt;br /&gt;
| ALTERNATIVE NAMES =&lt;br /&gt;
| SHORT DESCRIPTION = Iraqi bishop&lt;br /&gt;
| DATE OF BIRTH     =&lt;br /&gt;
| PLACE OF BIRTH    =&lt;br /&gt;
| DATE OF DEATH     =3 April 1827&lt;br /&gt;
| PLACE OF DEATH    =&lt;br /&gt;
}}&lt;br /&gt;
{{DEFAULTSORT:Hindi, Augustine Yosep V}}&lt;br /&gt;
[[Category:Assyrian people]]&lt;br /&gt;
[[Category:Iraqi archbishops]]&lt;br /&gt;
[[Category:Chaldean Catholic Patriarchs of Babylon]]&lt;br /&gt;
[[Category:1827 deaths]]&lt;br /&gt;
[[Category:Year of birth missing]]&lt;/div&gt;</summary>
		<author><name>Ian</name></author>	</entry>

	<entry>
		<id>https://chaldeanwiki.com/index.php?title=Yousef_VII_Ghanima&amp;diff=3375</id>
		<title>Yousef VII Ghanima</title>
		<link rel="alternate" type="text/html" href="https://chaldeanwiki.com/index.php?title=Yousef_VII_Ghanima&amp;diff=3375"/>
				<updated>2015-05-19T01:34:25Z</updated>
		
		<summary type="html">&lt;p&gt;Ian: 1 revision imported&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{Infobox Patriarch&lt;br /&gt;
|image=&lt;br /&gt;
|name=Yousef VII Ghanima&lt;br /&gt;
|birth_name= Yousef Ghanima&lt;br /&gt;
|church=[[Chaldean Catholic Church]]&lt;br /&gt;
|see=[[Patriarchial See of Babylon of the Chaldeans|Babylon of the Chaldeans]]&lt;br /&gt;
|patriarch_of=[[Patriarch of Babylon of the Chaldeans]]&lt;br /&gt;
|residence=[[Iraq]]&lt;br /&gt;
|enthroned=September 17, 1947&lt;br /&gt;
|ended=July 08, 1958&lt;br /&gt;
|predecessor=[[Yousef VI Emmanuel II Thomas]]&lt;br /&gt;
|successor=[[Paul II Cheikho]]&lt;br /&gt;
|birth_date=January 29, 1881&lt;br /&gt;
|birth_place=&lt;br /&gt;
|death_date={{BirthDeathAge||1881|1|29|1958|7|8}}&lt;br /&gt;
|death_place=&lt;br /&gt;
|ordination= May 15, 1904 ([[Priesthood (Catholic Church)|Priest]])&lt;br /&gt;
|consecration = May 10, 1925 ([[Bishop (Catholic Church)|Bishop]])&lt;br /&gt;
|consecrated_by=[[Yousef VI Emmanuel II Thomas|Yousef VI Thomas]]&lt;br /&gt;
}}&lt;br /&gt;
'''Mar Yousef VII Ghanima''' † was the patriarch of the [[Chaldean Catholic Church]] in 1947–1958.&lt;br /&gt;
&lt;br /&gt;
==Life==&lt;br /&gt;
&lt;br /&gt;
He was born on January 29, 1881 in [[Mossul]] and was ordained a priest on May 15, 1904. In 1925 he was ordained Auxiliary Bishop of [[Chaldean Catholic Patriarchate of Babylon|Babylon of the Chaldean]]. He was the Patriarch of the Chaldean Church from September 17, 1947 till his death on July 8, 1958. He replaced Patriarch [[Yousef VI Emmanuel II Thomas]] † and was followed by [[Paul II Cheikho]] †.&lt;br /&gt;
&lt;br /&gt;
With Mar Yousef VII Ghanima, the [[Patriarch of Babylon of the Chaldeans|Patriarchate]] transferred  from [[Mosul]] to [[Baghdad]].&lt;br /&gt;
&lt;br /&gt;
{{s-start}}&lt;br /&gt;
{{s-bef|before=[[Audishu V Khayyath]]&amp;lt;br&amp;gt;(1900–1946)}}&lt;br /&gt;
{{s-ttl|title=[[List of Chaldean Catholic Patriarchs of Babylon|Patriarch of Babylon &amp;lt;br&amp;gt;of the Chaldean Catholic Church]]|years=1947–1958}} &lt;br /&gt;
{{s-aft|after=[[Paul II Cheikho]]&amp;lt;br&amp;gt; (1958–1989)}}&lt;br /&gt;
{{end}}&lt;br /&gt;
&lt;br /&gt;
==References==&lt;br /&gt;
*{{cite web|url=http://www.catholic-hierarchy.org/bishop/bghanima.html|title=Archbishop Yousef VII Ghanima|publisher=Catholic-Hierarchy.org|accessdate=2008-12-08}}&lt;br /&gt;
&lt;br /&gt;
{{Persondata &amp;lt;!-- Metadata: see [[Wikipedia:Persondata]]. --&amp;gt;&lt;br /&gt;
| NAME              = Ghanima, Yousef 07&lt;br /&gt;
| ALTERNATIVE NAMES =&lt;br /&gt;
| SHORT DESCRIPTION = iraqi bishop&lt;br /&gt;
| DATE OF BIRTH     = January 29, 1881&lt;br /&gt;
| PLACE OF BIRTH    =&lt;br /&gt;
| DATE OF DEATH     = 1958&lt;br /&gt;
| PLACE OF DEATH    =&lt;br /&gt;
}}&lt;br /&gt;
{{DEFAULTSORT:Ghanima, Yousef 07}}&lt;br /&gt;
[[Category:Assyrian people]]&lt;br /&gt;
[[Category:Iraqi archbishops]]&lt;br /&gt;
[[Category:Chaldean Catholic Patriarchs of Babylon]]&lt;br /&gt;
[[Category:Iraqi Eastern Catholics]]&lt;br /&gt;
[[Category:1881 births]]&lt;br /&gt;
[[Category:1958 deaths]]&lt;/div&gt;</summary>
		<author><name>Ian</name></author>	</entry>

	<entry>
		<id>https://chaldeanwiki.com/index.php?title=Emmanuel_III_Delly&amp;diff=3373</id>
		<title>Emmanuel III Delly</title>
		<link rel="alternate" type="text/html" href="https://chaldeanwiki.com/index.php?title=Emmanuel_III_Delly&amp;diff=3373"/>
				<updated>2015-05-19T01:34:24Z</updated>
		
		<summary type="html">&lt;p&gt;Ian: 1 revision imported&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt; {{Infobox Christian leader&lt;br /&gt;
| type             = cardinal&lt;br /&gt;
| honorific-prefix = His Eminent Beatitude&lt;br /&gt;
| image          = EMMANUEL-DELLY.jpg&lt;br /&gt;
| name           = {{unbulleted list|Emmanuel III Delly|ܡܪܝ ܥܡܢܘܐܝܠ ܬܠܝܬܝܐ ܕܠܝ|مار عمانوئيل الثالث دلّي}}&lt;br /&gt;
| title          = [[Cardinal (Catholicism)|Cardinal]] [[Patriarch of Babylon of the Chaldeans|Patriarch Emeritus of Babylon of the Chaldeans]]&lt;br /&gt;
| native_name    = ܡܪܝ ܥܡܢܘܐܝܠ ܬܠܝܬܝܐ ܕܠܝ&lt;br /&gt;
| native_name_lang = syr&lt;br /&gt;
| birth_name     = Emmanuel Karim Delly&lt;br /&gt;
| church         = &lt;br /&gt;
| see            = [[Chaldean Catholic Patriarchate of Babylon]]&lt;br /&gt;
| residence      = [[Iraq]]&lt;br /&gt;
| elected        = 24 October 2003&lt;br /&gt;
| appointed      = 3 December 2003&lt;br /&gt;
| term_end       = 19 December 2012&lt;br /&gt;
| predecessor    = [[Raphael I Bidawid]]&lt;br /&gt;
| successor      = [[Louis Raphaël I Sako]]&lt;br /&gt;
| rank           = Cardinal-Bishop&lt;br /&gt;
| birth_name     = Karem Delly&lt;br /&gt;
| birth_date     = 27 September 1927&lt;br /&gt;
| birth_place    = [[Tel Keppe]], [[Kingdom of Iraq|Iraq]]&lt;br /&gt;
| death_date     = 8 April 2014 (aged 86) &lt;br /&gt;
| death_place    = [[San Diego, California]], U.S.&lt;br /&gt;
| ordination     = 21 December 1952&lt;br /&gt;
| consecration   = 16 April 1963&lt;br /&gt;
| consecrated_by = [[Paul II Cheikho]]&lt;br /&gt;
| cardinal       = 24 November 2007&lt;br /&gt;
| created_cardinal_by= [[Pope Benedict XVI]]&lt;br /&gt;
| religion       = [[Chaldean Catholic Church|Chaldean Catholic]]&lt;br /&gt;
| previous_post  = {{unbulleted list|Auxiliary Bishop of Babylon (1962-1997)|Titular Bishop of Palaeopolis in Asia (1962-1967)|Titular Archbishop of Kaskar dei Caldie (1967-2003)|Curial Bishop of Babylon (1997-2002)|Chaldean Archbishop of Baghdad (2003-2012)}}&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
'''[[Mar]] Emmanuel III Delly''' ({{lang-syr|ܡܪܝ ܥܡܢܘܐܝܠ ܬܠܝܬܝܐ ܕܠܝ}}, {{lang-ar|مار عمانوئيل الثالث دلّي}}) was the [[Catholic Chaldean Patriarchs of Babylon|Patriarch Emeritus of Babylon of the Chaldeans]] and former [[primate (bishop)|Primate]] of the [[Chaldean Catholic Church]], an [[Eastern Catholic Churches|Eastern Catholic]] ''[[sui juris]]'' [[Particular church]] of the [[Catholic Church]] and a [[Cardinal (Catholicism)|Cardinal]]. An ethnic [[Assyrian]], he was born in [[Tel Keppe]] and was [[ordained]] a priest on 21 December 1952. He was consecrated a [[bishop]] ten years later in December 1962 at the age of 35. He was elected Patriarch of the Chaldean Church on 3 December 2003, succeeding the late Patriarch [[Raphael I Bidawid]]. He was created a [[Cardinal Bishop]] on 24 November 2007.&lt;br /&gt;
&lt;br /&gt;
==Birth==&lt;br /&gt;
[[File:Patriairch emblem1.gif|300px|frame|left|Episcopal coat of arms of the [[List of Chaldean Catholic Patriarchs of Babylon|Patriarchial See of Babylon]]]]&lt;br /&gt;
Karem Delly was born in Tel Keppe, in northern Iraq, on 27 September 1927 to Jarjes Murad Delly and Katrina Putros. He was baptized on 6 October 1927 by Father Francis Kattola. &lt;br /&gt;
&lt;br /&gt;
==Episcopal life==&lt;br /&gt;
Since his election as Patriarch in December 2003, Mar Emmanuel III Delly continued to work for the Chaldean Church. In Iraq, the Chaldean Church, which is the largest Christian group, consists of eight dioceses totaling 100 parishes and approximately 600,000 people. Additionally, there are another eight dioceses outside of Iraq, in countries including Iran, Turkey, Syria, Lebanon, Egypt, Europe, Australia, Canada and the U.S. It is estimated that the Chaldean population is over one and a half million devotees world wide. He was well-known for his respect and cooperation with leaders of other churches and faiths, mainly Muslims.&amp;lt;ref&amp;gt;[http://uk.news.yahoo.com/afp/20071123/twl-vatican-pope-iraq-3cd7efd_1.html Iraqi cardinal-to-be says he is symbol of national unity], uk.news.yahoo.com; accessed 7 February 2015.&amp;lt;/ref&amp;gt; &lt;br /&gt;
&lt;br /&gt;
During his 42 years as a bishop, Delly's contributions to the Chaldean Church include building of many churches in and outside of Iraq. He supervised the Chaldean monasteries and convents, as well as several Chaldean religious journals and publications. &lt;br /&gt;
&lt;br /&gt;
On 17 October 2007, [[Pope Benedict XVI]] announced that he would make Delly a [[Cardinal (Catholicism)|Cardinal]].&amp;lt;ref&amp;gt;{{cite press release|title=Annuncio di Concistorio per la Creazione di nuovi Cardinali|publisher=Holy See Press Office|date=17 October 2007|url=http://212.77.1.245/news_services/bulletin/news/20898.php?index=20898&amp;amp;po_date=17.10.2007&amp;amp;lang=en|accessdate=7 February 2015|language=Italian}}&amp;lt;/ref&amp;gt; Delly was elevated to the [[College of Cardinals]] in the [[papal consistory|consistory]] at [[St. Peter's Basilica]] on November 24, 2007.&amp;lt;ref&amp;gt;{{cite press release| title = Concistoro Ordinario Pubblico per la Creazione di Ventitré Nuovi Cardinali (continuazione)|publisher =Holy See Press Office|url=http://212.77.1.245/news_services/bulletin/news/21159.php?index=21159&amp;amp;lang=en|accessdate=7 February 2015|language=Italian }}&amp;lt;/ref&amp;gt;&amp;lt;ref name=Elevates&amp;gt;[http://www.iht.com/articles/ap/2007/11/24/europe/EU-GEN-Vatican-New-Cardinals.php &amp;quot;Pope elevates new cardinals, expresses solidarity with Iraqi Christians&amp;quot;], Associated Press (''International Herald Tribune''), 23 November 2007.&amp;lt;/ref&amp;gt; Pope Benedict XVI said on this occasion that by naming Emmanuel III Delly cardinal, he was demonstrating his &amp;quot;spiritual closeness and [his] affection&amp;quot; for Iraqi Christians.&amp;lt;ref name=Elevates/&amp;gt;&lt;br /&gt;
&lt;br /&gt;
On 19 December 2012, Cardinal Delly resigned as patriarch of Chaldean Catholic Church and Pope Benedict named Archeparch [[Jacques Ishaq]] as administrator ''[[ad interim]]''. At the same time Pope Benedict convoked a synod to be held to Rome of the Chaledean Church to choose a successor to Cardinal Delly.&amp;lt;ref&amp;gt;[http://press.catholica.va/news_services/bulletin/news/30220.php?index=30220&amp;amp;lang=en]&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Cardinal Delly did not participate in the 2013 conclave, having already reached age 80.&lt;br /&gt;
&lt;br /&gt;
==Death==&lt;br /&gt;
Cardinal Delly died on 8 April 2014, aged 86, in [[San Diego, California]], where he had lived in retirement. Upon hearing of his death, Pope Francis stated, in an official statement of condolence to Cardinal Delly's successor as Patriarch of the Chaldeans, [[Louis Raphael I Sako]],: &amp;quot;I was deeply saddened to hear of the death of His Beatitude Cardinal Emmanuel III Delly, Patriarch Emeritus of Babylon of the Chaldeans. I offer you, the clergy, men and women religious and lay faithful of the Patriarchate, both in Iraq and in the diaspora, my condolences and the assurance of my prayers. I recall with deep gratitude the late Patriarch’s dedication to his people and to the promotion of respectful, just and peaceful relations with followers of other religious traditions. I join you and all who mourn the passing of this esteemed Pastor in commending his noble soul to the infinite mercy of God our loving Father, and I cordially impart my Apostolic Blessing as a pledge of peace and hope in the Lord.&amp;quot; The Cardinal Secretary of State, [[Pietro Parolin]], also sent a message of condolence,: &amp;quot;I offer you, your brother Bishops and the entire Church in Iraq my heartfelt sympathy on the passing of His Beatitude Cardinal Emmanuel III Delly. I pray that the Lord whom he served with fidelity will grant him eternal rest.&amp;quot;&amp;lt;ref&amp;gt;[http://press.vatican.va/content/salastampa/en/bollettino/pubblico/2014/04/09/0255/00572.html Comments in Vatican upon death of Cardinal Delly], press.vatican.va, 9 April 2014; accessed 7 February 2015.&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
His funeral was held at St. Peter's Chaldean Catholic Cathedral in San Diego and at Mother of God Cathedral in Detroit. He is buried in Holy Sepulchre Catholic Cemetery in Detroit. This is the first time a Chaldean patriarch has been buried outside the homeland. {{cn|date=February 2015}}&lt;br /&gt;
&lt;br /&gt;
==Educational degrees==&lt;br /&gt;
*[[Master's Degree]] in [[Philosophy]], [[Pontifical Urbaniana University]].&amp;lt;ref name=&amp;quot;glatz&amp;quot;&amp;gt;Carol Glatz, [http://www.catholicnews.com/data/stories/cns/0705931.htm &amp;quot;Pope acknowledges Iraq's beleaguered Catholics by naming cardinal&amp;quot;], catholicnews.com, 17 October 2007&amp;lt;/ref&amp;gt;&lt;br /&gt;
* [http://www.urbaniana.edu/en/filosofia/ord_stud.htm Pontifical Urbaniana University—Faculty of Philosophy—Program of Studies] (accessed 13 November 2007) &lt;br /&gt;
*[[Doctor of Sacred Theology]], [[Pontifical Lateran University]].&amp;lt;ref name=&amp;quot;glatz&amp;quot;/&amp;gt;&lt;br /&gt;
*[[Doctor of Canon Law]], [[Pontifical Lateran University]].&amp;lt;ref name=&amp;quot;glatz&amp;quot;/&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==Languages==&lt;br /&gt;
Mar Emmanuel III Delly spoke [[Chaldean Neo-Aramaic]], [[Syriac language|Syriac]], [[Arabic language|Arabic]], [[French language|French]], [[Italian language|Italian]], [[Latin language|Latin]], and [[English language|English]] fluently. {{cn|date=February 2015}}&lt;br /&gt;
&lt;br /&gt;
==Episcopal lineage==&lt;br /&gt;
{{Ordination&lt;br /&gt;
| date of diaconal ordination =&lt;br /&gt;
| place of diaconal ordination =&lt;br /&gt;
| ordained deacon by =&lt;br /&gt;
| date of priestly ordination =21 December 1952&lt;br /&gt;
| place of priestly ordination =&lt;br /&gt;
| ordained priest by = &lt;br /&gt;
| date of consecration = 19 April 1963&lt;br /&gt;
| place of consecration = &lt;br /&gt;
| consecrated by       = [[Paul II Cheikho]]&lt;br /&gt;
| co-consecrator1       = [[Raphaël I Bidawid]]&lt;br /&gt;
| co-consecrator2       = Armand-Etienne M. Blanquet du Chayla, O.C.D.&lt;br /&gt;
| date created cardinal = 24 November 2007&lt;br /&gt;
| bishop 1             = [[Emil Shimoun Nona]]&lt;br /&gt;
| consecration date 1  = 8 January 2010&lt;br /&gt;
| bishop 2             = [[Bashar Matti Warda]], C.SS.R.&lt;br /&gt;
| consecration date 2  = 3 July 2010&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
==References==&lt;br /&gt;
{{Reflist}}&lt;br /&gt;
&lt;br /&gt;
==External links==&lt;br /&gt;
{{Commons}}&lt;br /&gt;
*[http://www.asianews.it/view.php?l=en&amp;amp;art=1829 2004 Interview]&lt;br /&gt;
*[http://www.catholic-hierarchy.org/bishop/bdelly.html Catholic Hierarchy.org]&lt;br /&gt;
*[http://www.gcatholic.org/hierarchy/data/cardB16-2.htm#1499 GigaCatholic Website]&lt;br /&gt;
&lt;br /&gt;
{{s-start}}&lt;br /&gt;
{{s-rel|ca}}&lt;br /&gt;
{{s-bef|before=[[Raphael I Bidawid]]}}&lt;br /&gt;
{{s-ttl|title=[[List of Chaldean Catholic Patriarchs of Babylon|Patriarch of Babylon &amp;lt;br&amp;gt;of the Chaldean Catholic Church]]|years=2003&amp;amp;ndash;2012}}&lt;br /&gt;
{{s-aft|after=[[Louis Raphaël I Sako]]}}&lt;br /&gt;
{{s-end}}&lt;br /&gt;
&lt;br /&gt;
{{Persondata &amp;lt;!-- Metadata: see [[Wikipedia:Persondata]]. --&amp;gt;&lt;br /&gt;
| NAME              = Delly, Emmanuel 03&lt;br /&gt;
| ALTERNATIVE NAMES = &lt;br /&gt;
| SHORT DESCRIPTION = Catholic cardinal&lt;br /&gt;
| DATE OF BIRTH     = October 6, 1927&lt;br /&gt;
| PLACE OF BIRTH    = [[Tel Keppe]], [[Kingdom of Iraq|Iraq]]&lt;br /&gt;
| DATE OF DEATH     = April 8, 2014&lt;br /&gt;
| PLACE OF DEATH    = [[San Diego]], [[California]]&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
{{DEFAULTSORT:Delly, Emmanuel 03}}&lt;br /&gt;
[[Category:1927 births]]&lt;br /&gt;
[[Category:2014 deaths]]&lt;br /&gt;
[[Category:Eastern Catholic bishops]]&lt;br /&gt;
[[Category:Iraqi Eastern Catholics]]&lt;br /&gt;
[[Category:Chaldean Catholic Patriarchs of Babylon]]&lt;br /&gt;
[[Category:People from Tel Keppe]]&lt;br /&gt;
[[Category:Iraqi cardinals]]&lt;br /&gt;
[[Category:Iraqi archbishops]]&lt;br /&gt;
[[Category:Assyrian people]]&lt;br /&gt;
[[Category:Cardinals created by Pope Benedict XVI]]&lt;br /&gt;
[[Category:Iraqi bishops]]&lt;br /&gt;
[[Category:Pontifical Urbaniana University alumni]]&lt;br /&gt;
[[Category:Pontifical Lateran University alumni]]&lt;/div&gt;</summary>
		<author><name>Ian</name></author>	</entry>

	<entry>
		<id>https://chaldeanwiki.com/index.php?title=Paul_II_Cheikho&amp;diff=3371</id>
		<title>Paul II Cheikho</title>
		<link rel="alternate" type="text/html" href="https://chaldeanwiki.com/index.php?title=Paul_II_Cheikho&amp;diff=3371"/>
				<updated>2015-05-19T01:34:20Z</updated>
		
		<summary type="html">&lt;p&gt;Ian: 1 revision imported&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{Infobox Patriarch&lt;br /&gt;
|image=&lt;br /&gt;
|name=Paul II Cheikho&lt;br /&gt;
|birth_name= Paul Cheikho&lt;br /&gt;
|church=[[Chaldean Catholic Church]]&lt;br /&gt;
|see=[[Patriarchial See of Babylon of the Chaldeans|Babylon of the Chaldeans]]&lt;br /&gt;
|patriarch_of=[[Patriarch of Babylon of the Chaldeans]]&lt;br /&gt;
|residence=[[Iraq]]&lt;br /&gt;
|enthroned=December 13, 1958&lt;br /&gt;
|ended=April 13, 1989&lt;br /&gt;
|predecessor=[[Yousef VII Ghanima]]&lt;br /&gt;
|successor=[[Raphael I Bidawid]]&lt;br /&gt;
|birth_date=November 19, 1906&lt;br /&gt;
|birth_place=[[Alqosh]]&lt;br /&gt;
|death_date={{BirthDeathAge||1906|11|19|1989|4|13}}&lt;br /&gt;
|death_place=&lt;br /&gt;
|ordination= Febr 16, 1930 ([[Priesthood (Catholic Church)|Priest]])&lt;br /&gt;
|consecration = May 4, 1947 ([[Bishop (Catholic Church)|Bishop]])&lt;br /&gt;
|consecrated_by=[[Hormisdas Djibri]]&lt;br /&gt;
}}&lt;br /&gt;
'''Mar Paul II Cheikho''' † ({{lang-syr|ܦܘܠܘܣ ܬܪܝܢܐ ܫܝܟܘ}}, [[Arabic language|Arabic]]: بولس الثاني شيخو) was the patriarch of the [[Chaldean Catholic Church]] in 1958–1989.&lt;br /&gt;
&lt;br /&gt;
==Life==&lt;br /&gt;
&lt;br /&gt;
He was born on November 19, 1906 in [[Alqosh]] and was ordained a priest on February 16, 1930. On May 4, 1947 he was ordained Bishop of [[Aqrah|Akra]], Iraq, at the age of 40, by the Archbishop of [[Kirkuk]] Hormisdas Etienne Djibri,.&amp;lt;ref&amp;gt;Archbishop Hormisdas Etienne Djibri was in turn consecrated bishop in 1902 by patriarch [[Yousef VI Emmanuel II Thomas]]&amp;lt;/ref&amp;gt; &lt;br /&gt;
&lt;br /&gt;
From 1957 till his appointment as [[Patriarch of Babylon of the Chaldeans]] in 1958 Paul Cheikho served as bishop of [[Alep]]. He was the Patriarch of the Chaldean Church from 1958 till his death on April 13, 1989. He replaced Patriarch [[Yousef VII Ghanima]] and was followed by [[Raphael I Bidawid]].&lt;br /&gt;
&lt;br /&gt;
==Notes==&lt;br /&gt;
{{reflist|1}}&lt;br /&gt;
&lt;br /&gt;
==References==&lt;br /&gt;
*{{cite web|url=http://www.catholic-hierarchy.org/bishop/bcheikho.html|title=Archbishop Paul II Cheikho|publisher=Catholic-Hierarchy.org|accessdate=2009-01-15}}&lt;br /&gt;
&lt;br /&gt;
{{s-start}}&lt;br /&gt;
{{s-bef|before=[[Yousef VII Ghanima]]&amp;lt;br&amp;gt;(1947–1958)}}&lt;br /&gt;
{{s-ttl|title=[[List of Chaldean Catholic Patriarchs of Babylon|Patriarch of Babylon &amp;lt;br&amp;gt;of the Chaldean Catholic Church]]|years=1958–1989}} &lt;br /&gt;
{{s-aft|after=[[Raphael I Bidawid]]&amp;lt;br&amp;gt; (1989–2003)}}&lt;br /&gt;
{{end}}&lt;br /&gt;
&lt;br /&gt;
{{Persondata &amp;lt;!-- Metadata: see [[Wikipedia:Persondata]]. --&amp;gt;&lt;br /&gt;
| NAME              = Cheikho, Paul 02&lt;br /&gt;
| ALTERNATIVE NAMES =&lt;br /&gt;
| SHORT DESCRIPTION = Iraqi bishop&lt;br /&gt;
| DATE OF BIRTH     = November 19, 1906&lt;br /&gt;
| PLACE OF BIRTH    = [[Alqosh]]&lt;br /&gt;
| DATE OF DEATH     = April 13, 1989&lt;br /&gt;
| PLACE OF DEATH    =&lt;br /&gt;
}}&lt;br /&gt;
{{DEFAULTSORT:Cheikho, Paul 02}}&lt;br /&gt;
[[Category:Iraqi Assyrian people]]&lt;br /&gt;
[[Category:Iraqi archbishops]]&lt;br /&gt;
[[Category:Chaldean Catholic Patriarchs of Babylon]]&lt;br /&gt;
[[Category:Participants in the Second Vatican Council]]&lt;br /&gt;
[[Category:Iraqi Eastern Catholics]]&lt;br /&gt;
[[Category:1906 births]]&lt;br /&gt;
[[Category:1989 deaths]]&lt;br /&gt;
[[Category:People from Alqosh]]&lt;/div&gt;</summary>
		<author><name>Ian</name></author>	</entry>

	<entry>
		<id>https://chaldeanwiki.com/index.php?title=Raphael_I_Bidawid&amp;diff=3369</id>
		<title>Raphael I Bidawid</title>
		<link rel="alternate" type="text/html" href="https://chaldeanwiki.com/index.php?title=Raphael_I_Bidawid&amp;diff=3369"/>
				<updated>2015-05-19T01:34:17Z</updated>
		
		<summary type="html">&lt;p&gt;Ian: 1 revision imported&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{Infobox Patriarch&lt;br /&gt;
|image=Raphael I Bidawid.jpg&lt;br /&gt;
|name=Raphael I Bidawid&lt;br /&gt;
|birth_name= Raphael J. Bidawid&lt;br /&gt;
|church=[[Chaldean Catholic Church]]&lt;br /&gt;
|see=[[Chaldean Catholic Patriarchate of Babylon]]&lt;br /&gt;
|patriarch_of=[[Patriarch of Babylon of the Chaldeans]]&lt;br /&gt;
|residence=[[Iraq]]&lt;br /&gt;
|enthroned=May 21, 1989&lt;br /&gt;
|ended=July 7, 2003&lt;br /&gt;
|predecessor=[[Paul II Cheikho]]&lt;br /&gt;
|successor=[[Emmanuel III Delly]]&lt;br /&gt;
|birth_date=April 17, 1922&lt;br /&gt;
|birth_place=[[Mosul]], [[Iraq]]&lt;br /&gt;
|death_date={{BirthDeathAge||1922|4|17|2003|7|7}}&lt;br /&gt;
|death_place=[[Beirut]], [[Lebanon]]&lt;br /&gt;
|consecration=October 6, 1957&lt;br /&gt;
|ordination=October 22, 1944&lt;br /&gt;
|consecrated_by=[[Yousef VII Ghanima]]&lt;br /&gt;
}}&lt;br /&gt;
'''Mar Raphael I Bidawid''' † ({{lang-syr|ܪܘܦܐܝܠ ܩܕܡܝܐ ܒܝܬ ܕܘܝܕ}}, [[Arabic language|Arabic]] مار روفائيل الاول بيداويد)(April 17, 1922 – July 7, 2003) was the Patriarch of the [[Chaldean Catholic Church]] in 1989–2003. He was also a Syriac scholar.&lt;br /&gt;
&lt;br /&gt;
== Life ==&lt;br /&gt;
&lt;br /&gt;
He was born on April 17, 1922 in northern Iraqi city of [[Mosul]] into an ethnic [[Assyrian people|Assyrian]]&amp;lt;ref&amp;gt;Assyrians Mourn the Passing of Patriarch Raphael&amp;lt;/ref&amp;gt; family, and took his school and seminar training in Mosul. He was ordained a priest on October 22, 1944 in [[Rome]] and in 1946 he obtained the academic degrees of doctor of philosophy and [[theology]]. Between 1948 and 1956 he worked as a professor of philosophy and theology in Mosul. On October 6, 1957, at the age of 35, he was ordained Bishop of [[Amadiya]], by Patriarch [[Yousef VII Ghanima]].&amp;lt;ref&amp;gt;{{cite web|url=http://www.catholic-hierarchy.org/bishop/bbidawidr.html|title=Archbishop Raphaël I Bidawid|publisher=Catholic-Hierarchy.org|accessdate=2009-05-30}}&amp;lt;/ref&amp;gt; As bishop of [[Amadiya]] he experienced the mass exodus of Christians from Northern Iraq. Mar Raphael Bidawid was then appointed bishop of [[Beirut]] in 1966 and served in this capacity for 23 years.&lt;br /&gt;
&lt;br /&gt;
On March 21, 1989 Raphael I Bidawid was elected [[List of Chaldean Catholic Patriarchs of Babylon|Patriarch of Babylon]], head of the Chaldean Catholic Church. His election was confirmed by [[Pope John Paul II]] in June 1989. During his Patriarchate, Patriarch Bidawid, in agreement with the Chaldean Synod, established The Pontifical Babel College for Philosophy and Theology in 1991. The Babel College is situated in Baghdad, Dora, El-Mekaniek, next to St. Peter Chaldean Seminary. The Babel College became an instrumental educational institution for the Chaldean Church. &amp;lt;ref&amp;gt;Chaldean Patriarchate of Babylon Pontifical Babel College For Philosophy and Theology http://www.kaldu.org/1_chandean_church/babel_college.htm&amp;lt;/ref&amp;gt; &amp;lt;ref&amp;gt;{{cite web|url=http://syrcom.cua.edu/Hugoye/Vol7No1/HV7N1OBBidawid.html|title=Mar Raphael Bidawid (1922-2003)|publisher=Hugoye: Journal of Syriac Studies |first=George A.|last= Kiraz| authorlink=George Kiraz|accessdate=2009-05-30}}&amp;lt;/ref&amp;gt; Patriarch Bidawid could speak 13 languages. He died in Beirut, Lebanon on July 7, 2003, at the age of 81.&lt;br /&gt;
&lt;br /&gt;
== Pastoral Work ==&lt;br /&gt;
&lt;br /&gt;
Patriarch Bidawid was known as a champion of the unification of the Assyrian Church of the East (formerly the Church of the East) and the Chaldean Catholic Church, which split in 1552 AD. In November 1996 Mar Dinkha IV of the Assyrian Church of the East and Chaldean Patriarch Raphael I Bidawid met in Southfield, Michigan, and signed a Joint Patriarchal Statement that committed their two churches to working towards reintegration and pledged cooperation on pastoral questions such as the drafting of a common catechism, the setting up of a common seminary in the Chicago-Detroit area, the preservation of the Aramaic language, and other common pastoral programs between parishes and dioceses around the world.&lt;br /&gt;
&lt;br /&gt;
On August 15, 1997, the two Patriarchs met again, in Roselle, Illinois, and ratified a “Joint Synodal Decree for Promoting Unity,” that had been signed by the members of both Holy Synods. It restated the areas of pastoral cooperation envisaged in the Joint Patriarchal Statement, recognized that Assyrians and Chaldeans should come to accept each other’s diverse practices as legitimate, formally implemented the establishment of an Assyrian-Chaldean “Joint Commission for Unity,” and declared that each side recognized the apostolic succession, sacraments and Christian witness of the other. The text also spelled out the central concerns of both sides in the dialogue. While both churches wanted to preserve the Aramaic language and culture, the Assyrians were intent on retaining their freedom and self-governance, and the Chaldeans affirmed the necessity of maintaining full communion with Rome. &amp;lt;ref&amp;gt;CNEWA page on The Assyrian Church of the East. http://www.cnewa.org/default.aspx?ID=1&amp;amp;pagetypeID=9&amp;amp;sitecode=HQ&amp;amp;pageno=3&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
In an interview with Bidawid, published in 2003, he commented on the [[Assyrian name dispute]] and declared his ethnic point of view:&lt;br /&gt;
&lt;br /&gt;
:“''I personally think that these different names serve to add confusion. The original name of our Church was the ‘Church of the East’ ... When a portion of the Church of the East became Catholic, the name given was ‘Chaldean’ based on the Magi kings who came from the land of the Chaldean, to Bethlehem. The name ‘Chaldean’ does not represent an ethnicity... We have to separate what is ethnicity and what is religion... I myself, my sect is Chaldean, but ethnically, I am Assyrian.''”&amp;lt;ref name=&amp;quot;Parpola&amp;quot;&amp;gt;{{cite journal | author = Parpola, Simo  | year = 2004  | title = National and Ethnic Identity in the Neo-Assyrian Empire and Assyrian Identity in Post-Empire Times  | journal = [[Journal of Assyrian Academic Studies]]  | volume = Vol. 18&lt;br /&gt;
 | issue = No. 2  | pages = pp. 22  | publisher = JAAS  | url = http://www.jaas.org/edocs/v18n2/Parpola-identity_Article%20-Final.pdf  | language = English  | format = PDF  | authorlink = Simo Parpola  }}&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
In an interview with the Assyrian Star in the September-October 1974 issue, he was quoted as saying:&lt;br /&gt;
:“''Before I became a priest I was an Assyrian, before I became a bishop I was an Assyrian, I am an Assyrian today, tomorrow, forever, and I am proud of it''.''”&amp;lt;ref&amp;gt;Mar Raphael J Bidawid. The Assyrian Star. September-October, 1974:5.&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
{{s-start}}&lt;br /&gt;
{{s-bef|before=[[Paul II Cheikho]]&amp;lt;br /&amp;gt;(1958–1989)}}&lt;br /&gt;
{{s-ttl|title=[[List of Chaldean Catholic Patriarchs of Babylon|Patriarch of Babylon &amp;lt;br /&amp;gt;of the Chaldean Catholic Church]]|years=1989–2003}}&lt;br /&gt;
{{s-aft|after=[[Emmanuel III Delly]]&amp;lt;br /&amp;gt; (2003–2012)}}&lt;br /&gt;
{{end}}&lt;br /&gt;
&lt;br /&gt;
== Bibliography ==&lt;br /&gt;
&lt;br /&gt;
* Raphael J. Bidawid, ''Les lettres du patriarche nestorien [[Mar Timothee I|Timothee I]]'', ''Studi e Testi'' 187, Vatican City (1956)&lt;br /&gt;
&lt;br /&gt;
== External links ==&lt;br /&gt;
* [http://www.aina.org/releases/marraphael.html Assyrians Mourn the Passing of Patriarch Raphael]&lt;br /&gt;
* [http://www.gcatholic.org/dioceses/diocese/baby0.htm GCatholic.org Website]&lt;br /&gt;
&lt;br /&gt;
== Notes ==&lt;br /&gt;
{{reflist|2}}&lt;br /&gt;
&lt;br /&gt;
{{Authority control}}&lt;br /&gt;
&lt;br /&gt;
{{Persondata&lt;br /&gt;
| NAME              = Bidawid, Raphael I&lt;br /&gt;
| ALTERNATIVE NAMES = Bidawid, Raphael J.&lt;br /&gt;
| SHORT DESCRIPTION = Patriarch of the Chaldean Catholic Church&lt;br /&gt;
| DATE OF BIRTH     = April 17, 1922&lt;br /&gt;
| PLACE OF BIRTH    = [[Mosul]]&lt;br /&gt;
| DATE OF DEATH     = July 7, 2003&lt;br /&gt;
| PLACE OF DEATH    = [[Beirut]]&lt;br /&gt;
}}&lt;br /&gt;
{{DEFAULTSORT:Bidawid, Raphael I}}&lt;br /&gt;
[[Category:Assyrian people]]&lt;br /&gt;
[[Category:Iraqi archbishops]]&lt;br /&gt;
[[Category:Eastern Catholic bishops]]&lt;br /&gt;
[[Category:Participants in the Second Vatican Council]]&lt;br /&gt;
[[Category:1922 births]]&lt;br /&gt;
[[Category:2003 deaths]]&lt;br /&gt;
[[Category:People from Mosul]]&lt;br /&gt;
[[Category:Chaldean Catholic Patriarchs of Babylon]]&lt;br /&gt;
[[Category:Iraqi Eastern Catholics]]&lt;/div&gt;</summary>
		<author><name>Ian</name></author>	</entry>

	<entry>
		<id>https://chaldeanwiki.com/index.php?title=Joseph_VI_Audo&amp;diff=3367</id>
		<title>Joseph VI Audo</title>
		<link rel="alternate" type="text/html" href="https://chaldeanwiki.com/index.php?title=Joseph_VI_Audo&amp;diff=3367"/>
				<updated>2015-05-19T01:34:13Z</updated>
		
		<summary type="html">&lt;p&gt;Ian: 1 revision imported&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{Infobox Patriarch&lt;br /&gt;
|image=Joseph Audo Patriarch BabylonJS.jpg&lt;br /&gt;
|name=Joseph VI Audo&lt;br /&gt;
|birth_name=Joseph Audo&lt;br /&gt;
|church=[[Chaldean Catholic Church]]&lt;br /&gt;
|see=[[Patriarchial See of Babylon of the Chaldeans|Babylon of the Chaldeans]]&lt;br /&gt;
|patriarch_of=[[Patriarch of Babylon of the Chaldeans]]&lt;br /&gt;
|residence=[[Iraq]]&lt;br /&gt;
|enthroned=July 28, 1847&lt;br /&gt;
|ended=March 14, 1878&lt;br /&gt;
|predecessor=[[Nicholas I Zaya]]&lt;br /&gt;
|successor=[[Eliya Abulyonan|Eliya XIV [XIII] Abulyonan]]&lt;br /&gt;
|birth_date=1790&lt;br /&gt;
|birth_place=[[Alqosh]]&lt;br /&gt;
|death_date={{BirthDeathAge||1790|||1878|3|14}}&lt;br /&gt;
|death_place=[[Mossul]]&lt;br /&gt;
|ordination= 1818 ([[Priesthood (Catholic Church)|Priest]])&lt;br /&gt;
|consecration = March 25, 1825 ([[Bishop (Catholic Church)|Bishop]])&lt;br /&gt;
|consecrated_by=[[Augustine Hindi]]&lt;br /&gt;
}}&lt;br /&gt;
Mar '''Joseph VI Audo''' (or ''Audu'' or ''Oddo'') (1790 &amp;amp;ndash; 1878), was the Patriarch of the [[Chaldean Catholic Church]] from 1847 to 1878.&lt;br /&gt;
&lt;br /&gt;
==Early life==&lt;br /&gt;
Joseph VI Audo was born in [[Alqosh]] in 1790 and in 1814 he became a monk of the monastery of [[Rabban Hormizd Monastery|Rabban Hormizd]]. He was ordained [[Priesthood (Catholic Church)|priest]] in 1818 and consecrated [[bishop]] of [[Mosul]] on the March 25, 1825 by the patriarchal administrator [[Augustine Hindi]] in [[Amid]]. From 1830 to 1847 he served as [[metropolitan bishop]] of [[Amadiya (Chaldean Diocese)|Amadiya]].&lt;br /&gt;
&lt;br /&gt;
In the early 19th century there was not yet a formal union between the two patriarchal lines that professed to be in communion with the [[Holy See]]. The ancient monastery of Rabban Hormizd, that for many centuries was the see of the Mama patriarchal family supported by most of the [[Church of the East|East Syrian Christians]], in 1808 recognized as own patriarch Mar [[Augustine Hindi]], the leader of patriarchal line started by [[Joseph I (Chaldean Patriarch)|Mar Joseph I]] in 1681 in union with [[papacy|Rome]]. This was fiercely opposed by the last descended of the Mama family, [[Yohannan Hormizd]], he too in communion with Rome. Joseph Audo was a partisan of Mar Augustine Hindi and thus became an active opponent of Yohannan Hormizd: the strong conflict came to an end only for the direct intervention of two apostolic delegates sent by [[Rome]] in 1828-1829.&amp;lt;ref name=&amp;quot;Frazee&amp;quot;&amp;gt;Charles A. Frazee, ''Catholics and Sultans: The Church and the Ottoman Empire 1453-1923'', Cambridge University Press, 2006 ISBN 0-521-02700-4&amp;lt;/ref&amp;gt;{{rp|297}}&lt;br /&gt;
&lt;br /&gt;
After the death of Augustine Hindi the Chaldean Church was finally united under the aged Yohannan Hormizd in 1830, even if he, and his successor [[Nicholas I Zaya|Nicholas I Zay{{transl|ar|DIN|ʿ}}a]], had to deal an internal opposition of several bishops led by Audo that lasted up to the resignation of patriarch  Nicholas Zaya in 1846.&lt;br /&gt;
&lt;br /&gt;
==Patriarch (1848–78)==&lt;br /&gt;
Joseph Audo was elected Patriarch of the Chaldean Church on July 28, 1847 and confirmed by the [[pope Pius IX]] on September 11, 1848.  He is also remembered as Joseph VI, considering Mar Augustine Hindi with the name of Joseph V.&lt;br /&gt;
 &lt;br /&gt;
Joseph showed himself to be as energetic and combative a patriarch as he had been a bishop.  During his reign he took measures to improve the calibre of the Chaldean clergy and strengthen the episcopate and the monastic order, and mounted a successful campaign to strengthen the spread the Catholic faith into the Nestorian districts.  A sincere Catholic, who had been brought to the Catholic faith after reading [[Joseph II (Chaldean Patriarch)|Joseph II]]'s ''Book of the Pure Mirror'', he clashed on a number of occasions with the [[Holy See|Vatican]] on questions of jurisdiction.&lt;br /&gt;
&lt;br /&gt;
Audo laid the foundations, with help from the Vatican, for the Chaldean Church to grow and flourish remarkably in the last decades before the [[First World War]].  From his early days as bishop of {{transl|ar|DIN|ʿ}}Amadiya, competing with the Nestorian church for the allegiance of the villages of the Sapna valley, he had appreciated the crucial role an educated clergy could play both in consolidating the Catholic faith where it already existed and in bringing it to new hearers.  Hitherto many of the Chaldean Church's bishops had been educated at the [[College of the Propaganda]] at Rome, and its priests had picked up what education they could from their bishops. Audo worked to reduce the Chaldean Church's dependence on Rome, and to ensure that it was able to train and educate its own clergy.&lt;br /&gt;
&lt;br /&gt;
In doing so he was following in the footsteps of Gabriel Dambo, whose revival of monasticism in the monastery of [[Rabban Hormizd Monastery|Rabban Hormizd]] in 1808 had been partly intended to supply the church with a well-educated and disciplined clergy.  To a certain extent it did; monks from the monastery were sent out as priests and deacons to [[Baghdad]], [[Basra]], and a number of Chaldean villages in the Mosul and {{transl|ar|DIN|ʿ}}Amadiya districts in the 1820s, and no doubt served their congregations well. Audo himself and other monks later became bishops.  But the first Rabban Hormizd superiors, Gabriel Dambo and Yohannan Gwera, also spent much of their energies quarreling with the patriarchs Yohannan VIII Hormizd and Nicholas I Zay{{transl|ar|DIN|ʿ}}a, with damaging consequences for the morale of the church.&lt;br /&gt;
&lt;br /&gt;
=== Establishment of seminaries ===&lt;br /&gt;
These internal feuds came to an end with Audo's accession, as he had taken the side of the monastery in its struggles with his predecessors.  With the co-operation of the monks assured, the new patriarch did his best to ensure that Dambo's original vision was at last realized.  The Monastery of [[Rabban Hormizd Monastery|Rabban Hormizd]] was too remote and exposed to attack to remain a functioning monastery, and was also a symbol of a turbulent time best forgotten.  Audo decided to replace it and in 1859, with financial assistance from the Vatican, built a new monastery of Notre Dame des Semences in a safer and more convenient site near [[Alqosh]]. The new monastery quickly replaced Rabban Hormizd as the principal monastery of the Chaldean church.  Two other important centres for the education of Chaldean clergy were also established at Mosul during Audo's reign, the patriarchal [[seminary]] of Saint Peter in 1866 and the Syro-Chaldean seminary of Saint John, completed shortly after Audo's death in 1878.  The Syro-Chaldean seminary, which trained priests for both the Chaldean and [[Syriac Catholic Church|Syriac Catholic]] churches, was under the direction of the [[Dominican Order|Dominicans]], while the patriarchal seminary was directed entirely by Chaldean clergy.  Although a number of Chaldean priests continued to be trained at Rome or elsewhere, most of the bishops and priests of the Chaldean church in the decades before the [[First World War]] came from one or other of these three centers founded in Audo's reign.&lt;br /&gt;
&lt;br /&gt;
=== The Rokos affair ===&lt;br /&gt;
Despite Audo's energetic investment in the future of the Chaldean church, his relations with the Vatican were often strained.  An early sign of the patriarch's independent attitude was given in 1858, when he held a synod from 7 June to 21 June in the monastery of Rabban Hormizd, whose validity was not recognized by Rome.  In 1860 a far more serious clash occurred when the [[Saint Thomas Christians|Malabar]] Catholics sent a delegation to [[Mosul]] to ask the patriarch to consecrate a bishop of their own rite for them. Despite the protests of the apostolic delegate at Mosul, Henri Amanton, Audo consecrated Thomas Rokos bishop of [[Basra]] and dispatched him to visit the Malabar Christians.  Amanton thereupon censured the patriarch and his bishops, and Audo responded with two [[encyclical]]s to the priests and people of his church, the first on 21 December 1860 and the second on 4 January 1861.  Shortly afterwards he departed to Rome to give an account of his actions, arriving at the end of June.  He was there invited to recall Rokos, to write a letter of apology to the [[Congregation for the Evangelization of Peoples|Propaganda]] and to make an act of submission to the [[pope]].  He complied with the first and third demands, and was received by the pope on 14 September.  On 23 September he issued a third encyclical to his church, in which he admitted his mistakes and revoked measures he had taken against the apostolic delegation and the [[Dominican Order|Dominican]] missionaries.  He returned to Mosul on 2 December.  Meanwhile Rokos, who had been excommunicated on the Vatican’s orders by the vicar apostolic of [[Roman Catholic Archdiocese of Verapoly|Verapoly]] on his arrival in [[India]], returned in failure to Baghdad in June 1862.&amp;lt;ref&amp;gt;Giacomo Martina ''Pio IX (1851-1866)'' (1986) ISBN 88-7652-543-2, 372-4&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
The affair did not end there. One of the members of the reunion which had given Rokos his mission, the metropolitan of [[Seert]] Peter Bar Tatar, refused to accept the censures carried by the delegate. The patriarch was again embroiled with the Dominicans, and issued an interdict on all the places where he arrived to celebrate in the presence of the Chaldeans.  There was another incident on 5 June 1864.  Audo consecrated [[Elias Mellus]] bishop of {{transl|ar|DIN|ʿ}}Aqra, but the new bishop omitted from his profession of faith passages relating to the [[Council of Florence]] and the [[Council of Trent]].  This was reported to Rome, and although Audo spoke up for his subordinate and the affair was resolved, animosity grew on both sides.&lt;br /&gt;
&lt;br /&gt;
=== First Vatican Council ===&lt;br /&gt;
[[File:Joseph Audo.jpg|thumb|upright|left|Joseph Audo]]&lt;br /&gt;
The [[Holy See|Vatican]] seems to have decided thereafter to seek every opportunity to remind Audo of his position.  In 1867 Gregory Peter di Natale, metropolitan of [[Amid]], died at Rome.  The Propaganda invoked the papacy's old privilege in such cases of directly appointing his successor, and asked the patriarch to submit three suitable names after discussion with his bishops.  Shortly afterwards the diocese of Mardin also fell vacant with the death of Ignatius Dashto in 1868, and the [[Congregation for the Evangelization of Peoples|Propaganda]] insisted on appointing his successor too.  Audo duly submitted a list of seven names, and was directed to consecrate Peter Timothy {{transl|ar|DIN|ʿ}}Attar metropolitan of Amid and Gabriel Farso metropolitan of [[Mardin]].  He was also informed that the provisions of the ecclesiastical constitution ''Reversurus'' promulgated on 12 July 1867 for the [[Armenian Catholic Church]] would in due course be applied to all the [[Eastern Catholic Churches]], and on 31 August 1869 its rules for the election of bishops were applied to the Chaldean Church in the bull ''Cum ecclesiastica disciplina''.&lt;br /&gt;
&lt;br /&gt;
This was too much for Audo, and he refused to consecrate the bishops-designate of Amid and Mardin.  He was summoned to Rome and in January 1870 forced to consecrate them.  He complained that Rome was infringing the rights of the [[Patriarchs of the east|Eastern patriarchs]], and was particularly aggrieved that the [[Syriac Catholic Church|Syriac]], [[Maronite Catholic Church|Maronite]] and [[Melkite Greek Catholic Church|Melkite]] patriarchs had not yet agreed to accept the provisions of the 1867 constitution.  As a result, in the 1870 [[First Vatican Council]] he was warmly welcomed as a member of the Church party opposed to the doctrine of [[papal infallibility]], and joined in the opposition to the controversial constitution ''[[Pastor aeternus]]'', absenting himself from the session at which it was promulgated.  He then refused to adhere to it, giving the excuse that he could only take such a solemn step back home, among his own flock.  He met the [[Abdülaziz|Sultan]] in [[Constantinople]] on 16 September 1870, and denounced the constitution as infringing the traditional customs of the church and damaging the interests of the [[Ottoman empire]].  He declared that he had not accepted its provisions and never would.  At the same time he celebrated mass with the [[Armenian Catholic Church|Armenian]] priests who had separated themselves from the patriarch Hassoun, and refused to reply to letters from the [[Congregation for the Evangelization of Peoples|Propaganda]].  The Vatican, alarmed, used every means at its disposal to recall him to obedience and head off a threatened schism.&amp;lt;ref name=&amp;quot;angold&amp;quot;/&amp;gt;  Finally, on 29 July 1872, last of all the eastern patriarchs, Audo wrote a letter accepting the decisions of the council.  The Vatican decided to teach him a lesson.  In ''Quae in patriarchatu'', a stinging encyclical of 16 November 1872 addressed to the bishops, clergy and faithful of the Chaldean Church, Pope Pius IX rehearsed the many examples of Audo's intransigence, deplored his disobedience and welcomed his eventual submission.  Audo's flock was left in little doubt as to who, in the Vatican's eyes, had been in the wrong.&amp;lt;ref&amp;gt;[http://www.papalencyclicals.net/Pius09/p9quaein.htm The papal encyclical ''Quae in patriarchatu'', 16 November 1872]&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== The Mellusian schism ===&lt;br /&gt;
Audo clashed with the [[Holy See|Vatican]] again in 1874.  He asked [[pope Pius IX]] to restore to the [[Chaldean Catholic Church|Chaldean Church]] the traditional jurisdiction of the [[Church of the East]] over the [[Syro-Malabar Catholic Church|Syrian Catholics]] of [[India]].  The Vatican delayed its response to this request and Audo decided not to wait. He sent [[Eliya Mellus]], bishop of {{transl|ar|DIN|ʿ}}Aqra, to [[India]] as a [[metropolitan bishop|metropolitan]], where he was promptly excommunicated by the Vatican.  On 24 May 1874, without prior consultation with the Vatican, he consecrated [[Eliya Abulyonan|Eliya Peter {{transl|ar|DIN|ʿ}}Abulyonan]] metropolitan of [[Gazarta]] and Mattai Paul Shamina metropolitan of {{transl|ar|DIN|ʿ}}Amadiya.  On 1 May 1875 he consecrated Quriaqos Giwargis Goga metropolitan of Zakho and Philip Ya{{transl|ar|DIN|ʿ}}qob Abraham metropolitan for India, to assist Elıya Mellus.  The pope threatened in an encyclical letter of 1 September 1876 to excommunicate both the patriarch and the bishops whom he had consecrated unless they returned to obedience within 40 days.  Audo yielded in March 1877 and wrote to recall Eliya Mellus and Philip Abraham from India.  He was absolved from censure and commended for his compliance in the papal letters ''Solatio nobis fuit'' (9 June 1877) and ''Iucundum nobis'' (11 July 1877), and his episcopal appointments outside India were recognized.&amp;lt;ref name=&amp;quot;angold&amp;quot;&amp;gt;Michael Angold ''Eastern Christianity'', Cambridge University Press, 2006 ISBN 0-521-81113-9 pag 528-529&amp;lt;/ref&amp;gt;  Nevertheless, Audo's surrender came too late to prevent a [[schism (religion)|schism]] in the Syro-Chaldean Church, the so-called ''Mellusian schism''.&amp;lt;ref&amp;gt;''The Cambridge History of Christianity'', Cambridge University Press: 2006 ISBN 0-521-81456-1, pag 422&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== Final years ===&lt;br /&gt;
Joseph Audo died reconciled with the Vatican in [[Mosul]] on March 14, 1878.&amp;lt;ref name=&amp;quot;Wilm&amp;quot;&amp;gt;David Wilmshurst, ''The Ecclesiastical Organisation of the Church of the East, 1318-1913'', Peeters Publishers, 2000 ISBN 90-429-0876-9&amp;lt;/ref&amp;gt;{{rp|740}} His obituary was pronounced in a consistory held on 28 February 1879 by Pope Leo XIII, who praised him as 'a man adorned with a fine sense of faith and belief' (''quem eximius pietatis et religionis sensus ornabat''). Although there are no lack of sources for his eventful career, he has not yet found his biographer.&lt;br /&gt;
&lt;br /&gt;
Audo was succeeded as patriarch of Babylon by [[Eliya Abulyonan|Eliya Peter {{transl|ar|DIN|ʿ}}Abulyonan]], metropolitan of [[Gazarta]], who was elected in 1878 in the monastery of Notre Dame des Semences and confirmed on 28 February 1879 under the title Eliya XII.&lt;br /&gt;
&lt;br /&gt;
==See also==&lt;br /&gt;
*[[Toma Audo]]&lt;br /&gt;
&lt;br /&gt;
==Notes==&lt;br /&gt;
{{reflist|2}}&lt;br /&gt;
&lt;br /&gt;
==References==&lt;br /&gt;
*{{cite web|url=http://www.gcatholic.org/dioceses/diocese/baby0.htm|title=Patriarchal See of Babylon|publisher=GCatholic.org|accessdate=2009-01-24}}&lt;br /&gt;
*{{cite web|url=http://www.catholic-hierarchy.org/bishop/baudug.html|title=Archbishop Giuseppe Audu|publisher=Catholic-Hierarchy.org|accessdate=2009-01-16}}&lt;br /&gt;
* {{cite book |last=Frazee |first=Charles A. | title=Catholics and Sultans: The Church and the Ottoman Empire 1453-1923 |year=2006 | publisher=Cambridge University Press |isbn= 0-521-02700-4}}&lt;br /&gt;
* {{cite book |last=Wilmshurst |first=David |title=The Ecclesiastical Organisation of the Church of the East, 1318-1913 |publisher=Peeters Publishers |year=2000 |isbn=978-90-429-0876-5}}&lt;br /&gt;
&lt;br /&gt;
{{s-start}}&lt;br /&gt;
{{s-bef|before=[[Nicholas I Zaya]]&amp;lt;br&amp;gt;(1839–1846)}}&lt;br /&gt;
{{s-ttl|title=[[List of Chaldean Catholic Patriarchs of Babylon|Patriarch of Babylon &amp;lt;br&amp;gt;of the Chaldean Catholic Church]]|years=1847–1878}} &lt;br /&gt;
{{s-aft|after=[[Eliya Abulyonan|Eliya XIV Abulyonan]]&amp;lt;br&amp;gt; (1878–1894)}}&lt;br /&gt;
{{end}}&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!-- Metadata: see [[Wikipedia:Persondata]] --&amp;gt;&lt;br /&gt;
{{Persondata&lt;br /&gt;
|NAME= Audo, Joseph VI&lt;br /&gt;
|ALTERNATIVE NAMES= Audo, Joseph&lt;br /&gt;
|SHORT DESCRIPTION=Patriarch of the Chaldean Catholic Church&lt;br /&gt;
|DATE OF BIRTH=1790&lt;br /&gt;
|PLACE OF BIRTH=Alqosh, Iraq&lt;br /&gt;
|DATE OF DEATH=March 14, 1878&lt;br /&gt;
|PLACE OF DEATH=Mosul, Iraq&lt;br /&gt;
}}&lt;br /&gt;
{{DEFAULTSORT:Audo, Joseph VI}}&lt;br /&gt;
[[Category:Assyrian people]]&lt;br /&gt;
[[Category:Chaldean Catholic Patriarchs of Babylon]]&lt;br /&gt;
[[Category:1790 births]]&lt;br /&gt;
[[Category:1878 deaths]]&lt;br /&gt;
[[Category:People from Alqosh]]&lt;/div&gt;</summary>
		<author><name>Ian</name></author>	</entry>

	<entry>
		<id>https://chaldeanwiki.com/index.php?title=Eliya_Abulyonan&amp;diff=3365</id>
		<title>Eliya Abulyonan</title>
		<link rel="alternate" type="text/html" href="https://chaldeanwiki.com/index.php?title=Eliya_Abulyonan&amp;diff=3365"/>
				<updated>2015-05-19T01:34:10Z</updated>
		
		<summary type="html">&lt;p&gt;Ian: 1 revision imported&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{Infobox Patriarch&lt;br /&gt;
|image=Eliya-Abulyonan.jpg&lt;br /&gt;
|name=Eliya XIV [XIII] Abulyonan&lt;br /&gt;
|birth_name=Eliya Peter Abulyonan&lt;br /&gt;
|church=[[Chaldean Catholic Church]]&lt;br /&gt;
|see=[[Patriarchial See of Babylon of the Chaldeans|Babylon of the Chaldeans]]&lt;br /&gt;
|patriarch_of=[[Patriarch of Babylon of the Chaldeans]]&lt;br /&gt;
|residence=[[Iraq]]&lt;br /&gt;
|enthroned=July 26, 1878&lt;br /&gt;
|ended=June 27, 1894&lt;br /&gt;
|predecessor=[[Joseph Audo]]&lt;br /&gt;
|successor=[[Audishu V Khayyath]]&lt;br /&gt;
|birth_date=1840&lt;br /&gt;
|birth_place=[[Mosul]]&lt;br /&gt;
|death_date={{BirthDeathAge||1840|||1894|6|27}}&lt;br /&gt;
|death_place=[[Mosul]]&lt;br /&gt;
|ordination= 1865 ([[Priesthood (Catholic Church)|Priest]])&lt;br /&gt;
|consecration =  May 24, 1874 ([[Bishop (Catholic Church)|Bishop]])&lt;br /&gt;
|consecrated_by=[[Joseph Audo]]&lt;br /&gt;
}}&lt;br /&gt;
Mar '''Eliya XIV [XIII] Abulyonan''' † (or ''Abolionan'') was the Patriarch of the [[Chaldean Catholic Church]] from 1878 to 1894.&lt;br /&gt;
&lt;br /&gt;
==Life==&lt;br /&gt;
Eliya Peter Abulyonan was born in 1840 in [[Mosul]] to an [[Assyrian people|Assyrian]] family. He studied three years in the [[College of the Propaganda]] in [[Rome]] and was ordained priest in 1865. On May 24, 1874, in [[Alqosh]], he was ordained bishop of Gazireh by Patriarch [[Joseph Audo]]. He was appointed Patriarch of the Chaldean Church on July 26, 1878 and confirmed by the [[pope]] on February 28, 1879.&lt;br /&gt;
&lt;br /&gt;
During his patriarchate he spare no effort to improve the relations both with the [[Holy See]] and within the Chaldean Church, after the eventful reign of his predecessor Joseph Audo. He died in [[Mosul]] at the age of 54 on June 27, 1894. &lt;br /&gt;
&lt;br /&gt;
The [[regnal number|ordinal number]] of his title is sometime XIV, sometime XIII, while among scholars Eliya XII is often preferred. This is due to the uncertain list of the Patriarchal line of Alqosh in the 16th and 17th century.&amp;lt;ref&amp;gt;see H.Murre, {{cite web|url=http://syrcom.cua.edu/Hugoye/Vol2No2/HV2N2Murre.html|title=The Patriarchs of the Church of the East from the Fifteenth to Eighteenth Centuries|publisher=Hugoye: Journal of Syriac Studies|accessdate=2009-01-05}}, who for example uses XII, as D.Wilmshurst (ISBN 90-429-0876-9)&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==Notes==&lt;br /&gt;
{{reflist|1}}&lt;br /&gt;
&lt;br /&gt;
==References==&lt;br /&gt;
*{{cite web|url=http://www.gcatholic.org/dioceses/diocese/baby0.htm|title=Patriarchal See of Babylon|publisher=GCatholic.org|accessdate=2009-01-24}}&lt;br /&gt;
*{{cite web|url=http://www.catholic-hierarchy.org/bishop/babol.html|title=Archbishop Pietro Elia Abolionan|publisher=Catholic-Hierarchy.org|accessdate=2009-01-16}}&lt;br /&gt;
*David Wilmshurst, ''The Ecclesiastical Organisation of the Church of the East, 1318-1913'', Peeters Publishers, 2000 ISBN 90-429-0876-9, pag 35, 742&lt;br /&gt;
&lt;br /&gt;
{{s-start}}&lt;br /&gt;
{{s-bef|before=[[Joseph Audo|Joseph VI Audo]]&amp;lt;br&amp;gt;(1847–1878)}}&lt;br /&gt;
{{s-ttl|title=[[List of Chaldean Catholic Patriarchs of Babylon|Patriarch of Babylon &amp;lt;br&amp;gt;of the Chaldean Catholic Church]]|years=1878–1894}} &lt;br /&gt;
{{s-aft|after=[[Audishu V Khayyath]]&amp;lt;br&amp;gt; (1894–1899)}}&lt;br /&gt;
{{end}}&lt;br /&gt;
&lt;br /&gt;
{{Persondata&lt;br /&gt;
| NAME              = Abulyonan, Eliya 13&lt;br /&gt;
| ALTERNATIVE NAMES =&lt;br /&gt;
| SHORT DESCRIPTION = Chaldean Catholic Patriarch of Babylon&lt;br /&gt;
| DATE OF BIRTH     = 1840&lt;br /&gt;
| PLACE OF BIRTH    = [[Mosul]]&lt;br /&gt;
| DATE OF DEATH     = June 27, 1894&lt;br /&gt;
| PLACE OF DEATH    = [[Mosul]]&lt;br /&gt;
}}&lt;br /&gt;
{{DEFAULTSORT:Abulyonan, Eliya 13}}&lt;br /&gt;
[[Category:Ottoman Assyrians]]&lt;br /&gt;
[[Category:Iraqi Assyrian people]]&lt;br /&gt;
[[Category:Chaldean Catholic Patriarchs of Babylon]]&lt;br /&gt;
[[Category:1840 births]]&lt;br /&gt;
[[Category:1894 deaths]]&lt;br /&gt;
[[Category:People from Mosul]]&lt;/div&gt;</summary>
		<author><name>Ian</name></author>	</entry>

	<entry>
		<id>https://chaldeanwiki.com/index.php?title=Template:Self-published_source&amp;diff=3363</id>
		<title>Template:Self-published source</title>
		<link rel="alternate" type="text/html" href="https://chaldeanwiki.com/index.php?title=Template:Self-published_source&amp;diff=3363"/>
				<updated>2015-05-19T01:29:23Z</updated>
		
		<summary type="html">&lt;p&gt;Ian: 1 revision imported&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{ {{{|safesubst:}}}#invoke:Unsubst||$N=Self-published source |date=__DATE__ |$B=&lt;br /&gt;
&amp;lt;!--{{Self-published source}} begin--&amp;gt;{{Fix&lt;br /&gt;
| subst    = &amp;lt;includeonly&amp;gt;{{subst:&amp;lt;/includeonly&amp;gt;&amp;lt;includeonly&amp;gt;substcheck}}&amp;lt;/includeonly&amp;gt;&lt;br /&gt;
| link     = Wikipedia:Verifiability#SELF&lt;br /&gt;
| title    = This reference citation appears to be a self-published source&lt;br /&gt;
| text     = self-published source&lt;br /&gt;
| date     = {{{date|}}}&lt;br /&gt;
| cat-date = Category:Accuracy disputes&lt;br /&gt;
}}&amp;lt;!--{{Self-published source}} end--&amp;gt;&lt;br /&gt;
}}&amp;lt;noinclude&amp;gt;&lt;br /&gt;
{{Documentation}}&lt;br /&gt;
&amp;lt;!-- Add categories and interwikis to the /doc subpage, please, not here! --&amp;gt;&lt;br /&gt;
&amp;lt;/noinclude&amp;gt;&lt;/div&gt;</summary>
		<author><name>Ian</name></author>	</entry>

	<entry>
		<id>https://chaldeanwiki.com/index.php?title=Template:Infobox_Christian_leader&amp;diff=3357</id>
		<title>Template:Infobox Christian leader</title>
		<link rel="alternate" type="text/html" href="https://chaldeanwiki.com/index.php?title=Template:Infobox_Christian_leader&amp;diff=3357"/>
				<updated>2015-05-19T01:29:22Z</updated>
		
		<summary type="html">&lt;p&gt;Ian: 1 revision imported&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{Infobox&lt;br /&gt;
| child       = {{{embed|{{{child|}}}}}}&lt;br /&gt;
| bodyclass   = vcard&lt;br /&gt;
| aboveclass  = n&lt;br /&gt;
| abovestyle  = background-color:{{#switch:{{lc:{{{type|}}}}}|priest=#808080|pope=#F7D79C|cardinal=#f66|#default=plum}};&lt;br /&gt;
| above       = &amp;lt;includeonly&amp;gt;{{#if:{{{honorific-prefix|}}}|&amp;lt;span class=&amp;quot;honorific-prefix&amp;quot; style=&amp;quot;font-size:87%&amp;quot;&amp;gt;{{{honorific-prefix|}}}&amp;lt;/span&amp;gt;&amp;lt;br /&amp;gt;}}&amp;lt;span class=&amp;quot;fn&amp;quot;&amp;gt;{{{name|{{{Full name|{{{English name|}}} }}} }}}&amp;lt;/span&amp;gt;{{#if:{{{honorific-suffix|}}}|&amp;lt;br /&amp;gt;&amp;lt;span class=&amp;quot;honorific-suffix&amp;quot; style=&amp;quot;font-size:87%&amp;quot;&amp;gt;{{{honorific-suffix|}}}&amp;lt;/span&amp;gt;}}&amp;lt;/includeonly&amp;gt;&lt;br /&gt;
&lt;br /&gt;
| subheaderstyle = {{#ifeq:{{{embed|{{{child|}}}}}}|yes|background-color:{{#switch:{{lc:{{{type|}}}}}|priest=#808080|pope=#F7D79C|cardinal=#f66|#default=plum}};}}&lt;br /&gt;
| subheader   = {{#if:{{{title|{{{archbishop_of|{{{bishop_of|{{{patriarch_of|}}} }}} }}} }}}|''{{{title|{{{archbishop_of|{{{bishop_of|{{{patriarch_of|}}} }}} }}} }}}''}}&lt;br /&gt;
| headerstyle = background-color:#DDDDDD;&lt;br /&gt;
| subheaderclass = role&lt;br /&gt;
| image       = {{#invoke:InfoboxImage|InfoboxImage|image={{{image|}}}|size={{{image_size|{{{imagesize|}}}}}}|sizedefault=frameless|upright=1|alt={{{alt|}}}|suppressplaceholder=yes}}&lt;br /&gt;
| caption     = {{{caption|}}}&lt;br /&gt;
&lt;br /&gt;
| label1     = Native name&lt;br /&gt;
| data1      = {{#if:{{{native_name|}}}|&amp;lt;span class=&amp;quot;nickname&amp;quot; {{#if:{{{native_name_lang|}}}|lang=&amp;quot;{{{native_name_lang}}}&amp;quot; xml:lang=&amp;quot;{{{native_name_lang}}}&amp;quot;}}&amp;gt;{{{native_name}}}&amp;lt;/span&amp;gt; }}&lt;br /&gt;
&lt;br /&gt;
| label2      = Church&lt;br /&gt;
| data2       = {{{church|}}}&lt;br /&gt;
| class2      = org&lt;br /&gt;
&lt;br /&gt;
| label3      = Archdiocese&lt;br /&gt;
| data3       = {{{archdiocese|}}}&lt;br /&gt;
&lt;br /&gt;
| label4      = Province&lt;br /&gt;
| data4       = {{{province|}}}&lt;br /&gt;
&lt;br /&gt;
| label5      = Metropolis&lt;br /&gt;
| data5       = {{{metropolis|}}}&lt;br /&gt;
&lt;br /&gt;
| label6      = Diocese&lt;br /&gt;
| data6       = {{{diocese|}}}&lt;br /&gt;
| class6      = label&lt;br /&gt;
&lt;br /&gt;
| label7      = See&lt;br /&gt;
| data7       = {{{see|}}}&lt;br /&gt;
&lt;br /&gt;
| label8      = {{#if:{{{appointed|}}}|Appointed|Elected}}&lt;br /&gt;
| data8       = {{#if:{{{appointed|}}}|{{{appointed}}}|{{{elected|}}}}} &lt;br /&gt;
&lt;br /&gt;
| label9      = {{#if:{{{term|}}}|In office|{{#switch:{{lc:{{{type|}}}}}|pope|antipope|coptic pope=Papacy began|#default=Installed}}}}&lt;br /&gt;
| data9       ={{#if:{{{term|}}}|{{{term}}}|{{{enthroned|{{{began|{{{term_start|}}} }}} }}} }}&lt;br /&gt;
| rowclass9   = note&lt;br /&gt;
&lt;br /&gt;
| label10      = Quashed&lt;br /&gt;
| data10       = {{{quashed|}}}&lt;br /&gt;
&lt;br /&gt;
| label11     = {{#switch:{{lc:{{{type|}}}}}|pope|antipope|coptic pope=Papacy ended|#default=Term ended}}&lt;br /&gt;
| data11      = {{#if:{{{term|}}}||{{{ended|{{{term_end|}}} }}} }}&lt;br /&gt;
| rowclass11  = note&lt;br /&gt;
&lt;br /&gt;
| label12     = Predecessor&lt;br /&gt;
| data12      = {{{predecessor|}}}&lt;br /&gt;
&lt;br /&gt;
| label13     = Successor&lt;br /&gt;
| data13      = {{{successor|}}}&lt;br /&gt;
&lt;br /&gt;
| label14     = Opposed to&lt;br /&gt;
| data14      = {{{opposed|}}}&lt;br /&gt;
&lt;br /&gt;
| label15     = Other posts&lt;br /&gt;
| data15      = {{{other_post|}}}&lt;br /&gt;
&lt;br /&gt;
| header16    = {{#if:{{{ordination|}}}{{{ordained_by|}}}{{{ordinated_by|}}}{{{consecration|}}}{{{consecrated_by|}}}{{{cardinal|}}}{{{rank|}}}|Orders}}&lt;br /&gt;
&lt;br /&gt;
| label17     = Ordination&lt;br /&gt;
| data17      = {{br separated entries| {{{ordination|}}} | {{#if:{{{ordained_by|}}}{{{ordinated_by|}}}|by&amp;amp;nbsp;{{#if:{{{ordained_by|}}}|{{{ordained_by}}}|{{{ordinated_by}}}}}}} }}&lt;br /&gt;
&lt;br /&gt;
| label18     = Consecration&lt;br /&gt;
| data18      = {{br separated entries| {{{consecration|}}} | {{#if:{{{consecrated_by|}}}|by&amp;amp;nbsp;{{{consecrated_by}}}}} }}&lt;br /&gt;
&lt;br /&gt;
| label19     = Created Cardinal&lt;br /&gt;
| data19      = {{br separated entries| {{{cardinal|}}} | {{#if:{{{created_cardinal_by|}}}|by {{{created_cardinal_by}}}}} }}&lt;br /&gt;
&lt;br /&gt;
| label20     = Rank&lt;br /&gt;
| data20      = {{{rank|}}}&lt;br /&gt;
&lt;br /&gt;
| header21    = {{#if:{{{birth_name|}}}{{{birth_date|}}}{{{birth_place|}}}{{{death_date|}}}{{{death_place|}}}{{{buried|{{{tomb|}}}}}}{{{nationality|}}}{{{religion|}}}{{{residence|}}}{{{parents|}}}{{{partner|}}}{{{spouse|}}}{{{children|}}}{{{occupation|}}}{{{previous_post|}}}{{{profession|}}}{{{alma_mater|}}}{{{signature|}}}{{{coat_of_arms|}}}{{{motto|}}}|Personal details}}&lt;br /&gt;
&lt;br /&gt;
| label22     = Birth name&lt;br /&gt;
| data22      = {{{birth_name|}}}&lt;br /&gt;
| class22     = nickname&lt;br /&gt;
&lt;br /&gt;
| label23     = Born&lt;br /&gt;
| data23      = {{br separated entries| {{{birth_date|}}} | {{{birth_place|}}} }}&lt;br /&gt;
&lt;br /&gt;
| label24     = Died&lt;br /&gt;
| data24      = {{br separated entries| {{{death_date|}}} | {{{death_place|}}} }}&lt;br /&gt;
&lt;br /&gt;
| label25     = {{#ifeq:{{lc:{{{type|}}}}}|pope|[[List of extant papal tombs|Buried]]|Buried}}&lt;br /&gt;
| data25      = {{br separated entries | {{{buried|{{{tomb|}}}}}} | {{{resting_place_coordinates|}}} }}&lt;br /&gt;
&lt;br /&gt;
| label26     = Nationality&lt;br /&gt;
| data26      = {{{nationality|}}}&lt;br /&gt;
| class26     = category&lt;br /&gt;
&lt;br /&gt;
| label27     = Denomination&lt;br /&gt;
| data27      = {{{religion|}}}&lt;br /&gt;
| class27     = category &lt;br /&gt;
&lt;br /&gt;
| label28     = Residence&lt;br /&gt;
| data28      = {{{residence|}}}&lt;br /&gt;
| class28     = label&lt;br /&gt;
&lt;br /&gt;
| label29     = Parents&lt;br /&gt;
| data29      = {{{parents|}}}&lt;br /&gt;
&lt;br /&gt;
| label30     = {{#if:{{{partner|}}}|Partner|Spouse}}&lt;br /&gt;
| data30      = {{#if:{{{partner|}}}|{{{partner}}}|{{{spouse|}}}}}&lt;br /&gt;
&lt;br /&gt;
| label31     = Children&lt;br /&gt;
| data31      = {{{children|}}}&lt;br /&gt;
&lt;br /&gt;
| label32     = Occupation&lt;br /&gt;
| data32      = {{{occupation|}}}&lt;br /&gt;
&lt;br /&gt;
| label33     = {{#if:{{{previous_post|}}}|Previous post|Profession}}&lt;br /&gt;
| data33      = {{#if:{{{previous_post|}}}|{{{previous_post}}}|{{{profession|}}}}}&lt;br /&gt;
&lt;br /&gt;
| label34     = Education&lt;br /&gt;
| data34      = {{{education|}}}&lt;br /&gt;
&lt;br /&gt;
| label35     = [[Alma mater]]&lt;br /&gt;
| data35      = {{{alma_mater|}}}&lt;br /&gt;
&lt;br /&gt;
| label36     = Motto&lt;br /&gt;
| data36      = {{{motto|}}}&lt;br /&gt;
&lt;br /&gt;
| label37     = Signature&lt;br /&gt;
| data37      = {{#if:{{{signature|}}}|[[File:{{{signature}}}|125px|{{{name|{{{Full name|{{{English name|{{PAGENAMEBASE}} }}} }}} }}}'s signature|alt={{{signature_alt}}}]]}}&lt;br /&gt;
&lt;br /&gt;
| label38     = Coat of arms&lt;br /&gt;
| data38      = {{#if:{{{coat_of_arms|}}}|[[File:{{{coat_of_arms}}}|50px|{{{name|{{{Full name|{{{English name|{{PAGENAMEBASE}} }}} }}} }}}'s coat of arms|alt={{{coat_of_arms_alt}}}]]}}&lt;br /&gt;
&lt;br /&gt;
| header39    = {{#if:{{{feast_day|}}}{{{venerated|}}}{{{saint_title|}}}{{{beatified_date|}}}{{{beatified_place|}}}{{{beatified_by|}}}{{{canonized_date|}}}{{{canonized_place|}}}{{{canonized_by|}}}{{{attributes|}}}{{{patronage|}}}{{{shrine|}}}{{{suppressed_date|}}}|Sainthood}}&lt;br /&gt;
&lt;br /&gt;
| label40     = Feast day&lt;br /&gt;
| data40      = {{{feast_day|}}}&lt;br /&gt;
&lt;br /&gt;
| label41     = Venerated in&lt;br /&gt;
| data41      = {{{venerated|}}}&lt;br /&gt;
&lt;br /&gt;
| label42     = Title as Saint&lt;br /&gt;
| data42      = {{{saint_title|}}}&lt;br /&gt;
&lt;br /&gt;
| label43     = Beatified&lt;br /&gt;
| data43      = {{br separated entries | {{{beatified_date|}}} | {{{beatified_place|}}} | {{#if:{{{beatified_by|}}}|by&amp;amp;nbsp;{{{beatified_by}}}}} }}&lt;br /&gt;
&lt;br /&gt;
| label44     = Canonized&lt;br /&gt;
| data44      = {{br separated entries | {{{canonized_date|}}} |{{{canonized_place|}}} | {{#if:{{{canonized_by|}}}|by&amp;amp;nbsp;{{{canonized_by}}}}} }}&lt;br /&gt;
&lt;br /&gt;
| label45     = Attributes&lt;br /&gt;
| data45      = {{{attributes|}}}&lt;br /&gt;
&lt;br /&gt;
| label46     = Patronage&lt;br /&gt;
| data46      = {{{patronage|}}}&lt;br /&gt;
&lt;br /&gt;
| label47     = Shrines&lt;br /&gt;
| data47      = {{{shrine|}}}&lt;br /&gt;
&lt;br /&gt;
| label48     = Cult suppressed&lt;br /&gt;
| data48      = {{{suppressed_date|}}}&lt;br /&gt;
&lt;br /&gt;
| below       = {{#if:{{{other|}}}|[[Pope {{{other}}} (disambiguation)|Other popes {{#ifeq:{{lc:{{{type|}}}}}|antipope|and antipopes}} named {{{other}}}]]}}&lt;br /&gt;
}}{{main other|{{#if:{{{image|}}}|{{#ifexist:media:{{{image}}}||[[Category:Infobox person using a missing image]]}}}}{{#if:{{{ordinated_by|}}}|[[Category:Christian leader infoboxes with deprecated parameters]]}}}}&amp;lt;noinclude&amp;gt;&lt;br /&gt;
{{documentation}}&lt;br /&gt;
&amp;lt;!-- place category and language links on the /doc page, not here --&amp;gt;&lt;br /&gt;
&amp;lt;/noinclude&amp;gt;&lt;/div&gt;</summary>
		<author><name>Ian</name></author>	</entry>

	<entry>
		<id>https://chaldeanwiki.com/index.php?title=Template:Infobox_Patriarch&amp;diff=3359</id>
		<title>Template:Infobox Patriarch</title>
		<link rel="alternate" type="text/html" href="https://chaldeanwiki.com/index.php?title=Template:Infobox_Patriarch&amp;diff=3359"/>
				<updated>2015-05-19T01:29:22Z</updated>
		
		<summary type="html">&lt;p&gt;Ian: 1 revision imported&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;#REDIRECT [[Template:Infobox Christian leader]]&lt;/div&gt;</summary>
		<author><name>Ian</name></author>	</entry>

	<entry>
		<id>https://chaldeanwiki.com/index.php?title=Template:S-rel&amp;diff=3361</id>
		<title>Template:S-rel</title>
		<link rel="alternate" type="text/html" href="https://chaldeanwiki.com/index.php?title=Template:S-rel&amp;diff=3361"/>
				<updated>2015-05-19T01:29:22Z</updated>
		
		<summary type="html">&lt;p&gt;Ian: 1 revision imported&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;includeonly&amp;gt;|-&lt;br /&gt;
! colspan=&amp;quot;3&amp;quot; style=&amp;quot;border-top: 5px solid #FABE60;&amp;quot; |{{#if:{{{1|}}}|{{#switch:{{{1}}}&lt;br /&gt;
 |#default={{{1}}}&lt;br /&gt;
 |ac=[[Anglican Communion|Anglican Communion titles]]&lt;br /&gt;
 |bu=[[Buddhism|Buddhist titles]]&lt;br /&gt;
 |ca=[[Catholic Church|Catholic Church titles]]&lt;br /&gt;
 |cc=[[Community of Christ|Community of Christ titles]]&lt;br /&gt;
 |ep=[[Episcopal Church (United States)|Episcopal Church (USA) titles]]&lt;br /&gt;
 |en=[[Church of England|Church of England titles]]&lt;br /&gt;
 |ie=[[Church of Ireland|Church of Ireland titles]]&lt;br /&gt;
 |is=[[Islam|Islamic titles]]&lt;br /&gt;
 |jw=[[Judaism|Jewish titles]]&lt;br /&gt;
 |mo=[[The Church of Jesus Christ of Latter-day Saints|The Church of Jesus Christ of Latter-day Saints titles]]&amp;lt;!-- PLEASE DO NOT ABBREVIATE THIS CHURCH'S NAME PER WP:MOSLDS --&amp;gt;&lt;br /&gt;
 |or=[[Orthodox Christianity|Orthodox Church titles]]&lt;br /&gt;
 |sc=[[Church of Scotland|Church of Scotland titles]]&lt;br /&gt;
 |se=[[Scottish Episcopal Church|Scottish Episcopal Church titles]]&lt;br /&gt;
 |sh=[[Shia Islam|Shia Islam titles]]&lt;br /&gt;
 |su=[[Sunni Islam|Sunni Islam titles]]&lt;br /&gt;
 |wa=[[Church in Wales|Church in Wales titles]]&lt;br /&gt;
 |sa=[[Anglican Church of Southern Africa|Anglican Church of Southern Africa titles]]&lt;br /&gt;
}}|Religious titles}}&amp;lt;/includeonly&amp;gt;&amp;lt;noinclude&amp;gt;&lt;br /&gt;
{{documentation}}&lt;br /&gt;
&amp;lt;!-- Categories go on the /doc subpage, and interwikis go on Wikidata. --&amp;gt;&lt;br /&gt;
&amp;lt;/noinclude&amp;gt;&lt;/div&gt;</summary>
		<author><name>Ian</name></author>	</entry>

	<entry>
		<id>https://chaldeanwiki.com/index.php?title=Template:End&amp;diff=3355</id>
		<title>Template:End</title>
		<link rel="alternate" type="text/html" href="https://chaldeanwiki.com/index.php?title=Template:End&amp;diff=3355"/>
				<updated>2015-05-19T01:29:21Z</updated>
		
		<summary type="html">&lt;p&gt;Ian: 1 revision imported&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;|}&amp;lt;noinclude&amp;gt;{{Documentation}}&amp;lt;/noinclude&amp;gt;&lt;/div&gt;</summary>
		<author><name>Ian</name></author>	</entry>

	<entry>
		<id>https://chaldeanwiki.com/index.php?title=Template:BirthDeathAge&amp;diff=3351</id>
		<title>Template:BirthDeathAge</title>
		<link rel="alternate" type="text/html" href="https://chaldeanwiki.com/index.php?title=Template:BirthDeathAge&amp;diff=3351"/>
				<updated>2015-05-19T01:29:20Z</updated>
		
		<summary type="html">&lt;p&gt;Ian: 1 revision imported&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;noinclude&amp;gt;{{pp-template|small=yes}}&amp;lt;/noinclude&amp;gt;&amp;lt;includeonly&amp;gt;{{#if: {{{8|&amp;lt;noinclude&amp;gt;-&amp;lt;/noinclude&amp;gt;}}} |&lt;br /&gt;
 {{#if: {{{1|&amp;lt;noinclude&amp;gt;-&amp;lt;/noinclude&amp;gt;}}} |&lt;br /&gt;
  {{#if: {{{3|&amp;lt;noinclude&amp;gt;-&amp;lt;/noinclude&amp;gt;}}} |&lt;br /&gt;
    {{#if: {{{5|&amp;lt;noinclude&amp;gt;-&amp;lt;/noinclude&amp;gt;}}} |&lt;br /&gt;
     {{Birth date|{{{2}}}|{{{3}}}|{{{4}}}|df=yes}}	 &lt;br /&gt;
     |&lt;br /&gt;
     {{Birth date and age|{{{2}}}|{{{3}}}|{{{4}}}|df=yes}}&lt;br /&gt;
     }}&lt;br /&gt;
   |&lt;br /&gt;
    {{#if: {{{2|&amp;lt;noinclude&amp;gt;-&amp;lt;/noinclude&amp;gt;}}} |&lt;br /&gt;
     {{#if: {{{5|&amp;lt;noinclude&amp;gt;-&amp;lt;/noinclude&amp;gt;}}} |&lt;br /&gt;
      {{birth-date|{{{2}}}}}&lt;br /&gt;
     |&lt;br /&gt;
      {{Birth year and age|{{{2}}}}}&lt;br /&gt;
      }}&lt;br /&gt;
    }}&lt;br /&gt;
  }}&lt;br /&gt;
 }}&lt;br /&gt;
 {{#if: {{{1|&amp;lt;noinclude&amp;gt;-&amp;lt;/noinclude&amp;gt;}}} |&lt;br /&gt;
 &lt;br /&gt;
 |&lt;br /&gt;
 {{#if: {{{6|&amp;lt;noinclude&amp;gt;-&amp;lt;/noinclude&amp;gt;}}} |&lt;br /&gt;
   {{#if: {{{4|&amp;lt;noinclude&amp;gt;-&amp;lt;/noinclude&amp;gt;}}} |&lt;br /&gt;
     {{death date and age|{{{5}}}|{{{6}}}|{{{7}}}|{{{2}}}|{{{3}}}|{{{4}}}|df=yes}}&lt;br /&gt;
     |&lt;br /&gt;
       {{#if: {{{2|&amp;lt;noinclude&amp;gt;-&amp;lt;/noinclude&amp;gt;}}} |&lt;br /&gt;
         {{{7}}} {{MONTHNAME|{{{6}}}}} {{Death year and age|{{{5}}}|{{{2}}}}}&lt;br /&gt;
        |&lt;br /&gt;
         {{Death date|{{{5}}}|{{{6}}}|{{{7}}}|df=yes}} &lt;br /&gt;
      }}&lt;br /&gt;
    }}&lt;br /&gt;
  |&lt;br /&gt;
   {{#if: {{{5|&amp;lt;noinclude&amp;gt;-&amp;lt;/noinclude&amp;gt;}}} |&lt;br /&gt;
     {{#if: {{{2|&amp;lt;noinclude&amp;gt;-&amp;lt;/noinclude&amp;gt;}}} |&lt;br /&gt;
       {{Death year and age|{{{5}}}|{{{2}}}}}  &lt;br /&gt;
      |&lt;br /&gt;
      {{death-date|{{{5}}}}}&lt;br /&gt;
     }}&lt;br /&gt;
   }}&lt;br /&gt;
  }}&lt;br /&gt;
 }}&lt;br /&gt;
|&lt;br /&gt;
 {{#if: {{{1|&amp;lt;noinclude&amp;gt;-&amp;lt;/noinclude&amp;gt;}}} |&lt;br /&gt;
  {{#if: {{{3|&amp;lt;noinclude&amp;gt;-&amp;lt;/noinclude&amp;gt;}}} |&lt;br /&gt;
   {{#if: {{{5|&amp;lt;noinclude&amp;gt;-&amp;lt;/noinclude&amp;gt;}}} |&lt;br /&gt;
     {{Birth date|{{{2}}}|{{{3}}}|{{{4}}}}}&lt;br /&gt;
    |&lt;br /&gt;
     {{Birth date and age|{{{2}}}|{{{3}}}|{{{4}}}}}&lt;br /&gt;
    }}&lt;br /&gt;
    |&lt;br /&gt;
     {{#if: {{{2|&amp;lt;noinclude&amp;gt;-&amp;lt;/noinclude&amp;gt;}}} |&lt;br /&gt;
       {{#if: {{{5|&amp;lt;noinclude&amp;gt;-&amp;lt;/noinclude&amp;gt;}}} |&lt;br /&gt;
        {{birth-date|{{{2}}}}}&lt;br /&gt;
      |&lt;br /&gt;
       {{Birth year and age|{{{2}}}}} &lt;br /&gt;
     }}&lt;br /&gt;
   }}&lt;br /&gt;
  }}&lt;br /&gt;
 }}&lt;br /&gt;
 {{#if: {{{1|&amp;lt;noinclude&amp;gt;-&amp;lt;/noinclude&amp;gt;}}} |&lt;br /&gt;
 &lt;br /&gt;
 |&lt;br /&gt;
  {{#if: {{{6|&amp;lt;noinclude&amp;gt;-&amp;lt;/noinclude&amp;gt;}}} |&lt;br /&gt;
    {{#if: {{{4|&amp;lt;noinclude&amp;gt;-&amp;lt;/noinclude&amp;gt;}}} |&lt;br /&gt;
     {{death date and age|{{{5}}}|{{{6}}}|{{{7}}}|{{{2}}}|{{{3}}}|{{{4}}}}}&lt;br /&gt;
      |&lt;br /&gt;
       {{#if: {{{2|&amp;lt;noinclude&amp;gt;-&amp;lt;/noinclude&amp;gt;}}} |&lt;br /&gt;
         {{MONTHNAME|{{{6}}}}} {{{7}}}, {{Death year and age|{{{5}}}|{{{2}}}}}&lt;br /&gt;
        |&lt;br /&gt;
         {{Death date|{{{5}}}|{{{6}}}|{{{7}}}}}  &lt;br /&gt;
       }}&lt;br /&gt;
     }}&lt;br /&gt;
  |&lt;br /&gt;
   {{#if: {{{5|&amp;lt;noinclude&amp;gt;-&amp;lt;/noinclude&amp;gt;}}} |&lt;br /&gt;
    {{#if: {{{2|&amp;lt;noinclude&amp;gt;-&amp;lt;/noinclude&amp;gt;}}} |&lt;br /&gt;
      {{Death year and age|{{{5}}}|{{{2}}}}}&lt;br /&gt;
     |&lt;br /&gt;
      {{death-date|{{{5}}}}}&lt;br /&gt;
    }}&lt;br /&gt;
   }}&lt;br /&gt;
  }}&lt;br /&gt;
 }}&lt;br /&gt;
}}&amp;lt;/includeonly&amp;gt;&amp;lt;noinclude&amp;gt;{{Documentation}}&amp;lt;/noinclude&amp;gt;&lt;/div&gt;</summary>
		<author><name>Ian</name></author>	</entry>

	<entry>
		<id>https://chaldeanwiki.com/index.php?title=Template:Death_date_and_age&amp;diff=3353</id>
		<title>Template:Death date and age</title>
		<link rel="alternate" type="text/html" href="https://chaldeanwiki.com/index.php?title=Template:Death_date_and_age&amp;diff=3353"/>
				<updated>2015-05-19T01:29:20Z</updated>
		
		<summary type="html">&lt;p&gt;Ian: 1 revision imported&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;includeonly&amp;gt;{{#if:{{{df|}}}|{{#expr:{{{3}}}}} {{MONTHNAME|{{{2}}}}}|{{MONTHNAME|{{{2}}}}} {{#expr:{{{3}}}}},}} {{{1}}}&amp;lt;span style=&amp;quot;display:none&amp;quot;&amp;gt;(&amp;lt;span class=&amp;quot;dday deathdate&amp;quot;&amp;gt;{{{1}}}-{{padleft:{{MONTHNUMBER|{{{2}}}}}|2|0}}-{{padleft:{{{3}}}|2|0}}&amp;lt;/span&amp;gt;)&amp;lt;/span&amp;gt; (aged&amp;amp;nbsp;{{#if:{{{5|}}}&lt;br /&gt;
 |{{#if:{{{6|}}}&lt;br /&gt;
  |&amp;lt;!-- if all birth values are specified --&amp;gt;{{age|{{{4}}}|{{{5}}}|{{{6}}}|{{{1}}}|{{{2}}}|{{{3}}}}}&lt;br /&gt;
  |{{#ifexpr:{{{2}}}&amp;lt;{{{5}}}&lt;br /&gt;
    |&amp;lt;!-- if birth month but not day exist and birth month was not reached in death year --&amp;gt;{{age|{{{4}}}|12|31|{{{1}}}|{{{2}}}|{{{3}}}}}&lt;br /&gt;
    |{{#ifexpr:{{{2}}}&amp;gt;{{{5}}}&amp;lt;!-- if birth month but not day exist and birth month was reached in death year --&amp;gt;&lt;br /&gt;
     |{{age|{{{4}}}|1|1|{{{1}}}|{{{2}}}|{{{3}}}}}&lt;br /&gt;
     |&amp;lt;!-- if birth month but not day exist and birth month is the death month --&amp;gt;{{age|{{{4}}}|12|31|{{{1}}}|{{{2}}}|{{{3}}}}}–{{age|{{{4}}}|1|1|{{{1}}}|{{{2}}}|{{{3}}}}}&lt;br /&gt;
     }}&lt;br /&gt;
   }}&lt;br /&gt;
  }}&lt;br /&gt;
 |{{Age in years|{{{4}}}|{{{1}}}}}}})&amp;lt;!--&lt;br /&gt;
 -- Error checks --&lt;br /&gt;
--&amp;gt;{{#ifexpr: ( {{{1|}}} &amp;gt; {{CURRENTYEAR}} ) OR ( {{{4|}}} &amp;gt; {{CURRENTYEAR}} ) OR ( {{{4|}}} &amp;gt; {{{1|}}} ) OR ( {{{1|}}} - {{{4|}}} &amp;gt; 150 )&lt;br /&gt;
 | &amp;amp;#32;{{error|invalid year}}{{main other|[[Category:Pages using age template with invalid date]]}}&lt;br /&gt;
}}{{#if:{{{5|}}}|{{#ifexpr: ( {{{2|}}} &amp;gt; 12 ) OR ( {{{2|}}} &amp;lt; 1 ) OR ( {{{5|}}} &amp;gt; 12 ) OR ( {{{5|}}} &amp;lt; 1 )&lt;br /&gt;
 | &amp;amp;#32;{{error|invalid month}}{{main other|[[Category:Pages using age template with invalid date]]}}|}}&lt;br /&gt;
}}{{#if:{{{6|}}}|{{#ifexpr: ( {{{3|}}} &amp;gt; 31 ) OR ( {{{3|}}} &amp;lt; 1 ) OR ( {{{6|}}} &amp;gt; 31 ) OR ( {{{6|}}} &amp;lt; 1 )&lt;br /&gt;
 | &amp;amp;#32;{{error|invalid day}}{{main other|[[Category:Pages using age template with invalid date]]}}|}}&lt;br /&gt;
}}&amp;lt;/includeonly&amp;gt;&amp;lt;noinclude&amp;gt;&lt;br /&gt;
{{documentation}}&lt;br /&gt;
&amp;lt;/noinclude&amp;gt;&lt;/div&gt;</summary>
		<author><name>Ian</name></author>	</entry>

	<entry>
		<id>https://chaldeanwiki.com/index.php?title=List_of_Chaldean_Catholic_Patriarchs_of_Babylon&amp;diff=3345</id>
		<title>List of Chaldean Catholic Patriarchs of Babylon</title>
		<link rel="alternate" type="text/html" href="https://chaldeanwiki.com/index.php?title=List_of_Chaldean_Catholic_Patriarchs_of_Babylon&amp;diff=3345"/>
				<updated>2015-05-19T01:29:19Z</updated>
		
		<summary type="html">&lt;p&gt;Ian: 1 revision imported&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;:''Patriarch of Babylon redirects here. For ''earlier'' [[Catholicos|Catholicoi]] of the [[Assyrian Church of the East]], see [[List of Patriarchs of the Church of the East]]. In particular and for legal line of accession prior to 1553, see [[List of Patriarchs of the Church of the East#List of Catholicoi of Seleucia-Ctesiphon and Patriarchs of the East until 1552|List of Catholicoi of Seleucia-Ctesiphon and Patriarchs of the East until 1552]]''&lt;br /&gt;
&lt;br /&gt;
This is a list of The '''Chaldean [[Catholicos]]-Patriarchs of Babylon''', the leaders of the [[Chaldean Catholic Church]] and one of the [[Patriarchs of the east]] of the [[Catholic Church]] starting from 1553 following the [[Schism of 1552]] which caused a break from the [[Assyrian Church]] and the subsequent founding of the ''Church of Assyria and Mosul'', later called the [[Chaldean Catholic Church]]. &lt;br /&gt;
&lt;br /&gt;
This list continues from the [[List of Patriarchs of the Church of the East]] that traces itself back from the Church founded in [[Assyria]] first mentioned in the 1st century under Simon Peter in 1 Peter 5:13 out of which grew the Church of the East. It was Catholicos Timothy I Al-Baghdadi incorporated the numerically dominant [[St. Thomas Christians]] under the Apostolic See of the Catholicos-Patriarch of Babylon, which is often wrongly attributed to St. Thomas as a result.&lt;br /&gt;
&lt;br /&gt;
The term ''Chaldean Catholic Patriarchs of Babylon'' is somewhat inaccurate in a geographical and historical context, as the Church was an offshoot of the Assyrian Church, and founded by priests from [[Upper Mesopotamia]], a region which had been [[Assyria]], rather than in southern Mesopotamia where Babylonia and Chaldea had once been.&lt;br /&gt;
&lt;br /&gt;
==Catholicoi and Patriarchs of Babylon for the Chaldeans==&lt;br /&gt;
===The Shimun line===&lt;br /&gt;
In 1553, Mar Yohannan Sulaqa, willing to separate from the [[List of Patriarchs of the Church of the East|Church of the East]]'s [[episcopal see|Patriarchal See]] of [[Alqosh]], an Assyrian town in the [[Assyrian homeland]] in northern Iraq, went to Rome asking for his appointment as Patriarch. He was consecrated in [[St. Peter's Basilica]] on 9 April 1553.&lt;br /&gt;
&lt;br /&gt;
* 90 [[Shimun VIII Yohannan Sulaqa]] (1553–1555) — fixed the See in [[Amid]]&lt;br /&gt;
* 91 [[Abdisho IV Maron]] (1555–1570) — moved the See near [[Siirt]]&lt;br /&gt;
* Vacant (1570–1572)&lt;br /&gt;
* 92 [[Yahballaha V]] (1572–1580)&lt;br /&gt;
* 93 [[Shimun IX Dinkha]] (1580–1600) — moved the See in [[Urmia]], was the last patriarch of the Shimun line to be formally recognized by Rome, reintroduced the hereditary succession&lt;br /&gt;
* 94 [[Shimun X Eliyah]] (1600–1638) — moved the See in [[Salmas]]&lt;br /&gt;
* 95 [[Shimun XI Eshuyow]] (1638–1656)&lt;br /&gt;
* 96 [[Shimun XII Yoalaha]] (1656–1662)&lt;br /&gt;
* 97 [[Shimun XIII Dinkha]] (1662–1692) — moved the See in [[Qochanis]], formally broke [[full communion]] with Rome in 1692, moved back to the Assyrian church, continued to be Patriarch of the [[Assyrian Church of the East]] until c. 1700, the Shimun line of successors continued in the Assyrian Church of the East&lt;br /&gt;
&lt;br /&gt;
===The Josephite line of Amid===&lt;br /&gt;
The Catholic Patriarchs based in [[Amid]], now [[Diyarbakır]] in southeastern [[Turkey]], began with Joseph I who in 1681 separated from the Assyrian Patriarchal See of Alqosh entering into full communion with Rome.&lt;br /&gt;
&lt;br /&gt;
* 98 [[Joseph I (Chaldean Patriarch)|Joseph I]] (1681–1696)&lt;br /&gt;
* 99 [[Joseph II (Chaldean Patriarch)|Joseph II Sliba Maruf]] (1696–1713)&lt;br /&gt;
* 100 [[Joseph III (Chaldean Patriarch)|Joseph III Timothy Maroge]] (1713–1757)&lt;br /&gt;
* 101 [[Joseph IV (Chaldean Patriarch)|Joseph IV Lazare Hindi]] (1757–1780)&lt;br /&gt;
* 102 [[Joseph V Augustine Hindi]] (1780–1827), patriarchal administrator from 1802, apostolic delegate for the Patriarchate of Babylon from 1812, never formally recognized as patriarch by Rome.&lt;br /&gt;
* Vacant (1827–1830)&lt;br /&gt;
&lt;br /&gt;
At the death of [[Augustine Hindi]], this See remained vacant until 1830 upon the merging of the Alqosh line in the person of [[Mar Yohannan Hormizd]] thus forming the modern [[Chaldean Catholic Church]].&lt;br /&gt;
&lt;br /&gt;
===The Alqosh/Mosul line===&lt;br /&gt;
The patriarchal See of [[Alqosh]], also known during the 17th and 18th centuries as Eliya line, was the oldest and largest patriarchal See of the Assyrian Church of the East, the only one existing patriarchal line before the 1553 split, and traces itself back from [[Thomas (Apostle)|St. Thomas]] in the 1st century. In 1610, Mar Eliyya VIII (1591–1617), Patriarch of the See of Alqosh, entered communion with the Catholic Church. Eliyya VIII, however died in 1617, and his successor quickly repudiated the union, returning to the Assyrian church.&lt;br /&gt;
&lt;br /&gt;
In 1778, with the death of Eliya XII (or XI) Denkha, the See of Alqosh divided between Mar Eliyya XIII Isho-Yab, who was not in communion with Rome, and his cousin Mar Yohannan VIII Eliyya Hormizd, who professed to be Catholic. In 1804, with the death of Eliyya Isho-Yab, Yohannan Hormizd remained the only incumbent of this ancient See. He was recognized patriarch by Rome only in 1830, after the merging of the see of Amid, thus forming the modern [[Chaldean Catholic Church]].&lt;br /&gt;
&lt;br /&gt;
* 103 [[Yohannan Hormizd|Yohannan VIII Hormizd]] (1830–1838) — moved the See in [[Mosul]]&lt;br /&gt;
* 104 [[Nicholas I Zaya]] (1839–1846)&lt;br /&gt;
* 105 [[Joseph Audo|Joseph VI Audo]] (1847–1878)&lt;br /&gt;
* 106 [[Eliya Abulyonan|Eliya XIV Abulyonan]] (1878–1894)&lt;br /&gt;
* 107 [[Audishu V Khayyath]] (1894–1899) (Georges Ebed-Iesu)&lt;br /&gt;
* 108 Yousef Emmanuel II Thomas (1900–1946)&lt;br /&gt;
* 109 [[Yousef VII Ghanima]] (1946–1958) — moved the See in [[Baghdad]]&lt;br /&gt;
* 110 [[Paul II Cheikho]] (1958–1989)&lt;br /&gt;
* 111 [[Raphael I Bidawid]] (1989–2003)&lt;br /&gt;
** [[Shlemon Warduni]] (2003) (Locum Tenens)&lt;br /&gt;
* 112 [[Emmanuel III Delly]] (2003–2012) (retired on 19 December 2012)&lt;br /&gt;
** [[Jacques Ishaq]] (2012–2013) (Locum Tenens)&lt;br /&gt;
* 113 [[Louis Raphaël I Sako]] (31 January 2013–present)&lt;br /&gt;
&lt;br /&gt;
==See also==&lt;br /&gt;
* [[Chaldean Catholic Patriarchate of Babylon]]&lt;br /&gt;
* [[List of Patriarchs of the Church of the East]]&lt;br /&gt;
*[[Assyrian Church of the East]]&lt;br /&gt;
*[[Assyria]]&lt;br /&gt;
*[[Assyrian people]]&lt;br /&gt;
&lt;br /&gt;
==External links==&lt;br /&gt;
* [http://www.gcatholic.org/dioceses/diocese/baby0.htm Chaldean Patriarchate of Babylon] by GCatholic.org&lt;br /&gt;
* Eastern Uniate Patriarchs from World Statesmen.org [http://www.worldstatesmen.org/Religious_Organizations.html#Uniate]&lt;br /&gt;
&lt;br /&gt;
{{Chaldean Catholic Hierarchy}}&lt;br /&gt;
&lt;br /&gt;
{{DEFAULTSORT:List Of Chaldean Catholic Patriarchs Of Babylon}}&lt;br /&gt;
[[Category:Church patriarchs|Babylon]]&lt;br /&gt;
[[Category:Chaldean Catholic Church]]&lt;br /&gt;
[[Category:Eastern Catholicism in Iraq]]&lt;br /&gt;
[[Category:Eastern Catholicism-related lists]]&lt;br /&gt;
[[Category:Christianity in Iraq]]&lt;br /&gt;
[[Category:Eastern Catholic dioceses|Chaldean Patriarchate of Babylon]]&lt;br /&gt;
[[Category:Iraq-related lists]]&lt;br /&gt;
[[Category:Lists of patriarchs|Chaldean]]&lt;/div&gt;</summary>
		<author><name>Ian</name></author>	</entry>

	<entry>
		<id>https://chaldeanwiki.com/index.php?title=List_of_Chaldean_villages&amp;diff=3347</id>
		<title>List of Chaldean villages</title>
		<link rel="alternate" type="text/html" href="https://chaldeanwiki.com/index.php?title=List_of_Chaldean_villages&amp;diff=3347"/>
				<updated>2015-05-19T01:29:19Z</updated>
		
		<summary type="html">&lt;p&gt;Ian: 1 revision imported&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;#REDIRECT [[List of Assyrian settlements]]&lt;/div&gt;</summary>
		<author><name>Ian</name></author>	</entry>

	<entry>
		<id>https://chaldeanwiki.com/index.php?title=Yousef_VI_Emmanuel_II_Thomas&amp;diff=3349</id>
		<title>Yousef VI Emmanuel II Thomas</title>
		<link rel="alternate" type="text/html" href="https://chaldeanwiki.com/index.php?title=Yousef_VI_Emmanuel_II_Thomas&amp;diff=3349"/>
				<updated>2015-05-19T01:29:19Z</updated>
		
		<summary type="html">&lt;p&gt;Ian: 1 revision imported&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{Infobox Patriarch&lt;br /&gt;
|image=José VI Manuel II.jpg&lt;br /&gt;
|name=Yousef VI Emmanuel II Thomas&lt;br /&gt;
|birth_name=Yousef Emmanuel Thomas&lt;br /&gt;
|church=[[Chaldean Catholic Church]]&lt;br /&gt;
|see=[[Patriarchial See of Babylon of the Chaldeans|Babylon of the Chaldeans]]&lt;br /&gt;
|patriarch_of=[[Patriarch of Babylon of the Chaldeans]]&lt;br /&gt;
|residence=[[Iraq]]&lt;br /&gt;
|enthroned=July 9, 1900&lt;br /&gt;
|ended=July 21, 1947&lt;br /&gt;
|predecessor=[[Audishu V Khayyath]]&lt;br /&gt;
|successor=[[Yousef VII Ghanima]]&lt;br /&gt;
|birth_date=August 8, 1852&lt;br /&gt;
|birth_place=[[Alqosh]]&lt;br /&gt;
|death_date={{BirthDeathAge||1852|8|8|1947|7|21}}&lt;br /&gt;
|death_place=&lt;br /&gt;
|ordination= July 10, 1879 ([[Priesthood (Catholic Church)|Priest]])&lt;br /&gt;
|consecration = July 24, 1892 ([[Bishop (Catholic Church)|Bishop]])&lt;br /&gt;
|consecrated_by=[[Eliya Abulyonan]]&lt;br /&gt;
}}&lt;br /&gt;
'''Mar Yousef VI Emmanuel II Thomas''' † was the patriarch of the [[Chaldean Catholic Church]] 1900–1947.&lt;br /&gt;
&lt;br /&gt;
==Life==&lt;br /&gt;
&lt;br /&gt;
He was born on August 8, 1852 in [[Alqosh]], studied in the Ghazir Seminary in [[Beirut]] and was ordained priest on July 10, 1879. On July 24, 1892 he was ordained Bishop of [[Seert]], now in [[Turkey]], by patriarch [[Eliya Abulyonan|Eliya XIV [XIII] Abulyonan]]. He was appointed Patriarch of the Chaldean Church on the July 9, 1900 and confirmed by the [[Holy See]] on December 17 of the same year. He served as patriarch till his death on July 21, 1947. He replaced Patriarch [[Audishu V Khayyath]] † and was followed by [[Yousef VII Ghanima]] †.&lt;br /&gt;
&lt;br /&gt;
==References==&lt;br /&gt;
* {{cite web|url=http://www.catholic-hierarchy.org/bishop/bthomg.html|title=Archbishop Yousef VI Emmanuel II Thomas|publisher=Catholic-Hierarchy.org|accessdate=2009-01-15}}{{Self-published source|date=April 2015}}&lt;br /&gt;
* David Wilmshurst, ''The Ecclesiastical Organisation of the Church of the East, 1318–1913'', Peeters Publishers, 2000 ISBN 90-429-0876-9, p. 744.&lt;br /&gt;
&lt;br /&gt;
{{s-start}}&lt;br /&gt;
{{s-rel|ca}}&lt;br /&gt;
{{s-bef|before=[[Audishu V Khayyath]]&amp;lt;br&amp;gt;(1894–1899)}}&lt;br /&gt;
{{s-ttl|title=[[List of Chaldean Catholic Patriarchs of Babylon|Patriarch of Babylon &amp;lt;br&amp;gt;of the Chaldean Catholic Church]]|years=1900–1946}} &lt;br /&gt;
{{s-aft|after=[[Yousef VII Ghanima]]&amp;lt;br&amp;gt; (1946–1958)}}&lt;br /&gt;
{{end}}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
{{Persondata &amp;lt;!-- Metadata: see [[Wikipedia:Persondata]]. --&amp;gt;&lt;br /&gt;
| NAME              = Thomas, Yousef 06&lt;br /&gt;
| ALTERNATIVE NAMES =&lt;br /&gt;
| SHORT DESCRIPTION = Chaldean Catholic Patriarch of Babylon&lt;br /&gt;
| DATE OF BIRTH     = August 8, 1852&lt;br /&gt;
| PLACE OF BIRTH    = [[Alqosh]]&lt;br /&gt;
| DATE OF DEATH     = July 21, 1947&lt;br /&gt;
| PLACE OF DEATH    =&lt;br /&gt;
}}&lt;br /&gt;
{{DEFAULTSORT:Thomas, Yousef 06}}&lt;br /&gt;
[[Category:1852 births]]&lt;br /&gt;
[[Category:1947 deaths]]&lt;br /&gt;
[[Category:Chaldean Catholic Patriarchs of Babylon]]&lt;br /&gt;
[[Category:Ottoman Assyrians]]&lt;br /&gt;
[[Category:People from Alqosh]]&lt;/div&gt;</summary>
		<author><name>Ian</name></author>	</entry>

	<entry>
		<id>https://chaldeanwiki.com/index.php?title=List_of_Chaldean_dioceses&amp;diff=3343</id>
		<title>List of Chaldean dioceses</title>
		<link rel="alternate" type="text/html" href="https://chaldeanwiki.com/index.php?title=List_of_Chaldean_dioceses&amp;diff=3343"/>
				<updated>2015-05-19T01:29:18Z</updated>
		
		<summary type="html">&lt;p&gt;Ian: 1 revision imported&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;#Redirect [[Chaldean_Catholic_Church#Hierarchy]]&lt;/div&gt;</summary>
		<author><name>Ian</name></author>	</entry>

	<entry>
		<id>https://chaldeanwiki.com/index.php?title=MediaWiki:Pagetitle&amp;diff=3341</id>
		<title>MediaWiki:Pagetitle</title>
		<link rel="alternate" type="text/html" href="https://chaldeanwiki.com/index.php?title=MediaWiki:Pagetitle&amp;diff=3341"/>
				<updated>2015-05-18T22:07:18Z</updated>
		
		<summary type="html">&lt;p&gt;Ian: Created page with &amp;quot;$1 - ChaldeanWiki&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;$1 - ChaldeanWiki&lt;/div&gt;</summary>
		<author><name>Ian</name></author>	</entry>

	<entry>
		<id>https://chaldeanwiki.com/index.php?title=MediaWiki:Aboutsite&amp;diff=3340</id>
		<title>MediaWiki:Aboutsite</title>
		<link rel="alternate" type="text/html" href="https://chaldeanwiki.com/index.php?title=MediaWiki:Aboutsite&amp;diff=3340"/>
				<updated>2015-05-18T22:07:00Z</updated>
		
		<summary type="html">&lt;p&gt;Ian: Created page with &amp;quot;About ChaldeanWiki&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;About ChaldeanWiki&lt;/div&gt;</summary>
		<author><name>Ian</name></author>	</entry>

	</feed>