<?xml version='1.0' encoding='UTF-8'?><?xml-stylesheet href="http://www.blogger.com/styles/atom.css" type="text/css"?><feed xmlns='http://www.w3.org/2005/Atom' xmlns:openSearch='http://a9.com/-/spec/opensearchrss/1.0/' xmlns:georss='http://www.georss.org/georss' xmlns:gd='http://schemas.google.com/g/2005' xmlns:thr='http://purl.org/syndication/thread/1.0'><id>tag:blogger.com,1999:blog-7915064724252482343</id><updated>2011-04-22T09:11:15.269+05:30</updated><title type='text'>AtoZ</title><subtitle type='html'>(Your Search Ends Here)</subtitle><link rel='http://schemas.google.com/g/2005#feed' type='application/atom+xml' href='http://a2izat.blogspot.com/feeds/posts/default'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/7915064724252482343/posts/default?max-results=100'/><link rel='alternate' type='text/html' href='http://a2izat.blogspot.com/'/><link rel='hub' href='http://pubsubhubbub.appspot.com/'/><author><name>bal</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><generator version='7.00' uri='http://www.blogger.com'>Blogger</generator><openSearch:totalResults>8</openSearch:totalResults><openSearch:startIndex>1</openSearch:startIndex><openSearch:itemsPerPage>100</openSearch:itemsPerPage><entry><id>tag:blogger.com,1999:blog-7915064724252482343.post-3492343939634569146</id><published>2008-04-05T23:37:00.000+05:30</published><updated>2008-04-05T23:38:52.874+05:30</updated><title type='text'>How to create Table using JAVA</title><content type='html'>&lt;div&gt;import java.awt.*;&lt;br /&gt;import java.awt.event.*;&lt;br /&gt;import javax.swing.*; &lt;br /&gt;&lt;br /&gt;class SimpleTableExample extends JFrame&lt;br /&gt;{&lt;br /&gt;&lt;br /&gt;private JPanel  topPanel;&lt;br /&gt;private JTable table;&lt;br /&gt;private JScrollPane scrollPane; &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;public SimpleTableExample()&lt;br /&gt;{&lt;br /&gt;&lt;br /&gt;setTitle( "Simple Table  Application" );&lt;br /&gt;setSize( 300, 200 );&lt;br /&gt;setBackground( Color.gray ); &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;topPanel = new JPanel();&lt;br /&gt;topPanel.setLayout( new BorderLayout()  );&lt;br /&gt;getContentPane().add( topPanel );&lt;br /&gt;&lt;br /&gt;// Create columns names &lt;br /&gt;String columnNames[] = { "Column 1", "Column 2", "Column 3" };&lt;br /&gt;&lt;br /&gt;//  Create some data&lt;br /&gt;String dataValues[][] =&lt;br /&gt;{&lt;br /&gt;{ "12", "234", "67" }, &lt;br /&gt;{ "-123", "43", "853" },&lt;br /&gt;{ "93", "89.2", "109" },&lt;br /&gt;{ "279", "9033",  "3092" }&lt;br /&gt;};&lt;br /&gt;&lt;br /&gt;// Create a new table instance&lt;br /&gt;table = new JTable(  dataValues, columnNames );&lt;br /&gt;&lt;br /&gt;// Add the table to a scrolling pane &lt;br /&gt;scrollPane = new JScrollPane( table );&lt;br /&gt;topPanel.add( scrollPane,  BorderLayout.CENTER );&lt;br /&gt;}&lt;br /&gt;&lt;br /&gt;// Main entry point for this example &lt;br /&gt;public static void main( String args[] )&lt;br /&gt;{&lt;br /&gt;// Create an instance of  the test application&lt;br /&gt;SimpleTableExample mainFrame = new  SimpleTableExample();&lt;br /&gt;mainFrame.setVisible( true );&lt;br /&gt;}&lt;br /&gt;}&lt;/div&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/7915064724252482343-3492343939634569146?l=a2izat.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://a2izat.blogspot.com/feeds/3492343939634569146/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=7915064724252482343&amp;postID=3492343939634569146&amp;isPopup=true' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/7915064724252482343/posts/default/3492343939634569146'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/7915064724252482343/posts/default/3492343939634569146'/><link rel='alternate' type='text/html' href='http://a2izat.blogspot.com/2008_04_05_archive.html#3492343939634569146' title='How to create Table using JAVA'/><author><name>bal</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-7915064724252482343.post-1074998630935665615</id><published>2008-04-05T23:34:00.000+05:30</published><updated>2008-04-05T23:35:54.826+05:30</updated><title type='text'>JAVA Code for Home Rental Management</title><content type='html'>&lt;div&gt;mport javax.swing.*;&lt;br /&gt;import java.awt.*;&lt;br /&gt;import java.awt.event.*; &lt;br /&gt;import java.sql.*;&lt;br /&gt;&lt;br /&gt;public class DataBase extends JFrame implements  ActionListener&lt;br /&gt;{&lt;br /&gt;JButton  btnAdd,btnNew,btnFind,btnDelete,btnCancel,btnView;&lt;br /&gt;JLabel  lblHouseNo,lblName,lblDate,lblAmount,lblempty;&lt;br /&gt;JTextField  txtHouseNo,txtName,txtDate,txtAmount;&lt;br /&gt;JPanel panel1,panel2,panel3; &lt;br /&gt;ImageIcon im;&lt;br /&gt;Container con=getContentPane();&lt;br /&gt;Connection cont=null; &lt;br /&gt;Statement st=null;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;public DataBase()&lt;br /&gt;{&lt;br /&gt;super("House  Rental Management");&lt;br /&gt;setSize(600,500);&lt;br /&gt;setLocation(70,30); &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;panel1=new JPanel();&lt;br /&gt;panel1.setLayout(new GridLayout(5,2)); &lt;br /&gt;lblHouseNo=new JLabel("Enter House Number:");&lt;br /&gt;lblName=new JLabel("Enter  Name:");&lt;br /&gt;lblDate=new JLabel("Enter Date:");&lt;br /&gt;lblAmount=new JLabel("Enter  Amount:");&lt;br /&gt;//lblAdvance=new JLabel("Enter Advance:"); &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;txtHouseNo=new JTextField(15);&lt;br /&gt;txtName=new JTextField(15); &lt;br /&gt;txtDate=new JTextField(15);&lt;br /&gt;txtAmount=new JTextField(15); &lt;br /&gt;//txtAdvance=new JTextField(15); &lt;br /&gt;&lt;br /&gt;panel1.add(lblHouseNo);panel1.add(txtHouseNo); &lt;br /&gt;panel1.add(lblName);panel1.add(txtName); &lt;br /&gt;panel1.add(lblDate);panel1.add(txtDate); &lt;br /&gt;panel1.add(lblAmount);panel1.add(txtAmount); &lt;br /&gt;//panel1.add(lblAdvance);panel1.add(txtAdvance);&lt;br /&gt;&lt;br /&gt;panel2=new  JPanel();&lt;br /&gt;panel2.setLayout(new FlowLayout());&lt;br /&gt;&lt;br /&gt;btnAdd=new  JButton("ADD");&lt;br /&gt;btnAdd.addActionListener(this); &lt;br /&gt;btnAdd.setActionCommand("ADD");&lt;br /&gt;&lt;br /&gt;btnNew=new JButton("NEW"); &lt;br /&gt;btnNew.addActionListener(this);&lt;br /&gt;btnNew.setActionCommand("NEW"); &lt;br /&gt;&lt;br /&gt;btnFind=new JButton("FIND");&lt;br /&gt;btnFind.addActionListener(this); &lt;br /&gt;btnFind.setActionCommand("FIND");&lt;br /&gt;&lt;br /&gt;btnDelete=new JButton("DELETE"); &lt;br /&gt;btnDelete.addActionListener(this);&lt;br /&gt;btnDelete.setActionCommand("DELETE"); &lt;br /&gt;&lt;br /&gt;btnCancel=new JButton("CANCEL");&lt;br /&gt;btnCancel.addActionListener(this); &lt;br /&gt;btnCancel.setActionCommand("CANCEL");&lt;br /&gt;&lt;br /&gt;btnView=new JButton("VIEW"); &lt;br /&gt;btnView.addActionListener(this);&lt;br /&gt;btnView.setActionCommand("VIEW"); &lt;br /&gt;&lt;br /&gt;im=new ImageIcon("house.jpg");&lt;br /&gt;lblempty=new JLabel(im); &lt;br /&gt;&lt;br /&gt;JLabel el=new JLabel("Developed by BALU"); &lt;br /&gt;el.setForeground(Color.red);&lt;br /&gt;&lt;br /&gt;panel2.add(btnAdd); &lt;br /&gt;panel2.add(btnNew);&lt;br /&gt;panel2.add(btnFind);&lt;br /&gt;panel2.add(btnDelete); &lt;br /&gt;panel2.add(btnView);&lt;br /&gt;panel2.add(btnCancel);&lt;br /&gt;&lt;br /&gt;panel3=new JPanel(); &lt;br /&gt;panel3.add(lblempty);&lt;br /&gt;panel3.add(el); &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;con.add(panel1,BorderLayout.NORTH); &lt;br /&gt;con.add(panel3,BorderLayout.CENTER);&lt;br /&gt;con.add(panel2,BorderLayout.SOUTH); &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;show();&lt;br /&gt;}&lt;br /&gt;&lt;br /&gt;public void actionPerformed(ActionEvent ae) &lt;br /&gt;{&lt;br /&gt;String str=ae.getActionCommand(); &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;if(str.equals("ADD")&amp;amp;&amp;amp;txtHouseNo!=null)&lt;br /&gt;{&lt;br /&gt;try &lt;br /&gt;{&lt;br /&gt;initializeConnection();&lt;br /&gt;int no =  Integer.parseInt(txtHouseNo.getText());&lt;br /&gt;String name= txtName.getText(); &lt;br /&gt;String date = txtDate.getText();&lt;br /&gt;int amount =  Integer.parseInt(txtAmount.getText());&lt;br /&gt;insertRecord(no,name,date,amount); &lt;br /&gt;closeConnection();&lt;br /&gt;&lt;br /&gt;}&lt;br /&gt;catch(Exception e)&lt;br /&gt;{ &lt;br /&gt;JOptionPane.showMessageDialog(this,new String("Please! Enter all the  Details:"),"",JOptionPane.INFORMATION_MESSAGE);&lt;br /&gt;}&lt;br /&gt;&lt;br /&gt;}&lt;br /&gt;else  if(str.equals("NEW"))&lt;br /&gt;{&lt;br /&gt;txtHouseNo.setText("");&lt;br /&gt;txtName.setText(""); &lt;br /&gt;txtDate.setText("");&lt;br /&gt;txtAmount.setText(""); &lt;br /&gt;txtHouseNo.requestFocus();&lt;br /&gt;}&lt;br /&gt;&lt;br /&gt;else if(str.equals("FIND"))&lt;br /&gt;{ &lt;br /&gt;try&lt;br /&gt;{&lt;br /&gt;int hNo =Integer.parseInt(JOptionPane.showInputDialog(this,new  String("Enter House No :"),"Find House...",JOptionPane.QUESTION_MESSAGE)); &lt;br /&gt;initializeConnection();&lt;br /&gt;&lt;br /&gt;try&lt;br /&gt;{&lt;br /&gt;ResultSet myRs =  getRecords("Select * from House where HouseNo="+hNo);&lt;br /&gt;&lt;br /&gt;String message = "  House No : "+myRs.getInt(1);&lt;br /&gt;message = message + "\n Name : " +  myRs.getString(2);&lt;br /&gt;message = message + "\n Date :" + myRs.getDate(3); &lt;br /&gt;message = message + "\n Amount :" + myRs.getInt(4); &lt;br /&gt;JOptionPane.showMessageDialog(this,message,"House....",JOptionPane.INFORMATION_MESSAGE); &lt;br /&gt;&lt;br /&gt;}&lt;br /&gt;catch(Exception e) { JOptionPane.showMessageDialog(this,new  String("Enter! Valid HouseNo:"),"",JOptionPane.INFORMATION_MESSAGE);&lt;br /&gt;} &lt;br /&gt;&lt;br /&gt;closeConnection();&lt;br /&gt;&lt;br /&gt;}&lt;br /&gt;catch(NumberFormatException nfe)&lt;br /&gt;{ &lt;br /&gt;JOptionPane.showMessageDialog(this,new String("Fool! Enter a  Number:"),"",JOptionPane.INFORMATION_MESSAGE);&lt;br /&gt;}&lt;br /&gt;&lt;br /&gt;}&lt;br /&gt;else  if(str.equals("DELETE"))&lt;br /&gt;{&lt;br /&gt;try&lt;br /&gt;{&lt;br /&gt;int hoNo  =Integer.parseInt(JOptionPane.showInputDialog(this,new String("Enter House No to  delete :"),"delete House...",JOptionPane.QUESTION_MESSAGE)); &lt;br /&gt;initializeConnection();&lt;br /&gt;&lt;br /&gt;try&lt;br /&gt;{&lt;br /&gt;st.executeUpdate("Delete from  House where HouseNo="+hoNo);&lt;br /&gt;&lt;br /&gt;}&lt;br /&gt;catch(Exception e)&lt;br /&gt;{&lt;br /&gt;} &lt;br /&gt;closeConnection();&lt;br /&gt;&lt;br /&gt;}&lt;br /&gt;catch(NumberFormatException nfe)&lt;br /&gt;{ &lt;br /&gt;JOptionPane.showMessageDialog(this,new String("Record  deleted:"),"",JOptionPane.INFORMATION_MESSAGE);&lt;br /&gt;}&lt;br /&gt;}&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;else  if(str.equals("CANCEL"))&lt;br /&gt;{&lt;br /&gt;System.exit(0);&lt;br /&gt;}&lt;br /&gt;&lt;br /&gt;else  if(str.equals("VIEW"))&lt;br /&gt;{&lt;br /&gt;try&lt;br /&gt;{&lt;br /&gt;new TableDeneme();&lt;br /&gt;} &lt;br /&gt;catch(Exception e)&lt;br /&gt;{&lt;br /&gt;}&lt;br /&gt;&lt;br /&gt;}&lt;br /&gt;}&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;private void  initializeConnection()&lt;br /&gt;{&lt;br /&gt;try&lt;br /&gt;{ &lt;br /&gt;Class.forName("sun.jdbc.odbc.JdbcOdbcDriver");&lt;br /&gt;cont =  DriverManager.getConnection("jdbc:odbc:balu","","");&lt;br /&gt;st =  cont.createStatement(ResultSet.TYPE_SCROLL_SENSITIVE,ResultSet.CONCUR_UPDATABLE); &lt;br /&gt;}&lt;br /&gt;catch(Exception e) { }&lt;br /&gt;}&lt;br /&gt;&lt;br /&gt;private ResultSet  getRecords(String query) throws SQLException&lt;br /&gt;{&lt;br /&gt;ResultSet  rs=st.executeQuery(query);&lt;br /&gt;rs.first();&lt;br /&gt;return rs;&lt;br /&gt;}&lt;br /&gt;&lt;br /&gt;private  void insertRecord(int houseNo,String name,String d,int amt)&lt;br /&gt;{&lt;br /&gt;name = "'"  + name +"'";&lt;br /&gt;d = "'" + d +"'";&lt;br /&gt;String query = "insert into House values  (" + houseNo +","+name+","+d+","+amt+")";&lt;br /&gt;&lt;br /&gt;try&lt;br /&gt;{ &lt;br /&gt;st.executeQuery(query);&lt;br /&gt;} catch (Exception e) { } &lt;br /&gt;JOptionPane.showMessageDialog(this,new String(" Record  Added..."),"House....",JOptionPane.INFORMATION_MESSAGE);&lt;br /&gt;}&lt;br /&gt;&lt;br /&gt;private  void closeConnection()&lt;br /&gt;{&lt;br /&gt;try&lt;br /&gt;{&lt;br /&gt;if (cont!=null)&lt;br /&gt;{ &lt;br /&gt;cont.close();&lt;br /&gt;st.close();&lt;br /&gt;}&lt;br /&gt;}&lt;br /&gt;catch(Exception e) { }&lt;br /&gt;} &lt;br /&gt;public static void main(String args[])&lt;br /&gt;{&lt;br /&gt;DataBase db=new DataBase(); &lt;br /&gt;}&lt;br /&gt;}&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;Code for TableDeneme: &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;import java.awt.event.*;&lt;br /&gt;import java.awt.Window; &lt;br /&gt;import java.awt.*;&lt;br /&gt;import java.sql.*;&lt;br /&gt;import java.io.*;&lt;br /&gt;import  java.util.Vector;&lt;br /&gt;import java.util.EventObject;&lt;br /&gt;import javax.swing.*; &lt;br /&gt;import javax.swing.table.*;&lt;br /&gt;import javax.swing.event.*; &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;class BasicWindowMonitor extends WindowAdapter{&lt;br /&gt;public void  windowClosing(WindowEvent e)&lt;br /&gt;{&lt;br /&gt;Window w=e.getWindow(); &lt;br /&gt;w.setVisible(false);&lt;br /&gt;w.dispose();&lt;br /&gt;System.exit(0);&lt;br /&gt;}&lt;br /&gt;} &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;class QueryTableModel extends AbstractTableModel{&lt;br /&gt;&lt;br /&gt;Vector  cache;&lt;br /&gt;int colCount;&lt;br /&gt;String[] headers;&lt;br /&gt;Connection db;&lt;br /&gt;Statement  statement;&lt;br /&gt;String currentURL;&lt;br /&gt;String kolon;&lt;br /&gt;&lt;br /&gt;public  QueryTableModel()&lt;br /&gt;{&lt;br /&gt;cache=new Vector();&lt;br /&gt;try{ &lt;br /&gt;Class.forName("sun.jdbc.odbc.JdbcOdbcDriver").newInstance();&lt;br /&gt;} &lt;br /&gt;catch(java.lang.Exception e)&lt;br /&gt;{&lt;br /&gt;System.err.println("Class not found  exception : ");&lt;br /&gt;System.err.println(e.getMessage());&lt;br /&gt;}&lt;br /&gt;} &lt;br /&gt;&lt;br /&gt;public String getColumnName(int i)&lt;br /&gt;&lt;br /&gt;{&lt;br /&gt;return headers[i]; &lt;br /&gt;}&lt;br /&gt;&lt;br /&gt;public int getColumnCount() {return colCount;}&lt;br /&gt;public int  getRowCount() {return cache.size();}&lt;br /&gt;&lt;br /&gt;public Object getValueAt(int  row,int col){&lt;br /&gt;return ((String[])cache.elementAt(row))[col];&lt;br /&gt;} &lt;br /&gt;&lt;br /&gt;public boolean isCellEditable(int row, int col){ return true; } &lt;br /&gt;&lt;br /&gt;public void setValueAt(Object value, int row, int col) {//are you  editing?&lt;br /&gt;/*prepare the query*/&lt;br /&gt;/*you have to change the query to adapt  it to your table*/&lt;br /&gt;if(col==0) kolon="english";&lt;br /&gt;if(col==1)  kolon="turkish";&lt;br /&gt;String s="update House set " + kolon + " = '" +  (String)value + "' where " + kolon + " = '" +  ((String[])cache.elementAt(row))[col] + "'";&lt;br /&gt;System.out.println(s); &lt;br /&gt;/*excecute the query*/&lt;br /&gt;try{&lt;br /&gt;statement.execute(s); &lt;br /&gt;}catch(Exception e){System.out.println("Could not updated");} &lt;br /&gt;&lt;br /&gt;((String[])cache.elementAt(row))[col] = (String)value; &lt;br /&gt;fireTableCellUpdated(row, col);//also update the table&lt;br /&gt;}&lt;br /&gt;/*****end  of abstracttablemodel methodlarý******/&lt;br /&gt;&lt;br /&gt;public void setHostURL(String  url){&lt;br /&gt;if(url.equals(currentURL))&lt;br /&gt;{return;}&lt;br /&gt;closeDB(); &lt;br /&gt;initDB(url);&lt;br /&gt;currentURL=url;&lt;br /&gt;}&lt;br /&gt;&lt;br /&gt;public void setQuery(String  q){&lt;br /&gt;cache= new Vector();&lt;br /&gt;try{&lt;br /&gt;ResultSet  rs=statement.executeQuery(q);&lt;br /&gt;ResultSetMetaData meta=rs.getMetaData(); &lt;br /&gt;colCount=meta.getColumnCount();&lt;br /&gt;headers=new String[colCount];&lt;br /&gt;for  (int h=1;h&lt;=colCount;h++) { headers[h-1]=meta.getColumnName(h); }  while(rs.next()) { String[] record=new String[colCount]; for(int i=0;i&lt;colcount i=""&gt;&lt;br /&gt;{record[i]=rs.getString(i+1);}&lt;br /&gt;cache.addElement(record);&lt;br /&gt;}  //while sonu&lt;br /&gt;&lt;br /&gt;fireTableChanged(null);&lt;br /&gt;} //try sonu &lt;br /&gt;catch(Exception e){&lt;br /&gt;cache=new Vector();&lt;br /&gt;e.printStackTrace();&lt;br /&gt;} &lt;br /&gt;} //setQuery sonu&lt;br /&gt;&lt;br /&gt;public void initDB(String url){&lt;br /&gt;try { &lt;br /&gt;db=DriverManager.getConnection(url);&lt;br /&gt;statement=db.createStatement(); &lt;br /&gt;}catch(Exception e){&lt;br /&gt;System.out.println("Database could not started"); &lt;br /&gt;e.printStackTrace();&lt;br /&gt;}&lt;br /&gt;} //initDB sonu&lt;br /&gt;&lt;br /&gt;public void  closeDB(){&lt;br /&gt;try {&lt;br /&gt;if(statement!= null) {statement.close();}&lt;br /&gt;if(db !=  null) {db.close();}&lt;br /&gt;}catch(Exception e){&lt;br /&gt;System.out.println("Database  could not closed");&lt;br /&gt;e.printStackTrace();&lt;br /&gt;}&lt;br /&gt;} //closeDB sonu &lt;br /&gt;&lt;br /&gt;}&lt;br /&gt;&lt;br /&gt;/* ***********************TableDeneme  class********************* */&lt;br /&gt;/* ***********************TableDeneme  class********************* */&lt;br /&gt;/* ***********************TableDeneme  class********************* */&lt;br /&gt;/* ***********************TableDeneme  class********************* */&lt;br /&gt;&lt;br /&gt;public class TableDeneme extends JFrame { &lt;br /&gt;&lt;br /&gt;QueryTableModel qtm;&lt;br /&gt;JTable table;&lt;br /&gt;JScrollPane scrollpane; &lt;br /&gt;JPanel p1,p2;&lt;br /&gt;JButton jb,can;&lt;br /&gt;ListSelectionModel rowSM; &lt;br /&gt;&lt;br /&gt;public TableDeneme(){&lt;br /&gt;super("Dictionary Window"); &lt;br /&gt;setSize(800,600);&lt;br /&gt;setLocation(70,30);&lt;br /&gt;setBackground(Color.blue); &lt;br /&gt;qtm=new QueryTableModel();&lt;br /&gt;table=new JTable(qtm);&lt;br /&gt;scrollpane=new  JScrollPane(table);&lt;br /&gt;p1=new JPanel();&lt;br /&gt;jb=new JButton("Click Here!"); &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;can=new JButton("CANCEL");&lt;br /&gt;can.setActionCommand("CANCEL"); &lt;br /&gt;p1.add(jb);&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;getContentPane().add(p1,BorderLayout.NORTH); &lt;br /&gt;getContentPane().add(scrollpane,BorderLayout.CENTER); &lt;br /&gt;getContentPane().add(can,BorderLayout.SOUTH);&lt;br /&gt;addWindowListener(new  BasicWindowMonitor());&lt;br /&gt;setSize(500,500);&lt;br /&gt;setVisible(true); &lt;br /&gt;&lt;br /&gt;/*JOptionPane.showMessageDialog(new Frame(),"Press the button,\n" &lt;br /&gt;+"It will fill the table with all records.\n"&lt;br /&gt;+"Then you can edit the  cells.\n"&lt;br /&gt;+"When you select another cell, the previous one will  updated.\n\n"&lt;br /&gt;&lt;br /&gt;+"suhan@turkserve.net");*/ &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;can.addActionListener(new ActionListener(){&lt;br /&gt;public void  actionPerformed(ActionEvent e){&lt;br /&gt;String str=e.getActionCommand(); &lt;br /&gt;if(str.equals("CANCEL"))&lt;br /&gt;{&lt;br /&gt;System.exit(0);&lt;br /&gt;}&lt;br /&gt;}&lt;br /&gt;}); &lt;br /&gt;&lt;br /&gt;jb.addActionListener(new ActionListener(){&lt;br /&gt;public void  actionPerformed(ActionEvent e){ &lt;br /&gt;&lt;br /&gt;qtm.setHostURL("jdbc:odbc:;DRIVER=Microsoft Access Driver  (*.mdb);UID=admin;UserCommitSync=Yes;Threads=3;SafeTransactions=0;PageTimeout=5;MaxScanRows=8;MaxBufferSize=2048;FIL=MS  Access;DriverId=281;DBQ=HouseDB.mdb");&lt;br /&gt;qtm.setQuery("select * from House  where HouseNo orderby ASC");&lt;br /&gt;}&lt;br /&gt;});&lt;br /&gt;&lt;br /&gt;}&lt;br /&gt;&lt;br /&gt;public static void  main(String[] args){&lt;br /&gt;TableDeneme td=new TableDeneme();&lt;br /&gt;} &lt;br /&gt;}&lt;/colcount&gt;&lt;/div&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/7915064724252482343-1074998630935665615?l=a2izat.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://a2izat.blogspot.com/feeds/1074998630935665615/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=7915064724252482343&amp;postID=1074998630935665615&amp;isPopup=true' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/7915064724252482343/posts/default/1074998630935665615'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/7915064724252482343/posts/default/1074998630935665615'/><link rel='alternate' type='text/html' href='http://a2izat.blogspot.com/2008_04_05_archive.html#1074998630935665615' title='JAVA Code for Home Rental Management'/><author><name>bal</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-7915064724252482343.post-2305422671716107288</id><published>2008-03-09T19:01:00.008+05:30</published><updated>2008-03-09T19:26:38.345+05:30</updated><title type='text'>Sample Cover Letter and Resume(IT) for Fresher</title><content type='html'>&lt;p style="margin-bottom: 0in; line-height: 200%; text-align: center;"&gt;&lt;b&gt;&lt;span style="color: rgb(0, 102, 0);"&gt;Cover Letter&lt;/span&gt;&lt;br /&gt;&lt;/b&gt;&lt;/p&gt; &lt;p style="margin-bottom: 0in; line-height: 200%;"&gt;&lt;b&gt;RESPECTED SIR / MADAM,&lt;/b&gt;&lt;/p&gt;  &lt;p style="margin-bottom: 0in; line-height: 200%;" align="justify"&gt;&lt;b&gt; &lt;/b&gt;I&lt;b&gt; &lt;/b&gt;have so mesmerized with your company’s record and profile. It incorporates all the things that my delusion work place has. So I wish to apply for the recruitment at your ward.&lt;/p&gt;  &lt;p style="margin-bottom: 0in; line-height: 200%;" align="justify"&gt; Here I have enclosed my curriculum vitae (CV) in application to the recruitment at your concern; I trust that you would accept my enclosed resume.&lt;/p&gt;  &lt;p style="margin-bottom: 0in; line-height: 200%;" align="justify"&gt; Even though I’m a fresher, I’m confident that my education and expertise will satisfy your search. I shall contribute my best to my work in order to drive out my passion and profession distinct from others to uphold the pride of my union by applying innovative thoughts intelligently and learning by practice.&lt;/p&gt;  &lt;p style="text-indent: 0.5in; margin-bottom: 0in; line-height: 200%;" align="justify"&gt; Hence, I look forward to a personal interview with your personnel’s owing that you would be come back with a positive reply.&lt;/p&gt;         &lt;div style="text-align: center;"&gt;&lt;b&gt;                                                                        Thank you,&lt;/b&gt;&lt;br /&gt;&lt;/div&gt; &lt;div style="text-align: left;"&gt;&lt;b&gt;Place: &lt;/b&gt;&lt;/div&gt; &lt;p style="margin-top: 0.08in; margin-bottom: 0in; line-height: 150%;"&gt; &lt;/p&gt; &lt;p style="margin-bottom: 0in; text-align: left;"&gt;&lt;b&gt;Date:              &lt;br /&gt;&lt;/b&gt;&lt;/p&gt; &lt;div style="text-align: right;"&gt;&lt;b&gt;  Yours truly,&lt;/b&gt;&lt;/div&gt;  &lt;p style="margin-bottom: 0in;" align="right"&gt;&lt;/p&gt; &lt;p style="margin-left: 4.5in; text-indent: 0.5in; margin-bottom: 0in; text-align: right;"&gt; &lt;b&gt;(Your Name.)&lt;/b&gt;&lt;/p&gt;&lt;span style="font-weight: bold;"&gt;&lt;br /&gt;&lt;br /&gt;&lt;/span&gt; &lt;div style="text-align: center;"&gt; &lt;/div&gt; &lt;div style="text-align: center;"&gt; &lt;div style="text-align: center;"&gt;&lt;span style="color: rgb(0, 102, 0); font-weight: bold;"&gt;&lt;span style="font-style: italic;"&gt;RESUME&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;&lt;/div&gt;     &lt;p class="western" style="margin-left: -0.06in; margin-bottom: 0in; line-height: 100%;" align="justify"&gt; &lt;/p&gt;       &lt;p class="western" style="margin-left: -0.06in; margin-bottom: 0in; line-height: 100%;" align="justify"&gt;&lt;br /&gt;&lt;span style="font-family:Times New Roman,serif;"&gt;&lt;span style="font-size:100%;"&gt;&lt;span lang="en-US"&gt;&lt;span style="font-family:Times New Roman,serif;"&gt;&lt;span style="color: rgb(0, 0, 0);"&gt;&lt;b&gt;Your NAME                                                                         &lt;/b&gt;&lt;br /&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/p&gt; &lt;div style="text-align: right;"&gt;&lt;span style="font-family:Times New Roman,serif;"&gt;&lt;span style="font-size:100%;"&gt;&lt;span lang="en-US"&gt;&lt;span style="font-family:Times New Roman,serif;"&gt;&lt;span style="color: rgb(0, 0, 0);"&gt; Mobile No: +XX-XXXXXXXXXX&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt; &lt;div style="text-align: right;"&gt;  &lt;/div&gt; &lt;p style="margin-left: -0.13in; margin-right: -0.25in; text-indent: 0.13in; margin-bottom: 0in; line-height: 100%; text-align: right;"&gt; &lt;span style="color: rgb(0, 0, 0);"&gt;                                                                                &lt;span style="font-family:Times New Roman,serif;"&gt;&lt;span style="font-size:100%;"&gt;&lt;span lang="en-US"&gt;&lt;span style="font-family:Times New Roman,serif;"&gt;                                                                                                    E-mail : XXXXXXXXXXXXXX&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;    &lt;p style="background: rgb(191, 191, 191) none repeat scroll 0% 50%; -moz-background-clip: initial; -moz-background-origin: initial; -moz-background-inline-policy: initial; margin-left: -0.13in; margin-right: -0.06in; text-indent: 0in; margin-bottom: 0in; line-height: 100%;" align="justify" lang="en-US"&gt; &lt;span style="color: rgb(0, 0, 0);"&gt;&lt;span style="font-family:Times New Roman,serif;"&gt;&lt;span style="font-size:100%;"&gt;&lt;b&gt;Career Intention:&lt;/b&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;    &lt;p style="margin-left: -0.13in; text-indent: 0.13in; margin-bottom: 0in; line-height: 110%;" align="justify" lang="en-US"&gt; &lt;span style="color: rgb(0, 0, 0);"&gt;&lt;span style="font-family:Times New Roman,serif;"&gt;&lt;span style="font-size:100%;"&gt;Provide Your Carrier Objective Here..................&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;    &lt;p style="background: rgb(191, 191, 191) none repeat scroll 0% 50%; -moz-background-clip: initial; -moz-background-origin: initial; -moz-background-inline-policy: initial; margin-left: -0.13in; margin-right: -0.06in; text-indent: 0in; margin-bottom: 0in; line-height: 100%;" align="justify" lang="en-US"&gt; &lt;span style="color: rgb(0, 0, 0);"&gt;&lt;span style="font-family:Times New Roman,serif;"&gt;&lt;span style="font-size:100%;"&gt;&lt;b&gt;Profile:&lt;/b&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;    &lt;ul&gt; &lt;li&gt;&lt;p style="margin-bottom: 0in; line-height: 110%;" align="justify"&gt;&lt;span style="font-family:Times New Roman,serif;"&gt;&lt;span style="font-size:100%;"&gt;&lt;span lang="en-US"&gt;&lt;span style="font-family:Times New Roman,serif;"&gt;&lt;span style="color: rgb(0, 0, 0);"&gt;A  Fresh &lt;b&gt;Your Course&lt;/b&gt;(Example Engineering) graduate(Provide  Your  Branch)&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;  &lt;/li&gt;&lt;li&gt;&lt;p style="margin-bottom: 0in; line-height: 110%;" align="justify"&gt;&lt;span style="font-family:Times New Roman,serif;"&gt;&lt;span style="font-size:100%;"&gt;&lt;span lang="en-US"&gt;&lt;span style="font-family:Times New Roman,serif;"&gt;&lt;span style="color: rgb(0, 0, 0);"&gt;&lt;span style="text-decoration: none;"&gt;Excellent  Verbal &lt;/span&gt;and Written communication skills.&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;  &lt;/li&gt;&lt;li&gt;     &lt;p class="western" style="margin-left: -0.13in; text-indent: 0.13in; margin-bottom: 0in; line-height: 110%;" align="justify" lang="en-US"&gt;  &lt;span style="color: rgb(0, 0, 0);"&gt;&lt;span style="font-family:Times New Roman,serif;"&gt;&lt;span style="font-size:100%;"&gt;Add  your Additional(specific) skills&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;&lt;/p&gt;  &lt;/li&gt; &lt;/ul&gt;        &lt;p style="margin-left: 0.1in; margin-top: 0.07in; margin-bottom: 0.07in; line-height: 100%;" align="left"&gt;  &lt;/p&gt; &lt;p style="background: rgb(191, 191, 191) none repeat scroll 0% 50%; -moz-background-clip: initial; -moz-background-origin: initial; -moz-background-inline-policy: initial; margin-left: -0.13in; margin-right: -0.06in; text-indent: 0in; margin-bottom: 0in; line-height: 100%;" align="justify" lang="en-US"&gt; &lt;span style="color: rgb(0, 0, 0);"&gt;&lt;span style="font-family:Times New Roman,serif;"&gt;&lt;span style="font-size:100%;"&gt;&lt;b&gt;Skill Set:&lt;/b&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/p&gt; &lt;p style="margin-left: 0.1in; margin-top: 0.07in; margin-bottom: 0.07in; line-height: 100%;" align="left"&gt;&lt;br /&gt;&lt;span style="font-family:Times New Roman,serif;"&gt;&lt;span style="font-size:100%;"&gt;&lt;span lang="en-US"&gt;&lt;span style="font-family:Times New Roman,serif;"&gt;&lt;span style="color: rgb(0, 0, 0);"&gt;Langu&lt;span style=""&gt;ages               :   C, C++,JAVA, J2EE,.Net.&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;   &lt;p style="margin-left: 0.1in; margin-top: 0.07in; margin-bottom: 0.07in; line-height: 150%;" align="left" lang="en-US"&gt; &lt;span style="color: rgb(0, 0, 0);"&gt;&lt;span style="font-family:Times New Roman,serif;"&gt;&lt;span style="font-size:100%;"&gt;Web Designing    :          XML,DHTML,HTML, Photo Shop.&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="western" style="margin-bottom: 0in; line-height: 150%;" align="left"&gt; &lt;span style="color: rgb(0, 0, 0);"&gt;  &lt;span style="font-family:Times New Roman,serif;"&gt;&lt;span style="font-size:100%;"&gt;&lt;span style=""&gt;&lt;span lang="en-US"&gt;&lt;span style="font-family:Times New Roman,serif;"&gt;Operating Systems     :     Windows XP,98,Linux.&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="western" style="margin-bottom: 0in; line-height: 150%;" align="left"&gt; &lt;span style="color: rgb(0, 0, 0);"&gt;  &lt;span style="font-family:Times New Roman,serif;"&gt;&lt;span style="font-size:100%;"&gt;&lt;span style=""&gt;&lt;span lang="en-US"&gt;&lt;span style="font-family:Times New Roman,serif;"&gt;Database                             :       Oracle&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="western" style="margin-bottom: 0in; line-height: 150%;" align="left" lang="en-US"&gt; &lt;span style="color: rgb(0, 0, 0);"&gt;&lt;span style="font-family:Times New Roman,serif;"&gt;&lt;span style="font-size:100%;"&gt; (You can add what you want..........)&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p style="background: rgb(191, 191, 191) none repeat scroll 0% 50%; -moz-background-clip: initial; -moz-background-origin: initial; -moz-background-inline-policy: initial; margin-left: -0.13in; margin-right: -0.06in; text-indent: 0in; margin-bottom: 0in; line-height: 100%;" align="justify" lang="en-US"&gt; &lt;span style="color: rgb(0, 0, 0);"&gt;&lt;span style="font-family:Times New Roman,serif;"&gt;&lt;span style="font-size:100%;"&gt;&lt;b&gt;Educational Qualifications:&lt;/b&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;    &lt;p style="margin-left: -0.13in; text-indent: 0.13in; margin-bottom: 0in; line-height: 110%;" align="justify"&gt; &lt;span style="color: rgb(0, 0, 0);"&gt; &lt;span style="font-family:Times New Roman,serif;"&gt;&lt;span style="font-size:100%;"&gt;&lt;span lang="en-US"&gt;&lt;span style="font-family:Times New Roman,serif;"&gt;Your school name,percentage,year of passing,etc...................&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;      &lt;p class="western" style="margin-bottom: 0in; line-height: 100%;" align="left" lang="en-US"&gt; &lt;/p&gt; &lt;p style="background: rgb(191, 191, 191) none repeat scroll 0% 50%; -moz-background-clip: initial; -moz-background-origin: initial; -moz-background-inline-policy: initial; margin-left: -0.13in; margin-right: -0.06in; text-indent: 0in; margin-bottom: 0in; line-height: 100%;" align="justify" lang="en-US"&gt; &lt;span style="color: rgb(0, 0, 0);"&gt;&lt;span style="font-family:Times New Roman,serif;"&gt;&lt;span style="font-size:100%;"&gt;&lt;b&gt;PPersonal Strength:&lt;/b&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;   &lt;ul&gt; &lt;li&gt;&lt;p class="western" style="margin-bottom: 0in; line-height: 100%;" align="left" lang="en-US"&gt;  &lt;span style="color: rgb(0, 0, 0);"&gt;&lt;span style="font-family:Times New Roman,serif;"&gt;&lt;span style="font-size:100%;"&gt;Your  positive strengths&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/p&gt; &lt;/li&gt; &lt;/ul&gt;      &lt;p class="western" style="margin-bottom: 0in; line-height: 100%;" align="left" lang="en-US"&gt; &lt;/p&gt; &lt;p style="background: rgb(191, 191, 191) none repeat scroll 0% 50%; -moz-background-clip: initial; -moz-background-origin: initial; -moz-background-inline-policy: initial; margin-left: -0.13in; margin-right: -0.06in; text-indent: 0in; margin-bottom: 0in; line-height: 100%;" align="justify" lang="en-US"&gt; &lt;span style="color: rgb(0, 0, 0);"&gt;&lt;span style="font-family:Times New Roman,serif;"&gt;&lt;span style="font-size:100%;"&gt;&lt;b&gt;Project Details:&lt;/b&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/p&gt; &lt;ul&gt;&lt;li&gt;&lt;p class="western" style="margin-top: 0.07in; margin-bottom: 0.07in; line-height: 100%;" align="left" lang="en-US"&gt;&lt;span style="color: rgb(0, 0, 0);"&gt;&lt;span style="font-family:Times New Roman,serif;"&gt;&lt;span style="font-size:100%;"&gt;Your  under graduate or post graduate project details. Provide your  Project name,technology used,description,explanation.&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/p&gt; &lt;/li&gt; &lt;/ul&gt;  &lt;p style="background: rgb(191, 191, 191) none repeat scroll 0% 50%; -moz-background-clip: initial; -moz-background-origin: initial; -moz-background-inline-policy: initial; margin-left: -0.13in; margin-right: -0.06in; text-indent: 0in; margin-bottom: 0in; line-height: 110%;" align="justify" lang="en-US"&gt; &lt;span style="color: rgb(0, 0, 0);"&gt;&lt;span style="font-family:Times New Roman,serif;"&gt;&lt;span style="font-size:100%;"&gt;&lt;b&gt;Extra-Curricular&lt;/b&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;  &lt;ul&gt; &lt;li&gt;&lt;p class="western" style="margin-top: 0.07in; margin-bottom: 0.07in; line-height: 110%;" align="justify" lang="en-US"&gt;  &lt;span style="color: rgb(0, 0, 0);"&gt;&lt;span style="font-family:Times New Roman,serif;"&gt;&lt;span style="font-size:100%;"&gt;Provide  your Extra Curricular activities here...(Example:Sports)&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/p&gt; &lt;/li&gt; &lt;/ul&gt;  &lt;p style="background: rgb(191, 191, 191) none repeat scroll 0% 50%; -moz-background-clip: initial; -moz-background-origin: initial; -moz-background-inline-policy: initial; margin-left: -0.13in; margin-right: -0.06in; text-indent: 0in; margin-bottom: 0in; line-height: 100%;" align="justify" lang="en-US"&gt; &lt;span style="color: rgb(0, 0, 0);"&gt;&lt;span style="font-family:Times New Roman,serif;"&gt;&lt;span style="font-size:100%;"&gt;&lt;b&gt;Personal Details:&lt;/b&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;  &lt;ul&gt; &lt;li&gt;&lt;p class="western" style="margin-top: 0.07in; margin-bottom: 0.07in; line-height: 110%;" align="justify" lang="en-US"&gt;  &lt;span style="color: rgb(0, 0, 0);"&gt;&lt;span style="font-family:Times New Roman,serif;"&gt;&lt;span style="font-size:100%;"&gt;Provide  your personal details here.....&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/p&gt; &lt;/li&gt; &lt;/ul&gt;  &lt;p class="western" style="margin-bottom: 0in; line-height: 200%;" align="left"&gt; &lt;span style="font-family:Times New Roman,serif;"&gt;&lt;span style="font-size:100%;"&gt;&lt;span lang="en-US"&gt;&lt;span style="font-family:Times New Roman,serif;"&gt;&lt;span style="color: rgb(0, 0, 0);"&gt;&lt;b&gt;Example:&lt;/b&gt;Date of Birth,Gender,&lt;span style=""&gt;Nationality,&lt;/span&gt;Languages known,Address for Contact            &lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt; &lt;/p&gt;  &lt;p style="background: rgb(191, 191, 191) none repeat scroll 0% 50%; -moz-background-clip: initial; -moz-background-origin: initial; -moz-background-inline-policy: initial; margin-left: -0.13in; margin-right: -0.06in; text-indent: 0in; margin-bottom: 0in; line-height: 100%;" align="justify" lang="en-US"&gt; &lt;span style="color: rgb(0, 0, 0);"&gt;&lt;span style="font-family:Times New Roman,serif;"&gt;&lt;span style="font-size:100%;"&gt;&lt;b&gt;Declaration:&lt;/b&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;    &lt;p style="margin-left: -0.13in; text-indent: 0.13in; margin-bottom: 0in; line-height: 110%;" align="justify" lang="en-US"&gt;&lt;span style="color: rgb(0, 0, 0);"&gt;&lt;span style="font-family:Times New Roman,serif;"&gt;&lt;span style="font-size:100%;"&gt;I hereby declare that all the particulars furnished are true to the best of my knowledge and credence.&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;    &lt;p class="western" style="margin-bottom: 0in; line-height: 100%;" align="center" lang="en-US"&gt; &lt;span style="color: rgb(0, 0, 0);"&gt;                                                                                                          &lt;/span&gt; &lt;/p&gt;   &lt;div style="text-align: right;"&gt; &lt;span style="color: rgb(0, 0, 0);"&gt;                                                                                                      &lt;span style="font-family:Times New Roman,serif;"&gt;&lt;span style="font-size:100%;"&gt;&lt;span lang="en-US"&gt;&lt;span style="font-family:Times New Roman,serif;"&gt;                                                                                    Signature of Aspirant, &lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt; &lt;p class="western" style="margin-bottom: 0in; line-height: 100%;" align="center"&gt; &lt;/p&gt;    &lt;div style="text-align: right;"&gt; &lt;span style="color: rgb(0, 0, 0);"&gt;         &lt;span style="font-family:Times New Roman,serif;"&gt;&lt;span style="font-size:100%;"&gt;&lt;b&gt;&lt;span lang="en-US"&gt;&lt;span style="font-family:Times New Roman,serif;"&gt;(Your Name)    &lt;/span&gt;&lt;/span&gt;&lt;/b&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt; &lt;p style="margin-left: 4.81in; margin-bottom: 0in; line-height: 110%;" align="justify"&gt; &lt;/p&gt;   &lt;p style="margin-left: 4.81in; text-indent: 0.63in; margin-bottom: 0in; line-height: 110%;" align="justify"&gt; &lt;span style="color: rgb(0, 0, 0);"&gt; &lt;span style="font-family:Times New Roman,serif;"&gt;&lt;span style="font-size:100%;"&gt;&lt;span lang="en-US"&gt;&lt;span style="font-family:Times New Roman,serif;"&gt;     &lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;&lt;/p&gt;  &lt;p class="western" style="margin-bottom: 0in; line-height: 100%;" align="center"&gt; &lt;/p&gt;   &lt;p class="western" style="margin-left: -0.06in; margin-bottom: 0in; line-height: 100%;" align="justify"&gt; &lt;/p&gt; &lt;p class="western" style="margin-bottom: 0in; line-height: 100%;" align="center" lang="en-US"&gt;&lt;br /&gt;&lt;/p&gt;  &lt;p style="margin-left: -0.13in; text-indent: 0.13in; margin-bottom: 0in; line-height: 100%;" align="justify" lang="en-US"&gt;&lt;br /&gt;&lt;/p&gt;&lt;span style="font-weight: bold;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;p style="margin-left: 4.81in; margin-bottom: 0in; line-height: 110%;" align="justify"&gt;&lt;span style="color: rgb(0, 0, 0);"&gt;&lt;span style="font-family:Times New Roman,serif;"&gt;&lt;span style="font-size:100%;"&gt;&lt;b&gt;&lt;span lang="en-US"&gt;&lt;span style="font-family:Times New Roman,serif;"&gt;     &lt;/span&gt;&lt;/span&gt;&lt;/b&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt; &lt;/p&gt;  &lt;p style="margin-left: 4.81in; text-indent: 0.63in; margin-bottom: 0in; line-height: 110%;" align="justify"&gt; &lt;span style="color: rgb(0, 0, 0);"&gt; &lt;span style="font-family:Times New Roman,serif;"&gt;&lt;span style="font-size:100%;"&gt;&lt;span lang="en-US"&gt;&lt;span style="font-family:Times New Roman,serif;"&gt;     &lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;&lt;/p&gt; &lt;span style="font-weight: bold;"&gt; &lt;/span&gt; &lt;p style="margin-left: 4.81in; text-indent: 0.63in; margin-bottom: 0in; line-height: 110%;" align="justify"&gt; &lt;span style="color: rgb(0, 0, 0);"&gt; &lt;span style="font-family:Times New Roman,serif;"&gt;&lt;span style="font-size:130%;"&gt;&lt;span lang="en-US"&gt;&lt;span style="font-size:130%;"&gt;&lt;span style="font-family:Times New Roman,serif;"&gt;     &lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;&lt;/p&gt; &lt;p style="margin-left: 4.81in; text-indent: 0.63in; margin-bottom: 0in; line-height: 110%;" align="justify"&gt;  &lt;span style="font-family:Times New Roman,serif;"&gt;&lt;span style="font-size:100%;"&gt;     &lt;/span&gt;&lt;/span&gt;&lt;br /&gt;&lt;/p&gt; &lt;/div&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/7915064724252482343-2305422671716107288?l=a2izat.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://a2izat.blogspot.com/feeds/2305422671716107288/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=7915064724252482343&amp;postID=2305422671716107288&amp;isPopup=true' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/7915064724252482343/posts/default/2305422671716107288'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/7915064724252482343/posts/default/2305422671716107288'/><link rel='alternate' type='text/html' href='http://a2izat.blogspot.com/2008_03_09_archive.html#2305422671716107288' title='Sample Cover Letter and Resume(IT) for Fresher'/><author><name>bal</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-7915064724252482343.post-726202080362263612</id><published>2008-02-28T20:14:00.022+05:30</published><updated>2008-02-29T12:08:18.380+05:30</updated><title type='text'>A fun Love Story...............</title><content type='html'>&lt;span style="font-family:Arial;font-size:180%;color:blue;"&gt;&lt;span style="font-family:Arial;color:blue;"&gt;I was like this&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://bp0.blogger.com/_UddRFUMuzjg/R8bPGEKEajI/AAAAAAAAAGI/4D-J9Txqlmw/s1600-h/a_005.JPG"&gt;&lt;img id="BLOGGER_PHOTO_ID_5172048925183732274" style="DISPLAY: block; MARGIN: 0px auto 10px; CURSOR: pointer; TEXT-ALIGN: center" alt="" src="http://bp0.blogger.com/_UddRFUMuzjg/R8bPGEKEajI/AAAAAAAAAGI/4D-J9Txqlmw/s320/a_005.JPG" border="0" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;span style="font-family:Arial;font-size:130%;color:blue;"&gt;&lt;span style="font-family:Arial;font-size:13;color:blue;"&gt;&lt;span style="font-size:180%;"&gt;I saw a Girl&lt;br /&gt;&lt;br /&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://bp0.blogger.com/_UddRFUMuzjg/R8bJoEKEaXI/AAAAAAAAAEo/JrL8ugOQ3go/s1600-h/a_011.jpg"&gt;&lt;img id="BLOGGER_PHOTO_ID_5172042912229517682" style="DISPLAY: block; MARGIN: 0px auto 10px; CURSOR: pointer; TEXT-ALIGN: center" alt="" src="http://bp0.blogger.com/_UddRFUMuzjg/R8bJoEKEaXI/AAAAAAAAAEo/JrL8ugOQ3go/s320/a_011.jpg" border="0" /&gt;&lt;/a&gt;&lt;span style="font-family:Arial;font-size:130%;color:blue;"&gt;&lt;span style="font-family:Arial;font-size:13;color:blue;"&gt;&lt;span style="font-size:180%;"&gt;she was like this...&lt;br /&gt;&lt;br /&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://bp1.blogger.com/_UddRFUMuzjg/R8bJ5UKEaYI/AAAAAAAAAEw/B1MsyzDAeZc/s1600-h/a.jpg"&gt;&lt;img id="BLOGGER_PHOTO_ID_5172043208582261122" style="DISPLAY: block; MARGIN: 0px auto 10px; CURSOR: pointer; TEXT-ALIGN: center" alt="" src="http://bp1.blogger.com/_UddRFUMuzjg/R8bJ5UKEaYI/AAAAAAAAAEw/B1MsyzDAeZc/s320/a.jpg" border="0" /&gt;&lt;/a&gt;&lt;span style="font-family:Arial;font-size:130%;color:blue;"&gt;&lt;span style="font-family:Arial;font-size:13;color:blue;"&gt;&lt;span style="font-size:180%;"&gt; but actually with out make-up she was like this&lt;br /&gt;&lt;br /&gt;but even i liked her&lt;br /&gt;&lt;br /&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://bp2.blogger.com/_UddRFUMuzjg/R8bKrkKEaZI/AAAAAAAAAE4/F4XDroZ2tro/s1600-h/funny_monkey.jpg"&gt;&lt;img id="BLOGGER_PHOTO_ID_5172044071870687634" style="DISPLAY: block; MARGIN: 0px auto 10px; CURSOR: pointer; TEXT-ALIGN: center" alt="" src="http://bp2.blogger.com/_UddRFUMuzjg/R8bKrkKEaZI/AAAAAAAAAE4/F4XDroZ2tro/s320/funny_monkey.jpg" border="0" /&gt;&lt;/a&gt;&lt;span style="font-family:Arial;font-size:130%;color:blue;"&gt;&lt;span style="font-family:Arial;font-size:13;color:blue;"&gt;&lt;span style="font-size:180%;"&gt;&lt;br /&gt;I like so much her . i told lot of &lt;/span&gt;&lt;span style="font-size:180%;"&gt;lies to her&lt;br /&gt;&lt;br /&gt;example "u r soooo cute"&lt;br /&gt;&lt;br /&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://bp0.blogger.com/_UddRFUMuzjg/R8bLGEKEaaI/AAAAAAAAAFA/OgHzMDZDrSo/s1600-h/a_014.jpg"&gt;&lt;img id="BLOGGER_PHOTO_ID_5172044527137221026" style="DISPLAY: block; MARGIN: 0px auto 10px; CURSOR: pointer; TEXT-ALIGN: center" alt="" src="http://bp0.blogger.com/_UddRFUMuzjg/R8bLGEKEaaI/AAAAAAAAAFA/OgHzMDZDrSo/s320/a_014.jpg" border="0" /&gt;&lt;/a&gt;&lt;span style="font-family:Arial;font-size:130%;color:blue;"&gt;&lt;span style="font-family:Arial;font-size:13;color:blue;"&gt;&lt;span style="font-size:180%;"&gt;&lt;br /&gt;I gave costly gifts on feb 14th.. like this...&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;/span&gt;&lt;/span&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://bp3.blogger.com/_UddRFUMuzjg/R8bL_0KEabI/AAAAAAAAAFI/7bFERgt1LgY/s1600-h/toothpaste.jpg"&gt;&lt;img id="BLOGGER_PHOTO_ID_5172045519274666418" style="DISPLAY: block; MARGIN: 0px auto 10px; CURSOR: pointer; TEXT-ALIGN: center" alt="" src="http://bp3.blogger.com/_UddRFUMuzjg/R8bL_0KEabI/AAAAAAAAAFI/7bFERgt1LgY/s320/toothpaste.jpg" border="0" /&gt;&lt;/a&gt;&lt;span style="font-family:Arial;font-size:130%;color:blue;"&gt;&lt;span style="font-family:Arial;font-size:13;color:blue;"&gt;&lt;span style="font-size:180%;"&gt;&lt;br /&gt;I gave a shock like this when she accepted&lt;br /&gt;&lt;br /&gt;my proposal&lt;br /&gt;&lt;br /&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;span style="font-size:180%;"&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://bp1.blogger.com/_UddRFUMuzjg/R8bMLUKEacI/AAAAAAAAAFQ/cPP9u0bNJ-U/s1600-h/a_002.jpg"&gt;&lt;img id="BLOGGER_PHOTO_ID_5172045716843162050" style="DISPLAY: block; MARGIN: 0px auto 10px; CURSOR: pointer; TEXT-ALIGN: center" alt="" src="http://bp1.blogger.com/_UddRFUMuzjg/R8bMLUKEacI/AAAAAAAAAFQ/cPP9u0bNJ-U/s320/a_002.jpg" border="0" /&gt;&lt;/a&gt;&lt;/span&gt;&lt;span style="font-family:Arial;font-size:130%;color:blue;"&gt;&lt;span style="font-family:Arial;font-size:13;color:blue;"&gt;&lt;span style="font-size:180%;"&gt;&lt;br /&gt;I used to talk whole night and do this at office...&lt;br /&gt;&lt;br /&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://bp2.blogger.com/_UddRFUMuzjg/R8bMikKEadI/AAAAAAAAAFY/Pys55rGF_AY/s1600-h/a_013.jpg"&gt;&lt;img id="BLOGGER_PHOTO_ID_5172046116275120594" style="DISPLAY: block; MARGIN: 0px auto 10px; CURSOR: pointer; TEXT-ALIGN: center" alt="" src="http://bp2.blogger.com/_UddRFUMuzjg/R8bMikKEadI/AAAAAAAAAFY/Pys55rGF_AY/s320/a_013.jpg" border="0" /&gt;&lt;/a&gt;&lt;span style="font-family:Arial;font-size:130%;color:blue;"&gt;&lt;span style="font-family:Arial;font-size:13;color:blue;"&gt;&lt;span style="font-size:180%;"&gt;&lt;br /&gt;When ever i go with my gal friend , My friends&lt;br /&gt;&lt;br /&gt;are look like this...&lt;br /&gt;&lt;br /&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://bp1.blogger.com/_UddRFUMuzjg/R8bMxUKEaeI/AAAAAAAAAFg/HzxTsRZvUQc/s1600-h/monkey.jpg"&gt;&lt;img id="BLOGGER_PHOTO_ID_5172046369678191074" style="DISPLAY: block; MARGIN: 0px auto 10px; CURSOR: pointer; TEXT-ALIGN: center" alt="" src="http://bp1.blogger.com/_UddRFUMuzjg/R8bMxUKEaeI/AAAAAAAAAFg/HzxTsRZvUQc/s320/monkey.jpg" border="0" /&gt;&lt;/a&gt;&lt;span style="font-family:Arial;font-size:130%;color:blue;"&gt;&lt;span style="font-family:Arial;font-size:13;color:blue;"&gt;&lt;span style="font-size:180%;"&gt;&lt;br /&gt;here I give a pose like this to them&lt;br /&gt;&lt;br /&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://bp1.blogger.com/_UddRFUMuzjg/R8bM9UKEafI/AAAAAAAAAFo/zzdyaA0zAWU/s1600-h/a_007.jpg"&gt;&lt;img id="BLOGGER_PHOTO_ID_5172046575836621298" style="DISPLAY: block; MARGIN: 0px auto 10px; CURSOR: pointer; TEXT-ALIGN: center" alt="" src="http://bp1.blogger.com/_UddRFUMuzjg/R8bM9UKEafI/AAAAAAAAAFo/zzdyaA0zAWU/s320/a_007.jpg" border="0" /&gt;&lt;/a&gt;&lt;span style="font-family:Arial;font-size:130%;color:blue;"&gt;&lt;span style="font-family:Arial;font-size:13;color:blue;"&gt;&lt;span style="font-size:180%;"&gt;&lt;br /&gt;Atlast my gal friend gave the roses to me like this..&lt;br /&gt;&lt;br /&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://bp2.blogger.com/_UddRFUMuzjg/R8bNHkKEagI/AAAAAAAAAFw/e2rKCzo-lZw/s1600-h/a_010.jpg"&gt;&lt;img id="BLOGGER_PHOTO_ID_5172046751930280450" style="DISPLAY: block; MARGIN: 0px auto 10px; CURSOR: pointer; TEXT-ALIGN: center" alt="" src="http://bp2.blogger.com/_UddRFUMuzjg/R8bNHkKEagI/AAAAAAAAAFw/e2rKCzo-lZw/s320/a_010.jpg" border="0" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;p style="MARGIN-BOTTOM: 12pt"&gt;&lt;/p&gt;&lt;p class="MsoNormal"&gt;&lt;/p&gt;&lt;p class="MsoNormal"&gt;&lt;/p&gt;&lt;p class="MsoNormal"&gt;&lt;span style="font-family:Arial;font-size:18;color:blue;"&gt;&lt;span style="font-size:+0;"&gt;&lt;/span&gt;I went to her home and shouted like: why u r cheating me&lt;/span&gt;&lt;/p&gt;&lt;p style="MARGIN-BOTTOM: 12pt"&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://bp3.blogger.com/_UddRFUMuzjg/R8bSt0KEakI/AAAAAAAAAGQ/InS5gGU8oIg/s1600-h/oibabycc.jpg"&gt;&lt;img id="BLOGGER_PHOTO_ID_5172052906618415682" style="DISPLAY: block; MARGIN: 0px auto 10px; CURSOR: pointer; TEXT-ALIGN: center" alt="" src="http://bp3.blogger.com/_UddRFUMuzjg/R8bSt0KEakI/AAAAAAAAAGQ/InS5gGU8oIg/s320/oibabycc.jpg" border="0" /&gt;&lt;/a&gt;&lt;/p&gt;&lt;p style="MARGIN-BOTTOM: 12pt"&gt;&lt;/p&gt;&lt;p class="MsoNormal"&gt; &lt;/p&gt;&lt;p style="MARGIN-BOTTOM: 12pt"&gt;&lt;/p&gt;&lt;p class="MsoNormal"&gt;&lt;/p&gt;&lt;p class="MsoNormal"&gt;&lt;/p&gt;&lt;p class="MsoNormal"&gt;&lt;span style="font-family:Arial;font-size:18;color:blue;"&gt;Her body-guard throw-out &lt;/span&gt;&lt;span style="font-family:'Times New Roman';font-size:12;"&gt;&lt;/span&gt;&lt;span style="font-family:Arial;font-size:18;color:blue;"&gt;me&lt;/span&gt;&lt;/p&gt;&lt;p style="MARGIN-BOTTOM: 12pt"&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://bp0.blogger.com/_UddRFUMuzjg/R8bTaEKEalI/AAAAAAAAAGY/yvXu-GGrER0/s1600-h/untitled.JPG"&gt;&lt;img id="BLOGGER_PHOTO_ID_5172053666827627090" style="DISPLAY: block; MARGIN: 0px auto 10px; CURSOR: pointer; TEXT-ALIGN: center" alt="" src="http://bp0.blogger.com/_UddRFUMuzjg/R8bTaEKEalI/AAAAAAAAAGY/yvXu-GGrER0/s320/untitled.JPG" border="0" /&gt;&lt;/a&gt;&lt;/p&gt;&lt;p style="MARGIN-BOTTOM: 12pt"&gt;&lt;span style="font-family:Arial;font-size:180%;color:blue;"&gt;&lt;span style="font-family:Arial;color:blue;"&gt;I was like this&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;&lt;p style="MARGIN-BOTTOM: 12pt"&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://bp3.blogger.com/_UddRFUMuzjg/R8bTx0KEamI/AAAAAAAAAGg/q8AZSt3c2Yk/s1600-h/Training+pg+crying1.jpg"&gt;&lt;img id="BLOGGER_PHOTO_ID_5172054074849520226" style="DISPLAY: block; MARGIN: 0px auto 10px; CURSOR: pointer; TEXT-ALIGN: center" alt="" src="http://bp3.blogger.com/_UddRFUMuzjg/R8bTx0KEamI/AAAAAAAAAGg/q8AZSt3c2Yk/s320/Training+pg+crying1.jpg" border="0" /&gt;&lt;/a&gt;&lt;/p&gt;&lt;p style="MARGIN-BOTTOM: 12pt"&gt;&lt;span style="font-family:Arial;font-size:180%;color:blue;"&gt;&lt;span style="font-family:Arial;color:blue;"&gt;dont know what to do started smoking...&lt;/span&gt;&lt;/span&gt;&lt;span style="font-size:130%;"&gt;&lt;span style="font-size:13;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;&lt;p style="MARGIN-BOTTOM: 12pt"&gt;&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://bp0.blogger.com/_UddRFUMuzjg/R8bNUEKEahI/AAAAAAAAAF4/l6vo9aHRT2g/s1600-h/a.gif"&gt;&lt;img id="BLOGGER_PHOTO_ID_5172046966678645266" style="DISPLAY: block; MARGIN: 0px auto 10px; CURSOR: pointer; TEXT-ALIGN: center" alt="" src="http://bp0.blogger.com/_UddRFUMuzjg/R8bNUEKEahI/AAAAAAAAAF4/l6vo9aHRT2g/s320/a.gif" border="0" /&gt;&lt;/a&gt;&lt;/p&gt;&lt;p style="MARGIN-BOTTOM: 12pt"&gt;&lt;span style="font-family:Arial;font-size:130%;"&gt;&lt;span style="font-family:Arial;font-size:13;"&gt;&lt;span style="color:blue;"&gt;&lt;span style="color:blue;"&gt;&lt;span style="font-size:180%;"&gt;I ended with&lt;/span&gt;&lt;br /&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;&lt;p style="MARGIN-BOTTOM: 12pt"&gt;&lt;span style="font-family:Arial;font-size:130%;"&gt;&lt;span style="font-family:Arial;font-size:13;"&gt;&lt;span style="color:blue;"&gt;&lt;span style="color:blue;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;&lt;p style="MARGIN-BOTTOM: 12pt"&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://bp1.blogger.com/_UddRFUMuzjg/R8bOBUKEaiI/AAAAAAAAAGA/HMAE9bHYcSM/s1600-h/untitled.JPG"&gt;&lt;img id="BLOGGER_PHOTO_ID_5172047744067725858" style="DISPLAY: block; MARGIN: 0px auto 10px; CURSOR: pointer; TEXT-ALIGN: center" alt="" src="http://bp1.blogger.com/_UddRFUMuzjg/R8bOBUKEaiI/AAAAAAAAAGA/HMAE9bHYcSM/s320/untitled.JPG" border="0" /&gt;&lt;/a&gt;&lt;/p&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/7915064724252482343-726202080362263612?l=a2izat.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://a2izat.blogspot.com/feeds/726202080362263612/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=7915064724252482343&amp;postID=726202080362263612&amp;isPopup=true' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/7915064724252482343/posts/default/726202080362263612'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/7915064724252482343/posts/default/726202080362263612'/><link rel='alternate' type='text/html' href='http://a2izat.blogspot.com/2008_02_28_archive.html#726202080362263612' title='A fun Love Story...............'/><author><name>Seventh Sense</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><media:thumbnail xmlns:media='http://search.yahoo.com/mrss/' url='http://bp0.blogger.com/_UddRFUMuzjg/R8bPGEKEajI/AAAAAAAAAGI/4D-J9Txqlmw/s72-c/a_005.JPG' height='72' width='72'/><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-7915064724252482343.post-8100422789699339263</id><published>2008-02-25T16:31:00.012+05:30</published><updated>2008-02-25T17:56:24.352+05:30</updated><title type='text'>HDMI (High-Definition Multimedia Interface) Interface</title><content type='html'>&lt;p class="MsoNormal"  style="text-align: justify; line-height: 150%;font-family:times new roman;"&gt;&lt;span style="font-size:130%;"&gt;HDMI (&lt;/span&gt;&lt;span style="font-size:130%;"&gt;&lt;b&gt;&lt;span style=""&gt;High-Definition Multimedia Interface&lt;/span&gt;&lt;/b&gt;&lt;/span&gt;&lt;span style="font-size:130%;"&gt;) is&lt;/span&gt;&lt;span style="font-size:130%;"&gt; DVI (&lt;/span&gt;&lt;span style="font-size:130%;"&gt;Digital Visual Interface)&lt;/span&gt;&lt;span style="font-size:130%;"&gt; with the addition of: &lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;ul  type="disc" style="font-family:times new roman;"&gt;&lt;li class="MsoNormal"  style="text-align: justify; line-height: 150%;color:windowtext;"&gt;&lt;span style="font-size:130%;"&gt;Audio      up to 8-channels uncompressed&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/li&gt;&lt;li class="MsoNormal"  style="text-align: justify; line-height: 150%;color:windowtext;"&gt;&lt;span style="font-size:130%;"&gt;Smaller      Connector &lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/li&gt;&lt;li class="MsoNormal"  style="text-align: justify; line-height: 150%;color:windowtext;"&gt;&lt;span style="font-size:130%;"&gt;Support      for YUV (&lt;span style="color:black;"&gt;Luminance-Bandwidth-Chrominance&lt;/span&gt;      )Color Space&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/li&gt;&lt;li class="MsoNormal"  style="text-align: justify; line-height: 150%;color:windowtext;"&gt;&lt;span style="font-size:130%;"&gt;CEC (Consumer Electronics Control) &lt;/span&gt;&lt;span style="font-size:130%;"&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/li&gt;&lt;li class="MsoNormal"  style="text-align: justify; line-height: 150%;color:windowtext;"&gt;&lt;span style=""&gt;&lt;span style="font-size:130%;"&gt;EIA/CEA-861B Info Frames&lt;/span&gt; &lt;/span&gt;&lt;span style=""&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/li&gt;&lt;/ul&gt;  &lt;p class="MsoNormal"  style="text-align: justify; text-indent: 0.5in; line-height: 150%;font-family:times new roman;"&gt;&lt;span style="font-size:130%;"&gt;&lt;b&gt;&lt;span style=""&gt;HDMI &lt;/span&gt;&lt;/b&gt;&lt;/span&gt;&lt;span style=""&gt;&lt;span style="font-size:130%;"&gt;is a licensable audio/video connector interface for transmitting uncompressed digital streams. HDMI connects DRM-enforcing digital audio/video sources such as a set-top box, a HD DVD disc player, a &lt;b style=""&gt;Blu-ray&lt;/b&gt; Disc player, a personal computer, a video game console, or an AV receiver to a compatible digital audio device and/or video monitor such as a digital television (DTV). HDMI began to come out in 2006 on consumer HDTV camcorders and high-end digital still cameras&lt;/span&gt;. &lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;span style=";font-family:times new roman;font-size:100%;"  &gt;&lt;/span&gt;  &lt;p class="MsoNormal"  style="font-family:times new roman;"&gt;&lt;b style=""&gt;&lt;u&gt;&lt;span style=""&gt;Block Diagram&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/u&gt;&lt;/b&gt;&lt;/p&gt;&lt;br /&gt;&lt;span style=";font-family:times new roman;font-size:100%;"  &gt;&lt;a style="font-weight: bold;" onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://bp3.blogger.com/_UddRFUMuzjg/R8KiL0KEaVI/AAAAAAAAAEY/vUxz0o_Q1Z4/s1600-h/hdmi.JPG"&gt;&lt;img style="margin: 0px auto 10px; display: block; text-align: center; cursor: pointer;" src="http://bp3.blogger.com/_UddRFUMuzjg/R8KiL0KEaVI/AAAAAAAAAEY/vUxz0o_Q1Z4/s320/hdmi.JPG" alt="" id="BLOGGER_PHOTO_ID_5170873646037887314" border="0" /&gt;&lt;/a&gt;&lt;/span&gt;  &lt;p class="MsoNormal"  style="text-align: justify;font-family:times new roman;"&gt;&lt;span style="font-size:130%;"&gt;HDMI also includes provisions for HDCP. This allows content providers to prevent their programming from being illegally copied.&lt;/span&gt;&lt;b style=""&gt;&lt;u&gt;&lt;span style=""&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/u&gt;&lt;/b&gt;&lt;/p&gt;    &lt;p class="MsoNormal"  style="margin-left: 0.25in;font-family:times new roman;"&gt;&lt;b style=""&gt;&lt;u&gt;&lt;span style=""&gt;Features:&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/u&gt;&lt;/b&gt;&lt;/p&gt;  &lt;ol start="1"  type="1" style="font-family:times new roman;"&gt;&lt;li class="MsoNormal"  style="text-align: justify; line-height: 150%;color:windowtext;"&gt;&lt;span style="font-size:130%;"&gt;HDMI      can carry both uncompressed high definition video along with all existing      multi-channel audio formats and even device control data in a single      connector.&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/li&gt;&lt;li class="MsoNormal"  style="text-align: justify; line-height: 150%;color:windowtext;"&gt;&lt;span style="font-size:130%;"&gt;HDMI represents the DRM (Digital Rights Management)      alternative to consumer analog standards such as &lt;a href="http://en.wikipedia.org/wiki/Radio_frequency" title="Radio frequency"&gt;&lt;span style="text-decoration: none; color: rgb(0, 0, 0);"&gt;RF&lt;/span&gt;&lt;/a&gt;      (coaxial cable), composite video, S-Video, SCART (&lt;span style=""&gt;Syndicat des Constructeurs d'Appareils Radiorécepteurs et      Téléviseurs)&lt;/span&gt;, and VGA(&lt;span style=""&gt;Video Graphics Array)&lt;/span&gt;, and      digital standards such as DVI(&lt;span style=""&gt;Digital      Visual Interface)&lt;/span&gt; (DVI-D and DVI-I).&lt;/span&gt;&lt;span style="font-size:130%;"&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/li&gt;&lt;li class="MsoNormal"  style="text-align: justify; line-height: 150%;color:windowtext;"&gt;&lt;span class="yellowfadeinnerspan"  style="font-size:130%;"&gt;&lt;span style=""&gt;HDMI&lt;/span&gt;&lt;/span&gt;&lt;span class="mcontent"  style="font-size:130%;"&gt;&lt;span style=""&gt; is      able to carry a bandwidth of &lt;/span&gt;&lt;/span&gt;&lt;span style="font-size:130%;"&gt;5-7&lt;span class="mcontent"&gt; Gbps (gigabits per second)&lt;/span&gt;&lt;/span&gt;&lt;span style="font-size:130%;"&gt; &amp;amp; formats.&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/li&gt;&lt;li class="MsoNormal"  style="text-align: justify; line-height: 150%;color:windowtext;"&gt;&lt;span style="font-size:130%;"&gt;By      design, HDMI was intended to be a smaller, more consumer-friendly      connection.&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/li&gt;&lt;li class="MsoNormal"  style="text-align: justify; line-height: 150%;color:windowtext;"&gt;&lt;span style="font-size:130%;"&gt;Supports      High bandwidth Digital Content Protection – HDCP 1.1&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/li&gt;&lt;li class="MsoNormal"  style="text-align: justify; line-height: 150%;color:windowtext;"&gt;&lt;span style="font-size:130%;"&gt;Backward compatible to DVI 1.0&lt;/span&gt;&lt;strong&gt;&lt;span style="font-weight: normal;"&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/strong&gt;&lt;/li&gt;&lt;/ol&gt;  &lt;h2  style="text-align: justify; line-height: 150%;font-family:times new roman;"&gt;&lt;strong&gt;&lt;span style="color: rgb(51, 51, 0);"&gt;&lt;span style=""&gt; &lt;/span&gt;&lt;u&gt;Versions of HDMI&lt;/u&gt;&lt;/span&gt;&lt;/strong&gt;&lt;b style=""&gt;&lt;u&gt;&lt;span style="color: rgb(51, 51, 0);"&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/u&gt;&lt;/b&gt;&lt;/h2&gt;  &lt;p class="MsoNormal"  style="text-align: justify; line-height: 150%;font-family:times new roman;"&gt;&lt;span style=""&gt;&lt;span style="font-size:130%;"&gt;The following provides an overview of major functionality added to each version of HDMI:&lt;/span&gt; &lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal"  style="text-align: justify; line-height: 150%;font-family:times new roman;"&gt;&lt;b style=""&gt;&lt;span style=""&gt;HDMI 1.1: &lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/b&gt;&lt;/p&gt;  &lt;ul  type="disc" style="font-family:times new roman;"&gt;&lt;li class="MsoNormal"  style="text-align: justify; line-height: 150%;color:windowtext;"&gt;&lt;span style=""&gt;&lt;span style="font-size:130%;"&gt;Support      for DVD Audio.&lt;/span&gt; &lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/li&gt;&lt;/ul&gt;  &lt;p class="MsoNormal"  style="text-align: justify; line-height: 150%;font-family:times new roman;"&gt;&lt;b style=""&gt;&lt;span style=""&gt;HDMI 1.2: &lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/b&gt;&lt;/p&gt;  &lt;ul  type="disc" style="font-family:times new roman;"&gt;&lt;li class="MsoNormal" style="text-align: justify; line-height: 150%;"&gt;&lt;span style="line-height: 150%;font-size:130%;" &gt;A&lt;/span&gt;&lt;span style="font-size:130%;"&gt;dded      support for One Bit Audio, used on Super Audio CDs, up to 8 channels.&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/li&gt;&lt;li class="MsoNormal" style="text-align: justify; line-height: 150%;"&gt;&lt;span style="font-size:130%;"&gt;Availability      of the widely-used HDMI Type A connector for PC sources and displays with      full support for PC video formats&lt;/span&gt;&lt;span style="font-size:130%;"&gt;      &lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/li&gt;&lt;li class="MsoNormal" style="text-align: justify; line-height: 150%;"&gt;&lt;span style="font-size:130%;"&gt;Ability for PC      sources to use native RGB color space while retaining the option to      support the YCbCr CE color space.&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/li&gt;&lt;li class="MsoNormal"  style="text-align: justify; line-height: 150%;color:windowtext;"&gt;&lt;span style="font-size:130%;"&gt;Requirement for HDMI 1.2 and later displays to support      low-voltage &lt;/span&gt;&lt;span style=""&gt;&lt;span style="font-size:130%;"&gt;(i.e.,      AC-coupled) sources, such as those based on PCI Express I/O technology.&lt;/span&gt; &lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/li&gt;&lt;/ul&gt;  &lt;p class="MsoNormal"  style="text-align: justify; line-height: 150%;font-family:times new roman;"&gt;&lt;b style=""&gt;&lt;span style=""&gt;HDMI 1.2a: &lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/b&gt;&lt;/p&gt;  &lt;ul  type="disc" style="font-family:times new roman;"&gt;&lt;li class="MsoNormal"  style="text-align: justify; line-height: 150%;color:windowtext;"&gt;&lt;span style=""&gt;&lt;span style="font-size:130%;"&gt;Consumer      Electronic Control (CEC)      features and command sets and CEC compliance tests are now fully      specified.&lt;/span&gt; &lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/li&gt;&lt;/ul&gt;  &lt;p class="MsoNormal"  style="text-align: justify; line-height: 150%;font-family:times new roman;"&gt;&lt;b style=""&gt;&lt;span style=""&gt;HDMI 1.3:&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/b&gt;&lt;/p&gt;  &lt;ul  type="disc" style="font-family:times new roman;"&gt;&lt;li class="MsoNormal"  style="text-align: justify; line-height: 150%;color:windowtext;"&gt;&lt;span style="font-size:130%;"&gt;&lt;b&gt;&lt;span style=""&gt;Higher      Data Rate and Resolution:&lt;/span&gt;&lt;/b&gt;&lt;/span&gt;&lt;span style="font-size:130%;"&gt; HDMI 1.3 increases its single-link bandwidth to 340 MHz      (10.2 Gbps) &lt;/span&gt;&lt;span style="font-size:130%;"&gt;to support      the demands of future HD display devices, such as higher resolutions, Deep      Color and high frame rates. &lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/li&gt;&lt;li class="MsoNormal"  style="text-align: justify; line-height: 150%;color:windowtext;"&gt;&lt;span style="font-size:130%;"&gt;&lt;b&gt;&lt;span style=""&gt;Deeper      Color:&lt;/span&gt;&lt;/b&gt;&lt;/span&gt;&lt;span style="font-size:130%;"&gt; &lt;span style="color:maroon;"&gt;HDMI 1.3 supports 10-bit, 12-bit and 16-bit (RGB or      YCbCr) color depths&lt;/span&gt;, up from the 8-bit depths in previous versions      of the HDMI specification, for stunning rendering of over one billion      colors in unprecedented detail. &lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/li&gt;&lt;li class="MsoNormal"  style="text-align: justify; line-height: 150%;color:windowtext;"&gt;&lt;span style="font-size:130%;"&gt;&lt;b&gt;&lt;span style=""&gt;Broader      color space:&lt;/span&gt;&lt;/b&gt;&lt;/span&gt;&lt;span style="font-size:130%;"&gt; &lt;span style="color:maroon;"&gt;HDMI 1.3 adds support for “x.v.Color”,&lt;/span&gt; which      removes current color space limitations and enables the display of any      color viewable by the human eye. &lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/li&gt;&lt;li class="MsoNormal"  style="text-align: justify; line-height: 150%;color:maroon;"&gt;&lt;span style="font-size:130%;"&gt;&lt;b&gt;&lt;span style=""&gt;Mini connector:&lt;/span&gt;&lt;/b&gt;&lt;/span&gt;&lt;span style="font-size:130%;"&gt; With small portable devices such as HD camcorders and      still cameras demanding seamless connectivity to &lt;/span&gt;&lt;span style="font-size:130%;"&gt;HDTV’s, HDMI 1.3 offers a new,      smaller form factor connector option. &lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/li&gt;&lt;li class="MsoNormal"  style="text-align: justify; line-height: 150%;color:windowtext;"&gt;&lt;span style="font-size:130%;"&gt;&lt;b&gt;&lt;span style=""&gt;New      Audio formats:&lt;/span&gt;&lt;/b&gt;&lt;/span&gt;&lt;span style=""&gt;&lt;span style="font-size:130%;"&gt; &lt;/span&gt;&lt;span style=";font-size:130%;color:maroon;"  &gt;HDMI 1.3 adds additional support for new lossless      compressed &lt;/span&gt;&lt;span style="font-size:130%;"&gt;digital audio formats Dolby TrueHD and DTS-HD Master      Audio.&lt;/span&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/li&gt;&lt;/ul&gt;  &lt;h3  style="font-family:times new roman;"&gt;&lt;span class="mw-headline"&gt;&lt;b style=""&gt;&lt;span style=""&gt;HDMI 1.3a:&lt;/span&gt;&lt;/b&gt;&lt;/span&gt;&lt;b style=""&gt;&lt;span style=""&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/b&gt;&lt;/h3&gt;  &lt;ul  type="disc" style="font-family:times new roman;"&gt;&lt;li class="MsoNormal" style="line-height: 150%;"&gt;&lt;span style="font-size:130%;"&gt;Cable and Sink modifications for      Type C&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/li&gt;&lt;li class="MsoNormal" style="line-height: 150%;"&gt;&lt;span style="font-size:130%;"&gt;Source termination recommendation&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/li&gt;&lt;li class="MsoNormal" style="line-height: 150%;"&gt;&lt;span style="font-size:130%;"&gt;Removed undershoot and maximum      rise/fall time limits.&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/li&gt;&lt;li class="MsoNormal" style="line-height: 150%;"&gt;&lt;span style="font-size:130%;"&gt;CEC capacitance limits changed&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/li&gt;&lt;li class="MsoNormal" style="line-height: 150%;"&gt;&lt;span style=""&gt;&lt;span style="font-size:130%;"&gt;CEC commands for timer control      brought back in an altered form, audio control commands added.&lt;/span&gt;&lt;a name="_Technical_Specifications:"&gt;&lt;/a&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/li&gt;&lt;/ul&gt;    &lt;p class="MsoNormal" face="times new roman"&gt;  &lt;/p&gt;&lt;p class="MsoNormal"&gt;&lt;b style=""&gt;&lt;u&gt;&lt;span style="font-size: 16pt; font-family: &amp;quot;Times New Roman&amp;quot;; color: rgb(51, 51, 0);"&gt;Types of HDMI Connectors:&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/u&gt;&lt;/b&gt;&lt;/p&gt;  &lt;p class="MsoNormal"&gt;&lt;o:p&gt; &lt;/o:p&gt;&lt;/p&gt;  &lt;p class="MsoNormal"&gt;&lt;b style=""&gt;&lt;u&gt;&lt;span style="font-size: 14pt; font-family: &amp;quot;Times New Roman&amp;quot;; color: maroon;"&gt;Type A &lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/u&gt;&lt;/b&gt;&lt;/p&gt;  &lt;p class="MsoNormal"&gt;  &lt;/p&gt;  &lt;table class="MsoTableGrid" style="border: medium none ; width: 4.7in; border-collapse: collapse;" border="1" cellpadding="0" cellspacing="0" width="451"&gt;  &lt;tbody&gt;&lt;tr style="height: 20.1pt;"&gt;   &lt;td colspan="4" style="border: 1pt solid windowtext; padding: 0in 5.4pt; width: 4.7in; height: 20.1pt;" valign="top" width="451"&gt;   &lt;p style="text-align: center;" align="center"&gt;&lt;b&gt;&lt;span style="font-family: &amp;quot;Times New Roman&amp;quot;; color: maroon;"&gt;Type A Connector Interface &lt;i&gt;(HDMI Rev 1.3)&lt;/i&gt;&lt;/span&gt;&lt;/b&gt;&lt;span style="font-family: &amp;quot;Times New Roman&amp;quot;; color: maroon;"&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;   &lt;/td&gt;  &lt;/tr&gt;  &lt;tr style="height: 16.75pt;"&gt;   &lt;td style="border-style: none solid solid; border-color: -moz-use-text-color windowtext windowtext; border-width: medium 1pt 1pt; padding: 0in 5.4pt; width: 30.9pt; height: 16.75pt;" valign="top" width="41"&gt;   &lt;p class="MsoNormal" style="text-align: center;" align="center"&gt;&lt;b&gt;&lt;span style="font-family: &amp;quot;Times New Roman&amp;quot;; color: navy;"&gt;Pin&lt;/span&gt;&lt;/b&gt;&lt;span style="font-family: &amp;quot;Times New Roman&amp;quot;; color: navy;"&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;   &lt;/td&gt;   &lt;td style="border-style: none solid solid none; border-color: -moz-use-text-color windowtext windowtext -moz-use-text-color; border-width: medium 1pt 1pt medium; padding: 0in 5.4pt; width: 127.5pt; height: 16.75pt;" valign="top" width="170"&gt;   &lt;p class="MsoNormal" style="text-align: center;" align="center"&gt;&lt;b&gt;&lt;span style="font-family: &amp;quot;Times New Roman&amp;quot;; color: navy;"&gt;Signal&lt;/span&gt;&lt;/b&gt;&lt;span style="font-family: &amp;quot;Times New Roman&amp;quot;; color: navy;"&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;   &lt;/td&gt;   &lt;td style="border-style: none solid solid none; border-color: -moz-use-text-color windowtext windowtext -moz-use-text-color; border-width: medium 1pt 1pt medium; padding: 0in 5.4pt; width: 36.15pt; height: 16.75pt;" valign="top" width="48"&gt;   &lt;p class="MsoNormal" style="text-align: center;" align="center"&gt;&lt;b&gt;&lt;span style="font-family: &amp;quot;Times New Roman&amp;quot;; color: navy;"&gt;Pin&lt;/span&gt;&lt;/b&gt;&lt;span style="font-family: &amp;quot;Times New Roman&amp;quot;; color: navy;"&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;   &lt;/td&gt;   &lt;td style="border-style: none solid solid none; border-color: -moz-use-text-color windowtext windowtext -moz-use-text-color; border-width: medium 1pt 1pt medium; padding: 0in 5.4pt; width: 143.85pt; height: 16.75pt;" valign="top" width="192"&gt;   &lt;p class="MsoNormal" style="text-align: center;" align="center"&gt;&lt;b&gt;&lt;span style="font-family: &amp;quot;Times New Roman&amp;quot;; color: navy;"&gt;Signal&lt;/span&gt;&lt;/b&gt;&lt;span style="font-family: &amp;quot;Times New Roman&amp;quot;; color: navy;"&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;   &lt;/td&gt;  &lt;/tr&gt;  &lt;tr style="height: 16.75pt;"&gt;   &lt;td style="border-style: none solid solid; border-color: -moz-use-text-color windowtext windowtext; border-width: medium 1pt 1pt; padding: 0in 5.4pt; width: 30.9pt; height: 16.75pt;" valign="top" width="41"&gt;   &lt;p style="text-align: right;" align="right"&gt;&lt;b&gt;&lt;span style="font-family: &amp;quot;Times New Roman&amp;quot;; color: navy;"&gt;1.&lt;/span&gt;&lt;/b&gt;&lt;span style="font-family: &amp;quot;Times New Roman&amp;quot;; color: navy;"&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;   &lt;/td&gt;   &lt;td style="border-style: none solid solid none; border-color: -moz-use-text-color windowtext windowtext -moz-use-text-color; border-width: medium 1pt 1pt medium; padding: 0in 5.4pt; width: 127.5pt; height: 16.75pt;" valign="top" width="170"&gt;   &lt;p class="MsoNormal"&gt;&lt;span style="font-family: &amp;quot;Times New Roman&amp;quot;; color: navy;"&gt;TMDS   Data2+&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;   &lt;/td&gt;   &lt;td style="border-style: none solid solid none; border-color: -moz-use-text-color windowtext windowtext -moz-use-text-color; border-width: medium 1pt 1pt medium; padding: 0in 5.4pt; width: 36.15pt; height: 16.75pt;" valign="top" width="48"&gt;   &lt;p style="text-align: right;" align="right"&gt;&lt;b&gt;&lt;span style="font-family: &amp;quot;Times New Roman&amp;quot;; color: navy;"&gt;2.&lt;/span&gt;&lt;/b&gt;&lt;span style="font-family: &amp;quot;Times New Roman&amp;quot;; color: navy;"&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;   &lt;/td&gt;   &lt;td style="border-style: none solid solid none; border-color: -moz-use-text-color windowtext windowtext -moz-use-text-color; border-width: medium 1pt 1pt medium; padding: 0in 5.4pt; width: 143.85pt; height: 16.75pt;" valign="top" width="192"&gt;   &lt;p class="MsoNormal"&gt;&lt;span style="font-family: &amp;quot;Times New Roman&amp;quot;; color: navy;"&gt;TMDS   Data2 Shield&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;   &lt;/td&gt;  &lt;/tr&gt;  &lt;tr style="height: 16.75pt;"&gt;   &lt;td style="border-style: none solid solid; border-color: -moz-use-text-color windowtext windowtext; border-width: medium 1pt 1pt; padding: 0in 5.4pt; width: 30.9pt; height: 16.75pt;" valign="top" width="41"&gt;   &lt;p style="text-align: right;" align="right"&gt;&lt;b&gt;&lt;span style="font-family: &amp;quot;Times New Roman&amp;quot;; color: navy;"&gt;3.&lt;/span&gt;&lt;/b&gt;&lt;span style="font-family: &amp;quot;Times New Roman&amp;quot;; color: navy;"&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;   &lt;/td&gt;   &lt;td style="border-style: none solid solid none; border-color: -moz-use-text-color windowtext windowtext -moz-use-text-color; border-width: medium 1pt 1pt medium; padding: 0in 5.4pt; width: 127.5pt; height: 16.75pt;" valign="top" width="170"&gt;   &lt;p class="MsoNormal"&gt;&lt;span style="font-family: &amp;quot;Times New Roman&amp;quot;; color: navy;"&gt;TMDS   Data2-&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;   &lt;/td&gt;   &lt;td style="border-style: none solid solid none; border-color: -moz-use-text-color windowtext windowtext -moz-use-text-color; border-width: medium 1pt 1pt medium; padding: 0in 5.4pt; width: 36.15pt; height: 16.75pt;" valign="top" width="48"&gt;   &lt;p style="text-align: right;" align="right"&gt;&lt;b&gt;&lt;span style="font-family: &amp;quot;Times New Roman&amp;quot;; color: navy;"&gt;4.&lt;/span&gt;&lt;/b&gt;&lt;span style="font-family: &amp;quot;Times New Roman&amp;quot;; color: navy;"&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;   &lt;/td&gt;   &lt;td style="border-style: none solid solid none; border-color: -moz-use-text-color windowtext windowtext -moz-use-text-color; border-width: medium 1pt 1pt medium; padding: 0in 5.4pt; width: 143.85pt; height: 16.75pt;" valign="top" width="192"&gt;   &lt;p class="MsoNormal"&gt;&lt;span style="font-family: &amp;quot;Times New Roman&amp;quot;; color: navy;"&gt;TMDS   Data1+&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;   &lt;/td&gt;  &lt;/tr&gt;  &lt;tr style="height: 16.75pt;"&gt;   &lt;td style="border-style: none solid solid; border-color: -moz-use-text-color windowtext windowtext; border-width: medium 1pt 1pt; padding: 0in 5.4pt; width: 30.9pt; height: 16.75pt;" valign="top" width="41"&gt;   &lt;p style="text-align: right;" align="right"&gt;&lt;b&gt;&lt;span style="font-family: &amp;quot;Times New Roman&amp;quot;; color: navy;"&gt;5.&lt;/span&gt;&lt;/b&gt;&lt;span style="font-family: &amp;quot;Times New Roman&amp;quot;; color: navy;"&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;   &lt;/td&gt;   &lt;td style="border-style: none solid solid none; border-color: -moz-use-text-color windowtext windowtext -moz-use-text-color; border-width: medium 1pt 1pt medium; padding: 0in 5.4pt; width: 127.5pt; height: 16.75pt;" valign="top" width="170"&gt;   &lt;p class="MsoNormal"&gt;&lt;span style="font-family: &amp;quot;Times New Roman&amp;quot;; color: navy;"&gt;TMDS   Data1 Shield&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;   &lt;/td&gt;   &lt;td style="border-style: none solid solid none; border-color: -moz-use-text-color windowtext windowtext -moz-use-text-color; border-width: medium 1pt 1pt medium; padding: 0in 5.4pt; width: 36.15pt; height: 16.75pt;" valign="top" width="48"&gt;   &lt;p style="text-align: right;" align="right"&gt;&lt;b&gt;&lt;span style="font-family: &amp;quot;Times New Roman&amp;quot;; color: navy;"&gt;6.&lt;/span&gt;&lt;/b&gt;&lt;span style="font-family: &amp;quot;Times New Roman&amp;quot;; color: navy;"&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;   &lt;/td&gt;   &lt;td style="border-style: none solid solid none; border-color: -moz-use-text-color windowtext windowtext -moz-use-text-color; border-width: medium 1pt 1pt medium; padding: 0in 5.4pt; width: 143.85pt; height: 16.75pt;" valign="top" width="192"&gt;   &lt;p class="MsoNormal"&gt;&lt;span style="font-family: &amp;quot;Times New Roman&amp;quot;; color: navy;"&gt;TMDS   Data1-&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;   &lt;/td&gt;  &lt;/tr&gt;  &lt;tr style="height: 16.75pt;"&gt;   &lt;td style="border-style: none solid solid; border-color: -moz-use-text-color windowtext windowtext; border-width: medium 1pt 1pt; padding: 0in 5.4pt; width: 30.9pt; height: 16.75pt;" valign="top" width="41"&gt;   &lt;p style="text-align: right;" align="right"&gt;&lt;b&gt;&lt;span style="font-family: &amp;quot;Times New Roman&amp;quot;; color: navy;"&gt;7.&lt;/span&gt;&lt;/b&gt;&lt;span style="font-family: &amp;quot;Times New Roman&amp;quot;; color: navy;"&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;   &lt;/td&gt;   &lt;td style="border-style: none solid solid none; border-color: -moz-use-text-color windowtext windowtext -moz-use-text-color; border-width: medium 1pt 1pt medium; padding: 0in 5.4pt; width: 127.5pt; height: 16.75pt;" valign="top" width="170"&gt;   &lt;p class="MsoNormal"&gt;&lt;span style="font-family: &amp;quot;Times New Roman&amp;quot;; color: navy;"&gt;TMDS   Data0+&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;   &lt;/td&gt;   &lt;td style="border-style: none solid solid none; border-color: -moz-use-text-color windowtext windowtext -moz-use-text-color; border-width: medium 1pt 1pt medium; padding: 0in 5.4pt; width: 36.15pt; height: 16.75pt;" valign="top" width="48"&gt;   &lt;p style="text-align: right;" align="right"&gt;&lt;b&gt;&lt;span style="font-family: &amp;quot;Times New Roman&amp;quot;; color: navy;"&gt;8.&lt;/span&gt;&lt;/b&gt;&lt;span style="font-family: &amp;quot;Times New Roman&amp;quot;; color: navy;"&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;   &lt;/td&gt;   &lt;td style="border-style: none solid solid none; border-color: -moz-use-text-color windowtext windowtext -moz-use-text-color; border-width: medium 1pt 1pt medium; padding: 0in 5.4pt; width: 143.85pt; height: 16.75pt;" valign="top" width="192"&gt;   &lt;p class="MsoNormal"&gt;&lt;span style="font-family: &amp;quot;Times New Roman&amp;quot;; color: navy;"&gt;TMDS   Data0 Shield&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;   &lt;/td&gt;  &lt;/tr&gt;  &lt;tr style="height: 17.6pt;"&gt;   &lt;td style="border-style: none solid solid; border-color: -moz-use-text-color windowtext windowtext; border-width: medium 1pt 1pt; padding: 0in 5.4pt; width: 30.9pt; height: 17.6pt;" valign="top" width="41"&gt;   &lt;p style="text-align: right;" align="right"&gt;&lt;b&gt;&lt;span style="font-family: &amp;quot;Times New Roman&amp;quot;; color: navy;"&gt;9.&lt;/span&gt;&lt;/b&gt;&lt;span style="font-family: &amp;quot;Times New Roman&amp;quot;; color: navy;"&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;   &lt;/td&gt;   &lt;td style="border-style: none solid solid none; border-color: -moz-use-text-color windowtext windowtext -moz-use-text-color; border-width: medium 1pt 1pt medium; padding: 0in 5.4pt; width: 127.5pt; height: 17.6pt;" valign="top" width="170"&gt;   &lt;p class="MsoNormal"&gt;&lt;span style="font-family: &amp;quot;Times New Roman&amp;quot;; color: navy;"&gt;TMDS   Data0-&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;   &lt;/td&gt;   &lt;td style="border-style: none solid solid none; border-color: -moz-use-text-color windowtext windowtext -moz-use-text-color; border-width: medium 1pt 1pt medium; padding: 0in 5.4pt; width: 36.15pt; height: 17.6pt;" valign="top" width="48"&gt;   &lt;p style="text-align: right;" align="right"&gt;&lt;b&gt;&lt;span style="font-family: &amp;quot;Times New Roman&amp;quot;; color: navy;"&gt;10.&lt;/span&gt;&lt;/b&gt;&lt;span style="font-family: &amp;quot;Times New Roman&amp;quot;; color: navy;"&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;   &lt;/td&gt;   &lt;td style="border-style: none solid solid none; border-color: -moz-use-text-color windowtext windowtext -moz-use-text-color; border-width: medium 1pt 1pt medium; padding: 0in 5.4pt; width: 143.85pt; height: 17.6pt;" valign="top" width="192"&gt;   &lt;p class="MsoNormal"&gt;&lt;span style="font-family: &amp;quot;Times New Roman&amp;quot;; color: navy;"&gt;TMDS   Clock+&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;   &lt;/td&gt;  &lt;/tr&gt;  &lt;tr style="height: 17.6pt;"&gt;   &lt;td style="border-style: none solid solid; border-color: -moz-use-text-color windowtext windowtext; border-width: medium 1pt 1pt; padding: 0in 5.4pt; width: 30.9pt; height: 17.6pt;" valign="top" width="41"&gt;   &lt;p style="text-align: right;" align="right"&gt;&lt;b&gt;&lt;span style="font-family: &amp;quot;Times New Roman&amp;quot;; color: navy;"&gt;11.&lt;/span&gt;&lt;/b&gt;&lt;span style="font-family: &amp;quot;Times New Roman&amp;quot;; color: navy;"&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;   &lt;/td&gt;   &lt;td style="border-style: none solid solid none; border-color: -moz-use-text-color windowtext windowtext -moz-use-text-color; border-width: medium 1pt 1pt medium; padding: 0in 5.4pt; width: 127.5pt; height: 17.6pt;" valign="top" width="170"&gt;   &lt;p class="MsoNormal"&gt;&lt;span style="font-family: &amp;quot;Times New Roman&amp;quot;; color: navy;"&gt;TMDS   Clock Shield &lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;   &lt;/td&gt;   &lt;td style="border-style: none solid solid none; border-color: -moz-use-text-color windowtext windowtext -moz-use-text-color; border-width: medium 1pt 1pt medium; padding: 0in 5.4pt; width: 36.15pt; height: 17.6pt;" valign="top" width="48"&gt;   &lt;p style="text-align: right;" align="right"&gt;&lt;b&gt;&lt;span style="font-family: &amp;quot;Times New Roman&amp;quot;; color: navy;"&gt;12.&lt;/span&gt;&lt;/b&gt;&lt;span style="font-family: &amp;quot;Times New Roman&amp;quot;; color: navy;"&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;   &lt;/td&gt;   &lt;td style="border-style: none solid solid none; border-color: -moz-use-text-color windowtext windowtext -moz-use-text-color; border-width: medium 1pt 1pt medium; padding: 0in 5.4pt; width: 143.85pt; height: 17.6pt;" valign="top" width="192"&gt;   &lt;p class="MsoNormal"&gt;&lt;span style="font-family: &amp;quot;Times New Roman&amp;quot;; color: navy;"&gt;TMDS   Clock-&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;   &lt;/td&gt;  &lt;/tr&gt;  &lt;tr style="height: 17.6pt;"&gt;   &lt;td style="border-style: none solid solid; border-color: -moz-use-text-color windowtext windowtext; border-width: medium 1pt 1pt; padding: 0in 5.4pt; width: 30.9pt; height: 17.6pt;" valign="top" width="41"&gt;   &lt;p style="text-align: right;" align="right"&gt;&lt;b&gt;&lt;span style="font-family: &amp;quot;Times New Roman&amp;quot;; color: navy;"&gt;13.&lt;/span&gt;&lt;/b&gt;&lt;span style="font-family: &amp;quot;Times New Roman&amp;quot;; color: navy;"&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;   &lt;/td&gt;   &lt;td style="border-style: none solid solid none; border-color: -moz-use-text-color windowtext windowtext -moz-use-text-color; border-width: medium 1pt 1pt medium; padding: 0in 5.4pt; width: 127.5pt; height: 17.6pt;" valign="top" width="170"&gt;   &lt;p class="MsoNormal"&gt;&lt;span style="font-family: &amp;quot;Times New Roman&amp;quot;; color: navy;"&gt;CEC&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;   &lt;/td&gt;   &lt;td style="border-style: none solid solid none; border-color: -moz-use-text-color windowtext windowtext -moz-use-text-color; border-width: medium 1pt 1pt medium; padding: 0in 5.4pt; width: 36.15pt; height: 17.6pt;" valign="top" width="48"&gt;   &lt;p style="text-align: right;" align="right"&gt;&lt;b&gt;&lt;span style="font-family: &amp;quot;Times New Roman&amp;quot;; color: navy;"&gt;14.&lt;/span&gt;&lt;/b&gt;&lt;span style="font-family: &amp;quot;Times New Roman&amp;quot;; color: navy;"&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;   &lt;/td&gt;   &lt;td style="border-style: none solid solid none; border-color: -moz-use-text-color windowtext windowtext -moz-use-text-color; border-width: medium 1pt 1pt medium; padding: 0in 5.4pt; width: 143.85pt; height: 17.6pt;" valign="top" width="192"&gt;   &lt;p class="MsoNormal"&gt;&lt;span style="font-family: &amp;quot;Times New Roman&amp;quot;; color: navy;"&gt;Reserved   (N.C. on device)&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;   &lt;/td&gt;  &lt;/tr&gt;  &lt;tr style="height: 17.6pt;"&gt;   &lt;td style="border-style: none solid solid; border-color: -moz-use-text-color windowtext windowtext; border-width: medium 1pt 1pt; padding: 0in 5.4pt; width: 30.9pt; height: 17.6pt;" valign="top" width="41"&gt;   &lt;p style="text-align: right;" align="right"&gt;&lt;b&gt;&lt;span style="font-family: &amp;quot;Times New Roman&amp;quot;; color: navy;"&gt;15.&lt;/span&gt;&lt;/b&gt;&lt;span style="font-family: &amp;quot;Times New Roman&amp;quot;; color: navy;"&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;   &lt;/td&gt;   &lt;td style="border-style: none solid solid none; border-color: -moz-use-text-color windowtext windowtext -moz-use-text-color; border-width: medium 1pt 1pt medium; padding: 0in 5.4pt; width: 127.5pt; height: 17.6pt;" valign="top" width="170"&gt;   &lt;p class="MsoNormal"&gt;&lt;span style="font-family: &amp;quot;Times New Roman&amp;quot;; color: navy;"&gt;SCL&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;   &lt;/td&gt;   &lt;td style="border-style: none solid solid none; border-color: -moz-use-text-color windowtext windowtext -moz-use-text-color; border-width: medium 1pt 1pt medium; padding: 0in 5.4pt; width: 36.15pt; height: 17.6pt;" valign="top" width="48"&gt;   &lt;p style="text-align: right;" align="right"&gt;&lt;b&gt;&lt;span style="font-family: &amp;quot;Times New Roman&amp;quot;; color: navy;"&gt;16.&lt;/span&gt;&lt;/b&gt;&lt;span style="font-family: &amp;quot;Times New Roman&amp;quot;; color: navy;"&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;   &lt;/td&gt;   &lt;td style="border-style: none solid solid none; border-color: -moz-use-text-color windowtext windowtext -moz-use-text-color; border-width: medium 1pt 1pt medium; padding: 0in 5.4pt; width: 143.85pt; height: 17.6pt;" valign="top" width="192"&gt;   &lt;p class="MsoNormal"&gt;&lt;span style="font-family: &amp;quot;Times New Roman&amp;quot;; color: navy;"&gt;SDA&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;   &lt;/td&gt;  &lt;/tr&gt;  &lt;tr style="height: 17.6pt;"&gt;   &lt;td style="border-style: none solid solid; border-color: -moz-use-text-color windowtext windowtext; border-width: medium 1pt 1pt; padding: 0in 5.4pt; width: 30.9pt; height: 17.6pt;" valign="top" width="41"&gt;   &lt;p style="text-align: right;" align="right"&gt;&lt;b&gt;&lt;span style="font-family: &amp;quot;Times New Roman&amp;quot;; color: navy;"&gt;17.&lt;/span&gt;&lt;/b&gt;&lt;span style="font-family: &amp;quot;Times New Roman&amp;quot;; color: navy;"&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;   &lt;/td&gt;   &lt;td style="border-style: none solid solid none; border-color: -moz-use-text-color windowtext windowtext -moz-use-text-color; border-width: medium 1pt 1pt medium; padding: 0in 5.4pt; width: 127.5pt; height: 17.6pt;" valign="top" width="170"&gt;   &lt;p class="MsoNormal"&gt;&lt;span style="font-family: &amp;quot;Times New Roman&amp;quot;; color: navy;"&gt;DDC/CEC   Ground&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;   &lt;/td&gt;   &lt;td style="border-style: none solid solid none; border-color: -moz-use-text-color windowtext windowtext -moz-use-text-color; border-width: medium 1pt 1pt medium; padding: 0in 5.4pt; width: 36.15pt; height: 17.6pt;" valign="top" width="48"&gt;   &lt;p style="text-align: right;" align="right"&gt;&lt;b&gt;&lt;span style="font-family: &amp;quot;Times New Roman&amp;quot;; color: navy;"&gt;18.&lt;/span&gt;&lt;/b&gt;&lt;span style="font-family: &amp;quot;Times New Roman&amp;quot;; color: navy;"&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;   &lt;/td&gt;   &lt;td style="border-style: none solid solid none; border-color: -moz-use-text-color windowtext windowtext -moz-use-text-color; border-width: medium 1pt 1pt medium; padding: 0in 5.4pt; width: 143.85pt; height: 17.6pt;" valign="top" width="192"&gt;   &lt;p class="MsoNormal"&gt;&lt;span style="font-family: &amp;quot;Times New Roman&amp;quot;; color: navy;"&gt;+   5V Power&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;   &lt;/td&gt;  &lt;/tr&gt;  &lt;tr style="height: 17.6pt;"&gt;   &lt;td style="border-style: none solid solid; border-color: -moz-use-text-color windowtext windowtext; border-width: medium 1pt 1pt; padding: 0in 5.4pt; width: 30.9pt; height: 17.6pt;" valign="top" width="41"&gt;   &lt;p style="text-align: right;" align="right"&gt;&lt;b&gt;&lt;span style="font-family: &amp;quot;Times New Roman&amp;quot;; color: navy;"&gt;19.&lt;/span&gt;&lt;/b&gt;&lt;span style="font-family: &amp;quot;Times New Roman&amp;quot;; color: navy;"&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;   &lt;/td&gt;   &lt;td style="border-style: none solid solid none; border-color: -moz-use-text-color windowtext windowtext -moz-use-text-color; border-width: medium 1pt 1pt medium; padding: 0in 5.4pt; width: 127.5pt; height: 17.6pt;" valign="top" width="170"&gt;   &lt;p class="MsoNormal"&gt;&lt;span style="font-family: &amp;quot;Times New Roman&amp;quot;; color: navy;"&gt;Hot   Plug Detect&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;   &lt;/td&gt;   &lt;td style="border-style: none solid solid none; border-color: -moz-use-text-color windowtext windowtext -moz-use-text-color; border-width: medium 1pt 1pt medium; padding: 0in 5.4pt; width: 36.15pt; height: 17.6pt;" valign="top" width="48"&gt;   &lt;p style="text-align: right;" align="right"&gt;&lt;b&gt;&lt;span style="font-family: &amp;quot;Times New Roman&amp;quot;; color: navy;"&gt;Shell&lt;/span&gt;&lt;/b&gt;&lt;span style="font-family: &amp;quot;Times New Roman&amp;quot;; color: navy;"&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;   &lt;/td&gt;   &lt;td style="border-style: none solid solid none; border-color: -moz-use-text-color windowtext windowtext -moz-use-text-color; border-width: medium 1pt 1pt medium; padding: 0in 5.4pt; width: 143.85pt; height: 17.6pt;" valign="top" width="192"&gt;   &lt;p class="MsoNormal"&gt;&lt;span style="font-family: &amp;quot;Times New Roman&amp;quot;; color: navy;"&gt;Ground   Plane&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;   &lt;/td&gt;  &lt;/tr&gt; &lt;/tbody&gt;&lt;/table&gt;  &lt;p class="MsoNormal"&gt;&lt;span style="font-size: 24pt;"&gt;&lt;o:p&gt; &lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal"&gt;&lt;b style=""&gt;&lt;u&gt;&lt;span style="font-size: 14pt; font-family: &amp;quot;Times New Roman&amp;quot;; color: maroon;"&gt;Type B&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/u&gt;&lt;/b&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style="text-indent: 0.5in;"&gt;&lt;b style=""&gt;&lt;u&gt;&lt;span style="color: maroon;"&gt;&lt;o:p&gt;&lt;span style="text-decoration: none;"&gt; &lt;/span&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/u&gt;&lt;/b&gt;&lt;/p&gt;  &lt;table class="MsoTableGrid" style="border: medium none ; width: 4.7in; border-collapse: collapse;" border="1" cellpadding="0" cellspacing="0" width="451"&gt;  &lt;tbody&gt;&lt;tr style="height: 17.25pt;"&gt;   &lt;td colspan="4" style="border: 1pt solid windowtext; padding: 0in 5.4pt; width: 4.7in; height: 17.25pt;" valign="top" width="451"&gt;   &lt;p style="text-align: center;" align="center"&gt;&lt;b&gt;&lt;span style="font-family: &amp;quot;Times New Roman&amp;quot;; color: maroon;"&gt;Type B Connector Interface &lt;i&gt;(HDMI Rev 1.3)&lt;/i&gt;&lt;/span&gt;&lt;/b&gt;&lt;span style="font-family: &amp;quot;Times New Roman&amp;quot;; color: maroon;"&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;   &lt;/td&gt;  &lt;/tr&gt;  &lt;tr style="height: 17.25pt;"&gt;   &lt;td style="border-style: none solid solid; border-color: -moz-use-text-color windowtext windowtext; border-width: medium 1pt 1pt; padding: 0in 5.4pt; width: 32.45pt; height: 17.25pt;" valign="top" width="43"&gt;   &lt;p class="MsoNormal"&gt;&lt;b&gt;&lt;span style="font-family: &amp;quot;Times New Roman&amp;quot;; color: navy;"&gt;Pin&lt;/span&gt;&lt;/b&gt;&lt;span style="font-family: &amp;quot;Times New Roman&amp;quot;; color: navy;"&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;   &lt;/td&gt;   &lt;td style="border-style: none solid solid none; border-color: -moz-use-text-color windowtext windowtext -moz-use-text-color; border-width: medium 1pt 1pt medium; padding: 0in 5.4pt; width: 125.95pt; height: 17.25pt;" valign="top" width="168"&gt;   &lt;p class="MsoNormal"&gt;&lt;b&gt;&lt;span style="font-family: &amp;quot;Times New Roman&amp;quot;; color: navy;"&gt;Signal&lt;/span&gt;&lt;/b&gt;&lt;span style="font-family: &amp;quot;Times New Roman&amp;quot;; color: navy;"&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;   &lt;/td&gt;   &lt;td style="border-style: none solid solid none; border-color: -moz-use-text-color windowtext windowtext -moz-use-text-color; border-width: medium 1pt 1pt medium; padding: 0in 5.4pt; width: 36.15pt; height: 17.25pt;" valign="top" width="48"&gt;   &lt;p class="MsoNormal"&gt;&lt;b&gt;&lt;span style="font-family: &amp;quot;Times New Roman&amp;quot;; color: navy;"&gt;Pin&lt;/span&gt;&lt;/b&gt;&lt;span style="font-family: &amp;quot;Times New Roman&amp;quot;; color: navy;"&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;   &lt;/td&gt;   &lt;td style="border-style: none solid solid none; border-color: -moz-use-text-color windowtext windowtext -moz-use-text-color; border-width: medium 1pt 1pt medium; padding: 0in 5.4pt; width: 143.85pt; height: 17.25pt;" valign="top" width="192"&gt;   &lt;p class="MsoNormal"&gt;&lt;b&gt;&lt;span style="font-family: &amp;quot;Times New Roman&amp;quot;; color: navy;"&gt;Signal&lt;/span&gt;&lt;/b&gt;&lt;span style="font-family: &amp;quot;Times New Roman&amp;quot;; color: navy;"&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;   &lt;/td&gt;  &lt;/tr&gt;  &lt;tr style="height: 17.25pt;"&gt;   &lt;td style="border-style: none solid solid; border-color: -moz-use-text-color windowtext windowtext; border-width: medium 1pt 1pt; padding: 0in 5.4pt; width: 32.45pt; height: 17.25pt;" valign="top" width="43"&gt;   &lt;p style="text-align: right;" align="right"&gt;&lt;b&gt;&lt;span style="font-family: &amp;quot;Times New Roman&amp;quot;; color: navy;"&gt;1.&lt;/span&gt;&lt;/b&gt;&lt;span style="font-family: &amp;quot;Times New Roman&amp;quot;; color: navy;"&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;   &lt;/td&gt;   &lt;td style="border-style: none solid solid none; border-color: -moz-use-text-color windowtext windowtext -moz-use-text-color; border-width: medium 1pt 1pt medium; padding: 0in 5.4pt; width: 125.95pt; height: 17.25pt;" valign="top" width="168"&gt;   &lt;p class="MsoNormal"&gt;&lt;span style="font-family: &amp;quot;Times New Roman&amp;quot;; color: navy;"&gt;TMDS   Data2+&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;   &lt;/td&gt;   &lt;td style="border-style: none solid solid none; border-color: -moz-use-text-color windowtext windowtext -moz-use-text-color; border-width: medium 1pt 1pt medium; padding: 0in 5.4pt; width: 36.15pt; height: 17.25pt;" valign="top" width="48"&gt;   &lt;p style="text-align: right;" align="right"&gt;&lt;b&gt;&lt;span style="font-family: &amp;quot;Times New Roman&amp;quot;; color: navy;"&gt;2.&lt;/span&gt;&lt;/b&gt;&lt;span style="font-family: &amp;quot;Times New Roman&amp;quot;; color: navy;"&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;   &lt;/td&gt;   &lt;td style="border-style: none solid solid none; border-color: -moz-use-text-color windowtext windowtext -moz-use-text-color; border-width: medium 1pt 1pt medium; padding: 0in 5.4pt; width: 143.85pt; height: 17.25pt;" valign="top" width="192"&gt;   &lt;p class="MsoNormal"&gt;&lt;span style="font-family: &amp;quot;Times New Roman&amp;quot;; color: navy;"&gt;TMDS   Data2 Shield&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;   &lt;/td&gt;  &lt;/tr&gt;  &lt;tr style="height: 17.25pt;"&gt;   &lt;td style="border-style: none solid solid; border-color: -moz-use-text-color windowtext windowtext; border-width: medium 1pt 1pt; padding: 0in 5.4pt; width: 32.45pt; height: 17.25pt;" valign="top" width="43"&gt;   &lt;p style="text-align: right;" align="right"&gt;&lt;b&gt;&lt;span style="font-family: &amp;quot;Times New Roman&amp;quot;; color: navy;"&gt;3.&lt;/span&gt;&lt;/b&gt;&lt;span style="font-family: &amp;quot;Times New Roman&amp;quot;; color: navy;"&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;   &lt;/td&gt;   &lt;td style="border-style: none solid solid none; border-color: -moz-use-text-color windowtext windowtext -moz-use-text-color; border-width: medium 1pt 1pt medium; padding: 0in 5.4pt; width: 125.95pt; height: 17.25pt;" valign="top" width="168"&gt;   &lt;p class="MsoNormal"&gt;&lt;span style="font-family: &amp;quot;Times New Roman&amp;quot;; color: navy;"&gt;TMDS   Data2-&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;   &lt;/td&gt;   &lt;td style="border-style: none solid solid none; border-color: -moz-use-text-color windowtext windowtext -moz-use-text-color; border-width: medium 1pt 1pt medium; padding: 0in 5.4pt; width: 36.15pt; height: 17.25pt;" valign="top" width="48"&gt;   &lt;p style="text-align: right;" align="right"&gt;&lt;b&gt;&lt;span style="font-family: &amp;quot;Times New Roman&amp;quot;; color: navy;"&gt;4.&lt;/span&gt;&lt;/b&gt;&lt;span style="font-family: &amp;quot;Times New Roman&amp;quot;; color: navy;"&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;   &lt;/td&gt;   &lt;td style="border-style: none solid solid none; border-color: -moz-use-text-color windowtext windowtext -moz-use-text-color; border-width: medium 1pt 1pt medium; padding: 0in 5.4pt; width: 143.85pt; height: 17.25pt;" valign="top" width="192"&gt;   &lt;p class="MsoNormal"&gt;&lt;span style="font-family: &amp;quot;Times New Roman&amp;quot;; color: navy;"&gt;TMDS   Data1+&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;   &lt;/td&gt;  &lt;/tr&gt;  &lt;tr style="height: 17.25pt;"&gt;   &lt;td style="border-style: none solid solid; border-color: -moz-use-text-color windowtext windowtext; border-width: medium 1pt 1pt; padding: 0in 5.4pt; width: 32.45pt; height: 17.25pt;" valign="top" width="43"&gt;   &lt;p style="text-align: right;" align="right"&gt;&lt;b&gt;&lt;span style="font-family: &amp;quot;Times New Roman&amp;quot;; color: navy;"&gt;5.&lt;/span&gt;&lt;/b&gt;&lt;span style="font-family: &amp;quot;Times New Roman&amp;quot;; color: navy;"&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;   &lt;/td&gt;   &lt;td style="border-style: none solid solid none; border-color: -moz-use-text-color windowtext windowtext -moz-use-text-color; border-width: medium 1pt 1pt medium; padding: 0in 5.4pt; width: 125.95pt; height: 17.25pt;" valign="top" width="168"&gt;   &lt;p class="MsoNormal"&gt;&lt;span style="font-family: &amp;quot;Times New Roman&amp;quot;; color: navy;"&gt;TMDS   Data1 Shield&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;   &lt;/td&gt;   &lt;td style="border-style: none solid solid none; border-color: -moz-use-text-color windowtext windowtext -moz-use-text-color; border-width: medium 1pt 1pt medium; padding: 0in 5.4pt; width: 36.15pt; height: 17.25pt;" valign="top" width="48"&gt;   &lt;p style="text-align: right;" align="right"&gt;&lt;b&gt;&lt;span style="font-family: &amp;quot;Times New Roman&amp;quot;; color: navy;"&gt;6.&lt;/span&gt;&lt;/b&gt;&lt;span style="font-family: &amp;quot;Times New Roman&amp;quot;; color: navy;"&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;   &lt;/td&gt;   &lt;td style="border-style: none solid solid none; border-color: -moz-use-text-color windowtext windowtext -moz-use-text-color; border-width: medium 1pt 1pt medium; padding: 0in 5.4pt; width: 143.85pt; height: 17.25pt;" valign="top" width="192"&gt;   &lt;p class="MsoNormal"&gt;&lt;span style="font-family: &amp;quot;Times New Roman&amp;quot;; color: navy;"&gt;TMDS   Data1-&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;   &lt;/td&gt;  &lt;/tr&gt;  &lt;tr style="height: 17.25pt;"&gt;   &lt;td style="border-style: none solid solid; border-color: -moz-use-text-color windowtext windowtext; border-width: medium 1pt 1pt; padding: 0in 5.4pt; width: 32.45pt; height: 17.25pt;" valign="top" width="43"&gt;   &lt;p style="text-align: right;" align="right"&gt;&lt;b&gt;&lt;span style="font-family: &amp;quot;Times New Roman&amp;quot;; color: navy;"&gt;7.&lt;/span&gt;&lt;/b&gt;&lt;span style="font-family: &amp;quot;Times New Roman&amp;quot;; color: navy;"&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;   &lt;/td&gt;   &lt;td style="border-style: none solid solid none; border-color: -moz-use-text-color windowtext windowtext -moz-use-text-color; border-width: medium 1pt 1pt medium; padding: 0in 5.4pt; width: 125.95pt; height: 17.25pt;" valign="top" width="168"&gt;   &lt;p class="MsoNormal"&gt;&lt;span style="font-family: &amp;quot;Times New Roman&amp;quot;; color: navy;"&gt;TMDS   Data0+&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;   &lt;/td&gt;   &lt;td style="border-style: none solid solid none; border-color: -moz-use-text-color windowtext windowtext -moz-use-text-color; border-width: medium 1pt 1pt medium; padding: 0in 5.4pt; width: 36.15pt; height: 17.25pt;" valign="top" width="48"&gt;   &lt;p style="text-align: right;" align="right"&gt;&lt;b&gt;&lt;span style="font-family: &amp;quot;Times New Roman&amp;quot;; color: navy;"&gt;8.&lt;/span&gt;&lt;/b&gt;&lt;span style="font-family: &amp;quot;Times New Roman&amp;quot;; color: navy;"&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;   &lt;/td&gt;   &lt;td style="border-style: none solid solid none; border-color: -moz-use-text-color windowtext windowtext -moz-use-text-color; border-width: medium 1pt 1pt medium; padding: 0in 5.4pt; width: 143.85pt; height: 17.25pt;" valign="top" width="192"&gt;   &lt;p class="MsoNormal"&gt;&lt;span style="font-family: &amp;quot;Times New Roman&amp;quot;; color: navy;"&gt;TMDS   Data0 Shield&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;   &lt;/td&gt;  &lt;/tr&gt;  &lt;tr style="height: 17.25pt;"&gt;   &lt;td style="border-style: none solid solid; border-color: -moz-use-text-color windowtext windowtext; border-width: medium 1pt 1pt; padding: 0in 5.4pt; width: 32.45pt; height: 17.25pt;" valign="top" width="43"&gt;   &lt;p style="text-align: right;" align="right"&gt;&lt;b&gt;&lt;span style="font-family: &amp;quot;Times New Roman&amp;quot;; color: navy;"&gt;9.&lt;/span&gt;&lt;/b&gt;&lt;span style="font-family: &amp;quot;Times New Roman&amp;quot;; color: navy;"&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;   &lt;/td&gt;   &lt;td style="border-style: none solid solid none; border-color: -moz-use-text-color windowtext windowtext -moz-use-text-color; border-width: medium 1pt 1pt medium; padding: 0in 5.4pt; width: 125.95pt; height: 17.25pt;" valign="top" width="168"&gt;   &lt;p class="MsoNormal"&gt;&lt;span style="font-family: &amp;quot;Times New Roman&amp;quot;; color: navy;"&gt;TMDS   Data0-&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;   &lt;/td&gt;   &lt;td style="border-style: none solid solid none; border-color: -moz-use-text-color windowtext windowtext -moz-use-text-color; border-width: medium 1pt 1pt medium; padding: 0in 5.4pt; width: 36.15pt; height: 17.25pt;" valign="top" width="48"&gt;   &lt;p style="text-align: right;" align="right"&gt;&lt;b&gt;&lt;span style="font-family: &amp;quot;Times New Roman&amp;quot;; color: navy;"&gt;10.&lt;/span&gt;&lt;/b&gt;&lt;span style="font-family: &amp;quot;Times New Roman&amp;quot;; color: navy;"&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;   &lt;/td&gt;   &lt;td style="border-style: none solid solid none; border-color: -moz-use-text-color windowtext windowtext -moz-use-text-color; border-width: medium 1pt 1pt medium; padding: 0in 5.4pt; width: 143.85pt; height: 17.25pt;" valign="top" width="192"&gt;   &lt;p class="MsoNormal"&gt;&lt;span style="font-family: &amp;quot;Times New Roman&amp;quot;; color: navy;"&gt;TMDS   Clock+&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;   &lt;/td&gt;  &lt;/tr&gt;  &lt;tr style="height: 17.25pt;"&gt;   &lt;td style="border-style: none solid solid; border-color: -moz-use-text-color windowtext windowtext; border-width: medium 1pt 1pt; padding: 0in 5.4pt; width: 32.45pt; height: 17.25pt;" valign="top" width="43"&gt;   &lt;p style="text-align: right;" align="right"&gt;&lt;b&gt;&lt;span style="font-family: &amp;quot;Times New Roman&amp;quot;; color: navy;"&gt;11.&lt;/span&gt;&lt;/b&gt;&lt;span style="font-family: &amp;quot;Times New Roman&amp;quot;; color: navy;"&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;   &lt;/td&gt;   &lt;td style="border-style: none solid solid none; border-color: -moz-use-text-color windowtext windowtext -moz-use-text-color; border-width: medium 1pt 1pt medium; padding: 0in 5.4pt; width: 125.95pt; height: 17.25pt;" valign="top" width="168"&gt;   &lt;p class="MsoNormal"&gt;&lt;span style="font-family: &amp;quot;Times New Roman&amp;quot;; color: navy;"&gt;TMDS   Clock Shield &lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;   &lt;/td&gt;   &lt;td style="border-style: none solid solid none; border-color: -moz-use-text-color windowtext windowtext -moz-use-text-color; border-width: medium 1pt 1pt medium; padding: 0in 5.4pt; width: 36.15pt; height: 17.25pt;" valign="top" width="48"&gt;   &lt;p style="text-align: right;" align="right"&gt;&lt;b&gt;&lt;span style="font-family: &amp;quot;Times New Roman&amp;quot;; color: navy;"&gt;12.&lt;/span&gt;&lt;/b&gt;&lt;span style="font-family: &amp;quot;Times New Roman&amp;quot;; color: navy;"&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;   &lt;/td&gt;   &lt;td style="border-style: none solid solid none; border-color: -moz-use-text-color windowtext windowtext -moz-use-text-color; border-width: medium 1pt 1pt medium; padding: 0in 5.4pt; width: 143.85pt; height: 17.25pt;" valign="top" width="192"&gt;   &lt;p class="MsoNormal"&gt;&lt;span style="font-family: &amp;quot;Times New Roman&amp;quot;; color: navy;"&gt;TMDS   Clock-&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;   &lt;/td&gt;  &lt;/tr&gt;  &lt;tr style="height: 17.25pt;"&gt;   &lt;td style="border-style: none solid solid; border-color: -moz-use-text-color windowtext windowtext; border-width: medium 1pt 1pt; padding: 0in 5.4pt; width: 32.45pt; height: 17.25pt;" valign="top" width="43"&gt;   &lt;p style="text-align: right;" align="right"&gt;&lt;b&gt;&lt;span style="font-family: &amp;quot;Times New Roman&amp;quot;; color: navy;"&gt;13.&lt;/span&gt;&lt;/b&gt;&lt;span style="font-family: &amp;quot;Times New Roman&amp;quot;; color: navy;"&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;   &lt;/td&gt;   &lt;td style="border-style: none solid solid none; border-color: -moz-use-text-color windowtext windowtext -moz-use-text-color; border-width: medium 1pt 1pt medium; padding: 0in 5.4pt; width: 125.95pt; height: 17.25pt;" valign="top" width="168"&gt;   &lt;p class="MsoNormal"&gt;&lt;span style="font-family: &amp;quot;Times New Roman&amp;quot;; color: navy;"&gt;TMDS   Data5+&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;   &lt;/td&gt;   &lt;td style="border-style: none solid solid none; border-color: -moz-use-text-color windowtext windowtext -moz-use-text-color; border-width: medium 1pt 1pt medium; padding: 0in 5.4pt; width: 36.15pt; height: 17.25pt;" valign="top" width="48"&gt;   &lt;p style="text-align: right;" align="right"&gt;&lt;b&gt;&lt;span style="font-family: &amp;quot;Times New Roman&amp;quot;; color: navy;"&gt;14.&lt;/span&gt;&lt;/b&gt;&lt;span style="font-family: &amp;quot;Times New Roman&amp;quot;; color: navy;"&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;   &lt;/td&gt;   &lt;td style="border-style: none solid solid none; border-color: -moz-use-text-color windowtext windowtext -moz-use-text-color; border-width: medium 1pt 1pt medium; padding: 0in 5.4pt; width: 143.85pt; height: 17.25pt;" valign="top" width="192"&gt;   &lt;p class="MsoNormal"&gt;&lt;span style="font-family: &amp;quot;Times New Roman&amp;quot;; color: navy;"&gt;TMDS   Data5 Shield&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;   &lt;/td&gt;  &lt;/tr&gt;  &lt;tr style="height: 17.25pt;"&gt;   &lt;td style="border-style: none solid solid; border-color: -moz-use-text-color windowtext windowtext; border-width: medium 1pt 1pt; padding: 0in 5.4pt; width: 32.45pt; height: 17.25pt;" valign="top" width="43"&gt;   &lt;p style="text-align: right;" align="right"&gt;&lt;b&gt;&lt;span style="font-family: &amp;quot;Times New Roman&amp;quot;; color: navy;"&gt;15.&lt;/span&gt;&lt;/b&gt;&lt;span style="font-family: &amp;quot;Times New Roman&amp;quot;; color: navy;"&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;   &lt;/td&gt;   &lt;td style="border-style: none solid solid none; border-color: -moz-use-text-color windowtext windowtext -moz-use-text-color; border-width: medium 1pt 1pt medium; padding: 0in 5.4pt; width: 125.95pt; height: 17.25pt;" valign="top" width="168"&gt;   &lt;p class="MsoNormal"&gt;&lt;span style="font-family: &amp;quot;Times New Roman&amp;quot;; color: navy;"&gt;TMDS   Data5-&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;   &lt;/td&gt;   &lt;td style="border-style: none solid solid none; border-color: -moz-use-text-color windowtext windowtext -moz-use-text-color; border-width: medium 1pt 1pt medium; padding: 0in 5.4pt; width: 36.15pt; height: 17.25pt;" valign="top" width="48"&gt;   &lt;p style="text-align: right;" align="right"&gt;&lt;b&gt;&lt;span style="font-family: &amp;quot;Times New Roman&amp;quot;; color: navy;"&gt;16.&lt;/span&gt;&lt;/b&gt;&lt;span style="font-family: &amp;quot;Times New Roman&amp;quot;; color: navy;"&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;   &lt;/td&gt;   &lt;td style="border-style: none solid solid none; border-color: -moz-use-text-color windowtext windowtext -moz-use-text-color; border-width: medium 1pt 1pt medium; padding: 0in 5.4pt; width: 143.85pt; height: 17.25pt;" valign="top" width="192"&gt;   &lt;p class="MsoNormal"&gt;&lt;span style="font-family: &amp;quot;Times New Roman&amp;quot;; color: navy;"&gt;TMDS   Data4+&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;   &lt;/td&gt;  &lt;/tr&gt;  &lt;tr style="height: 17.25pt;"&gt;   &lt;td style="border-style: none solid solid; border-color: -moz-use-text-color windowtext windowtext; border-width: medium 1pt 1pt; padding: 0in 5.4pt; width: 32.45pt; height: 17.25pt;" valign="top" width="43"&gt;   &lt;p style="text-align: right;" align="right"&gt;&lt;b&gt;&lt;span style="font-family: &amp;quot;Times New Roman&amp;quot;; color: navy;"&gt;17.&lt;/span&gt;&lt;/b&gt;&lt;span style="font-family: &amp;quot;Times New Roman&amp;quot;; color: navy;"&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;   &lt;/td&gt;   &lt;td style="border-style: none solid solid none; border-color: -moz-use-text-color windowtext windowtext -moz-use-text-color; border-width: medium 1pt 1pt medium; padding: 0in 5.4pt; width: 125.95pt; height: 17.25pt;" valign="top" width="168"&gt;   &lt;p class="MsoNormal"&gt;&lt;span style="font-family: &amp;quot;Times New Roman&amp;quot;; color: navy;"&gt;TMDS   Data4 Shield&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;   &lt;/td&gt;   &lt;td style="border-style: none solid solid none; border-color: -moz-use-text-color windowtext windowtext -moz-use-text-color; border-width: medium 1pt 1pt medium; padding: 0in 5.4pt; width: 36.15pt; height: 17.25pt;" valign="top" width="48"&gt;   &lt;p style="text-align: right;" align="right"&gt;&lt;b&gt;&lt;span style="font-family: &amp;quot;Times New Roman&amp;quot;; color: navy;"&gt;18.&lt;/span&gt;&lt;/b&gt;&lt;span style="font-family: &amp;quot;Times New Roman&amp;quot;; color: navy;"&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;   &lt;/td&gt;   &lt;td style="border-style: none solid solid none; border-color: -moz-use-text-color windowtext windowtext -moz-use-text-color; border-width: medium 1pt 1pt medium; padding: 0in 5.4pt; width: 143.85pt; height: 17.25pt;" valign="top" width="192"&gt;   &lt;p class="MsoNormal"&gt;&lt;span style="font-family: &amp;quot;Times New Roman&amp;quot;; color: navy;"&gt;TMDS   Data4-&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;   &lt;/td&gt;  &lt;/tr&gt;  &lt;tr style="height: 17.25pt;"&gt;   &lt;td style="border-style: none solid solid; border-color: -moz-use-text-color windowtext windowtext; border-width: medium 1pt 1pt; padding: 0in 5.4pt; width: 32.45pt; height: 17.25pt;" valign="top" width="43"&gt;   &lt;p style="text-align: right;" align="right"&gt;&lt;b&gt;&lt;span style="font-family: &amp;quot;Times New Roman&amp;quot;; color: navy;"&gt;19.&lt;/span&gt;&lt;/b&gt;&lt;span style="font-family: &amp;quot;Times New Roman&amp;quot;; color: navy;"&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;   &lt;/td&gt;   &lt;td style="border-style: none solid solid none; border-color: -moz-use-text-color windowtext windowtext -moz-use-text-color; border-width: medium 1pt 1pt medium; padding: 0in 5.4pt; width: 125.95pt; height: 17.25pt;" valign="top" width="168"&gt;   &lt;p class="MsoNormal"&gt;&lt;span style="font-family: &amp;quot;Times New Roman&amp;quot;; color: navy;"&gt;TMDS   Data3+&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;   &lt;/td&gt;   &lt;td style="border-style: none solid solid none; border-color: -moz-use-text-color windowtext windowtext -moz-use-text-color; border-width: medium 1pt 1pt medium; padding: 0in 5.4pt; width: 36.15pt; height: 17.25pt;" valign="top" width="48"&gt;   &lt;p style="text-align: right;" align="right"&gt;&lt;b&gt;&lt;span style="font-family: &amp;quot;Times New Roman&amp;quot;; color: navy;"&gt;20.&lt;/span&gt;&lt;/b&gt;&lt;span style="font-family: &amp;quot;Times New Roman&amp;quot;; color: navy;"&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;   &lt;/td&gt;   &lt;td style="border-style: none solid solid none; border-color: -moz-use-text-color windowtext windowtext -moz-use-text-color; border-width: medium 1pt 1pt medium; padding: 0in 5.4pt; width: 143.85pt; height: 17.25pt;" valign="top" width="192"&gt;   &lt;p class="MsoNormal"&gt;&lt;span style="font-family: &amp;quot;Times New Roman&amp;quot;; color: navy;"&gt;TMDS   Data3 Shield&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;   &lt;/td&gt;  &lt;/tr&gt;  &lt;tr style="height: 17.25pt;"&gt;   &lt;td style="border-style: none solid solid; border-color: -moz-use-text-color windowtext windowtext; border-width: medium 1pt 1pt; padding: 0in 5.4pt; width: 32.45pt; height: 17.25pt;" valign="top" width="43"&gt;   &lt;p style="text-align: right;" align="right"&gt;&lt;b&gt;&lt;span style="font-family: &amp;quot;Times New Roman&amp;quot;; color: navy;"&gt;21.&lt;/span&gt;&lt;/b&gt;&lt;span style="font-family: &amp;quot;Times New Roman&amp;quot;; color: navy;"&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;   &lt;/td&gt;   &lt;td style="border-style: none solid solid none; border-color: -moz-use-text-color windowtext windowtext -moz-use-text-color; border-width: medium 1pt 1pt medium; padding: 0in 5.4pt; width: 125.95pt; height: 17.25pt;" valign="top" width="168"&gt;   &lt;p class="MsoNormal"&gt;&lt;span style="font-family: &amp;quot;Times New Roman&amp;quot;; color: navy;"&gt;TMDS   Data3-&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;   &lt;/td&gt;   &lt;td style="border-style: none solid solid none; border-color: -moz-use-text-color windowtext windowtext -moz-use-text-color; border-width: medium 1pt 1pt medium; padding: 0in 5.4pt; width: 36.15pt; height: 17.25pt;" valign="top" width="48"&gt;   &lt;p style="text-align: right;" align="right"&gt;&lt;b&gt;&lt;span style="font-family: &amp;quot;Times New Roman&amp;quot;; color: navy;"&gt;22.&lt;/span&gt;&lt;/b&gt;&lt;span style="font-family: &amp;quot;Times New Roman&amp;quot;; color: navy;"&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;   &lt;/td&gt;   &lt;td style="border-style: none solid solid none; border-color: -moz-use-text-color windowtext windowtext -moz-use-text-color; border-width: medium 1pt 1pt medium; padding: 0in 5.4pt; width: 143.85pt; height: 17.25pt;" valign="top" width="192"&gt;   &lt;p class="MsoNormal"&gt;&lt;span style="font-family: &amp;quot;Times New Roman&amp;quot;; color: navy;"&gt;CEC&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;   &lt;/td&gt;  &lt;/tr&gt;  &lt;tr style="height: 17.25pt;"&gt;   &lt;td style="border-style: none solid solid; border-color: -moz-use-text-color windowtext windowtext; border-width: medium 1pt 1pt; padding: 0in 5.4pt; width: 32.45pt; height: 17.25pt;" valign="top" width="43"&gt;   &lt;p style="text-align: right;" align="right"&gt;&lt;b&gt;&lt;span style="font-family: &amp;quot;Times New Roman&amp;quot;; color: navy;"&gt;23.&lt;/span&gt;&lt;/b&gt;&lt;span style="font-family: &amp;quot;Times New Roman&amp;quot;; color: navy;"&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;   &lt;/td&gt;   &lt;td style="border-style: none solid solid none; border-color: -moz-use-text-color windowtext windowtext -moz-use-text-color; border-width: medium 1pt 1pt medium; padding: 0in 5.4pt; width: 125.95pt; height: 17.25pt;" valign="top" width="168"&gt;   &lt;p class="MsoNormal"&gt;&lt;span style="font-family: &amp;quot;Times New Roman&amp;quot;; color: navy;"&gt;Reserved   (N.C. on device)&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;   &lt;/td&gt;   &lt;td style="border-style: none solid solid none; border-color: -moz-use-text-color windowtext windowtext -moz-use-text-color; border-width: medium 1pt 1pt medium; padding: 0in 5.4pt; width: 36.15pt; height: 17.25pt;" valign="top" width="48"&gt;   &lt;p style="text-align: right;" align="right"&gt;&lt;b&gt;&lt;span style="font-family: &amp;quot;Times New Roman&amp;quot;; color: navy;"&gt;24.&lt;/span&gt;&lt;/b&gt;&lt;span style="font-family: &amp;quot;Times New Roman&amp;quot;; color: navy;"&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;   &lt;/td&gt;   &lt;td style="border-style: none solid solid none; border-color: -moz-use-text-color windowtext windowtext -moz-use-text-color; border-width: medium 1pt 1pt medium; padding: 0in 5.4pt; width: 143.85pt; height: 17.25pt;" valign="top" width="192"&gt;   &lt;p class="MsoNormal"&gt;&lt;span style="font-family: &amp;quot;Times New Roman&amp;quot;; color: navy;"&gt;Reserved   (N.C. on device)&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;   &lt;/td&gt;  &lt;/tr&gt;  &lt;tr style="height: 17.25pt;"&gt;   &lt;td style="border-style: none solid solid; border-color: -moz-use-text-color windowtext windowtext; border-width: medium 1pt 1pt; padding: 0in 5.4pt; width: 32.45pt; height: 17.25pt;" valign="top" width="43"&gt;   &lt;p style="text-align: right;" align="right"&gt;&lt;b&gt;&lt;span style="font-family: &amp;quot;Times New Roman&amp;quot;; color: navy;"&gt;25.&lt;/span&gt;&lt;/b&gt;&lt;span style="font-family: &amp;quot;Times New Roman&amp;quot;; color: navy;"&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;   &lt;/td&gt;   &lt;td style="border-style: none solid solid none; border-color: -moz-use-text-color windowtext windowtext -moz-use-text-color; border-width: medium 1pt 1pt medium; padding: 0in 5.4pt; width: 125.95pt; height: 17.25pt;" valign="top" width="168"&gt;   &lt;p class="MsoNormal"&gt;&lt;span style="font-family: &amp;quot;Times New Roman&amp;quot;; color: navy;"&gt;SCL&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;   &lt;/td&gt;   &lt;td style="border-style: none solid solid none; border-color: -moz-use-text-color windowtext windowtext -moz-use-text-color; border-width: medium 1pt 1pt medium; padding: 0in 5.4pt; width: 36.15pt; height: 17.25pt;" valign="top" width="48"&gt;   &lt;p style="text-align: right;" align="right"&gt;&lt;b&gt;&lt;span style="font-family: &amp;quot;Times New Roman&amp;quot;; color: navy;"&gt;26.&lt;/span&gt;&lt;/b&gt;&lt;span style="font-family: &amp;quot;Times New Roman&amp;quot;; color: navy;"&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;   &lt;/td&gt;   &lt;td style="border-style: none solid solid none; border-color: -moz-use-text-color windowtext windowtext -moz-use-text-color; border-width: medium 1pt 1pt medium; padding: 0in 5.4pt; width: 143.85pt; height: 17.25pt;" valign="top" width="192"&gt;   &lt;p class="MsoNormal"&gt;&lt;span style="font-family: &amp;quot;Times New Roman&amp;quot;; color: navy;"&gt;SDA&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;   &lt;/td&gt;  &lt;/tr&gt;  &lt;tr style="height: 17.25pt;"&gt;   &lt;td style="border-style: none solid solid; border-color: -moz-use-text-color windowtext windowtext; border-width: medium 1pt 1pt; padding: 0in 5.4pt; width: 32.45pt; height: 17.25pt;" valign="top" width="43"&gt;   &lt;p style="text-align: right;" align="right"&gt;&lt;b&gt;&lt;span style="font-family: &amp;quot;Times New Roman&amp;quot;; color: navy;"&gt;27.&lt;/span&gt;&lt;/b&gt;&lt;span style="font-family: &amp;quot;Times New Roman&amp;quot;; color: navy;"&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;   &lt;/td&gt;   &lt;td style="border-style: none solid solid none; border-color: -moz-use-text-color windowtext windowtext -moz-use-text-color; border-width: medium 1pt 1pt medium; padding: 0in 5.4pt; width: 125.95pt; height: 17.25pt;" valign="top" width="168"&gt;   &lt;p class="MsoNormal"&gt;&lt;span style="font-family: &amp;quot;Times New Roman&amp;quot;; color: navy;"&gt;DDC/CEC   Ground&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;   &lt;/td&gt;   &lt;td style="border-style: none solid solid none; border-color: -moz-use-text-color windowtext windowtext -moz-use-text-color; border-width: medium 1pt 1pt medium; padding: 0in 5.4pt; width: 36.15pt; height: 17.25pt;" valign="top" width="48"&gt;   &lt;p style="text-align: right;" align="right"&gt;&lt;b&gt;&lt;span style="font-family: &amp;quot;Times New Roman&amp;quot;; color: navy;"&gt;28.&lt;/span&gt;&lt;/b&gt;&lt;span style="font-family: &amp;quot;Times New Roman&amp;quot;; color: navy;"&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;   &lt;/td&gt;   &lt;td style="border-style: none solid solid none; border-color: -moz-use-text-color windowtext windowtext -moz-use-text-color; border-width: medium 1pt 1pt medium; padding: 0in 5.4pt; width: 143.85pt; height: 17.25pt;" valign="top" width="192"&gt;   &lt;p class="MsoNormal"&gt;&lt;span style="font-family: &amp;quot;Times New Roman&amp;quot;; color: navy;"&gt;+   5V Power&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;   &lt;/td&gt;  &lt;/tr&gt;  &lt;tr style="height: 17.25pt;"&gt;   &lt;td style="border-style: none solid solid; border-color: -moz-use-text-color windowtext windowtext; border-width: medium 1pt 1pt; padding: 0in 5.4pt; width: 32.45pt; height: 17.25pt;" valign="top" width="43"&gt;   &lt;p style="text-align: right;" align="right"&gt;&lt;b&gt;&lt;span style="font-family: &amp;quot;Times New Roman&amp;quot;; color: navy;"&gt;29.&lt;/span&gt;&lt;/b&gt;&lt;span style="font-family: &amp;quot;Times New Roman&amp;quot;; color: navy;"&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;   &lt;/td&gt;   &lt;td style="border-style: none solid solid none; border-color: -moz-use-text-color windowtext windowtext -moz-use-text-color; border-width: medium 1pt 1pt medium; padding: 0in 5.4pt; width: 125.95pt; height: 17.25pt;" valign="top" width="168"&gt;   &lt;p class="MsoNormal"&gt;&lt;span style="font-family: &amp;quot;Times New Roman&amp;quot;; color: navy;"&gt;Hot   Plug Detect&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;   &lt;/td&gt;   &lt;td style="border-style: none solid solid none; border-color: -moz-use-text-color windowtext windowtext -moz-use-text-color; border-width: medium 1pt 1pt medium; padding: 0in 5.4pt; width: 36.15pt; height: 17.25pt;" valign="top" width="48"&gt;   &lt;p style="text-align: right;" align="right"&gt;&lt;b&gt;&lt;span style="font-family: &amp;quot;Times New Roman&amp;quot;; color: navy;"&gt;Shell&lt;/span&gt;&lt;/b&gt;&lt;span style="font-family: &amp;quot;Times New Roman&amp;quot;; color: navy;"&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;   &lt;/td&gt;   &lt;td style="border-style: none solid solid none; border-color: -moz-use-text-color windowtext windowtext -moz-use-text-color; border-width: medium 1pt 1pt medium; padding: 0in 5.4pt; width: 143.85pt; height: 17.25pt;" valign="top" width="192"&gt;   &lt;p class="MsoNormal"&gt;&lt;span style="font-family: &amp;quot;Times New Roman&amp;quot;; color: navy;"&gt;Ground   Plane&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;   &lt;/td&gt;  &lt;/tr&gt; &lt;/tbody&gt;&lt;/table&gt;  &lt;p class="MsoNormal"&gt;&lt;o:p&gt; &lt;/o:p&gt;&lt;/p&gt;  &lt;p class="MsoNormal"&gt;&lt;o:p&gt; &lt;/o:p&gt;&lt;/p&gt;  &lt;p class="MsoNormal"&gt;&lt;span style="font-size: 14pt; font-family: &amp;quot;Times New Roman&amp;quot;;"&gt; &lt;/span&gt;&lt;b style=""&gt;&lt;u&gt;&lt;span style="font-size: 14pt; font-family: &amp;quot;Times New Roman&amp;quot;; color: maroon;"&gt;Type C&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/u&gt;&lt;/b&gt;&lt;/p&gt;  &lt;p class="MsoNormal"&gt;&lt;b style=""&gt;&lt;u&gt;&lt;span style="color: maroon;"&gt;&lt;o:p&gt;&lt;span style="text-decoration: none;"&gt; &lt;/span&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/u&gt;&lt;/b&gt;&lt;/p&gt;  &lt;table class="MsoTableGrid" style="border: medium none ; width: 4.7in; border-collapse: collapse;" border="1" cellpadding="0" cellspacing="0" width="451"&gt;  &lt;tbody&gt;&lt;tr style="height: 15.75pt;"&gt;   &lt;td colspan="4" style="border: 1pt solid windowtext; padding: 0in 5.4pt; width: 4.7in; height: 15.75pt;" valign="top" width="451"&gt;   &lt;p style="text-align: center;" align="center"&gt;&lt;b&gt;&lt;span style="font-family: &amp;quot;Times New Roman&amp;quot;; color: maroon;"&gt;Type C Connector Interface &lt;i&gt;(HDMI Rev 1.3)&lt;/i&gt;&lt;/span&gt;&lt;/b&gt;&lt;span style="font-family: &amp;quot;Times New Roman&amp;quot;; color: maroon;"&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;   &lt;/td&gt;  &lt;/tr&gt;  &lt;tr style="height: 15.75pt;"&gt;   &lt;td style="border-style: none solid solid; border-color: -moz-use-text-color windowtext windowtext; border-width: medium 1pt 1pt; padding: 0in 5.4pt; width: 30.45pt; height: 15.75pt;" valign="top" width="41"&gt;   &lt;p class="MsoNormal"&gt;&lt;b&gt;&lt;span style="font-family: &amp;quot;Times New Roman&amp;quot;; color: navy;"&gt;Pin&lt;/span&gt;&lt;/b&gt;&lt;span style="font-family: &amp;quot;Times New Roman&amp;quot;; color: navy;"&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;   &lt;/td&gt;   &lt;td style="border-style: none solid solid none; border-color: -moz-use-text-color windowtext windowtext -moz-use-text-color; border-width: medium 1pt 1pt medium; padding: 0in 5.4pt; width: 127.95pt; height: 15.75pt;" valign="top" width="171"&gt;   &lt;p class="MsoNormal"&gt;&lt;b&gt;&lt;span style="font-family: &amp;quot;Times New Roman&amp;quot;; color: navy;"&gt;Signal&lt;/span&gt;&lt;/b&gt;&lt;span style="font-family: &amp;quot;Times New Roman&amp;quot;; color: navy;"&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;   &lt;/td&gt;   &lt;td style="border-style: none solid solid none; border-color: -moz-use-text-color windowtext windowtext -moz-use-text-color; border-width: medium 1pt 1pt medium; padding: 0in 5.4pt; width: 36.15pt; height: 15.75pt;" valign="top" width="48"&gt;   &lt;p class="MsoNormal"&gt;&lt;b&gt;&lt;span style="font-family: &amp;quot;Times New Roman&amp;quot;; color: navy;"&gt;Pin&lt;/span&gt;&lt;/b&gt;&lt;span style="font-family: &amp;quot;Times New Roman&amp;quot;; color: navy;"&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;   &lt;/td&gt;   &lt;td style="border-style: none solid solid none; border-color: -moz-use-text-color windowtext windowtext -moz-use-text-color; border-width: medium 1pt 1pt medium; padding: 0in 5.4pt; width: 143.85pt; height: 15.75pt;" valign="top" width="192"&gt;   &lt;p class="MsoNormal"&gt;&lt;b&gt;&lt;span style="font-family: &amp;quot;Times New Roman&amp;quot;; color: navy;"&gt;Signal&lt;/span&gt;&lt;/b&gt;&lt;span style="font-family: &amp;quot;Times New Roman&amp;quot;; color: navy;"&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;   &lt;/td&gt;  &lt;/tr&gt;  &lt;tr style="height: 15.75pt;"&gt;   &lt;td style="border-style: none solid solid; border-color: -moz-use-text-color windowtext windowtext; border-width: medium 1pt 1pt; padding: 0in 5.4pt; width: 30.45pt; height: 15.75pt;" valign="top" width="41"&gt;   &lt;p style="text-align: right;" align="right"&gt;&lt;b&gt;&lt;span style="font-family: &amp;quot;Times New Roman&amp;quot;; color: navy;"&gt;1.&lt;/span&gt;&lt;/b&gt;&lt;span style="font-family: &amp;quot;Times New Roman&amp;quot;; color: navy;"&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;   &lt;/td&gt;   &lt;td style="border-style: none solid solid none; border-color: -moz-use-text-color windowtext windowtext -moz-use-text-color; border-width: medium 1pt 1pt medium; padding: 0in 5.4pt; width: 127.95pt; height: 15.75pt;" valign="top" width="171"&gt;   &lt;p class="MsoNormal"&gt;&lt;span style="font-family: &amp;quot;Times New Roman&amp;quot;; color: navy;"&gt;TMDS   Data2 Shield&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;   &lt;/td&gt;   &lt;td style="border-style: none solid solid none; border-color: -moz-use-text-color windowtext windowtext -moz-use-text-color; border-width: medium 1pt 1pt medium; padding: 0in 5.4pt; width: 36.15pt; height: 15.75pt;" valign="top" width="48"&gt;   &lt;p style="text-align: right;" align="right"&gt;&lt;b&gt;&lt;span style="font-family: &amp;quot;Times New Roman&amp;quot;; color: navy;"&gt;2.&lt;/span&gt;&lt;/b&gt;&lt;span style="font-family: &amp;quot;Times New Roman&amp;quot;; color: navy;"&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;   &lt;/td&gt;   &lt;td style="border-style: none solid solid none; border-color: -moz-use-text-color windowtext windowtext -moz-use-text-color; border-width: medium 1pt 1pt medium; padding: 0in 5.4pt; width: 143.85pt; height: 15.75pt;" valign="top" width="192"&gt;   &lt;p class="MsoNormal"&gt;&lt;span style="font-family: &amp;quot;Times New Roman&amp;quot;; color: navy;"&gt;TMDS   Data2+&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;   &lt;/td&gt;  &lt;/tr&gt;  &lt;tr style="height: 15.75pt;"&gt;   &lt;td style="border-style: none solid solid; border-color: -moz-use-text-color windowtext windowtext; border-width: medium 1pt 1pt; padding: 0in 5.4pt; width: 30.45pt; height: 15.75pt;" valign="top" width="41"&gt;   &lt;p style="text-align: right;" align="right"&gt;&lt;b&gt;&lt;span style="font-family: &amp;quot;Times New Roman&amp;quot;; color: navy;"&gt;3.&lt;/span&gt;&lt;/b&gt;&lt;span style="font-family: &amp;quot;Times New Roman&amp;quot;; color: navy;"&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;   &lt;/td&gt;   &lt;td style="border-style: none solid solid none; border-color: -moz-use-text-color windowtext windowtext -moz-use-text-color; border-width: medium 1pt 1pt medium; padding: 0in 5.4pt; width: 127.95pt; height: 15.75pt;" valign="top" width="171"&gt;   &lt;p class="MsoNormal"&gt;&lt;span style="font-family: &amp;quot;Times New Roman&amp;quot;; color: navy;"&gt;TMDS   Data2-&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;   &lt;/td&gt;   &lt;td style="border-style: none solid solid none; border-color: -moz-use-text-color windowtext windowtext -moz-use-text-color; border-width: medium 1pt 1pt medium; padding: 0in 5.4pt; width: 36.15pt; height: 15.75pt;" valign="top" width="48"&gt;   &lt;p style="text-align: right;" align="right"&gt;&lt;b&gt;&lt;span style="font-family: &amp;quot;Times New Roman&amp;quot;; color: navy;"&gt;4.&lt;/span&gt;&lt;/b&gt;&lt;span style="font-family: &amp;quot;Times New Roman&amp;quot;; color: navy;"&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;   &lt;/td&gt;   &lt;td style="border-style: none solid solid none; border-color: -moz-use-text-color windowtext windowtext -moz-use-text-color; border-width: medium 1pt 1pt medium; padding: 0in 5.4pt; width: 143.85pt; height: 15.75pt;" valign="top" width="192"&gt;   &lt;p class="MsoNormal"&gt;&lt;span style="font-family: &amp;quot;Times New Roman&amp;quot;; color: navy;"&gt;TMDS   Data1 Shield&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;   &lt;/td&gt;  &lt;/tr&gt;  &lt;tr style="height: 15.75pt;"&gt;   &lt;td style="border-style: none solid solid; border-color: -moz-use-text-color windowtext windowtext; border-width: medium 1pt 1pt; padding: 0in 5.4pt; width: 30.45pt; height: 15.75pt;" valign="top" width="41"&gt;   &lt;p style="text-align: right;" align="right"&gt;&lt;b&gt;&lt;span style="font-family: &amp;quot;Times New Roman&amp;quot;; color: navy;"&gt;5.&lt;/span&gt;&lt;/b&gt;&lt;span style="font-family: &amp;quot;Times New Roman&amp;quot;; color: navy;"&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;   &lt;/td&gt;   &lt;td style="border-style: none solid solid none; border-color: -moz-use-text-color windowtext windowtext -moz-use-text-color; border-width: medium 1pt 1pt medium; padding: 0in 5.4pt; width: 127.95pt; height: 15.75pt;" valign="top" width="171"&gt;   &lt;p class="MsoNormal"&gt;&lt;span style="font-family: &amp;quot;Times New Roman&amp;quot;; color: navy;"&gt;TMDS   Data1+&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;   &lt;/td&gt;   &lt;td style="border-style: none solid solid none; border-color: -moz-use-text-color windowtext windowtext -moz-use-text-color; border-width: medium 1pt 1pt medium; padding: 0in 5.4pt; width: 36.15pt; height: 15.75pt;" valign="top" width="48"&gt;   &lt;p style="text-align: right;" align="right"&gt;&lt;b&gt;&lt;span style="font-family: &amp;quot;Times New Roman&amp;quot;; color: navy;"&gt;6.&lt;/span&gt;&lt;/b&gt;&lt;span style="font-family: &amp;quot;Times New Roman&amp;quot;; color: navy;"&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;   &lt;/td&gt;   &lt;td style="border-style: none solid solid none; border-color: -moz-use-text-color windowtext windowtext -moz-use-text-color; border-width: medium 1pt 1pt medium; padding: 0in 5.4pt; width: 143.85pt; height: 15.75pt;" valign="top" width="192"&gt;   &lt;p class="MsoNormal"&gt;&lt;span style="font-family: &amp;quot;Times New Roman&amp;quot;; color: navy;"&gt;TMDS   Data1-&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;   &lt;/td&gt;  &lt;/tr&gt;  &lt;tr style="height: 15.75pt;"&gt;   &lt;td style="border-style: none solid solid; border-color: -moz-use-text-color windowtext windowtext; border-width: medium 1pt 1pt; padding: 0in 5.4pt; width: 30.45pt; height: 15.75pt;" valign="top" width="41"&gt;   &lt;p style="text-align: right;" align="right"&gt;&lt;b&gt;&lt;span style="font-family: &amp;quot;Times New Roman&amp;quot;; color: navy;"&gt;7.&lt;/span&gt;&lt;/b&gt;&lt;span style="font-family: &amp;quot;Times New Roman&amp;quot;; color: navy;"&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;   &lt;/td&gt;   &lt;td style="border-style: none solid solid none; border-color: -moz-use-text-color windowtext windowtext -moz-use-text-color; border-width: medium 1pt 1pt medium; padding: 0in 5.4pt; width: 127.95pt; height: 15.75pt;" valign="top" width="171"&gt;   &lt;p class="MsoNormal"&gt;&lt;span style="font-family: &amp;quot;Times New Roman&amp;quot;; color: navy;"&gt;TMDS   Data0 Shield&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;   &lt;/td&gt;   &lt;td style="border-style: none solid solid none; border-color: -moz-use-text-color windowtext windowtext -moz-use-text-color; border-width: medium 1pt 1pt medium; padding: 0in 5.4pt; width: 36.15pt; height: 15.75pt;" valign="top" width="48"&gt;   &lt;p style="text-align: right;" align="right"&gt;&lt;b&gt;&lt;span style="font-family: &amp;quot;Times New Roman&amp;quot;; color: navy;"&gt;8.&lt;/span&gt;&lt;/b&gt;&lt;span style="font-family: &amp;quot;Times New Roman&amp;quot;; color: navy;"&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;   &lt;/td&gt;   &lt;td style="border-style: none solid solid none; border-color: -moz-use-text-color windowtext windowtext -moz-use-text-color; border-width: medium 1pt 1pt medium; padding: 0in 5.4pt; width: 143.85pt; height: 15.75pt;" valign="top" width="192"&gt;   &lt;p class="MsoNormal"&gt;&lt;span style="font-family: &amp;quot;Times New Roman&amp;quot;; color: navy;"&gt;TMDS   Data0+&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;   &lt;/td&gt;  &lt;/tr&gt;  &lt;tr style="height: 15.75pt;"&gt;   &lt;td style="border-style: none solid solid; border-color: -moz-use-text-color windowtext windowtext; border-width: medium 1pt 1pt; padding: 0in 5.4pt; width: 30.45pt; height: 15.75pt;" valign="top" width="41"&gt;   &lt;p style="text-align: right;" align="right"&gt;&lt;b&gt;&lt;span style="font-family: &amp;quot;Times New Roman&amp;quot;; color: navy;"&gt;9.&lt;/span&gt;&lt;/b&gt;&lt;span style="font-family: &amp;quot;Times New Roman&amp;quot;; color: navy;"&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;   &lt;/td&gt;   &lt;td style="border-style: none solid solid none; border-color: -moz-use-text-color windowtext windowtext -moz-use-text-color; border-width: medium 1pt 1pt medium; padding: 0in 5.4pt; width: 127.95pt; height: 15.75pt;" valign="top" width="171"&gt;   &lt;p class="MsoNormal"&gt;&lt;span style="font-family: &amp;quot;Times New Roman&amp;quot;; color: navy;"&gt;TMDS   Data0-&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;   &lt;/td&gt;   &lt;td style="border-style: none solid solid none; border-color: -moz-use-text-color windowtext windowtext -moz-use-text-color; border-width: medium 1pt 1pt medium; padding: 0in 5.4pt; width: 36.15pt; height: 15.75pt;" valign="top" width="48"&gt;   &lt;p style="text-align: right;" align="right"&gt;&lt;b&gt;&lt;span style="font-family: &amp;quot;Times New Roman&amp;quot;; color: navy;"&gt;10.&lt;/span&gt;&lt;/b&gt;&lt;span style="font-family: &amp;quot;Times New Roman&amp;quot;; color: navy;"&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;   &lt;/td&gt;   &lt;td style="border-style: none solid solid none; border-color: -moz-use-text-color windowtext windowtext -moz-use-text-color; border-width: medium 1pt 1pt medium; padding: 0in 5.4pt; width: 143.85pt; height: 15.75pt;" valign="top" width="192"&gt;   &lt;p class="MsoNormal"&gt;&lt;span style="font-family: &amp;quot;Times New Roman&amp;quot;; color: navy;"&gt;TMDS   Clock Shield&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;   &lt;/td&gt;  &lt;/tr&gt;  &lt;tr style="height: 15.75pt;"&gt;   &lt;td style="border-style: none solid solid; border-color: -moz-use-text-color windowtext windowtext; border-width: medium 1pt 1pt; padding: 0in 5.4pt; width: 30.45pt; height: 15.75pt;" valign="top" width="41"&gt;   &lt;p style="text-align: right;" align="right"&gt;&lt;b&gt;&lt;span style="font-family: &amp;quot;Times New Roman&amp;quot;; color: navy;"&gt;11.&lt;/span&gt;&lt;/b&gt;&lt;span style="font-family: &amp;quot;Times New Roman&amp;quot;; color: navy;"&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;   &lt;/td&gt;   &lt;td style="border-style: none solid solid none; border-color: -moz-use-text-color windowtext windowtext -moz-use-text-color; border-width: medium 1pt 1pt medium; padding: 0in 5.4pt; width: 127.95pt; height: 15.75pt;" valign="top" width="171"&gt;   &lt;p class="MsoNormal"&gt;&lt;span style="font-family: &amp;quot;Times New Roman&amp;quot;; color: navy;"&gt;TMDS   Clock+ &lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;   &lt;/td&gt;   &lt;td style="border-style: none solid solid none; border-color: -moz-use-text-color windowtext windowtext -moz-use-text-color; border-width: medium 1pt 1pt medium; padding: 0in 5.4pt; width: 36.15pt; height: 15.75pt;" valign="top" width="48"&gt;   &lt;p style="text-align: right;" align="right"&gt;&lt;b&gt;&lt;span style="font-family: &amp;quot;Times New Roman&amp;quot;; color: navy;"&gt;12.&lt;/span&gt;&lt;/b&gt;&lt;span style="font-family: &amp;quot;Times New Roman&amp;quot;; color: navy;"&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;   &lt;/td&gt;   &lt;td style="border-style: none solid solid none; border-color: -moz-use-text-color windowtext windowtext -moz-use-text-color; border-width: medium 1pt 1pt medium; padding: 0in 5.4pt; width: 143.85pt; height: 15.75pt;" valign="top" width="192"&gt;   &lt;p class="MsoNormal"&gt;&lt;span style="font-family: &amp;quot;Times New Roman&amp;quot;; color: navy;"&gt;TMDS   Clock-&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;   &lt;/td&gt;  &lt;/tr&gt;  &lt;tr style="height: 15.75pt;"&gt;   &lt;td style="border-style: none solid solid; border-color: -moz-use-text-color windowtext windowtext; border-width: medium 1pt 1pt; padding: 0in 5.4pt; width: 30.45pt; height: 15.75pt;" valign="top" width="41"&gt;   &lt;p style="text-align: right;" align="right"&gt;&lt;b&gt;&lt;span style="font-family: &amp;quot;Times New Roman&amp;quot;; color: navy;"&gt;13.&lt;/span&gt;&lt;/b&gt;&lt;span style="font-family: &amp;quot;Times New Roman&amp;quot;; color: navy;"&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;   &lt;/td&gt;   &lt;td style="border-style: none solid solid none; border-color: -moz-use-text-color windowtext windowtext -moz-use-text-color; border-width: medium 1pt 1pt medium; padding: 0in 5.4pt; width: 127.95pt; height: 15.75pt;" valign="top" width="171"&gt;   &lt;p class="MsoNormal"&gt;&lt;span style="font-family: &amp;quot;Times New Roman&amp;quot;; color: navy;"&gt;DDC/CEC   Ground&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;   &lt;/td&gt;   &lt;td style="border-style: none solid solid none; border-color: -moz-use-text-color windowtext windowtext -moz-use-text-color; border-width: medium 1pt 1pt medium; padding: 0in 5.4pt; width: 36.15pt; height: 15.75pt;" valign="top" width="48"&gt;   &lt;p style="text-align: right;" align="right"&gt;&lt;b&gt;&lt;span style="font-family: &amp;quot;Times New Roman&amp;quot;; color: navy;"&gt;14.&lt;/span&gt;&lt;/b&gt;&lt;span style="font-family: &amp;quot;Times New Roman&amp;quot;; color: navy;"&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;   &lt;/td&gt;   &lt;td style="border-style: none solid solid none; border-color: -moz-use-text-color windowtext windowtext -moz-use-text-color; border-width: medium 1pt 1pt medium; padding: 0in 5.4pt; width: 143.85pt; height: 15.75pt;" valign="top" width="192"&gt;   &lt;p class="MsoNormal"&gt;&lt;span style="font-family: &amp;quot;Times New Roman&amp;quot;; color: navy;"&gt;CEC&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;   &lt;/td&gt;  &lt;/tr&gt;  &lt;tr style="height: 15.75pt;"&gt;   &lt;td style="border-style: none solid solid; border-color: -moz-use-text-color windowtext windowtext; border-width: medium 1pt 1pt; padding: 0in 5.4pt; width: 30.45pt; height: 15.75pt;" valign="top" width="41"&gt;   &lt;p style="text-align: right;" align="right"&gt;&lt;b&gt;&lt;span style="font-family: &amp;quot;Times New Roman&amp;quot;; color: navy;"&gt;15.&lt;/span&gt;&lt;/b&gt;&lt;span style="font-family: &amp;quot;Times New Roman&amp;quot;; color: navy;"&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;   &lt;/td&gt;   &lt;td style="border-style: none solid solid none; border-color: -moz-use-text-color windowtext windowtext -moz-use-text-color; border-width: medium 1pt 1pt medium; padding: 0in 5.4pt; width: 127.95pt; height: 15.75pt;" valign="top" width="171"&gt;   &lt;p class="MsoNormal"&gt;&lt;span style="font-family: &amp;quot;Times New Roman&amp;quot;; color: navy;"&gt;SCL&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;   &lt;/td&gt;   &lt;td style="border-style: none solid solid none; border-color: -moz-use-text-color windowtext windowtext -moz-use-text-color; border-width: medium 1pt 1pt medium; padding: 0in 5.4pt; width: 36.15pt; height: 15.75pt;" valign="top" width="48"&gt;   &lt;p style="text-align: right;" align="right"&gt;&lt;b&gt;&lt;span style="font-family: &amp;quot;Times New Roman&amp;quot;; color: navy;"&gt;16.&lt;/span&gt;&lt;/b&gt;&lt;span style="font-family: &amp;quot;Times New Roman&amp;quot;; color: navy;"&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;   &lt;/td&gt;   &lt;td style="border-style: none solid solid none; border-color: -moz-use-text-color windowtext windowtext -moz-use-text-color; border-width: medium 1pt 1pt medium; padding: 0in 5.4pt; width: 143.85pt; height: 15.75pt;" valign="top" width="192"&gt;   &lt;p class="MsoNormal"&gt;&lt;span style="font-family: &amp;quot;Times New Roman&amp;quot;; color: navy;"&gt;SDA&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;   &lt;/td&gt;  &lt;/tr&gt;  &lt;tr style="height: 15.75pt;"&gt;   &lt;td style="border-style: none solid solid; border-color: -moz-use-text-color windowtext windowtext; border-width: medium 1pt 1pt; padding: 0in 5.4pt; width: 30.45pt; height: 15.75pt;" valign="top" width="41"&gt;   &lt;p style="text-align: right;" align="right"&gt;&lt;b&gt;&lt;span style="font-family: &amp;quot;Times New Roman&amp;quot;; color: navy;"&gt;17.&lt;/span&gt;&lt;/b&gt;&lt;span style="font-family: &amp;quot;Times New Roman&amp;quot;; color: navy;"&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;   &lt;/td&gt;   &lt;td style="border-style: none solid solid none; border-color: -moz-use-text-color windowtext windowtext -moz-use-text-color; border-width: medium 1pt 1pt medium; padding: 0in 5.4pt; width: 127.95pt; height: 15.75pt;" valign="top" width="171"&gt;   &lt;p class="MsoNormal"&gt;&lt;span style="font-family: &amp;quot;Times New Roman&amp;quot;; color: navy;"&gt;Reserved&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;   &lt;/td&gt;   &lt;td style="border-style: none solid solid none; border-color: -moz-use-text-color windowtext windowtext -moz-use-text-color; border-width: medium 1pt 1pt medium; padding: 0in 5.4pt; width: 36.15pt; height: 15.75pt;" valign="top" width="48"&gt;   &lt;p style="text-align: right;" align="right"&gt;&lt;b&gt;&lt;span style="font-family: &amp;quot;Times New Roman&amp;quot;; color: navy;"&gt;18.&lt;/span&gt;&lt;/b&gt;&lt;span style="font-family: &amp;quot;Times New Roman&amp;quot;; color: navy;"&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;   &lt;/td&gt;   &lt;td style="border-style: none solid solid none; border-color: -moz-use-text-color windowtext windowtext -moz-use-text-color; border-width: medium 1pt 1pt medium; padding: 0in 5.4pt; width: 143.85pt; height: 15.75pt;" valign="top" width="192"&gt;   &lt;p class="MsoNormal"&gt;&lt;span style="font-family: &amp;quot;Times New Roman&amp;quot;; color: navy;"&gt;+   5V Power&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;   &lt;/td&gt;  &lt;/tr&gt;  &lt;tr style="height: 15.75pt;"&gt;   &lt;td style="border-style: none solid solid; border-color: -moz-use-text-color windowtext windowtext; border-width: medium 1pt 1pt; padding: 0in 5.4pt; width: 30.45pt; height: 15.75pt;" valign="top" width="41"&gt;   &lt;p style="text-align: right;" align="right"&gt;&lt;b&gt;&lt;span style="font-family: &amp;quot;Times New Roman&amp;quot;; color: navy;"&gt;19.&lt;/span&gt;&lt;/b&gt;&lt;span style="font-family: &amp;quot;Times New Roman&amp;quot;; color: navy;"&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;   &lt;/td&gt;   &lt;td style="border-style: none solid solid none; border-color: -moz-use-text-color windowtext windowtext -moz-use-text-color; border-width: medium 1pt 1pt medium; padding: 0in 5.4pt; width: 127.95pt; height: 15.75pt;" valign="top" width="171"&gt;   &lt;p class="MsoNormal"&gt;&lt;span style="font-family: &amp;quot;Times New Roman&amp;quot;; color: navy;"&gt;Hot   Plug Detect&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;   &lt;/td&gt;   &lt;td style="border-style: none solid solid none; border-color: -moz-use-text-color windowtext windowtext -moz-use-text-color; border-width: medium 1pt 1pt medium; padding: 0in 5.4pt; width: 36.15pt; height: 15.75pt;" valign="top" width="48"&gt;   &lt;p style="text-align: right;" align="right"&gt;&lt;b&gt;&lt;span style="font-family: &amp;quot;Times New Roman&amp;quot;; color: navy;"&gt;Shell&lt;/span&gt;&lt;/b&gt;&lt;span style="font-family: &amp;quot;Times New Roman&amp;quot;; color: navy;"&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;   &lt;/td&gt;   &lt;td style="border-style: none solid solid none; border-color: -moz-use-text-color windowtext windowtext -moz-use-text-color; border-width: medium 1pt 1pt medium; padding: 0in 5.4pt; width: 143.85pt; height: 15.75pt;" valign="top" width="192"&gt;   &lt;p class="MsoNormal"&gt;&lt;span style="font-family: &amp;quot;Times New Roman&amp;quot;; color: navy;"&gt;Ground   Plane&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;   &lt;/td&gt;  &lt;/tr&gt; &lt;/tbody&gt;&lt;/table&gt;  &lt;p class="MsoNormal" style=""&gt;&lt;b style=""&gt;&lt;span style="font-size: 14pt; color: rgb(51, 51, 0);"&gt; &lt;/span&gt;&lt;/b&gt;&lt;b style=""&gt;&lt;u&gt;&lt;span style="font-size: 16pt; font-family: &amp;quot;Times New Roman&amp;quot;; color: rgb(51, 51, 0);"&gt;Pin Details:&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/u&gt;&lt;/b&gt;&lt;/p&gt;  &lt;table class="MsoTableGrid1" style="border: medium none ; width: 347.4pt; border-collapse: collapse;" border="1" cellpadding="0" cellspacing="0" width="463"&gt;  &lt;tbody&gt;&lt;tr style="height: 13.5pt;"&gt;   &lt;td style="border: 1pt solid black; padding: 0in 5.4pt; width: 113.4pt; height: 13.5pt;" nowrap="nowrap" valign="top" width="151"&gt;   &lt;p class="MsoNormal" style="text-align: center;" align="center"&gt;&lt;b style=""&gt;&lt;i style=""&gt;&lt;span style="font-family: &amp;quot;Times New Roman&amp;quot;; color: rgb(153, 51, 0);"&gt;Signal&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/i&gt;&lt;/b&gt;&lt;/p&gt;   &lt;/td&gt;   &lt;td style="border-style: solid solid solid none; border-color: black black black -moz-use-text-color; border-width: 1pt 1pt 1pt medium; padding: 0in 5.4pt; width: 3.25in; height: 13.5pt;" nowrap="nowrap" valign="top" width="312"&gt;   &lt;p class="MsoNormal" style="text-align: center;" align="center"&gt;&lt;b style=""&gt;&lt;span style="font-family: &amp;quot;Times New Roman&amp;quot;; color: rgb(153, 51, 0);"&gt;Details&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/b&gt;&lt;/p&gt;   &lt;/td&gt;  &lt;/tr&gt;  &lt;tr style="height: 15.75pt;"&gt;   &lt;td style="border-style: none solid solid; border-color: -moz-use-text-color black black; border-width: medium 1pt 1pt; padding: 0in 5.4pt; width: 113.4pt; height: 15.75pt;" nowrap="nowrap" valign="top" width="151"&gt;   &lt;p class="MsoNormal" style="text-align: justify;"&gt;&lt;span style="font-family: &amp;quot;Times New Roman&amp;quot;; color: navy;"&gt;TMDS&lt;/span&gt;&lt;span style="font-family: &amp;quot;Times New Roman&amp;quot;; color: navy;"&gt; Data2+&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;   &lt;/td&gt;   &lt;td style="border-style: none solid solid none; border-color: -moz-use-text-color black black -moz-use-text-color; border-width: medium 1pt 1pt medium; padding: 0in 5.4pt; width: 3.25in; height: 15.75pt;" nowrap="nowrap" valign="top" width="312"&gt;   &lt;p class="MsoNormal" style="text-align: center;" align="center"&gt;&lt;span style="font-family: &amp;quot;Times New Roman&amp;quot;; color: navy;"&gt;&lt;o:p&gt; &lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;   &lt;p class="MsoNormal" style="text-align: center;" align="center"&gt;&lt;span style="font-family: &amp;quot;Times New Roman&amp;quot;; color: navy;"&gt;Transition   Minimized Differential Signaling&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;   &lt;/td&gt;  &lt;/tr&gt;  &lt;tr style="height: 15.75pt;"&gt;   &lt;td style="border-style: none solid solid; border-color: -moz-use-text-color black black; border-width: medium 1pt 1pt; padding: 0in 5.4pt; width: 113.4pt; height: 15.75pt;" nowrap="nowrap" valign="top" width="151"&gt;   &lt;p class="MsoNormal" style="text-align: justify;"&gt;&lt;span style="font-family: &amp;quot;Times New Roman&amp;quot;; color: navy;"&gt;TMDS Data2 Shield&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;   &lt;/td&gt;   &lt;td style="border-style: none solid solid none; border-color: -moz-use-text-color black black -moz-use-text-color; border-width: medium 1pt 1pt medium; padding: 0in 5.4pt; width: 3.25in; height: 15.75pt;" nowrap="nowrap" valign="top" width="312"&gt;   &lt;p class="MsoNormal" style="text-align: center;" align="center"&gt;&lt;span style="font-family: &amp;quot;Times New Roman&amp;quot;; color: navy;"&gt;&lt;o:p&gt; &lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;   &lt;p class="MsoNormal" style="text-align: center;" align="center"&gt;&lt;span style="font-family: &amp;quot;Times New Roman&amp;quot;; color: navy;"&gt;Transition   Minimized Differential Signaling&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;   &lt;/td&gt;  &lt;/tr&gt;  &lt;tr style="height: 15.75pt;"&gt;   &lt;td style="border-style: none solid solid; border-color: -moz-use-text-color black black; border-width: medium 1pt 1pt; padding: 0in 5.4pt; width: 113.4pt; height: 15.75pt;" nowrap="nowrap" valign="top" width="151"&gt;   &lt;p class="MsoNormal" style="text-align: justify;"&gt;&lt;span style="font-family: &amp;quot;Times New Roman&amp;quot;; color: navy;"&gt;TMDS Data2–&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;   &lt;/td&gt;   &lt;td style="border-style: none solid solid none; border-color: -moz-use-text-color black black -moz-use-text-color; border-width: medium 1pt 1pt medium; padding: 0in 5.4pt; width: 3.25in; height: 15.75pt;" nowrap="nowrap" valign="top" width="312"&gt;   &lt;p class="MsoNormal" style="text-align: center;" align="center"&gt;&lt;span style="font-family: &amp;quot;Times New Roman&amp;quot;; color: navy;"&gt;&lt;o:p&gt; &lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;   &lt;p class="MsoNormal" style="text-align: center;" align="center"&gt;&lt;span style="font-family: &amp;quot;Times New Roman&amp;quot;; color: navy;"&gt;Transition   Minimized Differential Signaling&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;   &lt;/td&gt;  &lt;/tr&gt;  &lt;tr style="height: 15.75pt;"&gt;   &lt;td style="border-style: none solid solid; border-color: -moz-use-text-color black black; border-width: medium 1pt 1pt; padding: 0in 5.4pt; width: 113.4pt; height: 15.75pt;" nowrap="nowrap" valign="top" width="151"&gt;   &lt;p class="MsoNormal" style="text-align: justify;"&gt;&lt;span style="font-family: &amp;quot;Times New Roman&amp;quot;; color: navy;"&gt;TMDS Data1+&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;   &lt;/td&gt;   &lt;td style="border-style: none solid solid none; border-color: -moz-use-text-color black black -moz-use-text-color; border-width: medium 1pt 1pt medium; padding: 0in 5.4pt; width: 3.25in; height: 15.75pt;" nowrap="nowrap" valign="top" width="312"&gt;   &lt;p class="MsoNormal" style="text-align: center;" align="center"&gt;&lt;span style="font-family: &amp;quot;Times New Roman&amp;quot;; color: navy;"&gt;&lt;o:p&gt; &lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;   &lt;p class="MsoNormal" style="text-align: center;" align="center"&gt;&lt;span style="font-family: &amp;quot;Times New Roman&amp;quot;; color: navy;"&gt;Transition   Minimized Differential Signaling&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;   &lt;/td&gt;  &lt;/tr&gt;  &lt;tr style="height: 15.75pt;"&gt;   &lt;td style="border-style: none solid solid; border-color: -moz-use-text-color black black; border-width: medium 1pt 1pt; padding: 0in 5.4pt; width: 113.4pt; height: 15.75pt;" nowrap="nowrap" valign="top" width="151"&gt;   &lt;p class="MsoNormal" style="text-align: justify;"&gt;&lt;span style="font-family: &amp;quot;Times New Roman&amp;quot;; color: navy;"&gt;TMDS Data1 Shield&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;   &lt;/td&gt;   &lt;td style="border-style: none solid solid none; border-color: -moz-use-text-color black black -moz-use-text-color; border-width: medium 1pt 1pt medium; padding: 0in 5.4pt; width: 3.25in; height: 15.75pt;" nowrap="nowrap" valign="top" width="312"&gt;   &lt;p class="MsoNormal" style="text-align: center;" align="center"&gt;&lt;span style="font-family: &amp;quot;Times New Roman&amp;quot;; color: navy;"&gt;&lt;o:p&gt; &lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;   &lt;p class="MsoNormal" style="text-align: center;" align="center"&gt;&lt;span style="font-family: &amp;quot;Times New Roman&amp;quot;; color: navy;"&gt;Transition   Minimized Differential Signaling&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;   &lt;/td&gt;  &lt;/tr&gt;  &lt;tr style="height: 15.75pt;"&gt;   &lt;td style="border-style: none solid solid; border-color: -moz-use-text-color black black; border-width: medium 1pt 1pt; padding: 0in 5.4pt; width: 113.4pt; height: 15.75pt;" nowrap="nowrap" valign="top" width="151"&gt;   &lt;p class="MsoNormal" style="text-align: justify;"&gt;&lt;span style="font-family: &amp;quot;Times New Roman&amp;quot;; color: navy;"&gt;TMDS Data1–&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;   &lt;/td&gt;   &lt;td style="border-style: none solid solid none; border-color: -moz-use-text-color black black -moz-use-text-color; border-width: medium 1pt 1pt medium; padding: 0in 5.4pt; width: 3.25in; height: 15.75pt;" nowrap="nowrap" valign="top" width="312"&gt;   &lt;p class="MsoNormal" style="text-align: center;" align="center"&gt;&lt;span style="font-family: &amp;quot;Times New Roman&amp;quot;; color: navy;"&gt;&lt;o:p&gt; &lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;   &lt;p class="MsoNormal" style="text-align: center;" align="center"&gt;&lt;span style="font-family: &amp;quot;Times New Roman&amp;quot;; color: navy;"&gt;Transition   Minimized Differential Signaling&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;   &lt;/td&gt;  &lt;/tr&gt;  &lt;tr style="height: 15.75pt;"&gt;   &lt;td style="border-style: none solid solid; border-color: -moz-use-text-color black black; border-width: medium 1pt 1pt; padding: 0in 5.4pt; width: 113.4pt; height: 15.75pt;" nowrap="nowrap" valign="top" width="151"&gt;   &lt;p class="MsoNormal" style="text-align: justify;"&gt;&lt;span style="font-family: &amp;quot;Times New Roman&amp;quot;; color: navy;"&gt;TMDS Data0+&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;   &lt;/td&gt;   &lt;td style="border-style: none solid solid none; border-color: -moz-use-text-color black black -moz-use-text-color; border-width: medium 1pt 1pt medium; padding: 0in 5.4pt; width: 3.25in; height: 15.75pt;" nowrap="nowrap" valign="top" width="312"&gt;   &lt;p class="MsoNormal" style="text-align: center;" align="center"&gt;&lt;span style="font-family: &amp;quot;Times New Roman&amp;quot;; color: navy;"&gt;&lt;o:p&gt; &lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;   &lt;p class="MsoNormal" style="text-align: center;" align="center"&gt;&lt;span style="font-family: &amp;quot;Times New Roman&amp;quot;; color: navy;"&gt;Transition   Minimized Differential Signaling&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;   &lt;/td&gt;  &lt;/tr&gt;  &lt;tr style="height: 15.75pt;"&gt;   &lt;td style="border-style: none solid solid; border-color: -moz-use-text-color black black; border-width: medium 1pt 1pt; padding: 0in 5.4pt; width: 113.4pt; height: 15.75pt;" nowrap="nowrap" valign="top" width="151"&gt;   &lt;p class="MsoNormal" style="text-align: justify;"&gt;&lt;span style="font-family: &amp;quot;Times New Roman&amp;quot;; color: navy;"&gt;TMDS Data0 Shield&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;   &lt;/td&gt;   &lt;td style="border-style: none solid solid none; border-color: -moz-use-text-color black black -moz-use-text-color; border-width: medium 1pt 1pt medium; padding: 0in 5.4pt; width: 3.25in; height: 15.75pt;" nowrap="nowrap" valign="top" width="312"&gt;   &lt;p class="MsoNormal" style="text-align: center;" align="center"&gt;&lt;span style="font-family: &amp;quot;Times New Roman&amp;quot;; color: navy;"&gt;&lt;o:p&gt; &lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;   &lt;p class="MsoNormal" style="text-align: center;" align="center"&gt;&lt;span style="font-family: &amp;quot;Times New Roman&amp;quot;; color: navy;"&gt;Transition   Minimized Differential Signaling&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;   &lt;/td&gt;  &lt;/tr&gt;  &lt;tr style="height: 15.75pt;"&gt;   &lt;td style="border-style: none solid solid; border-color: -moz-use-text-color black black; border-width: medium 1pt 1pt; padding: 0in 5.4pt; width: 113.4pt; height: 15.75pt;" nowrap="nowrap" valign="top" width="151"&gt;   &lt;p class="MsoNormal" style="text-align: justify;"&gt;&lt;span style="font-family: &amp;quot;Times New Roman&amp;quot;; color: navy;"&gt;TMDS Data0–&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;   &lt;/td&gt;   &lt;td style="border-style: none solid solid none; border-color: -moz-use-text-color black black -moz-use-text-color; border-width: medium 1pt 1pt medium; padding: 0in 5.4pt; width: 3.25in; height: 15.75pt;" nowrap="nowrap" valign="top" width="312"&gt;   &lt;p class="MsoNormal" style="text-align: center;" align="center"&gt;&lt;span style="font-family: &amp;quot;Times New Roman&amp;quot;; color: navy;"&gt;&lt;o:p&gt; &lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;   &lt;p class="MsoNormal" style="text-align: center;" align="center"&gt;&lt;span style="font-family: &amp;quot;Times New Roman&amp;quot;; color: navy;"&gt;Transition   Minimized Differential Signaling&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;   &lt;/td&gt;  &lt;/tr&gt;  &lt;tr style="height: 15.75pt;"&gt;   &lt;td style="border-style: none solid solid; border-color: -moz-use-text-color black black; border-width: medium 1pt 1pt; padding: 0in 5.4pt; width: 113.4pt; height: 15.75pt;" nowrap="nowrap" valign="top" width="151"&gt;   &lt;p class="MsoNormal" style="text-align: justify;"&gt;&lt;span style="font-family: &amp;quot;Times New Roman&amp;quot;; color: navy;"&gt;TMDS Clock+&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;   &lt;/td&gt;   &lt;td style="border-style: none solid solid none; border-color: -moz-use-text-color black black -moz-use-text-color; border-width: medium 1pt 1pt medium; padding: 0in 5.4pt; width: 3.25in; height: 15.75pt;" nowrap="nowrap" valign="top" width="312"&gt;   &lt;p class="MsoNormal" style="text-align: center;" align="center"&gt;&lt;span style="font-family: &amp;quot;Times New Roman&amp;quot;; color: navy;"&gt;&lt;o:p&gt; &lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;   &lt;p class="MsoNormal" style="text-align: center;" align="center"&gt;&lt;span style="font-family: &amp;quot;Times New Roman&amp;quot;; color: navy;"&gt;Transition   Minimized Differential Signaling&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;   &lt;/td&gt;  &lt;/tr&gt;  &lt;tr style="height: 15.75pt;"&gt;   &lt;td style="border-style: none solid solid; border-color: -moz-use-text-color black black; border-width: medium 1pt 1pt; padding: 0in 5.4pt; width: 113.4pt; height: 15.75pt;" nowrap="nowrap" valign="top" width="151"&gt;   &lt;p class="MsoNormal" style="text-align: justify;"&gt;&lt;span style="font-family: &amp;quot;Times New Roman&amp;quot;; color: navy;"&gt;TMDS Clock Shield&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;   &lt;/td&gt;   &lt;td style="border-style: none solid solid none; border-color: -moz-use-text-color black black -moz-use-text-color; border-width: medium 1pt 1pt medium; padding: 0in 5.4pt; width: 3.25in; height: 15.75pt;" nowrap="nowrap" valign="top" width="312"&gt;   &lt;p class="MsoNormal" style="text-align: center;" align="center"&gt;&lt;span style="font-family: &amp;quot;Times New Roman&amp;quot;; color: navy;"&gt;&lt;o:p&gt; &lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;   &lt;p class="MsoNormal" style="text-align: center;" align="center"&gt;&lt;span style="font-family: &amp;quot;Times New Roman&amp;quot;; color: navy;"&gt;Transition   Minimized Differential Signaling&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;   &lt;/td&gt;  &lt;/tr&gt;  &lt;tr style="height: 15.75pt;"&gt;   &lt;td style="border-style: none solid solid; border-color: -moz-use-text-color black black; border-width: medium 1pt 1pt; padding: 0in 5.4pt; width: 113.4pt; height: 15.75pt;" nowrap="nowrap" valign="top" width="151"&gt;   &lt;p class="MsoNormal" style="text-align: justify;"&gt;&lt;span style="font-family: &amp;quot;Times New Roman&amp;quot;; color: navy;"&gt;TMDS Clock–&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;   &lt;/td&gt;   &lt;td style="border-style: none solid solid none; border-color: -moz-use-text-color black black -moz-use-text-color; border-width: medium 1pt 1pt medium; padding: 0in 5.4pt; width: 3.25in; height: 15.75pt;" nowrap="nowrap" valign="top" width="312"&gt;   &lt;p class="MsoNormal" style="text-align: center;" align="center"&gt;&lt;span style="font-family: &amp;quot;Times New Roman&amp;quot;; color: navy;"&gt;&lt;o:p&gt; &lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;   &lt;p class="MsoNormal" style="text-align: center;" align="center"&gt;&lt;span style="font-family: &amp;quot;Times New Roman&amp;quot;; color: navy;"&gt;Transition   Minimized Differential Signaling&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;   &lt;/td&gt;  &lt;/tr&gt;  &lt;tr style="height: 15.75pt;"&gt;   &lt;td style="border-style: none solid solid; border-color: -moz-use-text-color black black; border-width: medium 1pt 1pt; padding: 0in 5.4pt; width: 113.4pt; height: 15.75pt;" nowrap="nowrap" valign="top" width="151"&gt;   &lt;p class="MsoNormal" style="text-align: justify;"&gt;&lt;span style="font-family: &amp;quot;Times New Roman&amp;quot;; color: navy;"&gt;&lt;a href="#_Technical_Specifications:"&gt;&lt;span style="color: navy;"&gt;CEC&lt;/span&gt;&lt;/a&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;   &lt;/td&gt;   &lt;td style="border-style: none solid solid none; border-color: -moz-use-text-color black black -moz-use-text-color; border-width: medium 1pt 1pt medium; padding: 0in 5.4pt; width: 3.25in; height: 15.75pt;" nowrap="nowrap" valign="top" width="312"&gt;   &lt;p class="MsoNormal" style="text-align: center;" align="center"&gt;&lt;span style="font-family: &amp;quot;Times New Roman&amp;quot;; color: navy;"&gt;&lt;o:p&gt; &lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;   &lt;p class="MsoNormal" style="text-align: center;" align="center"&gt;&lt;span style="font-family: &amp;quot;Times New Roman&amp;quot;; color: navy;"&gt;&lt;a href="http://www.acronymfinder.com/acronym.aspx?rec=%7B61DAC3F5-ED19-4D14-B894-9038C166C17B%7D" title="More info and direct link for this meaning..."&gt;&lt;span style="color: navy; text-decoration: none;"&gt;Consumer Electronics Control &lt;/span&gt;&lt;/a&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;   &lt;/td&gt;  &lt;/tr&gt;  &lt;tr style="height: 15.75pt;"&gt;   &lt;td style="border-style: none solid solid; border-color: -moz-use-text-color black black; border-width: medium 1pt 1pt; padding: 0in 5.4pt; width: 113.4pt; height: 15.75pt;" nowrap="nowrap" valign="top" width="151"&gt;   &lt;p class="MsoNormal" style="text-align: justify;"&gt;&lt;span style="font-family: &amp;quot;Times New Roman&amp;quot;; color: navy;"&gt;Reserved (N.C. on device)&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;   &lt;/td&gt;   &lt;td style="border-style: none solid solid none; border-color: -moz-use-text-color black black -moz-use-text-color; border-width: medium 1pt 1pt medium; padding: 0in 5.4pt; width: 3.25in; height: 15.75pt;" nowrap="nowrap" valign="top" width="312"&gt;   &lt;p class="MsoNormal" style="text-align: center;" align="center"&gt;&lt;span style="font-family: &amp;quot;Times New Roman&amp;quot;; color: navy;"&gt;&lt;o:p&gt; &lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;   &lt;p class="MsoNormal" style="text-align: center;" align="center"&gt;&lt;span style="font-family: &amp;quot;Times New Roman&amp;quot;; color: navy;"&gt;No   Connection&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;   &lt;/td&gt;  &lt;/tr&gt;  &lt;tr style="height: 15.75pt;"&gt;   &lt;td style="border-style: none solid solid; border-color: -moz-use-text-color black black; border-width: medium 1pt 1pt; padding: 0in 5.4pt; width: 113.4pt; height: 15.75pt;" nowrap="nowrap" valign="top" width="151"&gt;   &lt;p class="MsoNormal" style="text-align: justify;"&gt;&lt;span style="font-family: &amp;quot;Times New Roman&amp;quot;; color: navy;"&gt;SCL&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;   &lt;/td&gt;   &lt;td style="border-style: none solid solid none; border-color: -moz-use-text-color black black -moz-use-text-color; border-width: medium 1pt 1pt medium; padding: 0in 5.4pt; width: 3.25in; height: 15.75pt;" nowrap="nowrap" valign="top" width="312"&gt;   &lt;p class="MsoNormal" style="text-align: center;" align="center"&gt;&lt;span style="font-family: &amp;quot;Times New Roman&amp;quot;; color: navy;"&gt;&lt;o:p&gt; &lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;   &lt;p class="MsoNormal" style="text-align: center;" align="center"&gt;&lt;span style="font-family: &amp;quot;Times New Roman&amp;quot;; color: navy;"&gt;&lt;o:p&gt; &lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;   &lt;p class="MsoNormal" style="text-align: center;" align="center"&gt;&lt;span style="font-family: &amp;quot;Times New Roman&amp;quot;; color: navy;"&gt;Synchronous   clock&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;   &lt;/td&gt;  &lt;/tr&gt;  &lt;tr style="height: 15.75pt;"&gt;   &lt;td style="border-style: none solid solid; border-color: -moz-use-text-color black black; border-width: medium 1pt 1pt; padding: 0in 5.4pt; width: 113.4pt; height: 15.75pt;" nowrap="nowrap" valign="top" width="151"&gt;   &lt;p class="MsoNormal" style="text-align: justify;"&gt;&lt;span style="font-family: &amp;quot;Times New Roman&amp;quot;; color: navy;"&gt;SDA&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;   &lt;/td&gt;   &lt;td style="border-style: none solid solid none; border-color: -moz-use-text-color black black -moz-use-text-color; border-width: medium 1pt 1pt medium; padding: 0in 5.4pt; width: 3.25in; height: 15.75pt;" nowrap="nowrap" valign="top" width="312"&gt;   &lt;p class="MsoNormal" style="text-align: center;" align="center"&gt;&lt;span style="font-family: &amp;quot;Times New Roman&amp;quot;; color: navy;"&gt;&lt;o:p&gt; &lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;   &lt;p class="MsoNormal" style="text-align: center;" align="center"&gt;&lt;span style="font-family: &amp;quot;Times New Roman&amp;quot;; color: navy;"&gt;Synchronous   Data&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;   &lt;/td&gt;  &lt;/tr&gt;  &lt;tr style="height: 15.75pt;"&gt;   &lt;td style="border-style: none solid solid; border-color: -moz-use-text-color black black; border-width: medium 1pt 1pt; padding: 0in 5.4pt; width: 113.4pt; height: 15.75pt;" nowrap="nowrap" valign="top" width="151"&gt;   &lt;p class="MsoNormal" style="text-align: justify;"&gt;&lt;span style="font-family: &amp;quot;Times New Roman&amp;quot;; color: navy;"&gt;DDC/CEC Ground&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;   &lt;/td&gt;   &lt;td style="border-style: none solid solid none; border-color: -moz-use-text-color black black -moz-use-text-color; border-width: medium 1pt 1pt medium; padding: 0in 5.4pt; width: 3.25in; height: 15.75pt;" nowrap="nowrap" valign="top" width="312"&gt;   &lt;p class="MsoNormal" style="text-align: center;" align="center"&gt;&lt;span style="font-family: &amp;quot;Times New Roman&amp;quot;; color: navy;"&gt;&lt;o:p&gt; &lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;   &lt;p class="MsoNormal" style="text-align: center;" align="center"&gt;&lt;span style="font-family: &amp;quot;Times New Roman&amp;quot;; color: navy;"&gt;Dynamic   Display Clock&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;   &lt;/td&gt;  &lt;/tr&gt;  &lt;tr style="height: 15.75pt;"&gt;   &lt;td style="border-style: none solid solid; border-color: -moz-use-text-color black black; border-width: medium 1pt 1pt; padding: 0in 5.4pt; width: 113.4pt; height: 15.75pt;" nowrap="nowrap" valign="top" width="151"&gt;   &lt;p class="MsoNormal" style="text-align: justify;"&gt;&lt;span style="font-family: &amp;quot;Times New Roman&amp;quot;; color: navy;"&gt;+5 V Power&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;   &lt;/td&gt;   &lt;td style="border-style: none solid solid none; border-color: -moz-use-text-color black black -moz-use-text-color; border-width: medium 1pt 1pt medium; padding: 0in 5.4pt; width: 3.25in; height: 15.75pt;" nowrap="nowrap" valign="top" width="312"&gt;   &lt;p class="MsoNormal" style="text-align: center;" align="center"&gt;&lt;span style="font-family: &amp;quot;Times New Roman&amp;quot;; color: navy;"&gt;&lt;o:p&gt; &lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;   &lt;p class="MsoNormal" style="text-align: center;" align="center"&gt;&lt;span style="font-family: &amp;quot;Times New Roman&amp;quot;; color: navy;"&gt;Power   supply&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;   &lt;/td&gt;  &lt;/tr&gt;  &lt;tr style="height: 16.5pt;"&gt;   &lt;td style="border-style: none solid solid; border-color: -moz-use-text-color black black; border-width: medium 1pt 1pt; padding: 0in 5.4pt; width: 113.4pt; height: 16.5pt;" nowrap="nowrap" valign="top" width="151"&gt;   &lt;p class="MsoNormal" style="text-align: justify;"&gt;&lt;span style="font-family: &amp;quot;Times New Roman&amp;quot;; color: navy;"&gt;Hot   Plug Detect&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;   &lt;/td&gt;   &lt;td style="border-style: none solid solid none; border-color: -moz-use-text-color black black -moz-use-text-color; border-width: medium 1pt 1pt medium; padding: 0in 5.4pt; width: 3.25in; height: 16.5pt;" nowrap="nowrap" valign="top" width="312"&gt;   &lt;p class="MsoNormal" style="text-align: center;" align="center"&gt;&lt;span style="font-family: &amp;quot;Times New Roman&amp;quot;; color: navy;"&gt;&lt;o:p&gt; &lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;   &lt;p class="MsoNormal" style="text-align: center;" align="center"&gt;&lt;span style="font-family: &amp;quot;Times New Roman&amp;quot;; color: navy;"&gt;***********&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;   &lt;/td&gt;  &lt;/tr&gt; &lt;/tbody&gt;&lt;/table&gt;    &lt;p class="MsoNormal" face="times new roman"&gt;&lt;o:p&gt; &lt;/o:p&gt;&lt;/p&gt;&lt;br /&gt;&lt;br /&gt;&lt;div class="Section1"  style="font-family:times new roman;"&gt;  &lt;h2 style="text-align: justify; line-height: 150%;"&gt;&lt;b style=""&gt;&lt;u&gt;&lt;span style="color: rgb(51, 51, 0);"&gt;Technical Specifications:&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/u&gt;&lt;/b&gt;&lt;/h2&gt;  &lt;p class="MsoNormal" style="line-height: 150%;"&gt;&lt;b style=""&gt;&lt;u&gt;&lt;span style=""&gt;TMDS channel&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/u&gt;&lt;/b&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style="margin-left: 0.25in; text-indent: -0.25in; line-height: 150%;"&gt;&lt;!--[if !supportLists]--&gt;&lt;span style=""&gt;&lt;img src="file:///C:/DOCUME%7E1/Bala/LOCALS%7E1/Temp/msohtml1/01/clip_image001.gif" alt="*" height="13" width="4" /&gt;&lt;span style="font-size:130%;"&gt;          &lt;/span&gt;&lt;/span&gt;&lt;!--[endif]--&gt;&lt;span style="font-size:130%;"&gt;Developed by Silicon Image&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style="margin-left: 0.25in; text-indent: -0.25in; line-height: 150%;"&gt;&lt;!--[if !supportLists]--&gt;&lt;span style="font-size:130%;"&gt;&lt;img src="file:///C:/DOCUME%7E1/Bala/LOCALS%7E1/Temp/msohtml1/01/clip_image001.gif" alt="*" height="13" width="4" /&gt;&lt;span style=""&gt;          &lt;/span&gt;&lt;/span&gt;&lt;!--[endif]--&gt;&lt;span style="font-size:130%;"&gt;Carries audio, video and auxiliary data. &lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style="margin-left: 0.25in; text-indent: -0.25in; line-height: 150%;"&gt;&lt;!--[if !supportLists]--&gt;&lt;span style="font-size:130%;"&gt;&lt;img src="file:///C:/DOCUME%7E1/Bala/LOCALS%7E1/Temp/msohtml1/01/clip_image001.gif" alt="*" height="13" width="4" /&gt;&lt;span style=""&gt;          &lt;/span&gt;&lt;/span&gt;&lt;!--[endif]--&gt;&lt;span style="font-size:130%;"&gt;converts an 8-bit signal into a 10-bit transition-minimized and DC-balanced signal&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style="margin-left: 0.25in; text-indent: -0.25in; line-height: 150%;"&gt;&lt;!--[if !supportLists]--&gt;&lt;span style="font-size:130%;"&gt;&lt;img src="file:///C:/DOCUME%7E1/Bala/LOCALS%7E1/Temp/msohtml1/01/clip_image001.gif" alt="*" height="13" width="4" /&gt;&lt;span style=""&gt;          &lt;/span&gt;&lt;/span&gt;&lt;!--[endif]--&gt;&lt;span style="font-size:130%;"&gt;TMDS is the key to transferring digital data from a TMDS transmitter to a TMDS receiver at high speeds up to 225 MHz. &lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style="margin-left: 0.25in; text-indent: -0.25in; line-height: 150%;"&gt;&lt;!--[if !supportLists]--&gt;&lt;span style="font-size:130%;"&gt;&lt;img src="file:///C:/DOCUME%7E1/Bala/LOCALS%7E1/Temp/msohtml1/01/clip_image001.gif" alt="*" height="13" width="4" /&gt;&lt;span style=""&gt;          &lt;/span&gt;&lt;/span&gt;&lt;!--[endif]--&gt;&lt;span style="font-size:130%;"&gt;Audio sample rates: upto 192 kHz. &lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style="margin-left: 0.25in; text-indent: -0.25in; line-height: 150%;"&gt;&lt;!--[if !supportLists]--&gt;&lt;span style="font-size:130%;"&gt;&lt;img src="file:///C:/DOCUME%7E1/Bala/LOCALS%7E1/Temp/msohtml1/01/clip_image001.gif" alt="*" height="13" width="4" /&gt;&lt;span style=""&gt;          &lt;/span&gt;&lt;/span&gt;&lt;!--[endif]--&gt;&lt;span style=""&gt;&lt;span style="font-size:130%;"&gt;Audio channels: up to 8.&lt;/span&gt; &lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style="line-height: 150%;"&gt;&lt;b style=""&gt;&lt;u&gt;&lt;span style=""&gt;DDC (DISPLAY DATA CHANNEL)&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/u&gt;&lt;/b&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style="margin-left: 0.25in; text-indent: -0.25in; line-height: 150%;"&gt;&lt;!--[if !supportLists]--&gt;&lt;span style=""&gt;&lt;img src="file:///C:/DOCUME%7E1/Bala/LOCALS%7E1/Temp/msohtml1/01/clip_image001.gif" alt="*" height="13" width="4" /&gt;&lt;span style="font-size:130%;"&gt;          &lt;/span&gt;&lt;/span&gt;&lt;!--[endif]--&gt;&lt;span style="font-size:130%;"&gt;Allows source to interrogate capabilities of sink (receiver).&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style="margin-left: 0.25in; text-indent: -0.25in; line-height: 150%;"&gt;&lt;!--[if !supportLists]--&gt;&lt;span style="font-size:130%;"&gt;&lt;img src="file:///C:/DOCUME%7E1/Bala/LOCALS%7E1/Temp/msohtml1/01/clip_image001.gif" alt="*" height="13" width="4" /&gt;&lt;span style=""&gt;          &lt;/span&gt;&lt;/span&gt;&lt;!--[endif]--&gt;&lt;span style="font-size:130%;"&gt;The DDC signal is used for device capability negotiation and HDCP(&lt;span style=""&gt;High-bandwidth Digital Content Protection)&lt;/span&gt; key exchange (HDMI handshake) &lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style="margin-left: 0.25in; text-indent: -0.25in; line-height: 150%;"&gt;&lt;!--[if !supportLists]--&gt;&lt;span style="font-size:130%;"&gt;&lt;img src="file:///C:/DOCUME%7E1/Bala/LOCALS%7E1/Temp/msohtml1/01/clip_image001.gif" alt="*" height="13" width="4" /&gt;&lt;span style=""&gt;          &lt;/span&gt;&lt;/span&gt;&lt;!--[endif]--&gt;&lt;span style="font-size:130%;"&gt;I²C signaling with 100 kHz clock. &lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style="margin-left: 0.25in; text-indent: -0.25in; line-height: 150%;"&gt;&lt;!--[if !supportLists]--&gt;&lt;span style="font-size:130%;"&gt;&lt;img src="file:///C:/DOCUME%7E1/Bala/LOCALS%7E1/Temp/msohtml1/01/clip_image001.gif" alt="*" height="13" width="4" /&gt;&lt;span style=""&gt;          &lt;/span&gt;&lt;/span&gt;&lt;!--[endif]--&gt;&lt;span style=""&gt;&lt;span style="font-size:130%;"&gt;E-EDID data structure according to EIA/CEA-861B and VESA (Video Electronics Standards Association) Enhanced EDID (&lt;/span&gt;&lt;span style="font-size:130%;"&gt;Extended display identification data)&lt;/span&gt;&lt;span style="font-size:130%;"&gt;.&lt;/span&gt; &lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style="line-height: 150%;"&gt;&lt;b style=""&gt;&lt;u&gt;&lt;span style=""&gt;Consumer Electronics Control (CEC) channel (optional)&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/u&gt;&lt;/b&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style="margin-left: 0.25in; text-indent: -0.25in; line-height: 150%;"&gt;&lt;!--[if !supportLists]--&gt;&lt;span style=""&gt;&lt;img src="file:///C:/DOCUME%7E1/Bala/LOCALS%7E1/Temp/msohtml1/01/clip_image001.gif" alt="*" height="13" width="4" /&gt;&lt;span style="font-size:130%;"&gt;          &lt;/span&gt;&lt;/span&gt;&lt;!--[endif]--&gt;&lt;span style="font-size:130%;"&gt;Used for remote control functions. &lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style="margin-left: 0.25in; text-indent: -0.25in; line-height: 150%;"&gt;&lt;!--[if !supportLists]--&gt;&lt;span style="font-size:130%;"&gt;&lt;img src="file:///C:/DOCUME%7E1/Bala/LOCALS%7E1/Temp/msohtml1/01/clip_image001.gif" alt="*" height="13" width="4" /&gt;&lt;span style=""&gt;          &lt;/span&gt;&lt;/span&gt;&lt;!--[endif]--&gt;&lt;span style="color: rgb(0, 0, 0);font-size:130%;" &gt;CEC Messages are sent using frames. Each CEC frame consists of&lt;/span&gt;&lt;span style="font-size:130%;"&gt; &lt;/span&gt;&lt;span style="color: rgb(0, 0, 0);font-size:130%;" &gt;a start bit, a header block and possibly data blocks&lt;/span&gt;&lt;span style="font-size:130%;"&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style="margin-left: 0.25in; text-indent: -0.25in; line-height: 150%;"&gt;&lt;!--[if !supportLists]--&gt;&lt;span style="font-size:130%;"&gt;&lt;img src="file:///C:/DOCUME%7E1/Bala/LOCALS%7E1/Temp/msohtml1/01/clip_image001.gif" alt="*" height="13" width="4" /&gt;&lt;span style=""&gt;          &lt;/span&gt;&lt;/span&gt;&lt;!--[endif]--&gt;&lt;span style="font-size:130%;"&gt;One-wire bidirectional serial bus. &lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style="margin-left: 0.25in; text-indent: -0.25in; line-height: 150%;"&gt;&lt;!--[if !supportLists]--&gt;&lt;span style="font-size:130%;"&gt;&lt;img src="file:///C:/DOCUME%7E1/Bala/LOCALS%7E1/Temp/msohtml1/01/clip_image001.gif" alt="*" height="13" width="4" /&gt;&lt;span style=""&gt;          &lt;/span&gt;&lt;/span&gt;&lt;!--[endif]--&gt;&lt;span style=""&gt;&lt;span style="font-size:130%;"&gt;Defined in HDMI Specification 1.1.&lt;/span&gt; &lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style="line-height: 150%;"&gt;&lt;span style=""&gt;&lt;o:p&gt; &lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style="line-height: 150%;"&gt;&lt;b style=""&gt;&lt;u&gt;&lt;span style="line-height: 150%;"&gt;Disadvantages&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/u&gt;&lt;/b&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style="line-height: 150%;"&gt;&lt;span style="font-size:130%;"&gt;No one is 100% perfect. The following are some disadvantage of HDMI&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style="margin-left: 0.25in; text-indent: -0.25in; line-height: 150%;"&gt;&lt;!--[if !supportLists]--&gt;&lt;span style="color: rgb(0, 0, 0);font-size:130%;" &gt;&lt;span style=""&gt;&lt;img src="file:///C:/DOCUME%7E1/Bala/LOCALS%7E1/Temp/msohtml1/01/clip_image001.gif" alt="*" height="13" width="4" /&gt;&lt;span style=""&gt;          &lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;!--[endif]--&gt;&lt;span style="font-size:130%;"&gt;Limited cable length&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style="margin-left: 0.25in; text-indent: -0.25in; line-height: 150%;"&gt;&lt;!--[if !supportLists]--&gt;&lt;span style="color: rgb(0, 0, 0);font-size:130%;" &gt;&lt;span style=""&gt;&lt;img src="file:///C:/DOCUME%7E1/Bala/LOCALS%7E1/Temp/msohtml1/01/clip_image001.gif" alt="*" height="13" width="4" /&gt;&lt;span style=""&gt;          &lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;!--[endif]--&gt;&lt;span style=""&gt;&lt;span style="font-size:130%;"&gt;Expensive cable cost&lt;/span&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style="line-height: 150%;"&gt;&lt;span style=""&gt;&lt;o:p&gt; &lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style="line-height: 150%;"&gt;&lt;b style=""&gt;&lt;u&gt;&lt;span style="line-height: 150%;"&gt;Reference&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/u&gt;&lt;/b&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style="line-height: 150%;"&gt;&lt;span style=""&gt;&lt;span style="font-size:130%;"&gt;www.google.com&lt;/span&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style="line-height: 150%;"&gt;&lt;span style=""&gt;&lt;o:p&gt; &lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal" style="line-height: 150%;"&gt;&lt;span style=""&gt;*************************************************************************************&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;/div&gt;  &lt;span style="line-height: 150%;font-family:times new roman;" &gt;&lt;br /&gt;&lt;/span&gt;&lt;br /&gt;&lt;p class="MsoNormal"  style="text-align: justify; font-weight: bold;font-family:times new roman;"&gt;&lt;span style="font-size:100%;"&gt;&lt;u&gt;&lt;span style=""&gt;&lt;o:p&gt;&lt;span style="text-decoration: none;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/u&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p class="MsoNormal" face="times new roman" style="text-align: justify; font-weight: bold;"&gt;  &lt;/p&gt;&lt;p class="MsoNormal" style="text-align: justify; font-weight: bold; font-family: times new roman;"&gt;&lt;span style="font-size:100%;"&gt;&lt;u&gt;&lt;span style=""&gt;&lt;o:p&gt;&lt;span style="text-decoration: none;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/u&gt;&lt;/span&gt;&lt;/p&gt;&lt;span style="line-height: 150%; font-weight: bold;font-family:times new roman;" &gt;&lt;br /&gt;&lt;/span&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/7915064724252482343-8100422789699339263?l=a2izat.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://a2izat.blogspot.com/feeds/8100422789699339263/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=7915064724252482343&amp;postID=8100422789699339263&amp;isPopup=true' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/7915064724252482343/posts/default/8100422789699339263'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/7915064724252482343/posts/default/8100422789699339263'/><link rel='alternate' type='text/html' href='http://a2izat.blogspot.com/2008_02_25_archive.html#8100422789699339263' title='HDMI (High-Definition Multimedia Interface) Interface'/><author><name>Seventh Sense</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><media:thumbnail xmlns:media='http://search.yahoo.com/mrss/' url='http://bp3.blogger.com/_UddRFUMuzjg/R8KiL0KEaVI/AAAAAAAAAEY/vUxz0o_Q1Z4/s72-c/hdmi.JPG' height='72' width='72'/><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-7915064724252482343.post-2120363680709151457</id><published>2008-02-20T13:13:00.013+05:30</published><updated>2008-03-07T12:49:24.185+05:30</updated><title type='text'>Blu ray give a hand to HDDVD to reach the Mortuary</title><content type='html'>&lt;p class="MsoNormal"  style="line-height: 150%;font-family:times new roman;"&gt;&lt;span style="font-size:130%;"&gt;Blu-ray Disc is an optical disc storage media format. Its main uses are high-definition video and data storage. The disc has the same dimensions as a standard DVD or CD.&lt;/span&gt;&lt;/p&gt;&lt;p class="MsoNormal"  style="margin-left: 4.5pt; line-height: 150%; text-align: justify;font-family:times new roman;"&gt;&lt;span style="font-size:130%;"&gt;Blu-ray, also known as Blu-ray Disc (BD), is the name of a next-generation optical disc format jointly developed by the Blu-ray Disc Association (BDA), a group of the world's leading consumer electronics, personal computer and media manufacturers (including Apple, Dell, Hitachi, HP, JVC, LG, Mitsubishi, Panasonic, Pioneer, Philips, Samsung, Sharp, Sony, TDK and Thomson). The format was developed to enable recording, rewriting and playback of high-definition video (HD), as well as storing large amounts of data. The format offers more than five times the storage capacity of traditional DVDs and can hold up to 25GB on a single-layer disc and 50GB on a dual-layer disc. This extra capacity combined with the use of advanced video and audio codecs will offer consumers an unprecedented HD experience. &lt;/span&gt;&lt;/p&gt;&lt;p class="MsoNormal"  style="margin-left: 4.5pt; line-height: 150%; text-align: justify;font-family:times new roman;"&gt;&lt;span style="font-size:130%;"&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://bp0.blogger.com/_UddRFUMuzjg/R7vaj0KEaPI/AAAAAAAAADg/FayxpQ5Zt08/s1600-h/ist2_1676976_blu_ray_dvd.jpg"&gt;&lt;img id="BLOGGER_PHOTO_ID_5168965306168928498" style="margin: 0px auto 10px; display: block; cursor: pointer; text-align: center;" alt="" src="http://bp0.blogger.com/_UddRFUMuzjg/R7vaj0KEaPI/AAAAAAAAADg/FayxpQ5Zt08/s320/ist2_1676976_blu_ray_dvd.jpg" border="0" /&gt;&lt;/a&gt;&lt;/span&gt;&lt;span style="font-size:130%;"&gt;Unlike DVDs and CDs, which started with read-only formats and only later added recordable and re-writable formats, Blu-ray is initially designed in several different formats: &lt;/span&gt;&lt;/p&gt;&lt;ul type="disc"&gt;&lt;li class="MsoNormal"  style="line-height: 150%; text-align: justify;font-family:times new roman;"&gt;&lt;span style="font-size:130%;"&gt;BD-ROM (Blu-Ray Disc read-only) - for pre-recorded content &lt;/span&gt;&lt;/li&gt;&lt;li class="MsoNormal"  style="line-height: 150%; text-align: justify;font-family:times new roman;"&gt;&lt;span style="font-size:130%;"&gt;BD-R (Blu-Ray Disc recordable) - for Computer data storage &lt;/span&gt;&lt;/li&gt;&lt;li class="MsoNormal"  style="line-height: 150%; text-align: justify;font-family:times new roman;"&gt;&lt;span style="font-size:130%;"&gt;BD-RW (Blu-Ray Disc rewritable) - for Computer data storage &lt;/span&gt;&lt;/li&gt;&lt;li class="MsoNormal" style="line-height: 150%; text-align: justify;"&gt;&lt;span style=";font-family:times new roman;font-size:130%;"  &gt;BD-RE (Blu-Ray Disc rewritable) - for HDTV &lt;/span&gt;&lt;span style="font-size:130%;"&gt;&lt;span style="font-family:times new roman;"&gt;recording&lt;/span&gt; &lt;/span&gt;&lt;/li&gt;&lt;/ul&gt;&lt;span style="font-weight: bold; color: rgb(255, 0, 0);"&gt;Hi all,tell which one is best for u Blu-ray or DVD or any other.....post your comments&lt;/span&gt;&lt;br /&gt;&lt;ul type="disc"&gt;&lt;li class="MsoNormal" style="line-height: 150%; text-align: justify;"&gt;&lt;table class="MsoTableColumns3" style="border: medium none ; border-collapse: collapse;" border="1" cellpadding="0" cellspacing="0"&gt;&lt;tbody&gt;&lt;tr  style="font-family:times new roman;"&gt;&lt;td style="border-style: solid solid none; padding: 0in 5.4pt; background: navy none repeat scroll 0% 50%; -moz-background-clip: -moz-initial; -moz-background-origin: -moz-initial; -moz-background-inline-policy: -moz-initial; width: 36.9pt; font-weight: bold;" valign="top" width="49"&gt;&lt;p class="MsoNormal" style="line-height: 150%;"&gt;&lt;span style="font-size:100%;"&gt;&lt;span style="color:white;"&gt;S.No&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;&lt;/td&gt;&lt;td style="border-style: solid solid none none; padding: 0in 5.4pt; background: navy none repeat scroll 0% 50%; -moz-background-clip: -moz-initial; -moz-background-origin: -moz-initial; -moz-background-inline-policy: -moz-initial; width: 1.75in; font-weight: bold;" valign="top" width="168"&gt;&lt;p class="MsoNormal" style="line-height: 150%;"&gt;&lt;span style="font-size:100%;"&gt;&lt;span style="color:white;"&gt;Item&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;&lt;/td&gt;&lt;td style="border-style: solid solid none none; padding: 0in 5.4pt; background: navy none repeat scroll 0% 50%; -moz-background-clip: -moz-initial; -moz-background-origin: -moz-initial; -moz-background-inline-policy: -moz-initial; width: 153pt; font-weight: bold;" valign="top" width="204"&gt;&lt;p class="MsoNormal" style="line-height: 150%;"&gt;&lt;span style="font-size:100%;"&gt;&lt;span style="color:white;"&gt;Blu-Ray&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;&lt;/td&gt;&lt;td style="border-style: solid solid none none; padding: 0in 5.4pt; background: navy none repeat scroll 0% 50%; -moz-background-clip: -moz-initial; -moz-background-origin: -moz-initial; -moz-background-inline-policy: -moz-initial; width: 126.9pt; font-weight: bold;" valign="top" width="169"&gt;&lt;p class="MsoNormal" style="line-height: 150%;"&gt;&lt;span style="font-size:100%;"&gt;&lt;span style="color:white;"&gt;HD-DVD&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr  style="font-family:times new roman;"&gt;&lt;td style="border-style: none solid; padding: 0in 5.4pt; width: 36.9pt; font-weight: bold;" valign="top" width="49"&gt;&lt;p class="MsoNormal" style="line-height: 150%;"&gt;&lt;span style="font-size:100%;"&gt;1&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;&lt;/td&gt;&lt;td style="border-style: none solid none none; padding: 0in 5.4pt; background: silver none repeat scroll 0% 50%; -moz-background-clip: -moz-initial; -moz-background-origin: -moz-initial; -moz-background-inline-policy: -moz-initial; width: 1.75in; font-weight: bold;" valign="top" width="168"&gt;&lt;p class="MsoNormal" style="line-height: 150%;"&gt;&lt;span style="font-size:100%;"&gt;Media type:&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;&lt;/td&gt;&lt;td style="border-style: none solid none none; padding: 0in 5.4pt; background: rgb(229, 229, 229) none repeat scroll 0% 50%; -moz-background-clip: -moz-initial; -moz-background-origin: -moz-initial; -moz-background-inline-policy: -moz-initial; width: 153pt; font-weight: bold;" valign="top" width="204"&gt;&lt;p class="MsoNormal" style="line-height: 150%;"&gt;&lt;span style="font-size:100%;"&gt;High-density optical disc&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;&lt;/td&gt;&lt;td style="border-style: none solid none none; padding: 0in 5.4pt; width: 126.9pt; font-weight: bold;" valign="top" width="169"&gt;&lt;p class="MsoNormal" style="line-height: 150%;"&gt;&lt;span style="font-size:100%;"&gt;High-density optical disc&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr  style="font-family:times new roman;"&gt;&lt;td style="border-style: none solid; padding: 0in 5.4pt; width: 36.9pt; font-weight: bold;" valign="top" width="49"&gt;&lt;p class="MsoNormal" style="line-height: 150%;"&gt;&lt;span style="font-size:100%;"&gt;2&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;&lt;/td&gt;&lt;td style="border-style: none solid none none; padding: 0in 5.4pt; background: silver none repeat scroll 0% 50%; -moz-background-clip: -moz-initial; -moz-background-origin: -moz-initial; -moz-background-inline-policy: -moz-initial; width: 1.75in; font-weight: bold;" valign="top" width="168"&gt;&lt;p class="MsoNormal" style="line-height: 150%;"&gt;&lt;span style="font-size:100%;"&gt;Encoding:&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;&lt;/td&gt;&lt;td style="border-style: none solid none none; padding: 0in 5.4pt; background: rgb(229, 229, 229) none repeat scroll 0% 50%; -moz-background-clip: -moz-initial; -moz-background-origin: -moz-initial; -moz-background-inline-policy: -moz-initial; width: 153pt; font-weight: bold;" valign="top" width="204"&gt;&lt;p class="MsoNormal" style="line-height: 150%;"&gt;&lt;span style="font-size:100%;"&gt;MPEG-2, MPEG-4 AVC (H.264), and VC-1&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;&lt;/td&gt;&lt;td style="border-style: none solid none none; padding: 0in 5.4pt; width: 126.9pt; font-weight: bold;" valign="top" width="169"&gt;&lt;p class="MsoNormal" style="line-height: 150%;"&gt;&lt;span style="font-size:100%;"&gt;VC-1, H.264, and MPEG-2&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr  style="font-family:times new roman;"&gt;&lt;td style="border-style: none solid; padding: 0in 5.4pt; width: 36.9pt; font-weight: bold;" valign="top" width="49"&gt;&lt;p class="MsoNormal" style="line-height: 150%;"&gt;&lt;span style="font-size:100%;"&gt;3&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;&lt;/td&gt;&lt;td style="border-style: none solid none none; padding: 0in 5.4pt; background: silver none repeat scroll 0% 50%; -moz-background-clip: -moz-initial; -moz-background-origin: -moz-initial; -moz-background-inline-policy: -moz-initial; width: 1.75in; font-weight: bold;" valign="top" width="168"&gt;&lt;p class="MsoNormal" style="line-height: 150%;"&gt;&lt;span style="font-size:100%;"&gt;Capacity:&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;&lt;/td&gt;&lt;td style="border-style: none solid none none; padding: 0in 5.4pt; background: rgb(229, 229, 229) none repeat scroll 0% 50%; -moz-background-clip: -moz-initial; -moz-background-origin: -moz-initial; -moz-background-inline-policy: -moz-initial; width: 153pt; font-weight: bold;" valign="top" width="204"&gt;&lt;p class="MsoNormal" style="line-height: 150%;"&gt;&lt;span style="font-size:100%;"&gt;25 GB (single layer), 50 GB (dual layer)&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;&lt;/td&gt;&lt;td style="border-style: none solid none none; padding: 0in 5.4pt; width: 126.9pt; font-weight: bold;" valign="top" width="169"&gt;&lt;p class="MsoNormal" style="line-height: 150%;"&gt;&lt;span style="font-size:100%;"&gt;15 GB (single layer)&lt;br /&gt;30 GB (dual layer)&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr  style="font-family:times new roman;"&gt;&lt;td style="border-style: none solid; padding: 0in 5.4pt; width: 36.9pt; font-weight: bold;" valign="top" width="49"&gt;&lt;p class="MsoNormal" style="line-height: 150%;"&gt;&lt;span style="font-size:100%;"&gt;4&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;&lt;/td&gt;&lt;td style="border-style: none solid none none; padding: 0in 5.4pt; background: silver none repeat scroll 0% 50%; -moz-background-clip: -moz-initial; -moz-background-origin: -moz-initial; -moz-background-inline-policy: -moz-initial; width: 1.75in; font-weight: bold;" valign="top" width="168"&gt;&lt;p class="MsoNormal" style="line-height: 150%;"&gt;&lt;span style="font-size:100%;"&gt;Read mechanism:&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;&lt;/td&gt;&lt;td style="border-style: none solid none none; padding: 0in 5.4pt; background: rgb(229, 229, 229) none repeat scroll 0% 50%; -moz-background-clip: -moz-initial; -moz-background-origin: -moz-initial; -moz-background-inline-policy: -moz-initial; width: 153pt; font-weight: bold;" valign="top" width="204"&gt;&lt;p class="MsoNormal" style="line-height: 150%;"&gt;&lt;span style="font-size:100%;"&gt;405 nm laser, &lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;&lt;p class="MsoNormal" style="line-height: 150%;"&gt;&lt;span style="font-size:100%;"&gt;1x@36 Mbit/s &lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;&lt;p class="MsoNormal" style="line-height: 150%;"&gt;&lt;span style="font-size:100%;"&gt;2x@72 Mbit/s &amp;amp; 4x@144 Mbit/s &amp;amp; 12x@432 Mbit/s&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;&lt;/td&gt;&lt;td style="border-style: none solid none none; padding: 0in 5.4pt; width: 126.9pt; font-weight: bold;" valign="top" width="169"&gt;&lt;p class="MsoNormal" style="line-height: 150%;"&gt;&lt;span style="font-size:100%;"&gt;650 nm laser &lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;&lt;p class="MsoNormal" style="line-height: 150%;"&gt;&lt;span style="font-size:100%;"&gt;1x@36 Mbit/s &amp;amp; 2x@72 Mbit/s&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr  style="font-family:times new roman;"&gt;&lt;td style="border-style: none solid; padding: 0in 5.4pt; width: 36.9pt; font-weight: bold;" valign="top" width="49"&gt;&lt;p class="MsoNormal" style="line-height: 150%;"&gt;&lt;span style="font-size:100%;"&gt;5&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;&lt;/td&gt;&lt;td style="border-style: none solid none none; padding: 0in 5.4pt; background: silver none repeat scroll 0% 50%; -moz-background-clip: -moz-initial; -moz-background-origin: -moz-initial; -moz-background-inline-policy: -moz-initial; width: 1.75in; font-weight: bold;" valign="top" width="168"&gt;&lt;p class="MsoNormal" style="line-height: 150%;"&gt;&lt;span style="font-size:100%;"&gt;Developed by:&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;&lt;/td&gt;&lt;td style="border-style: none solid none none; padding: 0in 5.4pt; background: rgb(229, 229, 229) none repeat scroll 0% 50%; -moz-background-clip: -moz-initial; -moz-background-origin: -moz-initial; -moz-background-inline-policy: -moz-initial; width: 153pt; font-weight: bold;" valign="top" width="204"&gt;&lt;p class="MsoNormal" style="line-height: 150%;"&gt;&lt;span style="font-size:100%;"&gt;Sony and Philips&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;&lt;/td&gt;&lt;td style="border-style: none solid none none; padding: 0in 5.4pt; width: 126.9pt; font-weight: bold;" valign="top" width="169"&gt;&lt;p class="MsoNormal" style="line-height: 150%;"&gt;&lt;span style="font-size:100%;"&gt;Toshiba and Hitachi&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td  style="border: 1pt solid navy; padding: 0in 5.4pt; width: 36.9pt; font-weight: bold;font-family:times new roman;" valign="top" width="49"&gt;&lt;p class="MsoNormal" style="line-height: 150%;"&gt;&lt;span style="font-size:100%;"&gt;6&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;&lt;/td&gt;&lt;td  style="border-style: solid solid solid none; padding: 0in 5.4pt; background: silver none repeat scroll 0% 50%; -moz-background-clip: -moz-initial; -moz-background-origin: -moz-initial; -moz-background-inline-policy: -moz-initial; width: 1.75in; font-weight: bold;font-family:times new roman;" valign="top" width="168"&gt;&lt;p class="MsoNormal" style="line-height: 150%;"&gt;&lt;span style="font-size:100%;"&gt;Usage:&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;&lt;/td&gt;&lt;td  style="border-style: solid solid solid none; padding: 0in 5.4pt; background: rgb(229, 229, 229) none repeat scroll 0% 50%; -moz-background-clip: -moz-initial; -moz-background-origin: -moz-initial; -moz-background-inline-policy: -moz-initial; width: 153pt; font-weight: bold;font-family:times new roman;" valign="top" width="204"&gt;&lt;p class="MsoNormal" style="line-height: 150%;"&gt;&lt;span style="font-size:100%;"&gt;Data storage,&lt;br /&gt;High-definition video&lt;br /&gt;and PS3 games&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;&lt;/td&gt;&lt;td style="border-style: solid solid solid none; padding: 0in 5.4pt; width: 126.9pt; font-weight: bold;" valign="top" width="169"&gt;&lt;p class="MsoNormal" style="line-height: 150%;"&gt;&lt;span style="font-size:100%;"&gt;&lt;span style="font-family:times new roman;"&gt;Data storage, including high-definition video&lt;/span&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;&lt;/td&gt;&lt;/tr&gt;&lt;/tbody&gt;&lt;/table&gt;&lt;/li&gt;&lt;/ul&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/7915064724252482343-2120363680709151457?l=a2izat.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://a2izat.blogspot.com/feeds/2120363680709151457/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=7915064724252482343&amp;postID=2120363680709151457&amp;isPopup=true' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/7915064724252482343/posts/default/2120363680709151457'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/7915064724252482343/posts/default/2120363680709151457'/><link rel='alternate' type='text/html' href='http://a2izat.blogspot.com/2008_02_20_archive.html#2120363680709151457' title='Blu ray give a hand to HDDVD to reach the Mortuary'/><author><name>Seventh Sense</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><media:thumbnail xmlns:media='http://search.yahoo.com/mrss/' url='http://bp0.blogger.com/_UddRFUMuzjg/R7vaj0KEaPI/AAAAAAAAADg/FayxpQ5Zt08/s72-c/ist2_1676976_blu_ray_dvd.jpg' height='72' width='72'/><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-7915064724252482343.post-8219470978703454582</id><published>2008-02-14T17:52:00.001+05:30</published><updated>2008-02-21T16:37:45.438+05:30</updated><title type='text'>Longest/Biggest/Tallest in the World</title><content type='html'>&lt;p style="font-family: times new roman;" class="MsoNormal"&gt;&lt;span style="font-size:130%;"&gt;&lt;b style=""&gt;&lt;u&gt;&lt;span style="color:fuchsia;"&gt;Longest English Word &lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/u&gt;&lt;/b&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p style="font-family: times new roman;" class="MsoNormal"&gt;&lt;span style="font-size:130%;"&gt;&lt;o:p&gt; &lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p style="font-family: times new roman;" class="MsoNormal"&gt;&lt;span style="font-size:130%;"&gt;&lt;b&gt;&lt;span style="color:navy;"&gt;Word:&lt;/span&gt;&lt;/b&gt;&lt;/span&gt;&lt;span style="font-size:130%;color:navy;"&gt;Taumatawhakatangihangakoauauotameteaturipukakapikimaungahoronukupokaiwhenakitanatahu (name of a hill)&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p style="font-family: times new roman;" class="MsoNormal"&gt;&lt;span style="font-size:130%;"&gt;&lt;b&gt;&lt;span style="color:navy;"&gt;Number of letters:&lt;/span&gt;&lt;/b&gt;&lt;/span&gt;&lt;span style="font-size:130%;color:navy;"&gt; 84&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p style="font-family: times new roman;" class="MsoNormal"&gt;&lt;span style="font-size:130%;"&gt;&lt;b&gt;&lt;o:p&gt; &lt;/o:p&gt;&lt;/b&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p style="font-family: times new roman;" class="MsoNormal"&gt;&lt;span style="font-size:130%;"&gt;&lt;b&gt;&lt;u&gt;&lt;span style="color:fuchsia;"&gt;River&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/u&gt;&lt;/b&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p style="font-family: times new roman;" class="MsoNormal"&gt;&lt;span style="font-size:130%;"&gt;&lt;b&gt;&lt;o:p&gt; &lt;/o:p&gt;&lt;/b&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p style="font-family: times new roman;" class="MsoNormal"&gt;&lt;span style="font-size:130%;"&gt;&lt;b style=""&gt;&lt;span style="color:navy;"&gt;Name&lt;span style=""&gt;              &lt;/span&gt;:&lt;/span&gt;&lt;/b&gt;&lt;/span&gt;&lt;span style="font-size:130%;color:navy;"&gt; &lt;st1:place st="on"&gt;Nile&lt;/st1:place&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p style="font-family: times new roman;" class="MsoNormal"&gt;&lt;span style="font-size:130%;"&gt;&lt;b style=""&gt;&lt;span style="color:navy;"&gt;Distance&lt;span style=""&gt;         &lt;/span&gt;:&lt;/span&gt;&lt;/b&gt;&lt;/span&gt;&lt;span style="font-size:130%;color:navy;"&gt; 6,650km&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p style="font-family: times new roman;" class="MsoNormal"&gt;&lt;span style="font-size:130%;"&gt;&lt;o:p&gt; &lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p style="font-family: times new roman;" class="MsoNormal"&gt;&lt;span style="font-size:130%;"&gt;&lt;b style=""&gt;&lt;u&gt;&lt;span style="color:fuchsia;"&gt;War&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/u&gt;&lt;/b&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p style="font-family: times new roman;" class="MsoNormal"&gt;&lt;span style="font-size:130%;"&gt;&lt;b style=""&gt;&lt;u&gt;&lt;o:p&gt;&lt;span style="text-decoration: none;"&gt; &lt;/span&gt;&lt;/o:p&gt;&lt;/u&gt;&lt;/b&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p style="font-family: times new roman;" class="MsoNormal"&gt;&lt;span style="font-size:130%;"&gt;&lt;b style=""&gt;&lt;span style="color:navy;"&gt;Name&lt;span style=""&gt;              &lt;/span&gt;: &lt;/span&gt;&lt;/b&gt;&lt;/span&gt;&lt;span style="font-size:130%;color:navy;"&gt;Battles between &lt;st1:country-region st="on"&gt;England&lt;/st1:country-region&gt; and &lt;st1:country-region st="on"&gt;&lt;st1:place st="on"&gt;France&lt;/st1:place&gt;&lt;/st1:country-region&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p style="font-family: times new roman;" class="MsoNormal"&gt;&lt;span style="font-size:130%;"&gt;&lt;b style=""&gt;&lt;span style="color:navy;"&gt;Duration&lt;span style=""&gt;         &lt;/span&gt;: &lt;/span&gt;&lt;/b&gt;&lt;/span&gt;&lt;span style="font-size:130%;color:navy;"&gt;from 1337 to 1453&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p style="font-family: times new roman;" class="MsoNormal"&gt;&lt;span style="font-size:130%;color:navy;"&gt;&lt;o:p&gt; &lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p style="font-family: times new roman;" class="MsoNormal"&gt;&lt;span style="font-size:130%;"&gt;&lt;b style=""&gt;&lt;u&gt;&lt;span style="color:fuchsia;"&gt;Country&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/u&gt;&lt;/b&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p style="font-family: times new roman;" class="MsoNormal"&gt;&lt;span style="font-size:130%;"&gt;&lt;b style=""&gt;&lt;u&gt;&lt;o:p&gt;&lt;span style="text-decoration: none;"&gt; &lt;/span&gt;&lt;/o:p&gt;&lt;/u&gt;&lt;/b&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p style="font-family: times new roman;" class="MsoNormal"&gt;&lt;span style="font-size:130%;"&gt;&lt;b style=""&gt;&lt;span style="color:navy;"&gt;Name&lt;/span&gt;&lt;/b&gt;&lt;/span&gt;&lt;span style="font-size:130%;color:navy;"&gt;&lt;span style=""&gt;              &lt;/span&gt;: &lt;st1:country-region st="on"&gt;&lt;st1:place st="on"&gt;Russia&lt;/st1:place&gt;&lt;/st1:country-region&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p style="font-family: times new roman;" class="MsoNormal"&gt;&lt;span style="font-size:130%;"&gt;&lt;b style=""&gt;&lt;span style="color:navy;"&gt;Area&lt;/span&gt;&lt;/b&gt;&lt;/span&gt;&lt;span style="font-size:130%;color:navy;"&gt;&lt;span style=""&gt;                &lt;/span&gt;: 17,075,200 km&lt;sup&gt;2&lt;/sup&gt; (6,591,027 mi&lt;sup&gt;2&lt;/sup&gt;)&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p style="font-family: times new roman;" class="MsoNormal"&gt;&lt;span style="font-size:130%;"&gt;&lt;o:p&gt; &lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p style="font-family: times new roman;" class="MsoNormal"&gt;&lt;span style="font-size:130%;"&gt;&lt;b style=""&gt;&lt;u&gt;&lt;span style="color:fuchsia;"&gt;Tallest railway station Building&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/u&gt;&lt;/b&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p style="font-family: times new roman;" class="MsoNormal"&gt;&lt;span style="font-size:130%;"&gt;&lt;b style=""&gt;&lt;u&gt;&lt;o:p&gt;&lt;span style="text-decoration: none;"&gt; &lt;/span&gt;&lt;/o:p&gt;&lt;/u&gt;&lt;/b&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p style="font-family: times new roman;" class="MsoNormal"&gt;&lt;span style="font-size:130%;"&gt;&lt;b&gt;&lt;span style="color:navy;"&gt;Name&lt;span style=""&gt;              &lt;/span&gt;:&lt;/span&gt;&lt;/b&gt;&lt;/span&gt;&lt;span style="font-size:130%;color:navy;"&gt; &lt;st1:city st="on"&gt;&lt;st1:place st="on"&gt;Nagoya&lt;/st1:place&gt;&lt;/st1:city&gt; Station&lt;b&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/b&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p style="font-family: times new roman;" class="MsoNormal"&gt;&lt;span style="font-size:130%;"&gt;&lt;b&gt;&lt;span style="color:navy;"&gt;Country&lt;span style=""&gt;           &lt;/span&gt;&lt;/span&gt;&lt;/b&gt;&lt;/span&gt;&lt;span style="font-size:130%;color:navy;"&gt;: &lt;st1:country-region st="on"&gt;&lt;st1:place st="on"&gt;JAPAN&lt;/st1:place&gt;&lt;/st1:country-region&gt;,&lt;/span&gt;&lt;span style="font-size:130%;color:navy;"&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p style="font-family: times new roman;" class="MsoNormal"&gt;&lt;span style="font-size:130%;"&gt;&lt;b style=""&gt;&lt;span style="color:navy;"&gt;Floor area &lt;/span&gt;&lt;/b&gt;&lt;/span&gt;&lt;span style="font-size:130%;color:navy;"&gt;&lt;span style=""&gt;      &lt;/span&gt;: 446,000 m², 4,800,000 ft²&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p style="font-family: times new roman;" class="MsoNormal"&gt;&lt;span style="font-size:130%;"&gt;&lt;o:p&gt; &lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p style="font-family: times new roman;" class="MsoNormal"&gt;&lt;span style="font-size:130%;"&gt;&lt;b style=""&gt;&lt;u&gt;&lt;span style="color:fuchsia;"&gt;Tree&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/u&gt;&lt;/b&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p style="font-family: times new roman;" class="MsoNormal"&gt;&lt;span style="font-size:130%;"&gt;&lt;b style=""&gt;&lt;u&gt;&lt;span style="color:fuchsia;"&gt;&lt;o:p&gt;&lt;span style="text-decoration: none;"&gt; &lt;/span&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/u&gt;&lt;/b&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p style="font-family: times new roman;" class="MsoNormal"&gt;&lt;span style="font-size:130%;"&gt;&lt;b style=""&gt;&lt;span style="color:navy;"&gt;Name&lt;span style=""&gt;              &lt;/span&gt;:&lt;/span&gt;&lt;/b&gt;&lt;/span&gt;&lt;span style="font-size:130%;color:navy;"&gt; coniferous Coast Redwood&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p style="font-family: times new roman;" class="MsoNormal"&gt;&lt;span style="font-size:130%;"&gt;&lt;b style=""&gt;&lt;span style="color:navy;"&gt;Height&lt;span style=""&gt;             &lt;/span&gt;: &lt;/span&gt;&lt;/b&gt;&lt;/span&gt;&lt;span style="font-size:130%;color:navy;"&gt;115.5 m (379.1 ft)&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p style="font-family: times new roman;" class="MsoNormal"&gt;&lt;span style="font-size:130%;"&gt;&lt;b style=""&gt;&lt;span style="color:navy;"&gt;Diameter&lt;span style=""&gt;        &lt;/span&gt;:&lt;/span&gt;&lt;/b&gt;&lt;/span&gt;&lt;span style="font-size:130%;color:navy;"&gt; m (23 ft) &lt;span style=""&gt; &lt;/span&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p style="font-family: times new roman;" class="MsoNormal"&gt;&lt;span style="font-size:130%;"&gt;&lt;o:p&gt; &lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p style="font-family: times new roman;" class="MsoNormal"&gt;&lt;span style="font-size:130%;"&gt;&lt;strong&gt;&lt;u&gt;&lt;span style="color:fuchsia;"&gt;Tallest &lt;/span&gt;&lt;/u&gt;&lt;/strong&gt;&lt;b style=""&gt;&lt;u&gt;&lt;span style="color:fuchsia;"&gt;Man&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/u&gt;&lt;/b&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p style="font-family: times new roman;" class="MsoNormal"&gt;&lt;span style="font-size:130%;"&gt;&lt;strong&gt;&lt;o:p&gt; &lt;/o:p&gt;&lt;/strong&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p style="font-family: times new roman;" class="MsoNormal"&gt;&lt;span style="font-size:130%;"&gt;&lt;strong&gt;&lt;span style="color:navy;"&gt;Name&lt;span style=""&gt;              &lt;/span&gt;:&lt;/span&gt;&lt;/strong&gt;&lt;/span&gt;&lt;span style="font-size:130%;color:navy;"&gt; Leonid Stadnyk&lt;strong&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/strong&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p style="font-family: times new roman;" class="MsoNormal"&gt;&lt;span style="font-size:130%;"&gt;&lt;strong&gt;&lt;span style="color:navy;"&gt;Height&lt;span style=""&gt;             &lt;/span&gt;:&lt;/span&gt;&lt;/strong&gt;&lt;/span&gt;&lt;span style="font-size:130%;color:navy;"&gt; 2.57 m (8 ft 5.5 in)&lt;strong&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/strong&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p style="font-family: times new roman;" class="MsoNormal"&gt;&lt;span style="font-size:130%;"&gt;&lt;strong&gt;&lt;span style="color:navy;"&gt;Country&lt;span style=""&gt;           &lt;/span&gt;:&lt;/span&gt;&lt;/strong&gt;&lt;/span&gt;&lt;span style="font-size:130%;color:navy;"&gt; &lt;st1:country-region st="on"&gt;&lt;st1:place st="on"&gt;Ukraine&lt;/st1:place&gt;&lt;/st1:country-region&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p style="font-family: times new roman;" class="MsoNormal"&gt;&lt;span style="font-size:130%;"&gt;&lt;o:p&gt; &lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p style="font-family: times new roman;" class="MsoNormal"&gt;&lt;span style="font-size:130%;"&gt;&lt;strong&gt;&lt;u&gt;&lt;span style="color:fuchsia;"&gt;Tallest &lt;/span&gt;&lt;/u&gt;&lt;/strong&gt;&lt;b style=""&gt;&lt;u&gt;&lt;span style="color:fuchsia;"&gt;Women&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/u&gt;&lt;/b&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p style="font-family: times new roman;" class="MsoNormal"&gt;&lt;span style="font-size:130%;"&gt;&lt;b style=""&gt;&lt;u&gt;&lt;span style="color:fuchsia;"&gt;&lt;o:p&gt;&lt;span style="text-decoration: none;"&gt; &lt;/span&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/u&gt;&lt;/b&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p style="font-family: times new roman;" class="MsoNormal"&gt;&lt;span style="font-size:130%;"&gt;&lt;strong&gt;&lt;span style="color:navy;"&gt;Name&lt;span style=""&gt;              &lt;/span&gt;:&lt;/span&gt;&lt;/strong&gt;&lt;/span&gt;&lt;span style="font-size:130%;color:navy;"&gt; Sandy Allen&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p style="font-family: times new roman;" class="MsoNormal"&gt;&lt;span style="font-size:130%;color:navy;"&gt;&lt;span style=""&gt; &lt;/span&gt;&lt;strong&gt;Height&lt;span style=""&gt;            &lt;/span&gt;:&lt;/strong&gt; 2.31 m (7 ft 7 in) &lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p style="font-family: times new roman;" class="MsoNormal"&gt;&lt;span style="font-size:130%;"&gt;&lt;strong&gt;&lt;span style="color:navy;"&gt;Country&lt;span style=""&gt;           &lt;/span&gt;:&lt;/span&gt;&lt;/strong&gt;&lt;/span&gt;&lt;span style="font-size:130%;color:navy;"&gt; &lt;st1:place st="on"&gt;&lt;st1:city st="on"&gt;Indianapolis&lt;/st1:city&gt;,  &lt;st1:state st="on"&gt;Indiana&lt;/st1:state&gt;, &lt;st1:country-region st="on"&gt;USA&lt;/st1:country-region&gt;&lt;/st1:place&gt; &lt;strong&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/strong&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p style="font-family: times new roman;" class="MsoNormal"&gt;&lt;span style="font-size:130%;"&gt;&lt;o:p&gt; &lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p style="font-family: times new roman;" class="MsoNormal"&gt;&lt;span style="font-size:130%;"&gt;&lt;b style=""&gt;&lt;u&gt;&lt;span style="color:fuchsia;"&gt;Longest Hair&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/u&gt;&lt;/b&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p style="font-family: times new roman;" class="MsoNormal"&gt;&lt;span style="font-size:130%;"&gt;&lt;b style=""&gt;&lt;u&gt;&lt;o:p&gt;&lt;span style="text-decoration: none;"&gt; &lt;/span&gt;&lt;/o:p&gt;&lt;/u&gt;&lt;/b&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p style="font-family: times new roman;" class="MsoNormal"&gt;&lt;span style="font-size:130%;"&gt;&lt;strong&gt;&lt;span style="color:navy;"&gt;Name&lt;span style=""&gt;              &lt;/span&gt;:&lt;/span&gt;&lt;/strong&gt;&lt;/span&gt;&lt;span style="font-size:130%;color:navy;"&gt; Xie Qiuping&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p style="font-family: times new roman;" class="MsoNormal"&gt;&lt;span style="font-size:130%;color:navy;"&gt;&lt;span style=""&gt; &lt;/span&gt;&lt;strong&gt;Height&lt;span style=""&gt;            &lt;/span&gt;:&lt;/strong&gt; 5.627 m (18 ft 5.54 in) &lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p style="font-family: times new roman;" class="MsoNormal"&gt;&lt;span style="font-size:130%;"&gt;&lt;strong&gt;&lt;span style="color:navy;"&gt;Country&lt;span style=""&gt;           &lt;/span&gt;:&lt;/span&gt;&lt;/strong&gt;&lt;/span&gt;&lt;span style="font-size:130%;color:navy;"&gt; &lt;st1:place st="on"&gt;&lt;st1:city st="on"&gt;Guangxi Province&lt;/st1:city&gt;,  &lt;st1:country-region st="on"&gt;China&lt;/st1:country-region&gt;&lt;/st1:place&gt; &lt;strong&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/strong&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p style="font-family: times new roman;" class="MsoNormal"&gt;&lt;span style="font-size:130%;"&gt;&lt;strong&gt;&lt;o:p&gt; &lt;/o:p&gt;&lt;/strong&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p style="font-family: times new roman;" class="MsoNormal"&gt;&lt;span style="font-size:130%;"&gt;&lt;b style=""&gt;&lt;u&gt;&lt;span style="color:fuchsia;"&gt;Longest tongue&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/u&gt;&lt;/b&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p style="font-family: times new roman;" class="MsoNormal"&gt;&lt;span style="font-size:130%;"&gt;&lt;b style=""&gt;&lt;u&gt;&lt;o:p&gt;&lt;span style="text-decoration: none;"&gt; &lt;/span&gt;&lt;/o:p&gt;&lt;/u&gt;&lt;/b&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p style="font-family: times new roman;" class="MsoNormal"&gt;&lt;span style="font-size:130%;"&gt;&lt;strong&gt;&lt;span style="color:navy;"&gt;Name&lt;span style=""&gt;              &lt;/span&gt;:&lt;/span&gt;&lt;/strong&gt;&lt;/span&gt;&lt;span style="font-size:130%;color:navy;"&gt; Stephen Taylor &lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p style="font-family: times new roman;" class="MsoNormal"&gt;&lt;span style="font-size:130%;"&gt;&lt;strong&gt;&lt;span style="color:navy;"&gt;Length&lt;span style=""&gt;            &lt;/span&gt;:&lt;/span&gt;&lt;/strong&gt;&lt;/span&gt;&lt;span style="font-size:130%;color:navy;"&gt; 9.5 cm (3.74 in) &lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p style="font-family: times new roman;" class="MsoNormal"&gt;&lt;span style="font-size:130%;"&gt;&lt;strong&gt;&lt;span style="color:navy;"&gt;Country&lt;span style=""&gt;           &lt;/span&gt;:&lt;/span&gt;&lt;/strong&gt;&lt;/span&gt;&lt;span style="font-size:130%;color:navy;"&gt; &lt;st1:place st="on"&gt;&lt;st1:city st="on"&gt;Milan&lt;/st1:city&gt;, &lt;st1:country-region st="on"&gt;Italy&lt;/st1:country-region&gt;&lt;/st1:place&gt;. &lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p style="font-family: times new roman;" class="MsoNormal"&gt;&lt;span style="font-size:130%;"&gt;&lt;o:p&gt; &lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p style="font-family: times new roman;" class="MsoNormal"&gt;&lt;span style="font-size:130%;"&gt;&lt;em&gt;&lt;b&gt;&lt;span style="font-style: normal;color:blue;" &gt;&lt;o:p&gt; &lt;/o:p&gt;&lt;/span&gt;&lt;/b&gt;&lt;/em&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p style="font-family: times new roman;" class="MsoNormal"&gt;&lt;span style="font-size:130%;"&gt;&lt;em&gt;&lt;b&gt;&lt;u&gt;&lt;span style="font-style: normal;color:fuchsia;" &gt;Largest animal&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/u&gt;&lt;/b&gt;&lt;/em&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p style="font-family: times new roman;" class="MsoNormal"&gt;&lt;span style="font-size:130%;"&gt;&lt;em&gt;&lt;b&gt;&lt;u&gt;&lt;span style="font-style: normal;color:blue;" &gt;&lt;o:p&gt;&lt;span style="text-decoration: none;"&gt; &lt;/span&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/u&gt;&lt;/b&gt;&lt;/em&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p style="font-family: times new roman;" class="MsoNormal"&gt;&lt;span style="font-size:130%;"&gt;&lt;b style=""&gt;&lt;span style="color:navy;"&gt;Name&lt;/span&gt;&lt;/b&gt;&lt;/span&gt;&lt;span style="font-size:130%;color:navy;"&gt;&lt;span style=""&gt;              &lt;/span&gt;: Blue Whale &lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p style="font-family: times new roman;" class="MsoNormal"&gt;&lt;span style="font-size:130%;"&gt;&lt;b style=""&gt;&lt;span style="color:navy;"&gt;Weight&lt;span style=""&gt;            &lt;/span&gt;&lt;/span&gt;&lt;/b&gt;&lt;/span&gt;&lt;span style="font-size:130%;color:navy;"&gt;: 190 tonnes &lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p style="font-family: times new roman;" class="MsoNormal"&gt;&lt;span style="font-size:130%;"&gt;&lt;b style=""&gt;&lt;span style="color:navy;"&gt;Length&lt;/span&gt;&lt;/b&gt;&lt;/span&gt;&lt;span style="font-size:130%;color:navy;"&gt;&lt;span style=""&gt;            &lt;/span&gt;: 30 m (100 ft) &lt;span style=""&gt; &lt;/span&gt;&lt;span style=""&gt; &lt;/span&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p style="font-family: times new roman;" class="MsoNormal"&gt;&lt;span style="font-size:130%;"&gt;&lt;o:p&gt; &lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p style="font-family: times new roman;" class="MsoNormal"&gt;&lt;span style="font-size:130%;"&gt;&lt;b&gt;&lt;u&gt;&lt;span style="color:fuchsia;"&gt;Largest buildings&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/u&gt;&lt;/b&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p style="font-family: times new roman;" class="MsoNormal"&gt;&lt;span style="font-size:130%;"&gt;&lt;u&gt;&lt;o:p&gt;&lt;span style="text-decoration: none;"&gt; &lt;/span&gt;&lt;/o:p&gt;&lt;/u&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p style="font-family: times new roman;" class="MsoNormal"&gt;&lt;span style="font-size:130%;"&gt;&lt;b style=""&gt;&lt;span style="color:navy;"&gt;Name&lt;/span&gt;&lt;/b&gt;&lt;/span&gt;&lt;span style="font-size:130%;color:navy;"&gt;&lt;span style=""&gt;              &lt;/span&gt;: Boeing Plant &lt;sup&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/sup&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p style="font-family: times new roman;" class="MsoNormal"&gt;&lt;span style="font-size:130%;"&gt;&lt;b style=""&gt;&lt;span style="color:navy;"&gt;Country&lt;/span&gt;&lt;/b&gt;&lt;/span&gt;&lt;span style="font-size:130%;color:navy;"&gt;&lt;span style=""&gt;           &lt;/span&gt;: &lt;st1:place st="on"&gt;&lt;st1:city st="on"&gt;Washington&lt;/st1:city&gt;, &lt;st1:country-region st="on"&gt;United States&lt;/st1:country-region&gt;&lt;/st1:place&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p style="font-family: times new roman;" class="MsoNormal"&gt;&lt;span style="font-size:130%;"&gt;&lt;b style=""&gt;&lt;span style="color:navy;"&gt;Floor area&lt;/span&gt;&lt;/b&gt;&lt;/span&gt;&lt;span style="font-size:130%;color:navy;"&gt;&lt;span style=""&gt;       &lt;/span&gt;: 398,000 m² (98.3 acres) &lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p style="font-family: times new roman;" class="MsoNormal"&gt;&lt;span style="font-size:130%;"&gt;&lt;b style=""&gt;&lt;span style="color:navy;"&gt;Volume&lt;/span&gt;&lt;/b&gt;&lt;/span&gt;&lt;span style="font-size:130%;color:navy;"&gt;&lt;span style=""&gt;           &lt;/span&gt;: 13.3 million m³ (470 million ft)&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;h2 style="font-family: times new roman;"&gt;&lt;span style="font-size:130%;"&gt;&lt;u&gt;&lt;span style=";color:fuchsia;" &gt;Largest lake&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/u&gt;&lt;/span&gt;&lt;/h2&gt;  &lt;p style="font-family: times new roman;" class="MsoNormal"&gt;&lt;span style="font-size:130%;"&gt;&lt;b style=""&gt;&lt;span style="color:navy;"&gt;Name&lt;span style=""&gt;  &lt;/span&gt;&lt;/span&gt;&lt;/b&gt;&lt;/span&gt;&lt;span style="font-size:130%;color:navy;"&gt;&lt;span style=""&gt;            &lt;/span&gt;: salty &lt;st1:place st="on"&gt;Caspian Sea&lt;/st1:place&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p style="font-family: times new roman;" class="MsoNormal"&gt;&lt;span style="font-size:130%;"&gt;&lt;b style=""&gt;&lt;span style="color:navy;"&gt;Area&lt;span style=""&gt;    &lt;/span&gt;&lt;/span&gt;&lt;/b&gt;&lt;/span&gt;&lt;span style="font-size:130%;color:navy;"&gt;&lt;span style=""&gt;            &lt;/span&gt;: &lt;span style=""&gt; &lt;/span&gt;143,200 square miles (370,886 km&lt;sup&gt;2&lt;/sup&gt;). &lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;h6 style="font-family: times new roman;"&gt;&lt;span style="font-size:130%;"&gt;&lt;u&gt;&lt;span style=";color:fuchsia;" &gt;Largest Ocean&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/u&gt;&lt;/span&gt;&lt;/h6&gt;  &lt;p style="font-family: times new roman;" class="MsoNormal"&gt;&lt;span style="font-size:130%;"&gt;&lt;o:p&gt; &lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p style="font-family: times new roman;" class="MsoNormal"&gt;&lt;span style="font-size:130%;"&gt;&lt;b style=""&gt;&lt;span style="color:navy;"&gt;Name&lt;span style=""&gt;  &lt;/span&gt;&lt;/span&gt;&lt;/b&gt;&lt;/span&gt;&lt;span style="font-size:130%;color:navy;"&gt;&lt;span style=""&gt;            &lt;/span&gt;: &lt;st1:place st="on"&gt;&lt;b&gt;Pacific Ocean&lt;/b&gt;&lt;/st1:place&gt; &lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p style="font-family: times new roman;" class="MsoNormal"&gt;&lt;span style="font-size:130%;"&gt;&lt;b style=""&gt;&lt;span style="color:navy;"&gt;Area&lt;span style=""&gt;    &lt;/span&gt;&lt;/span&gt;&lt;/b&gt;&lt;/span&gt;&lt;span style="font-size:130%;color:navy;"&gt;&lt;span style=""&gt;            &lt;/span&gt;: 169.2 million km&lt;sup&gt;2&lt;/sup&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p style="font-family: times new roman;" class="MsoNormal"&gt;&lt;span style="font-size:130%;color:navy;"&gt;&lt;o:p&gt; &lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p style="font-family: times new roman;" class="MsoNormal"&gt;&lt;span style="font-size:130%;"&gt;&lt;b style=""&gt;&lt;u&gt;&lt;span style="color:fuchsia;"&gt;Most populous city&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/u&gt;&lt;/b&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p style="font-family: times new roman;" class="MsoNormal"&gt;&lt;span style="font-size:130%;"&gt;&lt;b style=""&gt;&lt;u&gt;&lt;o:p&gt;&lt;span style="text-decoration: none;"&gt; &lt;/span&gt;&lt;/o:p&gt;&lt;/u&gt;&lt;/b&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p style="font-family: times new roman;" class="MsoNormal"&gt;&lt;span style="font-size:130%;"&gt;&lt;b style=""&gt;&lt;span style="color:navy;"&gt;Name&lt;/span&gt;&lt;/b&gt;&lt;/span&gt;&lt;span style="font-size:130%;color:navy;"&gt;&lt;span style=""&gt;              &lt;/span&gt;: Mumbai &lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p style="font-family: times new roman;" class="MsoNormal"&gt;&lt;span style="font-size:130%;"&gt;&lt;b style=""&gt;&lt;span style="color:navy;"&gt;Population&lt;/span&gt;&lt;/b&gt;&lt;/span&gt;&lt;span style="font-size:130%;color:navy;"&gt;&lt;span style=""&gt;       &lt;/span&gt;: 13,073,926&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p style="font-family: times new roman;" class="MsoNormal"&gt;&lt;span style="font-size:130%;color:navy;"&gt;&lt;o:p&gt; &lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p style="font-family: times new roman;" class="MsoNormal"&gt;&lt;span style="font-size:130%;"&gt;&lt;o:p&gt; &lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p style="font-family: times new roman;" class="MsoNormal"&gt;&lt;span style="font-size:130%;"&gt;&lt;o:p&gt; &lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p style="font-family: times new roman;" class="MsoNormal"&gt;&lt;span style="font-size:130%;"&gt;&lt;o:p&gt; &lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;  &lt;p style="font-family: times new roman;" class="MsoNormal"&gt;&lt;span style="font-size:130%;"&gt;&lt;b style=""&gt;&lt;u&gt;&lt;o:p&gt;&lt;span style="text-decoration: none;"&gt; &lt;/span&gt;&lt;/o:p&gt;&lt;/u&gt;&lt;/b&gt;&lt;/span&gt;&lt;/p&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/7915064724252482343-8219470978703454582?l=a2izat.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://a2izat.blogspot.com/feeds/8219470978703454582/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=7915064724252482343&amp;postID=8219470978703454582&amp;isPopup=true' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/7915064724252482343/posts/default/8219470978703454582'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/7915064724252482343/posts/default/8219470978703454582'/><link rel='alternate' type='text/html' href='http://a2izat.blogspot.com/2008_02_14_archive.html#8219470978703454582' title='Longest/Biggest/Tallest in the World'/><author><name>Seventh Sense</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-7915064724252482343.post-6878399725795635614</id><published>2008-01-29T22:44:00.000+05:30</published><updated>2008-01-29T22:58:35.583+05:30</updated><title type='text'>Welcome Folks!</title><content type='html'>&lt;p class="MsoNormal"&gt;Hi Folks,&lt;/p&gt;  &lt;p class="MsoNormal"&gt;&lt;o:p&gt; &lt;/o:p&gt;&lt;/p&gt;    &lt;p class="MsoNormal" style="text-align: justify; line-height: 150%;"&gt;&lt;o:p&gt;&lt;/o:p&gt;Here you can find some useful information regarding PCB designing, electronics, JAVA and  &lt;span style=""&gt;&lt;/span&gt;&lt;span style=""&gt;&lt;/span&gt;projects using these technologies. We hope this blog &lt;span style=""&gt; &lt;/span&gt;will educate you. These informations are collected by us and reviewed by us. Our main aim is to provide some useful information to students, engineers and those who willing to know about these technologies.In AtoZ P (PCB), E (electronics), J (JAVA), will comes under technologies. We will try to give information on other sectors like cinemas, child labors, value of Human beings; animals etc….We are working towards it. We will try to give all these things fully and truthfully. Keep visiting this blog!&lt;/p&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/7915064724252482343-6878399725795635614?l=a2izat.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://a2izat.blogspot.com/feeds/6878399725795635614/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=7915064724252482343&amp;postID=6878399725795635614&amp;isPopup=true' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/7915064724252482343/posts/default/6878399725795635614'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/7915064724252482343/posts/default/6878399725795635614'/><link rel='alternate' type='text/html' href='http://a2izat.blogspot.com/2008_01_29_archive.html#6878399725795635614' title='Welcome Folks!'/><author><name>Seventh Sense</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry></feed>
