local data = {}
-- list of currently ranked DPNZ playesr by last name with:
-- { "Name" , "Country" , "First" , "Last" , "disambiguation" },
-- Name in first entry should match DPNZ 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 = {
{ "Craig Caldwell" , "NZL" , "Craig" , "Caldwell" , 1 },
{ "Mark Cleaver" , "NZL" , "Mark" , "Cleaver" , 1 },
{ "Cody Harris" , "NZL" , "Cody" , "Harris" , 1 , "darts player" },
{ "John Hurring" , "NZL" , "John" , "Hurring" , 1 },
{ "Darren Herewini" , "NZL" , "Darren" , "Herewini" , 1 },
{ "Tahuna Irwin" , "NZL" , "Tahuna" , "Irwin" , 1 },
{ "Stuart Leach" , "NZL" , "Stuart" , "Leach" , 0 },
{ "Mark McGrath" , "NZL" , "Mark" , "McGrath" , 1 , "darts player" },
{ "Ken Moir" , "NZL" , "Ken" , "Moir" , 0 },
{ "Warren Perry" , "NZL" , "Warren" , "Perry" , 1 },
{ "Huapi Puha" , "NZL" , "Huapi" , "Puha" , 1 },
{ "Ben Robb" , "NZL" , "Ben" , "Rob" , 1 },
{ "Bernie Smith" , "NZL" , "Bernie" , "Smith" , 1 , "darts player" },
{ "Rob Szabo" , "NZL" , "Rob" , "Szabo" , 1 },
}
return data