function validateFundInfo(newFund) {
	
	formValid = true;
	reason = "";
	
	fundName = document.forms.fund_info.fund_name.value;
	fundInceptionDate = document.forms.fund_info.fund_inception_date.value;
	fundAdministrativeContact = document.forms.fund_info.fund_administrative_contact.value;
	
	
	if(!fundName) {
		formValid = false;
		reason = reason + "\nYou must input a Fund Name   ";
	}
	if(!Date.parse(fundInceptionDate)) {
		///////////////////////////////////////////
		// must change this back !!!!!
		///////////////////////////////////////////
		formValid = false;
		reason = reason + "\nYou must input a valid Fund Inception Date of the format dd/mm/yy   ";
	}
	if(!fundAdministrativeContact) {
		formValid = false;
		reason = reason + "\nYou must input an Administrative Contact   ";
	}
	
	if(document.forms.fund_info.iht_listing) {
		fundIHT = document.forms.fund_info.iht_listing.value;
		//fundIHT = document.forms.fund_info.iht_listing.options[document.forms.fund_info.iht_listing.selectedIndex].value;
		fundIHTListing = document.forms.fund_info.iht_selected.value;
		
		if(!fundIHT && fundIHTListing != "true") {
			formValid = false;
			reason = reason + "\nYou must select whether you wish your fund to be listed in the IHT   ";
		}
		else if(fundIHT == "1" && fundIHTListing == "false") {
			window.open("iht.php", "iht", "width=650; height=400; scrollbars=1;");
		}
	}
		
	if(formValid){
		if(newFund) openWindow('fund_performance_graphs_wait.php?name=createfund');
		return true;
	}
	else{
		alert("The following errors have occured:   \n" + reason);
		return false;
	}
}

lastAttributeGroupId = "";

var modifiedGroups = new Array();

function showAttributeGroup(attributeGroupId, img, noModify) {
	//hide the last attribute group if one exists
	if(allGroups) hideAllAttributeGroups();
	
	if(document.getElementById("0")) document.getElementById("0").style.display = "none";
	
	if(lastAttributeGroupId != "") {
		
		var noChange = false;
		if(noModify) modifiedGroups[lastAttributeGroupId] = "";
		if(modifiedGroups[lastAttributeGroupId]) {
			confirmation = confirm("You have modified some values in the group you have just been editing. Do you wish to save changes?   ");
			if(confirmation) {
				//document.forms["form_" + lastAttributeGroupId].form_id.value = attributeGroupId;
				document.forms["form_" + lastAttributeGroupId].form_next.value = attributeGroupId;
				document.forms["form_" + lastAttributeGroupId].submit();
				noChange = true;
			}
		}
		if(!noChange) {
			lastAttributeGroup = document.getElementById(lastAttributeGroupId);
			lastAttributeGroup.style.display = "none";
		}
	}
	lastAttributeGroupId = attributeGroupId;
	
	if(!noChange) {
		//show the new attribute group
		attributeGroup = document.getElementById(attributeGroupId);
		attributeGroup.style.display = "block";
	}
}

allGroups = false;
noGroups = 0;

function showAllAttributeGroups(groups) {
	for(i=0; i<groups; i++) {
		attributeGroup = document.getElementById(i);
		if(attributeGroup) attributeGroup.style.display = "inline";
	}
	
	noGroups = groups;
	allGroups = true;
}

function hideAllAttributeGroups() {
	for(i=0; i<noGroups; i++) {
		attributeGroup = document.getElementById(i);
		if(attributeGroup) attributeGroup.style.display = "none";
	}
	
	allGroups = false;
}

function modifyGroup(i) {
	modifiedGroups[i] = "modified";
}

function modifyGroupImg(i) {
	if(document.getElementById) {
		document.getElementById("img_" + i).src = "images/icon_fundatt_on.gif";
	}
}

function validateAttributesForm(formId, maxTotal) {
	
	currentFieldNames = formNameArray[formId];
	currentFieldDescs = formDescArray[formId];
	currentFieldDatatypes = formDatatypeArray[formId];
	
	reason = "";
	formValid = true;
	
	currentFields = currentFieldNames.length;
	currentFieldValue = "";
	
	totalValue = 0;
	
	for(i=0; i<currentFields; ++i) {
		currentFieldName = currentFieldNames[i];
		currentFieldDesc = currentFieldDescs[i];
		currentFieldDatatype = currentFieldDatatypes[i];		
		
		errorCode = "";
		if(currentFieldName != "END") {
			currentFieldValue = document.forms["form_" + formId][currentFieldName].value;
			errorCode = validateField(currentFieldValue, currentFieldDatatype);
			
			if(parseFloat(currentFieldValue)) {
				totalValue = totalValue + parseFloat(currentFieldValue);
			}
		}
		
		if(errorCode) {
			reason = reason + "\n" + currentFieldDesc + " : " + errorCode + "   ";
			formValid = false;
		}
	}
	
	if(maxTotal) {
		if(parseFloat(maxTotal) < totalValue) {
			reason = reason + "\nThe total value of all attributes within this group cannot exceed " + maxTotal + "   ";
			formValid = false;
		}
	}
	
	if(!formValid) {
		alert("The following errors occured:   \n" + reason);
		return false;
	}
	else {
		return true;
	}	
	
}

//function to parse each field
function validateField(theValue, datatype) {
	
	//no error by default
	errorCode = "";
	
	switch(datatype) {
		case "Text" :
			//no validation is needed for Text
			break;
		case "Char" :
			//check for length <= 128
			if(theValue.length > 128) errorCode = "Length of Field must be 128 characters or less";
			break;
		case "Float" :
			//check for float
			if(parseNumeric(theValue, "float")) errorCode = "Field must be a number";
			break;
		case "Integer" :
			//check for int
			if(parseNumeric(theValue, "integer")) errorCode = "Field must be an integer";
			break;
		case "Date" :
			//no validation needed for Date
			break;
		case "List" :
			//no validation needed for List
			break;
		case "Currency" :
			//check for float with $ or £
			if(parseNumeric(theValue, "currency")) errorCode = "Field must be a valid currency value";
			break;
		case "Percentage" :
			//check for 100 > float > 0
			if(parseNumeric(theValue, "percentage")) errorCode = "Field must be a valid percentage value between 0 and 100 (NB: no % sign is required)";
			break;
		case "Boolean" :
			//no validation needed for Boolean
			break;
	}
	
	return errorCode;
}

function validateThisField(field, form) {
	
	reason = "";
	
	theValue = field.value;
	fieldId = field.name;
	//get rid of the _2 if it's the second input field.
	fieldId = fieldId.replace("_2", "");
	//get the form the field belongs to
	theFormNameArray = formNameArray[form];
	theFormDatatypeArray = formDatatypeArray[form];
	
	//loop through the formNameArray fields to get the field datatype:
	for(i=0; i<theFormNameArray.length; i++) {
		if(theFormNameArray[i] == fieldId) {
			iField = i;
			i = 99999;
		}
	}
	
	//validate theValue against theDatatype
	if(iField || iField == 0) {
		theDatatype = theFormDatatypeArray[iField];
		reason = validateField(theValue, theDatatype);
	}
	
	if(!reason) {
		return true;
	}
	else {
		alert("The value entered for this field is invalid:   \n\n" + reason + "\n\nPlease re-enter   ");
		//clear the value
		field.value = "";
		//put the focus back on the field
		field.focus();
		return false;
	}
	
}

function parseNumeric(value, type) {
	var invalid;
	
	if(type == "integer"){
		invalid = value.match("[^0-9 -]");
	}
	else if(type == "float"){
		invalid = value.match("[^0-9. -]");
	}
	else if(type == "currency"){
		invalid = value.match("[^$£0-9. ]");
	}
	else if(type == "percentage"){
		invalid = value.match("[^$£0-9. ]");
		if(value > 100 || value < 0) invalid = true;
	}
	
	return invalid;
}

function writeDateSelect(attId, attDate, formId, noSet) {
	
	if(noSet) {
		document.write('<table border="0" cellpadding="0" cellspacing="0" width="150"><tr><td>');
		document.write('<select id="date_' + attId + '_day" onchange="setAttributeDate(' + attId + ');">');
		document.write('<option value="1"></option>');
		
		for(i=1; i<32; ++i) {
			document.write('<option value="' + i + '">' + i + '</option>');
		}
	
		document.write('</select></td><td>');
		document.write('<select id="date_' + attId + '_month" onchange="setAttributeDate(' + attId + ');">');
		document.write('<option value="1"></option><option value="1">Jan</option><option value="2">Feb</option><option value="3">Mar</option><option value="4">Apr</option><option value="5">May</option><option value="6">Jun</option><option value="7">Jul</option><option value="8">Aug</option><option value="9">Sep</option><option value="10">Oct</option><option value="11">Nov</option><option value="12">Dec</option>');
		document.write('</select></td><td>');
		document.write('<select id="date_' + attId + '_year" onchange="setAttributeDate(' + attId + ');">');
		document.write('<option value="1975"></option><option value="1975">1975</option><option value="1976">1976</option><option value="1977">1977</option><option value="1978">1978</option><option value="1979">1979</option><option value="1980">1980</option><option value="1981">1981</option><option value="1982">1982</option><option value="1983">1983</option><option value="1984">1984</option>');
		document.write('<option value="1985">1985</option><option value="1986">1986</option><option value="1987">1987</option><option value="1988">1988</option><option value="1989">1989</option><option value="1990">1990</option><option value="1991">1991</option><option value="1992">1992</option><option value="1993">1993</option><option value="1994">1994</option>');
		document.write('<option value="1995">1995</option><option value="1996">1996</option><option value="1997">1997</option><option value="1998">1998</option><option value="1999">1999</option><option value="2000">2000</option><option value="2001">2001</option><option value="2002">2002</option><option value="2003">2003</option><option value="2004">2004</option><option value="2005">2005</option>');
		document.write('</select></td></tr></table>');
		document.write('<input type="hidden" id="att_' + attId + '" name="att_' + attId + '" value="' + attDate + '">');
	}
	else {
		document.write('<table border="0" cellpadding="0" cellspacing="0" width="150"><tr><td>');
		document.write('<select id="date_' + attId + '_day" onchange="setAttributeDate(' + attId + '); modifyGroup(' + formId + ');">');
		document.write('<option value="1"></option>');
		
		for(i=1; i<32; ++i) {
			document.write('<option value="' + i + '">' + i + '</option>');
		}
		
		document.write('</select></td><td>');
		document.write('<select id="date_' + attId + '_month" onchange="setAttributeDate(' + attId + '); modifyGroup(' + formId + ');">');
		document.write('<option value="1"></option><option value="1">Jan</option><option value="2">Feb</option><option value="3">Mar</option><option value="4">Apr</option><option value="5">May</option><option value="6">Jun</option><option value="7">Jul</option><option value="8">Aug</option><option value="9">Sep</option><option value="10">Oct</option><option value="11">Nov</option><option value="12">Dec</option>');
		document.write('</select></td><td>');
		document.write('<select id="date_' + attId + '_year" onchange="setAttributeDate(' + attId + '); modifyGroup(' + formId + ');">');
		document.write('<option value="1975"></option><option value="1975">1975</option><option value="1976">1976</option><option value="1977">1977</option><option value="1978">1978</option><option value="1979">1979</option><option value="1980">1980</option><option value="1981">1981</option><option value="1982">1982</option><option value="1983">1983</option><option value="1984">1984</option>');
		document.write('<option value="1985">1985</option><option value="1986">1986</option><option value="1987">1987</option><option value="1988">1988</option><option value="1989">1989</option><option value="1990">1990</option><option value="1991">1991</option><option value="1992">1992</option><option value="1993">1993</option><option value="1994">1994</option>');
		document.write('<option value="1995">1995</option><option value="1996">1996</option><option value="1997">1997</option><option value="1998">1998</option><option value="1999">1999</option><option value="2000">2000</option><option value="2001">2001</option><option value="2002">2002</option><option value="2003">2003</option><option value="2004">2004</option><option value="2005">2005</option>');
		document.write('</select></td></tr></table>');
		document.write('<input type="hidden" id="att_' + attId + '" name="att_' + attId + '" value="' + attDate + '">');
	
		setTimeout('getAttributeDate(' + attId + ');', 500);
	}
}

function getAttributeDate(attId) {
	
	//get the select box objects
	daySelect = document.getElementById("date_" + attId + "_day");
	monthSelect = document.getElementById("date_" + attId + "_month");
	yearSelect = document.getElementById("date_" + attId + "_year");
	
	//get the date
	theDate = document.getElementById("att_" + attId).value;
	theDateArray = theDate.split("/");	
	
	if(theDate) {
		var dateObj = new Date();
		//get the day, month, year of the date
		dateDay = theDateArray[0];
		dateMonth = theDateArray[1];
		dateYear = theDateArray[2];
	
		//set the selectedIndex of each box
		daySelect.selectedIndex = dateDay;
		monthSelect.selectedIndex = dateMonth;
		yearSelect.selectedIndex = dateYear - 1974;
	}
}

function setAttributeDate(attId) {

	//get the select box objects
	daySelect = document.getElementById("date_" + attId + "_day");
	monthSelect = document.getElementById("date_" + attId + "_month");
	yearSelect = document.getElementById("date_" + attId + "_year");
	
	//get the values
	theDay = daySelect.options[daySelect.selectedIndex].value;
	theMonth = monthSelect.options[monthSelect.selectedIndex].value;
	theYear = yearSelect.options[yearSelect.selectedIndex].value;
	
	theDate = theDay + "/" + theMonth + "/" + theYear;
	
	if(theDate) {
		document.getElementById("att_" + attId).value = theDate;
	}
}

				
function getImport() {
	
	ss = document.getElementById("Spreadsheet1");
	i = 2;

	data = "";
	//variable to determine whether the user is inputting percentage returns
	tooHigh = 0;

	while (ss.Cells(i, 1).Text && i < 10000) {
		
		cell1 = "";
		cell2 = "";
		cell3 = "";
		cell4 = "";
		cell5 = "";
		
		//cell1 = (dateObj.getDate() + "/" + (dateObj.getMonth() + 1) + "/" + dateObj.getYear());
		//ss.Cells(i, 1).Value = "'" + ss.Cells(i, 1).Text;
		cell1 = ss.Cells(i, 1).Text;
		//if(i < 10) alert(ss.Cells(i, 1).Text);
		
		cell1 = cell1.replace("-Jan-", "/01/");
		cell1 = cell1.replace("-Feb-", "/02/");
		cell1 = cell1.replace("-Mar-", "/03/");
		cell1 = cell1.replace("-Apr-", "/04/");
		cell1 = cell1.replace("-May-", "/05/");
		cell1 = cell1.replace("-Jun-", "/06/");
		cell1 = cell1.replace("-Jul-", "/07/");
		cell1 = cell1.replace("-Aug-", "/08/");
		cell1 = cell1.replace("-Sep-", "/09/");
		cell1 = cell1.replace("-Oct-", "/10/");
		cell1 = cell1.replace("-Nov-", "/11/");
		cell1 = cell1.replace("-Dec-", "/12/");
		
		cell1 = cell1.replace("January-", "31/01/");
		cell1 = cell1.replace("Febuary-", "28/02/");
		cell1 = cell1.replace("March-", "30/03/");
		cell1 = cell1.replace("April-", "30/04/");
		cell1 = cell1.replace("May-", "31/05/");
		cell1 = cell1.replace("June-", "30/06/");
		cell1 = cell1.replace("July-", "31/07/");
		cell1 = cell1.replace("August-", "30/08/");
		cell1 = cell1.replace("September-", "30/09/");
		cell1 = cell1.replace("October-", "30/10/");
		cell1 = cell1.replace("November-", "30/11/");
		cell1 = cell1.replace("December-", "31/12/");
		
		cell1 = cell1.replace("Jan-", "31/01/");
		cell1 = cell1.replace("Feb-", "28/02/");
		cell1 = cell1.replace("Mar-", "30/03/");
		cell1 = cell1.replace("Apr-", "30/04/");
		cell1 = cell1.replace("May-", "31/05/");
		cell1 = cell1.replace("Jun-", "30/06/");
		cell1 = cell1.replace("Jul-", "31/07/");
		cell1 = cell1.replace("Aug-", "30/08/");
		cell1 = cell1.replace("Sep-", "30/09/");
		cell1 = cell1.replace("Oct-", "30/10/");
		cell1 = cell1.replace("Nov-", "30/11/");
		cell1 = cell1.replace("Dec-", "31/12/");
		
		cell1 = cell1.replace("Jan/", "31/01/");
		cell1 = cell1.replace("Feb/", "28/02/");
		cell1 = cell1.replace("Mar/", "30/03/");
		cell1 = cell1.replace("Apr/", "30/04/");
		cell1 = cell1.replace("May/", "31/05/");
		cell1 = cell1.replace("Jun/", "30/06/");
		cell1 = cell1.replace("Jul/", "31/07/");
		cell1 = cell1.replace("Aug/", "30/08/");
		cell1 = cell1.replace("Sep/", "30/09/");
		cell1 = cell1.replace("Oct/", "30/10/");
		cell1 = cell1.replace("Nov/", "30/11/");
		cell1 = cell1.replace("Dec/", "31/12/");
		
		cell1 = cell1.replace("29/02", "28/02");
		//if(i > 15) alert(cell1);
		
		dateObj = new Date();
		dateStr = Date.parse(ss.Cells(i, 1).Text).toString();
		
		dateObj.setTime(parseInt(dateStr));
			
		//cell1 = ss.Cells(i, 1).Value;
		if(!cell1 || cell1 == "01/01/85") cell1 = "";
		cell2 = ss.Cells(i, 2).Value;
		if(!cell2) cell2 = "";
		//cell3 = parseInt(ss.Cells(i, 3).Value);
		cell3 = parseInt(ss.Cells(i, 3).Value);
		if(!cell3) cell3 = "";
		//cell4 = parseInt(ss.Cells(i, 4).Value);
		cell4 = ss.Cells(i, 4).Value;
		if(!cell4) cell4 = "";
		cell5 = ss.Cells(i, 5).Value;
		if(!cell5) cell5 = "";
		cell6 = ss.Cells(i, 6).Value;
		if(!cell6) cell6 = "";
		
		/*
		//this is not needed - cell2 and cell3 are float data types
		if(cell2) {
			cell2 = cell2.replace(",", "");
			cell2 = cell2.replace("£", "");
			cell2 = cell2.replace("$", "");
			cell2 = cell2.replace("¥", "");
			cell2 = cell2.replace("€", "");
		}
		if(cell3) {
			cell3 = cell3.replace(",", "");
			cell3 = cell3.replace("£", "");
			cell3 = cell3.replace("$", "");
			cell3 = cell3.replace("¥", "");
			cell3 = cell3.replace("€", "");
		}*/
		
		if(cell4 > 0.5 || cell4 < -0.5) tooHigh++;
		
		data = data + cell1 + "\t" + cell2 + "\t" + cell3 + "\t" + cell4 + "\t" + cell5 + "\t" + cell6 + "\n";
		i++;
		
	}
	
	if(data) {
	
		var dataRows = new Array();
		var dataCols = new Array();
		dataRows = data.split("\n"); 
		
		var recordsImported = false;
		
		html_holder = document.getElementById("datagrid");
		hidden_holder = document.getElementById("hidden");
		
		myTable = document.createElement("TABLE");
  		myTable.id ="TableOne";
		myTable.border = 0;
		myTable.setAttribute("cellspacing", "0");
		myTable.setAttribute("cellpadding", "0");
		myTable.style.width = "100%";
		myTableBody = document.createElement("TBODY");
		
		odd = false;
		
		for(i=0; i<dataRows.length; i++) {
			dataCols = dataRows[i].split("\t");
			row = document.createElement("TR");
			
			if(odd) {
				odd = false;
				bgcolor = "#ffffff";
			}
			else {
				odd = true;
				bgcolor = "#ffffff";
			}
			
			row.style.backgroundColor = bgcolor;
			
			if(dataCols.length >= 6 && !dataCols[0].match("Date")) {
			
				if(Date.parse(dataCols[0])) {
					for(iC=0; iC<6; iC++) {
						cell = document.createElement("TD");
		     			cell.setAttribute("WIDTH","50");
		     			cell.setAttribute("HEIGHT","50");
						textVal = dataCols[iC];
						
						switch(iC) {
							case 0:
								colName = "date";
								break;
							case 1:
								colName = "nav";
								break;
							case 2:
								colName = "fundsmanaged";
								break;
							case 3:
								colName = "return";
								break;
							case 4:
								colName = "estimate";
								break;
							case 5:
								colName = "benchmark";
								break;
						}
						
						recordsImported = true;
						
						//alert(textVal);
						
						if(iC == 4) {
							selectNode = document.createElement("select");
							selectNode.style.fontSize = "13px";
							selectNode.style.width = "70px";
							selectNode.setAttribute("name", colName + i);
																		
							optionYes = document.createElement("option");
							optionYes.value = "1";
							optionYesText = document.createTextNode("Yes");
							optionYes.appendChild(optionYesText);
							
							optionNo = document.createElement("option");
							optionNo.value = "0";
							optionNoText = document.createTextNode("No");
							optionNo.appendChild(optionNoText);
							
							
							
							if(textVal.match("TRUE") || textVal.match("Yes") || textVal == 1) {
								optionYes.setAttribute("selected","selected");
							}
							else {
								optionNo.setAttribute("selected","selected");
							}
							
							
							
							selectNode.appendChild(optionYes);
							selectNode.appendChild(optionNo);
							
							cell.appendChild(selectNode);
							
							if(document.getElementById && !document.all) {
								hiddenNode = document.createElement("input");
								hiddenNode.setAttribute("type", "hidden");
								hiddenNode.setAttribute("name", colName + i);
								hiddenNode.setAttribute("value", textVal);
								hiddenNode.value = textVal;
								
								if(textVal.match("TRUE") || textVal.match("Yes") || textVal == 1) {
									hiddenNode.value = "1";
								}
								else {
									hiddenNode.value = "0";
								}
																			
								hidden_holder.appendChild(hiddenNode);
							}
						}
						else if(iC < 4 || iC == 5) {
							textNode = document.createElement("input");
							textNode.setAttribute("type", "text");
							textNode.style.fontSize = "13px";
							textNode.style.width = "84";
							textNode.setAttribute("name", colName + i);
							textNode.setAttribute("size", 8);
							textNode.setAttribute("value", textVal);
							textNode.value = textVal;
							cell.appendChild(textNode);
							
							if(document.getElementById && !document.all) {
								hiddenNode = document.createElement("input");
								hiddenNode.setAttribute("type", "hidden");
								hiddenNode.setAttribute("name", colName + i);
								hiddenNode.setAttribute("value", textVal);
								hiddenNode.value = textVal;
																			
								hidden_holder.appendChild(hiddenNode);
							}
						}
						
						row.appendChild(cell);
					}
					
					myTableBody.appendChild(row)
				}
			}
		
		myTable.appendChild(myTableBody)
		html_holder.appendChild(myTable)

		}
		
		if(recordsImported) {
			//document.getElementById("form2").style.display = "none";
			//document.dataform.style.display = "block";
			//this.scrollTo(0,10000);
			//alert("The data has been imported to the form and is ready to be written to the performance database. Please select how you wish to import it: \n\n1.) By ammending the performance data to any existing performance data.\n2.) By overwriting all existing performance data with the new imported data.");
			//document.form2.data.value = "";
			if(document.forms.form2.initial_nav.value > -1) {
				if(tooHigh > 4) {
					confirmIt = confirm("Are you sure the net return values are correct? The values entered for net return must be decimal values, not percentage values so for example a return of 25% should be input as 0.25. These values are very high suggesting that they may be percentage values. If you are sure that these values are correct then please click 'OK', otherwise click 'Cancel' and amend the net return values.");
				}
				else {
					confirmIt = true;
				}
				
				if(confirmIt) {
					document.dataform.initial_nav.value = document.forms.form2.initial_nav.value;
					document.dataform.benchmark_name.value = document.forms.form2.benchmark_name.value;
					document.dataform.count.value = i + 1;
					document.dataform.submit();
				}
			}
			else {
				alert("You must input a value for Initial NAV that is greater than 0  ");
			}
		}
		else {
			//document.form2.data.value = "";
			//document.form2.data.blur();
			alert("Sorry, the data imported was of an invalid format or no data is present.   ");
		}
	}
}
					
function checkImport() {
	data = document.form2.data.value;
	
	if(data) {
		getImport();
	}
	else {
		t1 = setTimeout("checkImport();", 100);
	}
}

function writeExcelSheet() {
	
	document.write("<object id=\"Spreadsheet1\" classid=\"CLSID:0002E510-0000-0000-C000-000000000046\"> <param name=\"DisplayTitleBar\" value=\"false\"/> <param name=\"ViewableRange\" value=\"$A$1:$E$512\"/><param name=\"DataType\" value=\"HTMLData\"/><param name=\"HTMLData\" value=\"&lt;html xmlns:v=&quot;urn:schemas-microsoft-com:vml&quot;&#13;&#10;xmlns:o=&quot;urn:schemas-microsoft-com:office:office&quot;&#13;&#10;xmlns:x=&quot;urn:schemas-microsoft-com:office:excel&quot;&#13;&#10;xmlns=&quot;http://www.w3.org/TR/REC-html40&quot;&gt;&#13;&#10;&#13;&#10;&lt;head&gt;&#13;&#10;&lt;style id=&quot;Book1_22889_Styles&quot;&gt;&#13;&#10;&lt;!--table&#13;&#10;&#9;{mso-displayed-decimal-separator:&quot;\.&quot;;&#13;&#10;&#9;mso-displayed-thousand-separator:&quot;\,&quot;;}&#13;&#10;tr&#13;&#10;&#9;{mso-height-source:auto;}&#13;&#10;col&#13;&#10;&#9;{mso-width-source:auto;}&#13;&#10;br&#13;&#10;&#9;{mso-data-placement:same-cell;}&#13;&#10;.xl15&#13;&#10;&#9;{mso-style-parent:style0;&#13;&#10;&#9;color:windowtext;&#13;&#10;&#9;font-size:10.0pt;&#13;&#10;&#9;font-weight:400;&#13;&#10;&#9;font-style:normal;&#13;&#10;&#9;text-decoration:none;&#13;&#10;&#9;font-family:Arial;&#13;&#10;&#9;mso-generic-font-family:auto;&#13;&#10;&#9;mso-font-charset:0;&#13;&#10;&#9;mso-number-format:General;&#13;&#10;&#9;text-align:general;&#13;&#10;&#9;vertical-align:bottom;&#13;&#10;&#9;border:none;&#13;&#10;&#9;mso-background-source:auto;&#13;&#10;&#9;mso-pattern:auto;&#13;&#10;&#9;mso-protection:locked visible;&#13;&#10;&#9;white-space:nowrap;&#13;&#10;&#9;mso-rotate:0;}&#13;&#10;.xl22&#13;&#10;&#9;{mso-style-parent:style0;&#13;&#10;&#9;color:black;&#13;&#10;&#9;font-size:10.0pt;&#13;&#10;&#9;font-weight:400;&#13;&#10;&#9;font-style:normal;&#13;&#10;&#9;text-decoration:none;&#13;&#10;&#9;font-family:Arial, sans-serif;&#13;&#10;&#9;mso-font-charset:0;&#13;&#10;&#9;mso-number-format:0;&#13;&#10;&#9;text-align:center;&#13;&#10;&#9;vertical-align:bottom;&#13;&#10;&#9;border-top:.5pt solid black;&#13;&#10;&#9;border-right:.5pt solid black;&#13;&#10;&#9;border-bottom:.5pt solid black;&#13;&#10;&#9;border-left:none;&#13;&#10;&#9;background:silver;&#13;&#10;&#9;mso-pattern:auto none;&#13;&#10;&#9;mso-protection:locked visible;&#13;&#10;&#9;white-space:nowrap;&#13;&#10;&#9;mso-rotate:0;}&#13;&#10;.xl23&#13;&#10;&#9;{mso-style-parent:style0;&#13;&#10;&#9;color:black;&#13;&#10;&#9;font-size:10.0pt;&#13;&#10;&#9;font-weight:400;&#13;&#10;&#9;font-style:normal;&#13;&#10;&#9;text-decoration:none;&#13;&#10;&#9;font-family:Arial, sans-serif;&#13;&#10;&#9;mso-font-charset:0;&#13;&#10;&#9;mso-number-format:&quot;0\.000&quot;;&#13;&#10;&#9;text-align:center;&#13;&#10;&#9;vertical-align:bottom;&#13;&#10;&#9;border-top:.5pt solid black;&#13;&#10;&#9;border-right:.5pt solid black;&#13;&#10;&#9;border-bottom:.5pt solid black;&#13;&#10;&#9;border-left:none;&#13;&#10;&#9;background:silver;&#13;&#10;&#9;mso-pattern:auto none;&#13;&#10;&#9;mso-protection:locked visible;&#13;&#10;&#9;white-space:nowrap;&#13;&#10;&#9;mso-rotate:0;}&#13;&#10;.xl24&#13;&#10;&#9;{mso-style-parent:style0;&#13;&#10;&#9;color:black;&#13;&#10;&#9;font-size:10.0pt;&#13;&#10;&#9;font-weight:400;&#13;&#10;&#9;font-style:normal;&#13;&#10;&#9;text-decoration:none;&#13;&#10;&#9;font-family:Arial, sans-serif;&#13;&#10;&#9;mso-font-charset:0;&#13;&#10;&#9;mso-number-format:&quot;Yes\/No&quot;;&#13;&#10;&#9;text-align:center;&#13;&#10;&#9;vertical-align:bottom;&#13;&#10;&#9;border-top:.5pt solid black;&#13;&#10;&#9;border-right:.5pt solid black;&#13;&#10;&#9;border-bottom:.5pt solid black;&#13;&#10;&#9;border-left:none;&#13;&#10;&#9;background:silver;&#13;&#10;&#9;mso-pattern:auto none;&#13;&#10;&#9;mso-protection:locked visible;&#13;&#10;&#9;white-space:nowrap;&#13;&#10;&#9;mso-rotate:0;}&#13;&#10;.xl25&#13;&#10;&#9;{mso-style-parent:style0;&#13;&#10;&#9;color:windowtext;&#13;&#10;&#9;font-size:10.0pt;&#13;&#10;&#9;font-weight:400;&#13;&#10;&#9;font-style:normal;&#13;&#10;&#9;text-decoration:none;&#13;&#10;&#9;font-family:Arial;&#13;&#10;&#9;mso-generic-font-family:auto;&#13;&#10;&#9;mso-font-charset:0;&#13;&#10;&#9;mso-number-format:General;&#13;&#10;&#9;text-align:general;&#13;&#10;&#9;vertical-align:bottom;&#13;&#10;&#9;border:none;&#13;&#10;&#9;background:silver;&#13;&#10;&#9;mso-pattern:auto none;&#13;&#10;&#9;mso-protection:locked visible;&#13;&#10;&#9;white-space:nowrap;&#13;&#10;&#9;mso-rotate:0;}&#13;&#10;.xl26&#13;&#10;&#9;{mso-style-parent:style0;&#13;&#10;&#9;color:black;&#13;&#10;&#9;font-size:10.0pt;&#13;&#10;&#9;font-weight:400;&#13;&#10;&#9;font-style:normal;&#13;&#10;&#9;text-decoration:none;&#13;&#10;&#9;font-family:Arial, sans-serif;&#13;&#10;&#9;mso-font-charset:0;&#13;&#10;&#9;mso-number-format:&quot;d\\-mmm\\-yy&quot;;&#13;&#10;&#9;text-align:center;&#13;&#10;&#9;vertical-align:bottom;&#13;&#10;&#9;border:.5pt solid black;&#13;&#10;&#9;background:silver;&#13;&#10;&#9;mso-pattern:auto none;&#13;&#10;&#9;mso-protection:locked visible;&#13;&#10;&#9;white-space:nowrap;&#13;&#10;&#9;mso-rotate:0;}&#13;&#10;.xl27&#13;&#10;&#9;{mso-style-parent:style0;&#13;&#10;&#9;color:windowtext;&#13;&#10;&#9;font-size:10.0pt;&#13;&#10;&#9;font-weight:400;&#13;&#10;&#9;font-style:normal;&#13;&#10;&#9;text-decoration:none;&#13;&#10;&#9;font-family:Arial;&#13;&#10;&#9;mso-generic-font-family:auto;&#13;&#10;&#9;mso-font-charset:0;&#13;&#10;&#9;mso-number-format:&quot;d\\-mmm\\-yy&quot;;&#13;&#10;&#9;text-align:general;&#13;&#10;&#9;vertical-align:bottom;&#13;&#10;&#9;border:none;&#13;&#10;&#9;mso-background-source:auto;&#13;&#10;&#9;mso-pattern:auto;&#13;&#10;&#9;mso-protection:locked visible;&#13;&#10;&#9;white-space:nowrap;&#13;&#10;&#9;mso-rotate:0;}&#13;&#10;--&gt;&#13;&#10;&lt;/style&gt;&#13;&#10;&lt;/head&gt;&#13;&#10;&#13;&#10;&lt;body&gt;&#13;&#10;&lt;!--[if gte mso 9]&gt;&lt;xml&gt;&#13;&#10; &lt;x:ExcelWorkbook&gt;&#13;&#10;  &lt;x:SpreadsheetAutoFit/&gt;&#13;&#10;  &lt;x:MaxHeight&gt;80%&lt;/x:MaxHeight&gt;&#13;&#10;  &lt;x:MaxWidth&gt;80%&lt;/x:MaxWidth&gt;&#13;&#10;  &lt;x:ExcelWorksheets&gt;&#13;&#10;   &lt;x:ExcelWorksheet&gt;&#13;&#10;    &lt;x:WorksheetOptions&gt;&#13;&#10;     &lt;x:TopRowVisible&gt;0&lt;/x:TopRowVisible&gt;&#13;&#10;     &lt;x:LeftColumnVisible&gt;0&lt;/x:LeftColumnVisible&gt;&#13;&#10;     &lt;x:ProtectContents&gt;False&lt;/x:ProtectContents&gt;&#13;&#10;     &lt;x:ProtectObjects&gt;False&lt;/x:ProtectObjects&gt;&#13;&#10;     &lt;x:ProtectScenarios&gt;False&lt;/x:ProtectScenarios&gt;&#13;&#10;    &lt;/x:WorksheetOptions&gt;&#13;&#10;   &lt;/x:ExcelWorksheet&gt;&#13;&#10;  &lt;/x:ExcelWorksheets&gt;&#13;&#10; &lt;/x:ExcelWorkbook&gt;&#13;&#10;&lt;/xml&gt;&lt;![endif]--&gt;&#13;&#10;&#13;&#10;&lt;table x:str border=0 cellpadding=0 cellspacing=0 width=537 style='border-collapse:&#13;&#10; collapse;table-layout:fixed;width:404pt'&gt;&#13;&#10; &lt;col class=xl27 width=106 style='mso-width-source:userset;mso-width-alt:3876;&#13;&#10; width:80pt'&gt;&#13;&#10; &lt;col width=89 style='mso-width-source:userset;mso-width-alt:3254;width:67pt'&gt;&#13;&#10; &lt;col width=116 style='mso-width-source:userset;mso-width-alt:4242;width:87pt'&gt;&#13;&#10; &lt;col width=81 style='mso-width-source:userset;mso-width-alt:2962;width:95pt'&gt;&#13;&#10; &lt;col width=65 style='mso-width-source:userset;mso-width-alt:2377;width:49pt'&gt;&#13;&#10; &lt;col width=80 style='mso-width-source:userset;mso-width-alt:2925;width:60pt'&gt;&#13;&#10; &lt;tr height=17 style='height:12.75pt'&gt;&#13;&#10;  &lt;td class=xl26 width=106 style='width:80pt'&gt;Date&lt;/td&gt;&#13;&#10;  &lt;td class=xl22 width=89 style='width:67pt'&gt;NAV&lt;/td&gt;&#13;&#10;  &lt;td class=xl22 width=116 style='width:87pt'&gt;Funds Managed&lt;/td&gt;&#13;&#10;  &lt;td class=xl23 width=81 style='width:61pt'&gt;Net Return&lt;/td&gt;&#13;&#10;  &lt;td class=xl24 width=95 style='width:49pt'&gt;Estimate&lt;/td&gt;&#13;&#10;  &lt;td class=xl24 width=80 style='width:60pt'&gt;Benchmark&lt;/td&gt;&#13;&#10; &lt;/tr&gt;&#13;&#10; &lt;tr height=17 style='height:12.75pt'&gt;&#13;&#10;  &lt;td height=17 class=xl27 style='height:12.75pt'&gt;&lt;/td&gt;&#13;&#10;  &lt;td colspan=5 class=xl15 style='mso-ignore:colspan'&gt;&lt;/td&gt;&#13;&#10; &lt;/tr&gt;&#13;&#10; &lt;tr height=17 style='height:12.75pt'&gt;&#13;&#10;  &lt;td height=17 class=xl27 style='height:12.75pt'&gt;&lt;/td&gt;&#13;&#10;  &lt;td colspan=5 class=xl15 style='mso-ignore:colspan'&gt;&lt;/td&gt;&#13;&#10; &lt;/tr&gt;&#13;&#10; &lt;tr height=17 style='height:12.75pt'&gt;&#13;&#10;  &lt;td height=17 class=xl27 style='height:12.75pt'&gt;&lt;/td&gt;&#13;&#10;  &lt;td colspan=5 class=xl15 style='mso-ignore:colspan'&gt;&lt;/td&gt;&#13;&#10; &lt;/tr&gt;&#13;&#10; &lt;tr height=17 style='height:12.75pt'&gt;&#13;&#10;  &lt;td height=17 class=xl27 style='height:12.75pt'&gt;&lt;/td&gt;&#13;&#10;  &lt;td colspan=5 class=xl15 style='mso-ignore:colspan'&gt;&lt;/td&gt;&#13;&#10; &lt;/tr&gt;&#13;&#10; &lt;tr height=17 style='height:12.75pt'&gt;&#13;&#10;  &lt;td height=17 class=xl27 style='height:12.75pt'&gt;&lt;/td&gt;&#13;&#10;  &lt;td colspan=5 class=xl15 style='mso-ignore:colspan'&gt;&lt;/td&gt;&#13;&#10; &lt;/tr&gt;&#13;&#10; &lt;tr height=17 style='height:12.75pt'&gt;&#13;&#10;  &lt;td height=17 class=xl27 style='height:12.75pt'&gt;&lt;/td&gt;&#13;&#10;  &lt;td colspan=5 class=xl15 style='mso-ignore:colspan'&gt;&lt;/td&gt;&#13;&#10; &lt;/tr&gt;&#13;&#10; &lt;tr height=17 style='height:12.75pt'&gt;&#13;&#10;  &lt;td height=17 class=xl27 style='height:12.75pt'&gt;&lt;/td&gt;&#13;&#10;  &lt;td colspan=5 class=xl15 style='mso-ignore:colspan'&gt;&lt;/td&gt;&#13;&#10; &lt;/tr&gt;&#13;&#10; &lt;tr height=17 style='height:12.75pt'&gt;&#13;&#10;  &lt;td height=17 class=xl27 style='height:12.75pt'&gt;&lt;/td&gt;&#13;&#10;  &lt;td colspan=5 class=xl15 style='mso-ignore:colspan'&gt;&lt;/td&gt;&#13;&#10; &lt;/tr&gt;&#13;&#10; &lt;tr height=17 style='height:12.75pt'&gt;&#13;&#10;  &lt;td height=17 class=xl27 style='height:12.75pt'&gt;&lt;/td&gt;&#13;&#10;  &lt;td colspan=5 class=xl15 style='mso-ignore:colspan'&gt;&lt;/td&gt;&#13;&#10; &lt;/tr&gt;&#13;&#10; &lt;tr height=17 style='height:12.75pt'&gt;&#13;&#10;  &lt;td height=17 class=xl27 style='height:12.75pt'&gt;&lt;/td&gt;&#13;&#10;  &lt;td colspan=5 class=xl15 style='mso-ignore:colspan'&gt;&lt;/td&gt;&#13;&#10; &lt;/tr&gt;&#13;&#10; &lt;tr height=17 style='height:12.75pt'&gt;&#13;&#10;  &lt;td height=17 class=xl27 style='height:12.75pt'&gt;&lt;/td&gt;&#13;&#10;  &lt;td colspan=5 class=xl15 style='mso-ignore:colspan'&gt;&lt;/td&gt;&#13;&#10; &lt;/tr&gt;&#13;&#10; &lt;tr height=17 style='height:12.75pt'&gt;&#13;&#10;  &lt;td height=17 class=xl27 style='height:12.75pt'&gt;&lt;/td&gt;&#13;&#10;  &lt;td colspan=5 class=xl15 style='mso-ignore:colspan'&gt;&lt;/td&gt;&#13;&#10; &lt;/tr&gt;&#13;&#10; &lt;tr height=17 style='height:12.75pt'&gt;&#13;&#10;  &lt;td height=17 class=xl27 style='height:12.75pt'&gt;&lt;/td&gt;&#13;&#10;  &lt;td colspan=5 class=xl15 style='mso-ignore:colspan'&gt;&lt;/td&gt;&#13;&#10; &lt;/tr&gt;&#13;&#10; &lt;tr height=17 style='height:12.75pt'&gt;&#13;&#10;  &lt;td height=17 class=xl27 style='height:12.75pt'&gt;&lt;/td&gt;&#13;&#10;  &lt;td colspan=5 class=xl15 style='mso-ignore:colspan'&gt;&lt;/td&gt;&#13;&#10; &lt;/tr&gt;&#13;&#10; &lt;tr height=17 style='height:12.75pt'&gt;&#13;&#10;  &lt;td height=17 class=xl27 style='height:12.75pt'&gt;&lt;/td&gt;&#13;&#10;  &lt;td colspan=5 class=xl15 style='mso-ignore:colspan'&gt;&lt;/td&gt;&#13;&#10; &lt;/tr&gt;&#13;&#10; &lt;tr height=17 style='height:12.75pt'&gt;&#13;&#10;  &lt;td height=17 class=xl27 style='height:12.75pt'&gt;&lt;/td&gt;&#13;&#10;  &lt;td colspan=5 class=xl15 style='mso-ignore:colspan'&gt;&lt;/td&gt;&#13;&#10; &lt;/tr&gt;&#13;&#10; &lt;tr height=17 style='height:12.75pt'&gt;&#13;&#10;  &lt;td height=17 class=xl27 style='height:12.75pt'&gt;&lt;/td&gt;&#13;&#10;  &lt;td colspan=5 class=xl15 style='mso-ignore:colspan'&gt;&lt;/td&gt;&#13;&#10; &lt;/tr&gt;&#13;&#10; &lt;tr height=17 style='height:12.75pt'&gt;&#13;&#10;  &lt;td height=17 class=xl27 style='height:12.75pt'&gt;&lt;/td&gt;&#13;&#10;  &lt;td colspan=5 class=xl15 style='mso-ignore:colspan'&gt;&lt;/td&gt;&#13;&#10; &lt;/tr&gt;&#13;&#10; &lt;tr height=17 style='height:12.75pt'&gt;&#13;&#10;  &lt;td height=17 class=xl27 style='height:12.75pt'&gt;&lt;/td&gt;&#13;&#10;  &lt;td colspan=5 class=xl15 style='mso-ignore:colspan'&gt;&lt;/td&gt;&#13;&#10; &lt;/tr&gt;&#13;&#10; &lt;tr height=17 style='height:12.75pt'&gt;&#13;&#10;  &lt;td height=17 class=xl27 style='height:12.75pt'&gt;&lt;/td&gt;&#13;&#10;  &lt;td colspan=5 class=xl15 style='mso-ignore:colspan'&gt;&lt;/td&gt;&#13;&#10; &lt;/tr&gt;&#13;&#10; &lt;tr height=17 style='height:12.75pt'&gt;&#13;&#10;  &lt;td height=17 class=xl27 style='height:12.75pt'&gt;&lt;/td&gt;&#13;&#10;  &lt;td colspan=5 class=xl15 style='mso-ignore:colspan'&gt;&lt;/td&gt;&#13;&#10; &lt;/tr&gt;&#13;&#10; &lt;tr height=17 style='height:12.75pt'&gt;&#13;&#10;  &lt;td height=17 class=xl27 style='height:12.75pt'&gt;&lt;/td&gt;&#13;&#10;  &lt;td colspan=5 class=xl15 style='mso-ignore:colspan'&gt;&lt;/td&gt;&#13;&#10; &lt;/tr&gt;&#13;&#10; &lt;tr height=17 style='height:12.75pt'&gt;&#13;&#10;  &lt;td height=17 class=xl27 style='height:12.75pt'&gt;&lt;/td&gt;&#13;&#10;  &lt;td colspan=5 class=xl15 style='mso-ignore:colspan'&gt;&lt;/td&gt;&#13;&#10; &lt;/tr&gt;&#13;&#10; &lt;tr height=17 style='height:12.75pt'&gt;&#13;&#10;  &lt;td height=17 class=xl27 style='height:12.75pt'&gt;&lt;/td&gt;&#13;&#10;  &lt;td colspan=5 class=xl15 style='mso-ignore:colspan'&gt;&lt;/td&gt;&#13;&#10; &lt;/tr&gt;&#13;&#10; &lt;tr height=17 style='height:12.75pt'&gt;&#13;&#10;  &lt;td height=17 class=xl27 style='height:12.75pt'&gt;&lt;/td&gt;&#13;&#10;  &lt;td colspan=5 class=xl15 style='mso-ignore:colspan'&gt;&lt;/td&gt;&#13;&#10; &lt;/tr&gt;&#13;&#10; &lt;tr height=17 style='height:12.75pt'&gt;&#13;&#10;  &lt;td height=17 class=xl27 style='height:12.75pt'&gt;&lt;/td&gt;&#13;&#10;  &lt;td colspan=5 class=xl15 style='mso-ignore:colspan'&gt;&lt;/td&gt;&#13;&#10; &lt;/tr&gt;&#13;&#10; &lt;tr height=17 style='height:12.75pt'&gt;&#13;&#10;  &lt;td height=17 class=xl27 style='height:12.75pt'&gt;&lt;/td&gt;&#13;&#10;  &lt;td colspan=5 class=xl15 style='mso-ignore:colspan'&gt;&lt;/td&gt;&#13;&#10; &lt;/tr&gt;&#13;&#10; &lt;tr height=17 style='height:12.75pt'&gt;&#13;&#10;  &lt;td height=17 class=xl27 style='height:12.75pt'&gt;&lt;/td&gt;&#13;&#10;  &lt;td colspan=5 class=xl15 style='mso-ignore:colspan'&gt;&lt;/td&gt;&#13;&#10; &lt;/tr&gt;&#13;&#10; &lt;tr height=17 style='height:12.75pt'&gt;&#13;&#10;  &lt;td height=17 class=xl27 style='height:12.75pt'&gt;&lt;/td&gt;&#13;&#10;  &lt;td colspan=5 class=xl15 style='mso-ignore:colspan'&gt;&lt;/td&gt;&#13;&#10; &lt;/tr&gt;&#13;&#10; &lt;tr height=17 style='height:12.75pt'&gt;&#13;&#10;  &lt;td height=17 class=xl27 style='height:12.75pt'&gt;&lt;/td&gt;&#13;&#10;  &lt;td colspan=5 class=xl15 style='mso-ignore:colspan'&gt;&lt;/td&gt;&#13;&#10; &lt;/tr&gt;&#13;&#10; &lt;tr height=17 style='height:12.75pt'&gt;&#13;&#10;  &lt;td height=17 class=xl27 style='height:12.75pt'&gt;&lt;/td&gt;&#13;&#10;  &lt;td colspan=5 class=xl15 style='mso-ignore:colspan'&gt;&lt;/td&gt;&#13;&#10; &lt;/tr&gt;&#13;&#10; &lt;tr height=17 style='height:12.75pt'&gt;&#13;&#10;  &lt;td height=17 class=xl27 style='height:12.75pt'&gt;&lt;/td&gt;&#13;&#10;  &lt;td colspan=5 class=xl15 style='mso-ignore:colspan'&gt;&lt;/td&gt;&#13;&#10; &lt;/tr&gt;&#13;&#10; &lt;tr height=17 style='height:12.75pt'&gt;&#13;&#10;  &lt;td height=17 class=xl27 style='height:12.75pt'&gt;&lt;/td&gt;&#13;&#10;  &lt;td colspan=5 class=xl15 style='mso-ignore:colspan'&gt;&lt;/td&gt;&#13;&#10; &lt;/tr&gt;&#13;&#10; &lt;tr height=17 style='height:12.75pt'&gt;&#13;&#10;  &lt;td height=17 class=xl27 style='height:12.75pt'&gt;&lt;/td&gt;&#13;&#10;  &lt;td colspan=5 class=xl15 style='mso-ignore:colspan'&gt;&lt;/td&gt;&#13;&#10; &lt;/tr&gt;&#13;&#10; &lt;tr height=17 style='height:12.75pt'&gt;&#13;&#10;  &lt;td height=17 class=xl27 style='height:12.75pt'&gt;&lt;/td&gt;&#13;&#10;  &lt;td colspan=5 class=xl15 style='mso-ignore:colspan'&gt;&lt;/td&gt;&#13;&#10; &lt;/tr&gt;&#13;&#10; &lt;tr height=17 style='height:12.75pt'&gt;&#13;&#10;  &lt;td height=17 class=xl27 style='height:12.75pt'&gt;&lt;/td&gt;&#13;&#10;  &lt;td colspan=5 class=xl15 style='mso-ignore:colspan'&gt;&lt;/td&gt;&#13;&#10; &lt;/tr&gt;&#13;&#10; &lt;tr height=17 style='height:12.75pt'&gt;&#13;&#10;  &lt;td height=17 class=xl27 style='height:12.75pt'&gt;&lt;/td&gt;&#13;&#10;  &lt;td colspan=5 class=xl15 style='mso-ignore:colspan'&gt;&lt;/td&gt;&#13;&#10; &lt;/tr&gt;&#13;&#10; &lt;tr height=17 style='height:12.75pt'&gt;&#13;&#10;  &lt;td height=17 class=xl27 style='height:12.75pt'&gt;&lt;/td&gt;&#13;&#10;  &lt;td colspan=5 class=xl15 style='mso-ignore:colspan'&gt;&lt;/td&gt;&#13;&#10; &lt;/tr&gt;&#13;&#10; &lt;tr height=17 style='height:12.75pt'&gt;&#13;&#10;  &lt;td height=17 class=xl27 style='height:12.75pt'&gt;&lt;/td&gt;&#13;&#10;  &lt;td colspan=5 class=xl15 style='mso-ignore:colspan'&gt;&lt;/td&gt;&#13;&#10; &lt;/tr&gt;&#13;&#10; &lt;tr height=17 style='height:12.75pt'&gt;&#13;&#10;  &lt;td height=17 class=xl27 style='height:12.75pt'&gt;&lt;/td&gt;&#13;&#10;  &lt;td colspan=5 class=xl15 style='mso-ignore:colspan'&gt;&lt;/td&gt;&#13;&#10; &lt;/tr&gt;&#13;&#10; &lt;tr height=17 style='height:12.75pt'&gt;&#13;&#10;  &lt;td height=17 class=xl27 style='height:12.75pt'&gt;&lt;/td&gt;&#13;&#10;  &lt;td colspan=5 class=xl15 style='mso-ignore:colspan'&gt;&lt;/td&gt;&#13;&#10; &lt;/tr&gt;&#13;&#10; &lt;tr height=17 style='height:12.75pt'&gt;&#13;&#10;  &lt;td height=17 class=xl27 style='height:12.75pt'&gt;&lt;/td&gt;&#13;&#10;  &lt;td colspan=5 class=xl15 style='mso-ignore:colspan'&gt;&lt;/td&gt;&#13;&#10; &lt;/tr&gt;&#13;&#10; &lt;tr height=17 style='height:12.75pt'&gt;&#13;&#10;  &lt;td height=17 class=xl27 style='height:12.75pt'&gt;&lt;/td&gt;&#13;&#10;  &lt;td colspan=5 class=xl15 style='mso-ignore:colspan'&gt;&lt;/td&gt;&#13;&#10; &lt;/tr&gt;&#13;&#10; &lt;tr height=17 style='height:12.75pt'&gt;&#13;&#10;  &lt;td height=17 class=xl27 style='height:12.75pt'&gt;&lt;/td&gt;&#13;&#10;  &lt;td colspan=5 class=xl15 style='mso-ignore:colspan'&gt;&lt;/td&gt;&#13;&#10; &lt;/tr&gt;&#13;&#10; &lt;tr height=17 style='height:12.75pt'&gt;&#13;&#10;  &lt;td height=17 class=xl27 style='height:12.75pt'&gt;&lt;/td&gt;&#13;&#10;  &lt;td colspan=5 class=xl15 style='mso-ignore:colspan'&gt;&lt;/td&gt;&#13;&#10; &lt;/tr&gt;&#13;&#10; &lt;tr height=17 style='height:12.75pt'&gt;&#13;&#10;  &lt;td height=17 class=xl27 style='height:12.75pt'&gt;&lt;/td&gt;&#13;&#10;  &lt;td colspan=5 class=xl15 style='mso-ignore:colspan'&gt;&lt;/td&gt;&#13;&#10; &lt;/tr&gt;&#13;&#10; &lt;tr height=17 style='height:12.75pt'&gt;&#13;&#10;  &lt;td height=17 class=xl27 style='height:12.75pt'&gt;&lt;/td&gt;&#13;&#10;  &lt;td colspan=5 class=xl15 style='mso-ignore:colspan'&gt;&lt;/td&gt;&#13;&#10; &lt;/tr&gt;&#13;&#10; &lt;tr height=17 style='height:12.75pt'&gt;&#13;&#10;  &lt;td height=17 class=xl27 style='height:12.75pt'&gt;&lt;/td&gt;&#13;&#10;  &lt;td colspan=5 class=xl15 style='mso-ignore:colspan'&gt;&lt;/td&gt;&#13;&#10; &lt;/tr&gt;&#13;&#10; &lt;tr height=17 style='height:12.75pt'&gt;&#13;&#10;  &lt;td height=17 class=xl27 style='height:12.75pt'&gt;&lt;/td&gt;&#13;&#10;  &lt;td colspan=5 class=xl15 style='mso-ignore:colspan'&gt;&lt;/td&gt;&#13;&#10; &lt;/tr&gt;&#13;&#10; &lt;tr height=17 style='height:12.75pt'&gt;&#13;&#10;  &lt;td height=17 class=xl27 style='height:12.75pt'&gt;&lt;/td&gt;&#13;&#10;  &lt;td colspan=5 class=xl15 style='mso-ignore:colspan'&gt;&lt;/td&gt;&#13;&#10; &lt;/tr&gt;&#13;&#10; &lt;tr height=17 style='height:12.75pt'&gt;&#13;&#10;  &lt;td height=17 class=xl27 style='height:12.75pt'&gt;&lt;/td&gt;&#13;&#10;  &lt;td colspan=5 class=xl15 style='mso-ignore:colspan'&gt;&lt;/td&gt;&#13;&#10; &lt;/tr&gt;&#13;&#10; &lt;tr height=17 style='height:12.75pt'&gt;&#13;&#10;  &lt;td height=17 class=xl27 style='height:12.75pt'&gt;&lt;/td&gt;&#13;&#10;  &lt;td colspan=5 class=xl15 style='mso-ignore:colspan'&gt;&lt;/td&gt;&#13;&#10; &lt;/tr&gt;&#13;&#10; &lt;tr height=17 style='height:12.75pt'&gt;&#13;&#10;  &lt;td height=17 class=xl27 style='height:12.75pt'&gt;&lt;/td&gt;&#13;&#10;  &lt;td colspan=5 class=xl15 style='mso-ignore:colspan'&gt;&lt;/td&gt;&#13;&#10; &lt;/tr&gt;&#13;&#10; &lt;tr height=17 style='height:12.75pt'&gt;&#13;&#10;  &lt;td height=17 class=xl27 style='height:12.75pt'&gt;&lt;/td&gt;&#13;&#10;  &lt;td colspan=5 class=xl15 style='mso-ignore:colspan'&gt;&lt;/td&gt;&#13;&#10; &lt;/tr&gt;&#13;&#10; &lt;tr height=17 style='height:12.75pt'&gt;&#13;&#10;  &lt;td height=17 class=xl27 style='height:12.75pt'&gt;&lt;/td&gt;&#13;&#10;  &lt;td colspan=5 class=xl15 style='mso-ignore:colspan'&gt;&lt;/td&gt;&#13;&#10; &lt;/tr&gt;&#13;&#10; &lt;tr height=17 style='height:12.75pt'&gt;&#13;&#10;  &lt;td height=17 class=xl27 style='height:12.75pt'&gt;&lt;/td&gt;&#13;&#10;  &lt;td colspan=5 class=xl15 style='mso-ignore:colspan'&gt;&lt;/td&gt;&#13;&#10; &lt;/tr&gt;&#13;&#10; &lt;tr height=17 style='height:12.75pt'&gt;&#13;&#10;  &lt;td height=17 class=xl27 style='height:12.75pt'&gt;&lt;/td&gt;&#13;&#10;  &lt;td colspan=5 class=xl15 style='mso-ignore:colspan'&gt;&lt;/td&gt;&#13;&#10; &lt;/tr&gt;&#13;&#10; &lt;tr height=17 style='height:12.75pt'&gt;&#13;&#10;  &lt;td height=17 class=xl27 style='height:12.75pt'&gt;&lt;/td&gt;&#13;&#10;  &lt;td colspan=5 class=xl15 style='mso-ignore:colspan'&gt;&lt;/td&gt;&#13;&#10; &lt;/tr&gt;&#13;&#10; &lt;tr height=17 style='height:12.75pt'&gt;&#13;&#10;  &lt;td height=17 class=xl27 style='height:12.75pt'&gt;&lt;/td&gt;&#13;&#10;  &lt;td colspan=5 class=xl15 style='mso-ignore:colspan'&gt;&lt;/td&gt;&#13;&#10; &lt;/tr&gt;&#13;&#10; &lt;tr height=17 style='height:12.75pt'&gt;&#13;&#10;  &lt;td height=17 class=xl27 style='height:12.75pt'&gt;&lt;/td&gt;&#13;&#10;  &lt;td colspan=5 class=xl15 style='mso-ignore:colspan'&gt;&lt;/td&gt;&#13;&#10; &lt;/tr&gt;&#13;&#10; &lt;tr height=17 style='height:12.75pt'&gt;&#13;&#10;  &lt;td height=17 class=xl27 style='height:12.75pt'&gt;&lt;/td&gt;&#13;&#10;  &lt;td colspan=5 class=xl15 style='mso-ignore:colspan'&gt;&lt;/td&gt;&#13;&#10; &lt;/tr&gt;&#13;&#10; &lt;tr height=17 style='height:12.75pt'&gt;&#13;&#10;  &lt;td height=17 class=xl27 style='height:12.75pt'&gt;&lt;/td&gt;&#13;&#10;  &lt;td colspan=5 class=xl15 style='mso-ignore:colspan'&gt;&lt;/td&gt;&#13;&#10; &lt;/tr&gt;&#13;&#10; &lt;tr height=17 style='height:12.75pt'&gt;&#13;&#10;  &lt;td height=17 class=xl27 style='height:12.75pt'&gt;&lt;/td&gt;&#13;&#10;  &lt;td colspan=5 class=xl15 style='mso-ignore:colspan'&gt;&lt;/td&gt;&#13;&#10; &lt;/tr&gt;&#13;&#10; &lt;tr height=17 style='height:12.75pt'&gt;&#13;&#10;  &lt;td height=17 class=xl27 style='height:12.75pt'&gt;&lt;/td&gt;&#13;&#10;  &lt;td colspan=5 class=xl15 style='mso-ignore:colspan'&gt;&lt;/td&gt;&#13;&#10; &lt;/tr&gt;&#13;&#10; &lt;tr height=17 style='height:12.75pt'&gt;&#13;&#10;  &lt;td height=17 class=xl27 style='height:12.75pt'&gt;&lt;/td&gt;&#13;&#10;  &lt;td colspan=5 class=xl15 style='mso-ignore:colspan'&gt;&lt;/td&gt;&#13;&#10; &lt;/tr&gt;&#13;&#10; &lt;tr height=17 style='height:12.75pt'&gt;&#13;&#10;  &lt;td height=17 class=xl27 style='height:12.75pt'&gt;&lt;/td&gt;&#13;&#10;  &lt;td colspan=5 class=xl15 style='mso-ignore:colspan'&gt;&lt;/td&gt;&#13;&#10; &lt;/tr&gt;&#13;&#10; &lt;tr height=17 style='height:12.75pt'&gt;&#13;&#10;  &lt;td height=17 class=xl27 style='height:12.75pt'&gt;&lt;/td&gt;&#13;&#10;  &lt;td colspan=5 class=xl15 style='mso-ignore:colspan'&gt;&lt;/td&gt;&#13;&#10; &lt;/tr&gt;&#13;&#10; &lt;tr height=17 style='height:12.75pt'&gt;&#13;&#10;  &lt;td height=17 class=xl27 style='height:12.75pt'&gt;&lt;/td&gt;&#13;&#10;  &lt;td colspan=5 class=xl15 style='mso-ignore:colspan'&gt;&lt;/td&gt;&#13;&#10; &lt;/tr&gt;&#13;&#10; &lt;tr height=17 style='height:12.75pt'&gt;&#13;&#10;  &lt;td height=17 class=xl27 style='height:12.75pt'&gt;&lt;/td&gt;&#13;&#10;  &lt;td colspan=5 class=xl15 style='mso-ignore:colspan'&gt;&lt;/td&gt;&#13;&#10; &lt;/tr&gt;&#13;&#10; &lt;tr height=17 style='height:12.75pt'&gt;&#13;&#10;  &lt;td height=17 class=xl27 style='height:12.75pt'&gt;&lt;/td&gt;&#13;&#10;  &lt;td colspan=5 class=xl15 style='mso-ignore:colspan'&gt;&lt;/td&gt;&#13;&#10; &lt;/tr&gt;&#13;&#10; &lt;tr height=17 style='height:12.75pt'&gt;&#13;&#10;  &lt;td height=17 class=xl27 style='height:12.75pt'&gt;&lt;/td&gt;&#13;&#10;  &lt;td colspan=5 class=xl15 style='mso-ignore:colspan'&gt;&lt;/td&gt;&#13;&#10; &lt;/tr&gt;&#13;&#10; &lt;tr height=17 style='height:12.75pt'&gt;&#13;&#10;  &lt;td height=17 class=xl27 style='height:12.75pt'&gt;&lt;/td&gt;&#13;&#10;  &lt;td colspan=5 class=xl15 style='mso-ignore:colspan'&gt;&lt;/td&gt;&#13;&#10; &lt;/tr&gt;&#13;&#10; &lt;tr height=17 style='height:12.75pt'&gt;&#13;&#10;  &lt;td height=17 class=xl27 style='height:12.75pt'&gt;&lt;/td&gt;&#13;&#10;  &lt;td colspan=5 class=xl15 style='mso-ignore:colspan'&gt;&lt;/td&gt;&#13;&#10; &lt;/tr&gt;&#13;&#10; &lt;tr height=17 style='height:12.75pt'&gt;&#13;&#10;  &lt;td height=17 class=xl27 style='height:12.75pt'&gt;&lt;/td&gt;&#13;&#10;  &lt;td colspan=5 class=xl15 style='mso-ignore:colspan'&gt;&lt;/td&gt;&#13;&#10; &lt;/tr&gt;&#13;&#10; &lt;tr height=17 style='height:12.75pt'&gt;&#13;&#10;  &lt;td height=17 class=xl27 style='height:12.75pt'&gt;&lt;/td&gt;&#13;&#10;  &lt;td colspan=5 class=xl15 style='mso-ignore:colspan'&gt;&lt;/td&gt;&#13;&#10; &lt;/tr&gt;&#13;&#10; &lt;tr height=17 style='height:12.75pt'&gt;&#13;&#10;  &lt;td height=17 class=xl27 style='height:12.75pt'&gt;&lt;/td&gt;&#13;&#10;  &lt;td colspan=5 class=xl15 style='mso-ignore:colspan'&gt;&lt;/td&gt;&#13;&#10; &lt;/tr&gt;&#13;&#10; &lt;tr height=17 style='height:12.75pt'&gt;&#13;&#10;  &lt;td height=17 class=xl27 style='height:12.75pt'&gt;&lt;/td&gt;&#13;&#10;  &lt;td colspan=5 class=xl15 style='mso-ignore:colspan'&gt;&lt;/td&gt;&#13;&#10; &lt;/tr&gt;&#13;&#10; &lt;tr height=17 style='height:12.75pt'&gt;&#13;&#10;  &lt;td height=17 class=xl27 style='height:12.75pt'&gt;&lt;/td&gt;&#13;&#10;  &lt;td colspan=5 class=xl15 style='mso-ignore:colspan'&gt;&lt;/td&gt;&#13;&#10; &lt;/tr&gt;&#13;&#10; &lt;tr height=17 style='height:12.75pt'&gt;&#13;&#10;  &lt;td height=17 class=xl27 style='height:12.75pt'&gt;&lt;/td&gt;&#13;&#10;  &lt;td colspan=5 class=xl15 style='mso-ignore:colspan'&gt;&lt;/td&gt;&#13;&#10; &lt;/tr&gt;&#13;&#10; &lt;tr height=17 style='height:12.75pt'&gt;&#13;&#10;  &lt;td height=17 class=xl27 style='height:12.75pt'&gt;&lt;/td&gt;&#13;&#10;  &lt;td colspan=5 class=xl15 style='mso-ignore:colspan'&gt;&lt;/td&gt;&#13;&#10; &lt;/tr&gt;&#13;&#10; &lt;tr height=17 style='height:12.75pt'&gt;&#13;&#10;  &lt;td height=17 class=xl27 style='height:12.75pt'&gt;&lt;/td&gt;&#13;&#10;  &lt;td colspan=5 class=xl15 style='mso-ignore:colspan'&gt;&lt;/td&gt;&#13;&#10; &lt;/tr&gt;&#13;&#10; &lt;tr height=17 style='height:12.75pt'&gt;&#13;&#10;  &lt;td height=17 class=xl27 style='height:12.75pt'&gt;&lt;/td&gt;&#13;&#10;  &lt;td colspan=5 class=xl15 style='mso-ignore:colspan'&gt;&lt;/td&gt;&#13;&#10; &lt;/tr&gt;&#13;&#10; &lt;tr height=17 style='height:12.75pt'&gt;&#13;&#10;  &lt;td height=17 class=xl27 style='height:12.75pt'&gt;&lt;/td&gt;&#13;&#10;  &lt;td colspan=5 class=xl15 style='mso-ignore:colspan'&gt;&lt;/td&gt;&#13;&#10; &lt;/tr&gt;&#13;&#10; &lt;tr height=17 style='height:12.75pt'&gt;&#13;&#10;  &lt;td height=17 class=xl27 style='height:12.75pt'&gt;&lt;/td&gt;&#13;&#10;  &lt;td colspan=5 class=xl15 style='mso-ignore:colspan'&gt;&lt;/td&gt;&#13;&#10; &lt;/tr&gt;&#13;&#10; &lt;tr height=17 style='height:12.75pt'&gt;&#13;&#10;  &lt;td height=17 class=xl27 style='height:12.75pt'&gt;&lt;/td&gt;&#13;&#10;  &lt;td colspan=5 class=xl15 style='mso-ignore:colspan'&gt;&lt;/td&gt;&#13;&#10; &lt;/tr&gt;&#13;&#10; &lt;tr height=17 style='height:12.75pt'&gt;&#13;&#10;  &lt;td height=17 class=xl27 style='height:12.75pt'&gt;&lt;/td&gt;&#13;&#10;  &lt;td colspan=5 class=xl15 style='mso-ignore:colspan'&gt;&lt;/td&gt;&#13;&#10; &lt;/tr&gt;&#13;&#10; &lt;tr height=17 style='height:12.75pt'&gt;&#13;&#10;  &lt;td height=17 class=xl27 style='height:12.75pt'&gt;&lt;/td&gt;&#13;&#10;  &lt;td colspan=5 class=xl15 style='mso-ignore:colspan'&gt;&lt;/td&gt;&#13;&#10; &lt;/tr&gt;&#13;&#10; &lt;tr height=17 style='height:12.75pt'&gt;&#13;&#10;  &lt;td height=17 class=xl27 style='height:12.75pt'&gt;&lt;/td&gt;&#13;&#10;  &lt;td colspan=5 class=xl15 style='mso-ignore:colspan'&gt;&lt;/td&gt;&#13;&#10; &lt;/tr&gt;&#13;&#10; &lt;tr height=17 style='height:12.75pt'&gt;&#13;&#10;  &lt;td height=17 class=xl27 style='height:12.75pt'&gt;&lt;/td&gt;&#13;&#10;  &lt;td colspan=5 class=xl15 style='mso-ignore:colspan'&gt;&lt;/td&gt;&#13;&#10; &lt;/tr&gt;&#13;&#10; &lt;tr height=17 style='height:12.75pt'&gt;&#13;&#10;  &lt;td height=17 class=xl27 style='height:12.75pt'&gt;&lt;/td&gt;&#13;&#10;  &lt;td colspan=5 class=xl15 style='mso-ignore:colspan'&gt;&lt;/td&gt;&#13;&#10; &lt;/tr&gt;&#13;&#10; &lt;tr height=17 style='height:12.75pt'&gt;&#13;&#10;  &lt;td height=17 class=xl27 style='height:12.75pt'&gt;&lt;/td&gt;&#13;&#10;  &lt;td colspan=5 class=xl15 style='mso-ignore:colspan'&gt;&lt;/td&gt;&#13;&#10; &lt;/tr&gt;&#13;&#10; &lt;tr height=17 style='height:12.75pt'&gt;&#13;&#10;  &lt;td height=17 class=xl27 style='height:12.75pt'&gt;&lt;/td&gt;&#13;&#10;  &lt;td colspan=5 class=xl15 style='mso-ignore:colspan'&gt;&lt;/td&gt;&#13;&#10; &lt;/tr&gt;&#13;&#10; &lt;tr height=17 style='height:12.75pt'&gt;&#13;&#10;  &lt;td height=17 class=xl27 style='height:12.75pt'&gt;&lt;/td&gt;&#13;&#10;  &lt;td colspan=5 class=xl15 style='mso-ignore:colspan'&gt;&lt;/td&gt;&#13;&#10; &lt;/tr&gt;&#13;&#10; &lt;tr height=17 style='height:12.75pt'&gt;&#13;&#10;  &lt;td height=17 class=xl27 style='height:12.75pt'&gt;&lt;/td&gt;&#13;&#10;  &lt;td colspan=5 class=xl15 style='mso-ignore:colspan'&gt;&lt;/td&gt;&#13;&#10; &lt;/tr&gt;&#13;&#10; &lt;tr height=17 style='height:12.75pt'&gt;&#13;&#10;  &lt;td height=17 class=xl27 style='height:12.75pt'&gt;&lt;/td&gt;&#13;&#10;  &lt;td colspan=5 class=xl15 style='mso-ignore:colspan'&gt;&lt;/td&gt;&#13;&#10; &lt;/tr&gt;&#13;&#10; &lt;tr height=17 style='height:12.75pt'&gt;&#13;&#10;  &lt;td height=17 class=xl27 style='height:12.75pt'&gt;&lt;/td&gt;&#13;&#10;  &lt;td colspan=5 class=xl15 style='mso-ignore:colspan'&gt;&lt;/td&gt;&#13;&#10; &lt;/tr&gt;&#13;&#10; &lt;tr height=17 style='height:12.75pt'&gt;&#13;&#10;  &lt;td height=17 class=xl27 style='height:12.75pt'&gt;&lt;/td&gt;&#13;&#10;  &lt;td colspan=5 class=xl15 style='mso-ignore:colspan'&gt;&lt;/td&gt;&#13;&#10; &lt;/tr&gt;&#13;&#10; &lt;tr height=17 style='height:12.75pt'&gt;&#13;&#10;  &lt;td height=17 class=xl27 style='height:12.75pt'&gt;&lt;/td&gt;&#13;&#10;  &lt;td colspan=5 class=xl15 style='mso-ignore:colspan'&gt;&lt;/td&gt;&#13;&#10; &lt;/tr&gt;&#13;&#10; &lt;tr height=17 style='height:12.75pt'&gt;&#13;&#10;  &lt;td height=17 class=xl27 style='height:12.75pt'&gt;&lt;/td&gt;&#13;&#10;  &lt;td colspan=5 class=xl15 style='mso-ignore:colspan'&gt;&lt;/td&gt;&#13;&#10; &lt;/tr&gt;&#13;&#10; &lt;tr height=17 style='height:12.75pt'&gt;&#13;&#10;  &lt;td height=17 class=xl27 style='height:12.75pt'&gt;&lt;/td&gt;&#13;&#10;  &lt;td colspan=5 class=xl15 style='mso-ignore:colspan'&gt;&lt;/td&gt;&#13;&#10; &lt;/tr&gt;&#13;&#10; &lt;tr height=17 style='height:12.75pt'&gt;&#13;&#10;  &lt;td height=17 class=xl27 style='height:12.75pt'&gt;&lt;/td&gt;&#13;&#10;  &lt;td colspan=5 class=xl15 style='mso-ignore:colspan'&gt;&lt;/td&gt;&#13;&#10; &lt;/tr&gt;&#13;&#10; &lt;tr height=17 style='height:12.75pt'&gt;&#13;&#10;  &lt;td height=17 class=xl27 style='height:12.75pt'&gt;&lt;/td&gt;&#13;&#10;  &lt;td colspan=5 class=xl15 style='mso-ignore:colspan'&gt;&lt;/td&gt;&#13;&#10; &lt;/tr&gt;&#13;&#10; &lt;tr height=17 style='height:12.75pt'&gt;&#13;&#10;  &lt;td height=17 class=xl27 style='height:12.75pt'&gt;&lt;/td&gt;&#13;&#10;  &lt;td colspan=5 class=xl15 style='mso-ignore:colspan'&gt;&lt;/td&gt;&#13;&#10; &lt;/tr&gt;&#13;&#10; &lt;tr height=17 style='height:12.75pt'&gt;&#13;&#10;  &lt;td height=17 class=xl27 style='height:12.75pt'&gt;&lt;/td&gt;&#13;&#10;  &lt;td colspan=5 class=xl15 style='mso-ignore:colspan'&gt;&lt;/td&gt;&#13;&#10; &lt;/tr&gt;&#13;&#10; &lt;tr height=17 style='height:12.75pt'&gt;&#13;&#10;  &lt;td height=17 class=xl27 style='height:12.75pt'&gt;&lt;/td&gt;&#13;&#10;  &lt;td colspan=5 class=xl15 style='mso-ignore:colspan'&gt;&lt;/td&gt;&#13;&#10; &lt;/tr&gt;&#13;&#10; &lt;tr height=17 style='height:12.75pt'&gt;&#13;&#10;  &lt;td height=17 class=xl27 style='height:12.75pt'&gt;&lt;/td&gt;&#13;&#10;  &lt;td colspan=5 class=xl15 style='mso-ignore:colspan'&gt;&lt;/td&gt;&#13;&#10; &lt;/tr&gt;&#13;&#10; &lt;tr height=17 style='height:12.75pt'&gt;&#13;&#10;  &lt;td height=17 class=xl27 style='height:12.75pt'&gt;&lt;/td&gt;&#13;&#10;  &lt;td colspan=5 class=xl15 style='mso-ignore:colspan'&gt;&lt;/td&gt;&#13;&#10; &lt;/tr&gt;&#13;&#10; &lt;tr height=17 style='height:12.75pt'&gt;&#13;&#10;  &lt;td height=17 class=xl27 style='height:12.75pt'&gt;&lt;/td&gt;&#13;&#10;  &lt;td colspan=5 class=xl15 style='mso-ignore:colspan'&gt;&lt;/td&gt;&#13;&#10; &lt;/tr&gt;&#13;&#10; &lt;tr height=17 style='height:12.75pt'&gt;&#13;&#10;  &lt;td height=17 class=xl27 style='height:12.75pt'&gt;&lt;/td&gt;&#13;&#10;  &lt;td colspan=5 class=xl15 style='mso-ignore:colspan'&gt;&lt;/td&gt;&#13;&#10; &lt;/tr&gt;&#13;&#10; &lt;tr height=17 style='height:12.75pt'&gt;&#13;&#10;  &lt;td height=17 class=xl27 style='height:12.75pt'&gt;&lt;/td&gt;&#13;&#10;  &lt;td colspan=5 class=xl15 style='mso-ignore:colspan'&gt;&lt;/td&gt;&#13;&#10; &lt;/tr&gt;&#13;&#10; &lt;tr height=17 style='height:12.75pt'&gt;&#13;&#10;  &lt;td height=17 class=xl27 style='height:12.75pt'&gt;&lt;/td&gt;&#13;&#10;  &lt;td colspan=5 class=xl15 style='mso-ignore:colspan'&gt;&lt;/td&gt;&#13;&#10; &lt;/tr&gt;&#13;&#10; &lt;tr height=17 style='height:12.75pt'&gt;&#13;&#10;  &lt;td height=17 class=xl27 style='height:12.75pt'&gt;&lt;/td&gt;&#13;&#10;  &lt;td colspan=5 class=xl15 style='mso-ignore:colspan'&gt;&lt;/td&gt;&#13;&#10; &lt;/tr&gt;&#13;&#10; &lt;tr height=17 style='height:12.75pt'&gt;&#13;&#10;  &lt;td height=17 class=xl27 style='height:12.75pt'&gt;&lt;/td&gt;&#13;&#10;  &lt;td colspan=5 class=xl15 style='mso-ignore:colspan'&gt;&lt;/td&gt;&#13;&#10; &lt;/tr&gt;&#13;&#10; &lt;tr height=17 style='height:12.75pt'&gt;&#13;&#10;  &lt;td height=17 class=xl27 style='height:12.75pt'&gt;&lt;/td&gt;&#13;&#10;  &lt;td colspan=5 class=xl15 style='mso-ignore:colspan'&gt;&lt;/td&gt;&#13;&#10; &lt;/tr&gt;&#13;&#10; &lt;tr height=17 style='height:12.75pt'&gt;&#13;&#10;  &lt;td height=17 class=xl27 style='height:12.75pt'&gt;&lt;/td&gt;&#13;&#10;  &lt;td colspan=5 class=xl15 style='mso-ignore:colspan'&gt;&lt;/td&gt;&#13;&#10; &lt;/tr&gt;&#13;&#10; &lt;tr height=17 style='height:12.75pt'&gt;&#13;&#10;  &lt;td height=17 class=xl27 style='height:12.75pt'&gt;&lt;/td&gt;&#13;&#10;  &lt;td colspan=5 class=xl15 style='mso-ignore:colspan'&gt;&lt;/td&gt;&#13;&#10; &lt;/tr&gt;&#13;&#10; &lt;tr height=17 style='height:12.75pt'&gt;&#13;&#10;  &lt;td height=17 class=xl27 style='height:12.75pt'&gt;&lt;/td&gt;&#13;&#10;  &lt;td colspan=5 class=xl15 style='mso-ignore:colspan'&gt;&lt;/td&gt;&#13;&#10; &lt;/tr&gt;&#13;&#10; &lt;tr height=17 style='height:12.75pt'&gt;&#13;&#10;  &lt;td height=17 class=xl27 style='height:12.75pt'&gt;&lt;/td&gt;&#13;&#10;  &lt;td colspan=5 class=xl15 style='mso-ignore:colspan'&gt;&lt;/td&gt;&#13;&#10; &lt;/tr&gt;&#13;&#10; &lt;tr height=17 style='height:12.75pt'&gt;&#13;&#10;  &lt;td height=17 class=xl27 style='height:12.75pt'&gt;&lt;/td&gt;&#13;&#10;  &lt;td colspan=5 class=xl15 style='mso-ignore:colspan'&gt;&lt;/td&gt;&#13;&#10; &lt;/tr&gt;&#13;&#10; &lt;tr height=17 style='height:12.75pt'&gt;&#13;&#10;  &lt;td height=17 class=xl27 style='height:12.75pt'&gt;&lt;/td&gt;&#13;&#10;  &lt;td colspan=5 class=xl15 style='mso-ignore:colspan'&gt;&lt;/td&gt;&#13;&#10; &lt;/tr&gt;&#13;&#10; &lt;tr height=17 style='height:12.75pt'&gt;&#13;&#10;  &lt;td height=17 class=xl27 style='height:12.75pt'&gt;&lt;/td&gt;&#13;&#10;  &lt;td colspan=5 class=xl15 style='mso-ignore:colspan'&gt;&lt;/td&gt;&#13;&#10; &lt;/tr&gt;&#13;&#10; &lt;tr height=17 style='height:12.75pt'&gt;&#13;&#10;  &lt;td height=17 class=xl27 style='height:12.75pt'&gt;&lt;/td&gt;&#13;&#10;  &lt;td colspan=5 class=xl15 style='mso-ignore:colspan'&gt;&lt;/td&gt;&#13;&#10; &lt;/tr&gt;&#13;&#10; &lt;tr height=17 style='height:12.75pt'&gt;&#13;&#10;  &lt;td height=17 class=xl27 style='height:12.75pt'&gt;&lt;/td&gt;&#13;&#10;  &lt;td colspan=5 class=xl15 style='mso-ignore:colspan'&gt;&lt;/td&gt;&#13;&#10; &lt;/tr&gt;&#13;&#10; &lt;tr height=17 style='height:12.75pt'&gt;&#13;&#10;  &lt;td height=17 class=xl27 style='height:12.75pt'&gt;&lt;/td&gt;&#13;&#10;  &lt;td colspan=5 class=xl15 style='mso-ignore:colspan'&gt;&lt;/td&gt;&#13;&#10; &lt;/tr&gt;&#13;&#10; &lt;tr height=17 style='height:12.75pt'&gt;&#13;&#10;  &lt;td height=17 class=xl27 style='height:12.75pt'&gt;&lt;/td&gt;&#13;&#10;  &lt;td colspan=5 class=xl15 style='mso-ignore:colspan'&gt;&lt;/td&gt;&#13;&#10; &lt;/tr&gt;&#13;&#10; &lt;tr height=17 style='height:12.75pt'&gt;&#13;&#10;  &lt;td height=17 class=xl27 style='height:12.75pt'&gt;&lt;/td&gt;&#13;&#10;  &lt;td colspan=5 class=xl15 style='mso-ignore:colspan'&gt;&lt;/td&gt;&#13;&#10; &lt;/tr&gt;&#13;&#10; &lt;tr height=17 style='height:12.75pt'&gt;&#13;&#10;  &lt;td height=17 class=xl27 style='height:12.75pt'&gt;&lt;/td&gt;&#13;&#10;  &lt;td colspan=5 class=xl15 style='mso-ignore:colspan'&gt;&lt;/td&gt;&#13;&#10; &lt;/tr&gt;&#13;&#10; &lt;tr height=17 style='height:12.75pt'&gt;&#13;&#10;  &lt;td height=17 class=xl27 style='height:12.75pt'&gt;&lt;/td&gt;&#13;&#10;  &lt;td colspan=5 class=xl15 style='mso-ignore:colspan'&gt;&lt;/td&gt;&#13;&#10; &lt;/tr&gt;&#13;&#10; &lt;tr height=17 style='height:12.75pt'&gt;&#13;&#10;  &lt;td height=17 class=xl27 style='height:12.75pt'&gt;&lt;/td&gt;&#13;&#10;  &lt;td colspan=5 class=xl15 style='mso-ignore:colspan'&gt;&lt;/td&gt;&#13;&#10; &lt;/tr&gt;&#13;&#10; &lt;tr height=17 style='height:12.75pt'&gt;&#13;&#10;  &lt;td height=17 class=xl27 style='height:12.75pt'&gt;&lt;/td&gt;&#13;&#10;  &lt;td colspan=5 class=xl15 style='mso-ignore:colspan'&gt;&lt;/td&gt;&#13;&#10; &lt;/tr&gt;&#13;&#10; &lt;tr height=17 style='height:12.75pt'&gt;&#13;&#10;  &lt;td height=17 class=xl27 style='height:12.75pt'&gt;&lt;/td&gt;&#13;&#10;  &lt;td colspan=5 class=xl15 style='mso-ignore:colspan'&gt;&lt;/td&gt;&#13;&#10; &lt;/tr&gt;&#13;&#10; &lt;tr height=17 style='height:12.75pt'&gt;&#13;&#10;  &lt;td height=17 class=xl27 style='height:12.75pt'&gt;&lt;/td&gt;&#13;&#10;  &lt;td colspan=5 class=xl15 style='mso-ignore:colspan'&gt;&lt;/td&gt;&#13;&#10; &lt;/tr&gt;&#13;&#10; &lt;tr height=17 style='height:12.75pt'&gt;&#13;&#10;  &lt;td height=17 class=xl27 style='height:12.75pt'&gt;&lt;/td&gt;&#13;&#10;  &lt;td colspan=5 class=xl15 style='mso-ignore:colspan'&gt;&lt;/td&gt;&#13;&#10; &lt;/tr&gt;&#13;&#10; &lt;tr height=17 style='height:12.75pt'&gt;&#13;&#10;  &lt;td height=17 class=xl27 style='height:12.75pt'&gt;&lt;/td&gt;&#13;&#10;  &lt;td colspan=5 class=xl15 style='mso-ignore:colspan'&gt;&lt;/td&gt;&#13;&#10; &lt;/tr&gt;&#13;&#10; &lt;tr height=17 style='height:12.75pt'&gt;&#13;&#10;  &lt;td height=17 class=xl27 style='height:12.75pt'&gt;&lt;/td&gt;&#13;&#10;  &lt;td colspan=5 class=xl15 style='mso-ignore:colspan'&gt;&lt;/td&gt;&#13;&#10; &lt;/tr&gt;&#13;&#10; &lt;tr height=17 style='height:12.75pt'&gt;&#13;&#10;  &lt;td height=17 class=xl27 style='height:12.75pt'&gt;&lt;/td&gt;&#13;&#10;  &lt;td colspan=5 class=xl15 style='mso-ignore:colspan'&gt;&lt;/td&gt;&#13;&#10; &lt;/tr&gt;&#13;&#10; &lt;tr height=17 style='height:12.75pt'&gt;&#13;&#10;  &lt;td height=17 class=xl27 style='height:12.75pt'&gt;&lt;/td&gt;&#13;&#10;  &lt;td colspan=5 class=xl15 style='mso-ignore:colspan'&gt;&lt;/td&gt;&#13;&#10; &lt;/tr&gt;&#13;&#10; &lt;tr height=17 style='height:12.75pt'&gt;&#13;&#10;  &lt;td height=17 class=xl27 style='height:12.75pt'&gt;&lt;/td&gt;&#13;&#10;  &lt;td colspan=5 class=xl15 style='mso-ignore:colspan'&gt;&lt;/td&gt;&#13;&#10; &lt;/tr&gt;&#13;&#10; &lt;tr height=17 style='height:12.75pt'&gt;&#13;&#10;  &lt;td height=17 class=xl27 style='height:12.75pt'&gt;&lt;/td&gt;&#13;&#10;  &lt;td colspan=5 class=xl15 style='mso-ignore:colspan'&gt;&lt;/td&gt;&#13;&#10; &lt;/tr&gt;&#13;&#10; &lt;tr height=17 style='height:12.75pt'&gt;&#13;&#10;  &lt;td height=17 class=xl27 style='height:12.75pt'&gt;&lt;/td&gt;&#13;&#10;  &lt;td colspan=5 class=xl15 style='mso-ignore:colspan'&gt;&lt;/td&gt;&#13;&#10; &lt;/tr&gt;&#13;&#10; &lt;tr height=17 style='height:12.75pt'&gt;&#13;&#10;  &lt;td height=17 class=xl27 style='height:12.75pt'&gt;&lt;/td&gt;&#13;&#10;  &lt;td colspan=5 class=xl15 style='mso-ignore:colspan'&gt;&lt;/td&gt;&#13;&#10; &lt;/tr&gt;&#13;&#10; &lt;tr height=17 style='height:12.75pt'&gt;&#13;&#10;  &lt;td height=17 class=xl27 style='height:12.75pt'&gt;&lt;/td&gt;&#13;&#10;  &lt;td colspan=5 class=xl15 style='mso-ignore:colspan'&gt;&lt;/td&gt;&#13;&#10; &lt;/tr&gt;&#13;&#10; &lt;tr height=17 style='height:12.75pt'&gt;&#13;&#10;  &lt;td height=17 class=xl27 style='height:12.75pt'&gt;&lt;/td&gt;&#13;&#10;  &lt;td colspan=5 class=xl15 style='mso-ignore:colspan'&gt;&lt;/td&gt;&#13;&#10; &lt;/tr&gt;&#13;&#10; &lt;tr height=17 style='height:12.75pt'&gt;&#13;&#10;  &lt;td height=17 class=xl27 style='height:12.75pt'&gt;&lt;/td&gt;&#13;&#10;  &lt;td colspan=5 class=xl15 style='mso-ignore:colspan'&gt;&lt;/td&gt;&#13;&#10; &lt;/tr&gt;&#13;&#10; &lt;tr height=17 style='height:12.75pt'&gt;&#13;&#10;  &lt;td height=17 class=xl27 style='height:12.75pt'&gt;&lt;/td&gt;&#13;&#10;  &lt;td colspan=5 class=xl15 style='mso-ignore:colspan'&gt;&lt;/td&gt;&#13;&#10; &lt;/tr&gt;&#13;&#10; &lt;tr height=17 style='height:12.75pt'&gt;&#13;&#10;  &lt;td height=17 class=xl27 style='height:12.75pt'&gt;&lt;/td&gt;&#13;&#10;  &lt;td colspan=5 class=xl15 style='mso-ignore:colspan'&gt;&lt;/td&gt;&#13;&#10; &lt;/tr&gt;&#13;&#10; &lt;tr height=17 style='height:12.75pt'&gt;&#13;&#10;  &lt;td height=17 class=xl27 style='height:12.75pt'&gt;&lt;/td&gt;&#13;&#10;  &lt;td colspan=5 class=xl15 style='mso-ignore:colspan'&gt;&lt;/td&gt;&#13;&#10; &lt;/tr&gt;&#13;&#10; &lt;tr height=17 style='height:12.75pt'&gt;&#13;&#10;  &lt;td height=17 class=xl27 style='height:12.75pt'&gt;&lt;/td&gt;&#13;&#10;  &lt;td colspan=5 class=xl15 style='mso-ignore:colspan'&gt;&lt;/td&gt;&#13;&#10; &lt;/tr&gt;&#13;&#10; &lt;tr height=17 style='height:12.75pt'&gt;&#13;&#10;  &lt;td height=17 class=xl27 style='height:12.75pt'&gt;&lt;/td&gt;&#13;&#10;  &lt;td colspan=5 class=xl15 style='mso-ignore:colspan'&gt;&lt;/td&gt;&#13;&#10; &lt;/tr&gt;&#13;&#10; &lt;tr height=17 style='height:12.75pt'&gt;&#13;&#10;  &lt;td height=17 class=xl27 style='height:12.75pt'&gt;&lt;/td&gt;&#13;&#10;  &lt;td colspan=5 class=xl15 style='mso-ignore:colspan'&gt;&lt;/td&gt;&#13;&#10; &lt;/tr&gt;&#13;&#10; &lt;tr height=17 style='height:12.75pt'&gt;&#13;&#10;  &lt;td height=17 class=xl27 style='height:12.75pt'&gt;&lt;/td&gt;&#13;&#10;  &lt;td colspan=5 class=xl15 style='mso-ignore:colspan'&gt;&lt;/td&gt;&#13;&#10; &lt;/tr&gt;&#13;&#10; &lt;tr height=17 style='height:12.75pt'&gt;&#13;&#10;  &lt;td height=17 class=xl27 style='height:12.75pt'&gt;&lt;/td&gt;&#13;&#10;  &lt;td colspan=5 class=xl15 style='mso-ignore:colspan'&gt;&lt;/td&gt;&#13;&#10; &lt;/tr&gt;&#13;&#10; &lt;tr height=17 style='height:12.75pt'&gt;&#13;&#10;  &lt;td height=17 class=xl27 style='height:12.75pt'&gt;&lt;/td&gt;&#13;&#10;  &lt;td colspan=5 class=xl15 style='mso-ignore:colspan'&gt;&lt;/td&gt;&#13;&#10; &lt;/tr&gt;&#13;&#10; &lt;tr height=17 style='height:12.75pt'&gt;&#13;&#10;  &lt;td height=17 class=xl27 style='height:12.75pt'&gt;&lt;/td&gt;&#13;&#10;  &lt;td colspan=5 class=xl15 style='mso-ignore:colspan'&gt;&lt;/td&gt;&#13;&#10; &lt;/tr&gt;&#13;&#10; &lt;tr height=17 style='height:12.75pt'&gt;&#13;&#10;  &lt;td height=17 class=xl27 style='height:12.75pt'&gt;&lt;/td&gt;&#13;&#10;  &lt;td colspan=5 class=xl15 style='mso-ignore:colspan'&gt;&lt;/td&gt;&#13;&#10; &lt;/tr&gt;&#13;&#10; &lt;tr height=17 style='height:12.75pt'&gt;&#13;&#10;  &lt;td height=17 class=xl27 style='height:12.75pt'&gt;&lt;/td&gt;&#13;&#10;  &lt;td colspan=5 class=xl15 style='mso-ignore:colspan'&gt;&lt;/td&gt;&#13;&#10; &lt;/tr&gt;&#13;&#10; &lt;tr height=17 style='height:12.75pt'&gt;&#13;&#10;  &lt;td height=17 class=xl27 style='height:12.75pt'&gt;&lt;/td&gt;&#13;&#10;  &lt;td colspan=5 class=xl15 style='mso-ignore:colspan'&gt;&lt;/td&gt;&#13;&#10; &lt;/tr&gt;&#13;&#10; &lt;tr height=17 style='height:12.75pt'&gt;&#13;&#10;  &lt;td height=17 class=xl27 style='height:12.75pt'&gt;&lt;/td&gt;&#13;&#10;  &lt;td colspan=5 class=xl15 style='mso-ignore:colspan'&gt;&lt;/td&gt;&#13;&#10; &lt;/tr&gt;&#13;&#10; &lt;tr height=17 style='height:12.75pt'&gt;&#13;&#10;  &lt;td height=17 class=xl27 style='height:12.75pt'&gt;&lt;/td&gt;&#13;&#10;  &lt;td colspan=5 class=xl15 style='mso-ignore:colspan'&gt;&lt;/td&gt;&#13;&#10; &lt;/tr&gt;&#13;&#10; &lt;tr height=17 style='height:12.75pt'&gt;&#13;&#10;  &lt;td height=17 class=xl27 style='height:12.75pt'&gt;&lt;/td&gt;&#13;&#10;  &lt;td colspan=5 class=xl15 style='mso-ignore:colspan'&gt;&lt;/td&gt;&#13;&#10; &lt;/tr&gt;&#13;&#10; &lt;tr height=17 style='height:12.75pt'&gt;&#13;&#10;  &lt;td height=17 class=xl27 style='height:12.75pt'&gt;&lt;/td&gt;&#13;&#10;  &lt;td colspan=5 class=xl15 style='mso-ignore:colspan'&gt;&lt;/td&gt;&#13;&#10; &lt;/tr&gt;&#13;&#10; &lt;tr height=17 style='height:12.75pt'&gt;&#13;&#10;  &lt;td height=17 class=xl27 style='height:12.75pt'&gt;&lt;/td&gt;&#13;&#10;  &lt;td colspan=5 class=xl15 style='mso-ignore:colspan'&gt;&lt;/td&gt;&#13;&#10; &lt;/tr&gt;&#13;&#10; &lt;tr height=17 style='height:12.75pt'&gt;&#13;&#10;  &lt;td height=17 class=xl27 style='height:12.75pt'&gt;&lt;/td&gt;&#13;&#10;  &lt;td colspan=5 class=xl15 style='mso-ignore:colspan'&gt;&lt;/td&gt;&#13;&#10; &lt;/tr&gt;&#13;&#10; &lt;tr height=17 style='height:12.75pt'&gt;&#13;&#10;  &lt;td height=17 class=xl27 style='height:12.75pt'&gt;&lt;/td&gt;&#13;&#10;  &lt;td colspan=5 class=xl15 style='mso-ignore:colspan'&gt;&lt;/td&gt;&#13;&#10; &lt;/tr&gt;&#13;&#10; &lt;tr height=17 style='height:12.75pt'&gt;&#13;&#10;  &lt;td height=17 class=xl27 style='height:12.75pt'&gt;&lt;/td&gt;&#13;&#10;  &lt;td colspan=5 class=xl15 style='mso-ignore:colspan'&gt;&lt;/td&gt;&#13;&#10; &lt;/tr&gt;&#13;&#10; &lt;tr height=17 style='height:12.75pt'&gt;&#13;&#10;  &lt;td height=17 class=xl27 style='height:12.75pt'&gt;&lt;/td&gt;&#13;&#10;  &lt;td colspan=5 class=xl15 style='mso-ignore:colspan'&gt;&lt;/td&gt;&#13;&#10; &lt;/tr&gt;&#13;&#10; &lt;tr height=17 style='height:12.75pt'&gt;&#13;&#10;  &lt;td height=17 class=xl27 style='height:12.75pt'&gt;&lt;/td&gt;&#13;&#10;  &lt;td colspan=5 class=xl15 style='mso-ignore:colspan'&gt;&lt;/td&gt;&#13;&#10; &lt;/tr&gt;&#13;&#10; &lt;tr height=17 style='height:12.75pt'&gt;&#13;&#10;  &lt;td height=17 class=xl27 style='height:12.75pt'&gt;&lt;/td&gt;&#13;&#10;  &lt;td colspan=5 class=xl15 style='mso-ignore:colspan'&gt;&lt;/td&gt;&#13;&#10; &lt;/tr&gt;&#13;&#10; &lt;tr height=17 style='height:12.75pt'&gt;&#13;&#10;  &lt;td height=17 class=xl27 style='height:12.75pt'&gt;&lt;/td&gt;&#13;&#10;  &lt;td colspan=5 class=xl15 style='mso-ignore:colspan'&gt;&lt;/td&gt;&#13;&#10; &lt;/tr&gt;&#13;&#10; &lt;tr height=17 style='height:12.75pt'&gt;&#13;&#10;  &lt;td height=17 class=xl27 style='height:12.75pt'&gt;&lt;/td&gt;&#13;&#10;  &lt;td colspan=5 class=xl15 style='mso-ignore:colspan'&gt;&lt;/td&gt;&#13;&#10; &lt;/tr&gt;&#13;&#10; &lt;tr height=17 style='height:12.75pt'&gt;&#13;&#10;  &lt;td height=17 class=xl27 style='height:12.75pt'&gt;&lt;/td&gt;&#13;&#10;  &lt;td colspan=5 class=xl15 style='mso-ignore:colspan'&gt;&lt;/td&gt;&#13;&#10; &lt;/tr&gt;&#13;&#10; &lt;tr height=17 style='height:12.75pt'&gt;&#13;&#10;  &lt;td height=17 class=xl27 style='height:12.75pt'&gt;&lt;/td&gt;&#13;&#10;  &lt;td colspan=5 class=xl15 style='mso-ignore:colspan'&gt;&lt;/td&gt;&#13;&#10; &lt;/tr&gt;&#13;&#10; &lt;tr height=17 style='height:12.75pt'&gt;&#13;&#10;  &lt;td height=17 class=xl27 style='height:12.75pt'&gt;&lt;/td&gt;&#13;&#10;  &lt;td colspan=5 class=xl15 style='mso-ignore:colspan'&gt;&lt;/td&gt;&#13;&#10; &lt;/tr&gt;&#13;&#10; &lt;tr height=17 style='height:12.75pt'&gt;&#13;&#10;  &lt;td height=17 class=xl27 style='height:12.75pt'&gt;&lt;/td&gt;&#13;&#10;  &lt;td colspan=5 class=xl15 style='mso-ignore:colspan'&gt;&lt;/td&gt;&#13;&#10; &lt;/tr&gt;&#13;&#10; &lt;tr height=17 style='height:12.75pt'&gt;&#13;&#10;  &lt;td height=17 class=xl27 style='height:12.75pt'&gt;&lt;/td&gt;&#13;&#10;  &lt;td colspan=5 class=xl15 style='mso-ignore:colspan'&gt;&lt;/td&gt;&#13;&#10; &lt;/tr&gt;&#13;&#10; &lt;tr height=17 style='height:12.75pt'&gt;&#13;&#10;  &lt;td height=17 class=xl27 style='height:12.75pt'&gt;&lt;/td&gt;&#13;&#10;  &lt;td colspan=5 class=xl15 style='mso-ignore:colspan'&gt;&lt;/td&gt;&#13;&#10; &lt;/tr&gt;&#13;&#10; &lt;tr height=17 style='height:12.75pt'&gt;&#13;&#10;  &lt;td height=17 class=xl27 style='height:12.75pt'&gt;&lt;/td&gt;&#13;&#10;  &lt;td colspan=5 class=xl15 style='mso-ignore:colspan'&gt;&lt;/td&gt;&#13;&#10; &lt;/tr&gt;&#13;&#10; &lt;tr height=17 style='height:12.75pt'&gt;&#13;&#10;  &lt;td height=17 class=xl27 style='height:12.75pt'&gt;&lt;/td&gt;&#13;&#10;  &lt;td colspan=5 class=xl15 style='mso-ignore:colspan'&gt;&lt;/td&gt;&#13;&#10; &lt;/tr&gt;&#13;&#10; &lt;tr height=17 style='height:12.75pt'&gt;&#13;&#10;  &lt;td height=17 class=xl27 style='height:12.75pt'&gt;&lt;/td&gt;&#13;&#10;  &lt;td colspan=5 class=xl15 style='mso-ignore:colspan'&gt;&lt;/td&gt;&#13;&#10; &lt;/tr&gt;&#13;&#10; &lt;tr height=17 style='height:12.75pt'&gt;&#13;&#10;  &lt;td height=17 class=xl27 style='height:12.75pt'&gt;&lt;/td&gt;&#13;&#10;  &lt;td colspan=5 class=xl15 style='mso-ignore:colspan'&gt;&lt;/td&gt;&#13;&#10; &lt;/tr&gt;&#13;&#10; &lt;tr height=17 style='height:12.75pt'&gt;&#13;&#10;  &lt;td height=17 class=xl27 style='height:12.75pt'&gt;&lt;/td&gt;&#13;&#10;  &lt;td colspan=5 class=xl15 style='mso-ignore:colspan'&gt;&lt;/td&gt;&#13;&#10; &lt;/tr&gt;&#13;&#10; &lt;tr height=17 style='height:12.75pt'&gt;&#13;&#10;  &lt;td height=17 class=xl27 style='height:12.75pt'&gt;&lt;/td&gt;&#13;&#10;  &lt;td colspan=5 class=xl15 style='mso-ignore:colspan'&gt;&lt;/td&gt;&#13;&#10; &lt;/tr&gt;&#13;&#10; &lt;tr height=17 style='height:12.75pt'&gt;&#13;&#10;  &lt;td height=17 class=xl27 style='height:12.75pt'&gt;&lt;/td&gt;&#13;&#10;  &lt;td colspan=5 class=xl15 style='mso-ignore:colspan'&gt;&lt;/td&gt;&#13;&#10; &lt;/tr&gt;&#13;&#10; &lt;tr height=17 style='height:12.75pt'&gt;&#13;&#10;  &lt;td height=17 class=xl27 style='height:12.75pt'&gt;&lt;/td&gt;&#13;&#10;  &lt;td colspan=5 class=xl15 style='mso-ignore:colspan'&gt;&lt;/td&gt;&#13;&#10; &lt;/tr&gt;&#13;&#10; &lt;tr height=17 style='height:12.75pt'&gt;&#13;&#10;  &lt;td height=17 class=xl27 style='height:12.75pt'&gt;&lt;/td&gt;&#13;&#10;  &lt;td colspan=5 class=xl15 style='mso-ignore:colspan'&gt;&lt;/td&gt;&#13;&#10; &lt;/tr&gt;&#13;&#10; &lt;tr height=17 style='height:12.75pt'&gt;&#13;&#10;  &lt;td height=17 class=xl27 style='height:12.75pt'&gt;&lt;/td&gt;&#13;&#10;  &lt;td colspan=5 class=xl15 style='mso-ignore:colspan'&gt;&lt;/td&gt;&#13;&#10; &lt;/tr&gt;&#13;&#10; &lt;tr height=17 style='height:12.75pt'&gt;&#13;&#10;  &lt;td height=17 class=xl27 style='height:12.75pt'&gt;&lt;/td&gt;&#13;&#10;  &lt;td colspan=5 class=xl15 style='mso-ignore:colspan'&gt;&lt;/td&gt;&#13;&#10; &lt;/tr&gt;&#13;&#10; &lt;tr height=17 style='height:12.75pt'&gt;&#13;&#10;  &lt;td height=17 class=xl27 style='height:12.75pt'&gt;&lt;/td&gt;&#13;&#10;  &lt;td colspan=5 class=xl15 style='mso-ignore:colspan'&gt;&lt;/td&gt;&#13;&#10; &lt;/tr&gt;&#13;&#10; &lt;tr height=17 style='height:12.75pt'&gt;&#13;&#10;  &lt;td height=17 class=xl27 style='height:12.75pt'&gt;&lt;/td&gt;&#13;&#10;  &lt;td colspan=5 class=xl15 style='mso-ignore:colspan'&gt;&lt;/td&gt;&#13;&#10; &lt;/tr&gt;&#13;&#10; &lt;tr height=17 style='height:12.75pt'&gt;&#13;&#10;  &lt;td height=17 class=xl27 style='height:12.75pt'&gt;&lt;/td&gt;&#13;&#10;  &lt;td colspan=5 class=xl15 style='mso-ignore:colspan'&gt;&lt;/td&gt;&#13;&#10; &lt;/tr&gt;&#13;&#10; &lt;tr height=17 style='height:12.75pt'&gt;&#13;&#10;  &lt;td height=17 class=xl27 style='height:12.75pt'&gt;&lt;/td&gt;&#13;&#10;  &lt;td colspan=5 class=xl15 style='mso-ignore:colspan'&gt;&lt;/td&gt;&#13;&#10; &lt;/tr&gt;&#13;&#10; &lt;tr height=17 style='height:12.75pt'&gt;&#13;&#10;  &lt;td height=17 class=xl27 style='height:12.75pt'&gt;&lt;/td&gt;&#13;&#10;  &lt;td colspan=5 class=xl15 style='mso-ignore:colspan'&gt;&lt;/td&gt;&#13;&#10; &lt;/tr&gt;&#13;&#10; &lt;tr height=17 style='height:12.75pt'&gt;&#13;&#10;  &lt;td height=17 class=xl27 style='height:12.75pt'&gt;&lt;/td&gt;&#13;&#10;  &lt;td colspan=5 class=xl15 style='mso-ignore:colspan'&gt;&lt;/td&gt;&#13;&#10; &lt;/tr&gt;&#13;&#10; &lt;tr height=17 style='height:12.75pt'&gt;&#13;&#10;  &lt;td height=17 class=xl27 style='height:12.75pt'&gt;&lt;/td&gt;&#13;&#10;  &lt;td colspan=5 class=xl15 style='mso-ignore:colspan'&gt;&lt;/td&gt;&#13;&#10; &lt;/tr&gt;&#13;&#10; &lt;tr height=17 style='height:12.75pt'&gt;&#13;&#10;  &lt;td height=17 class=xl27 style='height:12.75pt'&gt;&lt;/td&gt;&#13;&#10;  &lt;td colspan=5 class=xl15 style='mso-ignore:colspan'&gt;&lt;/td&gt;&#13;&#10; &lt;/tr&gt;&#13;&#10; &lt;tr height=17 style='height:12.75pt'&gt;&#13;&#10;  &lt;td height=17 class=xl27 style='height:12.75pt'&gt;&lt;/td&gt;&#13;&#10;  &lt;td colspan=5 class=xl15 style='mso-ignore:colspan'&gt;&lt;/td&gt;&#13;&#10; &lt;/tr&gt;&#13;&#10; &lt;tr height=17 style='height:12.75pt'&gt;&#13;&#10;  &lt;td height=17 class=xl27 style='height:12.75pt'&gt;&lt;/td&gt;&#13;&#10;  &lt;td colspan=5 class=xl15 style='mso-ignore:colspan'&gt;&lt;/td&gt;&#13;&#10; &lt;/tr&gt;&#13;&#10; &lt;tr height=17 style='height:12.75pt'&gt;&#13;&#10;  &lt;td height=17 class=xl27 style='height:12.75pt'&gt;&lt;/td&gt;&#13;&#10;  &lt;td colspan=5 class=xl15 style='mso-ignore:colspan'&gt;&lt;/td&gt;&#13;&#10; &lt;/tr&gt;&#13;&#10; &lt;tr height=17 style='height:12.75pt'&gt;&#13;&#10;  &lt;td height=17 class=xl27 style='height:12.75pt'&gt;&lt;/td&gt;&#13;&#10;  &lt;td colspan=5 class=xl15 style='mso-ignore:colspan'&gt;&lt;/td&gt;&#13;&#10; &lt;/tr&gt;&#13;&#10; &lt;tr height=17 style='height:12.75pt'&gt;&#13;&#10;  &lt;td height=17 class=xl27 style='height:12.75pt'&gt;&lt;/td&gt;&#13;&#10;  &lt;td colspan=5 class=xl15 style='mso-ignore:colspan'&gt;&lt;/td&gt;&#13;&#10; &lt;/tr&gt;&#13;&#10; &lt;tr height=17 style='height:12.75pt'&gt;&#13;&#10;  &lt;td height=17 class=xl27 style='height:12.75pt'&gt;&lt;/td&gt;&#13;&#10;  &lt;td colspan=5 class=xl15 style='mso-ignore:colspan'&gt;&lt;/td&gt;&#13;&#10; &lt;/tr&gt;&#13;&#10; &lt;tr height=17 style='height:12.75pt'&gt;&#13;&#10;  &lt;td height=17 class=xl27 style='height:12.75pt'&gt;&lt;/td&gt;&#13;&#10;  &lt;td colspan=5 class=xl15 style='mso-ignore:colspan'&gt;&lt;/td&gt;&#13;&#10; &lt;/tr&gt;&#13;&#10; &lt;tr height=17 style='height:12.75pt'&gt;&#13;&#10;  &lt;td height=17 class=xl27 style='height:12.75pt'&gt;&lt;/td&gt;&#13;&#10;  &lt;td colspan=5 class=xl15 style='mso-ignore:colspan'&gt;&lt;/td&gt;&#13;&#10; &lt;/tr&gt;&#13;&#10; &lt;tr height=17 style='height:12.75pt'&gt;&#13;&#10;  &lt;td height=17 class=xl27 style='height:12.75pt'&gt;&lt;/td&gt;&#13;&#10;  &lt;td colspan=5 class=xl15 style='mso-ignore:colspan'&gt;&lt;/td&gt;&#13;&#10; &lt;/tr&gt;&#13;&#10; &lt;tr height=17 style='height:12.75pt'&gt;&#13;&#10;  &lt;td height=17 class=xl27 style='height:12.75pt'&gt;&lt;/td&gt;&#13;&#10;  &lt;td colspan=5 class=xl15 style='mso-ignore:colspan'&gt;&lt;/td&gt;&#13;&#10; &lt;/tr&gt;&#13;&#10; &lt;tr height=17 style='height:12.75pt'&gt;&#13;&#10;  &lt;td height=17 class=xl27 style='height:12.75pt'&gt;&lt;/td&gt;&#13;&#10;  &lt;td colspan=5 class=xl15 style='mso-ignore:colspan'&gt;&lt;/td&gt;&#13;&#10; &lt;/tr&gt;&#13;&#10; &lt;tr height=17 style='height:12.75pt'&gt;&#13;&#10;  &lt;td height=17 class=xl27 style='height:12.75pt'&gt;&lt;/td&gt;&#13;&#10;  &lt;td colspan=5 class=xl15 style='mso-ignore:colspan'&gt;&lt;/td&gt;&#13;&#10; &lt;/tr&gt;&#13;&#10; &lt;tr height=17 style='height:12.75pt'&gt;&#13;&#10;  &lt;td height=17 class=xl27 style='height:12.75pt'&gt;&lt;/td&gt;&#13;&#10;  &lt;td colspan=5 class=xl15 style='mso-ignore:colspan'&gt;&lt;/td&gt;&#13;&#10; &lt;/tr&gt;&#13;&#10; &lt;tr height=17 style='height:12.75pt'&gt;&#13;&#10;  &lt;td height=17 class=xl27 style='height:12.75pt'&gt;&lt;/td&gt;&#13;&#10;  &lt;td colspan=5 class=xl15 style='mso-ignore:colspan'&gt;&lt;/td&gt;&#13;&#10; &lt;/tr&gt;&#13;&#10; &lt;tr height=17 style='height:12.75pt'&gt;&#13;&#10;  &lt;td height=17 class=xl27 style='height:12.75pt'&gt;&lt;/td&gt;&#13;&#10;  &lt;td colspan=5 class=xl15 style='mso-ignore:colspan'&gt;&lt;/td&gt;&#13;&#10; &lt;/tr&gt;&#13;&#10; &lt;tr height=17 style='height:12.75pt'&gt;&#13;&#10;  &lt;td height=17 class=xl27 style='height:12.75pt'&gt;&lt;/td&gt;&#13;&#10;  &lt;td colspan=5 class=xl15 style='mso-ignore:colspan'&gt;&lt;/td&gt;&#13;&#10; &lt;/tr&gt;&#13;&#10; &lt;tr height=17 style='height:12.75pt'&gt;&#13;&#10;  &lt;td height=17 class=xl27 style='height:12.75pt'&gt;&lt;/td&gt;&#13;&#10;  &lt;td colspan=5 class=xl15 style='mso-ignore:colspan'&gt;&lt;/td&gt;&#13;&#10; &lt;/tr&gt;&#13;&#10; &lt;tr height=17 style='height:12.75pt'&gt;&#13;&#10;  &lt;td height=17 class=xl27 style='height:12.75pt'&gt;&lt;/td&gt;&#13;&#10;  &lt;td colspan=5 class=xl15 style='mso-ignore:colspan'&gt;&lt;/td&gt;&#13;&#10; &lt;/tr&gt;&#13;&#10; &lt;tr height=17 style='height:12.75pt'&gt;&#13;&#10;  &lt;td height=17 class=xl27 style='height:12.75pt'&gt;&lt;/td&gt;&#13;&#10;  &lt;td colspan=5 class=xl15 style='mso-ignore:colspan'&gt;&lt;/td&gt;&#13;&#10; &lt;/tr&gt;&#13;&#10; &lt;tr height=17 style='height:12.75pt'&gt;&#13;&#10;  &lt;td height=17 class=xl27 style='height:12.75pt'&gt;&lt;/td&gt;&#13;&#10;  &lt;td colspan=5 class=xl15 style='mso-ignore:colspan'&gt;&lt;/td&gt;&#13;&#10; &lt;/tr&gt;&#13;&#10; &lt;tr height=17 style='height:12.75pt'&gt;&#13;&#10;  &lt;td height=17 class=xl27 style='height:12.75pt'&gt;&lt;/td&gt;&#13;&#10;  &lt;td colspan=5 class=xl15 style='mso-ignore:colspan'&gt;&lt;/td&gt;&#13;&#10; &lt;/tr&gt;&#13;&#10; &lt;tr height=17 style='height:12.75pt'&gt;&#13;&#10;  &lt;td height=17 class=xl27 style='height:12.75pt'&gt;&lt;/td&gt;&#13;&#10;  &lt;td colspan=5 class=xl15 style='mso-ignore:colspan'&gt;&lt;/td&gt;&#13;&#10; &lt;/tr&gt;&#13;&#10; &lt;tr height=17 style='height:12.75pt'&gt;&#13;&#10;  &lt;td height=17 class=xl27 style='height:12.75pt'&gt;&lt;/td&gt;&#13;&#10;  &lt;td colspan=5 class=xl15 style='mso-ignore:colspan'&gt;&lt;/td&gt;&#13;&#10; &lt;/tr&gt;&#13;&#10; &lt;tr height=17 style='height:12.75pt'&gt;&#13;&#10;  &lt;td height=17 class=xl27 style='height:12.75pt'&gt;&lt;/td&gt;&#13;&#10;  &lt;td colspan=5 class=xl15 style='mso-ignore:colspan'&gt;&lt;/td&gt;&#13;&#10; &lt;/tr&gt;&#13;&#10; &lt;tr height=17 style='height:12.75pt'&gt;&#13;&#10;  &lt;td height=17 class=xl27 style='height:12.75pt'&gt;&lt;/td&gt;&#13;&#10;  &lt;td colspan=5 class=xl15 style='mso-ignore:colspan'&gt;&lt;/td&gt;&#13;&#10; &lt;/tr&gt;&#13;&#10; &lt;tr height=17 style='height:12.75pt'&gt;&#13;&#10;  &lt;td height=17 class=xl27 style='height:12.75pt'&gt;&lt;/td&gt;&#13;&#10;  &lt;td colspan=5 class=xl15 style='mso-ignore:colspan'&gt;&lt;/td&gt;&#13;&#10; &lt;/tr&gt;&#13;&#10; &lt;tr height=17 style='height:12.75pt'&gt;&#13;&#10;  &lt;td height=17 class=xl27 style='height:12.75pt'&gt;&lt;/td&gt;&#13;&#10;  &lt;td colspan=5 class=xl15 style='mso-ignore:colspan'&gt;&lt;/td&gt;&#13;&#10; &lt;/tr&gt;&#13;&#10; &lt;tr height=17 style='height:12.75pt'&gt;&#13;&#10;  &lt;td height=17 class=xl27 style='height:12.75pt'&gt;&lt;/td&gt;&#13;&#10;  &lt;td colspan=5 class=xl15 style='mso-ignore:colspan'&gt;&lt;/td&gt;&#13;&#10; &lt;/tr&gt;&#13;&#10; &lt;tr height=17 style='height:12.75pt'&gt;&#13;&#10;  &lt;td height=17 class=xl27 style='height:12.75pt'&gt;&lt;/td&gt;&#13;&#10;  &lt;td colspan=5 class=xl15 style='mso-ignore:colspan'&gt;&lt;/td&gt;&#13;&#10; &lt;/tr&gt;&#13;&#10; &lt;tr height=17 style='height:12.75pt'&gt;&#13;&#10;  &lt;td height=17 class=xl27 style='height:12.75pt'&gt;&lt;/td&gt;&#13;&#10;  &lt;td colspan=5 class=xl15 style='mso-ignore:colspan'&gt;&lt;/td&gt;&#13;&#10; &lt;/tr&gt;&#13;&#10; &lt;tr height=17 style='height:12.75pt'&gt;&#13;&#10;  &lt;td height=17 class=xl27 style='height:12.75pt'&gt;&lt;/td&gt;&#13;&#10;  &lt;td colspan=5 class=xl15 style='mso-ignore:colspan'&gt;&lt;/td&gt;&#13;&#10; &lt;/tr&gt;&#13;&#10; &lt;tr height=17 style='height:12.75pt'&gt;&#13;&#10;  &lt;td height=17 class=xl27 style='height:12.75pt'&gt;&lt;/td&gt;&#13;&#10;  &lt;td colspan=5 class=xl15 style='mso-ignore:colspan'&gt;&lt;/td&gt;&#13;&#10; &lt;/tr&gt;&#13;&#10; &lt;tr height=17 style='height:12.75pt'&gt;&#13;&#10;  &lt;td height=17 class=xl27 style='height:12.75pt'&gt;&lt;/td&gt;&#13;&#10;  &lt;td colspan=5 class=xl15 style='mso-ignore:colspan'&gt;&lt;/td&gt;&#13;&#10; &lt;/tr&gt;&#13;&#10; &lt;tr height=17 style='height:12.75pt'&gt;&#13;&#10;  &lt;td height=17 class=xl27 style='height:12.75pt'&gt;&lt;/td&gt;&#13;&#10;  &lt;td colspan=5 class=xl15 style='mso-ignore:colspan'&gt;&lt;/td&gt;&#13;&#10; &lt;/tr&gt;&#13;&#10; &lt;tr height=17 style='height:12.75pt'&gt;&#13;&#10;  &lt;td height=17 class=xl27 style='height:12.75pt'&gt;&lt;/td&gt;&#13;&#10;  &lt;td colspan=5 class=xl15 style='mso-ignore:colspan'&gt;&lt;/td&gt;&#13;&#10; &lt;/tr&gt;&#13;&#10; &lt;tr height=17 style='height:12.75pt'&gt;&#13;&#10;  &lt;td height=17 class=xl27 style='height:12.75pt'&gt;&lt;/td&gt;&#13;&#10;  &lt;td colspan=5 class=xl15 style='mso-ignore:colspan'&gt;&lt;/td&gt;&#13;&#10; &lt;/tr&gt;&#13;&#10; &lt;tr height=17 style='height:12.75pt'&gt;&#13;&#10;  &lt;td height=17 class=xl27 style='height:12.75pt'&gt;&lt;/td&gt;&#13;&#10;  &lt;td colspan=5 class=xl15 style='mso-ignore:colspan'&gt;&lt;/td&gt;&#13;&#10; &lt;/tr&gt;&#13;&#10; &lt;tr height=17 style='height:12.75pt'&gt;&#13;&#10;  &lt;td height=17 class=xl27 style='height:12.75pt'&gt;&lt;/td&gt;&#13;&#10;  &lt;td colspan=5 class=xl15 style='mso-ignore:colspan'&gt;&lt;/td&gt;&#13;&#10; &lt;/tr&gt;&#13;&#10; &lt;tr height=17 style='height:12.75pt'&gt;&#13;&#10;  &lt;td height=17 class=xl27 style='height:12.75pt'&gt;&lt;/td&gt;&#13;&#10;  &lt;td colspan=5 class=xl15 style='mso-ignore:colspan'&gt;&lt;/td&gt;&#13;&#10; &lt;/tr&gt;&#13;&#10; &lt;tr height=17 style='height:12.75pt'&gt;&#13;&#10;  &lt;td height=17 class=xl27 style='height:12.75pt'&gt;&lt;/td&gt;&#13;&#10;  &lt;td colspan=5 class=xl15 style='mso-ignore:colspan'&gt;&lt;/td&gt;&#13;&#10; &lt;/tr&gt;&#13;&#10; &lt;tr height=17 style='height:12.75pt'&gt;&#13;&#10;  &lt;td height=17 class=xl27 style='height:12.75pt'&gt;&lt;/td&gt;&#13;&#10;  &lt;td colspan=5 class=xl15 style='mso-ignore:colspan'&gt;&lt;/td&gt;&#13;&#10; &lt;/tr&gt;&#13;&#10; &lt;tr height=17 style='height:12.75pt'&gt;&#13;&#10;  &lt;td height=17 class=xl27 style='height:12.75pt'&gt;&lt;/td&gt;&#13;&#10;  &lt;td colspan=5 class=xl15 style='mso-ignore:colspan'&gt;&lt;/td&gt;&#13;&#10; &lt;/tr&gt;&#13;&#10; &lt;tr height=17 style='height:12.75pt'&gt;&#13;&#10;  &lt;td height=17 class=xl27 style='height:12.75pt'&gt;&lt;/td&gt;&#13;&#10;  &lt;td colspan=5 class=xl15 style='mso-ignore:colspan'&gt;&lt;/td&gt;&#13;&#10; &lt;/tr&gt;&#13;&#10; &lt;tr height=17 style='height:12.75pt'&gt;&#13;&#10;  &lt;td height=17 class=xl27 style='height:12.75pt'&gt;&lt;/td&gt;&#13;&#10;  &lt;td colspan=5 class=xl15 style='mso-ignore:colspan'&gt;&lt;/td&gt;&#13;&#10; &lt;/tr&gt;&#13;&#10; &lt;tr height=17 style='height:12.75pt'&gt;&#13;&#10;  &lt;td height=17 class=xl27 style='height:12.75pt'&gt;&lt;/td&gt;&#13;&#10;  &lt;td colspan=5 class=xl15 style='mso-ignore:colspan'&gt;&lt;/td&gt;&#13;&#10; &lt;/tr&gt;&#13;&#10; &lt;tr height=17 style='height:12.75pt'&gt;&#13;&#10;  &lt;td height=17 class=xl27 style='height:12.75pt'&gt;&lt;/td&gt;&#13;&#10;  &lt;td colspan=5 class=xl15 style='mso-ignore:colspan'&gt;&lt;/td&gt;&#13;&#10; &lt;/tr&gt;&#13;&#10; &lt;tr height=17 style='height:12.75pt'&gt;&#13;&#10;  &lt;td height=17 class=xl27 style='height:12.75pt'&gt;&lt;/td&gt;&#13;&#10;  &lt;td colspan=5 class=xl15 style='mso-ignore:colspan'&gt;&lt;/td&gt;&#13;&#10; &lt;/tr&gt;&#13;&#10; &lt;tr height=17 style='height:12.75pt'&gt;&#13;&#10;  &lt;td height=17 class=xl27 style='height:12.75pt'&gt;&lt;/td&gt;&#13;&#10;  &lt;td colspan=5 class=xl15 style='mso-ignore:colspan'&gt;&lt;/td&gt;&#13;&#10; &lt;/tr&gt;&#13;&#10; &lt;tr height=17 style='height:12.75pt'&gt;&#13;&#10;  &lt;td height=17 class=xl27 style='height:12.75pt'&gt;&lt;/td&gt;&#13;&#10;  &lt;td colspan=5 class=xl15 style='mso-ignore:colspan'&gt;&lt;/td&gt;&#13;&#10; &lt;/tr&gt;&#13;&#10; &lt;tr height=17 style='height:12.75pt'&gt;&#13;&#10;  &lt;td height=17 class=xl27 style='height:12.75pt'&gt;&lt;/td&gt;&#13;&#10;  &lt;td colspan=5 class=xl15 style='mso-ignore:colspan'&gt;&lt;/td&gt;&#13;&#10; &lt;/tr&gt;&#13;&#10; &lt;tr height=17 style='height:12.75pt'&gt;&#13;&#10;  &lt;td height=17 class=xl27 style='height:12.75pt'&gt;&lt;/td&gt;&#13;&#10;  &lt;td colspan=5 class=xl15 style='mso-ignore:colspan'&gt;&lt;/td&gt;&#13;&#10; &lt;/tr&gt;&#13;&#10; &lt;tr height=17 style='height:12.75pt'&gt;&#13;&#10;  &lt;td height=17 class=xl27 style='height:12.75pt'&gt;&lt;/td&gt;&#13;&#10;  &lt;td colspan=5 class=xl15 style='mso-ignore:colspan'&gt;&lt;/td&gt;&#13;&#10; &lt;/tr&gt;&#13;&#10; &lt;tr height=17 style='height:12.75pt'&gt;&#13;&#10;  &lt;td height=17 class=xl27 style='height:12.75pt'&gt;&lt;/td&gt;&#13;&#10;  &lt;td colspan=5 class=xl15 style='mso-ignore:colspan'&gt;&lt;/td&gt;&#13;&#10; &lt;/tr&gt;&#13;&#10; &lt;tr height=17 style='height:12.75pt'&gt;&#13;&#10;  &lt;td height=17 class=xl27 style='height:12.75pt'&gt;&lt;/td&gt;&#13;&#10;  &lt;td colspan=5 class=xl15 style='mso-ignore:colspan'&gt;&lt;/td&gt;&#13;&#10; &lt;/tr&gt;&#13;&#10; &lt;tr height=17 style='height:12.75pt'&gt;&#13;&#10;  &lt;td height=17 class=xl27 style='height:12.75pt'&gt;&lt;/td&gt;&#13;&#10;  &lt;td colspan=5 class=xl15 style='mso-ignore:colspan'&gt;&lt;/td&gt;&#13;&#10; &lt;/tr&gt;&#13;&#10; &lt;tr height=17 style='height:12.75pt'&gt;&#13;&#10;  &lt;td height=17 class=xl27 style='height:12.75pt'&gt;&lt;/td&gt;&#13;&#10;  &lt;td colspan=5 class=xl15 style='mso-ignore:colspan'&gt;&lt;/td&gt;&#13;&#10; &lt;/tr&gt;&#13;&#10; &lt;tr height=17 style='height:12.75pt'&gt;&#13;&#10;  &lt;td height=17 class=xl27 style='height:12.75pt'&gt;&lt;/td&gt;&#13;&#10;  &lt;td colspan=5 class=xl15 style='mso-ignore:colspan'&gt;&lt;/td&gt;&#13;&#10; &lt;/tr&gt;&#13;&#10; &lt;tr height=17 style='height:12.75pt'&gt;&#13;&#10;  &lt;td height=17 class=xl27 style='height:12.75pt'&gt;&lt;/td&gt;&#13;&#10;  &lt;td colspan=5 class=xl15 style='mso-ignore:colspan'&gt;&lt;/td&gt;&#13;&#10; &lt;/tr&gt;&#13;&#10; &lt;tr height=17 style='height:12.75pt'&gt;&#13;&#10;  &lt;td height=17 class=xl27 style='height:12.75pt'&gt;&lt;/td&gt;&#13;&#10;  &lt;td colspan=5 class=xl15 style='mso-ignore:colspan'&gt;&lt;/td&gt;&#13;&#10; &lt;/tr&gt;&#13;&#10; &lt;tr height=17 style='height:12.75pt'&gt;&#13;&#10;  &lt;td height=17 class=xl27 style='height:12.75pt'&gt;&lt;/td&gt;&#13;&#10;  &lt;td colspan=5 class=xl15 style='mso-ignore:colspan'&gt;&lt;/td&gt;&#13;&#10; &lt;/tr&gt;&#13;&#10;&lt;/table&gt;&#13;&#10;&#13;&#10;&lt;/body&gt;&#13;&#10;&#13;&#10;&lt;/html&gt;&#13;&#10;\"/></object>");
	
}
					
function doSearch() {
	
	criteria = "";
	criteriaDesc = "";
	attributeCount = 0;
	
	//loop through all attributes and check values:
	for(i=0; i < formNameArray.length; i++) {
		//for each form: go through all of the attributes to see if a value has been assigned:
		if(formNameArray[i]) {
			for(iA=0; iA < formNameArray[i].length; iA++) {
				attributeName = formNameArray[i][iA];
				
				if(attributeName != "END") {
					attributeValue = document.forms["form_" + i][attributeName].value;
					attributeSelect = document.forms["form_" + i][attributeName + "_select"].value;
					
					if(attributeSelect == "between") {
						attributeValue2 = document.forms["form_" + i][attributeName + "_2"].value;
						attributeSelect = attributeName + "_select=" + attributeSelect + "&" + attributeName + "_2=" + attributeValue2;
					}
					else {
						attributeSelect = attributeName + "_select=" + attributeSelect;
					}
					
					if(attributeValue) {
						//add the value to the criteria:
						criteria = criteria + attributeName + "=" + attributeValue + "&" + attributeSelect + "&";
					}
					attributeCount++;
				}
			}
		}
	}
	
	if(!criteria) {
		alert("You have not defined any search criteria   ");
	}
	else {
		fundName = document.forms.fund_name.fund_name.value;			
		if(fundName) {
			criteria = criteria + "fund_name=" + fundName;
		}
		//send to the fund search results page:
		window.location = "fund_search_results.php?" + criteria + "&sort_form=" + sortByForm + "&sort_att=" + sortByAtt;
		openWindow('fund_search_wait.php');
	}	
}

function checkBetween(formId, attId) {
	
	if(document.forms["form_" + formId]["att_" + attId + "_select"].selectedIndex == 3) {
		between = true;
	}
	else {
		between = false;
	}
	
	if(between) {
		document.forms["form_" + formId]["att_" + attId + "_2"].style.display = "block";
	}
	else {
		document.forms["form_" + formId]["att_" + attId + "_2"].style.display = "none";
	}
	
}

var sortByAtt = "";
var sortByForm = "";
var sortByRadio = "";
var sortByRadioId = "";

function setSortBy(formId, attId, radio) {
	//set the radio button for the sort by:
	if(!sortByRadio && sortByRadioId) {
		sortByRadio = document.getElementById("radio_" + sortByRadioId);
	}
	if(sortByRadio) sortByRadio.checked = false;
	sortByRadio = radio;
	//set the sortByOrder
	sortByAtt = attId;
	sortByForm = formId;
}

function fundGetSimilar() {
	fundName = document.forms.fund_info.fund_name.value;
	
	formValid = validateFundInfo(false);
	
	if(formValid) {
		window.open("fundmanager_newfund_similar.php?fund_name=" + fundName, "similar", "width=650; height=400; scrollbars=1;");
	}
}

function similarCreateFund() {
	window.opener.document.forms.fund_info.submit();
	window.close();
}

function ihtPopup() {
	window.open("iht.php", "iht", "width=650; height=400; scrollbars=1;");
}

attGroupHighliteCurrent = "";

function attGroupHighlite(group) {
	if(attGroupHighliteCurrent) {
		attGroupHighliteCurrent.style.fontWeight = "normal";
		attGroupHighliteCurrent.style.color = "#0000ff";
	}
	group.style.fontWeight = "bold";
	group.style.color = "#dd0000";
	attGroupHighliteCurrent = group;
}

function setClassifications(fundTypeSelect) {
	fundType = fundTypeSelect.options[fundTypeSelect.selectedIndex].value;
	
	fundClassArray = eval("fundType" + fundType);
	fundClassSelect = document.forms.fund_info.fund_class;
	
	//remove the old entries
	while(fundClassSelect.options.length) {
		fundClassSelect.options[fundClassSelect.options.length-1] = null;
	}
	
	//add the please select entry
	theOption = new Option("Please select", "");
	fundClassSelect.options[fundClassSelect.options.length] = theOption
	
	//add the new entries
	for(i=0; i<fundClassArray.length; i++) {
		theOption = new Option(fundClassArray[i][1], fundClassArray[i][0]);
		fundClassSelect.options[fundClassSelect.options.length] = theOption
		
		//is this the selected entry
		if(fundClassArray[i][0] == selectedEntry) {
			fundClassSelect.options[i+1].selected = true;
		}
	}
}