<?xml version="1.0"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="en">
	<id>https://wiki.darkviper.au/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=Chaymeleon</id>
	<title>DarkViperAU - User contributions [en]</title>
	<link rel="self" type="application/atom+xml" href="https://wiki.darkviper.au/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=Chaymeleon"/>
	<link rel="alternate" type="text/html" href="https://wiki.darkviper.au/index.php/Special:Contributions/Chaymeleon"/>
	<updated>2026-09-07T19:40:43Z</updated>
	<subtitle>User contributions</subtitle>
	<generator>MediaWiki 1.45.3</generator>
	<entry>
		<id>https://wiki.darkviper.au/index.php?title=Module:Infobox_iceberg&amp;diff=25</id>
		<title>Module:Infobox iceberg</title>
		<link rel="alternate" type="text/html" href="https://wiki.darkviper.au/index.php?title=Module:Infobox_iceberg&amp;diff=25"/>
		<updated>2026-06-19T13:33:56Z</updated>

		<summary type="html">&lt;p&gt;Chaymeleon: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;local p = {}&lt;br /&gt;
&lt;br /&gt;
local COLOR_BORDER      = &#039;#3d6e85&#039;&lt;br /&gt;
local COLOR_HEADER_BG   = &#039;#102a38&#039;&lt;br /&gt;
local COLOR_HEADER_TEXT = &#039;#ffffff&#039;&lt;br /&gt;
local COLOR_LABEL_BG    = &#039;#1d4f66&#039;&lt;br /&gt;
local COLOR_LABEL_TEXT  = &#039;#ffffff&#039;&lt;br /&gt;
local COLOR_ACCENT      = &#039;#1d4f66&#039;&lt;br /&gt;
&lt;br /&gt;
local function addRow(tbl, label, value)&lt;br /&gt;
    if value and value ~= &#039;&#039; then&lt;br /&gt;
        local row = tbl:tag(&#039;tr&#039;)&lt;br /&gt;
        row:tag(&#039;th&#039;)&lt;br /&gt;
            :css(&#039;background&#039;, COLOR_LABEL_BG)&lt;br /&gt;
            :css(&#039;color&#039;, COLOR_LABEL_TEXT)&lt;br /&gt;
            :css(&#039;text-align&#039;, &#039;left&#039;)&lt;br /&gt;
            :css(&#039;padding&#039;, &#039;3px 6px&#039;)&lt;br /&gt;
            :css(&#039;width&#039;, &#039;35%&#039;)&lt;br /&gt;
            :wikitext(label)&lt;br /&gt;
        row:tag(&#039;td&#039;)&lt;br /&gt;
            :css(&#039;padding&#039;, &#039;3px 6px&#039;)&lt;br /&gt;
            :wikitext(value)&lt;br /&gt;
    end&lt;br /&gt;
end&lt;br /&gt;
&lt;br /&gt;
function p.main(frame)&lt;br /&gt;
    local args = frame:getParent() and frame:getParent().args or frame.args&lt;br /&gt;
&lt;br /&gt;
    local name = args.name&lt;br /&gt;
    if not name or name == &#039;&#039; then&lt;br /&gt;
        name = mw.title.getCurrentTitle().text&lt;br /&gt;
    end&lt;br /&gt;
    local image    = args.image&lt;br /&gt;
    local imgwidth = args.imgwidth&lt;br /&gt;
    if not imgwidth or imgwidth == &#039;&#039; then&lt;br /&gt;
        imgwidth = &#039;250px&#039;&lt;br /&gt;
    end&lt;br /&gt;
    local caption   = args.caption&lt;br /&gt;
    local iceberg   = args.iceberg&lt;br /&gt;
    local level     = args.level&lt;br /&gt;
    local itype     = args.type&lt;br /&gt;
    local timeframe = args.timeframe&lt;br /&gt;
    local status    = args.status&lt;br /&gt;
    local source    = args.source&lt;br /&gt;
    local related   = args.related&lt;br /&gt;
    local summary   = args.summary&lt;br /&gt;
    local category  = args.category&lt;br /&gt;
&lt;br /&gt;
    local root = mw.html.create(&#039;table&#039;)&lt;br /&gt;
        :addClass(&#039;infobox iceberg-infobox&#039;)&lt;br /&gt;
        :css(&#039;width&#039;, &#039;300px&#039;)&lt;br /&gt;
        :css(&#039;max-width&#039;, &#039;100%&#039;)&lt;br /&gt;
        :css(&#039;border&#039;, &#039;1px solid &#039; .. COLOR_BORDER)&lt;br /&gt;
        :css(&#039;border-radius&#039;, &#039;2px&#039;)&lt;br /&gt;
        :css(&#039;font-size&#039;, &#039;90%&#039;)&lt;br /&gt;
        :css(&#039;line-height&#039;, &#039;1.4em&#039;)&lt;br /&gt;
        :css(&#039;float&#039;, &#039;right&#039;)&lt;br /&gt;
        :css(&#039;clear&#039;, &#039;right&#039;)&lt;br /&gt;
        :css(&#039;margin&#039;, &#039;0 0 1em 1em&#039;)&lt;br /&gt;
&lt;br /&gt;
    root:tag(&#039;tr&#039;):tag(&#039;th&#039;)&lt;br /&gt;
        :attr(&#039;colspan&#039;, &#039;2&#039;)&lt;br /&gt;
        :css(&#039;background&#039;, COLOR_HEADER_BG)&lt;br /&gt;
        :css(&#039;color&#039;, COLOR_HEADER_TEXT)&lt;br /&gt;
        :css(&#039;text-align&#039;, &#039;center&#039;)&lt;br /&gt;
        :css(&#039;font-size&#039;, &#039;120%&#039;)&lt;br /&gt;
        :css(&#039;padding&#039;, &#039;6px&#039;)&lt;br /&gt;
        :wikitext(name)&lt;br /&gt;
&lt;br /&gt;
    if image and image ~= &#039;&#039; then&lt;br /&gt;
        local imgWikitext = string.format(&#039;[[File:%s|%s|alt=%s]]&#039;, image, imgwidth, name)&lt;br /&gt;
        root:tag(&#039;tr&#039;):tag(&#039;td&#039;)&lt;br /&gt;
            :attr(&#039;colspan&#039;, &#039;2&#039;)&lt;br /&gt;
            :css(&#039;text-align&#039;, &#039;center&#039;)&lt;br /&gt;
            :css(&#039;padding&#039;, &#039;4px&#039;)&lt;br /&gt;
            :wikitext(imgWikitext)&lt;br /&gt;
    end&lt;br /&gt;
&lt;br /&gt;
    if caption and caption ~= &#039;&#039; then&lt;br /&gt;
        root:tag(&#039;tr&#039;):tag(&#039;td&#039;)&lt;br /&gt;
            :attr(&#039;colspan&#039;, &#039;2&#039;)&lt;br /&gt;
            :css(&#039;text-align&#039;, &#039;center&#039;)&lt;br /&gt;
            :css(&#039;font-size&#039;, &#039;85%&#039;)&lt;br /&gt;
            :css(&#039;font-style&#039;, &#039;italic&#039;)&lt;br /&gt;
            :css(&#039;padding&#039;, &#039;2px 6px&#039;)&lt;br /&gt;
            :css(&#039;opacity&#039;, &#039;0.8&#039;)&lt;br /&gt;
            :wikitext(caption)&lt;br /&gt;
    end&lt;br /&gt;
&lt;br /&gt;
    addRow(root, &#039;Iceberg&#039;, iceberg)&lt;br /&gt;
    addRow(root, &#039;Level&#039;, level)&lt;br /&gt;
    addRow(root, &#039;Type&#039;, itype)&lt;br /&gt;
    addRow(root, &#039;Timeframe&#039;, timeframe)&lt;br /&gt;
    addRow(root, &#039;Status&#039;, status)&lt;br /&gt;
    addRow(root, &#039;Source&#039;, source)&lt;br /&gt;
    addRow(root, &#039;Related&#039;, related)&lt;br /&gt;
&lt;br /&gt;
    if summary and summary ~= &#039;&#039; then&lt;br /&gt;
        root:tag(&#039;tr&#039;):tag(&#039;td&#039;)&lt;br /&gt;
            :attr(&#039;colspan&#039;, &#039;2&#039;)&lt;br /&gt;
            :css(&#039;border-left&#039;, &#039;3px solid &#039; .. COLOR_ACCENT)&lt;br /&gt;
            :css(&#039;font-size&#039;, &#039;85%&#039;)&lt;br /&gt;
            :css(&#039;font-style&#039;, &#039;italic&#039;)&lt;br /&gt;
            :css(&#039;padding&#039;, &#039;5px 6px&#039;)&lt;br /&gt;
            :wikitext(summary)&lt;br /&gt;
    end&lt;br /&gt;
&lt;br /&gt;
    local out = tostring(root)&lt;br /&gt;
    if category and category ~= &#039;&#039; then&lt;br /&gt;
        out = out .. string.format(&#039;[[Category:%s]]&#039;, category)&lt;br /&gt;
    end&lt;br /&gt;
    return out&lt;br /&gt;
end&lt;br /&gt;
&lt;br /&gt;
return p&lt;/div&gt;</summary>
		<author><name>Chaymeleon</name></author>
	</entry>
	<entry>
		<id>https://wiki.darkviper.au/index.php?title=$1,000_donation_scam&amp;diff=24</id>
		<title>$1,000 donation scam</title>
		<link rel="alternate" type="text/html" href="https://wiki.darkviper.au/index.php?title=$1,000_donation_scam&amp;diff=24"/>
		<updated>2026-06-19T13:29:36Z</updated>

		<summary type="html">&lt;p&gt;Chaymeleon: Claude example&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{Infobox iceberg&lt;br /&gt;
| name      = The $1000 Donation Scam&lt;br /&gt;
| iceberg   = &lt;br /&gt;
| level     = &lt;br /&gt;
| type      = &lt;br /&gt;
| timeframe = &lt;br /&gt;
| status    = &lt;br /&gt;
| source    = Rambles video, &amp;quot;The $1000 Donation Scam&amp;quot;&lt;br /&gt;
| related   = No Fake Donations Policy&lt;br /&gt;
| summary   = A story DarkViperAU has retold on stream about two separate $1,000 donations he received. One came from a minor using a parent&#039;s card and was charged back. The other, despite heavy suspicion, turned out to be real.&lt;br /&gt;
| category  = Iceberg entries&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;The $1000 Donation Scam&#039;&#039;&#039; is a story DarkViperAU has retold multiple times on stream and in his Rambles videos, about receiving two separate $1,000 donations within a short span of each other. Only one of them turned out to be genuine.&lt;br /&gt;
&lt;br /&gt;
== Background ==&lt;br /&gt;
DarkViperAU has long enforced a strict no fake donations policy on his channel. The policy exists because of a recurring type of troll who would change their display name to resemble a real donation alert and type messages like &amp;quot;I&#039;m donating $5, best of luck streamer,&amp;quot; before being banned. Because of this history, any unfamiliar viewer announcing they wanted to donate was treated with immediate suspicion.&lt;br /&gt;
&lt;br /&gt;
== The first donation ==&lt;br /&gt;
While DarkViperAU was streaming a 100% completion run of &#039;&#039;GTA V&#039;&#039;, an unfamiliar viewer entered chat and said they wanted to give him money. Assuming it was another fake donation troll, especially since the viewer did not appear to be following the stream&#039;s content, he banned them on the spot.&lt;br /&gt;
&lt;br /&gt;
About fifteen seconds later, a genuine $1,000 donation came through from that same account. DarkViperAU unbanned the user but remained highly skeptical, since he had never seen them before and doubted they were actually watching. The donor offered to send more, which he declined.&lt;br /&gt;
&lt;br /&gt;
Several viewers reportedly tracked the donor to other streamers&#039; channels, where the same account handed out smaller donations of $100 to $500 across multiple streams. On one of those streams, the broadcaster invited the donor into a voice call. A clip of the call circulated afterward revealing the donor to be a young child, who was overheard apologizing repeatedly once a parent discovered what had happened.&lt;br /&gt;
&lt;br /&gt;
As expected, the donation was charged back roughly a week later. DarkViperAU returned the money without contest, noting it had not been given to him willingly and that keeping it would have made the situation a scam on his own end as well.&lt;br /&gt;
&lt;br /&gt;
== The second donation ==&lt;br /&gt;
About an hour and a half after resolving the chargeback, DarkViperAU received a second $1,000 donation. Given what had just happened, he assumed it was another fake or stolen donation and questioned the sender directly. The donor insisted the payment was real and offered to provide PayPal confirmation. The account&#039;s follow age was only a few days old, which did little to ease his suspicion.&lt;br /&gt;
&lt;br /&gt;
The donor described themselves as around 19 to 20 years old, said they made money reselling items on Amazon, and said they simply enjoyed his content. Despite remaining wary, no chargeback followed. The donor returned to the channel a handful of times afterward, and DarkViperAU later apologized for having been so skeptical toward them, an apology the donor accepted without issue.&lt;br /&gt;
&lt;br /&gt;
== See also ==&lt;br /&gt;
* [[No Fake Donations Policy]]&lt;/div&gt;</summary>
		<author><name>Chaymeleon</name></author>
	</entry>
	<entry>
		<id>https://wiki.darkviper.au/index.php?title=Template_talk:Infobox_iceberg&amp;diff=23</id>
		<title>Template talk:Infobox iceberg</title>
		<link rel="alternate" type="text/html" href="https://wiki.darkviper.au/index.php?title=Template_talk:Infobox_iceberg&amp;diff=23"/>
		<updated>2026-06-19T13:06:34Z</updated>

		<summary type="html">&lt;p&gt;Chaymeleon: /* Just a starter */ new section&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== Just a starter ==&lt;br /&gt;
&lt;br /&gt;
I&#039;ve put this here just as a starter, I don&#039;t know if it will fit at all but we gotta start somewhere. [[User:Chaymeleon|Chaymeleon]] ([[User talk:Chaymeleon|talk]]) 13:06, 19 June 2026 (UTC)&lt;/div&gt;</summary>
		<author><name>Chaymeleon</name></author>
	</entry>
	<entry>
		<id>https://wiki.darkviper.au/index.php?title=Template:Infobox_iceberg&amp;diff=22</id>
		<title>Template:Infobox iceberg</title>
		<link rel="alternate" type="text/html" href="https://wiki.darkviper.au/index.php?title=Template:Infobox_iceberg&amp;diff=22"/>
		<updated>2026-06-19T13:05:16Z</updated>

		<summary type="html">&lt;p&gt;Chaymeleon: Created page with &amp;quot;{{#invoke:Infobox iceberg|main}}&amp;lt;noinclude&amp;gt; == Usage == Add this to the very top of an iceberg entry page:  &amp;lt;pre&amp;gt; {{Infobox iceberg | name      =  | image     =  | imgwidth  = 250px | caption   =  | iceberg   =  | level     =  | type      =  | timeframe =  | status    =  | source    =  | related   =  | summary   =  | category  =  }} &amp;lt;/pre&amp;gt;  === Filled example === &amp;lt;pre&amp;gt; {{Infobox iceberg | name      = The Lost VOD | image     = Lost vod thumbnail.png | caption   = Screens...&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{#invoke:Infobox iceberg|main}}&amp;lt;noinclude&amp;gt;&lt;br /&gt;
== Usage ==&lt;br /&gt;
Add this to the very top of an iceberg entry page:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
{{Infobox iceberg&lt;br /&gt;
| name      = &lt;br /&gt;
| image     = &lt;br /&gt;
| imgwidth  = 250px&lt;br /&gt;
| caption   = &lt;br /&gt;
| iceberg   = &lt;br /&gt;
| level     = &lt;br /&gt;
| type      = &lt;br /&gt;
| timeframe = &lt;br /&gt;
| status    = &lt;br /&gt;
| source    = &lt;br /&gt;
| related   = &lt;br /&gt;
| summary   = &lt;br /&gt;
| category  = &lt;br /&gt;
}}&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== Filled example ===&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
{{Infobox iceberg&lt;br /&gt;
| name      = The Lost VOD&lt;br /&gt;
| image     = Lost vod thumbnail.png&lt;br /&gt;
| caption   = Screenshot from the original broadcast&lt;br /&gt;
| iceberg   = DarkViperAU Iceberg&lt;br /&gt;
| level     = Level 2&lt;br /&gt;
| type      = Video / Rumor&lt;br /&gt;
| timeframe = 2014&lt;br /&gt;
| status    = Unconfirmed&lt;br /&gt;
| source    = Forum thread, archived stream chat&lt;br /&gt;
| related   = The Deleted Channel&lt;br /&gt;
| summary   = A stream VOD said to have been taken down shortly after airing, referenced by long-time viewers but never re-uploaded.&lt;br /&gt;
| category  = Iceberg entries&lt;br /&gt;
}}&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
This template is a thin wrapper around [[Module:Infobox iceberg]], which does all the actual rendering.&lt;br /&gt;
&lt;br /&gt;
[[Category:Infobox templates]]&lt;br /&gt;
&amp;lt;/noinclude&amp;gt;&lt;/div&gt;</summary>
		<author><name>Chaymeleon</name></author>
	</entry>
	<entry>
		<id>https://wiki.darkviper.au/index.php?title=Module:Infobox_iceberg&amp;diff=21</id>
		<title>Module:Infobox iceberg</title>
		<link rel="alternate" type="text/html" href="https://wiki.darkviper.au/index.php?title=Module:Infobox_iceberg&amp;diff=21"/>
		<updated>2026-06-19T13:04:18Z</updated>

		<summary type="html">&lt;p&gt;Chaymeleon: Created page with &amp;quot;local p = {}   local function addRow(tbl, label, value)     if value and value ~= &amp;#039;&amp;#039; then         local row = tbl:tag(&amp;#039;tr&amp;#039;)         row:tag(&amp;#039;th&amp;#039;)             :css(&amp;#039;background&amp;#039;, &amp;#039;#1d4f66&amp;#039;)             :css(&amp;#039;color&amp;#039;, &amp;#039;#fff&amp;#039;)             :css(&amp;#039;text-align&amp;#039;, &amp;#039;left&amp;#039;)             :css(&amp;#039;padding&amp;#039;, &amp;#039;3px&amp;#039;)             :wikitext(label)         row:tag(&amp;#039;td&amp;#039;)             :css(&amp;#039;background&amp;#039;, &amp;#039;#fff&amp;#039;)             :css(&amp;#039;padding&amp;#039;, &amp;#039;3px&amp;#039;)             :wikitext(value)     end end   function p....&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;local p = {}&lt;br /&gt;
 &lt;br /&gt;
local function addRow(tbl, label, value)&lt;br /&gt;
    if value and value ~= &#039;&#039; then&lt;br /&gt;
        local row = tbl:tag(&#039;tr&#039;)&lt;br /&gt;
        row:tag(&#039;th&#039;)&lt;br /&gt;
            :css(&#039;background&#039;, &#039;#1d4f66&#039;)&lt;br /&gt;
            :css(&#039;color&#039;, &#039;#fff&#039;)&lt;br /&gt;
            :css(&#039;text-align&#039;, &#039;left&#039;)&lt;br /&gt;
            :css(&#039;padding&#039;, &#039;3px&#039;)&lt;br /&gt;
            :wikitext(label)&lt;br /&gt;
        row:tag(&#039;td&#039;)&lt;br /&gt;
            :css(&#039;background&#039;, &#039;#fff&#039;)&lt;br /&gt;
            :css(&#039;padding&#039;, &#039;3px&#039;)&lt;br /&gt;
            :wikitext(value)&lt;br /&gt;
    end&lt;br /&gt;
end&lt;br /&gt;
 &lt;br /&gt;
function p.main(frame)&lt;br /&gt;
    local args = frame:getParent() and frame:getParent().args or frame.args&lt;br /&gt;
 &lt;br /&gt;
    local name      = args.name&lt;br /&gt;
    if not name or name == &#039;&#039; then&lt;br /&gt;
        name = mw.title.getCurrentTitle().text&lt;br /&gt;
    end&lt;br /&gt;
    local image     = args.image&lt;br /&gt;
    local imgwidth  = args.imgwidth&lt;br /&gt;
    if not imgwidth or imgwidth == &#039;&#039; then&lt;br /&gt;
        imgwidth = &#039;250px&#039;&lt;br /&gt;
    end&lt;br /&gt;
    local caption   = args.caption&lt;br /&gt;
    local iceberg   = args.iceberg&lt;br /&gt;
    local level     = args.level&lt;br /&gt;
    local itype     = args.type&lt;br /&gt;
    local timeframe = args.timeframe&lt;br /&gt;
    local status    = args.status&lt;br /&gt;
    local source    = args.source&lt;br /&gt;
    local related   = args.related&lt;br /&gt;
    local summary   = args.summary&lt;br /&gt;
    local category  = args.category&lt;br /&gt;
 &lt;br /&gt;
    local root = mw.html.create(&#039;table&#039;)&lt;br /&gt;
        :addClass(&#039;infobox iceberg-infobox&#039;)&lt;br /&gt;
        :css(&#039;width&#039;, &#039;300px&#039;)&lt;br /&gt;
        :css(&#039;border&#039;, &#039;1px solid #2c5f7c&#039;)&lt;br /&gt;
        :css(&#039;background&#039;, &#039;#f4f9fb&#039;)&lt;br /&gt;
        :css(&#039;font-size&#039;, &#039;90%&#039;)&lt;br /&gt;
        :css(&#039;line-height&#039;, &#039;1.4em&#039;)&lt;br /&gt;
 &lt;br /&gt;
    root:tag(&#039;tr&#039;):tag(&#039;th&#039;)&lt;br /&gt;
        :attr(&#039;colspan&#039;, &#039;2&#039;)&lt;br /&gt;
        :css(&#039;background&#039;, &#039;#102a38&#039;)&lt;br /&gt;
        :css(&#039;color&#039;, &#039;#fff&#039;)&lt;br /&gt;
        :css(&#039;text-align&#039;, &#039;center&#039;)&lt;br /&gt;
        :css(&#039;font-size&#039;, &#039;120%&#039;)&lt;br /&gt;
        :css(&#039;padding&#039;, &#039;6px&#039;)&lt;br /&gt;
        :wikitext(name)&lt;br /&gt;
 &lt;br /&gt;
    if image and image ~= &#039;&#039; then&lt;br /&gt;
        local imgWikitext = string.format(&#039;[[File:%s|%s|alt=%s]]&#039;, image, imgwidth, name)&lt;br /&gt;
        root:tag(&#039;tr&#039;):tag(&#039;td&#039;)&lt;br /&gt;
            :attr(&#039;colspan&#039;, &#039;2&#039;)&lt;br /&gt;
            :css(&#039;text-align&#039;, &#039;center&#039;)&lt;br /&gt;
            :css(&#039;padding&#039;, &#039;4px&#039;)&lt;br /&gt;
            :css(&#039;background&#039;, &#039;#fff&#039;)&lt;br /&gt;
            :wikitext(imgWikitext)&lt;br /&gt;
    end&lt;br /&gt;
 &lt;br /&gt;
    if caption and caption ~= &#039;&#039; then&lt;br /&gt;
        root:tag(&#039;tr&#039;):tag(&#039;td&#039;)&lt;br /&gt;
            :attr(&#039;colspan&#039;, &#039;2&#039;)&lt;br /&gt;
            :css(&#039;text-align&#039;, &#039;center&#039;)&lt;br /&gt;
            :css(&#039;font-size&#039;, &#039;85%&#039;)&lt;br /&gt;
            :css(&#039;font-style&#039;, &#039;italic&#039;)&lt;br /&gt;
            :css(&#039;padding&#039;, &#039;2px 4px&#039;)&lt;br /&gt;
            :css(&#039;background&#039;, &#039;#fff&#039;)&lt;br /&gt;
            :wikitext(caption)&lt;br /&gt;
    end&lt;br /&gt;
 &lt;br /&gt;
    addRow(root, &#039;Iceberg&#039;, iceberg)&lt;br /&gt;
    addRow(root, &#039;Level&#039;, level)&lt;br /&gt;
    addRow(root, &#039;Type&#039;, itype)&lt;br /&gt;
    addRow(root, &#039;Timeframe&#039;, timeframe)&lt;br /&gt;
    addRow(root, &#039;Status&#039;, status)&lt;br /&gt;
    addRow(root, &#039;Source&#039;, source)&lt;br /&gt;
    addRow(root, &#039;Related&#039;, related)&lt;br /&gt;
 &lt;br /&gt;
    if summary and summary ~= &#039;&#039; then&lt;br /&gt;
        root:tag(&#039;tr&#039;):tag(&#039;td&#039;)&lt;br /&gt;
            :attr(&#039;colspan&#039;, &#039;2&#039;)&lt;br /&gt;
            :css(&#039;background&#039;, &#039;#e6f1f6&#039;)&lt;br /&gt;
            :css(&#039;font-size&#039;, &#039;85%&#039;)&lt;br /&gt;
            :css(&#039;padding&#039;, &#039;5px&#039;)&lt;br /&gt;
            :wikitext(summary)&lt;br /&gt;
    end&lt;br /&gt;
 &lt;br /&gt;
    local out = tostring(root)&lt;br /&gt;
    if category and category ~= &#039;&#039; then&lt;br /&gt;
        out = out .. string.format(&#039;[[Category:%s]]&#039;, category)&lt;br /&gt;
    end&lt;br /&gt;
    return out&lt;br /&gt;
end&lt;br /&gt;
 &lt;br /&gt;
return p&lt;/div&gt;</summary>
		<author><name>Chaymeleon</name></author>
	</entry>
	<entry>
		<id>https://wiki.darkviper.au/index.php?title=Template:Category&amp;diff=20</id>
		<title>Template:Category</title>
		<link rel="alternate" type="text/html" href="https://wiki.darkviper.au/index.php?title=Template:Category&amp;diff=20"/>
		<updated>2026-05-29T13:20:26Z</updated>

		<summary type="html">&lt;p&gt;Chaymeleon: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;includeonly&amp;gt;&#039;&#039;&#039;This is an overview of pages that are part of this category. New pages can be added to this category by adding&#039;&#039;&#039; &amp;lt;nowiki&amp;gt;[[Category:Memes]]&amp;lt;/nowiki&amp;gt; &#039;&#039;&#039;at the bottom of a page.&#039;&#039;&#039;&amp;lt;/includeonly&amp;gt;&lt;br /&gt;
Add this template to every category by adding &amp;lt;nowiki&amp;gt;{{Catagory}}&amp;lt;/nowiki&amp;gt; at the top of the category page, like [[:Category:Memes]].&lt;br /&gt;
&lt;br /&gt;
== Template example ==&lt;br /&gt;
&#039;&#039;&#039;This is an overview of pages that are part of this category. New pages can be added to this category by adding&#039;&#039;&#039; &amp;lt;nowiki&amp;gt;[[Category:Memes]]&amp;lt;/nowiki&amp;gt; &#039;&#039;&#039;at the bottom of a page.&#039;&#039;&#039;&lt;/div&gt;</summary>
		<author><name>Chaymeleon</name></author>
	</entry>
	<entry>
		<id>https://wiki.darkviper.au/index.php?title=Template:Category&amp;diff=19</id>
		<title>Template:Category</title>
		<link rel="alternate" type="text/html" href="https://wiki.darkviper.au/index.php?title=Template:Category&amp;diff=19"/>
		<updated>2026-05-29T13:16:51Z</updated>

		<summary type="html">&lt;p&gt;Chaymeleon: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;includeonly&amp;gt;&#039;&#039;&#039;This is an overview of pages that are part of this category. New pages can be added to this category by adding&#039;&#039;&#039; &amp;lt;syntaxhighlight lang=&amp;quot;wikitext&amp;quot;&amp;gt;[[Category:Memes]]&amp;lt;/syntaxhighlight&amp;gt; &#039;&#039;&#039;at the bottom of a page.&#039;&#039;&#039;&amp;lt;/includeonly&amp;gt;&lt;/div&gt;</summary>
		<author><name>Chaymeleon</name></author>
	</entry>
	<entry>
		<id>https://wiki.darkviper.au/index.php?title=14_pages&amp;diff=18</id>
		<title>14 pages</title>
		<link rel="alternate" type="text/html" href="https://wiki.darkviper.au/index.php?title=14_pages&amp;diff=18"/>
		<updated>2026-05-29T13:14:51Z</updated>

		<summary type="html">&lt;p&gt;Chaymeleon: Created page with &amp;quot;&amp;#039;&amp;#039;&amp;#039;14 pages&amp;#039;&amp;#039;&amp;#039; is a meme that originates from ...  Category:Memes&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&#039;&#039;&#039;14 pages&#039;&#039;&#039; is a meme that originates from ...&lt;br /&gt;
&lt;br /&gt;
[[Category:Memes]]&lt;/div&gt;</summary>
		<author><name>Chaymeleon</name></author>
	</entry>
	<entry>
		<id>https://wiki.darkviper.au/index.php?title=Category:Memes&amp;diff=17</id>
		<title>Category:Memes</title>
		<link rel="alternate" type="text/html" href="https://wiki.darkviper.au/index.php?title=Category:Memes&amp;diff=17"/>
		<updated>2026-05-29T13:14:07Z</updated>

		<summary type="html">&lt;p&gt;Chaymeleon: Created page with &amp;quot;{{Category}}&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{Category}}&lt;/div&gt;</summary>
		<author><name>Chaymeleon</name></author>
	</entry>
	<entry>
		<id>https://wiki.darkviper.au/index.php?title=Template:Category&amp;diff=16</id>
		<title>Template:Category</title>
		<link rel="alternate" type="text/html" href="https://wiki.darkviper.au/index.php?title=Template:Category&amp;diff=16"/>
		<updated>2026-05-29T13:13:46Z</updated>

		<summary type="html">&lt;p&gt;Chaymeleon: Created page with &amp;quot;&amp;#039;&amp;#039;&amp;#039;This is an overview of pages that are part of this category.&amp;#039;&amp;#039;&amp;#039;&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&#039;&#039;&#039;This is an overview of pages that are part of this category.&#039;&#039;&#039;&lt;/div&gt;</summary>
		<author><name>Chaymeleon</name></author>
	</entry>
	<entry>
		<id>https://wiki.darkviper.au/index.php?title=Main_Page&amp;diff=15</id>
		<title>Main Page</title>
		<link rel="alternate" type="text/html" href="https://wiki.darkviper.au/index.php?title=Main_Page&amp;diff=15"/>
		<updated>2026-05-29T12:32:54Z</updated>

		<summary type="html">&lt;p&gt;Chaymeleon: this should work&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&#039;&#039;&#039;MediaWiki has been installed.&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Consult the [https://www.mediawiki.org/wiki/Special:MyLanguage/Help:Contents User&#039;s Guide] for information on using the wiki software.&lt;br /&gt;
&lt;br /&gt;
== Getting started ==&lt;br /&gt;
* [https://www.mediawiki.org/wiki/Special:MyLanguage/Manual:Configuration_settings Configuration settings list]&lt;br /&gt;
* [https://www.mediawiki.org/wiki/Special:MyLanguage/Manual:FAQ MediaWiki FAQ]&lt;br /&gt;
* [https://lists.wikimedia.org/postorius/lists/mediawiki-announce.lists.wikimedia.org/ MediaWiki release mailing list]&lt;br /&gt;
* [https://www.mediawiki.org/wiki/Special:MyLanguage/Localisation#Translation_resources Localise MediaWiki for your language]&lt;br /&gt;
* [https://www.mediawiki.org/wiki/Special:MyLanguage/Manual:Combating_spam Learn how to combat spam on your wiki]&lt;br /&gt;
[[File:Witch.png|thumb|Very dviper very witch]]&lt;br /&gt;
&amp;lt;div style=&amp;quot;text-align: right;&amp;quot;&amp;gt;&lt;br /&gt;
This is dviperWitch -&amp;gt;&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;/div&gt;</summary>
		<author><name>Chaymeleon</name></author>
	</entry>
	<entry>
		<id>https://wiki.darkviper.au/index.php?title=User:Chaymeleon&amp;diff=12</id>
		<title>User:Chaymeleon</title>
		<link rel="alternate" type="text/html" href="https://wiki.darkviper.au/index.php?title=User:Chaymeleon&amp;diff=12"/>
		<updated>2026-05-29T12:17:41Z</updated>

		<summary type="html">&lt;p&gt;Chaymeleon: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Chaymeleon, also known as Chay or Cayo, is a cutie&lt;br /&gt;
Test&lt;/div&gt;</summary>
		<author><name>Chaymeleon</name></author>
	</entry>
	<entry>
		<id>https://wiki.darkviper.au/index.php?title=User_talk:Regynate&amp;diff=10</id>
		<title>User talk:Regynate</title>
		<link rel="alternate" type="text/html" href="https://wiki.darkviper.au/index.php?title=User_talk:Regynate&amp;diff=10"/>
		<updated>2026-05-29T12:12:31Z</updated>

		<summary type="html">&lt;p&gt;Chaymeleon: Created page with &amp;quot;Hi regy welcome ~~~~&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Hi regy welcome [[User:Chaymeleon|Chaymeleon]] ([[User talk:Chaymeleon|talk]]) 12:12, 29 May 2026 (UTC)&lt;/div&gt;</summary>
		<author><name>Chaymeleon</name></author>
	</entry>
	<entry>
		<id>https://wiki.darkviper.au/index.php?title=User:Chaymeleon&amp;diff=4</id>
		<title>User:Chaymeleon</title>
		<link rel="alternate" type="text/html" href="https://wiki.darkviper.au/index.php?title=User:Chaymeleon&amp;diff=4"/>
		<updated>2026-05-29T11:59:42Z</updated>

		<summary type="html">&lt;p&gt;Chaymeleon: Created page with &amp;quot;Hello world&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Hello world&lt;/div&gt;</summary>
		<author><name>Chaymeleon</name></author>
	</entry>
</feed>