Array.prototype.binarySearch = function(key, Compare)
	{
	var	lower	= 0,
		middle,
		upper	= this.length - 1;

	while (lower <= upper)
		{
		middle = (lower + upper) >> 1;

		if ((compare = Compare(key, this[middle])) < 0)
			upper = middle - 1;
		else if (compare == 0)
			return middle;
		else
			lower = middle + 1;
		}
	return -1;
	}

// Publication class

function Publication(publicationID, title, sortTitle, city, cityInTitle)
	{
	this.publicationID = publicationID;
	this.title = title;
	this.sortTitle = sortTitle;
	this.city = city;
	this.cityInTitle = cityInTitle;
	}

Publication.prototype.toString = function()
	{
	return "{" +
		 "publicationID = "	+ this.publicationID	+ ", " +
		 "title = "			+ this.title			+ ", " +
		 "sortTitle = "		+ this.sortTitle		+ ", " +
		 "city = "			+ this.city				+ ", " +
		 "cityInTitle = "	+ this.cityInTitle		+
		"}";
	}

Publication.prototype.fullTitle = function()
	{
	return this.title + (this.cityInTitle ? "" : (" (" + this.city + ")"));
	}

//  Issue compare functions

function PublicationBySortTitle(a, b)
	{
	if (typeof(a) == "number")	// a is index to publications array
		a = publications[a];
	if (typeof(b) == "number")	// b is index to publications array
		b = publications[b];
	if (a.sortTitle < b.sortTitle)
		return -1;
	else if (a.sortTitle == b.sortTitle)
		return 0;
	else
		return 1;
	}

function PublicationByPublicationID(a, b)
	{
	if (typeof(a) == "number")	// a is index to publications array
		a = publications[a];
	if (typeof(b) == "number")	// b is index to publications array
		b = publications[b];
	return a.publicationID - b.publicationID;
	}

function GetPublication(publicationID)
	{
	var i;
	if ((i = publications.binarySearch(new Publication(publicationID, "", "", "", false), PublicationByPublicationID)) < 0)
		return null;
	else
		return publications[i];
	}

// Issue class

function Issue(issueID, publicationID, year, month, day, file)
	{
	this.issueID = issueID;
	this.year = year;
	this.month = month;
	this.day = day;
	this.file = file;
	this.publicationID = publicationID;
	}

function ByIssueID(a, b)
	{
	return a.issueID - b.issueID;
	}

function FindIssue(issueID)
	{
	var	i;
	if ((i = issues.binarySearch(new Issue(issueID, 0, 0, 0, 0, ""), ByIssueID)) < 0)
		return null
	else
		return issues[i];
	}

Issue.prototype.date = function()
	{
	return this.year.toString() + "-" + (this.month < 10 ? "0" : "") + this.month.toString() + "-" + (this.day < 10 ? "0" : "") + this.day.toString();
	}

Issue.prototype.toString = function()
	{
	return "{" +
		 "issueID = "		+ this.issueID			+ ", " +
		 "publicationID = "	+ this.publicationID	+ ", " +
		 "date = "			+ this.date()				+ ", " +
		 "file = "			+ this.file				+
		"}";
	}

//  Issue compare functions

function IssueByDate(a, b)
	{
	if (typeof(a) == "number")	// a is index to issues array
		a = issues[a];
	if (typeof(b) == "number")	// b is index to issues array
		b = issues[b];
	if (a.year == b.year)
		{
		if (a.month == b.month)
			return a.day - b.day;
		else
			return a.month - b.month;
		}		
	else
		return a.year - b.year;
	}

function IssueByFile(a, b)
	{
	if (typeof(a) == "number")	// a is index to issues array
		a = issues[a];
	if (typeof(b) == "number")	// b is index to issues array
		b = issues[b];

	if (a.file < b.file)
		return -1;
	else if (a.file == b.file)
		return 0;
	else
		return 1;
	}

function IssueByIssueID(a, b)
	{
	if (typeof(a) == "number")	// a is index to issues array
		a = issues[a];
	if (typeof(b) == "number")	// b is index to issues array
		b = issues[b];
	return a.issueID - b.issueID;
	}

function IssueByPublicationID(a, b)
	{
	if (typeof(a) == "number")	// a is index to issues array
		a = issues[a];
	if (typeof(b) == "number")	// b is index to issues array
		b = issues[b];
	if (a.publicationID == b.publicationID)
		return IssueByDate(a, b);
	else
		return a.publicationID - b.publicationID;
	}

//


function FullDateString(year, month, day)
	{
	if ((i = DayOfWeek(year, month, day)) == -1)
		return DateString(year, month, day) + " is invalid.";
	else
		return dayName[i] + ", " + monthName[month] + " " + day + ", " + year;
	}

//

function ParseFilename(filename)
	{
	var start;
	var end;

	if ((start = filename.lastIndexOf("/")) < 0)
		start = 0;
	else
		start++;
	if ((end = filename.lastIndexOf("#")) < 0 || end < start)
		end = filename.length;
	return filename.slice(start, end);
	}

function IssueHeader(file)
	{
	file = ParseFilename(file);


	var i;
	var publication = new Publication(0, "Unknown", "Unknown", "Unknown", true);
	var previous = null;
	var next = null;
	var fullDateString = "";
	var issue = new Issue(0, 0, 0, 0, 0, file);

	if ((i = indexIssueByFile.binarySearch(issue, IssueByFile)) >= 0)
		{
		issue = issues[indexIssueByFile[i]];
		publication = GetPublication(issue.publicationID);
		i = indexIssueByPublicationID.binarySearch(issue, IssueByPublicationID);
		if (i > 0 && issues[indexIssueByPublicationID[i - 1]].publicationID == issue.publicationID)
			previous = issues[indexIssueByPublicationID[i - 1]];
		if (i + 1 < issues.length && issues[indexIssueByPublicationID[i + 1]].publicationID == issue.publicationID)
			next = issues[indexIssueByPublicationID[i + 1]];
		fullDateString = FullDateString(issue.year, issue.month, issue.day);
		}

	
	document.title = publication.fullTitle() + "\u2014" + fullDateString;
	document.write("<table width=\"100%\">\n");
	document.write("\t<tr>");
	document.write("\t\t<td align=\"center\" colspan=\"3\"><h1 style=\"margin: 0em;\">");
	document.write("<span class=\"Publication\">" + publication.title + "</span>");
	if (!publication.cityInTitle)
		document.write(" (" + publication.city + ")");
	document.write("</h1></td>");
	document.write("\t\t</tr>");
	document.write("\t<tr>");
	document.write("\t\t<td valign=\"bottom\" style=\"border-bottom: black solid 1px;\" align=\"left\" width=\"25%\">");
	if (previous != null)
		document.write("<a href=\"" + previous.file + "\">" + previous.date() + "</a>");
	document.write("</td>\n");
	document.write("\t\t<td valign=\"bottom\" style=\"border-bottom: black solid 1px;\" align=\"center\" width=\"50%\">");
	document.write("<h2 style=\"margin-bottom: 0em; margin-top: 1em;\">" + fullDateString + "</h2></td>\n");
	document.write("\t\t<td valign=\"bottom\" style=\"border-bottom: black solid 1px;\" align=\"right\" width=\"25%\">");
	if (next != null)
		document.write("<a href=\"" + next.file + "\">" + next.date() + "</a>");
	document.write("</td>\n");
	document.write("\t\t</tr>\n\t</table>\n");
	}

//  must be sorted by publicationID

var publications = new Array(
	new Publication( 1, "The Globe",					"Globe 1",						"Toronto",			false),	
	new Publication( 2, "The Globe",					"Globe 3",						"Toronto",			false),	
	new Publication( 3, "The Daily Globe",				"Globe 2",						"Toronto",			false),	
	new Publication( 4, "The Globe and Mail",			"Globe 4",						"Toronto",			false),	
	new Publication( 6, "The Evening Star",				"Toronto Star 1",				"Toronto",			false),	
	new Publication( 7, "The Toronto Daily Star",		"Toronto Star 2",				"Toronto",			true),	
	new Publication( 8, "The Toronto Star",				"Toronto Star 3",				"Toronto",			true),	
	new Publication( 9,	"The New York Times",			"New York Times",				"New York",			true),	
	new Publication(10, "The Banner",					"Banner",						"Aurora",			false),	
	new Publication(11, "The Examiner",					"Examiner",						"Toronto",			false),	
	new Publication(12, "The Toronto World",			"Toronto World",				"Toronto",			true),	
	new Publication(13, "Barrie Advance",				"Barrie Advance",				"Barrie",			true),	
	new Publication(14, "The Daily Sentinel Review",	"Daily Sentinel Review",		"Woodstock",		false),	
	new Publication(15, "The New Era",					"New Era",						"Newmarket",		false),	
	new Publication(16, "The Newmarket Era",			"Newmarket Era",				"Newmarket",		true),	
	new Publication(17, "The Norfolk Reformer",			"Norfolk Reformer",				"Simcoe",			false),	
	new Publication(18, "The North American",			"North American",				"Toronto",			false),	
	new Publication(19, "Northern Advance",				"Northern Advance",				"Barrie",			false),	
	new Publication(20, "The Simcoe Reformer",			"Simcoe Reformer",				"Simcoe",			true),	
	new Publication(21, "The Sioux Lookout Bulletin",	"The Sioux Lookout Bulletin",	"Sioux Lookout",	true),	
	new Publication(22, "The Woodstock Sentinel",		"Woodstock Sentinel",			"Woodstock",		true),	
	new Publication(23, "The Woodstock Weekly Review",	"Woodstock Weekly Review",		"Woodstock",		true)
	);

//  must be sorted by issueID

var issues = 	new Array(
	new Issue(   1,  1, 1845,  7, 29, "Globe_18450729.html"),
	new Issue(   2,  1, 1850,  3, 16, "Globe_18500316.html"),
	new Issue(   3,  1, 1850,  7,  4, "Globe_18500704.html"),
	new Issue(   4,  1, 1850,  7,  6, "Globe_18500706.html"),
	new Issue(   5,  1, 1850,  7, 27, "Globe_18500727.html"),
	new Issue(   6,  1, 1850,  7, 30, "Globe_18500730.html"),
	new Issue(   7,  1, 1850,  8,  1, "Globe_18500801.html"),
	new Issue(   8,  1, 1850,  8,  3, "Globe_18500803.html"),
	new Issue(   9,  1, 1850,  8,  6, "Globe_18500806.html"),
	new Issue(  10,  1, 1850,  8, 10, "Globe_18500810.html"),
	new Issue(  11,  1, 1850,  8, 13, "Globe_18500813.html"),
	new Issue(  12,  1, 1851,  7, 31, "Globe_18510731.html"),
	new Issue(  13,  1, 1852,  1,  3, "Globe_18520103.html"),
	new Issue(  14,  1, 1852,  1, 15, "Globe_18520115.html"),
	new Issue(  15,  1, 1852,  1, 24, "Globe_18520124.html"),
	new Issue(  16,  1, 1852,  1, 29, "Globe_18520129.html"),
	new Issue(  17,  1, 1852,  1, 31, "Globe_18520131.html"),
	new Issue(  18,  1, 1852,  2,  5, "Globe_18520205.html"),
	new Issue(  19,  1, 1852,  2, 14, "Globe_18520214.html"),
	new Issue(  20,  1, 1852,  2, 21, "Globe_18520221.html"),
	new Issue(  21,  1, 1852,  2, 26, "Globe_18520226.html"),
	new Issue(  22,  1, 1852,  2, 28, "Globe_18520228.html"),
	new Issue(  23,  1, 1852,  3,  6, "Globe_18520306.html"),
	new Issue(  24,  1, 1852,  3,  9, "Globe_18520309.html"),
	new Issue(  25,  1, 1852,  3, 13, "Globe_18520313.html"),
	new Issue(  26,  1, 1852,  3, 16, "Globe_18520316.html"),
	new Issue(  27,  1, 1852,  3, 20, "Globe_18520320.html"),
	new Issue(  28,  1, 1852,  3, 23, "Globe_18520323.html"),
	new Issue(  29,  1, 1852,  3, 25, "Globe_18520325.html"),
	new Issue(  30,  1, 1852,  3, 30, "Globe_18520330.html"),
	new Issue(  31,  1, 1852,  4,  1, "Globe_18520401.html"),
	new Issue(  32,  1, 1852,  4,  3, "Globe_18520403.html"),
	new Issue(  33,  1, 1852,  4,  8, "Globe_18520408.html"),
	new Issue(  34,  1, 1852,  4, 17, "Globe_18520417.html"),
	new Issue(  35,  1, 1852,  4, 20, "Globe_18520420.html"),
	new Issue(  36,  1, 1852,  4, 24, "Globe_18520424.html"),
	new Issue(  37,  1, 1852,  4, 27, "Globe_18520427.html"),
	new Issue(  38,  1, 1852,  4, 29, "Globe_18520429.html"),
	new Issue(  39,  1, 1852,  5,  8, "Globe_18520508.html"),
	new Issue(  40,  1, 1852,  5, 11, "Globe_18520511.html"),
	new Issue(  41,  1, 1852,  5, 18, "Globe_18520518.html"),
	new Issue(  42,  1, 1852,  5, 29, "Globe_18520529.html"),
	new Issue(  43,  1, 1852, 12, 27, "Globe_18521227.html"),
	new Issue(  44,  1, 1853,  1,  1, "Globe_18530101.html"),
	new Issue(  45,  1, 1853,  1,  4, "Globe_18530104.html"),
	new Issue(  46,  1, 1853,  1,  6, "Globe_18530106.html"),
	new Issue(  47,  1, 1853,  1, 11, "Globe_18530111.html"),
	new Issue(  48,  1, 1853,  1, 13, "Globe_18530113.html"),
	new Issue(  49,  1, 1853,  1, 18, "Globe_18530118.html"),
	new Issue(  50,  1, 1853,  1, 29, "Globe_18530129.html"),
	new Issue(  51,  1, 1853,  2,  5, "Globe_18530205.html"),
	new Issue(  52,  1, 1853,  2,  8, "Globe_18530208.html"),
	new Issue(  53,  1, 1853,  3,  5, "Globe_18530305.html"),
	new Issue(  54,  1, 1853,  3, 12, "Globe_18530312.html"),
	new Issue(  55,  1, 1853,  3, 22, "Globe_18530322.html"),
	new Issue(  56,  1, 1853,  3, 24, "Globe_18530324.html"),
	new Issue(  57,  1, 1853,  4,  2, "Globe_18530402.html"),
	new Issue(  58,  1, 1853,  4, 12, "Globe_18530412.html"),
	new Issue(  59,  1, 1853,  4, 19, "Globe_18530419.html"),
	new Issue(  60,  1, 1853,  5,  5, "Globe_18530505.html"),
	new Issue(  61,  1, 1853,  5, 12, "Globe_18530512.html"),
	new Issue(  62,  1, 1853,  5, 19, "Globe_18530519.html"),
	new Issue(  63,  1, 1853,  5, 21, "Globe_18530521.html"),
	new Issue(  64,  1, 1853,  5, 26, "Globe_18530526.html"),
	new Issue(  65,  1, 1853,  6,  7, "Globe_18530607.html"),
	new Issue(  66,  1, 1853,  6,  9, "Globe_18530609.html"),
	new Issue(  67,  1, 1853,  6, 21, "Globe_18530621.html"),
	new Issue(  68,  1, 1853,  6, 23, "Globe_18530623.html"),
	new Issue(  69,  1, 1853,  6, 25, "Globe_18530625.html"),
	new Issue(  70,  1, 1853,  7, 19, "Globe_18530719.html"),
	new Issue(  71,  1, 1853,  7, 21, "Globe_18530721.html"),
	new Issue(  72,  1, 1853,  7, 23, "Globe_18530723.html"),
	new Issue(  73,  1, 1853,  7, 26, "Globe_18530726.html"),
	new Issue(  74,  1, 1853,  7, 28, "Globe_18530728.html"),
	new Issue(  75,  1, 1853,  8,  2, "Globe_18530802.html"),
	new Issue(  76,  1, 1853,  8,  9, "Globe_18530809.html"),
	new Issue(  77,  1, 1853,  8, 18, "Globe_18530818.html"),
	new Issue(  78,  1, 1853,  8, 19, "Globe_18530819.html"),
	new Issue(  79,  1, 1853,  8, 23, "Globe_18530823.html"),
	new Issue(  80,  1, 1853,  8, 25, "Globe_18530825.html"),
	new Issue(  81,  1, 1853,  8, 30, "Globe_18530830.html"),
	new Issue(  82,  1, 1853,  9,  3, "Globe_18530903.html"),
	new Issue(  83,  1, 1853,  9,  6, "Globe_18530906.html"),
	new Issue(  84,  1, 1853,  9,  8, "Globe_18530908.html"),
	new Issue(  85,  1, 1853,  9, 10, "Globe_18530910.html"),
	new Issue(  86,  1, 1853,  9, 15, "Globe_18530915.html"),
	new Issue(  87,  1, 1853,  9, 27, "Globe_18530927.html"),
	new Issue(  88,  1, 1853, 10,  3, "Globe_18531003.html"),
	new Issue(  89,  1, 1853, 10, 11, "Globe_18531011.html"),
	new Issue(  90,  1, 1853, 10, 18, "Globe_18531018.html"),
	new Issue(  91,  1, 1853, 10, 25, "Globe_18531025.html"),
	new Issue(  92,  1, 1853, 11, 10, "Globe_18531110.html"),
	new Issue(  93,  1, 1853, 11, 12, "Globe_18531112.html"),
	new Issue(  94,  1, 1853, 11, 17, "Globe_18531117.html"),
	new Issue(  95,  1, 1853, 11, 21, "Globe_18531121.html"),
	new Issue(  96,  1, 1853, 11, 22, "Globe_18531122.html"),
	new Issue(  97,  1, 1853, 11, 24, "Globe_18531124.html"),
	new Issue(  98,  1, 1853, 11, 25, "Globe_18531125.html"),
	new Issue(  99,  1, 1853, 11, 29, "Globe_18531129.html"),
	new Issue( 100,  1, 1853, 12,  1, "Globe_18531201.html"),
	new Issue( 101,  1, 1853, 12,  2, "Globe_18531202.html"),
	new Issue( 102,  1, 1853, 12,  3, "Globe_18531203.html"),
	new Issue( 103,  1, 1853, 12,  5, "Globe_18531205.html"),
	new Issue( 104,  1, 1853, 12,  6, "Globe_18531206.html"),
	new Issue( 105,  1, 1853, 12, 16, "Globe_18531216.html"),
	new Issue( 106,  1, 1853, 12, 19, "Globe_18531219.html"),
	new Issue( 107,  1, 1853, 12, 26, "Globe_18531226.html"),
	new Issue( 108,  1, 1853, 12, 29, "Globe_18531229.html"),
	new Issue( 109,  1, 1854,  1,  3, "Globe_18540103.html"),
	new Issue( 110,  1, 1854,  1,  9, "Globe_18540109.html"),
	new Issue( 111,  1, 1854,  4, 27, "Globe_18540427.html"),
	new Issue( 112,  1, 1854,  5,  1, "Globe_18540501.html"),
	new Issue( 113,  1, 1854,  9, 22, "Globe_18540922.html"),
	new Issue( 114,  1, 1855,  1,  2, "Globe_18550102.html"),
	new Issue( 115,  3, 1860,  2,  2, "Globe_18600202.html"),
	new Issue( 116,  3, 1860,  2,  9, "Globe_18600209.html"),
	new Issue( 117,  3, 1860,  2, 10, "Globe_18600210.html"),
	new Issue( 118,  3, 1860,  2, 17, "Globe_18600217.html"),
	new Issue( 119,  3, 1860,  3, 20, "Globe_18600320.html"),
	new Issue( 120,  3, 1860,  4,  2, "Globe_18600402.html"),
	new Issue( 121,  3, 1860,  4,  4, "Globe_18600404.html"),
	new Issue( 122,  3, 1860,  4,  6, "Globe_18600406.html"),
	new Issue( 123,  3, 1860,  4, 27, "Globe_18600427.html"),
	new Issue( 124,  2, 1865,  6, 17, "Globe_18650617.html"),
	new Issue( 125,  2, 1865,  6, 22, "Globe_18650622.html"),
	new Issue( 126,  2, 1866,  1,  4, "Globe_18660104.html"),
	new Issue( 127,  2, 1866,  1,  5, "Globe_18660105.html"),
	new Issue( 128,  2, 1870,  1,  4, "Globe_18700104.html"),
	new Issue( 129,  2, 1870,  1,  5, "Globe_18700105.html"),
	new Issue( 130,  2, 1870,  1, 10, "Globe_18700110.html"),
	new Issue( 131,  2, 1870,  3,  7, "Globe_18700307.html"),
	new Issue( 132,  2, 1871, 11, 14, "Globe_18711114.html"),
	new Issue( 133,  2, 1871, 11, 15, "Globe_18711115.html"),
	new Issue( 134,  2, 1871, 11, 25, "Globe_18711125.html"),
	new Issue( 135,  2, 1873,  8, 18, "Globe_18730818.html"),
	new Issue( 136,  2, 1874,  2,  9, "Globe_18740209.html"),
	new Issue( 137,  2, 1874,  3,  6, "Globe_18740306.html"),
	new Issue( 138,  2, 1874,  3,  7, "Globe_18740307.html"),
	new Issue( 139,  2, 1874,  3, 19, "Globe_18740319.html"),
	new Issue( 140,  2, 1874,  3, 30, "Globe_18740330.html"),
	new Issue( 141,  2, 1874,  5,  1, "Globe_18740501.html"),
	new Issue( 142,  2, 1874,  5,  2, "Globe_18740502.html"),
	new Issue( 143,  2, 1874,  5,  5, "Globe_18740505.html"),
	new Issue( 144,  2, 1874,  5,  6, "Globe_18740506.html"),
	new Issue( 145,  2, 1874,  5, 11, "Globe_18740511.html"),
	new Issue( 146,  2, 1874,  5, 14, "Globe_18740514.html"),
	new Issue( 147,  2, 1874,  5, 23, "Globe_18740523.html"),
	new Issue( 148,  2, 1874,  5, 25, "Globe_18740525.html"),
	new Issue( 149,  2, 1874,  5, 29, "Globe_18740529.html"),
	new Issue( 150,  2, 1874,  6,  9, "Globe_18740609.html"),
	new Issue( 151,  2, 1874,  6, 29, "Globe_18740629.html"),
	new Issue( 152,  2, 1874,  6, 30, "Globe_18740630.html"),
	new Issue( 153,  2, 1874,  7,  6, "Globe_18740706.html"),
	new Issue( 154,  2, 1874,  7,  7, "Globe_18740707.html"),
	new Issue( 155,  2, 1874,  7,  8, "Globe_18740708.html"),
	new Issue( 156,  2, 1874,  7, 10, "Globe_18740710.html"),
	new Issue( 157,  2, 1874,  7, 11, "Globe_18740711.html"),
	new Issue( 158,  2, 1874,  9,  1, "Globe_18740901.html"),
	new Issue( 159,  2, 1874,  9,  2, "Globe_18740902.html"),
	new Issue( 160,  2, 1874,  9,  3, "Globe_18740903.html"),
	new Issue( 161,  2, 1875,  1, 15, "Globe_18750115.html"),
	new Issue( 162,  2, 1875,  1, 30, "Globe_18750130.html"),
	new Issue( 163,  2, 1875,  2, 11, "Globe_18750211.html"),
	new Issue( 164,  2, 1875,  2, 12, "Globe_18750212.html"),
	new Issue( 165,  2, 1875,  2, 17, "Globe_18750217.html"),
	new Issue( 166,  2, 1875,  3,  8, "Globe_18750308.html"),
	new Issue( 167,  2, 1875,  3, 17, "Globe_18750317.html"),
	new Issue( 168,  2, 1875,  5,  4, "Globe_18750504.html"),
	new Issue( 169,  2, 1875,  5, 25, "Globe_18750525.html"),
	new Issue( 170,  2, 1875,  6, 10, "Globe_18750610.html"),
	new Issue( 171,  2, 1875,  8, 19, "Globe_18750819.html"),
	new Issue( 172,  2, 1875,  8, 28, "Globe_18750828.html"),
	new Issue( 173,  2, 1875,  9,  8, "Globe_18750908.html"),
	new Issue( 174,  2, 1875, 10,  7, "Globe_18751007.html"),
	new Issue( 175,  2, 1875, 11,  3, "Globe_18751103.html"),
	new Issue( 176,  2, 1875, 11, 10, "Globe_18751110.html"),
	new Issue( 177,  2, 1875, 11, 15, "Globe_18751115.html"),
	new Issue( 178,  2, 1875, 12, 11, "Globe_18751211.html"),
	new Issue( 179,  2, 1876,  2,  5, "Globe_18760205.html"),
	new Issue( 180,  2, 1876,  2, 18, "Globe_18760218.html"),
	new Issue( 181,  2, 1876,  6,  3, "Globe_18760603.html"),
	new Issue( 182,  2, 1876,  6,  7, "Globe_18760607.html"),
	new Issue( 183,  2, 1876,  8,  5, "Globe_18760805.html"),
	new Issue( 184,  2, 1876,  9,  5, "Globe_18760905.html"),
	new Issue( 185,  2, 1876, 10, 28, "Globe_18761028.html"),
	new Issue( 186,  2, 1876, 11, 13, "Globe_18761113.html"),
	new Issue( 187,  2, 1876, 11, 20, "Globe_18761120.html"),
	new Issue( 188,  2, 1877,  2,  1, "Globe_18770201.html"),
	new Issue( 189,  2, 1877,  5, 14, "Globe_18770514.html"),
	new Issue( 190,  2, 1877,  5, 28, "Globe_18770528.html"),
	new Issue( 191,  2, 1877,  6, 19, "Globe_18770619.html"),
	new Issue( 192,  2, 1877,  8, 20, "Globe_18770820.html"),
	new Issue( 193,  2, 1877, 12,  6, "Globe_18771206.html"),
	new Issue( 194,  2, 1878,  1,  1, "Globe_18780101.html"),
	new Issue( 195,  2, 1878, 11,  4, "Globe_18781104.html"),
	new Issue( 196,  2, 1880, 12, 24, "Globe_18801224.html"),
	new Issue( 197,  2, 1881,  8,  5, "Globe_18810805.html"),
	new Issue( 198,  2, 1881,  8,  6, "Globe_18810806.html"),
	new Issue( 199,  2, 1881,  8,  8, "Globe_18810808.html"),
	new Issue( 200,  2, 1886,  1, 19, "Globe_18860119.html"),
	new Issue( 201,  2, 1886,  1, 20, "Globe_18860120.html"),
	new Issue( 202,  2, 1886,  2, 27, "Globe_18860227.html"),
	new Issue( 203,  2, 1886,  6, 26, "Globe_18860626.html"),
	new Issue( 204,  2, 1886,  7, 17, "Globe_18860717.html"),
	new Issue( 205,  2, 1886, 10, 21, "Globe_18861021.html"),
	new Issue( 206,  2, 1886, 11, 22, "Globe_18861122.html"),
	new Issue( 207,  2, 1890,  5,  6, "Globe_18900506.html"),
	new Issue( 208,  2, 1894,  4, 11, "Globe_18940411.html"),
	new Issue( 209,  2, 1895,  8, 21, "Globe_18950821.html"),
	new Issue( 210,  2, 1895,  8, 27, "Globe_18950827.html"),
	new Issue( 211,  2, 1895,  8, 28, "Globe_18950828.html"),
	new Issue( 212,  2, 1895,  8, 29, "Globe_18950829.html"),
	new Issue( 213,  2, 1895,  8, 30, "Globe_18950830.html"),
	new Issue( 214,  2, 1895,  9,  4, "Globe_18950904.html"),
	new Issue( 215,  2, 1895,  9,  6, "Globe_18950906.html"),
	new Issue( 216,  2, 1895,  9, 11, "Globe_18950911.html"),
	new Issue( 217,  2, 1895,  9, 17, "Globe_18950917.html"),
	new Issue( 218,  2, 1895,  9, 26, "Globe_18950926.html"),
	new Issue( 219,  2, 1895, 11,  6, "Globe_18951106.html"),
	new Issue( 220,  2, 1895, 12, 17, "Globe_18951217.html"),
	new Issue( 221,  2, 1895, 12, 18, "Globe_18951218.html"),
	new Issue( 222,  2, 1897,  4, 17, "Globe_18970417.html"),
	new Issue( 223,  2, 1900,  1, 10, "Globe_19000110.html"),
	new Issue( 224,  2, 1900,  1, 11, "Globe_19000111.html"),
	new Issue( 225,  2, 1900,  1, 27, "Globe_19000127.html"),
	new Issue( 226,  2, 1900,  2, 14, "Globe_19000214.html"),
	new Issue( 227,  2, 1900,  2, 20, "Globe_19000220.html"),
	new Issue( 228,  2, 1900,  2, 23, "Globe_19000223.html"),
	new Issue( 229,  2, 1900,  2, 24, "Globe_19000224.html"),
	new Issue( 230,  2, 1902,  2, 22, "Globe_19020222.html"),
	new Issue( 231,  2, 1902,  3,  8, "Globe_19020308.html"),
	new Issue( 232,  2, 1902,  3, 31, "Globe_19020331.html"),
	new Issue( 233,  2, 1903,  2, 20, "Globe_19030220.html"),
	new Issue( 234,  2, 1903,  2, 24, "Globe_19030224.html"),
	new Issue( 235,  2, 1903,  5, 11, "Globe_19030511.html"),
	new Issue( 236,  2, 1903,  5, 14, "Globe_19030514.html"),
	new Issue( 237,  2, 1903,  5, 16, "Globe_19030516.html"),
	new Issue( 238,  2, 1904,  9, 16, "Globe_19040916.html"),
	new Issue( 239,  2, 1905,  6, 19, "Globe_19050619.html"),
	new Issue( 240,  2, 1905,  6, 20, "Globe_19050620.html"),
	new Issue( 241,  2, 1905, 10,  2, "Globe_19051002.html"),
	new Issue( 242,  2, 1907,  3, 26, "Globe_19070326.html"),
	new Issue( 243,  2, 1908,  6, 22, "Globe_19080622.html"),
	new Issue( 244,  2, 1908,  6, 23, "Globe_19080623.html"),
	new Issue( 245,  2, 1908,  6, 24, "Globe_19080624.html"),
	new Issue( 246,  2, 1908,  6, 25, "Globe_19080625.html"),
	new Issue( 247,  2, 1908,  7,  4, "Globe_19080704.html"),
	new Issue( 248,  2, 1908,  7, 16, "Globe_19080716.html"),
	new Issue( 249,  2, 1908,  7, 17, "Globe_19080717.html"),
	new Issue( 250,  2, 1909, 10, 27, "Globe_19091027.html"),
	new Issue( 251,  2, 1912,  4,  2, "Globe_19120402.html"),
	new Issue( 252,  2, 1921,  7, 19, "Globe_19210719.html"),
	new Issue( 253,  2, 1922,  6, 13, "Globe_19220613.html"),
	new Issue( 254,  2, 1922,  6, 14, "Globe_19220614.html"),
	new Issue( 255,  2, 1922,  6, 19, "Globe_19220619.html"),
	new Issue( 256,  2, 1922,  6, 26, "Globe_19220626.html"),
	new Issue( 257,  2, 1922,  9, 13, "Globe_19220913.html"),
	new Issue( 258,  2, 1922, 12, 25, "Globe_19221225.html"),
	new Issue( 259,  2, 1923,  2, 16, "Globe_19230216.html"),
	new Issue( 260,  2, 1927,  5, 12, "Globe_19270512.html"),
	new Issue( 261,  2, 1928,  4, 16, "Globe_19280416.html"),
	new Issue( 262,  2, 1928,  4, 21, "Globe_19280421.html"),
	new Issue( 263,  2, 1929,  1, 21, "Globe_19290121.html"),
	new Issue( 264,  2, 1929,  2, 14, "Globe_19290214.html"),
	new Issue( 265,  2, 1929,  3, 21, "Globe_19290321.html"),
	new Issue( 266,  2, 1929,  3, 22, "Globe_19290322.html"),
	new Issue( 267,  2, 1930,  3,  7, "Globe_19300307.html"),
	new Issue( 268,  2, 1931,  1, 26, "Globe_19310126.html"),
	new Issue( 269,  2, 1931,  5, 19, "Globe_19310519.html"),
	new Issue( 270,  2, 1931,  5, 28, "Globe_19310528.html"),
	new Issue( 271,  2, 1931,  6,  4, "Globe_19310604.html"),
	new Issue( 272,  2, 1931, 11,  3, "Globe_19311103.html"),
	new Issue( 273,  2, 1931, 12, 11, "Globe_19311211.html"),
	new Issue( 274,  2, 1932,  1,  8, "Globe_19320108.html"),
	new Issue( 275,  2, 1932,  2, 25, "Globe_19320225.html"),
	new Issue( 276,  2, 1932,  5, 16, "Globe_19320516.html"),
	new Issue( 277,  4, 1942,  7, 15, "Globe_19420715.html"),
	new Issue( 278,  4, 1945, 10, 25, "Globe_19451025.html"),
	new Issue( 279,  4, 1948, 12, 23, "Globe_19481223.html"),
	new Issue( 280,  4, 1951,  2, 26, "Globe_19510226.html"),
	new Issue( 281,  4, 1953,  1,  1, "Globe_19530101.html"),
	new Issue( 282,  4, 1953,  1,  8, "Globe_19530108.html"),
	new Issue( 283,  4, 1953,  1,  9, "Globe_19530109.html"),
	new Issue( 284,  4, 1953,  1, 10, "Globe_19530110.html"),
	new Issue( 285,  4, 1953,  1, 15, "Globe_19530115.html"),
	new Issue( 286,  4, 1953,  1, 20, "Globe_19530120.html"),
	new Issue( 287,  4, 1953,  1, 21, "Globe_19530121.html"),
	new Issue( 288,  4, 1953,  2, 12, "Globe_19530212.html"),
	new Issue( 289,  4, 1953,  2, 13, "Globe_19530213.html"),
	new Issue( 290,  4, 1953,  2, 25, "Globe_19530225.html"),
	new Issue( 291,  4, 1953,  2, 27, "Globe_19530227.html"),
	new Issue( 292,  4, 1953,  3, 10, "Globe_19530310.html"),
	new Issue( 293,  4, 1953,  3, 17, "Globe_19530317.html"),
	new Issue( 294,  4, 1953,  3, 24, "Globe_19530324.html"),
	new Issue( 295,  4, 1953,  3, 28, "Globe_19530328.html"),
	new Issue( 296,  4, 1953,  3, 31, "Globe_19530331.html"),
	new Issue( 297,  4, 1953,  4, 10, "Globe_19530410.html"),
	new Issue( 298,  4, 1953,  4, 11, "Globe_19530411.html"),
	new Issue( 299,  4, 1953,  4, 18, "Globe_19530418.html"),
	new Issue( 300,  4, 1953,  5, 11, "Globe_19530511.html"),
	new Issue( 301,  4, 1953,  5, 14, "Globe_19530514.html"),
	new Issue( 302,  4, 1954,  1,  6, "Globe_19540106.html"),
	new Issue( 303,  4, 1954,  1,  7, "Globe_19540107.html"),
	new Issue( 304,  4, 1954,  1, 14, "Globe_19540114.html"),
	new Issue( 305,  4, 1954,  1, 19, "Globe_19540119.html"),
	new Issue( 306,  4, 1954,  1, 23, "Globe_19540123.html"),
	new Issue( 307,  4, 1954,  1, 25, "Globe_19540125.html"),
	new Issue( 308,  4, 1954,  2,  3, "Globe_19540203.html"),
	new Issue( 309,  4, 1954,  2,  4, "Globe_19540204.html"),
	new Issue( 310,  4, 1954,  2, 26, "Globe_19540226.html"),
	new Issue( 311,  4, 1954,  3, 29, "Globe_19540329.html"),
	new Issue( 312,  4, 1954,  4,  8, "Globe_19540408.html"),
	new Issue( 313,  4, 1954,  6, 17, "Globe_19540617.html"),
	new Issue( 314,  4, 1954,  6, 22, "Globe_19540622.html"),
	new Issue( 315,  4, 1954,  6, 23, "Globe_19540623.html"),
	new Issue( 316,  4, 1954,  6, 24, "Globe_19540624.html"),
	new Issue( 317,  4, 1954,  6, 25, "Globe_19540625.html"),
	new Issue( 318,  4, 1954,  7,  5, "Globe_19540705.html"),
	new Issue( 319,  4, 1954,  7, 17, "Globe_19540717.html"),
	new Issue( 320,  4, 1954,  7, 28, "Globe_19540728.html"),
	new Issue( 321,  4, 1954,  8,  3, "Globe_19540803.html"),
	new Issue( 322,  4, 1954,  8,  6, "Globe_19540806.html"),
	new Issue( 323,  4, 1954,  8,  7, "Globe_19540807.html"),
	new Issue( 324,  4, 1954,  9,  8, "Globe_19540908.html"),
	new Issue( 325,  4, 1954,  9, 27, "Globe_19540927.html"),
	new Issue( 326,  4, 1954, 10, 16, "Globe_19541016.html"),
	new Issue( 327,  4, 1954, 10, 18, "Globe_19541018.html"),
	new Issue( 328,  4, 1954, 10, 19, "Globe_19541019.html"),
	new Issue( 329,  4, 1954, 10, 30, "Globe_19541030.html"),
	new Issue( 330,  4, 1954, 11,  2, "Globe_19541102.html"),
	new Issue( 331,  4, 1954, 11,  3, "Globe_19541103.html"),
	new Issue( 332,  4, 1954, 11,  5, "Globe_19541105.html"),
	new Issue( 333,  4, 1954, 11, 12, "Globe_19541112.html"),
	new Issue( 334,  4, 1955,  1, 20, "Globe_19550120.html"),
	new Issue( 335,  4, 1955,  3,  2, "Globe_19550302.html"),
	new Issue( 336,  4, 1955,  3, 26, "Globe_19550326.html"),
	new Issue( 337,  4, 1955,  7,  6, "Globe_19550706.html"),
	new Issue( 338,  4, 1955,  7,  8, "Globe_19550708.html"),
	new Issue( 339, 10, 1895, 10, 25, "Banner_18951025.html"),
	new Issue( 340, 10, 1896,  8, 21, "Banner_18960821.html"),
	new Issue( 341, 10, 1900,  1, 19, "Banner_19000119.html"),
	new Issue( 342, 10, 1900,  1, 26, "Banner_19000126.html"),
	new Issue( 343, 10, 1900,  2, 23, "Banner_19000223.html"),
	new Issue( 344, 10, 1900,  5, 11, "Banner_19000511.html"),
	new Issue( 345, 10, 1953,  5, 21, "Banner_19530521.html"),
	new Issue( 346,  6, 1894,  4, 30, "Star_18940430.html"),
	new Issue( 347,  6, 1894, 10, 18, "Star_18941018.html"),
	new Issue( 348,  6, 1895,  4, 18, "Star_18950418.html"),
	new Issue( 349,  6, 1895,  6, 24, "Star_18950624.html"),
	new Issue( 350,  6, 1895,  8, 20, "Star_18950820.html"),
	new Issue( 351,  6, 1895,  8, 21, "Star_18950821.html"),
	new Issue( 352,  6, 1895,  8, 28, "Star_18950828.html"),
	new Issue( 353,  6, 1895,  8, 29, "Star_18950829.html"),
	new Issue( 354,  6, 1896,  1,  4, "Star_18960104.html"),
	new Issue( 355,  6, 1896,  1, 16, "Star_18960116.html"),
	new Issue( 356,  6, 1896,  1, 17, "Star_18960117.html"),
	new Issue( 357,  6, 1896,  1, 18, "Star_18960118.html"),
	new Issue( 358,  6, 1896,  1, 21, "Star_18960121.html"),
	new Issue( 359,  6, 1896,  1, 22, "Star_18960122.html"),
	new Issue( 360,  6, 1896,  1, 24, "Star_18960124.html"),
	new Issue( 361,  6, 1896,  1, 25, "Star_18960125.html"),
	new Issue( 362,  6, 1896,  1, 27, "Star_18960127.html"),
	new Issue( 363,  6, 1896,  2,  6, "Star_18960206.html"),
	new Issue( 364,  6, 1896,  2, 25, "Star_18960225.html"),
	new Issue( 365,  6, 1896,  3,  9, "Star_18960309.html"),
	new Issue( 366,  6, 1896,  3, 11, "Star_18960311.html"),
	new Issue( 367,  6, 1896,  3, 14, "Star_18960314.html"),
	new Issue( 368,  6, 1896,  4,  4, "Star_18960404.html"),
	new Issue( 369,  6, 1896,  4, 18, "Star_18960418.html"),
	new Issue( 370,  7, 1901,  3, 14, "Star_19010314.html"),
	new Issue( 371,  7, 1901,  3, 27, "Star_19010327.html"),
	new Issue( 372,  7, 1905, 12, 11, "Star_19051211.html"),
	new Issue( 373,  7, 1908,  7,  6, "Star_19080706.html"),
	new Issue( 374,  7, 1928,  4, 16, "Star_19280416.html"),
	new Issue( 375,  7, 1928,  4, 21, "Star_19280421.html"),
	new Issue( 376,  7, 1929,  2, 20, "Star_19290220.html"),
	new Issue( 377,  7, 1931,  4, 28, "Star_19310428.html"),
	new Issue( 378,  7, 1931,  6, 20, "Star_19310620.html"),
	new Issue( 379,  7, 1931,  8, 11, "Star_19310811.html"),
	new Issue( 380,  7, 1932,  1,  8, "Star_19320108.html"),
	new Issue( 381,  7, 1933, 10, 10, "Star_19331010.html"),
	new Issue( 382,  7, 1942,  7, 15, "Star_19420715.html"),
	new Issue( 383,  7, 1945,  5, 23, "Star_19450523.html"),
	new Issue( 384,  7, 1945,  6, 11, "Star_19450611.html"),
	new Issue( 385,  7, 1945,  7, 23, "Star_19450723.html"),
	new Issue( 386,  7, 1945, 12, 13, "Star_19451213.html"),
	new Issue( 387,  7, 1953,  5, 16, "Star_19530516.html"),
	new Issue( 388,  7, 1954,  4, 13, "Star_19540413.html"),
	new Issue( 389,  8, 2004,  8,  6, "Star_20040806.html"),
	new Issue( 390, 13, 2006,  5, 17, "BarrieAdvance_20060517.html"),
	new Issue( 391, 13, 2007,  2, 28, "BarrieAdvance_20070228.html"),
	new Issue( 392, 14, 1935,  3, 12, "DailySentinelReview_19350312.html"),
	new Issue( 393, 14, 1935,  3, 13, "DailySentinelReview_19350313.html"),
	new Issue( 394, 14, 1935,  3, 14, "DailySentinelReview_19350314.html"),
	new Issue( 395, 15, 1860,  9, 14, "Era_18600914.html"),
	new Issue( 396, 16, 1896,  1, 17, "Era_18960117.html"),
	new Issue( 398, 12, 1884,  9, 25, "TorontoWorld_18840925.html"),
	new Issue( 399, 12, 1884,  9, 26, "TorontoWorld_18840926.html"),
	new Issue( 400, 12, 1918,  7, 25, "TorontoWorld_19180725.html"),
	new Issue( 401, 17, 1874,  1,  2, "NorfolkReformer_18740102.html"),
	new Issue( 402, 17, 1874,  1, 23, "NorfolkReformer_18740123.html"),
	new Issue( 403, 17, 1874,  2, 27, "NorfolkReformer_18740227.html"),
	new Issue( 404, 17, 1874,  4,  3, "NorfolkReformer_18740403.html"),
	new Issue( 405, 17, 1874,  4,  9, "NorfolkReformer_18740409.html"),
	new Issue( 406, 17, 1874,  4, 16, "NorfolkReformer_18740416.html"),
	new Issue( 407, 17, 1874,  4, 23, "NorfolkReformer_18740423.html"),
	new Issue( 408, 17, 1874,  5, 28, "NorfolkReformer_18740528.html"),
	new Issue( 409, 17, 1874,  6, 11, "NorfolkReformer_18740611.html"),
	new Issue( 410, 17, 1875, 10, 14, "NorfolkReformer_18751014.html"),
	new Issue( 411, 17, 1875, 11, 11, "NorfolkReformer_18751111.html"),
	new Issue( 412, 18, 1850,  5, 21, "NorthAmerican_18500521.html"),
	new Issue( 413, 18, 1850,  5, 28, "NorthAmerican_18500528.html"),
	new Issue( 414, 18, 1850,  6,  7, "NorthAmerican_18500607.html"),
	new Issue( 415, 18, 1850,  7, 16, "NorthAmerican_18500716.html"),
	new Issue( 416, 18, 1850,  8,  2, "NorthAmerican_18500802.html"),
	new Issue( 417, 18, 1850,  8,  6, "NorthAmerican_18500806.html"),
	new Issue( 418, 18, 1850,  8,  9, "NorthAmerican_18500809.html"),
	new Issue( 419, 18, 1850,  8, 13, "NorthAmerican_18500813.html"),
	new Issue( 420, 18, 1850,  8, 16, "NorthAmerican_18500816.html"),
	new Issue( 421, 18, 1850,  8, 20, "NorthAmerican_18500820.html"),
	new Issue( 422, 18, 1850,  9, 10, "NorthAmerican_18500910.html"),
	new Issue( 423, 18, 1850,  9, 13, "NorthAmerican_18500913.html"),
	new Issue( 424, 18, 1851, 10, 28, "NorthAmerican_18511028.html"),
	new Issue( 425, 18, 1851, 11, 18, "NorthAmerican_18511118.html"),
	new Issue( 426, 18, 1851, 11, 21, "NorthAmerican_18511121.html"),
	new Issue( 427, 18, 1851, 11, 28, "NorthAmerican_18511128.html"),
	new Issue( 428, 18, 1852,  1, 27, "NorthAmerican_18520127.html"),
	new Issue( 429, 18, 1852,  2,  3, "NorthAmerican_18520203.html"),
	new Issue( 430, 18, 1852, 10,  8, "NorthAmerican_18521008.html"),
	new Issue( 431, 18, 1853,  1,  7, "NorthAmerican_18530107.html"),
	new Issue( 432, 19, 1879,  7, 24, "NorthernAdvance_18790724.html"),
	new Issue( 433, 20, 1912,  4,  4, "SimcoeReformer_19120404.html"),
	new Issue( 434, 20, 1930,  5, 15, "SimcoeReformer_19300515.html"),
	new Issue( 435, 20, 1935,  5,  2, "SimcoeReformer_19350502.html"),
	new Issue( 436, 21, 2007, 11, 28, "SiouxLookoutBulletin_20071128.html"),
	new Issue( 437, 11, 1845,  6, 18, "TorontoExaminer_18450618.html"),
	new Issue( 438, 11, 1847,  5, 19, "TorontoExaminer_18470519.html"),
	new Issue( 439, 11, 1852,  3, 24, "TorontoExaminer_18520324.html"),
	new Issue( 440, 11, 1852,  6,  2, "TorontoExaminer_18520602.html"),
	new Issue( 441, 11, 1852,  6,  9, "TorontoExaminer_18520609.html"),
	new Issue( 442, 11, 1852,  6, 16, "TorontoExaminer_18520616.html"),
	new Issue( 443, 11, 1852,  6, 30, "TorontoExaminer_18520630.html"),
	new Issue( 444, 11, 1852,  7, 21, "TorontoExaminer_18520721.html"),
	new Issue( 445, 11, 1852,  7, 28, "TorontoExaminer_18520728.html"),
	new Issue( 446, 11, 1852,  8,  4, "TorontoExaminer_18520804.html"),
	new Issue( 447, 11, 1852,  8, 25, "TorontoExaminer_18520825.html"),
	new Issue( 448, 11, 1852,  9,  8, "TorontoExaminer_18520908.html"),
	new Issue( 449, 11, 1852, 10,  6, "TorontoExaminer_18521006.html"),
	new Issue( 450, 11, 1852, 10, 13, "TorontoExaminer_18521013.html"),
	new Issue( 451, 11, 1852, 11, 10, "TorontoExaminer_18521110.html"),
	new Issue( 452, 11, 1852, 11, 17, "TorontoExaminer_18521117.html"),
	new Issue( 453, 11, 1853,  5, 18, "TorontoExaminer_18530518.html"),
	new Issue( 454, 11, 1853,  8, 24, "TorontoExaminer_18530824.html"),
	new Issue( 455, 11, 1854,  1, 11, "TorontoExaminer_18540111.html"),
	new Issue( 456, 11, 1854,  1, 18, "TorontoExaminer_18540118.html"),
	new Issue( 457, 11, 1854,  1, 25, "TorontoExaminer_18540125.html"),
	new Issue( 458, 22, 1870, 12,  9, "WoodstockSentinel_18701209.html"),
	new Issue( 459, 22, 1871,  1, 13, "WoodstockSentinel_18710113.html"),
	new Issue( 460, 22, 1871,  1, 20, "WoodstockSentinel_18710120.html"),
	new Issue( 461, 22, 1871,  1, 27, "WoodstockSentinel_18710127.html"),
	new Issue( 462, 22, 1871,  2,  3, "WoodstockSentinel_18710203.html"),
	new Issue( 463, 22, 1871,  2, 10, "WoodstockSentinel_18710210.html"),
	new Issue( 464, 22, 1871, 12,  1, "WoodstockSentinel_18711201.html"),
	new Issue( 465, 22, 1871, 12,  8, "WoodstockSentinel_18711208.html"),
	new Issue( 466, 22, 1871, 12, 22, "WoodstockSentinel_18711222.html"),
	new Issue( 467, 22, 1872,  3, 15, "WoodstockSentinel_18720315.html"),
	new Issue( 468, 22, 1872,  6, 21, "WoodstockSentinel_18720621.html"),
	new Issue( 469, 22, 1872, 10,  5, "WoodstockSentinel_18721004.html"),
	new Issue( 470, 22, 1872, 11,  8, "WoodstockSentinel_18721108.html"),
	new Issue( 471, 22, 1872, 11, 15, "WoodstockSentinel_18721115.html"),
	new Issue( 472, 22, 1872, 11, 22, "WoodstockSentinel_18721122.html"),
	new Issue( 473, 22, 1872, 11, 29, "WoodstockSentinel_18721129.html"),
	new Issue( 474, 22, 1872, 12, 13, "WoodstockSentinel_18721213.html"),
	new Issue( 475, 22, 1872, 12, 20, "WoodstockSentinel_18721220.html"),
	new Issue( 476, 22, 1873,  1,  3, "WoodstockSentinel_18730103.html"),
	new Issue( 477, 22, 1873,  1, 10, "WoodstockSentinel_18730110.html"),
	new Issue( 478, 22, 1873,  1, 17, "WoodstockSentinel_18730117.html"),
	new Issue( 479, 22, 1873,  2,  7, "WoodstockSentinel_18730207.html"),
	new Issue( 480, 22, 1873,  2, 14, "WoodstockSentinel_18730214.html"),
	new Issue( 481, 22, 1873,  2, 28, "WoodstockSentinel_18730228.html"),
	new Issue( 482, 22, 1873,  4,  4, "WoodstockSentinel_18730404.html"),
	new Issue( 483, 22, 1873,  5,  9, "WoodstockSentinel_18730509.html"),
	new Issue( 484, 22, 1873,  5, 23, "WoodstockSentinel_18730523.html"),
	new Issue( 485, 22, 1873, 10, 10, "WoodstockSentinel_18731010.html"),
	new Issue( 486, 22, 1873, 10, 24, "WoodstockSentinel_18731024.html"),
	new Issue( 487, 22, 1873, 11, 14, "WoodstockSentinel_18731114.html"),
	new Issue( 488, 22, 1874,  2, 13, "WoodstockSentinel_18740213.html"),
	new Issue( 489, 23, 1874,  1,  2, "WoodstockWeeklyReview_18740102.html"),
	new Issue( 490, 23, 1874,  1,  9, "WoodstockWeeklyReview_18740109.html"),
	new Issue( 491, 23, 1874,  1, 16, "WoodstockWeeklyReview_18740116.html"),
	new Issue( 492, 23, 1874,  1, 23, "WoodstockWeeklyReview_18740123.html"),
	new Issue( 493, 23, 1874,  1, 30, "WoodstockWeeklyReview_18740130.html"),
	new Issue( 494, 23, 1874,  2,  6, "WoodstockWeeklyReview_18740206.html"),
	new Issue( 495, 23, 1874,  2, 13, "WoodstockWeeklyReview_18740213.html"),
	new Issue( 496, 23, 1874,  2, 20, "WoodstockWeeklyReview_18740220.html"),
	new Issue( 497, 23, 1874,  3,  6, "WoodstockWeeklyReview_18740306.html"),
	new Issue( 498, 23, 1874,  3, 20, "WoodstockWeeklyReview_18740320.html"),
	new Issue( 499, 23, 1874,  3, 27, "WoodstockWeeklyReview_18740327.html"),
	new Issue( 500, 23, 1874,  4,  3, "WoodstockWeeklyReview_18740403.html"),
	new Issue( 501, 23, 1874,  4, 10, "WoodstockWeeklyReview_18740410.html"),
	new Issue( 502, 23, 1874,  4, 17, "WoodstockWeeklyReview_18740417.html"),
	new Issue( 503, 23, 1874,  4, 24, "WoodstockWeeklyReview_18740424.html"),
	new Issue( 504, 23, 1874,  5,  1, "WoodstockWeeklyReview_18740501.html"),
	new Issue( 505, 23, 1874,  5,  8, "WoodstockWeeklyReview_18740508.html"),
	new Issue( 506, 23, 1874,  5, 15, "WoodstockWeeklyReview_18740515.html"),
	new Issue( 507, 23, 1874,  5, 22, "WoodstockWeeklyReview_18740522.html"),
//	new Issue( 508, 23, 1874,  6,  5, "WoodstockWeeklyReview_18740605.html"),
	new Issue( 509, 23, 1874,  6, 12, "WoodstockWeeklyReview_18740612.html"),
	new Issue( 510, 23, 1874,  6, 19, "WoodstockWeeklyReview_18740619.html"),
	new Issue( 511, 23, 1874,  7,  3, "WoodstockWeeklyReview_18740703.html"),
	new Issue( 512, 23, 1874,  7, 10, "WoodstockWeeklyReview_18740710.html"),
	new Issue( 513, 23, 1874,  7, 17, "WoodstockWeeklyReview_18740717.html"),
	new Issue( 514, 23, 1874,  7, 24, "WoodstockWeeklyReview_18740724.html"),
	new Issue( 515, 23, 1874,  7, 31, "WoodstockWeeklyReview_18740731.html"),
	new Issue( 516, 23, 1874,  8,  7, "WoodstockWeeklyReview_18740807.html"),
	new Issue( 517, 23, 1874,  8, 21, "WoodstockWeeklyReview_18740821.html"),
	new Issue( 518, 23, 1874,  8, 28, "WoodstockWeeklyReview_18740828.html"),
	new Issue( 519, 23, 1874,  9,  4, "WoodstockWeeklyReview_18740904.html"),
	new Issue( 520, 23, 1874,  9, 25, "WoodstockWeeklyReview_18740925.html"),
	new Issue( 521, 23, 1874, 10,  9, "WoodstockWeeklyReview_18741009.html"),
	new Issue( 522, 23, 1874, 10, 16, "WoodstockWeeklyReview_18741016.html"),
	new Issue( 523, 23, 1874, 10, 23, "WoodstockWeeklyReview_18741023.html"),
	new Issue( 524, 23, 1874, 10, 30, "WoodstockWeeklyReview_18741030.html"),
	new Issue( 525, 23, 1874, 11,  6, "WoodstockWeeklyReview_18741106.html"),
	new Issue( 526, 23, 1874, 11, 13, "WoodstockWeeklyReview_18741113.html"),
	new Issue( 527, 23, 1874, 11, 20, "WoodstockWeeklyReview_18741120.html"),
	new Issue( 528, 23, 1874, 11, 27, "WoodstockWeeklyReview_18741127.html"),
	new Issue( 529, 23, 1874, 12,  4, "WoodstockWeeklyReview_18741204.html"),
	new Issue( 530, 23, 1874, 12, 18, "WoodstockWeeklyReview_18741218.html"),
	new Issue( 531, 23, 1874, 12, 25, "WoodstockWeeklyReview_18741225.html"),
	new Issue( 532, 23, 1875,  1, 15, "WoodstockWeeklyReview_18750115.html"),
	new Issue( 533, 23, 1875,  1, 29, "WoodstockWeeklyReview_18750129.html"),
	new Issue( 534, 23, 1875,  2,  5, "WoodstockWeeklyReview_18750205.html"),
	new Issue( 535, 23, 1875,  2, 12, "WoodstockWeeklyReview_18750212.html"),
	new Issue( 536, 23, 1875,  2, 19, "WoodstockWeeklyReview_18750219.html"),
	new Issue( 537, 23, 1875,  2, 26, "WoodstockWeeklyReview_18750226.html"),
	new Issue( 538, 23, 1875,  3,  5, "WoodstockWeeklyReview_18750305.html"),
	new Issue( 539, 23, 1875,  3, 12, "WoodstockWeeklyReview_18750312.html"),
	new Issue( 540, 23, 1875,  3, 19, "WoodstockWeeklyReview_18750319.html"),
	new Issue( 541, 23, 1875,  3, 26, "WoodstockWeeklyReview_18750326.html"),
	new Issue( 542, 23, 1875,  4,  2, "WoodstockWeeklyReview_18750402.html"),
	new Issue( 543, 23, 1875,  4,  9, "WoodstockWeeklyReview_18750409.html"),
	new Issue( 544, 23, 1875,  4, 16, "WoodstockWeeklyReview_18750416.html"),
	new Issue( 545, 23, 1875,  8,  6, "WoodstockWeeklyReview_18750806.html"),
	new Issue( 546, 23, 1875,  8, 20, "WoodstockWeeklyReview_18750820.html"),
	new Issue( 547, 23, 1875,  9,  3, "WoodstockWeeklyReview_18750903.html"),
	new Issue( 548,  2, 1923,  1,  9, "Globe_19230109.html"),
	new Issue( 549,  2, 1923,  2,  2, "Globe_19230202.html"),
	new Issue( 550,  2, 1923,  6, 12, "Globe_19230612.html"),
	new Issue( 551,  2, 1924,  5, 10, "Globe_19240510.html"),
	new Issue( 552,  2, 1930,  1, 10, "Globe_19300113.html"),
	new Issue( 553,  2, 1930,  1,  3, "Globe_19300103.html"),
	new Issue( 554,  2, 1930,  1,  6, "Globe_19300106.html"),
	new Issue( 555,  2, 1930,  1, 15, "Globe_19300115.html"),
	new Issue( 556,  2, 1930,  1, 16, "Globe_19300116.html"),
	new Issue( 557,  2, 1930,  3,  5, "Globe_19300305.html"),
	new Issue( 558,  2, 1930,  3, 15, "Globe_19300315.html"),
	new Issue( 559,  2, 1930,  3, 19, "Globe_19300319.html"),
	new Issue( 560,  2, 1930,  3, 24, "Globe_19300324.html"),
	new Issue( 561,  2, 1924,  1, 30, "Globe_19240130.html"),
	new Issue( 562,  2, 1924,  2,  5, "Globe_19240205.html"),
	new Issue( 563,  2, 1924,  2, 21, "Globe_19240221.html"),
	new Issue( 564,  2, 1924,  3, 13, "Globe_19240313.html"),
	new Issue( 565,  2, 1929,  4,  6, "Globe_19290406.html"),
	new Issue( 566,  2, 1929,  4,  9, "Globe_19290409.html"),
	new Issue( 567,  2, 1930,  7, 22, "Globe_19300722.html"),
	new Issue( 568,  2, 1930,  7, 23, "Globe_19300723.html"),
	new Issue( 569,  2, 1930,  7, 28, "Globe_19300728.html"),
	new Issue( 570,  2, 1930,  8,  2, "Globe_19300802.html"),
	new Issue( 571,  2, 1930,  8, 27, "Globe_19300827.html"),
	new Issue( 572,  2, 1930,  9,  5, "Globe_19300905.html"),
	new Issue( 573,  2, 1930,  9, 12, "Globe_19300912.html"),
	new Issue( 574,  2, 1930,  9, 13, "Globe_19300913.html"),
	new Issue( 575,  2, 1930,  9, 24, "Globe_19300924.html"),
	new Issue( 576,  2, 1930,  9, 25, "Globe_19300925.html"),
	new Issue( 577,  2, 1930,  9, 26, "Globe_19300926.html"),
	new Issue( 578,  2, 1930, 10,  8, "Globe_19301008.html"),
	new Issue( 579,  2, 1931,  1, 16, "Globe_19310116.html"),
	new Issue( 580,  2, 1931,  7,  1, "Globe_19310701.html"),
	new Issue( 581,  2, 1931,  7, 15, "Globe_19310715.html"),
	new Issue( 582,  2, 1931,  9, 17, "Globe_19310917.html"),
	new Issue( 583,  7, 1931,  9, 17, "Star_19310507.html"),
	new Issue( 584,  7, 1931, 10, 27, "Star_19311027.html"),
	new Issue( 585,  7, 1931, 11,  6, "Star_19311106.html"),
	new Issue( 586,  2, 1930,  1,  1, "Globe_19300101.html"),
	new Issue( 587,  2, 1930,  9, 30, "Globe_19300930.html"),
	new Issue( 588,  2, 1931,  1, 19, "Globe_19310119.html"),
	new Issue( 589,  2, 1930, 10, 22, "Globe_19301022.html"),
	new Issue( 590,  2, 1930, 11, 11, "Globe_19301111.html"),
	new Issue( 591,  2, 1931,  1,  1, "Globe_19310101.html"),
	new Issue( 592,  2, 1931,  1,  6, "Globe_19310106.html"),
	new Issue( 593,  2, 1931,  1, 12, "Globe_19310112.html"),
	new Issue( 594,  2, 1931,  1, 15, "Globe_19310115.html"),
	new Issue( 595,  2, 1931,  1, 30, "Globe_19310130.html"),
	new Issue( 596,  2, 1931,  2,  9, "Globe_19310209.html"),
	new Issue( 597,  2, 1931,  3, 20, "Globe_19310320.html"),
	new Issue( 598,  2, 1931,  3, 26, "Globe_19310326.html"),
	new Issue( 599,  2, 1931,  6, 18, "Globe_19310618.html"),
	new Issue( 600,  2, 1931,  6, 23, "Globe_19310623.html"),
	new Issue( 601,  2, 1931,  6, 25, "Globe_19310625.html"),
	new Issue( 602,  2, 1931,  5, 29, "Globe_19310529.html"),
	new Issue( 603,  2, 1931,  7,  4, "Globe_19310704.html"),
	new Issue( 604,  2, 1931,  7,  7, "Globe_19310707.html"),
	new Issue( 605,  2, 1931,  7,  8, "Globe_19310708.html"),
	new Issue( 606,  2, 1931,  7, 17, "Globe_19310717.html"),
	new Issue( 607,  2, 1931,  7, 18, "Globe_19310718.html"),
	new Issue( 608,  2, 1931,  8,  5, "Globe_19310805.html"),
	new Issue( 609,  2, 1931,  8, 24, "Globe_19310824.html"),
	new Issue( 610,  2, 1931,  8, 26, "Globe_19310826.html"),
	new Issue( 611,  2, 1931,  9, 20, "Globe_19310929.html"),
	new Issue( 612,  2, 1931, 10, 27, "Globe_19311027.html"),
	new Issue( 613,  2, 1931, 11, 10, "Globe_19311110.html"),
	new Issue( 614,  2, 1931, 11, 24, "Globe_19311124.html"),
	new Issue( 615,  2, 1931, 12,  4, "Globe_19311204.html"),
	new Issue( 616,  2, 1931, 12,  7, "Globe_19311207.html"),
	new Issue( 617,  7, 1920,  5, 27, "Star_19290527.html"),
	new Issue( 618,  7, 1931,  7,  7, "Star_19310707.html"),
	new Issue( 619,  7, 1931,  7,  8, "Star_19310708.html"),
	new Issue( 620,  7, 1931,  7,  9, "Star_19310709.html"),
	new Issue( 621,  7, 1931,  7, 14, "Star_19310714.html"),
	new Issue( 622,  7, 1931,  7, 18, "Star_19310718.html"),
	new Issue( 623,  7, 1931,  8, 10, "Star_19310810.html"),
	new Issue( 624,  7, 1931,  8, 15, "Star_19310815.html"),
	new Issue( 625,  7, 1931,  8, 19, "Star_19310819.html"),
	new Issue( 626,  7, 1931,  8, 20, "Star_19310820.html"),
	new Issue( 627,  7, 1931,  8, 24, "Star_19310824.html"),
	new Issue( 628,  7, 1931,  8, 26, "Star_19310826.html"),
	new Issue( 629,  7, 1931,  9,  9, "Star_19310909.html"),
	new Issue( 630,  7, 1931,  9, 10, "Star_19310910.html"),
	new Issue( 631,  7, 1934,  5,  3, "Star_19340503.html"),
	new Issue( 632,  7, 1934, 12, 13, "Star_19341213.html"),
	new Issue( 633,  2, 1923,  5, 15, "Globe_19230515.html"),
	new Issue( 634,  2, 1923,  6,  8, "Globe_19230608.html"),
	new Issue( 635,  2, 1923,  6, 21, "Globe_19230621.html"),
	new Issue( 636,  2, 1923,  6, 28, "Globe_19230628.html"),
	new Issue( 637,  2, 1923,  6, 29, "Globe_19230629.html"),
	new Issue( 638, 10, 1896,  3, 13, "Banner_18960313.html"),
	new Issue( 639, 10, 1942,  6, 26, "Banner_19420626.html"),
	new Issue( 640, 10, 1908, 10, 23, "Banner_19081023.html"),
	new Issue( 641,  2, 1876,  1, 27, "Globe_18760127.html"),
	new Issue( 642,  2, 1876,  2,  4, "Globe_18760204.html"),
	new Issue( 643,  7, 1945,  8, 25, "Star_19450825.html"),
	new Issue( 644,  7, 1945,  2, 26, "Star_19450226.html"),
	new Issue( 645,  4, 1947,  9,  1, "Globe_19470901.html"),
	new Issue( 646,  4, 1948,  1,  2, "Globe_19480102.html"),
	new Issue( 647,  1, 1852,  4,  6, "Globe_18520406.html"),
	new Issue( 648,  4, 1947,  7,  4, "Globe_19470704.html"),
	new Issue( 649,  4, 1946,  3, 29, "Globe_19460329.html"),
	new Issue( 650,  4, 1949,  5,  4, "Globe_19490504.html"),
	new Issue( 651,  4, 1950,  3,  9, "Globe_19500309.html"),
	new Issue( 652,  2, 1877,  1, 18, "Globe_18770118.html"),
	new Issue( 653,  2, 1870,  1, 11, "Globe_18700111.html"),
	new Issue( 654,  2, 1870,  1, 15, "Globe_18700115.html"),
	new Issue( 655,  2, 1870,  1, 17, "Globe_18700117.html"),
	new Issue( 656,  2, 1870,  1, 18, "Globe_18700118.html"),
	new Issue( 657,  2, 1906,  2,  7, "Globe_19060207.html"),
	new Issue( 658,  2, 1906, 11, 20, "Globe_19061120.html"),
	new Issue( 659,  2, 1904,  7, 20, "Globe_19040720.html"),
	new Issue( 660,  2, 1904,  2, 22, "Globe_19040222.html"),
	new Issue( 661,  7, 1904,  7, 19, "Star_19040719.html"),
	new Issue( 662,  2, 1904,  2,  3, "Globe_19040203.html"),
	new Issue( 663,  2, 1903, 10,  1, "Globe_19031001.html"),
	new Issue( 664,  2, 1903, 11, 30, "Globe_19031130.html"),
	new Issue( 665,  2, 1904,  1,  4, "Globe_19040104.html"),
	new Issue( 666,  2, 1905,  1, 31, "Globe_19050131.html"),
	new Issue( 667,  2, 1935,  8, 27, "Globe_19350827.html"),
	new Issue( 668,  4, 1950,  4,  3, "Globe_19500403.html"),
	new Issue( 669,  9, 1884,  7, 19, "NewYorkTimes_18840719.html"),
	new Issue( 670,  2, 1886,  2,  1, "Globe_18860201.html"),
	new Issue( 671,  4, 1952,  5, 19, "Globe_19520519.html")
	);

//  The following arrays a generated automatically using Indices.html then cut-and-pasted into this file.
var indexPublicationByPublicationID = new Array(
	 0,  1,  2,  3,  4,  5,  6,  7,  8,  9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21
	);

var indexPublicationBySortTitle = new Array(
	 8, 11, 12,  9,  0,  2,  1,  3, 13,  7, 14, 15, 16, 17, 18, 19,  4,  5,  6, 10, 20, 21
	);

var indexIssueByIssueID = new Array(
	  0,   1,   2,   3,   4,   5,   6,   7,   8,   9,  10,  11,  12,  13,  14,  15,  16,  17,  18,  19,  20,  21,  22,  23,  24, 
	 25,  26,  27,  28,  29,  30,  31,  32,  33,  34,  35,  36,  37,  38,  39,  40,  41,  42,  43,  44,  45,  46,  47,  48,  49, 
	 50,  51,  52,  53,  54,  55,  56,  57,  58,  59,  60,  61,  62,  63,  64,  65,  66,  67,  68,  69,  70,  71,  72,  73,  74, 
	 75,  76,  77,  78,  79,  80,  81,  82,  83,  84,  85,  86,  87,  88,  89,  90,  91,  92,  93,  94,  95,  96,  97,  98,  99, 
	100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 
	125, 126, 127, 128, 129, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 
	150, 151, 152, 153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 
	175, 176, 177, 178, 179, 180, 181, 182, 183, 184, 185, 186, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 
	200, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 
	225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 237, 238, 239, 240, 241, 242, 243, 244, 245, 246, 247, 248, 249, 
	250, 251, 252, 253, 254, 255, 256, 257, 258, 259, 260, 261, 262, 263, 264, 265, 266, 267, 268, 269, 270, 271, 272, 273, 274, 
	275, 276, 277, 278, 279, 280, 281, 282, 283, 284, 285, 286, 287, 288, 289, 290, 291, 292, 293, 294, 295, 296, 297, 298, 299, 
	300, 301, 302, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312, 313, 314, 315, 316, 317, 318, 319, 320, 321, 322, 323, 324, 
	325, 326, 327, 328, 329, 330, 331, 332, 333, 334, 335, 336, 337, 338, 339, 340, 341, 342, 343, 344, 345, 346, 347, 348, 349, 
	350, 351, 352, 353, 354, 355, 356, 357, 358, 359, 360, 361, 362, 363, 364, 365, 366, 367, 368, 369, 370, 371, 372, 373, 374, 
	375, 376, 377, 378, 379, 380, 381, 382, 383, 384, 385, 386, 387, 388, 389, 390, 391, 392, 393, 394, 395, 396, 397, 398, 399, 
	400, 401, 402, 403, 404, 405, 406, 407, 408, 409, 410, 411, 412, 413, 414, 415, 416, 417, 418, 419, 420, 421, 422, 423, 424, 
	425, 426, 427, 428, 429, 430, 431, 432, 433, 434, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 
	450, 451, 452, 453, 454, 455, 456, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 472, 473, 474, 
	475, 476, 477, 478, 479, 480, 481, 482, 483, 484, 485, 486, 487, 488, 489, 490, 491, 492, 493, 494, 495, 496, 497, 498, 499, 
	500, 501, 502, 503, 504, 505, 506, 507, 508, 509, 510, 511, 512, 513, 514, 515, 516, 517, 518, 519, 520, 521, 522, 523, 524, 
	525, 526, 527, 528, 529, 530, 531, 532, 533, 534, 535, 536, 537, 538, 539, 540, 541, 542, 543, 544, 545, 546, 547, 548, 549, 
	550, 551, 552, 553, 554, 555, 556, 557, 558, 559, 560, 561, 562, 563, 564, 565, 566, 567, 568, 569, 570, 571, 572, 573, 574, 
	575, 576, 577, 578, 579, 580, 581, 582, 583, 584, 585, 586, 587, 588, 589, 590, 591, 592, 593, 594, 595, 596, 597, 598, 599, 
	600, 601, 602, 603, 604, 605, 606, 607, 608, 609, 610, 611, 612, 613, 614, 615, 616, 617, 618, 619, 620, 621, 622, 623, 624, 
	625, 626, 627, 628, 629, 630, 631, 632, 633, 634, 635, 636, 637, 638, 639, 640, 641, 642, 643, 644, 645, 646, 647, 648, 649, 
	650, 651, 652, 653, 654, 655, 656, 657, 658, 659, 660, 661, 662, 663, 664, 665, 666, 667, 668
	);

var indexIssueByPublicationID = new Array(
	  0,   1,   2,   3,   4,   5,   6,   7,   8,   9,  10,  11,  12,  13,  14,  15,  16,  17,  18,  19,  20,  21,  22,  23,  24, 
	 25,  26,  27,  28,  29,  30,  31, 644,  32,  33,  34,  35,  36,  37,  38,  39,  40,  41,  42,  43,  44,  45,  46,  47,  48, 
	 49,  50,  51,  52,  53,  54,  55,  56,  57,  58,  59,  60,  61,  62,  63,  64,  65,  66,  67,  68,  69,  70,  71,  72,  73, 
	 74,  75,  76,  77,  78,  79,  80,  81,  82,  83,  84,  85,  86,  87,  88,  89,  90,  91,  92,  93,  94,  95,  96,  97,  98, 
	 99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 110, 111, 112, 113, 123, 124, 125, 126, 127, 128, 129, 650, 651, 652, 
	653, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 153, 
	154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 638, 
	639, 178, 179, 180, 181, 182, 183, 184, 185, 186, 649, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 200, 
	667, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 224, 
	225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 660, 661, 662, 659, 657, 656, 237, 663, 238, 239, 240, 654, 655, 
	241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, 256, 257, 545, 546, 258, 630, 631, 547, 632, 633, 
	634, 558, 559, 560, 561, 548, 259, 260, 261, 262, 263, 264, 265, 562, 563, 583, 550, 551, 549, 552, 553, 554, 266, 555, 556, 
	557, 564, 565, 566, 567, 568, 569, 570, 571, 572, 573, 574, 584, 575, 586, 587, 588, 589, 590, 591, 576, 585, 267, 592, 593, 
	594, 595, 268, 269, 599, 270, 596, 597, 598, 577, 600, 601, 602, 578, 603, 604, 605, 606, 607, 579, 608, 609, 271, 610, 611, 
	612, 613, 272, 273, 274, 275, 664, 114, 115, 116, 117, 118, 119, 120, 121, 122, 276, 277, 646, 645, 642, 643, 278, 647, 648, 
	665, 279, 668, 280, 281, 282, 283, 284, 285, 286, 287, 288, 289, 290, 291, 292, 293, 294, 295, 296, 297, 298, 299, 300, 301, 
	302, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312, 313, 314, 315, 316, 317, 318, 319, 320, 321, 322, 323, 324, 325, 326, 
	327, 328, 329, 330, 331, 332, 333, 334, 335, 336, 337, 345, 346, 347, 348, 349, 350, 351, 352, 353, 354, 355, 356, 357, 358, 
	359, 360, 361, 362, 363, 364, 365, 366, 367, 368, 369, 370, 658, 371, 372, 614, 373, 374, 375, 376, 377, 615, 616, 617, 618, 
	619, 620, 378, 621, 622, 623, 624, 625, 626, 627, 580, 581, 582, 379, 380, 628, 629, 381, 641, 382, 383, 384, 640, 385, 386, 
	387, 388, 666, 338, 635, 339, 340, 341, 342, 343, 637, 636, 344, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 
	447, 448, 449, 450, 451, 452, 453, 454, 455, 396, 397, 398, 389, 390, 391, 392, 393, 394, 395, 399, 400, 401, 402, 403, 404, 
	405, 406, 407, 408, 409, 410, 411, 412, 413, 414, 415, 416, 417, 418, 419, 420, 421, 422, 423, 424, 425, 426, 427, 428, 429, 
	430, 431, 432, 433, 434, 456, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 472, 473, 474, 475, 
	476, 477, 478, 479, 480, 481, 482, 483, 484, 485, 486, 487, 488, 489, 490, 491, 492, 493, 494, 495, 496, 497, 498, 499, 500, 
	501, 502, 503, 504, 505, 506, 507, 508, 509, 510, 511, 512, 513, 514, 515, 516, 517, 518, 519, 520, 521, 522, 523, 524, 525, 
	526, 527, 528, 529, 530, 531, 532, 533, 534, 535, 536, 537, 538, 539, 540, 541, 542, 543, 544
	);

var indexIssueByDate = new Array(
	435,   0, 436,   1, 410, 411, 412,   2,   3, 413,   4,   5,   6, 414,   7,   8, 415, 416,   9,  10, 417, 418, 419, 420, 421, 
	 11, 422, 423, 424, 425,  12,  13,  14, 426,  15,  16, 427,  17,  18,  19,  20,  21,  22,  23,  24,  25,  26,  27, 437,  28, 
	 29,  30,  31, 644,  32,  33,  34,  35,  36,  37,  38,  39,  40,  41, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 428, 
	448, 449, 450,  42,  43,  44,  45, 429,  46,  47,  48,  49,  50,  51,  52,  53,  54,  55,  56,  57,  58,  59,  60, 451,  61, 
	 62,  63,  64,  65,  66,  67,  68,  69,  70,  71,  72,  73,  74,  75,  76,  77,  78, 452,  79,  80,  81,  82,  83,  84,  85, 
	 86,  87,  88,  89,  90,  91,  92,  93,  94,  95,  96,  97,  98,  99, 100, 101, 102, 103, 104, 105, 106, 107, 108, 109, 453, 
	454, 455, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 394, 123, 124, 125, 126, 127, 128, 129, 650, 651, 
	652, 653, 130, 456, 457, 458, 459, 460, 461, 131, 132, 133, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 472, 473, 474, 
	475, 476, 477, 478, 479, 480, 481, 482, 134, 483, 484, 485, 399, 487, 488, 489, 400, 490, 491, 492, 135, 486, 493, 494, 401, 
	136, 495, 137, 138, 496, 497, 139, 402, 498, 403, 499, 404, 500, 405, 501, 140, 502, 141, 142, 143, 503, 144, 145, 504, 505, 
	146, 147, 406, 148, 149, 407, 506, 507, 150, 151, 508, 152, 153, 154, 155, 509, 156, 510, 511, 512, 513, 514, 515, 157, 158, 
	159, 516, 517, 518, 519, 520, 521, 522, 523, 524, 525, 526, 527, 528, 160, 529, 530, 161, 531, 162, 163, 532, 164, 533, 534, 
	535, 165, 536, 166, 537, 538, 539, 540, 541, 167, 168, 169, 542, 170, 543, 171, 544, 172, 173, 408, 174, 175, 409, 176, 177, 
	638, 639, 178, 179, 180, 181, 182, 183, 184, 185, 186, 649, 187, 188, 189, 190, 191, 192, 193, 194, 430, 195, 196, 197, 198, 
	666, 396, 397, 199, 200, 667, 201, 202, 203, 204, 205, 206, 207, 345, 346, 347, 348, 349, 208, 350, 209, 210, 351, 211, 352, 
	212, 213, 214, 215, 216, 217, 338, 218, 219, 220, 353, 354, 355, 395, 356, 357, 358, 359, 360, 361, 362, 363, 364, 365, 635, 
	366, 367, 368, 339, 221, 222, 223, 340, 341, 224, 225, 226, 227, 342, 228, 343, 369, 370, 229, 230, 231, 232, 233, 234, 235, 
	236, 660, 661, 662, 659, 657, 658, 656, 237, 663, 238, 239, 240, 371, 654, 655, 241, 242, 243, 244, 245, 246, 372, 247, 248, 
	637, 249, 250, 431, 398, 614, 251, 252, 253, 254, 255, 256, 257, 545, 546, 258, 630, 631, 547, 632, 633, 634, 558, 559, 560, 
	561, 548, 259, 260, 373, 261, 374, 262, 263, 375, 264, 265, 562, 563, 583, 550, 551, 549, 552, 553, 554, 266, 555, 556, 557, 
	432, 564, 565, 566, 567, 568, 569, 570, 571, 572, 573, 574, 584, 575, 586, 587, 588, 589, 590, 591, 576, 585, 267, 592, 593, 
	594, 595, 376, 268, 269, 599, 270, 596, 377, 597, 598, 577, 600, 601, 615, 602, 616, 617, 618, 578, 603, 604, 619, 605, 620, 
	378, 621, 622, 623, 606, 624, 607, 625, 626, 627, 579, 580, 608, 581, 609, 271, 582, 610, 611, 612, 613, 272, 273, 379, 274, 
	275, 380, 628, 629, 391, 392, 393, 433, 664, 636, 276, 381, 641, 382, 383, 384, 640, 277, 385, 646, 645, 642, 643, 278, 647, 
	648, 665, 279, 668, 280, 281, 282, 283, 284, 285, 286, 287, 288, 289, 290, 291, 292, 293, 294, 295, 296, 297, 298, 299, 300, 
	386, 344, 301, 302, 303, 304, 305, 306, 307, 308, 309, 310, 311, 387, 312, 313, 314, 315, 316, 317, 318, 319, 320, 321, 322, 
	323, 324, 325, 326, 327, 328, 329, 330, 331, 332, 333, 334, 335, 336, 337, 388, 389, 390, 434
	);

var indexIssueByFile = new Array(
	338, 635, 339, 340, 341, 342, 343, 637, 636, 344, 389, 390, 391, 392, 393, 394, 395,   0,   1,   2,   3,   4,   5,   6,   7, 
	  8,   9,  10,  11,  12,  13,  14,  15,  16,  17,  18,  19,  20,  21,  22,  23,  24,  25,  26,  27,  28,  29,  30,  31, 644, 
	 32,  33,  34,  35,  36,  37,  38,  39,  40,  41,  42,  43,  44,  45,  46,  47,  48,  49,  50,  51,  52,  53,  54,  55,  56, 
	 57,  58,  59,  60,  61,  62,  63,  64,  65,  66,  67,  68,  69,  70,  71,  72,  73,  74,  75,  76,  77,  78,  79,  80,  81, 
	 82,  83,  84,  85,  86,  87,  88,  89,  90,  91,  92,  93,  94,  95,  96,  97,  98,  99, 100, 101, 102, 103, 104, 105, 106, 
	107, 108, 109, 110, 111, 112, 113, 114, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 650, 651, 
	652, 653, 130, 131, 132, 133, 134, 135, 136, 137, 138, 139, 140, 141, 142, 143, 144, 145, 146, 147, 148, 149, 150, 151, 152, 
	153, 154, 155, 156, 157, 158, 159, 160, 161, 162, 163, 164, 165, 166, 167, 168, 169, 170, 171, 172, 173, 174, 175, 176, 177, 
	638, 639, 178, 179, 180, 181, 182, 183, 184, 185, 186, 649, 187, 188, 189, 190, 191, 192, 193, 194, 195, 196, 197, 198, 199, 
	200, 667, 201, 202, 203, 204, 205, 206, 207, 208, 209, 210, 211, 212, 213, 214, 215, 216, 217, 218, 219, 220, 221, 222, 223, 
	224, 225, 226, 227, 228, 229, 230, 231, 232, 233, 234, 235, 236, 660, 661, 662, 659, 657, 656, 237, 663, 238, 239, 240, 654, 
	655, 241, 242, 243, 244, 245, 246, 247, 248, 249, 250, 251, 252, 253, 254, 255, 256, 257, 545, 546, 258, 630, 631, 547, 632, 
	633, 634, 558, 559, 560, 561, 548, 259, 260, 261, 262, 263, 264, 265, 562, 563, 583, 550, 551, 549, 552, 553, 554, 266, 555, 
	556, 557, 564, 565, 566, 567, 568, 569, 570, 571, 572, 573, 574, 584, 575, 586, 587, 588, 589, 590, 591, 576, 585, 267, 592, 
	593, 594, 595, 268, 269, 599, 270, 596, 597, 598, 577, 600, 601, 602, 578, 603, 604, 605, 606, 607, 579, 608, 609, 271, 610, 
	611, 612, 613, 272, 273, 274, 275, 664, 276, 277, 646, 645, 642, 643, 278, 647, 648, 665, 279, 668, 280, 281, 282, 283, 284, 
	285, 286, 287, 288, 289, 290, 291, 292, 293, 294, 295, 296, 297, 298, 299, 300, 301, 302, 303, 304, 305, 306, 307, 308, 309, 
	310, 311, 312, 313, 314, 315, 316, 317, 318, 319, 320, 321, 322, 323, 324, 325, 326, 327, 328, 329, 330, 331, 332, 333, 334, 
	335, 336, 337, 666, 399, 400, 401, 402, 403, 404, 405, 406, 407, 408, 409, 410, 411, 412, 413, 414, 415, 416, 417, 418, 419, 
	420, 421, 422, 423, 424, 425, 426, 427, 428, 429, 430, 431, 432, 433, 434, 345, 346, 347, 348, 349, 350, 351, 352, 353, 354, 
	355, 356, 357, 358, 359, 360, 361, 362, 363, 364, 365, 366, 367, 368, 369, 370, 658, 371, 372, 373, 374, 375, 614, 376, 580, 
	377, 615, 616, 617, 618, 619, 620, 378, 621, 622, 623, 624, 625, 626, 627, 581, 582, 379, 380, 628, 629, 381, 641, 382, 383, 
	384, 640, 385, 386, 387, 388, 435, 436, 437, 438, 439, 440, 441, 442, 443, 444, 445, 446, 447, 448, 449, 450, 451, 452, 453, 
	454, 455, 396, 397, 398, 456, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466, 467, 468, 469, 470, 471, 472, 473, 474, 475, 
	476, 477, 478, 479, 480, 481, 482, 483, 484, 485, 486, 487, 488, 489, 490, 491, 492, 493, 494, 495, 496, 497, 498, 499, 500, 
	501, 502, 503, 504, 505, 506, 507, 508, 509, 510, 511, 512, 513, 514, 515, 516, 517, 518, 519, 520, 521, 522, 523, 524, 525, 
	526, 527, 528, 529, 530, 531, 532, 533, 534, 535, 536, 537, 538, 539, 540, 541, 542, 543, 544
	);
