<?xml version="1.0"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="en">
	<id>https://thedartswiki.donthurry.com/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=TheDartsWikiSysop</id>
	<title>The Darts Wiki - User contributions [en]</title>
	<link rel="self" type="application/atom+xml" href="https://thedartswiki.donthurry.com/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=TheDartsWikiSysop"/>
	<link rel="alternate" type="text/html" href="https://thedartswiki.donthurry.com/index.php?title=Special:Contributions/TheDartsWikiSysop"/>
	<updated>2026-06-22T07:15:31Z</updated>
	<subtitle>User contributions</subtitle>
	<generator>MediaWiki 1.39.3</generator>
	<entry>
		<id>https://thedartswiki.donthurry.com/index.php?title=Hlist/styles.css&amp;diff=939</id>
		<title>Hlist/styles.css</title>
		<link rel="alternate" type="text/html" href="https://thedartswiki.donthurry.com/index.php?title=Hlist/styles.css&amp;diff=939"/>
		<updated>2023-04-25T20:15:09Z</updated>

		<summary type="html">&lt;p&gt;TheDartsWikiSysop: 1 revision imported&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;/* {{pp-protected|reason=match parent|small=yes}} */&lt;br /&gt;
/* &lt;br /&gt;
 * hlist styles are defined in core and Minerva and differ in Minerva. The&lt;br /&gt;
 * current definitions here (2023-01-01) are sufficient to override Minerva&lt;br /&gt;
 * without use of the hlist-separated class. The most problematic styles were&lt;br /&gt;
 * related to margin, padding, and the bullet. Check files listed at&lt;br /&gt;
 * [[MediaWiki talk:Common.css/to do#hlist-separated]]&lt;br /&gt;
 */&lt;br /&gt;
/*&lt;br /&gt;
 * TODO: When the majority of readership supports it (or some beautiful world&lt;br /&gt;
 * in which grade C support is above the minimum threshold), use :is()&lt;br /&gt;
 */&lt;br /&gt;
.hlist dl,&lt;br /&gt;
.hlist ol,&lt;br /&gt;
.hlist ul {&lt;br /&gt;
	margin: 0;&lt;br /&gt;
	padding: 0;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
/* Display list items inline */&lt;br /&gt;
.hlist dd,&lt;br /&gt;
.hlist dt,&lt;br /&gt;
.hlist li {&lt;br /&gt;
	/*&lt;br /&gt;
	 * don't trust the note that says margin doesn't work with inline&lt;br /&gt;
	 * removing margin: 0 makes dds have margins again&lt;br /&gt;
	 * We also want to reset margin-right in Minerva&lt;br /&gt;
	 */&lt;br /&gt;
	margin: 0; &lt;br /&gt;
	display: inline;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
/* Display requested top-level lists inline */&lt;br /&gt;
.hlist.inline,&lt;br /&gt;
.hlist.inline dl,&lt;br /&gt;
.hlist.inline ol,&lt;br /&gt;
.hlist.inline ul,&lt;br /&gt;
/* Display nested lists inline */&lt;br /&gt;
.hlist dl dl,&lt;br /&gt;
.hlist dl ol,&lt;br /&gt;
.hlist dl ul,&lt;br /&gt;
.hlist ol dl,&lt;br /&gt;
.hlist ol ol,&lt;br /&gt;
.hlist ol ul,&lt;br /&gt;
.hlist ul dl,&lt;br /&gt;
.hlist ul ol,&lt;br /&gt;
.hlist ul ul {&lt;br /&gt;
	display: inline;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
/* Hide empty list items */&lt;br /&gt;
.hlist .mw-empty-li {&lt;br /&gt;
	display: none;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
/* TODO: :not() can maybe be used here to remove the later rule. naive test&lt;br /&gt;
 * seems to work. more testing needed. like so:&lt;br /&gt;
 *.hlist dt:not(:last-child)::after {&lt;br /&gt;
 *	content: &amp;quot;: &amp;quot;;&lt;br /&gt;
 *}&lt;br /&gt;
 *.hlist dd:not(:last-child)::after,&lt;br /&gt;
 *.hlist li:not(:last-child)::after {&lt;br /&gt;
 *	content: &amp;quot; · &amp;quot;;&lt;br /&gt;
 *	font-weight: bold;&lt;br /&gt;
 *}&lt;br /&gt;
 */&lt;br /&gt;
/* Generate interpuncts */&lt;br /&gt;
.hlist dt::after {&lt;br /&gt;
	content: &amp;quot;: &amp;quot;;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
.hlist dd::after,&lt;br /&gt;
.hlist li::after {&lt;br /&gt;
	content: &amp;quot; · &amp;quot;;&lt;br /&gt;
	font-weight: bold;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
.hlist dd:last-child::after,&lt;br /&gt;
.hlist dt:last-child::after,&lt;br /&gt;
.hlist li:last-child::after {&lt;br /&gt;
	content: none;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
/* Add parentheses around nested lists */&lt;br /&gt;
.hlist dd dd:first-child::before,&lt;br /&gt;
.hlist dd dt:first-child::before,&lt;br /&gt;
.hlist dd li:first-child::before,&lt;br /&gt;
.hlist dt dd:first-child::before,&lt;br /&gt;
.hlist dt dt:first-child::before,&lt;br /&gt;
.hlist dt li:first-child::before,&lt;br /&gt;
.hlist li dd:first-child::before,&lt;br /&gt;
.hlist li dt:first-child::before,&lt;br /&gt;
.hlist li li:first-child::before {&lt;br /&gt;
	content: &amp;quot; (&amp;quot;;&lt;br /&gt;
	font-weight: normal;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
.hlist dd dd:last-child::after,&lt;br /&gt;
.hlist dd dt:last-child::after,&lt;br /&gt;
.hlist dd li:last-child::after,&lt;br /&gt;
.hlist dt dd:last-child::after,&lt;br /&gt;
.hlist dt dt:last-child::after,&lt;br /&gt;
.hlist dt li:last-child::after,&lt;br /&gt;
.hlist li dd:last-child::after,&lt;br /&gt;
.hlist li dt:last-child::after,&lt;br /&gt;
.hlist li li:last-child::after {&lt;br /&gt;
	content: &amp;quot;)&amp;quot;;&lt;br /&gt;
	font-weight: normal;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
/* Put ordinals in front of ordered list items */&lt;br /&gt;
.hlist ol {&lt;br /&gt;
	counter-reset: listitem;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
.hlist ol &amp;gt; li {&lt;br /&gt;
	counter-increment: listitem;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
.hlist ol &amp;gt; li::before {&lt;br /&gt;
	content: &amp;quot; &amp;quot; counter(listitem) &amp;quot;\a0&amp;quot;;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
.hlist dd ol &amp;gt; li:first-child::before,&lt;br /&gt;
.hlist dt ol &amp;gt; li:first-child::before,&lt;br /&gt;
.hlist li ol &amp;gt; li:first-child::before {&lt;br /&gt;
	content: &amp;quot; (&amp;quot; counter(listitem) &amp;quot;\a0&amp;quot;;&lt;br /&gt;
}&lt;/div&gt;</summary>
		<author><name>TheDartsWikiSysop</name></author>
	</entry>
	<entry>
		<id>https://thedartswiki.donthurry.com/index.php?title=Hidden_begin/styles.css&amp;diff=937</id>
		<title>Hidden begin/styles.css</title>
		<link rel="alternate" type="text/html" href="https://thedartswiki.donthurry.com/index.php?title=Hidden_begin/styles.css&amp;diff=937"/>
		<updated>2023-04-25T20:15:09Z</updated>

		<summary type="html">&lt;p&gt;TheDartsWikiSysop: 1 revision imported&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;/* {{pp-template}} */&lt;br /&gt;
.hidden-begin {&lt;br /&gt;
	box-sizing: border-box;&lt;br /&gt;
	width: 100%;&lt;br /&gt;
	padding: 5px;&lt;br /&gt;
	border: none;&lt;br /&gt;
	font-size: 95%;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
.hidden-title {&lt;br /&gt;
	font-weight: bold;&lt;br /&gt;
	line-height: 1.6;&lt;br /&gt;
	text-align: left;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
.hidden-content {&lt;br /&gt;
	text-align: left;&lt;br /&gt;
}&lt;/div&gt;</summary>
		<author><name>TheDartsWikiSysop</name></author>
	</entry>
	<entry>
		<id>https://thedartswiki.donthurry.com/index.php?title=2023_in_PDC_darts&amp;diff=935</id>
		<title>2023 in PDC darts</title>
		<link rel="alternate" type="text/html" href="https://thedartswiki.donthurry.com/index.php?title=2023_in_PDC_darts&amp;diff=935"/>
		<updated>2023-04-25T20:15:09Z</updated>

		<summary type="html">&lt;p&gt;TheDartsWikiSysop: 1 revision imported&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{Navbox&lt;br /&gt;
| name = 2023 in PDC darts&lt;br /&gt;
| title = 2023 in [[Professional Darts Corporation|PDC]] darts&lt;br /&gt;
| bodyclass = hlist&lt;br /&gt;
&lt;br /&gt;
| group1 = [[PDC Order of Merit|PDC OoM]] ranked&lt;br /&gt;
| list1 = {{Navbox|subgroup&lt;br /&gt;
| group1 = Premier events&lt;br /&gt;
| list1 = &lt;br /&gt;
* [[2023 PDC World Darts Championship|2023 World Darts Championship]]&lt;br /&gt;
* [[2023 UK Open|UK Open]]&lt;br /&gt;
* [[2023 World Matchplay|World Matchplay]] &lt;br /&gt;
* [[2023 World Grand Prix (darts)|World Grand Prix]]&lt;br /&gt;
* [[2023 European Championship (darts)|European Championship]]&lt;br /&gt;
* [[2023 Grand Slam of Darts|Grand Slam of Darts]]&lt;br /&gt;
* [[2023 Players Championship Finals|Players Championship Finals]]&lt;br /&gt;
* [[2024 PDC World Darts Championship|2024 World Darts Championship]]&lt;br /&gt;
&lt;br /&gt;
| group2 = [[2023 PDC Pro Tour|Pro Tour]]&lt;br /&gt;
| list2 = {{Navbox|subgroup&lt;br /&gt;
| group1 = European Tour&lt;br /&gt;
| list1 = &lt;br /&gt;
* [[2023 Baltic Sea Darts Open|Baltic Sea Darts Open]]&lt;br /&gt;
* [[2023 European Darts Open|European Darts Open]]&lt;br /&gt;
* [[2023 International Darts Open|International Darts Open]]&lt;br /&gt;
* [[2023 German Darts Grand Prix|German Darts Grand Prix]]&lt;br /&gt;
* [[2023 Austrian Darts Open|Austrian Darts Open]]&lt;br /&gt;
* [[2023 Dutch Darts Championship|Dutch Darts Championship]]&lt;br /&gt;
* [[2023 Belgian Darts Open|Belgian Darts Open]]&lt;br /&gt;
* [[2023 Czech Darts Open|Czech Darts Open]]&lt;br /&gt;
* [[2023 European Darts Grand Prix|European Darts Grand Prix]]&lt;br /&gt;
* [[2023 European Darts Matchplay|European Darts Matchplay]]&lt;br /&gt;
* [[2023 German Darts Open|German Darts Open]]&lt;br /&gt;
* [[2023 Hungarian Darts Trophy|Hungarian Darts Trophy]]&lt;br /&gt;
* [[2023 German Darts Championship|German Darts Championship]]&lt;br /&gt;
&lt;br /&gt;
| group2 = [[2023 PDC Players Championship series|Players Championships]]&lt;br /&gt;
| list2 = &lt;br /&gt;
* [[2023 PDC Players Championship series#Players Championship 1|1]]&lt;br /&gt;
* [[2023 PDC Players Championship series#Players Championship 2|2]]&lt;br /&gt;
* [[2023 PDC Players Championship series#Players Championship 3|3]]&lt;br /&gt;
* [[2023 PDC Players Championship series#Players Championship 4|4]]&lt;br /&gt;
* [[2023 PDC Players Championship series#Players Championship 5|5]]&lt;br /&gt;
* [[2023 PDC Players Championship series#Players Championship 6|6]]&lt;br /&gt;
* [[2023 PDC Players Championship series#Players Championship 7|7]]&lt;br /&gt;
* [[2023 PDC Players Championship series#Players Championship 8|8]]&lt;br /&gt;
* [[2023 PDC Players Championship series#Players Championship 9|9]]&lt;br /&gt;
* [[2023 PDC Players Championship series#Players Championship 10|10]]&lt;br /&gt;
* [[2023 PDC Players Championship series#Players Championship 11|11]]&lt;br /&gt;
* [[2023 PDC Players Championship series#Players Championship 12|12]]&lt;br /&gt;
* [[2023 PDC Players Championship series#Players Championship 13|13]]&lt;br /&gt;
* [[2023 PDC Players Championship series#Players Championship 14|14]]&lt;br /&gt;
* [[2023 PDC Players Championship series#Players Championship 15|15]]&lt;br /&gt;
* [[2023 PDC Players Championship series#Players Championship 16|16]]&lt;br /&gt;
* [[2023 PDC Players Championship series#Players Championship 17|17]]&lt;br /&gt;
* [[2023 PDC Players Championship series#Players Championship 18|18]]&lt;br /&gt;
* [[2023 PDC Players Championship series#Players Championship 19|19]]&lt;br /&gt;
* [[2023 PDC Players Championship series#Players Championship 20|20]]&lt;br /&gt;
* [[2023 PDC Players Championship series#Players Championship 21|21]]&lt;br /&gt;
* [[2023 PDC Players Championship series#Players Championship 22|22]]&lt;br /&gt;
* [[2023 PDC Players Championship series#Players Championship 23|23]]&lt;br /&gt;
* [[2023 PDC Players Championship series#Players Championship 24|24]]&lt;br /&gt;
* [[2023 PDC Players Championship series#Players Championship 25|25]]&lt;br /&gt;
* [[2023 PDC Players Championship series#Players Championship 26|26]]&lt;br /&gt;
* [[2023 PDC Players Championship series#Players Championship 27|27]]&lt;br /&gt;
* [[2023 PDC Players Championship series#Players Championship 28|28]]&lt;br /&gt;
* [[2023 PDC Players Championship series#Players Championship 29|29]]&lt;br /&gt;
* [[2023 PDC Players Championship series#Players Championship 30|30]]&lt;br /&gt;
}}}}&lt;br /&gt;
&lt;br /&gt;
|group2 = Non-ranked&lt;br /&gt;
|list2 = {{Navbox|subgroup&lt;br /&gt;
| group1 = Premier events&lt;br /&gt;
| list1 = &lt;br /&gt;
* [[2023 Masters (darts)|The Masters]]&lt;br /&gt;
* [[2023 Premier League Darts|Premier League]]&lt;br /&gt;
* [[2023 PDC World Cup of Darts|World Cup of Darts]]&lt;br /&gt;
* [[2023 World Series of Darts Finals |World Series of Darts Finals]]&lt;br /&gt;
&lt;br /&gt;
| group3 = [[2023 World Series of Darts|World Series]]&lt;br /&gt;
| list3 = &lt;br /&gt;
* [[2023 Bahrain Darts Masters|Bahrain Darts Masters]]&lt;br /&gt;
* [[2023 Nordic Darts Masters|Nordic Darts Masters]]&lt;br /&gt;
* [[2023 US Darts Masters|US Darts Masters]]&lt;br /&gt;
* [[2023 Poland Darts Masters|Poland Darts Masters]]&lt;br /&gt;
* [[2023 New Zealand Darts Masters|New Zealand Darts Masters]]&lt;br /&gt;
* [[2023 New South Wales Darts Masters|New South Wales Darts Masters]]&lt;br /&gt;
&lt;br /&gt;
| group4 = Other events&lt;br /&gt;
| list4 = &lt;br /&gt;
* [[2023 Women's World Matchplay|Women's World Matchplay]]&lt;br /&gt;
* [[2023 PDC World Youth Championship|World Youth Championship]]&lt;br /&gt;
* [[2023 PDC Challenge Tour series|Challenge Tour]]&lt;br /&gt;
* [[2023 PDC Development Tour series|Development Tour]]&lt;br /&gt;
* [[2023 PDC Women's Series|Women's Series]]&lt;br /&gt;
* [[2023 PDC Asian Tour series|PDC Asian Tour]]&lt;br /&gt;
* [[2023 DPA Tour series|DPA Tour]]&lt;br /&gt;
* [[2023 DPNZ Tour series|DPNZ Tour]]&lt;br /&gt;
* [[2023 PDC Nordic &amp;amp; Baltic ProTour series|Nordic &amp;amp; Baltic Tour]]&lt;br /&gt;
* [[2023 CDC Tour series|CDC Tour]]&lt;br /&gt;
* [[2023 African Continental Tour|African Continental Tour]]&lt;br /&gt;
* [[2023 PDC North American Championship|North American Championship]]&lt;br /&gt;
* [[2023 PDC Asian Championship|Asian Championship]]&lt;br /&gt;
&lt;br /&gt;
}}&lt;br /&gt;
|below = &lt;br /&gt;
{{align|left| « {{smaller|[[Template:2022 in PDC darts|2022]]}} }} {{align|right|{{smaller|[[Template:2024 in PDC darts|2024]]}} » }}&lt;br /&gt;
* [[List of players with a 2023 PDC Tour Card|List of Tour Card holders]]&lt;br /&gt;
&lt;br /&gt;
}}&amp;lt;noinclude&amp;gt;&lt;br /&gt;
[[Category:Darts navigational boxes]]&lt;br /&gt;
&amp;lt;/noinclude&amp;gt;&lt;/div&gt;</summary>
		<author><name>TheDartsWikiSysop</name></author>
	</entry>
	<entry>
		<id>https://thedartswiki.donthurry.com/index.php?title=48TeamBracket&amp;diff=933</id>
		<title>48TeamBracket</title>
		<link rel="alternate" type="text/html" href="https://thedartswiki.donthurry.com/index.php?title=48TeamBracket&amp;diff=933"/>
		<updated>2023-04-25T20:15:09Z</updated>

		<summary type="html">&lt;p&gt;TheDartsWikiSysop: 1 revision imported&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{#invoke:Build bracket|main&lt;br /&gt;
| rounds = 6&lt;br /&gt;
&lt;br /&gt;
| col1-matches = 4,7,10,13,16,19,22,25,28,31,34,37,40,43,46,49&lt;br /&gt;
| col2-matches = 3,6,9,12,15,18,21,24,27,30,33,36,39,42,45,48&lt;br /&gt;
| col3-matches = 4.5,10.5,16.5,22.5,28.5,34.5,40.5,46.5&lt;br /&gt;
| col4-matches = 7.5,19.5,31.5,43.5&lt;br /&gt;
| col5-matches = 13.5,37.5&lt;br /&gt;
| col6-matches = 25.5&lt;br /&gt;
&lt;br /&gt;
| col1-col2-paths = 4-3,7-6,10-9,13-12,16-15,19-18,22-21,25-24,28-27,31-30,34-33,37-36,40-39,43-42,46-45,49-48&lt;br /&gt;
| col2-col3-paths = (3,6)-4.5,(9,12)-10.5,(15,18)-16.5,(21,24)-22.5,(27,30)-28.5,(33,36)-34.5,(39,42)-40.5,(45,48)-46.5&lt;br /&gt;
| col3-col4-paths = (4.5,10.5)-7.5,(16.5,22.5)-19.5,(28.5,34.5)-31.5,(40.5,46.5)-43.5&lt;br /&gt;
| col4-col5-paths = (7.5,19.5)-13.5,(31.5,43.5)-37.5&lt;br /&gt;
| col5-col6-paths = (13.5,37.5)-25.5&lt;br /&gt;
&lt;br /&gt;
| RD1 = First round&lt;br /&gt;
| RD2 = Second round&lt;br /&gt;
| RD3 = Third round&lt;br /&gt;
}}{{#invoke:Team bracket tracking|tracking}}&amp;lt;noinclude&amp;gt;{{documentation}}&lt;br /&gt;
&amp;lt;/noinclude&amp;gt;&lt;/div&gt;</summary>
		<author><name>TheDartsWikiSysop</name></author>
	</entry>
	<entry>
		<id>https://thedartswiki.donthurry.com/index.php?title=PDCFlag&amp;diff=931</id>
		<title>PDCFlag</title>
		<link rel="alternate" type="text/html" href="https://thedartswiki.donthurry.com/index.php?title=PDCFlag&amp;diff=931"/>
		<updated>2023-04-25T20:15:08Z</updated>

		<summary type="html">&lt;p&gt;TheDartsWikiSysop: 1 revision imported&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;noinclude&amp;gt;&amp;lt;!--The nowiki that follows is needed because of parser bug T18700--&amp;gt;&amp;lt;/noinclude&amp;gt;&amp;lt;templatestyles src=&amp;quot;Nobold/styles.css&amp;quot;/&amp;gt;&amp;lt;includeonly&amp;gt;&amp;lt;nowiki/&amp;gt;&amp;lt;span class=&amp;quot;nowrap&amp;quot;&amp;gt;{{#if: {{{b|}}}|'''}}{{#if: {{{1|}}}|{{#invoke:DartsRankings|playerLink|PDC Rankings|{{{1|}}}|flag={{#switch: {{{org}}}|DPA=AUS}} }}|{{flagicon|{{{flag|}}}}}&amp;amp;nbsp;}}{{#if: {{{1|}}}|{{#if:{{{txt|}}}|&amp;amp;nbsp;}}}}{{{txt|}}}{{#if: {{{b|}}}|'''}}&amp;lt;span class=&amp;quot;nobold&amp;quot;&amp;gt;&amp;lt;small style=&amp;quot;color:dimgray;&amp;quot;&amp;gt; {{{avg|}}}&amp;lt;/small&amp;gt;&amp;lt;/span&amp;gt;&amp;lt;/span&amp;gt;&amp;lt;/includeonly&amp;gt;&amp;lt;noinclude&amp;gt;{{documentation}}&amp;lt;/noinclude&amp;gt;&lt;/div&gt;</summary>
		<author><name>TheDartsWikiSysop</name></author>
	</entry>
	<entry>
		<id>https://thedartswiki.donthurry.com/index.php?title=Infobox_individual_darts_tournament&amp;diff=929</id>
		<title>Infobox individual darts tournament</title>
		<link rel="alternate" type="text/html" href="https://thedartswiki.donthurry.com/index.php?title=Infobox_individual_darts_tournament&amp;diff=929"/>
		<updated>2023-04-25T20:15:08Z</updated>

		<summary type="html">&lt;p&gt;TheDartsWikiSysop: 1 revision imported&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{infobox&lt;br /&gt;
| above = {{{name|{{{tournament_name}}}}}}&lt;br /&gt;
| image = {{#invoke:InfoboxImage|InfoboxImage|image={{{image|}}}|size={{{image_size|{{{imagesize|}}}}}}|sizedefault=frameless|alt={{{alt|}}}}}&lt;br /&gt;
&lt;br /&gt;
| headerstyle = background: lightgreen&lt;br /&gt;
&lt;br /&gt;
| header1 = Tournament information&lt;br /&gt;
&lt;br /&gt;
| label2 = Dates&lt;br /&gt;
| data2 = {{{dates&amp;lt;includeonly&amp;gt;|&amp;lt;/includeonly&amp;gt;}}} &lt;br /&gt;
&lt;br /&gt;
| label3 = Venue&lt;br /&gt;
| data3 = {{{venue&amp;lt;includeonly&amp;gt;|&amp;lt;/includeonly&amp;gt;}}}&lt;br /&gt;
&lt;br /&gt;
| label4 = Location&lt;br /&gt;
| data4 = {{{location&amp;lt;includeonly&amp;gt;|&amp;lt;/includeonly&amp;gt;}}}&lt;br /&gt;
&lt;br /&gt;
| label5 = Country&lt;br /&gt;
| data5 = {{{country&amp;lt;includeonly&amp;gt;|&amp;lt;/includeonly&amp;gt;}}}&lt;br /&gt;
&lt;br /&gt;
| label6 = Established&lt;br /&gt;
| data6 = {{{establishment&amp;lt;includeonly&amp;gt;|&amp;lt;/includeonly&amp;gt;}}}&lt;br /&gt;
&lt;br /&gt;
| label7 = {{#if:{{{organization|}}}|Organization(s)|Organisation(s)}}&lt;br /&gt;
| data7 = {{#if:{{{organization|}}}|{{{organization}}}|{{{organisation&amp;lt;includeonly&amp;gt;|&amp;lt;/includeonly&amp;gt;}}}}}&lt;br /&gt;
&lt;br /&gt;
| label8 = Format&lt;br /&gt;
| data8 = {{{format&amp;lt;includeonly&amp;gt;|&amp;lt;/includeonly&amp;gt;}}} &lt;br /&gt;
&lt;br /&gt;
| label9 = Prize fund&lt;br /&gt;
| data9 = {{{prize_fund&amp;lt;includeonly&amp;gt;|&amp;lt;/includeonly&amp;gt;}}} &lt;br /&gt;
&lt;br /&gt;
| label10 = Winner's share&lt;br /&gt;
| data10 = {{{winners_share&amp;lt;includeonly&amp;gt;|&amp;lt;/includeonly&amp;gt;}}} &lt;br /&gt;
&lt;br /&gt;
| label11 = [[Nine-dart finish]]&lt;br /&gt;
| data11 = {{{nine_dart&amp;lt;includeonly&amp;gt;|&amp;lt;/includeonly&amp;gt;}}} &lt;br /&gt;
&lt;br /&gt;
| label12 = High checkout&lt;br /&gt;
| data12 = {{{high_checkout&amp;lt;includeonly&amp;gt;|&amp;lt;/includeonly&amp;gt;}}}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
| header13 = {{#if:{{{winner&amp;lt;includeonly&amp;gt;|&amp;lt;/includeonly&amp;gt;}}}|Champion(s)}}&lt;br /&gt;
| data14 = {{{winner&amp;lt;includeonly&amp;gt;|&amp;lt;/includeonly&amp;gt;}}} &lt;br /&gt;
&lt;br /&gt;
| below = {{#if: {{{prev&amp;lt;includeonly&amp;gt;|&amp;lt;/includeonly&amp;gt;}}}{{{next&amp;lt;includeonly&amp;gt;|&amp;lt;/includeonly&amp;gt;}}} &lt;br /&gt;
|&amp;lt;table style=&amp;quot;width:100%&amp;quot;&amp;gt;&amp;lt;tr&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;text-align:left&amp;quot;&amp;gt;{{#if: {{{prev&amp;lt;includeonly&amp;gt;|&amp;lt;/includeonly&amp;gt;}}}|«{{{prev}}}}}&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;td style=&amp;quot;text-align:right&amp;quot;&amp;gt;{{#if:{{{next&amp;lt;includeonly&amp;gt;|&amp;lt;/includeonly&amp;gt;}}}|{{{next}}}»}}&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&amp;lt;/table&amp;gt;}}&lt;br /&gt;
}}&amp;lt;includeonly&amp;gt;{{short description|Darts tournament|2=noreplace}}&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>TheDartsWikiSysop</name></author>
	</entry>
	<entry>
		<id>https://thedartswiki.donthurry.com/index.php?title=Country_data_Northern_Ireland&amp;diff=927</id>
		<title>Country data Northern Ireland</title>
		<link rel="alternate" type="text/html" href="https://thedartswiki.donthurry.com/index.php?title=Country_data_Northern_Ireland&amp;diff=927"/>
		<updated>2023-04-25T20:15:08Z</updated>

		<summary type="html">&lt;p&gt;TheDartsWikiSysop: 1 revision imported&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{ {{{1&amp;lt;noinclude&amp;gt;|country showdata&amp;lt;/noinclude&amp;gt;}}}&lt;br /&gt;
| alias = Northern Ireland&lt;br /&gt;
| flag alias = Ulster Banner.svg&lt;br /&gt;
| flag alias-assembly = Flag of Northern Ireland Assembly.svg&lt;br /&gt;
| flag alias-saltire = St Patrick's saltire.svg&lt;br /&gt;
| flag alias-union = Flag of the United Kingdom.svg &lt;br /&gt;
| size = {{{size|}}}&lt;br /&gt;
| name = {{{name|}}}&lt;br /&gt;
| altlink = {{{altlink|}}}&lt;br /&gt;
| variant = {{{variant|}}}&lt;br /&gt;
&amp;lt;noinclude&amp;gt;&lt;br /&gt;
| var1 = assembly&lt;br /&gt;
| var2 = saltire&lt;br /&gt;
| var3 = union&lt;br /&gt;
| redir1 = NIR&lt;br /&gt;
| related1 = Ulster&lt;br /&gt;
&amp;lt;/noinclude&amp;gt;&lt;br /&gt;
}}&lt;/div&gt;</summary>
		<author><name>TheDartsWikiSysop</name></author>
	</entry>
	<entry>
		<id>https://thedartswiki.donthurry.com/index.php?title=IsIPAddress&amp;diff=925</id>
		<title>IsIPAddress</title>
		<link rel="alternate" type="text/html" href="https://thedartswiki.donthurry.com/index.php?title=IsIPAddress&amp;diff=925"/>
		<updated>2023-04-25T20:15:08Z</updated>

		<summary type="html">&lt;p&gt;TheDartsWikiSysop: 1 revision imported&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{&amp;lt;includeonly&amp;gt;safesubst:&amp;lt;/includeonly&amp;gt;#invoke:IPAddress|isIp|1={{{1|}}}}}&amp;lt;noinclude&amp;gt;&lt;br /&gt;
{{documentation}}&lt;br /&gt;
&amp;lt;/noinclude&amp;gt;&lt;/div&gt;</summary>
		<author><name>TheDartsWikiSysop</name></author>
	</entry>
	<entry>
		<id>https://thedartswiki.donthurry.com/index.php?title=Sortname&amp;diff=923</id>
		<title>Sortname</title>
		<link rel="alternate" type="text/html" href="https://thedartswiki.donthurry.com/index.php?title=Sortname&amp;diff=923"/>
		<updated>2023-04-25T20:15:07Z</updated>

		<summary type="html">&lt;p&gt;TheDartsWikiSysop: 1 revision imported&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;includeonly&amp;gt;&amp;lt;&amp;lt;/includeonly&amp;gt;&amp;lt;noinclude&amp;gt;&amp;amp;lt;&amp;lt;/noinclude&amp;gt;span data-sort-value=&amp;quot;{{#invoke:sortkey|encode|{{#if:{{{4|{{{sort|}}}}}} | {{{4|{{{sort}}}}}} | {{{2|{{{last}}}}}}, {{{1|{{{first}}}}}} }}}}&amp;quot;&amp;gt;{{#if:{{{nolink|{{#ifeq:{{{1|{{{first|}}}}}}{{{2|{{{last|}}}}}}{{{dab|}}}|-|1}}}}}&lt;br /&gt;
| &amp;lt;span class=&amp;quot;vcard&amp;quot;&amp;gt;&amp;lt;span class=&amp;quot;fn&amp;quot;&amp;gt;{{{1|{{{first}}}}}} {{{2|{{{last}}}}}}&amp;lt;/span&amp;gt;&amp;lt;/span&amp;gt;&lt;br /&gt;
| &amp;lt;span class=&amp;quot;vcard&amp;quot;&amp;gt;&amp;lt;span class=&amp;quot;fn&amp;quot;&amp;gt;[[{{#if:{{{3|{{{link|}}}}}}&lt;br /&gt;
  | {{{3|{{{link}}}}}}|{{{1|{{{first}}}}}} {{{2|{{{last}}}}}} {{#if:{{{dab&amp;lt;includeonly&amp;gt;|&amp;lt;/includeonly&amp;gt;}}}&lt;br /&gt;
    | ({{{dab}}})&lt;br /&gt;
    }}&lt;br /&gt;
  }}|{{{1|{{{first}}}}}} {{{2|{{{last}}}}}}]]&amp;lt;/span&amp;gt;&amp;lt;/span&amp;gt;&lt;br /&gt;
}}&amp;lt;includeonly&amp;gt;&amp;lt;&amp;lt;/includeonly&amp;gt;&amp;lt;noinclude&amp;gt;&amp;amp;lt;&amp;lt;/noinclude&amp;gt;/span&amp;gt;{{#ifeq:{{NAMESPACE}}|{{ns:0}}|[[Category:Articles with hCards]]}}&amp;lt;noinclude&amp;gt;{{documentation}}&amp;lt;/noinclude&amp;gt;&lt;/div&gt;</summary>
		<author><name>TheDartsWikiSysop</name></author>
	</entry>
	<entry>
		<id>https://thedartswiki.donthurry.com/index.php?title=Country_data_Wales&amp;diff=921</id>
		<title>Country data Wales</title>
		<link rel="alternate" type="text/html" href="https://thedartswiki.donthurry.com/index.php?title=Country_data_Wales&amp;diff=921"/>
		<updated>2023-04-25T20:15:07Z</updated>

		<summary type="html">&lt;p&gt;TheDartsWikiSysop: 1 revision imported&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{ {{{1&amp;lt;noinclude&amp;gt;|country showdata&amp;lt;/noinclude&amp;gt;}}}&lt;br /&gt;
| alias = Wales&lt;br /&gt;
| flag alias = Flag of Wales (1959–present).svg&lt;br /&gt;
| flag alias-1807 = Flag of Wales (1807–1953).svg&lt;br /&gt;
| flag alias-1953 = Flag of Wales (1953–1959).svg&lt;br /&gt;
| flag alias-1959 = Flag of Wales (1959).svg&lt;br /&gt;
| size = {{{size|}}}&lt;br /&gt;
| name = {{{name|}}}&lt;br /&gt;
| variant = {{{variant|}}}&lt;br /&gt;
| altlink = {{{altlink|}}}&lt;br /&gt;
&amp;lt;noinclude&amp;gt;&lt;br /&gt;
| var1 = 1807&lt;br /&gt;
| var2 = 1953&lt;br /&gt;
| var3 = 1959&lt;br /&gt;
| redir1 = WAL&lt;br /&gt;
&amp;lt;/noinclude&amp;gt;&lt;br /&gt;
}}&lt;/div&gt;</summary>
		<author><name>TheDartsWikiSysop</name></author>
	</entry>
	<entry>
		<id>https://thedartswiki.donthurry.com/index.php?title=Country_data_Peru&amp;diff=919</id>
		<title>Country data Peru</title>
		<link rel="alternate" type="text/html" href="https://thedartswiki.donthurry.com/index.php?title=Country_data_Peru&amp;diff=919"/>
		<updated>2023-04-25T20:15:07Z</updated>

		<summary type="html">&lt;p&gt;TheDartsWikiSysop: 1 revision imported&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{ {{{1&amp;lt;noinclude&amp;gt;|country showdata&amp;lt;/noinclude&amp;gt;}}}&lt;br /&gt;
| alias = Peru&lt;br /&gt;
| flag alias = Flag of Peru.svg&lt;br /&gt;
| flag alias-spain = Flag of Cross of Burgundy.svg&lt;br /&gt;
| flag alias-1820 = Flag of Tacna Regiment (1820 proposal).svg&lt;br /&gt;
| flag alias-1821 = Flag of Peru (1821-1822).svg&lt;br /&gt;
| flag alias-1822 = Flag of Peru (1822).svg&lt;br /&gt;
| flag alias-1822a = Flag of Peru (1822-1825).svg&lt;br /&gt;
| flag alias-1825 = Flag of Peru (1825–1884).svg&lt;br /&gt;
| flag alias-confederation = Flag of the Peru-Bolivian Confederation.svg&lt;br /&gt;
| flag alias-north = Flag of Peru (1825–1884).svg&lt;br /&gt;
| link alias-north = North Peru&lt;br /&gt;
| flag alias-south = Flag of South Peru.svg&lt;br /&gt;
| link alias-south = South Peru&lt;br /&gt;
| flag alias-1884 = Flag of Peru (1884–1950).svg&lt;br /&gt;
| flag alias-state = Flag of Peru (state).svg&lt;br /&gt;
| flag alias-football = Flag of Peru (state).svg&lt;br /&gt;
| flag alias-army = Flag of the Peruvian Army.svg&lt;br /&gt;
| link alias-army = Peruvian Army&lt;br /&gt;
| flag alias-naval= Flag of the Peruvian Navy.svg&lt;br /&gt;
| link alias-naval = Peruvian Navy&lt;br /&gt;
| flag alias-air force= Flag of the Peruvian Air Force.svg&lt;br /&gt;
| link alias-air force = Peruvian Air Force&lt;br /&gt;
| flag alias-military=Flag of Peru (war).svg&lt;br /&gt;
| link alias-military=Peruvian Armed Forces&lt;br /&gt;
| flag alias-marines = Flag of the Peruvian Navy.svg&lt;br /&gt;
| link alias-marines = Peruvian Naval Infantry&lt;br /&gt;
| flag alias-navy = Flag of Peru (state).svg&lt;br /&gt;
| link alias-navy = Peruvian Navy&lt;br /&gt;
| size = {{{size|}}}&lt;br /&gt;
| name = {{{name|}}}&lt;br /&gt;
| altvar = {{{altvar|}}}&lt;br /&gt;
| altlink = {{{altlink|}}}&lt;br /&gt;
| variant = {{{variant|}}}&lt;br /&gt;
&amp;lt;noinclude&amp;gt;&lt;br /&gt;
| var1 = spain&lt;br /&gt;
| var2 = 1820&lt;br /&gt;
| var3 = 1821&lt;br /&gt;
| var4 = 1822&lt;br /&gt;
| var5 = 1822a&lt;br /&gt;
| var6 = 1825&lt;br /&gt;
| var7 = confederation&lt;br /&gt;
| var8 = north&lt;br /&gt;
| var9 = south&lt;br /&gt;
| var10 = 1884&lt;br /&gt;
| var11 = state&lt;br /&gt;
| var12 = football&lt;br /&gt;
| redir1 = PER&lt;br /&gt;
&amp;lt;/noinclude&amp;gt;&lt;br /&gt;
}}&lt;/div&gt;</summary>
		<author><name>TheDartsWikiSysop</name></author>
	</entry>
	<entry>
		<id>https://thedartswiki.donthurry.com/index.php?title=Country_data_Ireland&amp;diff=917</id>
		<title>Country data Ireland</title>
		<link rel="alternate" type="text/html" href="https://thedartswiki.donthurry.com/index.php?title=Country_data_Ireland&amp;diff=917"/>
		<updated>2023-04-25T20:15:07Z</updated>

		<summary type="html">&lt;p&gt;TheDartsWikiSysop: 1 revision imported&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{ {{{1&amp;lt;noinclude&amp;gt;|country showdata&amp;lt;/noinclude&amp;gt;}}}&lt;br /&gt;
| hatnote = {{Hatnote|This template contains data that applies to the [[Ireland|entire island]]. For the [[Republic of Ireland|sovereign state]], see [[Template:Country data Republic of Ireland]].}}&lt;br /&gt;
| alias = {{#if:{{{altvar|}}}|Ireland|{{#if:{{{variant|}}}|Ireland|Republic of Ireland}}}}&lt;br /&gt;
| shortname alias = Ireland&lt;br /&gt;
| flag alias = Flag of Ireland.svg&lt;br /&gt;
| flag alias-1783 = Saint Patrick's Saltire.svg&lt;br /&gt;
| flag alias-4prov = Four Provinces Flag.svg&lt;br /&gt;
| flag alias-green = Green harp flag of Ireland.svg&lt;br /&gt;
| flag alias-football = Saint Patrick's Saltire.svg&lt;br /&gt;
| link alias-football = Ireland national football team (1882–1950)&lt;br /&gt;
| flag alias-hockey = Flag of Ireland hockey team.svg&lt;br /&gt;
| flag alias-field hockey = Flag of Ireland hockey team.svg&lt;br /&gt;
| {{#ifeq:{{{altlink}}}|A national rugby union team|link alias-rugby union|empty}} = Ireland Wolfhounds&lt;br /&gt;
| flag alias-rugby union = IRFU flag.svg&lt;br /&gt;
| flag alias-rugby sevens = IRFU flag.svg&lt;br /&gt;
| flag alias-rugby league = Four Provinces Flag.svg&lt;br /&gt;
| flag alias-cricket = Cricket Ireland flag.svg&lt;br /&gt;
| link alias-cricket = Ireland {{{mw|}}} {{{age|}}} cricket team&lt;br /&gt;
| flag alias-quidditch = Flag of Quidditch Ireland.svg&lt;br /&gt;
| flag alias-air force=Flag of the Irish Air Corps.svg&lt;br /&gt;
| link alias-air force=Irish Air Corps&lt;br /&gt;
| link alias-naval=Irish Naval Service&lt;br /&gt;
| flag alias-military=Flag_of_the_Irish_Defence_Forces.svg&lt;br /&gt;
| link alias-military=Irish Defence Forces&lt;br /&gt;
| flag alias-army=Flag of the Irish Defence Forces.svg&lt;br /&gt;
| link alias-army=Irish Army&lt;br /&gt;
| flag alias-navy=Irish Naval Service Colour.svg&lt;br /&gt;
| link alias-navy=Irish Naval Service&lt;br /&gt;
| flag alias-coast guard=Coast Guard Flag (Ireland).svg&lt;br /&gt;
| link alias-coast guard=Irish Coast Guard&lt;br /&gt;
| size = {{{size|}}}&lt;br /&gt;
| name = {{{name|}}}&lt;br /&gt;
| altlink = {{{altlink|}}}&lt;br /&gt;
| altvar = {{{altvar|}}}&lt;br /&gt;
| variant = {{{variant|}}}&lt;br /&gt;
&amp;lt;noinclude&amp;gt;&lt;br /&gt;
| var1 = 1783&lt;br /&gt;
| var2 = green&lt;br /&gt;
| var3 = 4prov&lt;br /&gt;
| var4 = football&lt;br /&gt;
| var5 = rugby union&lt;br /&gt;
| var6 = hockey&lt;br /&gt;
| var7 = cricket&lt;br /&gt;
| var8 = quidditch&lt;br /&gt;
| redir1 = IRE&lt;br /&gt;
| redir2 = EIR&lt;br /&gt;
| related1 = Republic of Ireland&lt;br /&gt;
| related2 = Southern Ireland&lt;br /&gt;
| related3 = Kingdom of Ireland&lt;br /&gt;
| related4 = Lordship of Ireland&lt;br /&gt;
| related5 = Irish Free State&lt;br /&gt;
&amp;lt;/noinclude&amp;gt;&lt;br /&gt;
}}&lt;/div&gt;</summary>
		<author><name>TheDartsWikiSysop</name></author>
	</entry>
	<entry>
		<id>https://thedartswiki.donthurry.com/index.php?title=Align&amp;diff=915</id>
		<title>Align</title>
		<link rel="alternate" type="text/html" href="https://thedartswiki.donthurry.com/index.php?title=Align&amp;diff=915"/>
		<updated>2023-04-25T20:15:07Z</updated>

		<summary type="html">&lt;p&gt;TheDartsWikiSysop: 1 revision imported&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{#switch: {{lc:{{{1|center}}}}}&lt;br /&gt;
|left = &amp;lt;div style=&amp;quot;float: left;{{#if: {{{style|}}} | {{{style}}};}}&amp;quot;&amp;gt;{{{2}}}&amp;lt;/div&amp;gt;&lt;br /&gt;
|right = &amp;lt;div style=&amp;quot;float: right;{{#if: {{{style|}}} | {{{style}}};}}&amp;quot;&amp;gt;{{{2}}}&amp;lt;/div&amp;gt;&lt;br /&gt;
|center = {{center|{{{2}}}|style={{{style|}}} }}&lt;br /&gt;
|#default = Error in [[Template:Align]]: the alignment setting &amp;quot;{{{1}}}&amp;quot; is invalid.&lt;br /&gt;
}}&amp;lt;noinclude&amp;gt;&lt;br /&gt;
{{documentation}}&lt;br /&gt;
&amp;lt;/noinclude&amp;gt;&lt;/div&gt;</summary>
		<author><name>TheDartsWikiSysop</name></author>
	</entry>
	<entry>
		<id>https://thedartswiki.donthurry.com/index.php?title=Blist&amp;diff=913</id>
		<title>Blist</title>
		<link rel="alternate" type="text/html" href="https://thedartswiki.donthurry.com/index.php?title=Blist&amp;diff=913"/>
		<updated>2023-04-25T20:15:07Z</updated>

		<summary type="html">&lt;p&gt;TheDartsWikiSysop: 1 revision imported&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;#REDIRECT [[Template:Bulleted list]]&amp;lt;noinclude&amp;gt;{{pp-template|small=yes}}&amp;lt;/noinclude&amp;gt;&lt;/div&gt;</summary>
		<author><name>TheDartsWikiSysop</name></author>
	</entry>
	<entry>
		<id>https://thedartswiki.donthurry.com/index.php?title=AfC_submission/comments&amp;diff=911</id>
		<title>AfC submission/comments</title>
		<link rel="alternate" type="text/html" href="https://thedartswiki.donthurry.com/index.php?title=AfC_submission/comments&amp;diff=911"/>
		<updated>2023-04-25T20:15:07Z</updated>

		<summary type="html">&lt;p&gt;TheDartsWikiSysop: 1 revision imported&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{safesubst:&amp;lt;noinclude /&amp;gt;#switch:{{safesubst:&amp;lt;noinclude /&amp;gt;lc:{{{1}}}}}&lt;br /&gt;
|neo = [[Wikipedia:Wikipedia_is_not_a_dictionary#Neologisms|Neologisms]] are not considered suitable for Wikipedia unless they receive substantial use and press coverage; this requires strong evidence in [[Wikipedia:Identifying reliable sources|independent, reliable, published sources]]. Links to sites specifically intended to promote the neologism itself do not establish its notability.&amp;lt;includeonly&amp;gt;{{safesubst:&amp;lt;noinclude /&amp;gt;#ifeq:{{{cat|}}}|no||[[Category:AfC submissions declined as a neologism]]}}&amp;lt;/includeonly&amp;gt;&lt;br /&gt;
|web = This submission's references do not show that the subject [[Wikipedia:Notability|qualifies for a Wikipedia article]]—that is, they do not show ''significant'' coverage (not just passing mentions) about the subject in ''published'', [[Wikipedia:Identifying reliable sources|''reliable'']], [[Wikipedia:No_original_research#Secondary|''secondary'']] sources that are ''[[Wikipedia:Identifying and using independent sources|independent]]'' of the subject (see the [[Wikipedia:Notability (web)|guidelines on the notability of websites]]). Before any resubmission, additional references meeting these criteria should be added (see [[Help:Referencing for beginners|technical help]] and learn about [[Wikipedia:Common sourcing mistakes (notability)|mistakes to avoid]] when addressing this issue). If no additional references exist, the subject is not suitable for Wikipedia.&amp;lt;includeonly&amp;gt;{{safesubst:&amp;lt;noinclude /&amp;gt;#ifeq:{{{cat|}}}|no||[[Category:AfC submissions declined as non-notable web content]]}}&amp;lt;/includeonly&amp;gt;&lt;br /&gt;
|prof&lt;br /&gt;
|academic = This draft's references do not show that the subject [[Wikipedia:NBIO|qualifies for a Wikipedia article]]. In summary, the draft needs to &amp;lt;br /&amp;gt;	&lt;br /&gt;
* meet any of the ''[[WP:NPROF|eight academic-specific criteria]]''&lt;br /&gt;
* '''or''' cite multiple [[Wikipedia:Identifying reliable sources|''reliable'']], [[Wikipedia:No original research#Secondary|''secondary'']] sources ''[[Wikipedia:Identifying and using independent sources|independent]]'' of the subject, which cover the subject in some depth &amp;lt;br /&amp;gt;&lt;br /&gt;
Make sure your draft meets one of the criteria above before resubmitting. Learn about [[Wikipedia:Common sourcing mistakes (notability)|mistakes to avoid]] when addressing this issue. If the subject does not meet any of the criteria, it is not suitable for Wikipedia.&amp;lt;includeonly&amp;gt;{{safesubst:&amp;lt;noinclude /&amp;gt;#ifeq:{{{cat|}}}|no||[[Category:AfC submissions declined as a non-notable academic topic]]}}&amp;lt;/includeonly&amp;gt;&lt;br /&gt;
|sport&lt;br /&gt;
|athlete = This submission's references do not show that the subject [[Wikipedia:Notability|qualifies for a Wikipedia article]]—that is, they do not show ''significant'' coverage (not just passing mentions) about the subject in ''published'', [[Wikipedia:Identifying reliable sources|''reliable'']], [[Wikipedia:No_original_research#Secondary|''secondary'']] sources that are ''[[Wikipedia:Identifying and using independent sources|independent]]'' of the subject (see the [[Wikipedia:Notability (sports)|guidelines for sports persons and athletes]]). Before any resubmission, additional references meeting these criteria should be added (see [[Help:Referencing for beginners|technical help]] and learn about [[Wikipedia:Common sourcing mistakes (notability)|mistakes to avoid]] when addressing this issue). If no additional references exist, the subject is not suitable for Wikipedia.&amp;lt;includeonly&amp;gt;{{safesubst:&amp;lt;noinclude /&amp;gt;#ifeq:{{{cat|}}}|no||[[Category:AfC submissions declined as a non-notable athletic topic]]}}&amp;lt;/includeonly&amp;gt;&lt;br /&gt;
|music&lt;br /&gt;
|m&lt;br /&gt;
|band = This submission's references do not show that the subject [[Wikipedia:Notability|qualifies for a Wikipedia article]]—that is, they do not show ''significant'' coverage (not just passing mentions) about the subject in ''published'', [[Wikipedia:Identifying reliable sources|''reliable'']], [[Wikipedia:No_original_research#Secondary|''secondary'']] sources that are ''[[Wikipedia:Identifying and using independent sources|independent]]'' of the subject (see the [[Wikipedia:Notability (music)|guidelines on the notability of music-related topics]]). Before any resubmission, additional references meeting these criteria should be added (see [[Help:Referencing for beginners|technical help]] and learn about [[Wikipedia:Common sourcing mistakes (notability)|mistakes to avoid]] when addressing this issue). If no additional references exist, the subject is not suitable for Wikipedia.&amp;lt;includeonly&amp;gt;{{safesubst:&amp;lt;noinclude /&amp;gt;#ifeq:{{{cat|}}}|no||[[Category:AfC submissions declined as a non-notable musical topic]]}}&amp;lt;/includeonly&amp;gt;&lt;br /&gt;
|film = This submission's references do not show that the subject [[Wikipedia:Notability|qualifies for a Wikipedia article]]—that is, they do not show ''significant'' coverage (not just passing mentions) about the subject in ''published'', [[Wikipedia:Identifying reliable sources|''reliable'']], [[Wikipedia:No_original_research#Secondary|''secondary'']] sources that are ''[[Wikipedia:Identifying and using independent sources|independent]]'' of the subject (see the [[WP:MOVIE|guidelines on the notability of films]]). Before any resubmission, additional references meeting these criteria should be added (see [[Help:Referencing for beginners|technical help]] and learn about [[Wikipedia:Common sourcing mistakes (notability)|mistakes to avoid]] when addressing this issue). If no additional references exist, the subject is not suitable for Wikipedia.&amp;lt;includeonly&amp;gt;{{safesubst:&amp;lt;noinclude /&amp;gt;#ifeq:{{{cat|}}}|no||[[Category:AfC submissions declined as a non-notable film]]}}&amp;lt;/includeonly&amp;gt;&lt;br /&gt;
|org&lt;br /&gt;
|inc&lt;br /&gt;
|corp = This draft's references do not show that the subject [[Wikipedia:Notability (organizations and companies)|qualifies for a Wikipedia article]]. In summary, the draft needs multiple published sources that are:  &amp;lt;br /&amp;gt;&lt;br /&gt;
* [[WP:ORGDEPTH|''in-depth'']] (not just brief mentions about the subject or routine announcements)&lt;br /&gt;
* [[Wikipedia:Identifying reliable sources|''reliable'']]&lt;br /&gt;
* [[Wikipedia:No original research#Secondary|''secondary'']]&lt;br /&gt;
* [[WP:ORGIND|''strictly independent'']] of the subject &amp;lt;br /&amp;gt;&lt;br /&gt;
Make sure you add references that meet ''all four'' of these criteria before resubmitting. Learn about [[Wikipedia:Common sourcing mistakes (notability)|mistakes to avoid]] when addressing this issue. If no additional references exist, the subject is not suitable for Wikipedia.&amp;lt;includeonly&amp;gt;{{safesubst:&amp;lt;noinclude /&amp;gt;#ifeq:{{{cat|}}}|no||[[Category:AfC submissions declined as a non-notable organization]]}}&amp;lt;/includeonly&amp;gt;&lt;br /&gt;
|bio = This submission's references do not show that the subject [[Wikipedia:Notability|qualifies for a Wikipedia article]]—that is, they do not show ''significant'' coverage (not just passing mentions) about the subject in ''published'', [[Wikipedia:Identifying reliable sources|''reliable'']], [[Wikipedia:No_original_research#Secondary|''secondary'']] sources that are ''[[Wikipedia:Identifying and using independent sources|independent]]'' of the subject (see the [[Wikipedia:Notability (people)|guidelines on the notability of people]]). Before any resubmission, additional references meeting these criteria should be added (see [[Help:Referencing_for_beginners#Inserting_a_reference|technical help]] and learn about [[Wikipedia:Common sourcing mistakes (notability)|mistakes to avoid]] when addressing this issue). If no additional references exist, the subject is not suitable for Wikipedia.&amp;lt;includeonly&amp;gt;{{safesubst:&amp;lt;noinclude /&amp;gt;#ifeq:{{{cat|}}}|no||[[Category:AfC submissions declined as a non-notable biography]]}}&amp;lt;/includeonly&amp;gt;&lt;br /&gt;
|nn = This draft's references do not show that the subject [[Wikipedia:Notability|qualifies for a Wikipedia article]]. In summary, the draft needs multiple published sources that are: &amp;lt;br /&amp;gt;&lt;br /&gt;
* ''[[WP:SIGCOV|in-depth]]'' (not just passing mentions about the subject)&lt;br /&gt;
* [[Wikipedia:Identifying reliable sources|''reliable'']]&lt;br /&gt;
* [[Wikipedia:No original research#Secondary|''secondary'']]&lt;br /&gt;
* [[Wikipedia:Identifying and using independent sources|''independent'']] of the subject &amp;lt;br /&amp;gt;&lt;br /&gt;
Make sure you add references that meet these criteria before resubmitting. Learn about [[Wikipedia:Common sourcing mistakes (notability)|mistakes to avoid]] when addressing this issue. If no additional references exist, the subject is not suitable for Wikipedia.&amp;lt;includeonly&amp;gt;{{safesubst:&amp;lt;noinclude /&amp;gt;#ifeq:{{{cat|}}}|no||[[Category:AfC submissions declined as non-notable]]}}&amp;lt;/includeonly&amp;gt;&lt;br /&gt;
|empty&lt;br /&gt;
|blank = We're sorry, but we cannot accept blank submissions. If in fact you did include text within the article, but it isn't showing, please make sure that any extra text above your entry is removed, as it may be causing it to hide and not be shown to the reviewer.&amp;lt;includeonly&amp;gt;{{safesubst:&amp;lt;noinclude /&amp;gt;#ifeq:{{{cat|}}}|no||[[Category:AfC submissions declined as blank]]}}&amp;lt;/includeonly&amp;gt;&lt;br /&gt;
|notenglish&lt;br /&gt;
|lang = {{safesubst:&amp;lt;noinclude /&amp;gt;#if: {{{2|}}}|The submission appears to be written in {{{2}}}.|}} This is the English language Wikipedia; we can only accept articles written in the [[English language]]. Please provide a high-quality English language translation of your submission. {{safesubst:&amp;lt;noinclude /&amp;gt;#if: {{safesubst:&amp;lt;noinclude /&amp;gt;Mw lang|fn=is_name|{{{2|}}}}}|Otherwise, you may write it in the [[:{{safesubst:&amp;lt;noinclude /&amp;gt;mw lang|fn=code_from_name|{{{2}}}}}:|{{{2}}} Wikipedia]].|Have you visited the [https://www.wikipedia.org Wikipedia home page]? You can probably find a version of Wikipedia in your language.|}}&amp;lt;includeonly&amp;gt;{{safesubst:&amp;lt;noinclude /&amp;gt;#ifeq:{{{cat|}}}|no||[[Category:AfC submissions declined as not in English]]}}&amp;lt;/includeonly&amp;gt;&lt;br /&gt;
|test = This submission seems to be a test edit and not an article worthy of an encyclopedia. Please use the [[Wikipedia:Sandbox|sandbox]] for any editing tests, but do not submit for review until you have an article that you want reviewed for inclusion in Wikipedia. Thank you.&amp;lt;includeonly&amp;gt;{{safesubst:&amp;lt;noinclude /&amp;gt;#ifeq:{{{cat|}}}|no||[[Category:AfC submissions declined as a test]]}}&amp;lt;/includeonly&amp;gt;&lt;br /&gt;
|redirect = This is not the correct place to request new redirects. Please follow the instructions at [[Wikipedia:Articles for creation/Wizard-Redirects|Articles for creation/Wizard-Redirects]]. Thank you. &amp;lt;includeonly&amp;gt;{{safesubst:&amp;lt;noinclude /&amp;gt;#ifeq:{{{cat|}}}|no||[[Category:AfC submissions declined as a redirect]]}}&amp;lt;/includeonly&amp;gt;&lt;br /&gt;
|van = This submission has been declined for one or more of the following reasons:&amp;lt;br /&amp;gt;&lt;br /&gt;
# It is primarily designed to [[Wikipedia:Attack page|threaten, disparage or attack its subject]].&lt;br /&gt;
# It is a [[Wikipedia:Biographies of living persons|biography of a living person]] that is [[Wikipedia:Identifying reliable sources|unreferenced]] and entirely negative in tone.&lt;br /&gt;
# It is a page that is purely [[Wikipedia:Vandalism|vandalistic]] in nature.&amp;lt;br /&amp;gt;&lt;br /&gt;
'''This page meets one or more of the [[Wikipedia:Criteria for speedy deletion#General|general criteria for speedy deletion]] and may be [[Wikipedia:Deletion policy|deleted]] without notice.''' Users who continue to create inappropriate pages will be [[Wikipedia:Blocking policy|blocked from editing Wikipedia]].&amp;lt;includeonly&amp;gt;{{safesubst:&amp;lt;noinclude /&amp;gt;#ifeq:{{{cat|}}}|no||[[Category:AfC submissions declined as being vandalism or attack pages]]}}&amp;lt;/includeonly&amp;gt;&lt;br /&gt;
|cite&lt;br /&gt;
|footnote&lt;br /&gt;
|ilc = The content of this submission includes material that does not meet Wikipedia's [[WP:MINREF|minimum standard for inline citations]]. Please [[WP:CITE|cite]] your sources using [[WP:FOOTNOTES|footnotes]]. For instructions on how to do this, please see [[WP:REFB|Referencing for beginners]]. Thank you.&amp;lt;includeonly&amp;gt;{{safesubst:&amp;lt;noinclude /&amp;gt;#ifeq:{{{cat|}}}|no||[[Category:AfC submissions declined as needing footnotes]]}}&amp;lt;/includeonly&amp;gt;&lt;br /&gt;
|blp = '''The text of this submission has been removed from Wikipedia.''' Wikipedia has a strict policy concerning [[Wikipedia:Biographies of living persons|biographies of living persons]]; we cannot accept such articles if they are unsourced, or contain [[Wikipedia:Verifiability|unverifiable information]] which is potentially [[Wikipedia:Libel|defamatory]]. All articles about living persons '''must''' conform to our [[Wikipedia:Biographies of living persons|biographies of living persons policy]]. In order to permit the author of this submission to provide sources that may satisfy the policy, the text of the page is available in the [{{fullurl:{{FULLPAGENAME}}|action=history}} history].&amp;lt;includeonly&amp;gt;{{safesubst:&amp;lt;noinclude /&amp;gt;#ifeq:{{{cat|}}}|no||[[Category:AfC submissions declined as BLP violations]]}}&amp;lt;/includeonly&amp;gt;&lt;br /&gt;
|cv-n&lt;br /&gt;
|cv = {{safesubst:&amp;lt;noinclude /&amp;gt;#ifeq:{{{2|}}}|||This submission appears to be taken from {{{2}}}.}} [[WP:CV|Wikipedia cannot accept material copied from elsewhere]], unless it explicitly and verifiably has been released to the world under a [[WP:Compatible license|suitably-free and compatible copyright license]] or into the [[public domain]] &amp;lt;u&amp;gt;and&amp;lt;/u&amp;gt; is written in an [[WP:NPOV|acceptable tone]]—'''this includes material that you own the copyright to.'''  You should attribute the content of a draft to outside sources, using [[WP:CITE|citations]], but [[Wikipedia:C-P|copying and pasting]] or [[WP:PARAPHRASE|closely paraphrasing]] sources is not acceptable. The entire draft should be written using your own words and structure.{{#ifeq:{{NAMESPACENUMBER}}|3||{{pb}}{{huge|{{error|&amp;lt;u&amp;gt;Note to reviewers&amp;lt;/u&amp;gt;: do not leave copyright violations sitting in the page history. Please follow the [[Wikipedia:WikiProject Articles for creation/Reviewing instructions/Copyright cleanup instructions|cleanup instructions]].}}}}{{pb}}&amp;lt;span class=&amp;quot;sysop-show&amp;quot;&amp;gt;''Administrators: if the page has been cleaned and you are seeing this notice, please change the &amp;lt;code&amp;gt;cv&amp;lt;/code&amp;gt; to &amp;lt;code&amp;gt;cv-cleaned&amp;lt;/code&amp;gt; in the {{t|AfC submission}} call.''&amp;lt;/span&amp;gt;}}&amp;lt;includeonly&amp;gt;{{safesubst:&amp;lt;noinclude /&amp;gt;#ifeq:{{{cat|}}}|no||[[Category:AfC submissions declined as copyright violations]][[Category:Requested RD1 redactions]]}}&amp;lt;/includeonly&amp;gt;&lt;br /&gt;
|cv-c&lt;br /&gt;
|cv-cleaned = {{safesubst:&amp;lt;noinclude /&amp;gt;#ifeq:{{{2|}}}|||This submission appears to be taken from {{{2}}}.}} [[WP:CV|Wikipedia cannot accept material copied from elsewhere]], unless it explicitly and verifiably has been released to the world under a [[WP:Compatible license|suitably-free and compatible copyright license]] or into the [[public domain]] &amp;lt;u&amp;gt;and&amp;lt;/u&amp;gt; is written in an [[WP:NPOV|acceptable tone]]—'''this includes material that you own the copyright to.''' You should attribute the content of a draft to outside sources, using [[WP:CITE|citations]], but [[Wikipedia:C-P|copying and pasting]] or [[WP:PARAPHRASE|closely paraphrasing]] sources is not acceptable. The entire draft should be written using your own words and structure.&amp;lt;p&amp;gt;[[File:Symbol opinion vote.svg|20px]] This submission has now been cleaned of the above-noted copyright violation and its history redacted by an administrator to remove the infringement. If re-submitted (and subsequent additions do not reintroduce copyright problems), the content may be assessed on other grounds.&amp;lt;/p&amp;gt;&amp;lt;includeonly&amp;gt;{{safesubst:&amp;lt;noinclude /&amp;gt;#ifeq:{{{cat|}}}|no||[[Category:AfC submissions declined as copyright violations]]}}&amp;lt;/includeonly&amp;gt;&lt;br /&gt;
|v&lt;br /&gt;
|rs&lt;br /&gt;
|source = This submission is not adequately supported by [[WP:RS|reliable sources]]. ''Reliable'' sources are required so that information can be [[WP:V|verified]]. If you need help with referencing, please see [[WP:REFB|Referencing for beginners]] and [[Wikipedia:Citing sources|Citing sources]].&amp;lt;includeonly&amp;gt;{{safesubst:&amp;lt;noinclude /&amp;gt;#ifeq:{{{cat|}}}|no||[[Category:AfC submissions declined as lacking reliable third-party sources]]}}&amp;lt;/includeonly&amp;gt;&lt;br /&gt;
|not = This submission is not suitable for Wikipedia. Please read [[Wikipedia:What Wikipedia is not|'What Wikipedia is not']] for more information.&amp;lt;includeonly&amp;gt;{{safesubst:&amp;lt;noinclude /&amp;gt;#ifeq:{{{cat|}}}|no||[[Category:AfC submissions declined as not suitable for Wikipedia]]}}&amp;lt;/includeonly&amp;gt;&lt;br /&gt;
|test = This submission appears to be [[WP:Patent nonsense|patent nonsense]]. Articles for Creation is not a place to test out edits; please use the [[WP:Sandbox|sandbox]] for that purpose. In the future, please submit only content which is suitable as an encyclopedia article. Thank you.&amp;lt;includeonly&amp;gt;{{safesubst:&amp;lt;noinclude /&amp;gt;#ifeq:{{{cat|}}}|no||[[Category:AfC submissions declined as a test]]}}&amp;lt;/includeonly&amp;gt;&lt;br /&gt;
|oneevent&lt;br /&gt;
|news = This submission appears to be a news report of a single event and may not be notable enough for an article in Wikipedia. Please see [[Wikipedia:NOT#NEWS]] and [[Wikipedia:ONEEVENT]] for more information.&amp;lt;includeonly&amp;gt;{{safesubst:&amp;lt;noinclude /&amp;gt;#ifeq:{{{cat|}}}|no||[[Category:AfC submissions declined as a news report on a single event]]}}&amp;lt;/includeonly&amp;gt;&lt;br /&gt;
|d&lt;br /&gt;
|dict = Wikipedia is an [[encyclopedia]] and [[WP:DICT|not a dictionary]]. We cannot accept articles that are little more than definitions of words or abbreviations as entries. A good article should ''begin'' with a good definition, but expand on the subject. You might try creating a definition for this instead at [[wikt:Main Page|Wiktionary]], which ''is a dictionary''. Please only do so if it meets that sister project's [[wikt:Wiktionary:Criteria for inclusion|criteria for inclusion]]. These require among others, attestation for the word or phrase, as verified through clear widespread use, or its use in permanently recorded media, conveying meaning, in at least three independent instances spanning at least a year.&amp;lt;includeonly&amp;gt;{{safesubst:&amp;lt;noinclude /&amp;gt;#ifeq:{{{cat|}}}|no||[[Category:AfC submissions declined as a dictionary definition]]}}&amp;lt;/includeonly&amp;gt;&lt;br /&gt;
|plot = The proposed article is [[WP:NOT#PLOT|not suitable for Wikipedia]]. Because Wikipedia is an encyclopedia, articles on [[WP:FICT|fictional subjects]] should cover their real-world context and contain sourced analysis, offering detail on a work's development, impact or historical significance&amp;amp;mdash;not just a summary of the plot. You may wish to add this content to an existing article{{safesubst:&amp;lt;noinclude /&amp;gt;#if:{{{2|}}}|, such as [[:{{{2}}}]]}}. As anyone can edit Wikipedia, you are free to do so yourself.&amp;lt;includeonly&amp;gt;{{safesubst:&amp;lt;noinclude /&amp;gt;#ifeq:{{{cat|}}}|no||[[Category:AfC submissions declined as all plot]]}}&amp;lt;/includeonly&amp;gt;&lt;br /&gt;
|joke&lt;br /&gt;
|hoax = It appears that your submission is either an attempt to be humorous rather than [[WP:V|factual]], or is an obvious hoax. As Wikipedia strives to contain only [[WP:V|factual entries]], we can not accept your submission at this time. &amp;lt;includeonly&amp;gt;{{safesubst:&amp;lt;noinclude /&amp;gt;#ifeq:{{{cat|}}}|no||[[Category:AfC submissions declined as jokes]]}}&amp;lt;/includeonly&amp;gt;&lt;br /&gt;
|essay = This submission reads more like an [[WP:NOTESSAY|essay]] than an encyclopedia article. Submissions should summarise information in [[WP:PSTS|secondary, reliable sources]] and not contain opinions or [[WP:OR|original research]]. Please write about the topic from a [[WP:NPOV|neutral point of view]] in an [[Wikipedia:Encyclopedic style|encyclopedic manner]].&amp;lt;includeonly&amp;gt;{{safesubst:&amp;lt;noinclude /&amp;gt;#ifeq:{{{cat|}}}|no||[[Category:AfC submissions declined as an essay]]}}&amp;lt;/includeonly&amp;gt;&lt;br /&gt;
|npov = This submission does not appear to be written in [[Wikipedia:Encyclopedic style|the formal tone expected of an encyclopedia article]]. Entries should be written from a [[Wikipedia:Neutral point of view|neutral point of view]], and should refer to a range of [[Wikipedia:Identifying reliable sources|independent, reliable, published sources]]. Please rewrite your submission in a more encyclopedic format. Please make sure to avoid [[Wikipedia:Avoid peacock terms|peacock terms]] that promote the subject.&amp;lt;includeonly&amp;gt;{{safesubst:&amp;lt;noinclude /&amp;gt;#ifeq:{{{cat|}}}|no||[[Category:AfC submissions declined as not written in a neutral point of view]]}}&amp;lt;/includeonly&amp;gt;&lt;br /&gt;
|adv&lt;br /&gt;
|spam&lt;br /&gt;
|advert = This submission appears to [[WP:ARTSPAM|read more like an advertisement]] than an entry in an encyclopedia. Encyclopedia articles need to be written from a [[Wikipedia:Neutral point of view|neutral point of view]], and should refer to a range of [[Wikipedia:Identifying reliable sources|independent, reliable, published sources]], not just to materials produced by the creator of the subject being discussed. This is important so that the article can meet Wikipedia's [[Wikipedia:Verifiability|verifiability policy]] and the [[Wikipedia:Notability|notability]] of the subject can be established. If you still feel that this subject is worthy of inclusion in Wikipedia, please rewrite your submission to comply with these policies.&amp;lt;includeonly&amp;gt;{{safesubst:&amp;lt;noinclude /&amp;gt;#ifeq:{{{cat|}}}|no||[[Category:AfC submissions declined as an advertisement]]}}&amp;lt;/includeonly&amp;gt;&lt;br /&gt;
|exists = Thank you for your submission, but the subject of this article already exists in Wikipedia. {{safesubst:&amp;lt;noinclude /&amp;gt;#ifeq:{{{2|}}}|||You can find it and improve it at [[:{{{2}}}]] instead.}}&amp;lt;includeonly&amp;gt;{{safesubst:&amp;lt;noinclude /&amp;gt;#ifeq:{{{cat|}}}|no||[[Category:AfC submissions declined as already existing]]}}&amp;lt;/includeonly&amp;gt;&lt;br /&gt;
|dup&lt;br /&gt;
|duplicate = This appears to be a duplicate of another submission{{safesubst:&amp;lt;noinclude /&amp;gt;#ifeq: {{{2|}}}|||, [[Draft:{{{2}}}|{{{2}}}]],}} which is also waiting to be reviewed. To save time we will consider the other submission and not this one. &amp;lt;includeonly&amp;gt;{{safesubst:&amp;lt;noinclude /&amp;gt;#ifeq:{{{cat|}}}|no||[[Category:AfC submissions declined as a duplicate]]}}&amp;lt;/includeonly&amp;gt;&lt;br /&gt;
|context = This submission provides insufficient [[Wikt:context|context]] for those unfamiliar with the subject matter. Please see the [[Wikipedia:Guide to writing better articles|guide to writing better articles]] for information on how to better format your submission. &amp;lt;includeonly&amp;gt;{{safesubst:&amp;lt;noinclude /&amp;gt;#ifeq:{{{cat|}}}|no||[[Category:AfC submissions declined as lacking context]]}}&amp;lt;/includeonly&amp;gt;&lt;br /&gt;
|merge&lt;br /&gt;
|mergeto = The proposed article does not have sufficient content to require an article of its own, but it could be merged into the existing article {{safesubst:&amp;lt;noinclude /&amp;gt;#if:{{{2|}}}|at [[:{{{2}}}]]|on the same subject}}. Since anyone can edit Wikipedia, you are welcome to add that information yourself. Thank you.&amp;lt;includeonly&amp;gt;{{safesubst:&amp;lt;noinclude /&amp;gt;#ifeq:{{{cat|}}}|no||[[Category:AfC submissions declined as needing to be merged]]}}&amp;lt;/includeonly&amp;gt;&lt;br /&gt;
|afd = Unfortunately, the target article was previously deleted and has been [[WP:SALT|prevented from recreation]], so to create a new page there you will need to [[WP:UNPROTECT|request unprotection here]]. Afterwards, your submission will be moved to article space. Thanks for your submission and we apologize for the inconvenience.&amp;lt;includeonly&amp;gt;{{safesubst:&amp;lt;noinclude /&amp;gt;#ifeq:{{{cat|}}}|no||[[Category:AfC submissions declined as being previously deleted]]}}&amp;lt;/includeonly&amp;gt;&lt;br /&gt;
|reason = {{{2}}}&amp;lt;includeonly&amp;gt;{{safesubst:&amp;lt;noinclude /&amp;gt;#ifeq:{{{cat|}}}|no||[[Category:AfC submissions declined with a custom reason]]}}&amp;lt;/includeonly&amp;gt;&lt;br /&gt;
|#default = {{{1}}}&lt;br /&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>TheDartsWikiSysop</name></author>
	</entry>
	<entry>
		<id>https://thedartswiki.donthurry.com/index.php?title=Divbox/styles.css&amp;diff=909</id>
		<title>Divbox/styles.css</title>
		<link rel="alternate" type="text/html" href="https://thedartswiki.donthurry.com/index.php?title=Divbox/styles.css&amp;diff=909"/>
		<updated>2023-04-25T20:15:06Z</updated>

		<summary type="html">&lt;p&gt;TheDartsWikiSysop: 1 revision imported&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;/* {{pp-template}} */&lt;br /&gt;
.divbox {&lt;br /&gt;
	padding: 1em;&lt;br /&gt;
	margin: 0.5em;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
.divbox .divbox-heading {&lt;br /&gt;
	width: auto;&lt;br /&gt;
	margin-left: auto;&lt;br /&gt;
	margin-right: auto;&lt;br /&gt;
	font-weight: bold;&lt;br /&gt;
	text-align: center;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
.divbox-amber {&lt;br /&gt;
	background-color: #ffffcc;&lt;br /&gt;
	border: 1px solid #663300;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
.divbox-berk {&lt;br /&gt;
	background-color: #b78727;&lt;br /&gt;
	border: 1px solid #0f4d92;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
.divbox-black {&lt;br /&gt;
	background-color: black;&lt;br /&gt;
	border: 1px solid white;&lt;br /&gt;
	color: white;&lt;br /&gt;
	font-weight: bold;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
.divbox-bloodred {&lt;br /&gt;
	background-color: #ff3333;&lt;br /&gt;
	border: 1px solid #cc0000;&lt;br /&gt;
	font-weight: bold;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
.divbox-blue {&lt;br /&gt;
	background-color: #dee;&lt;br /&gt;
	border: 1px solid #0000cc;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
.divbox-brown {&lt;br /&gt;
	background-color: #f2deb8;&lt;br /&gt;
	border: 1px solid #663300;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
.divbox-darkgreen {&lt;br /&gt;
	background-color: #006a4d;&lt;br /&gt;
	color: #ffffff;&lt;br /&gt;
	border: 4px solid #ffffff;&lt;br /&gt;
	border-radius: 5em;&lt;br /&gt;
	box-shadow: 0.1em 0.1em 0.5em rgba( 0, 0, 0, 0.75 );&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
.divbox-docgreen {&lt;br /&gt;
	background-color: #ecfcf4;&lt;br /&gt;
	border: 1px solid #aaaaaa;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
.divbox-double {&lt;br /&gt;
	background-color: inherit;&lt;br /&gt;
	border: 1px double #000000;&lt;br /&gt;
	letter-spacing: 0.5em;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
.divbox-email {&lt;br /&gt;
	font-weight: bold;&lt;br /&gt;
	margin-left: 2em;&lt;br /&gt;
	border: black solid 1px;&lt;br /&gt;
	border-style: dotted solid dotted solid;&lt;br /&gt;
	background: palegreen;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
.divbox-fawn {&lt;br /&gt;
	border: 1px solid #cd853f;&lt;br /&gt;
	background-color: #fff8dc;&lt;br /&gt;
	border-radius: 10px;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
.divbox-forest {&lt;br /&gt;
	background-color: #b5dbaf;&lt;br /&gt;
	border: 1px solid #006633;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
.divbox-gold {&lt;br /&gt;
	background-color: #cc0;&lt;br /&gt;
	border: 1px solid #f00;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
.divbox-gray,&lt;br /&gt;
.divbox-grey {&lt;br /&gt;
	background-color: #eeeeee;&lt;br /&gt;
	border: 1px solid #999999;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
.divbox-gray99,&lt;br /&gt;
.divbox-grey99 {&lt;br /&gt;
	background-color: #f9f9f9;&lt;br /&gt;
	border: 1px solid #dddddd;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
.divbox-grayh,&lt;br /&gt;
.divbox-greyh {&lt;br /&gt;
	background: transparent;&lt;br /&gt;
	border: solid 4px lightgray;&lt;br /&gt;
	border-left: none;&lt;br /&gt;
	border-right: none;&lt;br /&gt;
	color: gray;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
.divbox-green {&lt;br /&gt;
	background-color: #ccffcc;&lt;br /&gt;
	border: 1px solid #009900;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
.divbox-greenv {&lt;br /&gt;
	background: transparent;&lt;br /&gt;
	border: solid 8px lightgreen;&lt;br /&gt;
	border-top: none;&lt;br /&gt;
	border-bottom: none;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
.divbox-ivory {&lt;br /&gt;
	border: 1px solid #0000ff;&lt;br /&gt;
	background-color: #fffff0;&lt;br /&gt;
	border-radius: 10px;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
.divbox-lavender {&lt;br /&gt;
	background-color: #e6e6fa;&lt;br /&gt;
	font-size: 11pt;&lt;br /&gt;
	border: 1px solid #7d00b3;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
.divbox-lightblue {&lt;br /&gt;
	background-color: #f0f8ff;&lt;br /&gt;
	border: 1px solid #7cb9e8;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
.divbox-lilac {&lt;br /&gt;
	background-color: #c8a2c8;&lt;br /&gt;
	border: 1px solid silver;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
.divbox-n {&lt;br /&gt;
	border: 7px solid #0ff0ff;&lt;br /&gt;
	background-color: #f0fff0;&lt;br /&gt;
	border-radius: 25px;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
.divbox-navy {&lt;br /&gt;
	background-color: #aadbe0;&lt;br /&gt;
	border: 1px solid #00477b;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
.divbox-none {&lt;br /&gt;
	border: 1px hidden;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
.divbox-nyanza {&lt;br /&gt;
	background-color: #e9ffdb;&lt;br /&gt;
	font-size: 11pt;&lt;br /&gt;
	border: 1px solid #7d00b3;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
.divbox-orange {&lt;br /&gt;
	background-color: #ffdeb5;&lt;br /&gt;
	border: 1px solid #ff6600;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
.divbox-plain {&lt;br /&gt;
	background-color: inherit;&lt;br /&gt;
	border: 1px solid #000000;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
.divbox-purple {&lt;br /&gt;
	background-color: #ffdaff;&lt;br /&gt;
	border: 1px solid #7d00b3;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
.divbox-red {&lt;br /&gt;
	background-color: #ffcccc;&lt;br /&gt;
	border: 1px solid #cc0000;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
.divbox-sia {&lt;br /&gt;
	background-color: #cccccc;&lt;br /&gt;
	border: 1px solid #6881b9;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
.divbox-siaaa {&lt;br /&gt;
	background-color: #d5dceb;&lt;br /&gt;
	border: 1px solid #6881b9;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
.divbox-simar {&lt;br /&gt;
	background-color: #f2deb8;&lt;br /&gt;
	border: 4px solid #810541;&lt;br /&gt;
	border-radius: 5em;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
.divbox-teal {&lt;br /&gt;
	background-color: #008080;&lt;br /&gt;
	border: 1px solid #40e0d0;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
.divbox-thistle {&lt;br /&gt;
	background-color: #d8bfd8;&lt;br /&gt;
	font-size: 11pt;&lt;br /&gt;
	border: 1px solid #7d00b3;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
.divbox-tt {&lt;br /&gt;
	background-color: transparent;&lt;br /&gt;
	color: darkblue;&lt;br /&gt;
	border: 1px solid grey;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
.divbox-wdl {&lt;br /&gt;
	background-color: #cee3f6;&lt;br /&gt;
	border: 1px solid #cee3f6;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
.divbox-white {&lt;br /&gt;
	background-color: #ffffff;&lt;br /&gt;
	border: 1px solid #000000;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
.divbox-wordperfect {&lt;br /&gt;
	background-color: blue;&lt;br /&gt;
	color: white;&lt;br /&gt;
	border: 1px solid #0000cc;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
/* &amp;quot;monospace, monospace&amp;quot; per [[WP:MONO]] */&lt;br /&gt;
.divbox-email,&lt;br /&gt;
.divbox-tt,&lt;br /&gt;
.divbox-wordperfect {&lt;br /&gt;
	font-family: monospace, monospace;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
.divbox-yellow {&lt;br /&gt;
	background-color: #ffffcc;&lt;br /&gt;
	border: 1px solid #ffcc00;&lt;br /&gt;
}&lt;/div&gt;</summary>
		<author><name>TheDartsWikiSysop</name></author>
	</entry>
	<entry>
		<id>https://thedartswiki.donthurry.com/index.php?title=AfC_submission/declinedivbox&amp;diff=907</id>
		<title>AfC submission/declinedivbox</title>
		<link rel="alternate" type="text/html" href="https://thedartswiki.donthurry.com/index.php?title=AfC_submission/declinedivbox&amp;diff=907"/>
		<updated>2023-04-25T20:15:06Z</updated>

		<summary type="html">&lt;p&gt;TheDartsWikiSysop: 1 revision imported&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{#if:{{NAMESPACE}}{{#ifeq:{{REVISIONID}}|{{REVISIONID:{{FULLPAGENAME}}}}||0}}&lt;br /&gt;
 |&amp;lt;templatestyles src=&amp;quot;divbox/styles.css&amp;quot; /&amp;gt;&amp;lt;div class=&amp;quot;boilerplate divbox divbox-{{#if:1|{{{1|gray}}}}}&amp;quot; {{#if:{{{2|}}}|id=&amp;quot;{{{2}}}&amp;quot;|}} style=&amp;quot;{{#if:{{{radius|}}}|{{border-radius|{{{radius}}}}}|}} padding: 1em;&amp;quot;&amp;gt;{{center|&amp;lt;b&amp;gt;{{{2|}}}&amp;lt;/b&amp;gt;}}{{{3|}}}&amp;lt;/div&amp;gt;&lt;br /&gt;
 |&amp;lt;!-- not displayed in mainspace --&amp;gt;&lt;br /&gt;
}}&amp;lt;noinclude&amp;gt;&lt;br /&gt;
{{Documentation|content={{Uses TemplateStyles|Template:Divbox/styles.css}}}}[[Category:WikiProject Articles for creation templates]]&amp;lt;/noinclude&amp;gt;&lt;/div&gt;</summary>
		<author><name>TheDartsWikiSysop</name></author>
	</entry>
	<entry>
		<id>https://thedartswiki.donthurry.com/index.php?title=Noping&amp;diff=905</id>
		<title>Noping</title>
		<link rel="alternate" type="text/html" href="https://thedartswiki.donthurry.com/index.php?title=Noping&amp;diff=905"/>
		<updated>2023-04-25T20:15:06Z</updated>

		<summary type="html">&lt;p&gt;TheDartsWikiSysop: 1 revision imported&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;#REDIRECT [[Template:No ping]]&lt;br /&gt;
&lt;br /&gt;
{{R from move}}&lt;/div&gt;</summary>
		<author><name>TheDartsWikiSysop</name></author>
	</entry>
	<entry>
		<id>https://thedartswiki.donthurry.com/index.php?title=AfC_submission/declined&amp;diff=903</id>
		<title>AfC submission/declined</title>
		<link rel="alternate" type="text/html" href="https://thedartswiki.donthurry.com/index.php?title=AfC_submission/declined&amp;diff=903"/>
		<updated>2023-04-25T20:15:06Z</updated>

		<summary type="html">&lt;p&gt;TheDartsWikiSysop: 1 revision imported&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{Ombox&lt;br /&gt;
 | type  = notice&lt;br /&gt;
 | image = none&lt;br /&gt;
 | imageright = [[File:AFC-Logo_Decline.svg|center|75px]]&lt;br /&gt;
 | style = background-color: #FEE&lt;br /&gt;
 | text  = &amp;lt;span style=&amp;quot;font-size: 115%&amp;quot;&amp;gt;'''Submission declined{{#if: {{{decliner|}}}{{{declinets|}}}&lt;br /&gt;
  | &amp;amp;#32;{{#if: {{{declinets|}}}&lt;br /&gt;
   | on {{#time: j F Y|{{{declinets}}}}}{{#if: {{{decliner|}}}&lt;br /&gt;
    | &amp;amp;#32;&lt;br /&gt;
   }}&lt;br /&gt;
  }}{{#if: {{{decliner|}}}&lt;br /&gt;
   |by {{Noping|{{{decliner}}}}} ([[User talk:{{{decliner}}}|talk]])&lt;br /&gt;
  }}&lt;br /&gt;
 }}.'''&amp;lt;/span&amp;gt;{{#if: {{{reason|}}}&lt;br /&gt;
  | {{AfC submission/declinedivbox|gray||{{AfC submission/comments|cat={{{cat|{{#if:{{{demo|}}}|no}}}}}|{{{reason}}}|{{{details|}}}}}}}|&amp;lt;br /&amp;gt;|&lt;br /&gt;
 }}{{#if: {{{reason2|}}}&lt;br /&gt;
  | {{AfC submission/declinedivbox|gray||{{AfC submission/comments|cat={{{cat|{{#if:{{{demo|}}}|no}}}}}|{{{reason2}}}|{{{details2|}}}}}}}|&amp;lt;!--empty--&amp;gt;|&lt;br /&gt;
 }}{{#ifeq: {{lc: {{{small|}}} }} | yes|&lt;br /&gt;
  | {{blist&lt;br /&gt;
     |1=If you would like to continue working on the submission, click on the &amp;quot;Edit&amp;quot; tab at the top of the window.&lt;br /&gt;
     |2=If you have not resolved the issues listed above, your draft will be declined again and potentially deleted.&lt;br /&gt;
     |3=If you need extra help, please {{Plain link|url={{fullurl:Wikipedia:WikiProject_Articles_for_creation/Help_desk/New question|withJS=MediaWiki:AFCHD-wizard.js&amp;amp;page={{FULLPAGENAMEE}}}}|name='''ask us a question'''}} at the AfC Help Desk or get '''[[Wikipedia:IRC help disclaimer|live help]]''' from experienced editors.&lt;br /&gt;
     |4=Please do not remove reviewer comments or this notice until the submission is accepted. }}&lt;br /&gt;
{{#if:{{NAMESPACE}}|{{AfC submission/helptools}}|}}&amp;lt;includeonly&amp;gt;{{#ifexpr: {{#time: U | {{{revisionts|{{REVISIONTIMESTAMP}}}}} +6 months }} &amp;lt; {{#time: U}}|&amp;lt;div style=&amp;quot;text-align: center; background-color: #FCC; border: 1px solid #FAA; margin: 0.5em; padding: 0.5em; font-weight: bold;&amp;quot;&amp;gt;This draft has not been edited in over six months and qualifies to be deleted per [[WP:G13|CSD G13]].&amp;lt;/div&amp;gt;{{#if:{{{demo|}}}||[[Category:G13 eligible AfC submissions|{{REVISIONTIMESTAMP}}]]}}}}&lt;br /&gt;
{{#ifexpr: ({{#time: U | {{{revisionts|{{REVISIONTIMESTAMP}}}}} +5 months}} &amp;lt; {{#time: U}})and({{#time: U | {{{revisionts|{{REVISIONTIMESTAMP}}}}} +6 months}} &amp;gt; {{#time: U}})|{{#if:{{{demo|}}}||[[Category:AfC G13 eligible soon submissions|{{REVISIONTIMESTAMP}}]]}}}}&lt;br /&gt;
&amp;lt;/includeonly&amp;gt;&lt;br /&gt;
 }}&amp;lt;small&amp;gt;{{#if: {{{decliner|}}}&lt;br /&gt;
  | &amp;amp;#32;Declined by {{Noping|{{{decliner}}}}}{{#if: {{{declinets|}}}&lt;br /&gt;
   | &amp;amp;#32;{{time ago|{{{declinets}}}}}&lt;br /&gt;
  }}.&lt;br /&gt;
  | &amp;amp;#32;The reviewer(s) who declined this submission will be listed in the [{{SERVER}}{{localurl:{{NAMESPACE}}:{{PAGENAME}}|action=history}} page history].&lt;br /&gt;
  }}&amp;lt;/small&amp;gt;{{#ifeq: {{lc: {{{small|}}} }} | yes|| &amp;lt;small&amp;gt; Last edited {{#if: {{REVISIONUSER}}&lt;br /&gt;
   | by [[User:{{encodefirst|{{REVISIONUSER}}}}|{{encodefirst|{{REVISIONUSER}}}}]]&lt;br /&gt;
  }} {{time ago|{{{revisionts|{{REVISIONTIMESTAMP}}}}}}}. {{#if: {{{user|}}}&lt;br /&gt;
   | Reviewer: [{{fullurl: User talk:{{{user}}} | action=edit&amp;amp;editintro=Template:AfC_submission/user_talk_editintro_declined&amp;amp;preload=Template:AfC_submission/user_talk_preload_declined&amp;amp;preloadtitle={{urlencode:Your submission at [[WP:AfC|Articles for creation]]{{#ifeq: {{TALKSPACE}} | {{ns:Project talk}} | : {{SUBPAGENAME}} }} }}&amp;amp;section=new}} Inform author].&lt;br /&gt;
 }}&amp;lt;/small&amp;gt;{{main other||2=&amp;lt;div style=&amp;quot;border-top: 1px #AAA solid; margin-top:5px;&amp;quot;&amp;gt;{{#invoke:AfC submission catcheck|submitted|This draft has been resubmitted and is currently awaiting re-review.|{{#if:{{REVISIONID}}&amp;lt;noinclude&amp;gt;0&amp;lt;/noinclude&amp;gt;|&amp;lt;table&amp;gt;&amp;lt;tr&amp;gt;&amp;lt;td&amp;gt;{{Clickable button 2&lt;br /&gt;
  | Resubmit&lt;br /&gt;
  | url = {{fullurl:Wikipedia:Articles_for_creation/Submitting|withJS=MediaWiki:AFC-submit-wizard.js&amp;amp;page={{FULLPAGENAMEE}}}}&lt;br /&gt;
  | class = mw-ui-progressive&lt;br /&gt;
 }}&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;Please note that if the issues are not fixed, the draft will be declined again.&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&amp;lt;/table&amp;gt;|Once you save your changes using the &amp;quot;Publish changes&amp;quot; button below, you will be able to resubmit your draft for review by pressing the &amp;quot;Resubmit&amp;quot; button that will appear here.}}}}&amp;lt;/div&amp;gt;}}}}&lt;br /&gt;
}}&amp;lt;includeonly&amp;gt;{{NOINDEX}}{{user other|{{#if:{{{demo|}}}||[[Category:Declined AfC submissions in userspace]]}}}}{{#if:{{{demo|}}}||[[Category:Declined AfC submissions]]}}&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>TheDartsWikiSysop</name></author>
	</entry>
	<entry>
		<id>https://thedartswiki.donthurry.com/index.php?title=AFC_submission&amp;diff=901</id>
		<title>AFC submission</title>
		<link rel="alternate" type="text/html" href="https://thedartswiki.donthurry.com/index.php?title=AFC_submission&amp;diff=901"/>
		<updated>2023-04-25T20:15:05Z</updated>

		<summary type="html">&lt;p&gt;TheDartsWikiSysop: 1 revision imported&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;#REDIRECT [[Template:AfC submission]]&lt;br /&gt;
&lt;br /&gt;
{{Redirect category shell|&lt;br /&gt;
{{R from move}}&lt;br /&gt;
}}&lt;/div&gt;</summary>
		<author><name>TheDartsWikiSysop</name></author>
	</entry>
	<entry>
		<id>https://thedartswiki.donthurry.com/index.php?title=Country_data_Estonia&amp;diff=899</id>
		<title>Country data Estonia</title>
		<link rel="alternate" type="text/html" href="https://thedartswiki.donthurry.com/index.php?title=Country_data_Estonia&amp;diff=899"/>
		<updated>2023-04-25T20:15:05Z</updated>

		<summary type="html">&lt;p&gt;TheDartsWikiSysop: 1 revision imported&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{ {{{1&amp;lt;noinclude&amp;gt;|country showdata&amp;lt;/noinclude&amp;gt;}}}&lt;br /&gt;
| alias = Estonia&lt;br /&gt;
| flag alias = Flag of Estonia.svg&lt;br /&gt;
| flag alias-naval = Naval Jack of Estonia.svg&lt;br /&gt;
| link alias-naval = Estonian Navy&lt;br /&gt;
| flag alias-army=Flag of Estonian Land Forces.svg&lt;br /&gt;
| link alias-army=Estonian Land Forces&lt;br /&gt;
| flag alias-air force =Flag of the Estonia Air Force.png&lt;br /&gt;
| link alias-air force = Estonian Air Force&lt;br /&gt;
| flag alias-navy = Naval Ensign of Estonia.svg&lt;br /&gt;
| link alias-navy = Estonian Navy&lt;br /&gt;
| border-naval =&lt;br /&gt;
| size = {{{size|}}}&lt;br /&gt;
| name = {{{name|}}}&lt;br /&gt;
| altlink = {{{altlink|}}}&lt;br /&gt;
| variant = {{{variant|}}}&lt;br /&gt;
&amp;lt;noinclude&amp;gt;&lt;br /&gt;
| redir1 = EST&lt;br /&gt;
| related1 = Estonian SSR&lt;br /&gt;
&amp;lt;/noinclude&amp;gt;&lt;br /&gt;
}}&lt;/div&gt;</summary>
		<author><name>TheDartsWikiSysop</name></author>
	</entry>
	<entry>
		<id>https://thedartswiki.donthurry.com/index.php?title=AUT&amp;diff=897</id>
		<title>AUT</title>
		<link rel="alternate" type="text/html" href="https://thedartswiki.donthurry.com/index.php?title=AUT&amp;diff=897"/>
		<updated>2023-04-25T20:15:05Z</updated>

		<summary type="html">&lt;p&gt;TheDartsWikiSysop: 1 revision imported&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{flag|Austria}}&amp;lt;noinclude&amp;gt;&lt;br /&gt;
{{flag template documentation|Austria|AUT|AUT|AUT}}&lt;br /&gt;
&amp;lt;/noinclude&amp;gt;&lt;/div&gt;</summary>
		<author><name>TheDartsWikiSysop</name></author>
	</entry>
	<entry>
		<id>https://thedartswiki.donthurry.com/index.php?title=Country_data_Scotland&amp;diff=895</id>
		<title>Country data Scotland</title>
		<link rel="alternate" type="text/html" href="https://thedartswiki.donthurry.com/index.php?title=Country_data_Scotland&amp;diff=895"/>
		<updated>2023-04-25T20:15:02Z</updated>

		<summary type="html">&lt;p&gt;TheDartsWikiSysop: 1 revision imported&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{ {{{1&amp;lt;noinclude&amp;gt;|country showdata&amp;lt;/noinclude&amp;gt;}}}&lt;br /&gt;
| alias = Scotland&lt;br /&gt;
| flag alias = Flag of Scotland.svg&lt;br /&gt;
| flag alias-1542 = Flag of Scotland (traditional).svg&lt;br /&gt;
| size = {{{size|}}}&lt;br /&gt;
| name = {{{name|}}}&lt;br /&gt;
| altlink = {{{altlink|}}}&lt;br /&gt;
| variant = {{{variant|}}}&lt;br /&gt;
&amp;lt;noinclude&amp;gt;&lt;br /&gt;
| var1 = 1542&lt;br /&gt;
| redir1 = SCO&lt;br /&gt;
| related1 = Kingdom of Scotland&lt;br /&gt;
&amp;lt;/noinclude&amp;gt;&lt;br /&gt;
}}&lt;/div&gt;</summary>
		<author><name>TheDartsWikiSysop</name></author>
	</entry>
	<entry>
		<id>https://thedartswiki.donthurry.com/index.php?title=Country_data_Republic_of_Ireland&amp;diff=893</id>
		<title>Country data Republic of Ireland</title>
		<link rel="alternate" type="text/html" href="https://thedartswiki.donthurry.com/index.php?title=Country_data_Republic_of_Ireland&amp;diff=893"/>
		<updated>2023-04-25T20:15:02Z</updated>

		<summary type="html">&lt;p&gt;TheDartsWikiSysop: 1 revision imported&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{safesubst&amp;lt;noinclude /&amp;gt;: {{{1&amp;lt;noinclude&amp;gt;|country showdata&amp;lt;/noinclude&amp;gt;}}}&lt;br /&gt;
| hatnote = {{Hatnote|This template contains data that applies to the [[Republic of Ireland|sovereign state]]. For the [[Ireland|entire island]], see [[Template:Country data Ireland]].}}&lt;br /&gt;
| alias = Republic of Ireland&lt;br /&gt;
| shortname alias = Ireland&lt;br /&gt;
| flag alias = Flag of Ireland.svg&lt;br /&gt;
| link alias-naval = Irish Naval Service&lt;br /&gt;
| flag alias-air force = Flag of the Irish Air Corps.svg&lt;br /&gt;
| link alias-air force = Irish Air Corps&lt;br /&gt;
| flag alias-army = Flag of the Irish Defence Forces.svg&lt;br /&gt;
| link alias-army = Irish Army&lt;br /&gt;
| link alias-navy = Irish Naval Service&lt;br /&gt;
| link alias-football = Republic of Ireland {{{mw|}}} national {{{age|}}} football {{{class|}}} team&lt;br /&gt;
| name alias-football = Republic of Ireland&lt;br /&gt;
| flag alias-rugby union = Flag placeholder.svg&amp;lt;!-- (IRFU flag.svg) placeholders are intentional: use Template:Country data Ireland for cross-island teams --&amp;gt;&lt;br /&gt;
| border-rugby union =&lt;br /&gt;
| flag alias-cricket = Flag placeholder.svg&amp;lt;!-- (Cricket Ireland flag.svg) placeholders are intentional: use Template:Country data Ireland for cross-island teams --&amp;gt;&lt;br /&gt;
| border-cricket =&lt;br /&gt;
| link alias-netball = Republic of Ireland national netball team&lt;br /&gt;
| name alias-netball = Republic of Ireland&lt;br /&gt;
| size = {{{size|}}}&lt;br /&gt;
| name = {{{name|}}}&lt;br /&gt;
| altlink = {{{altlink|}}}&lt;br /&gt;
| altvar = {{{altvar|}}}&lt;br /&gt;
| variant = {{{variant|}}}&lt;br /&gt;
&amp;lt;noinclude&amp;gt;&lt;br /&gt;
| redir1 = IRL&lt;br /&gt;
| related1 = Ireland&lt;br /&gt;
| related2 = Irish Free State&lt;br /&gt;
| cat = Ireland republic&lt;br /&gt;
&amp;lt;/noinclude&amp;gt;&lt;br /&gt;
}}&lt;/div&gt;</summary>
		<author><name>TheDartsWikiSysop</name></author>
	</entry>
	<entry>
		<id>https://thedartswiki.donthurry.com/index.php?title=Country_data_Lithuania&amp;diff=891</id>
		<title>Country data Lithuania</title>
		<link rel="alternate" type="text/html" href="https://thedartswiki.donthurry.com/index.php?title=Country_data_Lithuania&amp;diff=891"/>
		<updated>2023-04-25T20:15:02Z</updated>

		<summary type="html">&lt;p&gt;TheDartsWikiSysop: 1 revision imported&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{ {{{1&amp;lt;noinclude&amp;gt;|country showdata&amp;lt;/noinclude&amp;gt;}}}&lt;br /&gt;
| alias = Lithuania&lt;br /&gt;
| flag alias = Flag of Lithuania.svg&lt;br /&gt;
| flag alias-1918 = Flag of Lithuania 1918-1940.svg&lt;br /&gt;
| flag alias-1988 = Flag of Lithuania (1988-2004).svg&lt;br /&gt;
| flag alias-naval = Naval Ensign of Lithuania.svg&lt;br /&gt;
| link alias-naval = Lithuanian Naval Force&lt;br /&gt;
| flag alias-military=Flag of the Lithuanian Armed Forces.png&lt;br /&gt;
| link alias-military=Lithuanian Armed Forces&lt;br /&gt;
| flag alias-army = Flag of the Lithuanian Army.svg&lt;br /&gt;
| link alias-army = Lithuanian Land Force&lt;br /&gt;
| flag alias-navy=Flag of Lithuania (state).svg&lt;br /&gt;
| link alias-navy = Lithuanian Naval Force&lt;br /&gt;
| flag alias-air force=Air Force Ensign of Lithuania.svg&lt;br /&gt;
| link alias-air force=Lithuanian Air Force&lt;br /&gt;
| size = {{{size|}}}&lt;br /&gt;
| name = {{{name|}}}&lt;br /&gt;
| altlink = {{{altlink|}}}&lt;br /&gt;
| altvar = {{{altvar|}}}&lt;br /&gt;
| variant = {{{variant|}}}&lt;br /&gt;
&amp;lt;noinclude&amp;gt;&lt;br /&gt;
| var1 = 1918&lt;br /&gt;
| var2 = 1988&lt;br /&gt;
| redir1 = LTU&lt;br /&gt;
| related1 = Lithuanian SSR&lt;br /&gt;
&amp;lt;/noinclude&amp;gt;&lt;br /&gt;
}}&lt;/div&gt;</summary>
		<author><name>TheDartsWikiSysop</name></author>
	</entry>
	<entry>
		<id>https://thedartswiki.donthurry.com/index.php?title=Country_data_England&amp;diff=889</id>
		<title>Country data England</title>
		<link rel="alternate" type="text/html" href="https://thedartswiki.donthurry.com/index.php?title=Country_data_England&amp;diff=889"/>
		<updated>2023-04-25T20:15:02Z</updated>

		<summary type="html">&lt;p&gt;TheDartsWikiSysop: 1 revision imported&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{ {{{1&amp;lt;noinclude&amp;gt;|country showdata&amp;lt;/noinclude&amp;gt;}}}&lt;br /&gt;
| alias = England&lt;br /&gt;
| flag alias = Flag of England.svg&lt;br /&gt;
| flag alias-naval = English White Ensign 1620.svg&lt;br /&gt;
| link alias-naval = Royal Navy&lt;br /&gt;
| flag alias-navy = English White Ensign 1620.svg&lt;br /&gt;
| link alias-navy = Royal Navy&lt;br /&gt;
| link alias-cricket = England {{{mw|}}} {{{age|}}} cricket team&lt;br /&gt;
| {{#ifeq:{{{altlink}}}|A national rugby union team|link alias-rugby union|empty}} = England Saxons&lt;br /&gt;
| size = {{{size|}}}&lt;br /&gt;
| name = {{{name|}}}&lt;br /&gt;
| variant = {{{variant|}}}&lt;br /&gt;
| altlink = {{{altlink|}}}&lt;br /&gt;
| altvar = {{{altvar|}}}&lt;br /&gt;
&amp;lt;noinclude&amp;gt;&lt;br /&gt;
| redir1 = ENG&lt;br /&gt;
&amp;lt;/noinclude&amp;gt;&lt;br /&gt;
}}&lt;/div&gt;</summary>
		<author><name>TheDartsWikiSysop</name></author>
	</entry>
	<entry>
		<id>https://thedartswiki.donthurry.com/index.php?title=Country_data_Slovakia&amp;diff=887</id>
		<title>Country data Slovakia</title>
		<link rel="alternate" type="text/html" href="https://thedartswiki.donthurry.com/index.php?title=Country_data_Slovakia&amp;diff=887"/>
		<updated>2023-04-25T20:15:02Z</updated>

		<summary type="html">&lt;p&gt;TheDartsWikiSysop: 1 revision imported&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{ {{{1&amp;lt;noinclude&amp;gt;|country showdata&amp;lt;/noinclude&amp;gt;}}}&lt;br /&gt;
| alias = Slovakia&lt;br /&gt;
| flag alias = Flag of Slovakia.svg&lt;br /&gt;
| flag alias-1939 = Flag of Slovakia (1939–1945).svg&lt;br /&gt;
| flag alias-1990 = Flag of Slovakia (1939–1945).svg&lt;br /&gt;
| link alias-army = Ground Forces of the Slovak Republic{{!}}Slovak Ground Forces&lt;br /&gt;
| size = {{{size|}}}&lt;br /&gt;
| name = {{{name|}}}&lt;br /&gt;
| altlink = {{{altlink|}}}&lt;br /&gt;
| variant = {{{variant|}}}&lt;br /&gt;
&amp;lt;noinclude&amp;gt;&lt;br /&gt;
| var1 = 1939&lt;br /&gt;
| var2 = 1990&lt;br /&gt;
| redir1 = SVK&lt;br /&gt;
| related1 = Czechoslovakia&lt;br /&gt;
&amp;lt;/noinclude&amp;gt;&lt;br /&gt;
}}&lt;/div&gt;</summary>
		<author><name>TheDartsWikiSysop</name></author>
	</entry>
	<entry>
		<id>https://thedartswiki.donthurry.com/index.php?title=Country_data_Latvia&amp;diff=885</id>
		<title>Country data Latvia</title>
		<link rel="alternate" type="text/html" href="https://thedartswiki.donthurry.com/index.php?title=Country_data_Latvia&amp;diff=885"/>
		<updated>2023-04-25T20:15:02Z</updated>

		<summary type="html">&lt;p&gt;TheDartsWikiSysop: 1 revision imported&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{ {{{1&amp;lt;noinclude&amp;gt;|country showdata&amp;lt;/noinclude&amp;gt;}}}&lt;br /&gt;
| alias = Latvia&lt;br /&gt;
| flag alias = Flag of Latvia.svg&lt;br /&gt;
| flag alias-naval = Naval Ensign of Latvia.svg&lt;br /&gt;
| link alias-naval = Latvian Naval Forces&lt;br /&gt;
| link alias-army = Latvian Land Forces&lt;br /&gt;
| flag alias-navy = Naval Ensign of Latvia.svg&lt;br /&gt;
| link alias-navy = Latvian Naval Forces&lt;br /&gt;
| size = {{{size|}}}&lt;br /&gt;
| name = {{{name|}}}&lt;br /&gt;
| altlink = {{{altlink|}}}&lt;br /&gt;
| variant = {{{variant|}}}&lt;br /&gt;
&amp;lt;noinclude&amp;gt;&lt;br /&gt;
| redir1 = LVA&lt;br /&gt;
| redir2 = LAT&lt;br /&gt;
| related1 = Latvian SSR&lt;br /&gt;
&amp;lt;/noinclude&amp;gt;&lt;br /&gt;
}}&lt;/div&gt;</summary>
		<author><name>TheDartsWikiSysop</name></author>
	</entry>
	<entry>
		<id>https://thedartswiki.donthurry.com/index.php?title=Country_data_Czech_Republic&amp;diff=883</id>
		<title>Country data Czech Republic</title>
		<link rel="alternate" type="text/html" href="https://thedartswiki.donthurry.com/index.php?title=Country_data_Czech_Republic&amp;diff=883"/>
		<updated>2023-04-25T20:15:02Z</updated>

		<summary type="html">&lt;p&gt;TheDartsWikiSysop: 1 revision imported&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{ {{{1&amp;lt;noinclude&amp;gt;|country showdata&amp;lt;/noinclude&amp;gt;}}}&lt;br /&gt;
| alias = Czech Republic&lt;br /&gt;
| flag alias = Flag of the Czech Republic.svg&lt;br /&gt;
| flag alias-1990 = Flag of Bohemia.svg&lt;br /&gt;
| flag alias-air force = Flag of the Czech Air Force.svg&lt;br /&gt;
| link alias-air force = Czech Air Force&lt;br /&gt;
| flag alias-army = Flag of the Czech Land Force.svg&lt;br /&gt;
| link alias-army = Czech Land Forces&lt;br /&gt;
| size = {{{size|}}}&lt;br /&gt;
| name = {{{name|}}}&lt;br /&gt;
| variant = {{{variant|}}}&lt;br /&gt;
| altlink = {{{altlink|}}}&lt;br /&gt;
| altvar = {{{altvar|}}}&lt;br /&gt;
&amp;lt;noinclude&amp;gt;&lt;br /&gt;
| var1 = 1990&lt;br /&gt;
| redir1 = CZE&lt;br /&gt;
| redir2 = Czechia&lt;br /&gt;
| related1 = Czechoslovakia&lt;br /&gt;
| related2 = Bohemia&lt;br /&gt;
| related3 = Slovakia&lt;br /&gt;
&amp;lt;/noinclude&amp;gt;&lt;br /&gt;
}}&lt;/div&gt;</summary>
		<author><name>TheDartsWikiSysop</name></author>
	</entry>
	<entry>
		<id>https://thedartswiki.donthurry.com/index.php?title=Country_data_Slovenia&amp;diff=881</id>
		<title>Country data Slovenia</title>
		<link rel="alternate" type="text/html" href="https://thedartswiki.donthurry.com/index.php?title=Country_data_Slovenia&amp;diff=881"/>
		<updated>2023-04-25T20:15:02Z</updated>

		<summary type="html">&lt;p&gt;TheDartsWikiSysop: 1 revision imported&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{ {{{1&amp;lt;noinclude&amp;gt;|country showdata&amp;lt;/noinclude&amp;gt;}}}&lt;br /&gt;
| alias = Slovenia&lt;br /&gt;
| flag alias = Flag of Slovenia.svg&lt;br /&gt;
| link alias-army = Slovenian Ground Force&lt;br /&gt;
| link alias-military=Slovenian Armed Forces&lt;br /&gt;
| flag alias-military=Flag of the Slovenian Armed Forces.svg&lt;br /&gt;
| flag alias-naval=Naval Jack of Slovenia.svg&lt;br /&gt;
| link alias-naval=Slovenian Navy&lt;br /&gt;
| link-alias-navy=Slovenian Navy&lt;br /&gt;
| size = {{{size|}}}&lt;br /&gt;
| variant = {{{variant|}}}&lt;br /&gt;
| name = {{{name|}}}&lt;br /&gt;
| altlink = {{{altlink|}}}&lt;br /&gt;
&amp;lt;noinclude&amp;gt;&lt;br /&gt;
| redir1 = SVN&lt;br /&gt;
| redir2 = SLO&lt;br /&gt;
| related1 = SR Slovenia&lt;br /&gt;
&amp;lt;/noinclude&amp;gt;&lt;br /&gt;
}}&lt;/div&gt;</summary>
		<author><name>TheDartsWikiSysop</name></author>
	</entry>
	<entry>
		<id>https://thedartswiki.donthurry.com/index.php?title=Country_data_Colombia&amp;diff=879</id>
		<title>Country data Colombia</title>
		<link rel="alternate" type="text/html" href="https://thedartswiki.donthurry.com/index.php?title=Country_data_Colombia&amp;diff=879"/>
		<updated>2023-04-25T20:15:02Z</updated>

		<summary type="html">&lt;p&gt;TheDartsWikiSysop: 1 revision imported&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{ {{{1&amp;lt;noinclude&amp;gt;|country showdata&amp;lt;/noinclude&amp;gt;}}}&lt;br /&gt;
| alias = Colombia&lt;br /&gt;
| flag alias = Flag of Colombia.svg&lt;br /&gt;
| flag alias-1861 = Flag of Colombia (WFB 2013).gif&lt;br /&gt;
| flag alias-2004 = Flag of Colombia (2004 World Factbook).gif&lt;br /&gt;
| flag alias-civil = Civil Ensign of Colombia.svg&lt;br /&gt;
| flag alias-naval = Naval Ensign of Colombia.svg&lt;br /&gt;
| link alias-naval = Colombian National Navy&lt;br /&gt;
| flag alias-army = Flag of the Colombian Army.svg&lt;br /&gt;
| link alias-army = Colombian National Army&lt;br /&gt;
| flag alias-air force = Flag of the Colombian Air Force.svg&lt;br /&gt;
| link alias-air force = Colombian Air Force&lt;br /&gt;
| flag alias-marines=Flag of the Colombian Naval Infantry.png&lt;br /&gt;
| link alias-marines=Colombian Naval Infantry&lt;br /&gt;
| link alias-navy = Colombian National Navy &lt;br /&gt;
| flag alias-navy = Flag of the Colombian Navy.png&lt;br /&gt;
| size = {{{size|}}}&lt;br /&gt;
| name = {{{name|}}}&lt;br /&gt;
| altlink = {{{altlink|}}}&lt;br /&gt;
| variant = {{{variant|}}}&lt;br /&gt;
&amp;lt;noinclude&amp;gt;&lt;br /&gt;
| var1 = 1861&lt;br /&gt;
| var2 = 2004&lt;br /&gt;
| var3 = civil&lt;br /&gt;
| redir1 = COL&lt;br /&gt;
&amp;lt;/noinclude&amp;gt;&lt;br /&gt;
}}&lt;/div&gt;</summary>
		<author><name>TheDartsWikiSysop</name></author>
	</entry>
	<entry>
		<id>https://thedartswiki.donthurry.com/index.php?title=Country_data_Chile&amp;diff=877</id>
		<title>Country data Chile</title>
		<link rel="alternate" type="text/html" href="https://thedartswiki.donthurry.com/index.php?title=Country_data_Chile&amp;diff=877"/>
		<updated>2023-04-25T20:15:02Z</updated>

		<summary type="html">&lt;p&gt;TheDartsWikiSysop: 1 revision imported&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{ {{{1&amp;lt;noinclude&amp;gt;|country showdata&amp;lt;/noinclude&amp;gt;}}}&lt;br /&gt;
| alias = Chile&lt;br /&gt;
| flag alias = Flag of Chile.svg&lt;br /&gt;
| flag alias-mapuche = Ancient mapuche flag.svg&lt;br /&gt;
| flag alias-lautaro = Lautaro flag.svg&lt;br /&gt;
| flag alias-spain = Flag of Cross of Burgundy.svg&lt;br /&gt;
| flag alias-spain1 = Flag of Spain (1785–1873, 1875–1931).svg&lt;br /&gt;
| flag alias-1812 = Flag of Chile (1812-1814).svg&lt;br /&gt;
| flag alias-1812a = Flag of Chile (1812-1814, alternative).svg&lt;br /&gt;
| flag alias-andes = Bandera de la Provincia de Mendoza.svg&lt;br /&gt;
| flag alias-1817 = Flag of Chile (1817-1818).svg&lt;br /&gt;
| flag alias-1817_proposal = Flag of Chile (1817-1818, 2nd).svg&lt;br /&gt;
| flag alias-1818 = Flag of Chile (1818).svg&lt;br /&gt;
| flag alias-1818a = Flag of Chile (1818-1854).svg&lt;br /&gt;
| flag alias-1819 = State Ensign of Chile (1819-1834).svg&lt;br /&gt;
| flag alias-expedition = Flag of the Liberating Expedition of Peru.svg&lt;br /&gt;
| flag alias-1826 = Flag of Chile (Civil Use, 1826-1854).svg&lt;br /&gt;
| flag alias-ap = Flag of the Kingdom of Araucanía and Patagonia.svg&lt;br /&gt;
| flag alias-easter1 = Easter Island flag 1876 to 1888.svg&lt;br /&gt;
| flag alias-easter = Flag of Rapa Nui, Chile.svg&lt;br /&gt;
| flag alias-president = Bandera del presidente de Chile.svg&lt;br /&gt;
| flag alias-naval = Naval Jack of Chile.svg&lt;br /&gt;
| link alias-naval = Chilean Navy&lt;br /&gt;
| flag alias-air force = Flag of the Chilean Air Force.svg&lt;br /&gt;
| link alias-air force =Chilean Air Force&lt;br /&gt;
| flag alias-army = Flag of the Chilean Army.svg&lt;br /&gt;
| link alias-army = Chilean Army&lt;br /&gt;
| flag alias-navy = Flag of Chile.svg&lt;br /&gt;
| link alias-navy = Chilean Navy&lt;br /&gt;
| size = {{{size|}}}&lt;br /&gt;
| name = {{{name|}}}&lt;br /&gt;
| altlink = {{{altlink|}}}&lt;br /&gt;
| variant = {{{variant|}}}&lt;br /&gt;
&amp;lt;noinclude&amp;gt;&lt;br /&gt;
| var1 = mapuche&lt;br /&gt;
| var2 = lautaro&lt;br /&gt;
| var3 = spain&lt;br /&gt;
| var4 = spain1&lt;br /&gt;
| var5 = 1812&lt;br /&gt;
| var6 = 1812a&lt;br /&gt;
| var7 = andes&lt;br /&gt;
| var8 = 1817&lt;br /&gt;
| var9 = 1817_proposal&lt;br /&gt;
| var10 = 1818&lt;br /&gt;
| var11 = 1818a&lt;br /&gt;
| var12 = 1819&lt;br /&gt;
| var13 = expedition&lt;br /&gt;
| var14 = 1826&lt;br /&gt;
| var15 = ap&lt;br /&gt;
| var16 = easter1&lt;br /&gt;
| var17 = easter&lt;br /&gt;
| var18 = president&lt;br /&gt;
| redir1 = CHL&lt;br /&gt;
| redir2 = CHI&lt;br /&gt;
&amp;lt;/noinclude&amp;gt;&lt;br /&gt;
}}&lt;/div&gt;</summary>
		<author><name>TheDartsWikiSysop</name></author>
	</entry>
	<entry>
		<id>https://thedartswiki.donthurry.com/index.php?title=No_ping&amp;diff=875</id>
		<title>No ping</title>
		<link rel="alternate" type="text/html" href="https://thedartswiki.donthurry.com/index.php?title=No_ping&amp;diff=875"/>
		<updated>2023-04-25T20:15:02Z</updated>

		<summary type="html">&lt;p&gt;TheDartsWikiSysop: 1 revision imported&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{#invoke:No ping|main}}&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>TheDartsWikiSysop</name></author>
	</entry>
	<entry>
		<id>https://thedartswiki.donthurry.com/index.php?title=Country_data_Greece&amp;diff=873</id>
		<title>Country data Greece</title>
		<link rel="alternate" type="text/html" href="https://thedartswiki.donthurry.com/index.php?title=Country_data_Greece&amp;diff=873"/>
		<updated>2023-04-25T20:15:02Z</updated>

		<summary type="html">&lt;p&gt;TheDartsWikiSysop: 1 revision imported&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{ {{{1&amp;lt;noinclude&amp;gt;|country showdata&amp;lt;/noinclude&amp;gt;}}}&lt;br /&gt;
| alias = Greece&lt;br /&gt;
| flag alias = Flag of Greece.svg&lt;br /&gt;
| flag alias-old = Flag of Greece (1822-1978).svg&lt;br /&gt;
| flag alias-1970 = Flag of Greece (1970-1975).svg&lt;br /&gt;
| flag alias-royal = State flag of Greece (1863–1924;1935–73).svg&lt;br /&gt;
| flag alias-otto = Flag of Greece (1822-1978).svg&lt;br /&gt;
| flag alias-army = Hellenic Army War Flag.svg&lt;br /&gt;
| link alias-army = Hellenic Army&lt;br /&gt;
| border-army=&lt;br /&gt;
| flag alias-air force=Fin Flash of Greece.svg&lt;br /&gt;
| link alias-air force=Hellenic Air Force&lt;br /&gt;
| flag alias-royalnavy = Naval Ensign of Kingdom of Greece.svg&lt;br /&gt;
| link alias-naval = Hellenic Navy&lt;br /&gt;
| flag alias-navy = Flag of Greece.svg&lt;br /&gt;
| link alias-navy = Hellenic Navy&lt;br /&gt;
| link alias-military = Hellenic Armed Forces&lt;br /&gt;
| link alias-royalnavy = Royal Hellenic Navy&lt;br /&gt;
| size = {{{size|}}}&lt;br /&gt;
| name = {{{name|}}}&lt;br /&gt;
| altlink = {{{altlink|}}}&lt;br /&gt;
| variant = {{{variant|}}}&lt;br /&gt;
&amp;lt;noinclude&amp;gt;&lt;br /&gt;
| var1 = old&lt;br /&gt;
| var2 = 1970&lt;br /&gt;
| var3 = royal&lt;br /&gt;
| var4 = otto&lt;br /&gt;
| var5 = royalnavy&lt;br /&gt;
| redir1 = GRC&lt;br /&gt;
| redir2 = GRE&lt;br /&gt;
&amp;lt;/noinclude&amp;gt;&lt;br /&gt;
}}&lt;/div&gt;</summary>
		<author><name>TheDartsWikiSysop</name></author>
	</entry>
	<entry>
		<id>https://thedartswiki.donthurry.com/index.php?title=Country_data_Bosnia_and_Herzegovina&amp;diff=871</id>
		<title>Country data Bosnia and Herzegovina</title>
		<link rel="alternate" type="text/html" href="https://thedartswiki.donthurry.com/index.php?title=Country_data_Bosnia_and_Herzegovina&amp;diff=871"/>
		<updated>2023-04-25T20:15:02Z</updated>

		<summary type="html">&lt;p&gt;TheDartsWikiSysop: 1 revision imported&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{ {{{1&amp;lt;noinclude&amp;gt;|country showdata&amp;lt;/noinclude&amp;gt;}}}&lt;br /&gt;
| alias = Bosnia and Herzegovina&lt;br /&gt;
| flag alias = Flag of Bosnia and Herzegovina.svg&lt;br /&gt;
| flag alias-1992 = Flag of Bosnia and Herzegovina (1992–1998).svg&lt;br /&gt;
| link alias-army = Bosnian Ground Forces&lt;br /&gt;
| size = {{{size|}}}&lt;br /&gt;
| name = {{{name|}}}&lt;br /&gt;
| altlink = {{{altlink|}}}&lt;br /&gt;
| variant = {{{variant|}}}&lt;br /&gt;
&amp;lt;noinclude&amp;gt;&lt;br /&gt;
| var1 = 1992&lt;br /&gt;
| redir1 = BIH&lt;br /&gt;
| redir2 = Bosnia-Herzegovina&lt;br /&gt;
| related1 = SR Bosnia and Herzegovina&lt;br /&gt;
| related2 = Republika Srpska&lt;br /&gt;
| related3 = Federation of Bosnia and Herzegovina&lt;br /&gt;
&amp;lt;/noinclude&amp;gt;&lt;br /&gt;
}}&lt;/div&gt;</summary>
		<author><name>TheDartsWikiSysop</name></author>
	</entry>
	<entry>
		<id>https://thedartswiki.donthurry.com/index.php?title=Country_data_Venezuela&amp;diff=869</id>
		<title>Country data Venezuela</title>
		<link rel="alternate" type="text/html" href="https://thedartswiki.donthurry.com/index.php?title=Country_data_Venezuela&amp;diff=869"/>
		<updated>2023-04-25T20:15:01Z</updated>

		<summary type="html">&lt;p&gt;TheDartsWikiSysop: 1 revision imported&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{ {{{1&amp;lt;noinclude&amp;gt;|country showdata&amp;lt;/noinclude&amp;gt;}}}&lt;br /&gt;
| alias = Venezuela&lt;br /&gt;
| flag alias = Flag of Venezuela.svg&lt;br /&gt;
| flag alias-1836 = Flag of Venezuela (1836–1859).svg&lt;br /&gt;
| flag alias-1859 = Flag of Venezuela (1859–1863).svg&lt;br /&gt;
| flag alias-1863 = Flag of Venezuela (1863–1905).svg&lt;br /&gt;
| flag alias-1905 = Flag of Venezuela (1905–1930).svg&lt;br /&gt;
| flag alias-1930 = Flag of Venezuela (1930–1954).svg&lt;br /&gt;
| flag alias-1954 = Flag of Venezuela (1954–2006).svg&lt;br /&gt;
| flag alias-army=Flag of the Venezuelan Army.png&lt;br /&gt;
| link alias-army= Venezuelan Army&lt;br /&gt;
| flag alias-air force = Flag of the Venezuelan Air Force.svg&lt;br /&gt;
| link alias-air force = Bolivarian Military Aviation{{!}}Venezuelan Military Aviation&lt;br /&gt;
| flag alias-naval = Flag of Venezuela (state).svg&lt;br /&gt;
| link alias-naval = Bolivarian Navy of Venezuela&lt;br /&gt;
| flag alias-navy = Flag of Venezuela (state).svg&lt;br /&gt;
| link alias-navy = Bolivarian Navy of Venezuela&lt;br /&gt;
| flag alias-football = Flag of Venezuela (state).svg&lt;br /&gt;
| flag alias-beach soccer = Flag of Venezuela (state).svg&lt;br /&gt;
| flag alias-futsal = Flag of Venezuela (state).svg&lt;br /&gt;
| flag alias-state = Flag of Venezuela (state).svg&lt;br /&gt;
| size = {{{size|}}}&lt;br /&gt;
| name = {{{name|}}}&lt;br /&gt;
| altlink = {{{altlink|}}}&lt;br /&gt;
| altvar = {{{altvar|}}}&lt;br /&gt;
| variant = {{{variant|}}}&lt;br /&gt;
&amp;lt;noinclude&amp;gt;&lt;br /&gt;
| var1 = 1836&lt;br /&gt;
| var2 = 1859&lt;br /&gt;
| var3 = 1863&lt;br /&gt;
| var4 = 1905&lt;br /&gt;
| var5 = 1930&lt;br /&gt;
| var6 = 1954&lt;br /&gt;
| var7 = state&lt;br /&gt;
| redir1 = VEN&lt;br /&gt;
&amp;lt;/noinclude&amp;gt;&lt;br /&gt;
}}&lt;/div&gt;</summary>
		<author><name>TheDartsWikiSysop</name></author>
	</entry>
	<entry>
		<id>https://thedartswiki.donthurry.com/index.php?title=Country_data_Uruguay&amp;diff=867</id>
		<title>Country data Uruguay</title>
		<link rel="alternate" type="text/html" href="https://thedartswiki.donthurry.com/index.php?title=Country_data_Uruguay&amp;diff=867"/>
		<updated>2023-04-25T20:15:01Z</updated>

		<summary type="html">&lt;p&gt;TheDartsWikiSysop: 1 revision imported&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{ {{{1&amp;lt;noinclude&amp;gt;|country showdata&amp;lt;/noinclude&amp;gt;}}}&lt;br /&gt;
| alias = Uruguay&lt;br /&gt;
| flag alias = Flag of Uruguay.svg&lt;br /&gt;
| flag alias-1828 = Flag of Uruguay (1828-1830).svg&lt;br /&gt;
| link alias-naval = National Navy of Uruguay&lt;br /&gt;
| flag alias-army = Flag of Uruguayan Army.jpg&lt;br /&gt;
| link alias-army = National Army (Uruguay){{!}}National Army of Uruguay&lt;br /&gt;
| link alias-air force = Uruguayan Air Force&lt;br /&gt;
| flag alias-air force = Flag of the Uruguayan Air Force.svg&lt;br /&gt;
| link alias-navy = National Navy of Uruguay&lt;br /&gt;
| size = {{{size|}}}&lt;br /&gt;
| name = {{{name|}}}&lt;br /&gt;
| altlink = {{{altlink|}}}&lt;br /&gt;
| variant = {{{variant|}}}&lt;br /&gt;
&amp;lt;noinclude&amp;gt;&lt;br /&gt;
| var1 = 1828&lt;br /&gt;
| redir1 = URY&lt;br /&gt;
| redir2 = URU&lt;br /&gt;
&amp;lt;/noinclude&amp;gt;&lt;br /&gt;
}}&lt;/div&gt;</summary>
		<author><name>TheDartsWikiSysop</name></author>
	</entry>
	<entry>
		<id>https://thedartswiki.donthurry.com/index.php?title=Country_data_Serbia&amp;diff=865</id>
		<title>Country data Serbia</title>
		<link rel="alternate" type="text/html" href="https://thedartswiki.donthurry.com/index.php?title=Country_data_Serbia&amp;diff=865"/>
		<updated>2023-04-25T20:15:01Z</updated>

		<summary type="html">&lt;p&gt;TheDartsWikiSysop: 1 revision imported&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{ {{{1&amp;lt;noinclude&amp;gt;|country showdata&amp;lt;/noinclude&amp;gt;}}}&lt;br /&gt;
| alias = Serbia&lt;br /&gt;
| flag alias = Flag of Serbia.svg&lt;br /&gt;
| flag alias-civil = Civil Flag of Serbia.svg&lt;br /&gt;
| flag alias-1835 = Flag of Serbia (1835-1882).svg&lt;br /&gt;
| flag alias-1882 = State Flag of Serbia (1882-1918).svg&lt;br /&gt;
| flag alias-1941 = Flag of Serbia, 1941-1944.svg&lt;br /&gt;
| flag alias-1946 = Flag of SR Serbia.svg&lt;br /&gt;
| flag alias-1991 = Flag of Serbia (1992–2004).svg&lt;br /&gt;
| flag alias-2004 = Flag of Serbia (2004–2010).svg&lt;br /&gt;
| size = {{{size|}}}&lt;br /&gt;
| name = {{{name|}}}&lt;br /&gt;
| altlink = {{{altlink|}}}&lt;br /&gt;
| variant = {{{variant|}}}&lt;br /&gt;
| flag alias-military = Standard of the Serbian Armed Forces (front).svg&lt;br /&gt;
| link alias-military = Serbian Armed Forces&lt;br /&gt;
| flag alias-air force = Flag of the Serbian Air Force.svg&lt;br /&gt;
| link alias-air force = Serbian Air Force and Air Defence&lt;br /&gt;
| flag alias-army = Flag of the Serbian Land Forces.svg&lt;br /&gt;
| link alias-army = Serbian Army&lt;br /&gt;
| flag alias-navy = Naval Ensign of Serbia.svg&lt;br /&gt;
| link alias-navy = Serbian River Flotilla&lt;br /&gt;
| flag alias-naval = Naval Ensign of Serbia.svg&lt;br /&gt;
| link alias-naval = Serbian River Flotilla&amp;lt;noinclude&amp;gt;&lt;br /&gt;
| var1 = civil&lt;br /&gt;
| var2 = 1835&lt;br /&gt;
| var3 = 1882&lt;br /&gt;
| var4 = 1941&lt;br /&gt;
| var5 = 1946&lt;br /&gt;
| var6 = 1991&lt;br /&gt;
| var7 = 2004&lt;br /&gt;
| redir1 = SRB&lt;br /&gt;
| related1 = Kingdom of Serbia&lt;br /&gt;
| related2 = SR Serbia&lt;br /&gt;
| related3 = Serbia and Montenegro&lt;br /&gt;
| related4 = FR Yugoslavia&lt;br /&gt;
&amp;lt;/noinclude&amp;gt;&lt;br /&gt;
}}&lt;/div&gt;</summary>
		<author><name>TheDartsWikiSysop</name></author>
	</entry>
	<entry>
		<id>https://thedartswiki.donthurry.com/index.php?title=Country_data_Poland&amp;diff=863</id>
		<title>Country data Poland</title>
		<link rel="alternate" type="text/html" href="https://thedartswiki.donthurry.com/index.php?title=Country_data_Poland&amp;diff=863"/>
		<updated>2023-04-25T20:15:01Z</updated>

		<summary type="html">&lt;p&gt;TheDartsWikiSysop: 1 revision imported&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{ {{{1&amp;lt;noinclude&amp;gt;|country showdata&amp;lt;/noinclude&amp;gt;}}}&lt;br /&gt;
| alias = Poland&lt;br /&gt;
| flag alias = Flag of Poland.svg&lt;br /&gt;
| flag alias-state = Flag of Poland (with coat of arms).svg&lt;br /&gt;
| flag alias-1815 = Flag of the Congress of Poland.svg&lt;br /&gt;
| flag alias-1919 = Flag of Poland (1919-1928).svg&lt;br /&gt;
| flag alias-1928 = Flag of Poland (1928–1980).svg&lt;br /&gt;
| flag alias-1955 = Flag of Poland (with coat of arms, 1955-1980).svg&lt;br /&gt;
| flag alias-1980 = Flag of Poland (with coat of arms, 1980-1990).svg&lt;br /&gt;
| flag alias-1990 = Flag of Poland (with coat of arms).svg&lt;br /&gt;
| flag alias-naval = PL navy flag IIIRP.svg&lt;br /&gt;
| border-naval =&lt;br /&gt;
| flag alias-naval-1919 = Naval Ensign of IIRP v1.svg&lt;br /&gt;
| border-naval-1919 =&lt;br /&gt;
| flag alias-naval-1946 = Naval Ensign of PRL v1.svg&lt;br /&gt;
| border-naval-1946 =&lt;br /&gt;
| flag alias-naval-auxiliary = Flaga pomocniczych jednostek pływających Polskiej Marynarki Wojennej.svg&lt;br /&gt;
| flag alias-naval-auxiliary-1955 = POL Bandera pjp PRL v1.svg&lt;br /&gt;
| link alias-naval = Polish Navy&lt;br /&gt;
| flag alias-navy = Naval Ensign of Poland.svg&lt;br /&gt;
| border-navy =&lt;br /&gt;
| link alias-navy = Polish Navy&lt;br /&gt;
| flag alias-marines = Flag of the Polish Land Forces.svg&lt;br /&gt;
| border-marines =&lt;br /&gt;
| link alias-marines = Polish 7th Coastal Defense Brigade&lt;br /&gt;
| flag alias-air force = PL air force flag IIIRP.svg&lt;br /&gt;
| border-air force =&lt;br /&gt;
| link alias-air force = Polish Air Force&lt;br /&gt;
| flag alias-army = Flag of the Polish Land Forces.svg&lt;br /&gt;
| border-army =&lt;br /&gt;
| link alias-army = Polish Land Forces&lt;br /&gt;
| size = {{{size|}}}&lt;br /&gt;
| size flag alias-naval = 25px&lt;br /&gt;
| size flag alias-naval-1919 = 25px&lt;br /&gt;
| size flag alias-naval-1946 = 25px&lt;br /&gt;
| size flag alias-air force = 25px&lt;br /&gt;
| name = {{{name|}}}&lt;br /&gt;
| altlink = {{{altlink|}}}&lt;br /&gt;
| variant = {{{variant|}}}&lt;br /&gt;
&amp;lt;noinclude&amp;gt;&lt;br /&gt;
| var1 = state&lt;br /&gt;
| var2 = 1815&lt;br /&gt;
| var3 = 1919&lt;br /&gt;
| var4 = 1928&lt;br /&gt;
| var5 = 1955&lt;br /&gt;
| var6 = 1980&lt;br /&gt;
| var7 = 1990&lt;br /&gt;
| var10 = naval-1919&lt;br /&gt;
| var11 = naval-1946&lt;br /&gt;
| var12 = naval-auxiliary&lt;br /&gt;
| var13 = naval-auxiliary-1955&lt;br /&gt;
| redir1 = POL&lt;br /&gt;
&amp;lt;/noinclude&amp;gt;&lt;br /&gt;
}}&lt;/div&gt;</summary>
		<author><name>TheDartsWikiSysop</name></author>
	</entry>
	<entry>
		<id>https://thedartswiki.donthurry.com/index.php?title=Country_data_Canada&amp;diff=861</id>
		<title>Country data Canada</title>
		<link rel="alternate" type="text/html" href="https://thedartswiki.donthurry.com/index.php?title=Country_data_Canada&amp;diff=861"/>
		<updated>2023-04-25T20:15:01Z</updated>

		<summary type="html">&lt;p&gt;TheDartsWikiSysop: 1 revision imported&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{ {{{1&amp;lt;noinclude&amp;gt;|country showdata&amp;lt;/noinclude&amp;gt;}}}&lt;br /&gt;
| alias = Canada&lt;br /&gt;
| flag alias = Flag of Canada (Pantone).svg&lt;br /&gt;
| flag alias-1867-official = Flag of the United Kingdom.svg&lt;br /&gt;
| flag alias-1868 = Canadian Red Ensign (1868–1921).svg&lt;br /&gt;
| flag alias-1905 = Canadian Red Ensign (1905–1922).svg&lt;br /&gt;
| flag alias-1907 = Canadian Red Ensign (1907–1921).png&lt;br /&gt;
| flag alias-1921 = Canadian Red Ensign (1921–1957).svg&lt;br /&gt;
| flag alias-1957 = Canadian Red Ensign (1957–1965).svg&lt;br /&gt;
| flag alias-1964 = Flag of Canada (1964).svg&lt;br /&gt;
| flag alias-1965 = Flag of Canada (WFB 2000).png&lt;br /&gt;
| flag alias-2004 = Flag of Canada (WFB 2004).gif&lt;br /&gt;
| flag alias-armed forces = Canadian Forces Flag.svg&lt;br /&gt;
| link alias-armed forces = Canadian Armed Forces&lt;br /&gt;
| flag alias-naval = Naval ensign of Canada; Naval jack of Canada (1968–2013).svg&lt;br /&gt;
| link alias-naval = Royal Canadian Navy&lt;br /&gt;
| flag alias-naval-1868 = Canadian Blue Ensign (1868–1921).svg&lt;br /&gt;
| flag alias-naval-1911 = Naval Ensign of the United Kingdom.svg&lt;br /&gt;
| flag alias-naval-1921 = Canadian Blue Ensign (1921–1957).svg&lt;br /&gt;
| flag alias-naval-1957 = Canadian Blue Ensign (1957–1965).svg&lt;br /&gt;
| flag alias-naval-1965 = Flag of Canada (Pantone).svg&lt;br /&gt;
| flag alias-coast guard = Coastguard Flag of Canada.svg&lt;br /&gt;
| link alias-coast guard = Canadian Coast Guard&lt;br /&gt;
| flag alias-air force = Royal Canadian Air Force ensign.svg&lt;br /&gt;
| flag alias-air force-1924 = Ensign of the Royal Canadian Air Force.svg&lt;br /&gt;
| link alias-air force = Royal Canadian Air Force&lt;br /&gt;
| flag alias-army-1939 = Flag of the Canadian Army (1939–1944).svg&lt;br /&gt;
| flag alias-army-1968 = Flag of the Canadian Army (1968–1998).svg&lt;br /&gt;
| flag alias-army-1989 = Flag of the Canadian Army (1968–1998).svg&lt;br /&gt;
| flag alias-army-2013 = Flag of the Canadian Army (2013–2016).svg&lt;br /&gt;
| flag alias-army = Flag of the Canadian Army.svg&lt;br /&gt;
| link alias-army = Canadian Army&lt;br /&gt;
| flag alias-military = Flag of the Canadian Forces.svg&lt;br /&gt;
| link alias-military = Canadian Armed Forces&lt;br /&gt;
| flag alias-navy = Naval ensign of Canada; Naval jack of Canada (1968–2013).svg&lt;br /&gt;
| link alias-navy = Royal Canadian Navy&lt;br /&gt;
| link alias-football = Canada {{{mw|men's}}} national {{{age|}}} soccer team&lt;br /&gt;
| size = {{{size|}}}&lt;br /&gt;
| name = {{{name|}}}&lt;br /&gt;
| altlink = {{{altlink|}}}&lt;br /&gt;
| altvar = {{{altvar|}}}&lt;br /&gt;
| variant = {{{variant|}}}&lt;br /&gt;
&amp;lt;noinclude&amp;gt;&lt;br /&gt;
| var1 = 1867-official&lt;br /&gt;
| var2 = 1868&lt;br /&gt;
| var3 = 1905&lt;br /&gt;
| var4 = 1907&lt;br /&gt;
| var5 = 1921&lt;br /&gt;
| var6 = 1957&lt;br /&gt;
| var7 = 1964&lt;br /&gt;
| var8 = naval-1868&lt;br /&gt;
| var9 = naval-1911&lt;br /&gt;
| var10 = naval-1921&lt;br /&gt;
| var11 = naval-1957&lt;br /&gt;
| var12 = naval-1965&lt;br /&gt;
| var13 = air force-1924&lt;br /&gt;
| var14 = army-1939&lt;br /&gt;
| var15 = army-1968&lt;br /&gt;
| var16 = army-1989&lt;br /&gt;
| var17 = army-2013&lt;br /&gt;
| redir1 = CAN&lt;br /&gt;
| redir2 = Province of Canada&lt;br /&gt;
| redir3 = Dominion of Canada&lt;br /&gt;
&amp;lt;/noinclude&amp;gt;&lt;br /&gt;
}}&lt;/div&gt;</summary>
		<author><name>TheDartsWikiSysop</name></author>
	</entry>
	<entry>
		<id>https://thedartswiki.donthurry.com/index.php?title=Country_data_Bulgaria&amp;diff=859</id>
		<title>Country data Bulgaria</title>
		<link rel="alternate" type="text/html" href="https://thedartswiki.donthurry.com/index.php?title=Country_data_Bulgaria&amp;diff=859"/>
		<updated>2023-04-25T20:15:01Z</updated>

		<summary type="html">&lt;p&gt;TheDartsWikiSysop: 1 revision imported&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{ {{{1&amp;lt;noinclude&amp;gt;|country showdata&amp;lt;/noinclude&amp;gt;}}}&lt;br /&gt;
| alias = Bulgaria&lt;br /&gt;
| flag alias = Flag of Bulgaria.svg&lt;br /&gt;
| flag alias-1878 = Flag of Bulgaria.svg&lt;br /&gt;
| flag alias-1947 = Flag of Bulgaria (1946–1948).svg&lt;br /&gt;
| flag alias-1948 = Flag of Bulgaria (1948–1967).svg&lt;br /&gt;
| flag alias-1967 = Flag of Bulgaria (1967-1971).svg&lt;br /&gt;
| flag alias-1971 = Flag of Bulgaria (1971–1990).svg&lt;br /&gt;
| flag alias-naval-1879 = Naval Ensign of Bulgaria (1878-1944).svg&lt;br /&gt;
| flag alias-naval-1949 = Naval Ensign of Bulgaria (1949-1955).svg&lt;br /&gt;
| flag alias-naval-1955 = Naval Ensign of Bulgaria (1955-1990).svg&lt;br /&gt;
| flag alias-naval-1991 = Naval Ensign of Bulgaria 1991-2005.svg&lt;br /&gt;
| flag alias-naval = Naval Ensign of Bulgaria.svg&lt;br /&gt;
| link alias-naval = Bulgarian Navy&lt;br /&gt;
| flag alias-army = War flag of Bulgaria.svg&lt;br /&gt;
| link alias-army = Bulgarian Land Forces&lt;br /&gt;
| link alias-air force = Bulgarian Air Force&lt;br /&gt;
| flag alias-navy = Naval Ensign of Bulgaria.svg&lt;br /&gt;
| link alias-navy = Bulgarian Navy&lt;br /&gt;
| size = {{{size|}}}&lt;br /&gt;
| name = {{{name|}}}&lt;br /&gt;
| altlink = {{{altlink|}}}&lt;br /&gt;
| variant = {{{variant|}}}&lt;br /&gt;
&amp;lt;noinclude&amp;gt;&lt;br /&gt;
| var1 = 1878&lt;br /&gt;
| var2 = 1947&lt;br /&gt;
| var3 = 1948&lt;br /&gt;
| var4 = 1967&lt;br /&gt;
| var5 = 1971&lt;br /&gt;
| var6 = naval-1879&lt;br /&gt;
| var7 = naval-1949&lt;br /&gt;
| var8 = naval-1955&lt;br /&gt;
| var9 = naval-1991&lt;br /&gt;
| redir1 = BGR&lt;br /&gt;
| redir2 = BUL&lt;br /&gt;
| related1 = Kingdom of Bulgaria&lt;br /&gt;
&amp;lt;/noinclude&amp;gt;&lt;br /&gt;
}}&lt;/div&gt;</summary>
		<author><name>TheDartsWikiSysop</name></author>
	</entry>
	<entry>
		<id>https://thedartswiki.donthurry.com/index.php?title=Country_data_Belgium&amp;diff=857</id>
		<title>Country data Belgium</title>
		<link rel="alternate" type="text/html" href="https://thedartswiki.donthurry.com/index.php?title=Country_data_Belgium&amp;diff=857"/>
		<updated>2023-04-25T20:15:01Z</updated>

		<summary type="html">&lt;p&gt;TheDartsWikiSysop: 1 revision imported&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{ {{{1&amp;lt;noinclude&amp;gt;|country showdata&amp;lt;/noinclude&amp;gt;}}}&lt;br /&gt;
| alias = Belgium&lt;br /&gt;
| flag alias = Flag of Belgium (civil).svg &amp;lt;!-- Not the official flag of Belgium, but see talk page for objections to using the state flag as the default --&amp;gt;&lt;br /&gt;
| flag alias-government = Government Ensign of Belgium.svg&lt;br /&gt;
| flag alias-state = Flag of Belgium.svg&amp;lt;!-- The official flag of Belgium. See talk page for why it is not the default. --&amp;gt;&lt;br /&gt;
| flag alias-1830 = Flag of Belgium (1830).svg&lt;br /&gt;
| flag alias-1858 = Royal ensign of Belgium (1858).svg&lt;br /&gt;
| flag alias-army = Flag of the Belgian Land Component.svg&lt;br /&gt;
| link alias-army = Belgian Land Component&lt;br /&gt;
| flag alias-naval = Naval Ensign of Belgium.svg&lt;br /&gt;
| link alias-naval = Belgian Navy&lt;br /&gt;
| flag alias-air force = Air Force Ensign of Belgium.svg&lt;br /&gt;
| link alias-air force = Belgian Air Component&lt;br /&gt;
| flag alias-navy = Naval Ensign of Belgium.svg&lt;br /&gt;
| link alias-navy = Belgian Navy&lt;br /&gt;
| size = {{{size|}}}&lt;br /&gt;
| name = {{{name|}}}&lt;br /&gt;
| altlink = {{{altlink|}}}&lt;br /&gt;
| variant = {{{variant|}}}&lt;br /&gt;
&amp;lt;noinclude&amp;gt;&lt;br /&gt;
| var1 = state&lt;br /&gt;
| var2 = government&lt;br /&gt;
| var3 = 1830&lt;br /&gt;
| var4 = 1858&lt;br /&gt;
| redir1 = BEL&lt;br /&gt;
&amp;lt;/noinclude&amp;gt;&lt;br /&gt;
}}&lt;/div&gt;</summary>
		<author><name>TheDartsWikiSysop</name></author>
	</entry>
	<entry>
		<id>https://thedartswiki.donthurry.com/index.php?title=Country_data_Soviet_Union&amp;diff=855</id>
		<title>Country data Soviet Union</title>
		<link rel="alternate" type="text/html" href="https://thedartswiki.donthurry.com/index.php?title=Country_data_Soviet_Union&amp;diff=855"/>
		<updated>2023-04-25T20:15:01Z</updated>

		<summary type="html">&lt;p&gt;TheDartsWikiSysop: 1 revision imported&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{ {{{1&amp;lt;noinclude&amp;gt;|country showdata&amp;lt;/noinclude&amp;gt;}}}&lt;br /&gt;
| alias = Soviet Union&lt;br /&gt;
| flag alias = Flag of the Soviet Union.svg&lt;br /&gt;
| flag alias-1922 = Flag of the Soviet Union (1922–1923).svg&lt;br /&gt;
| flag alias-1923 = Flag of the Soviet Union (1924).svg&lt;br /&gt;
| flag alias-1924 = Flag of the Soviet Union (1924–1936).svg&lt;br /&gt;
| flag alias-1936 = Flag of the USSR (1936-1955).svg&lt;br /&gt;
| flag alias-1955 = Flag of the Soviet Union.svg&lt;br /&gt;
| flag alias-coast guard-1924 = USSR, Flag KGB 1924.svg&lt;br /&gt;
| link alias-coast guard-1924 = Soviet Border Troops&lt;br /&gt;
| flag alias-coast guard-1935 = USSR, Flag KGB 1935.svg&lt;br /&gt;
| link alias-coast guard-1935 = Soviet Border Troops&lt;br /&gt;
| flag alias-coast guard = USSR, Flag KGB 1950.svg&lt;br /&gt;
| link alias-coast guard = Soviet Border Troops&lt;br /&gt;
| flag alias-air force=Flag of the Soviet Air Force.svg&lt;br /&gt;
| link alias-air force=Soviet Air Forces&lt;br /&gt;
| flag alias-army = Flag of the Soviet Union.svg&lt;br /&gt;
| link alias-army = Soviet Army&lt;br /&gt;
| flag alias-naval = Naval Ensign of the Soviet Union (1950–1991).svg&lt;br /&gt;
| flag alias-naval-1924 = Naval Ensign of the Soviet Union 1923.svg&lt;br /&gt;
| flag alias-naval-1935 = Naval Ensign of the Soviet Union 1935.svg&lt;br /&gt;
| link alias-naval = Soviet Navy&lt;br /&gt;
| flag alias-navy = Naval Ensign of the Soviet Union (1950–1991).svg&lt;br /&gt;
| link alias-navy = Soviet Navy&lt;br /&gt;
| flag alias-marines= Flag of the Soviet Union.svg&lt;br /&gt;
| link alias-marines= Soviet Naval Infantry&lt;br /&gt;
| flag alias-military= Flag of the Soviet Union.svg&lt;br /&gt;
| link alias-military= Soviet Armed Forces&lt;br /&gt;
| size = {{{size|}}}&lt;br /&gt;
| name = {{#ifeq:{{{name|}}}|USSR|Soviet Union|{{{name|}}}}}&lt;br /&gt;
| altlink = {{{altlink|}}}&lt;br /&gt;
| altvar = {{{altvar|}}}&lt;br /&gt;
| variant = {{{variant|}}}&lt;br /&gt;
&amp;lt;noinclude&amp;gt;&lt;br /&gt;
| var1 = 1922&lt;br /&gt;
| var2 = 1923&lt;br /&gt;
| var3 = 1924&lt;br /&gt;
| var4 = 1936&lt;br /&gt;
| var5 = 1955&lt;br /&gt;
| var6 = naval-1924&lt;br /&gt;
| var7 = naval-1935&lt;br /&gt;
| var8 = coast guard-1924&lt;br /&gt;
| var9 = coast guard-1935&lt;br /&gt;
| redir1 = URS&lt;br /&gt;
| redir2 = USSR&lt;br /&gt;
| redir3 = SUN&lt;br /&gt;
| redir4 = the Soviet Union&lt;br /&gt;
| related1 = Commonwealth of Independent States&lt;br /&gt;
&amp;lt;/noinclude&amp;gt;&lt;br /&gt;
}}&lt;/div&gt;</summary>
		<author><name>TheDartsWikiSysop</name></author>
	</entry>
	<entry>
		<id>https://thedartswiki.donthurry.com/index.php?title=Country_data_Belarus&amp;diff=853</id>
		<title>Country data Belarus</title>
		<link rel="alternate" type="text/html" href="https://thedartswiki.donthurry.com/index.php?title=Country_data_Belarus&amp;diff=853"/>
		<updated>2023-04-25T20:15:01Z</updated>

		<summary type="html">&lt;p&gt;TheDartsWikiSysop: 1 revision imported&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{ {{{1&amp;lt;noinclude&amp;gt;|country showdata&amp;lt;/noinclude&amp;gt;}}}&lt;br /&gt;
| alias = Belarus&lt;br /&gt;
| flag alias = Flag of Belarus.svg&lt;br /&gt;
| flag alias-1991 = Flag of Belarus (1918, 1991–1995).svg&lt;br /&gt;
| flag alias-1995 = Flag of Belarus (1995–2012).svg&lt;br /&gt;
| flag alias-air force = Flag of Belarusian Air Force.svg&lt;br /&gt;
| link alias-air force = Belarusian Air Force&lt;br /&gt;
| flag alias-army = Flag of the Belarusian Ground Forces.png&lt;br /&gt;
| link alias-army = Belarusian Ground Forces&lt;br /&gt;
| flag alias-military = Flag of the Armed Forces of Belarus.png &lt;br /&gt;
| link alias-military = Armed Forces of Belarus&lt;br /&gt;
| size = {{{size|}}}&lt;br /&gt;
| name = {{{name|}}}&lt;br /&gt;
| altlink = {{{altlink|}}}&lt;br /&gt;
| variant = {{{variant|}}}&lt;br /&gt;
&amp;lt;noinclude&amp;gt;&lt;br /&gt;
| var1 = 1991&lt;br /&gt;
| var2 = 1995&lt;br /&gt;
| redir1 = BLR&lt;br /&gt;
| related1 = Byelorussian SSR&lt;br /&gt;
| related2 = Belarusian People's Republic&lt;br /&gt;
&amp;lt;/noinclude&amp;gt;&lt;br /&gt;
}}&lt;/div&gt;</summary>
		<author><name>TheDartsWikiSysop</name></author>
	</entry>
	<entry>
		<id>https://thedartswiki.donthurry.com/index.php?title=Country_data_United_Kingdom&amp;diff=851</id>
		<title>Country data United Kingdom</title>
		<link rel="alternate" type="text/html" href="https://thedartswiki.donthurry.com/index.php?title=Country_data_United_Kingdom&amp;diff=851"/>
		<updated>2023-04-25T20:15:01Z</updated>

		<summary type="html">&lt;p&gt;TheDartsWikiSysop: 1 revision imported&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{ {{{1&amp;lt;noinclude&amp;gt;|country showdata&amp;lt;/noinclude&amp;gt;}}}&lt;br /&gt;
| alias = United Kingdom&lt;br /&gt;
| flag alias = Flag of the United Kingdom.svg&lt;br /&gt;
| flag alias-1707 = Naval ensign of Great Britain (1707–1800).svg&lt;br /&gt;
| flag alias-air force = Ensign of the Royal Air Force.svg&lt;br /&gt;
| flag alias-army = Flag of the British Army.svg&lt;br /&gt;
| flag alias-civil = Civil Ensign of the United Kingdom.svg&lt;br /&gt;
| flag alias-civil-air = Civil Air Ensign of the United Kingdom.svg&lt;br /&gt;
| flag alias-coast guard = Flag of Her Majesty's Coastguard.svg&lt;br /&gt;
| flag alias-consulate = UK-Consular.svg&lt;br /&gt;
| flag alias-embassy = British Ambassador Ensign.svg&lt;br /&gt;
| flag alias-government = Government Ensign of the United Kingdom.svg&lt;br /&gt;
| flag alias-marines = Flag of the Royal Marines.svg&lt;br /&gt;
| flag alias-military = Flag of the United Kingdom (3-5).svg&lt;br /&gt;
| flag alias-naval = Naval Ensign of the United Kingdom.svg&lt;br /&gt;
| flag alias-GS = Government Service Ensign.svg&lt;br /&gt;
| flag alias-merchant = Civil Ensign of the United Kingdom.svg&lt;br /&gt;
| flag alias-RFA = British-Royal-Fleet-Auxiliary-Ensign.svg&lt;br /&gt;
| flag alias-RMAS = British Royal Maritime Auxiliary Ensign.svg&lt;br /&gt;
| flag alias-RNLI = Flag of the Royal National Lifeboat Institution.svg&lt;br /&gt;
| flag alias-naval-1707 = Naval ensign of Great Britain (1707–1800).svg&lt;br /&gt;
| flag alias-naval-GS = Government Service Ensign.svg&lt;br /&gt;
| flag alias-naval-merchant = Civil Ensign of the United Kingdom.svg&lt;br /&gt;
| flag alias-naval-RFA = British-Royal-Fleet-Auxiliary-Ensign.svg&lt;br /&gt;
| flag alias-naval-RMAS = British Royal Maritime Auxiliary Ensign.svg&lt;br /&gt;
| flag alias-naval-RNLI = Flag of the Royal National Lifeboat Institution.svg&lt;br /&gt;
| flag alias-navy = Naval Ensign of the United Kingdom.svg&lt;br /&gt;
| link alias-air force = Royal Air Force&lt;br /&gt;
| link alias-army = British Army&lt;br /&gt;
| link alias-coast guard = His Majesty's Coastguard&lt;br /&gt;
| link alias-marines = Corps of Royal Marines&lt;br /&gt;
| link alias-military = British Armed Forces&lt;br /&gt;
| link alias-naval = {{#switch:{{{variant|}}}&lt;br /&gt;
  | #default = Royal Navy&lt;br /&gt;
  | merchant|merchant = Merchant Navy (United Kingdom){{!}}Merchant Navy&lt;br /&gt;
  | reserve|reserve = Royal Naval Reserve&lt;br /&gt;
  | RFA|RFA = Royal Fleet Auxiliary&lt;br /&gt;
  | RMAS|RMAS = Royal Maritime Auxiliary Service&lt;br /&gt;
  | RNLI|RNLI = Royal National Lifeboat Institution&lt;br /&gt;
  | naval-merchant|naval-merchant = Merchant Navy (United Kingdom){{!}}Merchant Navy&lt;br /&gt;
  | naval-reserve|naval-reserve = Royal Naval Reserve&lt;br /&gt;
  | naval-RFA|naval-RFA = Royal Fleet Auxiliary&lt;br /&gt;
  | naval-RMAS|naval-RMAS = Royal Maritime Auxiliary Service&lt;br /&gt;
  | naval-RNLI|naval-RNLI = Royal National Lifeboat Institution&lt;br /&gt;
}}&lt;br /&gt;
| link alias-navy = {{#switch:{{{variant|}}}&lt;br /&gt;
  | #default = Royal Navy&lt;br /&gt;
  | merchant|merchant = Merchant Navy (United Kingdom){{!}}Merchant Navy&lt;br /&gt;
  | reserve|reserve = Royal Naval Reserve&lt;br /&gt;
  | RFA|RFA = Royal Fleet Auxiliary&lt;br /&gt;
  | RMAS|RMAS = Royal Maritime Auxiliary Service&lt;br /&gt;
  | RNLI|RNLI = Royal National Lifeboat Institution&lt;br /&gt;
  | naval-merchant|naval-merchant = Merchant Navy (United Kingdom){{!}}Merchant Navy&lt;br /&gt;
  | naval-reserve|naval-reserve = Royal Naval Reserve&lt;br /&gt;
  | naval-RFA|naval-RFA = Royal Fleet Auxiliary&lt;br /&gt;
  | naval-RMAS|naval-RMAS = Royal Maritime Auxiliary Service&lt;br /&gt;
  | naval-RNLI|naval-RNLI = Royal National Lifeboat Institution&lt;br /&gt;
}}&lt;br /&gt;
| size = {{{size|}}}&lt;br /&gt;
| name = {{#ifeq:{{{name|}}}|Britain|United Kingdom|{{{name|}}}}}&lt;br /&gt;
| altlink = {{{altlink|}}}&lt;br /&gt;
| variant = {{{variant|}}}&lt;br /&gt;
&amp;lt;noinclude&amp;gt;&lt;br /&gt;
| var1 = civil&lt;br /&gt;
| var2 = government&lt;br /&gt;
| var3 = 1707&lt;br /&gt;
| var4 = civil-air&lt;br /&gt;
| var5 = embassy&lt;br /&gt;
| var6 = consulate&lt;br /&gt;
| var7 = GS&lt;br /&gt;
| var8 = merchant&lt;br /&gt;
| var9 = RFA&lt;br /&gt;
| var10 = RMAS&lt;br /&gt;
| var11 = RNLI&lt;br /&gt;
| var12 = naval-1707&lt;br /&gt;
| var13 = naval-GS&lt;br /&gt;
| var14 = naval-merchant&lt;br /&gt;
| var15 = naval-RFA&lt;br /&gt;
| var16 = naval-RMAS&lt;br /&gt;
| var17 = naval-RNLI&lt;br /&gt;
| redir1 = UK&lt;br /&gt;
| redir2 = U.K.&lt;br /&gt;
| redir3 = the United Kingdom&lt;br /&gt;
| related1 = Great Britain&lt;br /&gt;
| related2 = Kingdom of Great Britain&lt;br /&gt;
| related3 = British Empire&lt;br /&gt;
| related4 = United Kingdom of Great Britain and Ireland&lt;br /&gt;
| related5 = Kingdom of England&lt;br /&gt;
| related6 = Kingdom of Scotland&lt;br /&gt;
&amp;lt;/noinclude&amp;gt;&lt;br /&gt;
}}&lt;/div&gt;</summary>
		<author><name>TheDartsWikiSysop</name></author>
	</entry>
	<entry>
		<id>https://thedartswiki.donthurry.com/index.php?title=Country_data_Singapore&amp;diff=849</id>
		<title>Country data Singapore</title>
		<link rel="alternate" type="text/html" href="https://thedartswiki.donthurry.com/index.php?title=Country_data_Singapore&amp;diff=849"/>
		<updated>2023-04-25T20:15:01Z</updated>

		<summary type="html">&lt;p&gt;TheDartsWikiSysop: 1 revision imported&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{ {{{1&amp;lt;noinclude&amp;gt;|country showdata&amp;lt;/noinclude&amp;gt;}}}&lt;br /&gt;
| alias = Singapore&lt;br /&gt;
| flag alias = Flag of Singapore.svg&lt;br /&gt;
| flag alias-state = State Marine Ensign of Singapore.svg&lt;br /&gt;
| flag alias-colonial = Flag of Singapore (1946–1952).svg&lt;br /&gt;
| flag alias-colonial-1952 = Flag of Singapore (1952–1959).svg&lt;br /&gt;
| flag alias-civil = Civil Ensign of Singapore.svg&lt;br /&gt;
| flag alias-military = SAFinfoboxflag.png&lt;br /&gt;
| link alias-military = Singapore Armed Forces&lt;br /&gt;
| flag alias-army = SingaporeArmyinfoboxflag.png&lt;br /&gt;
| link alias-army = Singapore Army&lt;br /&gt;
| flag alias-naval = Naval Ensign of Singapore.svg&lt;br /&gt;
| link alias-naval = Republic of Singapore Navy&lt;br /&gt;
| flag alias-air force = RSAFinfoboxflag.png&lt;br /&gt;
| link alias-air force = Republic of Singapore Air Force&lt;br /&gt;
| flag alias-navy = Naval Ensign of Singapore.svg&lt;br /&gt;
| link alias-navy = Republic of Singapore Navy&lt;br /&gt;
| size = {{{size|}}}&lt;br /&gt;
| name = {{{name|}}}&lt;br /&gt;
| altlink = {{{altlink|}}}&lt;br /&gt;
| variant = {{{variant|}}}&lt;br /&gt;
&amp;lt;noinclude&amp;gt;&lt;br /&gt;
| var1 = state&lt;br /&gt;
| var2 = colonial&lt;br /&gt;
| var3 = colonial-1952&lt;br /&gt;
| var4 = civil&lt;br /&gt;
| redir1 = SGP&lt;br /&gt;
| redir2 = SIN&lt;br /&gt;
&amp;lt;/noinclude&amp;gt;&lt;br /&gt;
}}&lt;/div&gt;</summary>
		<author><name>TheDartsWikiSysop</name></author>
	</entry>
	<entry>
		<id>https://thedartswiki.donthurry.com/index.php?title=Country_data_Philippines&amp;diff=847</id>
		<title>Country data Philippines</title>
		<link rel="alternate" type="text/html" href="https://thedartswiki.donthurry.com/index.php?title=Country_data_Philippines&amp;diff=847"/>
		<updated>2023-04-25T20:15:01Z</updated>

		<summary type="html">&lt;p&gt;TheDartsWikiSysop: 1 revision imported&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{ {{{1&amp;lt;noinclude&amp;gt;|country showdata&amp;lt;/noinclude&amp;gt;}}}&lt;br /&gt;
| alias = Philippines&lt;br /&gt;
| flag alias = Flag of the Philippines.svg&lt;br /&gt;
| flag alias-1535 = Flag_of_Cross_of_Burgundy.svg&lt;br /&gt;
| flag alias-1821 = Flag of Spain (1785-1873 and 1875-1931).svg&lt;br /&gt;
| flag alias-1873 = Flag of the First Spanish Republic.svg&lt;br /&gt;
| flag alias-1875 = Flag of Spain (1785-1873 and 1875-1931).svg&lt;br /&gt;
| flag alias-aguinaldo = Flag of the Philippines (1898–1901).svg&lt;br /&gt;
| flag alias-1898 = Flag of the United States (1896-1908).svg&lt;br /&gt;
| flag alias-1908 = US flag 46 stars.svg&lt;br /&gt;
| flag alias-1912 = US flag 48 stars.svg&lt;br /&gt;
| flag alias-1919 = Flag of the Philippines (1919-1936).svg&lt;br /&gt;
| flag alias-1936 = Flag of the Philippines (navy blue).svg&lt;br /&gt;
| flag alias-1985 = Flag of the Philippines (light blue).svg&lt;br /&gt;
| flag alias-1986 = Flag of the Philippines (navy blue).svg&lt;br /&gt;
| flag alias-air force = Flag of the Philippine Air Force.svg&lt;br /&gt;
| link alias-air force = Philippine Air Force&lt;br /&gt;
| flag alias-army=Flag of the Philippine Army.svg&lt;br /&gt;
| flag alias-marines=Flag of the Philippine Marine Corps.svg&lt;br /&gt;
| link alias-marines=Philippine Marine Corps&lt;br /&gt;
| flag alias-military=Flag of the Armed Forces of the Philippines.svg&lt;br /&gt;
| link alias-military=Philippine Armed Forces&lt;br /&gt;
| flag alias-navy=Flag of the Philippine Navy.svg&lt;br /&gt;
| link alias-navy=Philippine Navy&lt;br /&gt;
| link alias-army = Philippine Army&lt;br /&gt;
| link alias-naval = Philippine Navy&lt;br /&gt;
| size = {{{size|}}}&lt;br /&gt;
| name = {{{name|}}}&lt;br /&gt;
| altlink = {{{altlink|}}}&lt;br /&gt;
| altvar = {{{altvar|}}}&lt;br /&gt;
| variant = {{{variant|}}}&lt;br /&gt;
&amp;lt;noinclude&amp;gt;&lt;br /&gt;
| var1 = 1535&lt;br /&gt;
| var2 = 1821&lt;br /&gt;
| var3 = 1873&lt;br /&gt;
| var4 = 1875&lt;br /&gt;
| var5 = aguinaldo&lt;br /&gt;
| var6 = 1898&lt;br /&gt;
| var7 = 1908&lt;br /&gt;
| var8 = 1912&lt;br /&gt;
| var9 = 1919&lt;br /&gt;
| var10 = 1936&lt;br /&gt;
| var11 = 1985&lt;br /&gt;
| var12 = 1986&lt;br /&gt;
| cat = Philippines&lt;br /&gt;
| redir1 = PHL&lt;br /&gt;
| redir2 = PHI&lt;br /&gt;
| related1 = First Philippine Republic&lt;br /&gt;
| related2 = Philippine Commonwealth&lt;br /&gt;
| related3 = Second Philippine Republic&lt;br /&gt;
&amp;lt;/noinclude&amp;gt;&lt;br /&gt;
}}&lt;/div&gt;</summary>
		<author><name>TheDartsWikiSysop</name></author>
	</entry>
	<entry>
		<id>https://thedartswiki.donthurry.com/index.php?title=Country_data_Malaysia&amp;diff=845</id>
		<title>Country data Malaysia</title>
		<link rel="alternate" type="text/html" href="https://thedartswiki.donthurry.com/index.php?title=Country_data_Malaysia&amp;diff=845"/>
		<updated>2023-04-25T20:15:01Z</updated>

		<summary type="html">&lt;p&gt;TheDartsWikiSysop: 1 revision imported&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{ {{{1&amp;lt;noinclude&amp;gt;|country showdata&amp;lt;/noinclude&amp;gt;}}}&lt;br /&gt;
| alias = Malaysia&lt;br /&gt;
| flag alias = Flag of Malaysia.svg&lt;br /&gt;
| flag alias-1895 = Flag of the Federated Malay States (1895 - 1946).svg&lt;br /&gt;
| flag alias-1948 = Flag of Malaya.svg&lt;br /&gt;
| flag alias-naval = Naval Ensign of Malaysia.svg&lt;br /&gt;
| link alias-naval = Royal Malaysian Navy&lt;br /&gt;
| flag alias-air force = Royal Malaysian Air Force Flag.svg&lt;br /&gt;
| link alias-air force = Royal Malaysian Air Force&lt;br /&gt;
| flag alias-civil = Civil Ensign of Malaysia.svg&lt;br /&gt;
| link alias-civil = Malaysia&lt;br /&gt;
| flag alias-army = Flag of the Malaysian Army.svg&lt;br /&gt;
| link alias-army = Malaysian Army&lt;br /&gt;
| flag alias-navy = Naval Ensign of Malaysia.svg&lt;br /&gt;
| link alias-navy = Royal Malaysian Navy&lt;br /&gt;
| flag alias-military = Flag of the Malaysian Armed Forces.svg&lt;br /&gt;
| link alias-military = Malaysian Armed Forces&lt;br /&gt;
| flag alias-coast guard = Flag of the Malaysian Maritime Enforcement Agency.svg&lt;br /&gt;
| link alias-coast guard = Malaysian Maritime Enforcement Agency&lt;br /&gt;
| size = {{{size|}}}&lt;br /&gt;
| name = {{{name|}}}&lt;br /&gt;
| altlink = {{{altlink|}}}&lt;br /&gt;
| variant = {{{variant|}}}&lt;br /&gt;
&amp;lt;noinclude&amp;gt;&lt;br /&gt;
| var1 = 1895&lt;br /&gt;
| var2 = 1948&lt;br /&gt;
| var3 = civil&lt;br /&gt;
| redir1 = MYS&lt;br /&gt;
| redir2 = MAS&lt;br /&gt;
| related1 = Malaya&lt;br /&gt;
| related2 = Malayan Union&lt;br /&gt;
| related3 = Kingdom of Sarawak&lt;br /&gt;
| related4 = North Borneo&lt;br /&gt;
&amp;lt;/noinclude&amp;gt;&lt;br /&gt;
}}&lt;/div&gt;</summary>
		<author><name>TheDartsWikiSysop</name></author>
	</entry>
	<entry>
		<id>https://thedartswiki.donthurry.com/index.php?title=Country_data_Kazakhstan&amp;diff=843</id>
		<title>Country data Kazakhstan</title>
		<link rel="alternate" type="text/html" href="https://thedartswiki.donthurry.com/index.php?title=Country_data_Kazakhstan&amp;diff=843"/>
		<updated>2023-04-25T20:15:01Z</updated>

		<summary type="html">&lt;p&gt;TheDartsWikiSysop: 1 revision imported&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{ {{{1&amp;lt;noinclude&amp;gt;|country showdata&amp;lt;/noinclude&amp;gt;}}}&lt;br /&gt;
| alias = Kazakhstan&lt;br /&gt;
| flag alias = Flag of Kazakhstan.svg&lt;br /&gt;
| flag alias-1991 = Flag of the Kazakh SSR.svg&lt;br /&gt;
| flag alias-1992 = Flag of Kazakhstan (1992).svg &lt;br /&gt;
| flag alias-naval = Naval Ensign of Kazakhstan.svg&lt;br /&gt;
| link alias-naval = Kazakh Naval Forces&lt;br /&gt;
| flag alias-air force = Ensign of Kazakhstan Air Force.svg&lt;br /&gt;
| link alias-air force = Kazakh Air Defense Forces&lt;br /&gt;
| flag alias-army = Kazakhstan Armed Forces Flag.svg&lt;br /&gt;
| link alias-army = Kazakh Ground Forces&lt;br /&gt;
| flag alias-navy = Naval Ensign of Kazakhstan.svg&lt;br /&gt;
| link alias-navy = Kazakh Naval Forces&lt;br /&gt;
| size = {{{size|}}}&lt;br /&gt;
| name = {{{name|}}}&lt;br /&gt;
| altlink = {{{altlink|}}}&lt;br /&gt;
| variant = {{{variant|}}}&lt;br /&gt;
| var1 = 1991&lt;br /&gt;
| var2 = 1992&lt;br /&gt;
&amp;lt;noinclude&amp;gt;&lt;br /&gt;
| redir1 = KAZ&lt;br /&gt;
| related1 = Kazakh SSR&lt;br /&gt;
&amp;lt;/noinclude&amp;gt;&lt;br /&gt;
}}&lt;/div&gt;</summary>
		<author><name>TheDartsWikiSysop</name></author>
	</entry>
	<entry>
		<id>https://thedartswiki.donthurry.com/index.php?title=Country_data_Hong_Kong&amp;diff=841</id>
		<title>Country data Hong Kong</title>
		<link rel="alternate" type="text/html" href="https://thedartswiki.donthurry.com/index.php?title=Country_data_Hong_Kong&amp;diff=841"/>
		<updated>2023-04-25T20:15:01Z</updated>

		<summary type="html">&lt;p&gt;TheDartsWikiSysop: 1 revision imported&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{ {{{1&amp;lt;noinclude&amp;gt;|country showdata&amp;lt;/noinclude&amp;gt;}}}&lt;br /&gt;
| alias = Hong Kong&lt;br /&gt;
| flag alias = Flag of Hong Kong.svg&lt;br /&gt;
| flag alias-colonial = Flag of Hong Kong 1959.svg  &amp;lt;!-- deprecate the &amp;quot;colonial&amp;quot; varname --&amp;gt;&lt;br /&gt;
| flag alias-1959 = Flag of Hong Kong 1959.svg&lt;br /&gt;
| flag alias-1955 = Flag of Hong Kong 1955.svg&lt;br /&gt;
| flag alias-1910 = Flag of Hong Kong 1876.svg&lt;br /&gt;
| flag alias-1876 = Flag of Hong Kong 1876.svg&lt;br /&gt;
| flag alias-1871 = Flag of Hong Kong 1871.svg&lt;br /&gt;
| flag alias-red = Flag of Hong Kong 1959 (unofficial Red Ensign).svg&lt;br /&gt;
| link alias-naval = Hong Kong Marine Police&lt;br /&gt;
| link alias-navy = Hong Kong Marine Police&lt;br /&gt;
| link alias-korfball = Hong Kong China national korfball team&lt;br /&gt;
| size = {{{size|}}}&lt;br /&gt;
| name = {{{name|}}}&lt;br /&gt;
| altlink = {{{altlink|}}}&lt;br /&gt;
| altvar = {{{altvar|}}}&lt;br /&gt;
| variant = {{{variant|}}}&lt;br /&gt;
&amp;lt;noinclude&amp;gt;&lt;br /&gt;
| var1 = 1959&lt;br /&gt;
| var2 = 1955&lt;br /&gt;
| var3 = 1910&lt;br /&gt;
| var4 = 1876&lt;br /&gt;
| var5 = 1871&lt;br /&gt;
| var6 = red&lt;br /&gt;
| redir1 = HKG&lt;br /&gt;
| redir2 = Hong Kong, China&lt;br /&gt;
&amp;lt;/noinclude&amp;gt;&lt;br /&gt;
}}&lt;/div&gt;</summary>
		<author><name>TheDartsWikiSysop</name></author>
	</entry>
</feed>