Module:DartsRankings/data/DPA Players

MyWikiBiz, Author Your Legacy — Sunday May 12, 2024
Jump to navigationJump to search

Documentation for this module may be created at Module:DartsRankings/data/DPA Players/doc

local data = {}


-- list of currently ranked PDC playesr by last name with:
-- { "Name" , "Country" , "First" , "Last" , "disambiguation" },
-- Name in first entry should match DPA listing (case insensitive)
-- 2nd entry is the 3 letter country code for the player
-- 3rd entry should be the first name (for sorting purposes) of the wikipedia page
-- 4th entry should be the last name (for sorting purposes) of the wikipedia page
-- 5th entry iundicates if the page exists (to reduce redlinks)
--[[6th entry is optional, and is the disambiguator for page (for Template:Sortname) ]]--
data.library = { 
	{ "Bill Aitken" , "QLD" , "Bill" , "Aitken" , 0 , "darts player" },
	{ "Kyle Anderson" , "QLD" , "Kyle" , "Anderson" , 1 , "darts player" },
	{ "Michael Andre" , "AU-WA" , "Michael" , "Andre" , 0 , "darts player" },
	{ "James Bailey" , "QLD" , "James" , "Bailey" , 1 , "darts player" },
	{ "Jake Buckley" , "ACT" , "Jake" , "Buckley" , 0 },
	{ "Sam Ballinger" , "VIC" , "Sam" , "Ballinger" ,  0 },
	{ "Lucas Cameron" , "VIC" , "Lucas" , "Cameron" , 0 },
	{ "Corey Cadby" , "VIC" , "Corey" , "Cadby" ,  1 },
	{ "Mitchell Clegg" , "NSW" , "Mitchell" , "Clegg" ,  1 },
	{ "Stuart Coburn" , "VIC" , "Stuart" , "Coburn" ,  0 },
	{ "George Creasey" , "AU-SA" , "George" , "Creasey" , 0 },
	{ "Andrew Eagers" , "NSW" , "Andrew" , "Eagers" ,  0 },
	{ "Jeremy Fagg" , "QLD" , "Jeremy" , "Fagg" ,  0 },
	{ "Justin Frey" , "NSW" , "Justin" , "Frey" , 0 },
	{ "Scott Hallett" , "AU-SA" , "Scott" , "Hallett" , 0 },
	{ "Blake Hatchett" , "AU-WA" , "Blake" , "Hatchett" ,  0 },
	{ "Damon Heta" , "AU-WA" , "Damon" , "Heta" ,  1 },
	{ "Robbie King" , "QLD" , "Robbie" , "King" , 1 , "darts player" },
	{ "Brody Klinge" , "VIC" , "Brody" , "Klinge" ,  0 },
	{ "Koha Kokiri" , "AU-WA" , "Koha" , "Kokiri" ,  1 },
	{ "Shaun Kopecki" , "QLD" , "Shaun" , "Kopecki" ,  0 },
	{ "Mick Lacey" , "QLD" , "Mick" , "Lacey" , 0 , "darts player" },
	{ "Mathew Leahy" , "ACT" , "Mathew" , "Leahy" , 0 },
	{ "Greg Le'Strange" , "ACT" , "Greg" , "Le'Strange" , 0 },
	{ "Brenton Lloyd" , "AU-WA" , "Brenton" , "Lloyd" ,  0 },
	{ "Dave Marland" , "NSW" , "Dave" , "Marland" ,  1 },
	{ "Bailey Marsh" , "AU-WA" , "Bailey" , "Marsh" ,  0 },
	{ "Gordon Mathers" , "QLD" , "Gordon" , "Mathers" ,  1 },
	{ "Rhys Mathewson" , "VIC" , "Rhys" , "Mathewson" ,  1 },
	{ "Brendan McCausland", "QLD" , "Brendan", "McCausland",  0 },
	{ "Liam McLennan" , "NSW" , "Liam" , "McLennan" ,  0 },
	{ "Rob Modra" , "AU-SA" , "Rob" , "Modra" , 1 },
	{ "Pat Molloy" , "ACT" , "Pat" , "Molloy" , 0, "darts player" },
	{ "Matt Mullen", "QLD" , "Matt", "Mullen",  0 },
	{ "John Nottage" , "AU-SA" , "John" , "Nottage" , 0 },
	{ "Raymond O'Donnell" , "QLD" , "Raymond" , "O'Donnell" ,  1 },
	{ "Andy Pinder" , "AU-SA" , "Andy" , "Pinder" , 0 },
	{ "Brendan Porter" , "NSW" , "Brendan" , "Porter",  0 },
	{ "Steve Powell" , "VIC" , "Steve" , "Powell" , 0, "darts player" },
	{ "Tim Pusey" , "AU-WA" , "Tim" , "Pusey" , 1 },
	{ "Loz Ryder" , "AU-WA" , "Loz" , "Ryder" , 1 },
	{ "Aaron Simpson" , "VIC" , "Aaron" , "Simpson" , 0 , "darts player" },
	{ "KY Smith" , "QLD" , "KY" , "Smith" , 0 },
	{ "Raymond Smith" , "QLD" , "Raymond" , "Smith" , 1 , "darts player" },
	{ "Josh Townsend" , "ACT" , "Josh" , "Townsend" , 0, "darts player" },
	{ "Brandon Weening" , "VIC" , "Brandon" , "Weening" ,  0 },
	{ "Bryson Williams" , "ACT" , "Bryson" , "Williams" , 0 },
	{ "Peter Wilmont" , "NSW" , "Peter" , "Wilmont", 0 },
	{ "Mick Zdun" , "AU-WA" , "Mick" , "Zdun" , 0 },
}

return data