<!doctype html public "-//w3c//dtd html 4.0 transitional//en">
<html>
<head>
   <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
   <meta name="ProgId" content="Word.Document">
   <meta name="Generator" content="Microsoft Word 9">
   <meta name="Originator" content="Microsoft Word 9">
   <meta name="Author" content="Pankaj Jaiswal">
   <meta name="GENERATOR" content="Mozilla/4.77 [en] (Windows NT 5.0; U) [Netscape]">
   <title>Gramene mutant database submission form</title>
<link rel=File-List href="./mutantform0.1_files/filelist.xml">
<link rel=Edit-Time-Data href="./mutantform0.1_files/editdata.mso">
<!--[if !mso]>







<style>







v\:* {behavior:url(#default#VML);}







o\:* {behavior:url(#default#VML);}







w\:* {behavior:url(#default#VML);}







.shape {behavior:url(#default#VML);}







</style>







<![endif]-->
<!--[if gte mso 9]><xml>







 <o:DocumentProperties>







  <o:Author>jn66</o:Author>







  <o:Template>Normal</o:Template>







  <o:LastAuthor>jn66</o:LastAuthor>







  <o:Revision>2</o:Revision>







  <o:TotalTime>11</o:TotalTime>







  <o:LastPrinted>2001-07-11T14:09:00Z</o:LastPrinted>







  <o:Created>2001-07-12T20:47:00Z</o:Created>







  <o:LastSaved>2001-07-12T20:47:00Z</o:LastSaved>







  <o:Pages>3</o:Pages>







  <o:Words>924</o:Words>







  <o:Characters>5269</o:Characters>







  <o:Company>Cornell University</o:Company>







  <o:Lines>43</o:Lines>







  <o:Paragraphs>10</o:Paragraphs>







  <o:CharactersWithSpaces>6470</o:CharactersWithSpaces>







  <o:Version>9.2720</o:Version>







 </o:DocumentProperties>







</xml><![endif]-->
<style>







<!--







 /* Style Definitions */







p.MsoNormal, li.MsoNormal, div.MsoNormal







        {mso-style-parent:"";







        margin:0in;







        margin-bottom:.0001pt;







        mso-pagination:widow-orphan;







        font-size:12.0pt;







        font-family:"Times New Roman";







        mso-fareast-font-family:"Times New Roman";







        color:black;}







a:link, span.MsoHyperlink







        {color:#0000EE;







        text-decoration:underline;







        text-underline:single;}







a:visited, span.MsoHyperlinkFollowed







        {color:#551A8B;







        text-decoration:underline;







        text-underline:single;}







p







        {margin-right:0in;







        mso-margin-top-alt:auto;







        mso-margin-bottom-alt:auto;







        margin-left:0in;







        mso-pagination:widow-orphan;







        font-size:12.0pt;







        font-family:"Times New Roman";







        mso-fareast-font-family:"Times New Roman";







        color:black;}







@page Section1







        {size:8.5in 11.0in;







        margin:1.0in 1.25in 1.0in 1.25in;







        mso-header-margin:.5in;







        mso-footer-margin:.5in;







        mso-paper-source:0;}







div.Section1







        {page:Section1;}







-->







</style>
<!--[if gte mso 9]><xml>







 <o:shapedefaults v:ext="edit" spidmax="1027"/>







</xml><![endif]-->
<!--[if gte mso 9]><xml>







 <o:shapelayout v:ext="edit">







  <o:idmap v:ext="edit" data="1"/>







 </o:shapelayout></xml><![endif]-->
</head>
<body bgcolor="#FFFFDB" link="#0000EE" vlink="#551A8B" alink="#FF0000" lang="EN-US" style="tab-interval:.5in">

<div class=Section1>&nbsp;
<br><!--webbot BOT="GeneratedScript" PREVIEW=" " startspan --><script Language="JavaScript"><!--































function FrontPage_Form1_Validator(theForm)































{































































  if (theForm.fname.value == "")































  {































    alert("Please enter a value for the \"First name\" field.");































    theForm.fname.focus();































    return (false);































  }































































  if (theForm.fname.value.length > 35)































  {































    alert("Please enter at most 35 characters in the \"First name\" field.");































    theForm.fname.focus();































    return (false);































  }































































  if (theForm.lname.value == "")































  {































    alert("Please enter a value for the \"Last Name\" field.");































    theForm.lname.focus();































    return (false);































  }































































  if (theForm.lname.value.length > 35)































  {































    alert("Please enter at most 35 characters in the \"Last Name\" field.");































    theForm.lname.focus();































    return (false);































  }































































  if (theForm.a_type.selectedIndex < 0)































  {































    alert("Please select one of the \"Affiliation type\" options.");































    theForm.a_type.focus();































    return (false);































  }































































  if (theForm.a_type.selectedIndex == 0)































  {































    alert("The first \"Affiliation type\" option is not a valid selection.  Please choose one of the other options.");































    theForm.a_type.focus();































    return (false);































  }































































  var checkOK = "0123456789-.,";































  var checkStr = theForm.zip1.value;































  var allValid = true;































  var decPoints = 0;































  var allNum = "";































  for (i = 0;  i < checkStr.length;  i++)































  {































    ch = checkStr.charAt(i);































    for (j = 0;  j < checkOK.length;  j++)































      if (ch == checkOK.charAt(j))































        break;































    if (j == checkOK.length)































    {































      allValid = false;































      break;































    }































    if (ch == ".")































    {































      allNum += ".";































      decPoints++;































    }































    else if (ch != ",")































      allNum += ch;































  }































  if (!allValid)































  {































    alert("Please enter only digit characters in the \"zip1\" field.");































    theForm.zip1.focus();































    return (false);































  }































































  if (decPoints > 1)































  {































    alert("Please enter a valid number in the \"zip1\" field.");































    theForm.zip1.focus();































    return (false);































  }































































  var checkOK = "0123456789-.,";































  var checkStr = theForm.zip2.value;































  var allValid = true;































  var decPoints = 0;































  var allNum = "";































  for (i = 0;  i < checkStr.length;  i++)































  {































    ch = checkStr.charAt(i);































    for (j = 0;  j < checkOK.length;  j++)































      if (ch == checkOK.charAt(j))































        break;































    if (j == checkOK.length)































    {































      allValid = false;































      break;































    }































    if (ch == ".")































    {































      allNum += ".";































      decPoints++;































    }































    else if (ch != ",")































      allNum += ch;































  }































  if (!allValid)































  {































    alert("Please enter only digit characters in the \"zip2\" field.");































    theForm.zip2.focus();































    return (false);































  }































































  if (decPoints > 1)































  {































    alert("Please enter a valid number in the \"zip2\" field.");































    theForm.zip2.focus();































    return (false);































  }































































  if (theForm.email.value == "")







































  {































    alert("Please enter a value for the \"E-Mail Address\" field.");































    theForm.email.focus();































    return (false);































  }































































  if (theForm.email.value.length > 35)































  {































    alert("Please enter at most 35 characters in the \"E-Mail Address\" field.");































    theForm.email.focus();































    return (false);































  }































//--></script>
<!--webbot BOT="GeneratedScript" endspan -->
<br><form>

<p class="MsoNormal"><span style='display:none;mso-hide:all'><input TYPE="hidden" NAME="email_required" VALUE="You cannot leave the field (email) empty."><input TYPE="hidden" NAME="fname_required" VALUE="You cannot leave the field (fname) empty."><input TYPE="hidden" NAME="lname_required" VALUE="You cannot leave the field (lname) empty."><input TYPE="hidden" NAME="filed_required" VALUE="You must fill the required fields"></span>
<br>&nbsp;
<center><table BORDER CELLSPACING=6 CELLPADDING=0 WIDTH="81%" style="width:81.0%;







 mso-cellspacing:4.5pt;mso-padding-alt:4.5pt 4.5pt 4.5pt 4.5pt" >
<tr>
<td style="background:#FFCCCC;padding:4.5pt 4.5pt 4.5pt 4.5pt">
<center><span 







  style='font-size:18.0pt;font-family:Arial;color:#3333FF'><b>Rice
Mutant&nbsp; Database Submission&nbsp; Form</b></span></center>
</td>
</tr>
</table></center>
Contributor's information&nbsp;<o:p></o:p>
<br>&nbsp;
<br>&nbsp;
<table BORDER CELLPADDING=0 COLS=2 WIDTH="100%" style="width:100.0%;mso-cellspacing:







 1.5pt;mso-padding-alt:0in 0in 0in 0in" >
<tr>
<td WIDTH="10%" style="width:10.0%;padding:.75pt .75pt .75pt .75pt">
<div class="MsoNormal"><span style='font-size:10.0pt'>First name</span></div>
</td>

<td style="padding:.75pt .75pt .75pt .75pt">
<div class="MsoNormal"><span style='font-size:10.0pt;font-family:Arial'><select NAME="Title"><option VALUE="Dr.">Dr.&nbsp;<option SELECTED VALUE="Prof.">Prof&nbsp;<option VALUE="Mr.">Mr.&nbsp;<option VALUE="Ms.">Ms.&nbsp;</select><!--webbot bot="Validation" s-display-name="First name" b-value-required="TRUE" i-maximum-length="35" --><input TYPE="text" MAXLENGTH="35" SIZE="35" NAME="fname" VALUE=" ">
Middle initials&nbsp;</span><input TYPE="text" MAXLENGTH="35" SIZE="4" NAME="minit"></div>
</td>
</tr>

<tr>
<td style="padding:.75pt .75pt .75pt .75pt">
<div class="MsoNormal"><span style='font-size:10.0pt'>Last name</span></div>
</td>

<td style="padding:.75pt .75pt .75pt .75pt">
<div class="MsoNormal"><!--webbot bot="Validation" s-display-name="Last name" b-value-required="TRUE" i-maximum-length="35" --><input TYPE="text" MAXLENGTH="35" SIZE="35" NAME="fname" VALUE=""></div>
</td>
</tr>

<tr>
<td style="padding:.75pt .75pt .75pt .75pt">
<div class="MsoNormal"><span style='font-size:10.0pt'>Lab head's name</span></div>
</td>

<td style="padding:.75pt .75pt .75pt .75pt">
<div class="MsoNormal"><!--webbot bot="Validation" s-display-name="Last name" b-value-required="TRUE" i-maximum-length="35" --><input TYPE="text" MAXLENGTH="35" SIZE="35" NAME="fname" VALUE=""></div>
</td>
</tr>

<tr>
<td><span style='font-size:10.0pt'>Institute/Organization</span></td>

<td><input TYPE="text" MAXLENGTH="50" SIZE="50" NAME="Univ/Org" VALUE=" "







  B-Value-Required=TRUE></td>
</tr>

<tr>
<td style="padding:.75pt .75pt .75pt .75pt">
<div class="MsoNormal"><span style='font-size:10.0pt'>Address-1</span></div>
</td>

<td style="padding:.75pt .75pt .75pt .75pt">
<div class="MsoNormal"><input TYPE="text" MAXLENGTH="60" SIZE="60" NAME="synonym"></div>
</td>
</tr>

<tr>
<td style="padding:.75pt .75pt .75pt .75pt">
<div class="MsoNormal"><span style='font-size:10.0pt'>Address-2</span></div>
</td>

<td style="padding:.75pt .75pt .75pt .75pt">
<div class="MsoNormal"><input TYPE="text" MAXLENGTH="60" SIZE="60" NAME="synonym"></div>
</td>
</tr>

<tr>
<td style="padding:.75pt .75pt .75pt .75pt">
<div class="MsoNormal"><span style='font-size:10.0pt'>Telephone</span><o:p></o:p></div>
</td>

<td style="padding:.75pt .75pt .75pt .75pt">
<div class="MsoNormal"><input TYPE="text" MAXLENGTH="20" SIZE="20"







  display-name=Telephone><span style='font-size:10.0pt'>&nbsp;
Fax&nbsp;</span><input TYPE="text" MAXLENGTH="20" SIZE="20" NAME="fax"></div>
</td>
</tr>

<tr>
<td style="padding:.75pt .75pt .75pt .75pt">
<div class="MsoNormal"><span style='font-size:10.0pt'>E mail</span></div>
</td>

<td style="padding:.75pt .75pt .75pt .75pt">
<div class="MsoNormal"><!--webbot bot="Validation" s-display-name="E-Mail Address" b-value-required="TRUE" i-maximum-length="35" --><input TYPE="text" MAXLENGTH="35" SIZE="35" NAME="email"></div>
</td>
</tr>
</table>

<p><span style='color:#000099'><b>MUTANT INFORMATION</b></span>
<br>&nbsp;
<table BORDER CELLPADDING=0 WIDTH="100%" style="width:100.0%;mso-cellspacing:







 1.5pt;mso-padding-alt:0in 0in 0in 0in" >
<tr>
<td style="padding:.75pt .75pt .75pt .75pt">
<div class="MsoNormal"><span style='font-size:10.0pt;font-family:Arial'>Name</span></div>
</td>

<td style="padding:.75pt .75pt .75pt .75pt">
<div class="MsoNormal"><!--webbot bot="Validation" s-display-name="First name" b-value-required="TRUE" i-maximum-length="35" --><input TYPE="text" MAXLENGTH="35" SIZE="35" NAME="fname" VALUE=" "></div>
</td>
</tr>

<tr>
<td style="padding:.75pt .75pt .75pt .75pt">
<div class="MsoNormal"><span style='font-size:10.0pt'>Gramene ID</span></div>
</td>

<td style="padding:.75pt .75pt .75pt .75pt">
<div class="MsoNormal"><input TYPE="text" MAXLENGTH="9" SIZE="9" NAME="fname"><span 







  style='font-size:10.0pt'>(if
known)</span></div>
</td>
</tr>

<tr>
<td style="padding:.75pt .75pt .75pt .75pt">
<div class="MsoNormal"><span style='font-size:10.0pt;font-family:Arial'>Description</span>
<br><span style='font-size:10.0pt'>(up to 400 characters)</span>
<br><span style='font-size:10.0pt;font-family:Arial'>&nbsp; Evidence&nbsp;<select NAME="a_type"><option SELECTED VALUE="1">--<option VALUE="Government">Reference1<option VALUE="Others">Reference2<option VALUE="Government">Reference3<option VALUE="Government">Reference4&nbsp;</select></div>
</td>

<td style="padding:.75pt .75pt .75pt .75pt"><textarea ROWS="2" COLS="60" NAME="description"></textarea></td>
</tr>

<tr>
<td style="padding:.75pt .75pt .75pt .75pt">
<div class="MsoNormal"><span style='font-size:10.0pt'>Synonym (if known)</span></div>
</td>

<td style="padding:.75pt .75pt .75pt .75pt">
<div class="MsoNormal"><input TYPE="text" MAXLENGTH="60" SIZE="60" NAME="synonym"></div>
</td>
</tr>

<tr>
<td style="padding:.75pt .75pt .75pt .75pt">
<div class="MsoNormal"><span style='font-size:10.0pt'>Key words separated
by (;)</span>
<br><span style='font-size:10.0pt'>(&nbsp; up to 6)</span></div>
</td>

<td style="padding:.75pt .75pt .75pt .75pt">
<div class="MsoNormal"><input TYPE="text" MAXLENGTH="60" SIZE="60" NAME="fname"></div>
</td>
</tr>

<tr>
<td><span style='font-size:10.0pt;font-family:Arial'>Mutagen</span>
<br><span style='font-size:10.0pt;font-family:Arial'>&nbsp; Evidence&nbsp;<select NAME="a_type"><option SELECTED VALUE="1">--<option VALUE="Government">Reference1<option VALUE="Others">Reference2<option VALUE="Government">Reference3<option VALUE="Government">Reference4&nbsp;</select></td>

<td>
<div class="MsoNormal"><span style='font-size:10.0pt;font-family:Arial'>Mutagen
type<S-Display-Name="Affiliation type"></span>
<br><span style='font-size:10.0pt;font-family:Arial'>&nbsp; Spontaneous</span><input TYPE="text" MAXLENGTH="50" SIZE="8" NAME="minit">
<br><span style='font-size:10.0pt;font-family:Arial'>&nbsp; Induced</span><input TYPE="text" MAXLENGTH="50" SIZE="8" NAME="minit"></div>
<span style='font-size:10.0pt'>&nbsp;&nbsp;&nbsp; Chemicals&nbsp;<S-Display-Name="Affiliation type"><select NAME="a_type"><option SELECTED VALUE="1">---<option SELECTED VALUE="1">5-bromouracil
(5-BU)<option VALUE="Corporate">2-aminopurine (2-AP)<option VALUE="Corporate">Ethyl
methanesulfonate (EMS)<option VALUE="Corporate">Ethyleneimine (EI)<option VALUE="Government">Nitrosoguanidine
(NG)<option VALUE="Government">Hyfroxylamine (HA)<option VALUE="Others">HydrazineBisulfite
ions<option VALUE="Government">Nitrous acid (NA)<option VALUE="Government">Proflavin<option VALUE="Academic">Acridine
orange<option VALUE="Government">ICR-191<option VALUE="Corporate">Aflatoxin
B1 (AFB1)<option VALUE="Corporate">Benzo(a) pyrene<option VALUE="Corporate">N-methyl-N-nitrosourea
(MNU)</select>
<br><span style='font-size:10.0pt'>&nbsp;&nbsp;&nbsp; Physical/Radiation<S-Display-Name="Affiliation type"><select NAME="a_type"><option SELECTED VALUE="1">---&nbsp;<option VALUE="Corporate">Ultraviolet(UV)<option VALUE="Corporate">X-rays<option VALUE="Government">g-rays<option VALUE="Government">
Cosmic rays<option VALUE="Others">Electron (b-particle)<option VALUE="Government">Positron
(positive b-particle)<option VALUE="Government">Proton (nucleus of common
isotope of hydrogen)<option VALUE="Academic">Deuteron (nucleus of heavy
isotope of hydrogen)<option VALUE="Government">a (nucleus of helium)<option VALUE="Corporate">Neutron</select>
<br><span style='font-size:10.0pt'>&nbsp;&nbsp;&nbsp; Molecular biological
methods<S-Display-Name="Affiliation type"><select NAME="a_type"><option SELECTED VALUE="1">---&nbsp;<option VALUE="Corporate">BAL
31 (Digestion)<option VALUE="Corporate">Exonuclease III&nbsp;<option VALUE="Government">Linker-scanning
mutagenesis<option VALUE="Government"> Cassette mutagenesis<option VALUE="Others">Misincorporation
mutagenesis<option VALUE="Government">Spiked Oligonucleotide Primers<option VALUE="Government">Alanine-scanning
mutagenesis<option VALUE="Academic">Conventional site-directed mutagenesis<option VALUE="Government">PCR
site-directed mutagenesis<option VALUE="Corporate">Retrotransposon</select>
<p><span style='font-size:10.0pt;font-family:Arial'>If others is the option
please specify/comments</span>
<br><input TYPE="text" MAXLENGTH="40" SIZE="50" NAME="parent ontology"></td>
</tr>

<tr>
<td><span style='font-size:10.0pt'>Germplasm</span>
<br><span style='font-size:10.0pt;font-family:Arial'>&nbsp; Evidence&nbsp;<select NAME="a_type"><option SELECTED VALUE="1">--<option VALUE="Government">Reference1<option VALUE="Others">Reference2<option VALUE="Government">Reference3<option VALUE="Government">Reference4&nbsp;</select></td>

<td>
<div class="MsoNormal"><span style='font-size:10.0pt'>Accession No.<input TYPE="text" MAXLENGTH="30" SIZE="20" NAME="cM position">
(if any)&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Ref. Germplasm
Bank&nbsp;<S-Display-Name="Affiliation type"></span><select NAME="a_type"><option SELECTED VALUE="1">--<option VALUE="Government">IRRI<option VALUE="Government">USDA-GRIN<option VALUE="Others">Japan-MAFF<option VALUE="Government">Korea<option VALUE="Government">China<option VALUE="Academic">India<option VALUE="Government">Others</select>
<br><span style='font-size:10.0pt'>Related wild type&nbsp;<input TYPE="text" MAXLENGTH="30" SIZE="20" NAME="cM position">
<br><span style='font-size:10.0pt'>Genus<input TYPE="text" MAXLENGTH="30" SIZE="20" NAME="cM position">
<br><span style='font-size:10.0pt'>Species&nbsp;<S-Display-Name="Affiliation type"><select NAME="a_type"><option SELECTED VALUE="1">--<option VALUE="Corporate">Oryza
sativa L.<option VALUE="Corporate">Oryza glaberrima<option VALUE="Government">Oryza
rufipogon Griff.<option VALUE="Government">Oryza barthii A. Chev.<option VALUE="Others">Oryza
breviligulate A. Chev.<option VALUE="Government">Oryza australeinsis Domin<option VALUE="Government">Oryza
eichingeri A. Peter<option VALUE="Academic">Oryza punctata katschy ex Steud.<option VALUE="Government">Oryza
officinalis Wall.<option VALUE="Corporate">Oryza minuta Persl.<option VALUE="Corporate">Oryza
latifolia Desv.<option VALUE="Corporate">Oryza alta Swallen<option VALUE="Corporate">Oryza
grandiglumis Prod.<option VALUE="Corporate">Oryza ridleyi Hook.<option VALUE="Corporate">Oryza
longiglumis Jansen.<option VALUE="Corporate">Oryza brachyantha A. Chev.<option VALUE="Corporate">Oryza
meyeriana Baill.<option VALUE="Corporate">Oryza schlechteri Pilger</select>
<br><span style='font-size:10.0pt'>Sub-species&nbsp;<S-Display-Name="Affiliation type"></span><select NAME="a_type"><option SELECTED VALUE="1">--<option VALUE="Government">Indica
(Sheng)<option VALUE="Government">Japonica (Keng)<option VALUE="Government">Intermediate
(Hybrids)</select></div>
<span style='font-size:10.0pt;font-family:Arial'>If others is the option
please specify/comments</span>
<br><input TYPE="text" MAXLENGTH="40" SIZE="50" NAME="parent ontology"></td>
</tr>

<tr>
<td style="padding:.75pt .75pt .75pt .75pt">
<div class="MsoNormal"><span style='font-size:10.0pt'>Plant growth stage</span><o:p></o:p>
<br><span style='font-size:10.0pt;font-family:Arial'>&nbsp; Evidence&nbsp;<select NAME="a_type"><option SELECTED VALUE="1">--<option VALUE="Government">Reference1<option VALUE="Others">Reference2<option VALUE="Government">Reference3<option VALUE="Government">Reference4&nbsp;</select></div>
</td>

<td style="padding:.75pt .75pt .75pt .75pt"><option VALUE="Government"><S-Display-Name="Affiliation type"><select NAME="a_type"><option SELECTED VALUE="1">--<option VALUE="Government">Germination<option VALUE="Government">Seedling<option SELECTED VALUE="Others">Tillering<option VALUE="Government">Stem
elongation<option VALUE="Government">Booting<option VALUE="Academic">Heading<option VALUE="Government">Milk
stage<option VALUE="Corporate">Dough stage<option VALUE="Government">Mature
grain<option VALUE="Government">Other</select>
<br><span style='font-size:10.0pt;font-family:Arial'>If others is the option
please specify/comments</span>
<br><input TYPE="text" MAXLENGTH="40" SIZE="50" NAME="parent ontology"></td>
</tr>

<tr>
<td VALIGN=TOP WIDTH="10%" style="width:10.0%;padding:.75pt .75pt .75pt .75pt">
<div class="MsoNormal"><span style='font-size:10.0pt;font-family:Arial'><b>Agronomic
trait</b></span>
<br><span style='font-size:10.0pt;font-family:Arial'>&nbsp; Evidence&nbsp;<select NAME="a_type"><option SELECTED VALUE="1">--<option VALUE="Government">Reference1<option VALUE="Others">Reference2<option VALUE="Government">Reference3<option VALUE="Government">Reference4&nbsp;</select></div>
</td>

<td style="padding:.75pt .75pt .75pt .75pt">
<div class="MsoNormal"><![if !supportEmptyParas]><![endif]><o:p></o:p></div>
</td>
</tr>

<tr>
<td style="padding:.75pt .75pt .75pt .75pt">
<div class="MsoNormal"><span style='font-size:10.0pt;font-family:Arial'>Yield&nbsp;</span></div>
</td>

<td style="padding:.75pt .75pt .75pt .75pt">
<div class="MsoNormal"><span style='font-size:10.0pt'>&nbsp; Yield&nbsp;<S-Display-Name="Affiliation type"></select>
<br><span style='font-size:10.0pt;font-family:Arial'>Grain yield</span><input TYPE="text" MAXLENGTH="50" SIZE="8" NAME="minit"><span style='font-size:10.0pt;font-family:Arial'>
Biomass yield</span><input TYPE="text" MAXLENGTH="50" SIZE="8" NAME="minit">
<p><span style='font-size:10.0pt'>&nbsp; Yield components and related traits<S-Display-Name="Affiliation type"></select>
<br><span style='font-size:10.0pt;font-family:Arial'>Panicle number&nbsp;</span><input TYPE="text" MAXLENGTH="50" SIZE="8" NAME="minit"><span style='font-size:10.0pt;font-family:Arial'>
Grain number&nbsp;</span><input TYPE="text" MAXLENGTH="50" SIZE="8" NAME="minit"><span style='font-size:10.0pt;font-family:Arial'>&nbsp;&nbsp;
Grain weight&nbsp;</span><input TYPE="text" MAXLENGTH="50" SIZE="8" NAME="minit"><span style='font-size:10.0pt;font-family:Arial'>&nbsp;&nbsp;
Spilelets per panicle&nbsp;</span><input TYPE="text" MAXLENGTH="50" SIZE="8" NAME="minit"><span style='font-size:10.0pt;font-family:Arial'>Seed
set percentage</span><input TYPE="text" MAXLENGTH="50" SIZE="8" NAME="minit">
<br><span style='font-size:10.0pt;font-family:Arial'>&nbsp;&nbsp; Leaf
senescence<select NAME="a_type"><option SELECTED VALUE="1">--<option VALUE="Government">Late
and slow<option VALUE="Government">Intermediate<option VALUE="Corporate">Early
and fast</select><span style='font-size:10.0pt;font-family:Arial'>&nbsp;&nbsp;
Panicle threshability<select NAME="a_type"><option SELECTED VALUE="1">--<option VALUE="Government">Difficult<option VALUE="Others">Moderately
difficult<option VALUE="Government">Intermediate<option VALUE="Government">Loose<option VALUE="Corporate">Easy</select><span style='font-size:10.0pt;font-family:Arial'>&nbsp;&nbsp;
Panicle exsertion<select NAME="a_type"><option SELECTED VALUE="1">--<option VALUE="Government">Well
exserted<option VALUE="Others">Moderately well&nbsp; exserted<option VALUE="Government">Just
exserted<option VALUE="Government">Partly exserted<option VALUE="Corporate">Enclosed</select><span style='font-size:10.0pt;font-family:Arial'>Tillering
ability (Tiller number)<select NAME="a_type"><option SELECTED VALUE="1">--<option VALUE="Government">Very
high<option VALUE="Government">Good<option VALUE="Others">Medium<option VALUE="Government">Low<option VALUE="Government">Very
low</select><span style='font-size:10.0pt;font-family:Arial'>Phenotypic
acceptability<select NAME="a_type"><option SELECTED VALUE="1">--<option VALUE="Government">Excellent<option VALUE="Others">Good<option VALUE="Government">Fair<option VALUE="Government">Poor<option VALUE="Corporate">Unacceptable</select>
<br><span style='font-size:10.0pt;font-family:Arial'>Lodging incidence</span><input TYPE="text" MAXLENGTH="50" SIZE="8" NAME="minit">
<br>&nbsp;</div>
<span style='font-size:10.0pt;font-family:Arial'>&nbsp; If others is the
option please specify/comments</span>
<br><input TYPE="text" MAXLENGTH="40" SIZE="50" NAME="parent ontology"></td>
</tr>

<tr>
<td style="padding:.75pt .75pt .75pt .75pt">
<div class="MsoNormal"><span style='font-size:10.0pt'>Grain quality</span><o:p></o:p></div>
</td>

<td style="padding:.75pt .75pt .75pt .75pt"><span style='font-size:10.0pt;font-family:Arial'>&nbsp;
Endosperm type<select NAME="a_type"><option SELECTED VALUE="1">--<option VALUE="Government">Non
glutinous<option VALUE="Government">Glutinous<option VALUE="Others">Indeterminate</select><span style='font-size:10.0pt;font-family:Arial'>&nbsp;
Chalkiness of endosperm<select NAME="a_type"><option SELECTED VALUE="1">--<option VALUE="Government">None<option VALUE="Government">Small<option VALUE="Government">Medium<option VALUE="Corporate">Large</select><span style='font-size:10.0pt;font-family:Arial'>&nbsp;
Brown rice length<select NAME="a_type"><option SELECTED VALUE="1">--<option VALUE="Government">Extra
long<option VALUE="Others">Long<option VALUE="Government">Medium<option VALUE="Government">Short</select><span style='font-size:10.0pt;font-family:Arial'>&nbsp;
Brown rice shape<select NAME="a_type"><option SELECTED VALUE="1">--<option VALUE="Government">Slender<option VALUE="Others">Medium<option VALUE="Government">Bold<option VALUE="Corporate">Round</select><span style='font-size:10.0pt;font-family:Arial'>
Brown rice protein</span><input TYPE="text" MAXLENGTH="50" SIZE="8" NAME="minit">
<br><span style='font-size:10.0pt;font-family:Arial'>&nbsp; Scent (aroma)<select NAME="a_type"><option SELECTED VALUE="1">--<option VALUE="Government">Nonscented<option VALUE="Government">Lightly
scented<option VALUE="Government">Scented</select><span style='font-size:10.0pt;font-family:Arial'>Amylose
content</span><input TYPE="text" MAXLENGTH="50" SIZE="8" NAME="minit"><span style='font-size:10.0pt;font-family:Arial'>&nbsp;
Alkali digestion<select NAME="a_type"><option SELECTED VALUE="1">--<option VALUE="Government">Low<option VALUE="Others">Intermediate<option VALUE="Government">High</select><span style='font-size:10.0pt;font-family:Arial'>&nbsp;
Gel consistency<select NAME="a_type"><option SELECTED VALUE="1">--<option VALUE="Government">Soft<option VALUE="Government">Medium<option VALUE="Government">Hard</select>
<br><span style='font-size:10.0pt;font-family:Arial'>&nbsp; Gelatinization
temperature<select NAME="a_type"><option SELECTED VALUE="1">--<option VALUE="Government">High<option VALUE="Government">Intermediate<option VALUE="Others">Low</select><span style='font-size:10.0pt;font-family:Arial'>&nbsp;
Grain elongation</span><input TYPE="text" MAXLENGTH="50" SIZE="8" NAME="minit"><span style='font-size:10.0pt;font-family:Arial'>&nbsp;&nbsp;
Grain moisture</span><input TYPE="text" MAXLENGTH="50" SIZE="8" NAME="minit"><span style='font-size:10.0pt;font-family:Arial'>&nbsp;&nbsp;&nbsp;
Grain shattering</span><input TYPE="text" MAXLENGTH="50" SIZE="8" NAME="minit">
<br><span style='font-size:10.0pt;font-family:Arial'>&nbsp;&nbsp; Head
rice&nbsp;</span><input TYPE="text" MAXLENGTH="50" SIZE="8" NAME="minit"><span style='font-size:10.0pt;font-family:Arial'>&nbsp;&nbsp;
Milled rice</span><input TYPE="text" MAXLENGTH="50" SIZE="8" NAME="minit"><span style='font-size:10.0pt;font-family:Arial'>
Brown rice protein</span><input TYPE="text" MAXLENGTH="50" SIZE="8" NAME="minit">
<p><span style='font-size:10.0pt;font-family:Arial'>If others is the option
please specify/comments</span>
<br><input TYPE="text" MAXLENGTH="40" SIZE="50" NAME="parent ontology"></td>
</tr>

<tr>
<td style="padding:.75pt .75pt .75pt .75pt">
<div class="MsoNormal"><span style='font-size:10.0pt'>Biotic stress related
traits</span></div>
</td>

<td style="padding:.75pt .75pt .75pt .75pt">
<div class="MsoNormal"><span style='font-size:10.0pt'>&nbsp;&nbsp; Animal
damage related&nbsp;<S-Display-Name="Affiliation type"></select>
<div class="MsoNormal"><span style='font-size:10.0pt'>&nbsp;&nbsp;&nbsp;&nbsp;
1) Insect&nbsp;<S-Display-Name="Affiliation type"></select>
<br><span style='font-size:10.0pt;font-family:Arial'>&nbsp; Brown planthopper&nbsp;<select NAME="a_type"><option SELECTED VALUE="1">--<option VALUE="Government">Highly
resistant<option VALUE="Government">Moderately resistant<option VALUE="Others">Resistant<option VALUE="Government">Susceptible<option VALUE="Government">Moderately
susceptible<option VALUE="Government">Highly susceptible</select><span style='font-size:10.0pt;font-family:Arial'>&nbsp;
Green leafhopper<select NAME="a_type"><option SELECTED VALUE="1">--<option VALUE="Government">Highly
resistant<option VALUE="Government">Moderately resistant<option VALUE="Others">Resistant<option VALUE="Government">Susceptible<option VALUE="Government">Moderately
susceptible<option VALUE="Government">Highly susceptible</select><span style='font-size:10.0pt;font-family:Arial'>&nbsp;
White-backed planthopper<select NAME="a_type"><option SELECTED VALUE="1">--<option VALUE="Government">Highly
resistant<option VALUE="Government">Moderately resistant<option VALUE="Others">Resistant<option VALUE="Government">Susceptible<option VALUE="Government">Moderately
susceptible<option VALUE="Government">Highly susceptible</select><span style='font-size:10.0pt;font-family:Arial'>&nbsp;
Rice delphacid<select NAME="a_type"><option SELECTED VALUE="1">--<option VALUE="Government">Highly
resistant<option VALUE="Government">Moderately resistant<option VALUE="Others">Resistant<option VALUE="Government">Susceptible<option VALUE="Government">Moderately
susceptible<option VALUE="Government">Highly susceptible</select>
<br><span style='font-size:10.0pt;font-family:Arial'>&nbsp; Stem borers<select NAME="a_type"><option SELECTED VALUE="1">--<option VALUE="Government">Highly
resistant<option VALUE="Government">Moderately resistant<option VALUE="Others">Resistant<option VALUE="Government">Susceptible<option VALUE="Government">Moderately
susceptible<option VALUE="Government">Highly susceptible</select><span style='font-size:10.0pt;font-family:Arial'>&nbsp;
Leaf-folder<select NAME="a_type"><option SELECTED VALUE="1">--<option VALUE="Government">Highly
resistant<option VALUE="Government">Moderately resistant<option VALUE="Others">Resistant<option VALUE="Government">Susceptible<option VALUE="Government">Moderately
susceptible<option VALUE="Government">Highly susceptible</select><span style='font-size:10.0pt;font-family:Arial'>&nbsp;
Gall midge<select NAME="a_type"><option SELECTED VALUE="1">--<option VALUE="Government">Highly
resistant<option VALUE="Government">Moderately resistant<option VALUE="Others">Resistant<option VALUE="Government">Susceptible<option VALUE="Government">Moderately
susceptible<option VALUE="Government">Highly susceptible</select><span style='font-size:10.0pt;font-family:Arial'>&nbsp;
Caseworm<select NAME="a_type"><option SELECTED VALUE="1">--<option VALUE="Government">Highly
resistant<option VALUE="Government">Moderately resistant<option VALUE="Others">Resistant<option VALUE="Government">Susceptible<option VALUE="Government">Moderately
susceptible<option VALUE="Government">Highly susceptible</select><span style='font-size:10.0pt;font-family:Arial'>&nbsp;
Leaf-roller<select NAME="a_type"><option SELECTED VALUE="1">--<option VALUE="Government">Highly
resistant<option VALUE="Government">Moderately resistant<option VALUE="Others">Resistant<option VALUE="Government">Susceptible<option VALUE="Government">Moderately
susceptible<option VALUE="Government">Highly susceptible</select>
<br><span style='font-size:10.0pt;font-family:Arial'>&nbsp; Rice whorl
maggot<select NAME="a_type"><option SELECTED VALUE="1">--<option VALUE="Government">Highly
resistant<option VALUE="Government">Moderately resistant<option VALUE="Others">Resistant<option VALUE="Government">Susceptible<option VALUE="Government">Moderately
susceptible<option VALUE="Government">Highly susceptible</select><span style='font-size:10.0pt;font-family:Arial'>&nbsp;
Rice bug<select NAME="a_type"><option SELECTED VALUE="1">--<option VALUE="Government">Highly
resistant<option VALUE="Government">Moderately resistant<option VALUE="Others">Resistant<option VALUE="Government">Susceptible<option VALUE="Government">Moderately
susceptible<option VALUE="Government">Highly susceptible</select><span style='font-size:10.0pt;font-family:Arial'>&nbsp;
Thrips<select NAME="a_type"><option SELECTED VALUE="1">--<option VALUE="Government">Highly
resistant<option VALUE="Government">Moderately resistant<option VALUE="Others">Resistant<option VALUE="Government">Susceptible<option VALUE="Government">Moderately
susceptible<option VALUE="Government">Highly susceptible</select><span style='font-size:10.0pt;font-family:Arial'>&nbsp;
Zigzag leafhopper&nbsp;<select NAME="a_type"><option SELECTED VALUE="1">--<option VALUE="Government">Highly
resistant<option VALUE="Government">Moderately resistant<option VALUE="Others">Resistant<option VALUE="Government">Susceptible<option VALUE="Government">Moderately
susceptible<option VALUE="Government">Highly susceptible</select>
<br><span style='font-size:10.0pt;font-family:Arial'>&nbsp; Armyworm&nbsp;<select NAME="a_type"><option SELECTED VALUE="1">--<option VALUE="Government">Highly
resistant<option VALUE="Government">Moderately resistant<option VALUE="Others">Resistant<option VALUE="Government">Susceptible<option VALUE="Government">Moderately
susceptible<option VALUE="Government">Highly susceptible</select><span style='font-size:10.0pt;font-family:Arial'>&nbsp;
Rice bug<select NAME="a_type"><option SELECTED VALUE="1">--<option VALUE="Government">Highly
resistant<option VALUE="Government">Moderately resistant<option VALUE="Others">Resistant<option VALUE="Government">Susceptible<option VALUE="Government">Moderately
susceptible<option VALUE="Government">Highly susceptible</select><span style='font-size:10.0pt;font-family:Arial'>&nbsp;
Cutworm<select NAME="a_type"><option SELECTED VALUE="1">--<option VALUE="Government">Highly
resistant<option VALUE="Government">Moderately resistant<option VALUE="Others">Resistant<option VALUE="Government">Susceptible<option VALUE="Government">Moderately
susceptible<option VALUE="Government">Highly susceptible</select><span style='font-size:10.0pt;font-family:Arial'>
Rice whorl maggot&nbsp;<select NAME="a_type"><option SELECTED VALUE="1">--<option VALUE="Government">Highly
resistant<option VALUE="Government">Moderately resistant<option VALUE="Others">Resistant<option VALUE="Government">Susceptible<option VALUE="Government">Moderately
susceptible<option VALUE="Government">Highly susceptible</select><span style='font-size:10.0pt;font-family:Arial'>&nbsp;
Sogatodes<select NAME="a_type"><option SELECTED VALUE="1">--<option VALUE="Government">Highly
resistant<option VALUE="Government">Moderately resistant<option VALUE="Others">Resistant<option VALUE="Government">Susceptible<option VALUE="Government">Moderately
susceptible<option VALUE="Government">Highly susceptible</select><span style='font-size:10.0pt;font-family:Arial'>&nbsp;&nbsp;&nbsp;
Rice hispa<select NAME="a_type"><option SELECTED VALUE="1">--<option VALUE="Government">Highly
resistant<option VALUE="Government">Moderately resistant<option VALUE="Others">Resistant<option VALUE="Government">Susceptible<option VALUE="Government">Moderately
susceptible<option VALUE="Government">Highly susceptible</select><span style='font-size:10.0pt;font-family:Arial'>&nbsp;
Rice skipper<select NAME="a_type"><option SELECTED VALUE="1">--<option VALUE="Government">Highly
resistant<option VALUE="Government">Moderately resistant<option VALUE="Others">Resistant<option VALUE="Government">Susceptible<option VALUE="Government">Moderately
susceptible<option VALUE="Government">Highly susceptible</select><span style='font-size:10.0pt;font-family:Arial'>&nbsp;
Stink bug<select NAME="a_type"><option SELECTED VALUE="1">--<option VALUE="Government">Highly
resistant<option VALUE="Government">Moderately resistant<option VALUE="Others">Resistant<option VALUE="Government">Susceptible<option VALUE="Government">Moderately
susceptible<option VALUE="Government">Highly susceptible</select>
<br><span style='font-size:10.0pt'>&nbsp;&nbsp;&nbsp;&nbsp; 2) Nematode&nbsp;<S-Display-Name="Affiliation type"></select>
<br><span style='font-size:10.0pt;font-family:Arial'>&nbsp; Ufra<select NAME="a_type"><option SELECTED VALUE="1">--<option VALUE="Government">Highly
resistant<option VALUE="Government">Moderately resistant<option VALUE="Others">Resistant<option VALUE="Government">Susceptible<option VALUE="Government">Moderately
susceptible<option VALUE="Government">Highly susceptible</select>
<br><span style='font-size:10.0pt;font-family:Arial'>&nbsp;&nbsp;&nbsp;
3) Rat</span><input TYPE="text" MAXLENGTH="50" SIZE="8" NAME="minit">
<br><span style='font-size:10.0pt;font-family:Arial'>&nbsp;&nbsp;&nbsp;
4) Bird</span><input TYPE="text" MAXLENGTH="50" SIZE="8" NAME="minit"></div>
<span style='font-size:10.0pt;font-family:Arial'>If others is the option
please specify/comments</span>
<br><input TYPE="text" MAXLENGTH="40" SIZE="50" NAME="parent ontology">
<p><span style='font-size:10.0pt'>&nbsp;&nbsp; Microbe damage related (Disease)&nbsp;<S-Display-Name="Affiliation type"></select>
<div class="MsoNormal"><span style='font-size:10.0pt'>&nbsp;&nbsp;&nbsp;&nbsp;
1) Bacterial disease&nbsp;<S-Display-Name="Affiliation type"></select>
<br><span style='font-size:10.0pt;font-family:Arial'>&nbsp;&nbsp;&nbsp;
Bacterial blight<select NAME="a_type"><option SELECTED VALUE="1">--<option VALUE="Government">Highly
resistant<option VALUE="Government">Moderately resistant<option VALUE="Others">Resistant<option VALUE="Government">Susceptible<option VALUE="Government">Moderately
susceptible<option VALUE="Government">Highly susceptible</select><span style='font-size:10.0pt;font-family:Arial'>&nbsp;&nbsp;&nbsp;
Seedling blight<select NAME="a_type"><option SELECTED VALUE="1">--<option VALUE="Government">Highly
resistant<option VALUE="Government">Moderately resistant<option VALUE="Others">Resistant<option VALUE="Government">Susceptible<option VALUE="Government">Moderately
susceptible<option VALUE="Government">Highly susceptible</select><span style='font-size:10.0pt;font-family:Arial'>&nbsp;&nbsp;&nbsp;
Bacterial leaf streak<select NAME="a_type"><option SELECTED VALUE="1">--<option VALUE="Government">Highly
resistant<option VALUE="Government">Moderately resistant<option VALUE="Others">Resistant<option VALUE="Government">Susceptible<option VALUE="Government">Moderately
susceptible<option VALUE="Government">Highly susceptible</select><span style='font-size:10.0pt;font-family:Arial'>&nbsp;&nbsp;&nbsp;
Sheath blight<select NAME="a_type"><option SELECTED VALUE="1">--<option VALUE="Government">Highly
resistant<option VALUE="Government">Moderately resistant<option VALUE="Others">Resistant<option VALUE="Government">Susceptible<option VALUE="Government">Moderately
susceptible<option VALUE="Government">Highly susceptible</select>
<br><span style='font-size:10.0pt'>&nbsp;&nbsp;&nbsp;&nbsp; 2) Fungal disease&nbsp;<S-Display-Name="Affiliation type"></select>
<br><span style='font-size:10.0pt;font-family:Arial'>&nbsp;&nbsp; Bakanae
disease&nbsp;<select NAME="a_type"><option SELECTED VALUE="1">--<option VALUE="Government">Highly
resistant<option VALUE="Government">Moderately resistant<option VALUE="Others">Resistant<option VALUE="Government">Susceptible<option VALUE="Government">Moderately
susceptible<option VALUE="Government">Highly susceptible</select><span style='font-size:10.0pt;font-family:Arial'>&nbsp;&nbsp;&nbsp;
Leaf blast<select NAME="a_type"><option SELECTED VALUE="1">--<option VALUE="Government">Highly
resistant<option VALUE="Government">Moderately resistant<option VALUE="Others">Resistant<option VALUE="Government">Susceptible<option VALUE="Government">Moderately
susceptible<option VALUE="Government">Highly susceptible</select><span style='font-size:10.0pt;font-family:Arial'>&nbsp;&nbsp;&nbsp;
Panicle blast<select NAME="a_type"><option SELECTED VALUE="1">--<option VALUE="Government">Highly
resistant<option VALUE="Government">Moderately resistant<option VALUE="Others">Resistant<option VALUE="Government">Susceptible<option VALUE="Government">Moderately
susceptible<option VALUE="Government">Highly susceptible</select><span style='font-size:10.0pt;font-family:Arial'>&nbsp;&nbsp;&nbsp;
Grain discoloration<select NAME="a_type"><option SELECTED VALUE="1">--<option VALUE="Government">Highly
resistant<option VALUE="Government">Moderately resistant<option VALUE="Others">Resistant<option VALUE="Government">Susceptible<option VALUE="Government">Moderately
susceptible<option VALUE="Government">Highly susceptible</select><span style='font-size:10.0pt;font-family:Arial'>&nbsp;&nbsp;&nbsp;
Leaf scald<select NAME="a_type"><option SELECTED VALUE="1">--<option VALUE="Government">Highly
resistant<option VALUE="Government">Moderately resistant<option VALUE="Others">Resistant<option VALUE="Government">Susceptible<option VALUE="Government">Moderately
susceptible<option VALUE="Government">Highly susceptible</select><span style='font-size:10.0pt;font-family:Arial'>&nbsp;&nbsp;&nbsp;
Sheath rot<select NAME="a_type"><option SELECTED VALUE="1">--<option VALUE="Government">Highly
resistant<option VALUE="Government">Moderately resistant<option VALUE="Others">Resistant<option VALUE="Government">Susceptible<option VALUE="Government">Moderately
susceptible<option VALUE="Government">Highly susceptible</select><span style='font-size:10.0pt;font-family:Arial'>&nbsp;&nbsp;&nbsp;
Stem rot<select NAME="a_type"><option SELECTED VALUE="1">--<option VALUE="Government">Highly
resistant<option VALUE="Government">Moderately resistant<option VALUE="Others">Resistant<option VALUE="Government">Susceptible<option VALUE="Government">Moderately
susceptible<option VALUE="Government">Highly susceptible</select><span style='font-size:10.0pt;font-family:Arial'>&nbsp;&nbsp;&nbsp;
False smut<select NAME="a_type"><option SELECTED VALUE="1">--<option VALUE="Government">Highly
resistant<option VALUE="Government">Moderately resistant<option VALUE="Others">Resistant<option VALUE="Government">Susceptible<option VALUE="Government">Moderately
susceptible<option VALUE="Government">Highly susceptible</select>
<br><span style='font-size:10.0pt;font-family:Arial'>&nbsp;&nbsp;&nbsp;
Kernet smut<select NAME="a_type"><option SELECTED VALUE="1">--<option VALUE="Government">Highly
resistant<option VALUE="Government">Moderately resistant<option VALUE="Others">Resistant<option VALUE="Government">Susceptible<option VALUE="Government">Moderately
susceptible<option VALUE="Government">Highly susceptible</select><span style='font-size:10.0pt;font-family:Arial'>&nbsp;&nbsp;&nbsp;
Brown spot<select NAME="a_type"><option SELECTED VALUE="1">--<option VALUE="Government">Highly
resistant<option VALUE="Government">Moderately resistant<option VALUE="Others">Resistant<option VALUE="Government">Susceptible<option VALUE="Government">Moderately
susceptible<option VALUE="Government">Highly susceptible</select><span style='font-size:10.0pt;font-family:Arial'>&nbsp;&nbsp;&nbsp;
Narrow brown leaf spot<select NAME="a_type"><option SELECTED VALUE="1">--<option VALUE="Government">Highly
resistant<option VALUE="Government">Moderately resistant<option VALUE="Others">Resistant<option VALUE="Government">Susceptible<option VALUE="Government">Moderately
susceptible<option VALUE="Government">Highly susceptible</select><span style='font-size:10.0pt;font-family:Arial'>&nbsp;&nbsp;
Udbatta disease<select NAME="a_type"><option SELECTED VALUE="1">--<option VALUE="Government">Highly
resistant<option VALUE="Government">Moderately resistant<option VALUE="Others">Resistant<option VALUE="Government">Susceptible<option VALUE="Government">Moderately
susceptible<option VALUE="Government">Highly susceptible</select>
<br><span style='font-size:10.0pt'>&nbsp;&nbsp;&nbsp;&nbsp; 3) Mycoplasma-like
organism&nbsp;<S-Display-Name="Affiliation type"></select>
<br><span style='font-size:10.0pt;font-family:Arial'>&nbsp;&nbsp;&nbsp;
Yellow dwarf<select NAME="a_type"><option SELECTED VALUE="1">--<option VALUE="Government">Highly
resistant<option VALUE="Government">Moderately resistant<option VALUE="Others">Resistant<option VALUE="Government">Susceptible<option VALUE="Government">Moderately
susceptible<option VALUE="Government">Highly susceptible</select>
<br><span style='font-size:10.0pt'>&nbsp;&nbsp;&nbsp;&nbsp; 4) Viral disease&nbsp;<S-Display-Name="Affiliation type"></select>
<br><span style='font-size:10.0pt;font-family:Arial'>&nbsp;&nbsp;&nbsp;
Black streak dwarf virus<select NAME="a_type"><option SELECTED VALUE="1">--<option VALUE="Government">Highly
resistant<option VALUE="Government">Moderately resistant<option VALUE="Others">Resistant<option VALUE="Government">Susceptible<option VALUE="Government">Moderately
susceptible<option VALUE="Government">Highly susceptible</select><span style='font-size:10.0pt;font-family:Arial'>&nbsp;&nbsp;&nbsp;
Rice grassy stunt 1 disease<select NAME="a_type"><option SELECTED VALUE="1">--<option VALUE="Government">Highly
resistant<option VALUE="Government">Moderately resistant<option VALUE="Others">Resistant<option VALUE="Government">Susceptible<option VALUE="Government">Moderately
susceptible<option VALUE="Government">Highly susceptible</select><span style='font-size:10.0pt;font-family:Arial'>&nbsp;&nbsp;&nbsp;
Rice grassy stunt 2 disease<select NAME="a_type"><option SELECTED VALUE="1">--<option VALUE="Government">Highly
resistant<option VALUE="Government">Moderately resistant<option VALUE="Others">Resistant<option VALUE="Government">Susceptible<option VALUE="Government">Moderately
susceptible<option VALUE="Government">Highly susceptible</select><span style='font-size:10.0pt;font-family:Arial'>&nbsp;&nbsp;&nbsp;
Rice hoja blanca<select NAME="a_type"><option SELECTED VALUE="1">--<option VALUE="Government">Highly
resistant<option VALUE="Government">Moderately resistant<option VALUE="Others">Resistant<option VALUE="Government">Susceptible<option VALUE="Government">Moderately
susceptible<option VALUE="Government">Highly susceptible</select><span style='font-size:10.0pt;font-family:Arial'>&nbsp;&nbsp;&nbsp;
Rice tungro disease<select NAME="a_type"><option SELECTED VALUE="1">--<option VALUE="Government">Highly
resistant<option VALUE="Government">Moderately resistant<option VALUE="Others">Resistant<option VALUE="Government">Susceptible<option VALUE="Government">Moderately
susceptible<option VALUE="Government">Highly susceptible</select><span style='font-size:10.0pt;font-family:Arial'>&nbsp;&nbsp;&nbsp;
Rice ragged stunt disease<select NAME="a_type"><option SELECTED VALUE="1">--<option VALUE="Government">Highly
resistant<option VALUE="Government">Moderately resistant<option VALUE="Others">Resistant<option VALUE="Government">Susceptible<option VALUE="Government">Moderately
susceptible<option VALUE="Government">Highly susceptible</select><span style='font-size:10.0pt;font-family:Arial'>&nbsp;&nbsp;&nbsp;
Rice yellow mottle&nbsp;<select NAME="a_type"><option SELECTED VALUE="1">--<option VALUE="Government">Highly
resistant<option VALUE="Government">Moderately resistant<option VALUE="Others">Resistant<option VALUE="Government">Susceptible<option VALUE="Government">Moderately
susceptible<option VALUE="Government">Highly susceptible</select></div>
<span style='font-size:10.0pt;font-family:Arial'>If others is the option
please specify/comments</span>
<br><input TYPE="text" MAXLENGTH="40" SIZE="50" NAME="parent ontology"></div>
<span style='font-size:10.0pt'>&nbsp;&nbsp; Weed related&nbsp;<S-Display-Name="Affiliation type"></select>
<br><span style='font-size:10.0pt;font-family:Arial'>&nbsp; Broad leaved
weed</span><input TYPE="text" MAXLENGTH="50" SIZE="8" NAME="minit"><span style='font-size:10.0pt;font-family:Arial'>&nbsp;
Grass weed</span><input TYPE="text" MAXLENGTH="50" SIZE="8" NAME="minit"><span style='font-size:10.0pt;font-family:Arial'>&nbsp;
Parasitic weed</span><input TYPE="text" MAXLENGTH="50" SIZE="8" NAME="minit"><span style='font-size:10.0pt;font-family:Arial'>&nbsp;
Sedge weed</span><input TYPE="text" MAXLENGTH="50" SIZE="8" NAME="minit">
<br><span style='font-size:10.0pt;font-family:Arial'>If others is the option
please specify/comments</span>
<br><input TYPE="text" MAXLENGTH="40" SIZE="50" NAME="parent ontology"></td>
</tr>

<tr>
<td style="padding:.75pt .75pt .75pt .75pt">
<div class="MsoNormal"><span style='font-size:10.0pt'>Resistance to abiotic
stress</span><o:p></o:p></div>
</td>

<td style="padding:.75pt .75pt .75pt .75pt"><S-Display-Name="Affiliation type">
<br><span style='font-size:10.0pt'>&nbsp;&nbsp; Temperature stress related
trait&nbsp;<S-Display-Name="Affiliation type"></select>
<br><span style='font-size:10.0pt;font-family:Arial'>&nbsp;&nbsp;&nbsp;&nbsp;
Cold tolerance</span><input TYPE="text" MAXLENGTH="50" SIZE="8" NAME="minit"><span style='font-size:10.0pt;font-family:Arial'>
Heat tolerance</span><input TYPE="text" MAXLENGTH="50" SIZE="8" NAME="minit">
<p><span style='font-size:10.0pt'>&nbsp;&nbsp; Water stress related trait&nbsp;<S-Display-Name="Affiliation type"></select>
<br><span style='font-size:10.0pt'>&nbsp;&nbsp;&nbsp;&nbsp; Flood related
trait&nbsp;<S-Display-Name="Affiliation type"></select>
<br><span style='font-size:10.0pt;font-family:Arial'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
Elongation ability</span><input TYPE="text" MAXLENGTH="50" SIZE="8" NAME="minit"><span style='font-size:10.0pt;font-family:Arial'>
Kneeing ability</span><input TYPE="text" MAXLENGTH="50" SIZE="8" NAME="minit"><span style='font-size:10.0pt;font-family:Arial'>
Submergence tolerance</span><input TYPE="text" MAXLENGTH="50" SIZE="8" NAME="minit">
<br><span style='font-size:10.0pt'>&nbsp;&nbsp;&nbsp;&nbsp; Drought related
trait&nbsp;<S-Display-Name="Affiliation type"></select>
<br><span style='font-size:10.0pt;font-family:Arial'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
Drought recovery&nbsp;</span><input TYPE="text" MAXLENGTH="50" SIZE="8" NAME="minit"><span style='font-size:10.0pt;font-family:Arial'>
Drought resistance</span><input TYPE="text" MAXLENGTH="50" SIZE="8" NAME="minit"><span style='font-size:10.0pt;font-family:Arial'>
Drought sensitivity</span><input TYPE="text" MAXLENGTH="50" SIZE="8" NAME="minit">
<p><span style='font-size:10.0pt'>&nbsp;&nbsp; Chemical stress related
trait&nbsp;<S-Display-Name="Affiliation type"></select>
<br><span style='font-size:10.0pt'>&nbsp;&nbsp;&nbsp;&nbsp; Soil stress
related trait&nbsp;<S-Display-Name="Affiliation type"></select>
<br><span style='font-size:10.0pt;font-family:Arial'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
Acid sensitivity (injury)</span><input TYPE="text" MAXLENGTH="50" SIZE="8" NAME="minit"><span style='font-size:10.0pt;font-family:Arial'>
Alkali sensitivity (injury)</span><input TYPE="text" MAXLENGTH="50" SIZE="8" NAME="minit"><span style='font-size:10.0pt;font-family:Arial'>
Aluminium toxicity sensitivity</span><input TYPE="text" MAXLENGTH="50" SIZE="8" NAME="minit"><span style='font-size:10.0pt;font-family:Arial'>
Iron toxicity sensitivity</span><input TYPE="text" MAXLENGTH="50" SIZE="8" NAME="minit"><span style='font-size:10.0pt;font-family:Arial'>
Phosphorous deficiency sensitivity</span><input TYPE="text" MAXLENGTH="50" SIZE="8" NAME="minit">
<br><span style='font-size:10.0pt;font-family:Arial'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
Saline sensitivity (injury)</span><input TYPE="text" MAXLENGTH="50" SIZE="8" NAME="minit"><span style='font-size:10.0pt;font-family:Arial'>
Zinc deficiency sensitivity</span><input TYPE="text" MAXLENGTH="50" SIZE="8" NAME="minit">
<br><span style='font-size:10.0pt;font-family:Arial'>&nbsp;&nbsp;&nbsp;
Herbicide sensitivity&nbsp;</span><input TYPE="text" MAXLENGTH="50" SIZE="8" NAME="minit">
<br><span style='font-size:10.0pt;font-family:Arial'>&nbsp;&nbsp;&nbsp;
Plant growth regulator sensitivity&nbsp;</span><input TYPE="text" MAXLENGTH="50" SIZE="8" NAME="minit">
<br><span style='font-size:10.0pt;font-family:Arial'>&nbsp;&nbsp;&nbsp;
Sensitivity to other chemicals</span><input TYPE="text" MAXLENGTH="50" SIZE="8" NAME="minit">
<p><span style='font-size:10.0pt;font-family:Arial'>If others is the option
please specify/comments</span>
<br><input TYPE="text" MAXLENGTH="40" SIZE="50" NAME="parent ontology"></td>
</tr>

<tr>
<td style="padding:.75pt .75pt .75pt .75pt">
<div class="MsoNormal"><span style='font-size:10.0pt'>Fertility/sterility</span><o:p></o:p></div>
</td>

<td style="padding:.75pt .75pt .75pt .75pt"><S-Display-Name="Affiliation type">
<br><span style='font-size:10.0pt'>&nbsp;&nbsp; Male sterility trait&nbsp;<S-Display-Name="Affiliation type"></select>
<div class="MsoNormal"><span style='font-size:10.0pt'>&nbsp;&nbsp;&nbsp;
Male sterility type<S-Display-Name="Affiliation type"></span><select NAME="a_type"><option SELECTED VALUE="1">--<option VALUE="Academic">CMS<option VALUE="Corporate">TGMS<option VALUE="Corporate">PGMS<option VALUE="Corporate">TPGMS<option VALUE="Corporate">Genetically
engineered<option VALUE="Corporate">Nuclear type<option VALUE="Others">Others</select><span style='font-size:10.0pt;font-family:Arial'>
Abortion Pattern of male sterile line<S-Display-Name="Affiliation type"></span><select NAME="a_type"><option SELECTED VALUE="1">--<option VALUE="Academic">Pollen
free<option VALUE="Corporate">Abortion at uninucleate stage of pollen<option VALUE="Corporate">Abortion
at binucleate stage of pollen<option VALUE="Corporate">Abortion at trinucleate
stage of pollen<option VALUE="Corporate">Abortion at later stage and&nbsp;
pollen looks like a fertile pollen<option VALUE="Others">Others</select><span style='font-size:10.0pt'>Pollen
sterility<S-Display-Name="Affiliation type"></span><span 







  style='font-size:10.0pt;font-family:Arial'><select NAME="a_type"><option SELECTED VALUE="1">--<option VALUE="Academic">Completely
sterile<option VALUE="Corporate">Highly sterile<option VALUE="Corporate">Sterile<option VALUE="Corporate">Partially
sterile<option VALUE="Corporate">Partially fertile to fertile</select><span style='font-size:10.0pt;font-family:Arial'>Degree
of male sterility&nbsp;</span></div>
<span style='font-size:10.0pt;font-family:Arial'>&nbsp; Female sterility
trait</span><input TYPE="text" MAXLENGTH="50" SIZE="8" NAME="minit"><span style='font-size:10.0pt;font-family:Arial'>
Self incompatible trait</span><input TYPE="text" MAXLENGTH="50" SIZE="8" NAME="minit"><span style='font-size:10.0pt;font-family:Arial'>&nbsp;
Unfilled grain</span><input TYPE="text" MAXLENGTH="50" SIZE="8" NAME="minit">
<br><span style='font-size:10.0pt;font-family:Arial'>Spikelet fertility&nbsp;<select NAME="a_type"><option SELECTED VALUE="1">--<option VALUE="Government">Highly
fertile<option VALUE="Others">Fertile<option VALUE="Government">Partly
sterile<option VALUE="Government">Highly sterile</select><span style='font-size:10.0pt;font-family:Arial'>&nbsp;
Fertility restoration&nbsp;<select NAME="a_type"><option SELECTED VALUE="1">--<option VALUE="Government">Completely
restoration<option VALUE="Government">Insignficant<option VALUE="Others">Less
partially<option VALUE="Government">Partial restoration</select>
<p><span style='font-size:10.0pt;font-family:Arial'>If others is the option
please specify/comments</span>
<br><input TYPE="text" MAXLENGTH="40" SIZE="50" NAME="parent ontology"></td>
</tr>

<tr>
<td><span style='font-size:10.0pt'>Heterosis</span></td>

<td><S-Display-Name="Affiliation type">
<br><span style='font-size:10.0pt;font-family:Arial'>Extant of outcrossing<select NAME="a_type"><option SELECTED VALUE="1">--<option VALUE="Government">Good<option VALUE="Government">Intermediate<option VALUE="Others">Moderate<option VALUE="Government">Poor<option VALUE="Government">Significant</select><span style='font-size:10.0pt;font-family:Arial'>&nbsp;
Glume opening<select NAME="a_type"><option SELECTED VALUE="1">--<option VALUE="Government">Erect<option VALUE="Government">Horizontal<option VALUE="Others">Intermediate<option VALUE="Government">Moderate<option VALUE="Government">Partially
erect</select><span style='font-size:10.0pt;font-family:Arial'>&nbsp;&nbsp;
Stigma exsertion in male sterile lines<select NAME="a_type"><option SELECTED VALUE="1">--<option VALUE="Government">Well
exserted<option VALUE="Others">Moderately well&nbsp; exserted<option VALUE="Government">Just
exserted<option VALUE="Government">Partly exserted<option VALUE="Corporate">Enclosed</select>
<br><span style='font-size:10.0pt;font-family:Arial'>If others is the option
please specify/comments</span>
<br><input TYPE="text" MAXLENGTH="40" SIZE="50" NAME="parent ontology"></td>
</tr>

<tr>
<td style="padding:.75pt .75pt .75pt .75pt">
<div class="MsoNormal"><span style='font-size:10.0pt'>Maturity</span><o:p></o:p></div>
</td>

<td style="padding:.75pt .75pt .75pt .75pt"><S-Display-Name="Affiliation type"><span style='font-size:10.0pt;font-family:Arial'>&nbsp;
Date to flower</span><input TYPE="text" MAXLENGTH="50" SIZE="8" NAME="minit"><S-Display-Name="Affiliation type"><span style='font-size:10.0pt;font-family:Arial'>&nbsp;
Date to heading</span><input TYPE="text" MAXLENGTH="50" SIZE="8" NAME="minit"><S-Display-Name="Affiliation type"><span style='font-size:10.0pt;font-family:Arial'>&nbsp;
Date to maturity</span><input TYPE="text" MAXLENGTH="50" SIZE="8" NAME="minit"><span style='font-size:10.0pt;font-family:Arial'>&nbsp;
Photosensitivity</span><input TYPE="text" MAXLENGTH="50" SIZE="8" NAME="minit">
<p><span style='font-size:10.0pt;font-family:Arial'>If others is the option
please specify/comments</span>
<br><input TYPE="text" MAXLENGTH="40" SIZE="50" NAME="parent ontology"></td>
</tr>

<tr>
<td style="padding:.75pt .75pt .75pt .75pt">
<div class="MsoNormal"><span style='font-size:10.0pt'>Others&nbsp;</span><o:p></o:p></div>
</td>

<td style="padding:.75pt .75pt .75pt .75pt">
<br><span style='font-size:10.0pt'>&nbsp;&nbsp; Height related trait&nbsp;<S-Display-Name="Affiliation type"></select>
<br><span style='font-size:10.0pt;font-family:Arial'>Plant height&nbsp;<select NAME="a_type"><option SELECTED VALUE="1">--<option VALUE="Government">Semidwarf<option VALUE="Government">Intermediate<option VALUE="Corporate">Tall</select><span style='font-size:10.0pt;font-family:Arial'>
Seedling height</span><input TYPE="text" MAXLENGTH="50" SIZE="8" NAME="minit">
<br><span style='font-size:10.0pt'>&nbsp;&nbsp; Vigor related trait&nbsp;<S-Display-Name="Affiliation type"></select>
<br><span style='font-size:10.0pt;font-family:Arial'> Seedling vigor&nbsp;<select NAME="a_type"><option SELECTED VALUE="1">--<option VALUE="Government">Extra
vigorous<option VALUE="Others"> Vigorous<option VALUE="Government">Normal<option VALUE="Government">Weak<option VALUE="Corporate">Very
weak</select><span style='font-size:10.0pt;font-family:Arial'> Vegetative
vigor&nbsp;<select NAME="a_type"><option SELECTED VALUE="1">--<option VALUE="Government">Extra
vigorous<option VALUE="Others"> Vigorous<option VALUE="Government">Normal<option VALUE="Government">Weak<option VALUE="Corporate">Very
weak</select>
<br><span style='font-size:10.0pt;font-family:Arial'>If others is the option
please specify/comments</span>
<br><input TYPE="text" MAXLENGTH="40" SIZE="50" NAME="parent ontology"></td>
</tr>

<tr>
<td style="padding:.75pt .75pt .75pt .75pt">
<div class="MsoNormal"><![if !supportEmptyParas]><![endif]><o:p></o:p></div>
</td>

<td style="padding:.75pt .75pt .75pt .75pt">
<div class="MsoNormal"><![if !supportEmptyParas]><![endif]><o:p></o:p></div>
</td>
</tr>

<tr>
<td style="padding:.75pt .75pt .75pt .75pt">
<div class="MsoNormal"><span style='font-size:10.0pt;font-family:Arial'><b>Morphological
trait</b></span>
<br><span style='font-size:10.0pt;font-family:Arial'>&nbsp; Evidence&nbsp;<select NAME="a_type"><option SELECTED VALUE="1">--<option VALUE="Government">Reference1<option VALUE="Others">Reference2<option VALUE="Government">Reference3<option VALUE="Government">Reference4&nbsp;</select></div>
</td>

<td style="padding:.75pt .75pt .75pt .75pt">
<div class="MsoNormal"><![if !supportEmptyParas]><![endif]><o:p></o:p></div>
</td>
</tr>

<tr>
<td style="padding:.75pt .75pt .75pt .75pt">
<div class="MsoNormal"><span style='font-size:10.0pt'>(a) Root morphology</span><o:p></o:p></div>
</td>

<td style="padding:.75pt .75pt .75pt .75pt"><span style='font-size:10.0pt;font-family:Arial'>&nbsp;&nbsp;
Root length</span><input TYPE="text" MAXLENGTH="50" SIZE="8" NAME="minit"><span style='font-size:10.0pt;font-family:Arial'>&nbsp;
Root weight</span><input TYPE="text" MAXLENGTH="50" SIZE="8" NAME="minit"><span style='font-size:10.0pt;font-family:Arial'>&nbsp;&nbsp;
Root/shoot ratio</span><input TYPE="text" MAXLENGTH="50" SIZE="8" NAME="minit"><span style='font-size:10.0pt;font-family:Arial'>&nbsp;&nbsp;
Root thickness</span><input TYPE="text" MAXLENGTH="50" SIZE="8" NAME="minit"><span style='font-size:10.0pt;font-family:Arial'>&nbsp;&nbsp;
Root penetration index</span><input TYPE="text" MAXLENGTH="50" SIZE="8" NAME="minit"><span style='font-size:10.0pt;font-family:Arial'>&nbsp;&nbsp;
Root branching profile&nbsp;</span><input TYPE="text" MAXLENGTH="50" SIZE="8" NAME="minit">
<br><span style='font-size:10.0pt;font-family:Arial'>If others is the option
please specify/comments</span>
<br><input TYPE="text" MAXLENGTH="40" SIZE="50" NAME="parent ontology"></td>
</tr>

<tr>
<td style="padding:.75pt .75pt .75pt .75pt">
<div class="MsoNormal"><span style='font-size:10.0pt'>(b) Stem morphology</span><o:p></o:p></div>
</td>

<td WIDTH="10%" style="width:10.0%;padding:.75pt .75pt .75pt .75pt"><span style='font-size:10.0pt;font-family:Arial'>Culm
length</span><input TYPE="text" MAXLENGTH="50" SIZE="8" NAME="minit"><span style='font-size:10.0pt;font-family:Arial'>&nbsp;
Culm number</span><input TYPE="text" MAXLENGTH="50" SIZE="8" NAME="minit"><span style='font-size:10.0pt;font-family:Arial'>&nbsp;
Culm angle<select NAME="a_type"><option SELECTED VALUE="1">--<option VALUE="Government">Erect<option VALUE="Others">Intermediate<option VALUE="Government">Open<option VALUE="Government">Spreading<option VALUE="Corporate">Procumbent</select><span style='font-size:10.0pt;font-family:Arial'>
Basal intenode diameter</span><input TYPE="text" MAXLENGTH="50" SIZE="8" NAME="minit"><span style='font-size:10.0pt;font-family:Arial'>&nbsp;
Culm strength<select NAME="a_type"><option SELECTED VALUE="1">--<option SELECTED VALUE="1">Strong<option VALUE="Others">Moderately
strong<option VALUE="Government">Intermediate<option VALUE="Government">Weak<option VALUE="Corporate">Very
weak</select><span style='font-size:10.0pt;font-family:Arial'>&nbsp; Culm
internode color&nbsp;<select NAME="a_type"><option SELECTED VALUE="1">--<option VALUE="Government">Green<option VALUE="Government">Light
gold<option VALUE="Others">Purple lines<option VALUE="Government">Purple</select><span style='font-size:10.0pt;font-family:Arial'>&nbsp;
Internode length</span><input TYPE="text" MAXLENGTH="50" SIZE="8" NAME="minit"><span style='font-size:10.0pt;font-family:Arial'>&nbsp;
Stem thickness</span><input TYPE="text" MAXLENGTH="50" SIZE="8" NAME="minit"><span style='font-size:10.0pt;font-family:Arial'>&nbsp;
Vascular tissue</span><input TYPE="text" MAXLENGTH="50" SIZE="8" NAME="minit"><span style='font-size:10.0pt;font-family:Arial'>
Culm internode colour&nbsp;</span><input TYPE="text" MAXLENGTH="50" SIZE="8" NAME="minit"><span style='font-size:10.0pt;font-family:Arial'>&nbsp;&nbsp;
Nodal tillering</span><input TYPE="text" MAXLENGTH="50" SIZE="8" NAME="minit"><span style='font-size:10.0pt;font-family:Arial'>&nbsp;
Nodal rooting</span><input TYPE="text" MAXLENGTH="50" SIZE="8" NAME="minit">
<br><span style='font-size:10.0pt;font-family:Arial'>If others is the option
please specify/comments</span>
<br><input TYPE="text" MAXLENGTH="40" SIZE="50" NAME="parent ontology"></td>
</tr>

<tr>
<td style="padding:.75pt .75pt .75pt .75pt">
<div class="MsoNormal"><span style='font-size:10.0pt'>(c) Leaf morphology</span><o:p></o:p></div>
</td>

<td style="padding:.75pt .75pt .75pt .75pt"><span style='font-size:10.0pt;font-family:Arial'>Leaf
length</span><input TYPE="text" MAXLENGTH="50" SIZE="8" NAME="minit"><span style='font-size:10.0pt;font-family:Arial'>&nbsp;&nbsp;&nbsp;
Leaf width<select NAME="a_type"><option SELECTED VALUE="1">--<option VALUE="Government">Broad<option VALUE="Government">Narrow<option VALUE="Others">Very
narrow</select><span style='font-size:10.0pt;font-family:Arial'>&nbsp;&nbsp;
Leaf blade pubescence<select NAME="a_type"><option SELECTED VALUE="1">--<option VALUE="Government">Glabrous<option VALUE="Government">Intermediate<option VALUE="Others">Pubescent</select><span style='font-size:10.0pt;font-family:Arial'>&nbsp;&nbsp;
Leaf blade color<select NAME="a_type"><option SELECTED VALUE="1">--<option VALUE="Government">Light
green<option VALUE="Government">Green<option VALUE="Others">Dark green)<option VALUE="Government">Purple
tips<option VALUE="Government">Purple margins<option VALUE="Academic">Purple
blotch, purple mixed with green<option VALUE="Government">Purple</select><span style='font-size:10.0pt;font-family:Arial'>&nbsp;&nbsp;
Basal leaf sheath color<select NAME="a_type"><option SELECTED VALUE="1">--<option VALUE="Government">Green<option VALUE="Government">Purple
lines<option VALUE="Others">Light purple<option VALUE="Government">Purple</select>
<br><span style='font-size:10.0pt;font-family:Arial'>&nbsp;&nbsp; Leaf
angle<select NAME="a_type"><option SELECTED VALUE="1">--<option VALUE="Government">Erect<option VALUE="Government">Horizontal<option VALUE="Corporate">Droopy</select><span style='font-size:10.0pt;font-family:Arial'>&nbsp;&nbsp;
Flag leaf angle<select NAME="a_type"><option SELECTED VALUE="1">--<option VALUE="Government">Erect<option VALUE="Government">Intermediate<option VALUE="Government">Horizontal<option VALUE="Government">Descending&nbsp;</select><span style='font-size:10.0pt;font-family:Arial'>&nbsp;
Ligule length</span><input TYPE="text" MAXLENGTH="50" SIZE="8" NAME="minit"><span style='font-size:10.0pt;font-family:Arial'>&nbsp;&nbsp;
Ligule color<select NAME="a_type"><option SELECTED VALUE="1">--<option VALUE="Government">White<option VALUE="Government">Purple
lines<option VALUE="Others">Purple</select><span style='font-size:10.0pt;font-family:Arial'>&nbsp;&nbsp;
Ligule shape<select NAME="a_type"><option SELECTED VALUE="1">--<option VALUE="Government">Acute
to acuminate<option VALUE="Government">2-cleft<option VALUE="Others">Truncate</select><span style='font-size:10.0pt;font-family:Arial'>&nbsp;&nbsp;
Collar color<select NAME="a_type"><option SELECTED VALUE="1">--<option VALUE="Government">Light
green<option VALUE="Government">Green<option VALUE="Others">Purple</select>
<br><span style='font-size:10.0pt;font-family:Arial'>&nbsp; Auricle color&nbsp;<select NAME="a_type"><option SELECTED VALUE="1">--<option VALUE="Government">Light
green<option VALUE="Government">Purple</select><span style='font-size:10.0pt;font-family:Arial'>&nbsp;&nbsp;
Leaf thickness</span><input TYPE="text" MAXLENGTH="50" SIZE="8" NAME="minit"><span style='font-size:10.0pt;font-family:Arial'>&nbsp;&nbsp;
Leaf structure</span><input TYPE="text" MAXLENGTH="50" SIZE="8" NAME="minit"><span style='font-size:10.0pt;font-family:Arial'>&nbsp;&nbsp;&nbsp;
Secondary leaf sheath elongation</span><input TYPE="text" MAXLENGTH="50" SIZE="8" NAME="minit">
<br><span style='font-size:10.0pt;font-family:Arial'>If others is the option
please specify/comments</span>
<br><input TYPE="text" MAXLENGTH="40" SIZE="50" NAME="parent ontology"></td>
</tr>

<tr>
<td style="padding:.75pt .75pt .75pt .75pt">
<div class="MsoNormal"><span style='font-size:10.0pt'>(d) Panicle morphology</span><o:p></o:p></div>
</td>

<td style="padding:.75pt .75pt .75pt .75pt"><span style='font-size:10.0pt;font-family:Arial'>&nbsp;&nbsp;&nbsp;&nbsp;
Number of panicles&nbsp;</span><input TYPE="text" MAXLENGTH="50" SIZE="8" NAME="minit"><span style='font-size:10.0pt;font-family:Arial'>&nbsp;&nbsp;&nbsp;
Panicle length</span><input TYPE="text" MAXLENGTH="50" SIZE="8" NAME="minit"><span style='font-size:10.0pt;font-family:Arial'>&nbsp;&nbsp;
Panicle type<select NAME="a_type"><option SELECTED VALUE="1">--<option VALUE="Government">Compact<option VALUE="Government">Intermediate<option VALUE="Corporate">Open</select><span style='font-size:10.0pt;font-family:Arial'>&nbsp;&nbsp;&nbsp;
Panicle weight</span><input TYPE="text" MAXLENGTH="50" SIZE="8" NAME="minit"><span style='font-size:10.0pt;font-family:Arial'>&nbsp;&nbsp;
Panicle axis<select NAME="a_type"><option SELECTED VALUE="1">--<option VALUE="Government">Straight<option VALUE="Government">Droopy</select>
<br><span style='font-size:10.0pt;font-family:Arial'>&nbsp;&nbsp; Secondary
branching of panicles<select NAME="a_type"><option SELECTED VALUE="1">--<option VALUE="Government">Absent<option VALUE="Government">Light<option VALUE="Government">Heavy<option VALUE="Others">Clustering</select><span style='font-size:10.0pt;font-family:Arial'>&nbsp;&nbsp;
Awning<select NAME="a_type"><option SELECTED VALUE="1">--<option VALUE="Government">Absent<option VALUE="Government">Short
and partly awned<option VALUE="Government">Short and fully awned<option VALUE="Government">Long
and
partly awned<option VALUE="Corporate">Long and fully awned</select><span style='font-size:10.0pt;font-family:Arial'>&nbsp;&nbsp;
Awn color<select NAME="a_type"><option SELECTED VALUE="1">--<option VALUE="Government">Awnless<option VALUE="Government">Straw<option VALUE="Government">Gold<option VALUE="Others">Brown,
tawny<option VALUE="Government">Red<option VALUE="Government">Purple<option VALUE="Academic">Black</select><span style='font-size:10.0pt;font-family:Arial'>&nbsp;&nbsp;
Apiculus color<select NAME="a_type"><option SELECTED VALUE="1">--<option VALUE="Government">White<option VALUE="Government">Straw<option VALUE="Others">Brown,
tawny<option VALUE="Government">Red<option VALUE="Government">Red apex<option VALUE="Academic">Purple<option VALUE="Government">Purple
apex</select>
<br><span style='font-size:10.0pt;font-family:Arial'>&nbsp;&nbsp; Stigma
color<select NAME="a_type"><option SELECTED VALUE="1">--<option VALUE="Government">White<option VALUE="Government">Light
green<option VALUE="Others">Yellow<option VALUE="Government">Light purple<option VALUE="Government">Purple</select><span style='font-size:10.0pt;font-family:Arial'>&nbsp;&nbsp;
Lemma and palea color<select NAME="a_type"><option SELECTED VALUE="1">--<option VALUE="Government">Straw<option VALUE="Government">Gold
and gold furrows on straw background<option VALUE="Government">Brown spots
on straw<option VALUE="Others">B&nbsp; rown furrows on straw<option VALUE="Government">Brown,
tawny<option VALUE="Government">Raddish to light purple<option VALUE="Academic">Purple
spots on straw<option VALUE="Government">Purple furrows on straw<option VALUE="Corporate">Purple<option VALUE="Corporate">Black<option VALUE="Corporate">White</select><span style='font-size:10.0pt;font-family:Arial'>&nbsp;&nbsp;
Sterile lemma length<select NAME="a_type"><option SELECTED VALUE="1">--<option VALUE="Government">Absent<option VALUE="Government">Short<option VALUE="Others">Medium<option VALUE="Government">Long<option VALUE="Government">Extra
long, equal to or linger than the lemma<option VALUE="Corporate">Asymmetrical</select>
<br><span style='font-size:10.0pt;font-family:Arial'>&nbsp;&nbsp; Lemma
and Palea pubescence<select NAME="a_type"><option SELECTED VALUE="1">--<option VALUE="Government">Glabrous<option VALUE="Government">Hairs
on lemma keel<option VALUE="Others">Hairs on upper portion<option VALUE="Government">Short
hairs<option VALUE="Government">Long hairs, velvety</select><span style='font-size:10.0pt;font-family:Arial'>&nbsp;&nbsp;
Sterile lemma color<select NAME="a_type"><option SELECTED VALUE="1">--<option VALUE="Government">Straw,
yellow<option VALUE="Government">Gold<option VALUE="Others">Red<option VALUE="Government">Purple</select><span style='font-size:10.0pt;font-family:Arial'>&nbsp;&nbsp;
Sterile lemma length<select NAME="a_type"><option SELECTED VALUE="1">--<option VALUE="Government">Absent<option VALUE="Government">Short<option VALUE="Others">Medium<option VALUE="Government">Long<option VALUE="Government">Extra
long, equal to or linger than the lemma<option VALUE="Corporate">Asymmetrical</select>
<br>&nbsp;
<p><span style='font-size:10.0pt;font-family:Arial'>If others is the option
please specify/comments</span>
<br><input TYPE="text" MAXLENGTH="40" SIZE="50" NAME="parent ontology"></td>
</tr>

<tr>
<td style="padding:.75pt .75pt .75pt .75pt">
<div class="MsoNormal"><span style='font-size:10.0pt'>(e) Grain morphology</span><o:p></o:p></div>
</td>

<td style="padding:.75pt .75pt .75pt .75pt"><span style='font-size:10.0pt;font-family:Arial'>100-Grain
weight</span><input TYPE="text" MAXLENGTH="50" SIZE="8" NAME="minit"><span style='font-size:10.0pt;font-family:Arial'>&nbsp;&nbsp;
Grain length&nbsp;</span><input TYPE="text" MAXLENGTH="50" SIZE="8" NAME="minit"><span style='font-size:10.0pt;font-family:Arial'>&nbsp;&nbsp;&nbsp;
Grain size</span><input TYPE="text" MAXLENGTH="50" SIZE="8" NAME="minit"><span style='font-size:10.0pt;font-family:Arial'>&nbsp;
Grain thickness</span><input TYPE="text" MAXLENGTH="50" SIZE="8" NAME="minit"><span style='font-size:10.0pt;font-family:Arial'>&nbsp;&nbsp;
Grain width</span><input TYPE="text" MAXLENGTH="50" SIZE="8" NAME="minit"><span style='font-size:10.0pt;font-family:Arial'>&nbsp;&nbsp;
Seed coat color<select NAME="a_type"><option SELECTED VALUE="1">--<option VALUE="Government">White<option VALUE="Government">Light
brown<option VALUE="Others">Speckled brown<option VALUE="Government">Brown<option VALUE="Government">Red<option VALUE="Academic">Variable
purple<option VALUE="Government">Purple</select>
<br><span style='font-size:10.0pt;font-family:Arial'>If others is the option
please specify/comments</span>
<br><input TYPE="text" MAXLENGTH="40" SIZE="50" NAME="parent ontology"></td>
</tr>

<tr>
<td style="padding:.75pt .75pt .75pt .75pt">
<div class="MsoNormal"><![if !supportEmptyParas]><![endif]><o:p></o:p></div>
</td>

<td style="padding:.75pt .75pt .75pt .75pt">
<div class="MsoNormal"><![if !supportEmptyParas]><![endif]><o:p></o:p></div>
</td>
</tr>

<tr>
<td style="padding:.75pt .75pt .75pt .75pt">
<div class="MsoNormal"><span style='font-size:10.0pt;font-family:Arial'><b>Anatomical
Features&nbsp;</b></span></div>
<span style='font-size:10.0pt;font-family:Arial'>&nbsp; Evidence&nbsp;<select NAME="a_type"><option SELECTED VALUE="1">--<option VALUE="Government">Reference1<option VALUE="Others">Reference2<option VALUE="Government">Reference3<option VALUE="Government">Reference4&nbsp;</select>
<br><span style='font-size:10.0pt;font-family:Arial'>(if any recorded)</span></td>

<td style="padding:.75pt .75pt .75pt .75pt">
<div class="MsoNormal"><textarea ROWS="2" COLS="40" NAME="Ref details"></textarea></div>
</td>
</tr>

<tr>
<td></td>

<td></td>
</tr>

<tr>
<td><span style='font-size:10.0pt;font-family:Arial'>Linkage map information</span>
<br><span style='font-size:10.0pt;font-family:Arial'>&nbsp; Evidence&nbsp;<select NAME="a_type"><option SELECTED VALUE="1">--<option VALUE="Government">Reference1<option VALUE="Others">Reference2<option VALUE="Government">Reference3<option VALUE="Government">Reference4&nbsp;</select></td>

<td>
<div class="MsoNormal"><span style='font-size:10.0pt;font-family:Arial'>&nbsp;
Chromosome&nbsp; no.&nbsp;<S-Display-Name="Affiliation type"></span><span 







  style='font-size:10.0pt'><select NAME="a_type"><option SELECTED VALUE="1">--<option VALUE="Government">1<option VALUE="Government">2<option VALUE="Others">3<option VALUE="Government">4<option VALUE="Government">5<option VALUE="Academic">6<option VALUE="Government">7<option VALUE="Corporate">8<option VALUE="Corporate">9<option VALUE="Corporate">10<option VALUE="Corporate">11<option VALUE="Corporate">12</select>
<br><span style='font-size:10.0pt'>&nbsp; Location on chromosome (cM)&nbsp;</span><input TYPE="text" MAXLENGTH="30" SIZE="30" NAME="cM position"></div>
<span style='font-size:10.0pt'>&nbsp; Linked marker(s)&nbsp;</span><input TYPE="text" MAXLENGTH="30" SIZE="30" NAME="cM position">
<br><span style='font-size:10.0pt;font-family:Arial'>&nbsp; If others is
the option please specify/comments</span>
<br><input TYPE="text" MAXLENGTH="40" SIZE="50" NAME="parent ontology"></td>
</tr>

<tr>
<td><span style='font-size:10.0pt'>Sequence information</span>
<br><span style='font-size:10.0pt;font-family:Arial'>&nbsp; Evidence&nbsp;<select NAME="a_type"><option SELECTED VALUE="1">--<option VALUE="Government">Reference1<option VALUE="Others">Reference2<option VALUE="Government">Reference3<option VALUE="Government">Reference4&nbsp;</select></td>

<td><span style='font-size:10.0pt'>Allele&nbsp;</span><input TYPE="text" MAXLENGTH="30" SIZE="30" NAME="cM position"><span style='font-size:10.0pt'>Functional
nucleotide polymorphism (FNP)&nbsp;</span><input TYPE="text" MAXLENGTH="30" SIZE="30" NAME="cM position">
<br><span style='font-size:10.0pt'>TAGS&nbsp;</span><input TYPE="text" MAXLENGTH="30" SIZE="30" NAME="cM position">
<br><span style='font-size:10.0pt;font-family:Arial'>&nbsp; If others is
the option please specify/comments</span>
<br><input TYPE="text" MAXLENGTH="40" SIZE="50" NAME="parent ontology"></td>
</tr>

<tr>
<td><span style='font-size:10.0pt'>Candidate gene and QTL information&nbsp;</span>
<br><span style='font-size:10.0pt;font-family:Arial'>&nbsp; Evidence&nbsp;<select NAME="a_type"><option SELECTED VALUE="1">--<option VALUE="Government">Reference1<option VALUE="Others">Reference2<option VALUE="Government">Reference3<option VALUE="Government">Reference4&nbsp;</select></td>

<td><span style='font-size:10.0pt'>Candidate gene accession number</span><input TYPE="text" MAXLENGTH="30" SIZE="30" NAME="cM position">
<br><span style='font-size:10.0pt'>QTL information accession number</span><input TYPE="text" MAXLENGTH="30" SIZE="30" NAME="cM position"></td>
</tr>

<tr>
<td><span style='font-size:10.0pt'>Comparative Map Information</span></td>

<td>
<div class="MsoNormal"><span style='font-size:10.0pt'>Putative homolog<S-Display-Name="Comparative Map Ac."><input TYPE="text" MAXLENGTH="15" SIZE="15" NAME="fname"></span><span style='font-size:10.0pt'>Crop<S-Display-Name="Affiliation type"></span><span 







  style='font-size:10.0pt;font-family:Arial'><select NAME="a_type"><option SELECTED VALUE="1">--<option VALUE="Government">Rice<option VALUE="Government">Maize<option VALUE="Others">Sorghum<option VALUE="Government">Barley<option VALUE="Government">Pearmillet<option VALUE="Academic">Wheat<option VALUE="Government">Oat<option VALUE="Corporate">Sugarcane<option VALUE="Corporate">Arabidopsis</select></span><span style='font-size:10.0pt;font-family:Arial'>&nbsp;
Evidence&nbsp;<select NAME="a_type"><option SELECTED VALUE="1">--<option VALUE="Government">Reference1<option VALUE="Others">Reference2<option VALUE="Government">Reference3<option VALUE="Government">Reference4&nbsp;</select>
<br><span style='font-size:10.0pt'>Putative homolog<S-Display-Name="Comparative Map Ac."><input TYPE="text" MAXLENGTH="15" SIZE="15" NAME="fname"></span><span style='font-size:10.0pt'>Crop<S-Display-Name="Affiliation type"></span><span 







  style='font-size:10.0pt;font-family:Arial'><select NAME="a_type"><option SELECTED VALUE="1">--<option VALUE="Government">Rice<option VALUE="Government">Maize<option VALUE="Others">Sorghum<option VALUE="Government">Barley<option VALUE="Government">Pearmillet<option VALUE="Academic">Wheat<option VALUE="Government">Oat<option VALUE="Corporate">Sugarcane<option VALUE="Corporate">Arabidopsis</select></span><span style='font-size:10.0pt;font-family:Arial'>&nbsp;
Evidence&nbsp;<select NAME="a_type"><option SELECTED VALUE="1">--<option VALUE="Government">Reference1<option VALUE="Others">Reference2<option VALUE="Government">Reference3<option VALUE="Government">Reference4&nbsp;</select>
<br><span style='font-size:10.0pt'>Putative homolog<S-Display-Name="Comparative Map Ac."><input TYPE="text" MAXLENGTH="15" SIZE="15" NAME="fname"></span><span style='font-size:10.0pt'>Crop<S-Display-Name="Affiliation type"></span><span 







  style='font-size:10.0pt;font-family:Arial'><select NAME="a_type"><option SELECTED VALUE="1">--<option VALUE="Government">Rice<option VALUE="Government">Maize<option VALUE="Others">Sorghum<option VALUE="Government">Barley<option VALUE="Government">Pearmillet<option VALUE="Academic">Wheat<option VALUE="Government">Oat<option VALUE="Corporate">Sugarcane<option VALUE="Corporate">Arabidopsis</select></span><span style='font-size:10.0pt;font-family:Arial'>&nbsp;
Evidence&nbsp;<select NAME="a_type"><option SELECTED VALUE="1">--<option VALUE="Government">Reference1<option VALUE="Others">Reference2<option VALUE="Government">Reference3<option VALUE="Government">Reference4&nbsp;</select>
<br><span style='font-size:10.0pt'>Putative homolog<S-Display-Name="Comparative Map Ac."><input TYPE="text" MAXLENGTH="15" SIZE="15" NAME="fname"></span><span style='font-size:10.0pt'>Crop<S-Display-Name="Affiliation type"></span><span 







  style='font-size:10.0pt;font-family:Arial'><select NAME="a_type"><option SELECTED VALUE="1">--<option VALUE="Government">Rice<option VALUE="Government">Maize<option VALUE="Others">Sorghum<option VALUE="Government">Barley<option VALUE="Government">Pearmillet<option VALUE="Academic">Wheat<option VALUE="Government">Oat<option VALUE="Corporate">Sugarcane<option VALUE="Corporate">Arabidopsis</select></span><span style='font-size:10.0pt;font-family:Arial'>&nbsp;
Evidence&nbsp;<select NAME="a_type"><option SELECTED VALUE="1">--<option VALUE="Government">Reference1<option VALUE="Others">Reference2<option VALUE="Government">Reference3<option VALUE="Government">Reference4&nbsp;</select>
<br><span style='font-size:10.0pt'>Putative homolog<S-Display-Name="Comparative Map Ac."><input TYPE="text" MAXLENGTH="15" SIZE="15" NAME="fname"></span><span style='font-size:10.0pt'>Crop<S-Display-Name="Affiliation type"></span><span 







  style='font-size:10.0pt;font-family:Arial'><select NAME="a_type"><option SELECTED VALUE="1">--<option VALUE="Government">Rice<option VALUE="Government">Maize<option VALUE="Others">Sorghum<option VALUE="Government">Barley<option VALUE="Government">Pearmillet<option VALUE="Academic">Wheat<option VALUE="Government">Oat<option VALUE="Corporate">Sugarcane<option VALUE="Corporate">Arabidopsis</select></span><span style='font-size:10.0pt;font-family:Arial'>&nbsp;
Evidence&nbsp;<select NAME="a_type"><option SELECTED VALUE="1">--<option VALUE="Government">Reference1<option VALUE="Others">Reference2<option VALUE="Government">Reference3<option VALUE="Government">Reference4&nbsp;</select>
<br><span style='font-size:10.0pt'>Putative homolog<S-Display-Name="Comparative Map Ac."><input TYPE="text" MAXLENGTH="15" SIZE="15" NAME="fname"></span><span style='font-size:10.0pt'>Crop<S-Display-Name="Affiliation type"></span><span 







  style='font-size:10.0pt;font-family:Arial'><select NAME="a_type"><option SELECTED VALUE="1">--<option VALUE="Government">Rice<option VALUE="Government">Maize<option VALUE="Others">Sorghum<option VALUE="Government">Barley<option VALUE="Government">Pearmillet<option VALUE="Academic">Wheat<option VALUE="Government">Oat<option VALUE="Corporate">Sugarcane<option VALUE="Corporate">Arabidopsis</select></span><span style='font-size:10.0pt;font-family:Arial'>&nbsp;
Evidence&nbsp;<select NAME="a_type"><option SELECTED VALUE="1">--<option VALUE="Government">Reference1<option VALUE="Others">Reference2<option VALUE="Government">Reference3<option VALUE="Government">Reference4&nbsp;</select></div>
</td>
</tr>

<tr>
<td style="padding:.75pt .75pt .75pt .75pt">
<div class="MsoNormal"><span style='font-size:10.0pt;font-family:Arial'>Reference&nbsp;</span></div>
</td>

<td style="padding:.75pt .75pt .75pt .75pt">
<div class="MsoNormal"><span style='font-size:10.0pt;font-family:Arial'>Reference
category</span><span style='font-size:10.0pt;font-family:Arial'><select NAME="Ref category"><option VALUE="1">--<option SELECTED VALUE="1">Published<option VALUE="2">Personal
communication<option VALUE="2">Curator</select>Ref. curator&nbsp;<select NAME="Ref Curator"><option VALUE="1">--<option VALUE="1">JN<option SELECTED VALUE="1">SRM</select>(select
only when opted the Curator option in Ref. category)</span>
<br><span style='font-size:10.0pt;font-family:Arial'>Ref. Source</span><select NAME="ref source"><option VALUE="1">--<option SELECTED VALUE="1">PubMed<option VALUE="2">ISBN<option VALUE="2">Website<option VALUE="2">Database<option VALUE="2">Others</select>
<br><span style='font-size:10.0pt;font-family:Arial'>Ref. Details</span>
<br><span style='font-size:10.0pt'>&nbsp; Reference1<S-Display-Name="Affiliation type"></select>
<br><span style='font-size:10.0pt'>Title<input TYPE="text" MAXLENGTH="90" SIZE="90" NAME="cM position">
<br><span style='font-size:10.0pt'>Journal<input TYPE="text" MAXLENGTH="90" SIZE="90" NAME="cM position">
<br><span style='font-size:10.0pt'>Author<input TYPE="text" MAXLENGTH="75" SIZE="75" NAME="cM position">Year</span><input TYPE="text" MAXLENGTH="25" SIZE="25" NAME="cM position">
<br><span style='font-size:10.0pt'>&nbsp; Reference2<S-Display-Name="Affiliation type"></select>
<br><span style='font-size:10.0pt'>Title<input TYPE="text" MAXLENGTH="90" SIZE="90" NAME="cM position">
<br><span style='font-size:10.0pt'>Journal<input TYPE="text" MAXLENGTH="90" SIZE="90" NAME="cM position">
<br><span style='font-size:10.0pt'>Author<input TYPE="text" MAXLENGTH="75" SIZE="75" NAME="cM position">Year</span><input TYPE="text" MAXLENGTH="25" SIZE="25" NAME="cM position">
<br><span style='font-size:10.0pt'>&nbsp; Reference3<S-Display-Name="Affiliation type"></select>
<br><span style='font-size:10.0pt'>Title<input TYPE="text" MAXLENGTH="90" SIZE="90" NAME="cM position">
<br><span style='font-size:10.0pt'>Journal<input TYPE="text" MAXLENGTH="90" SIZE="90" NAME="cM position">
<br><span style='font-size:10.0pt'>Author<input TYPE="text" MAXLENGTH="75" SIZE="75" NAME="cM position">Year</span><input TYPE="text" MAXLENGTH="25" SIZE="25" NAME="cM position">
<br><span style='font-size:10.0pt'>&nbsp; Reference4<S-Display-Name="Affiliation type"></select>
<br><span style='font-size:10.0pt'>Title<input TYPE="text" MAXLENGTH="90" SIZE="90" NAME="cM position">
<br><span style='font-size:10.0pt'>Journal<input TYPE="text" MAXLENGTH="90" SIZE="90" NAME="cM position">
<br><span style='font-size:10.0pt'>Author<input TYPE="text" MAXLENGTH="75" SIZE="75" NAME="cM position">Year</span><input TYPE="text" MAXLENGTH="25" SIZE="25" NAME="cM position"></div>
</td>
</tr>

<tr>
<td style="padding:.75pt .75pt .75pt .75pt">
<div class="MsoNormal"><span style='font-size:10.0pt'>Comments</span></div>
</td>

<td style="padding:.75pt .75pt .75pt .75pt">
<div class="MsoNormal"><textarea ROWS="5" COLS="60" NAME="comments"></textarea></div>
</td>
</tr>

<tr>
<td style="padding:.75pt .75pt .75pt .75pt">
<div class="MsoNormal"><span style='font-size:10.0pt'>Pictures of the mutant</span></div>
</td>

<td style="padding:.75pt .75pt .75pt .75pt">
<div class="MsoNormal"><span style='font-size:10.0pt;font-family:Arial'>Click
"<b>Browse</b>" to find files then "<b>Upload</b>" Your results will be
displayed here.</span></div>
<span style='font-size:10.0pt;font-family:Arial;color:red'>Note:</span><span 







  style='font-size:10.0pt;font-family:Arial'>
Make sure your files are named correctly and are in JPEG format. Easy Upload
will replace existing files of the same name.</span>
<br><form action="/filemanager/upload" method=post enctype="multipart/form-data">

<p class="MsoNormal"><span style='display:none;mso-hide:all'><input TYPE="hidden" NAME="directory"><input TYPE="hidden" NAME="dispopts" VALUE="html, gif, jpg, other;;*"></span>
<br><input type=file name=userfile size=40>
<br><![if !supportLineBreakNewLine]>
<br><![endif]><input type=file name=userfile size=40><o:p></o:p>
<br><input type=file name=userfile size=40 ACTION="/filemanager/upload"







  ENCTYPE="multipart/form-data" METHOD=post>
<br><span style='font-size:10.0pt;font-family:Arial'>&nbsp; Evidence&nbsp;<select NAME="a_type"><option SELECTED VALUE="1">--<option VALUE="Government">Reference1<option VALUE="Others">Reference2<option VALUE="Government">Reference3<option VALUE="Government">Reference4&nbsp;</select>
<center>
<p><input TYPE="submit" ACTION="/filemanager/upload" VALUE="Upload Files" ENCTYPE="multipart/form-data" METHOD="post" NAME="op-upload"><input TYPE="reset" VALUE="  Clear  "></center>

<p><input TYPE="checkbox" NAME="lowercase"><span style='font-size:10.0pt;







  font-family:Arial'>Automatically
convert filenames to lowercase</span>
<br><input TYPE="checkbox" NAME="addhtml"><span style='font-size:10.0pt;font-family:







  Arial'>Automatically
change ".JPEG" extensions to ".jpeg"&nbsp;</span>
<br></form></td>
</tr>

<tr>
<td style="padding:.75pt .75pt .75pt .75pt">
<div class="MsoNormal"><![if !supportEmptyParas]><![endif]><o:p></o:p></div>
</td>

<td style="padding:.75pt .75pt .75pt .75pt">
<div class="MsoNormal"><![if !supportEmptyParas]><![endif]><o:p></o:p></div>
</td>
</tr>

<tr>
<td style="padding:.75pt .75pt .75pt .75pt">
<div class="MsoNormal"><![if !supportEmptyParas]><![endif]><o:p></o:p></div>
</td>

<td style="padding:.75pt .75pt .75pt .75pt">
<div class="MsoNormal"><![if !supportEmptyParas]><![endif]><o:p></o:p></div>
</td>
</tr>
</table>

<center>
<p><span style='font-size:10.0pt'>Please try to submit online, if this
is not possible you can<a href="http://www.gramene.org/plant%20ontologies/2001mutant_sub.jpg">
click </a>here to print a copy</span>
<br><span style='font-size:10.0pt'>For suggestion please mail to <a href="../../Documents and Settings/jn66/Desktop/mail%20to:%20jn66@cornell.edu">Dr.
Junjian Ni</a> / <a href="../../Documents and Settings/jn66/Desktop/mail%20to:%20pj37@cornell.edu">Dr.
Pankaj Jaiswal</a></span>
<br><span style='font-size:10.0pt'>Copy right <a href="http://www.gramene.org">www.gramene.org</a></span></center>


<p style="margin-bottom:12.0pt"><![if !supportEmptyParas]><![endif]><o:p></o:p>
<br></form></div>

</body>
</html>