<?xml version="1.0"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="ru">
		<id>http://nfex.ru/index.php?action=history&amp;feed=atom&amp;title=Csharp%2FC_Sharp%2FCollections_Data_Structure%2FHashtable</id>
		<title>Csharp/C Sharp/Collections Data Structure/Hashtable - История изменений</title>
		<link rel="self" type="application/atom+xml" href="http://nfex.ru/index.php?action=history&amp;feed=atom&amp;title=Csharp%2FC_Sharp%2FCollections_Data_Structure%2FHashtable"/>
		<link rel="alternate" type="text/html" href="http://nfex.ru/index.php?title=Csharp/C_Sharp/Collections_Data_Structure/Hashtable&amp;action=history"/>
		<updated>2026-04-30T00:12:22Z</updated>
		<subtitle>История изменений этой страницы в вики</subtitle>
		<generator>MediaWiki 1.30.0</generator>

	<entry>
		<id>http://nfex.ru/index.php?title=Csharp/C_Sharp/Collections_Data_Structure/Hashtable&amp;diff=656&amp;oldid=prev</id>
		<title> в 15:31, 26 мая 2010</title>
		<link rel="alternate" type="text/html" href="http://nfex.ru/index.php?title=Csharp/C_Sharp/Collections_Data_Structure/Hashtable&amp;diff=656&amp;oldid=prev"/>
				<updated>2010-05-26T15:31:18Z</updated>
		
		<summary type="html">&lt;p&gt;&lt;/p&gt;
&lt;table class=&quot;diff diff-contentalign-left&quot; data-mw=&quot;interface&quot;&gt;
				&lt;tr style=&quot;vertical-align: top;&quot; lang=&quot;ru&quot;&gt;
				&lt;td colspan=&quot;1&quot; style=&quot;background-color: white; color:black; text-align: center;&quot;&gt;← Предыдущая&lt;/td&gt;
				&lt;td colspan=&quot;1&quot; style=&quot;background-color: white; color:black; text-align: center;&quot;&gt;Версия 15:31, 26 мая 2010&lt;/td&gt;
				&lt;/tr&gt;&lt;tr&gt;&lt;td colspan=&quot;2&quot; style=&quot;text-align: center;&quot; lang=&quot;ru&quot;&gt;&lt;div class=&quot;mw-diff-empty&quot;&gt;(нет различий)&lt;/div&gt;
&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;</summary>
			</entry>

	<entry>
		<id>http://nfex.ru/index.php?title=Csharp/C_Sharp/Collections_Data_Structure/Hashtable&amp;diff=657&amp;oldid=prev</id>
		<title>Admin: 1 версия</title>
		<link rel="alternate" type="text/html" href="http://nfex.ru/index.php?title=Csharp/C_Sharp/Collections_Data_Structure/Hashtable&amp;diff=657&amp;oldid=prev"/>
				<updated>2010-05-26T11:39:22Z</updated>
		
		<summary type="html">&lt;p&gt;1 версия&lt;/p&gt;
&lt;p&gt;&lt;b&gt;Новая страница&lt;/b&gt;&lt;/p&gt;&lt;div&gt;==Add value to Hashtable and loop through the value key pairs==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
   &lt;br /&gt;
&amp;lt;source lang=&amp;quot;csharp&amp;quot;&amp;gt;&lt;br /&gt;
using System;&lt;br /&gt;
using System.Collections;&lt;br /&gt;
public class HashPut {&lt;br /&gt;
  public static void Main( ) {&lt;br /&gt;
    String[] identifiers ={&amp;quot;A&amp;quot;,&amp;quot;B&amp;quot;,&amp;quot;C&amp;quot;,&amp;quot;D&amp;quot;,&amp;quot;E&amp;quot;,&amp;quot;F&amp;quot;,&amp;quot;G&amp;quot;,&amp;quot;H&amp;quot;,&amp;quot;I&amp;quot;,&amp;quot;J&amp;quot;,&amp;quot;K&amp;quot;,&amp;quot;L&amp;quot;}; &lt;br /&gt;
    String[] types = {&amp;quot;1&amp;quot;,&amp;quot;2&amp;quot;,&amp;quot;3&amp;quot;,&amp;quot;4&amp;quot;,&amp;quot;5&amp;quot;,&amp;quot;6&amp;quot;,&amp;quot;7&amp;quot;,&amp;quot;8&amp;quot;,&amp;quot;9&amp;quot;,&amp;quot;10&amp;quot;,&amp;quot;11&amp;quot;,&amp;quot;12&amp;quot;}; &lt;br /&gt;
    Hashtable table = new Hashtable(23);&lt;br /&gt;
    &lt;br /&gt;
    for(int i = 0; i &amp;lt; identifiers.Length; i++) &lt;br /&gt;
      table.Add(identifiers[i], types[i]);&lt;br /&gt;
    &lt;br /&gt;
    Console.WriteLine(&amp;quot;The value of F is {0}&amp;quot;,table[&amp;quot;F&amp;quot;]);&lt;br /&gt;
    Console.WriteLine(&amp;quot;The keys are:&amp;quot;);&lt;br /&gt;
    &lt;br /&gt;
    foreach (DictionaryEntry entry in table) &lt;br /&gt;
      Console.Write(&amp;quot;{0} &amp;quot;, entry.Key);&lt;br /&gt;
   }&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
           &lt;br /&gt;
       &amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==Compares the efficiency of the hash map implementation with the tree map==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
   &lt;br /&gt;
&amp;lt;source lang=&amp;quot;csharp&amp;quot;&amp;gt;&lt;br /&gt;
using System;&lt;br /&gt;
using System.Collections;&lt;br /&gt;
public class CompareMaps {&lt;br /&gt;
  public const int MAX  = 50000000;&lt;br /&gt;
  public static String time(IDictionary map) {&lt;br /&gt;
    Object value = null;&lt;br /&gt;
    long starttime = Environment.TickCount;&lt;br /&gt;
    for (int i = 0; i &amp;lt; MAX; i++) {&lt;br /&gt;
        value = map[i];&lt;br /&gt;
    } &lt;br /&gt;
    long stoptime = Environment.TickCount;&lt;br /&gt;
    return value + &amp;quot; took &amp;quot; + (stoptime - starttime);&lt;br /&gt;
  }          &lt;br /&gt;
  &lt;br /&gt;
  public static void Main(String[] args) {&lt;br /&gt;
    int SIZE = 1000;&lt;br /&gt;
    IDictionary hash = new Hashtable(2*SIZE);&lt;br /&gt;
    IDictionary tree = new SortedList();&lt;br /&gt;
    &lt;br /&gt;
    Random random = new Random();&lt;br /&gt;
    int i = random.Next(5000000);&lt;br /&gt;
    &lt;br /&gt;
    for (int j = 0; j &amp;lt; SIZE; j++) {&lt;br /&gt;
       if(!hash.Contains(i))&lt;br /&gt;
          hash.Add(i, i);&lt;br /&gt;
       if(!tree.Contains(i))&lt;br /&gt;
          tree.Add(i, i);&lt;br /&gt;
    }&lt;br /&gt;
    Console.WriteLine(&amp;quot;Hash for {0}&amp;quot;, time(hash));&lt;br /&gt;
    Console.WriteLine(&amp;quot;Tree for {0}&amp;quot;, time(tree));&lt;br /&gt;
  }&lt;br /&gt;
}    &lt;br /&gt;
           &lt;br /&gt;
       &amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==Demonstrate Hashtable==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
   &lt;br /&gt;
&amp;lt;source lang=&amp;quot;csharp&amp;quot;&amp;gt;&lt;br /&gt;
/*&lt;br /&gt;
C#: The Complete Reference &lt;br /&gt;
by Herbert Schildt &lt;br /&gt;
Publisher: Osborne/McGraw-Hill (March 8, 2002)&lt;br /&gt;
ISBN: 0072134852&lt;br /&gt;
*/&lt;br /&gt;
// Demonstrate Hashtable. &lt;br /&gt;
 &lt;br /&gt;
using System; &lt;br /&gt;
using System.Collections; &lt;br /&gt;
 &lt;br /&gt;
public class HashtableDemo { &lt;br /&gt;
  public static void Main() { &lt;br /&gt;
    // Create a hash table. &lt;br /&gt;
    Hashtable ht = new Hashtable(); &lt;br /&gt;
     &lt;br /&gt;
    // Add elements to the table &lt;br /&gt;
    ht.Add(&amp;quot;house&amp;quot;, &amp;quot;Dwelling&amp;quot;); &lt;br /&gt;
    ht.Add(&amp;quot;car&amp;quot;, &amp;quot;Means of transport&amp;quot;); &lt;br /&gt;
    ht.Add(&amp;quot;book&amp;quot;, &amp;quot;Collection of printed words&amp;quot;); &lt;br /&gt;
    ht.Add(&amp;quot;apple&amp;quot;, &amp;quot;Edible fruit&amp;quot;); &lt;br /&gt;
 &lt;br /&gt;
    // Can also add by using the indexer. &lt;br /&gt;
    ht[&amp;quot;tractor&amp;quot;] = &amp;quot;farm implement&amp;quot;; &lt;br /&gt;
 &lt;br /&gt;
    // Get a collection of the keys. &lt;br /&gt;
    ICollection c = ht.Keys; &lt;br /&gt;
 &lt;br /&gt;
    // Use the keys to obtain the values. &lt;br /&gt;
    foreach(string str in c) &lt;br /&gt;
      Console.WriteLine(str + &amp;quot;: &amp;quot; + ht[str]); &lt;br /&gt;
  } &lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
           &lt;br /&gt;
       &amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==Enumerating a hash table collection==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
   &lt;br /&gt;
&amp;lt;source lang=&amp;quot;csharp&amp;quot;&amp;gt;&lt;br /&gt;
using System;&lt;br /&gt;
using System.Collections;&lt;br /&gt;
class Test{&lt;br /&gt;
  public static void Main() {&lt;br /&gt;
       Hashtable ht = new Hashtable(10);&lt;br /&gt;
    &lt;br /&gt;
       // Add strings to the hashtable associated with a&lt;br /&gt;
       // key value (integer).&lt;br /&gt;
    &lt;br /&gt;
       ht.Add( 100, &amp;quot;Z&amp;quot;);&lt;br /&gt;
       ht.Add( 200, &amp;quot;A&amp;quot;);&lt;br /&gt;
       ht.Add( 300, &amp;quot;B&amp;quot;);&lt;br /&gt;
       ht.Add( 400, &amp;quot;S&amp;quot;);&lt;br /&gt;
       ht.Add( 500, &amp;quot;G&amp;quot;);&lt;br /&gt;
    &lt;br /&gt;
       foreach ( DictionaryEntry de in ht ) {&lt;br /&gt;
         Console.WriteLine( &amp;quot;Entry Key {0} Value {1}&amp;quot;, de.Key, de.Value );&lt;br /&gt;
       }&lt;br /&gt;
  }&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
           &lt;br /&gt;
       &amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==Get IDictionaryEnumerator enumerator from Hashtable==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
   &lt;br /&gt;
&amp;lt;source lang=&amp;quot;csharp&amp;quot;&amp;gt;&lt;br /&gt;
&lt;br /&gt;
using System;&lt;br /&gt;
using System.Collections;&lt;br /&gt;
public class Starter {&lt;br /&gt;
    public static void Main() {&lt;br /&gt;
        Hashtable zHash = new Hashtable();&lt;br /&gt;
        zHash.Add(&amp;quot;one&amp;quot;, 1);&lt;br /&gt;
        zHash.Add(&amp;quot;two&amp;quot;, 2);&lt;br /&gt;
        zHash.Add(&amp;quot;three&amp;quot;, 3);&lt;br /&gt;
        zHash.Add(&amp;quot;four&amp;quot;, 4);&lt;br /&gt;
        IDictionaryEnumerator e = zHash.GetEnumerator();&lt;br /&gt;
        while (e.MoveNext()) {&lt;br /&gt;
            Console.WriteLine(&lt;br /&gt;
                &amp;quot;{0} {1}&amp;quot;,&lt;br /&gt;
                e.Key, e.Value);&lt;br /&gt;
        }&lt;br /&gt;
    }&lt;br /&gt;
}&lt;br /&gt;
           &lt;br /&gt;
       &amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==illustrates the use of a Hashtable==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
   &lt;br /&gt;
&amp;lt;source lang=&amp;quot;csharp&amp;quot;&amp;gt;&lt;br /&gt;
/*&lt;br /&gt;
Mastering Visual C# .NET&lt;br /&gt;
by Jason Price, Mike Gunderloy&lt;br /&gt;
Publisher: Sybex;&lt;br /&gt;
ISBN: 0782129110&lt;br /&gt;
*/&lt;br /&gt;
/*&lt;br /&gt;
  Example11_6.cs illustrates the use of a Hashtable&lt;br /&gt;
*/&lt;br /&gt;
using System;&lt;br /&gt;
using System.Collections;&lt;br /&gt;
public class Example11_6&lt;br /&gt;
{&lt;br /&gt;
  public static void Main()&lt;br /&gt;
  {&lt;br /&gt;
    // create a Hashtable object&lt;br /&gt;
    Hashtable myHashtable = new Hashtable();&lt;br /&gt;
    // add elements containing US state abbreviations and state&lt;br /&gt;
    // names to myHashtable using the Add() method&lt;br /&gt;
    myHashtable.Add(&amp;quot;AL&amp;quot;, &amp;quot;Alabama&amp;quot;);&lt;br /&gt;
    myHashtable.Add(&amp;quot;CA&amp;quot;, &amp;quot;California&amp;quot;);&lt;br /&gt;
    myHashtable.Add(&amp;quot;FL&amp;quot;, &amp;quot;Florida&amp;quot;);&lt;br /&gt;
    myHashtable.Add(&amp;quot;NY&amp;quot;, &amp;quot;New York&amp;quot;);&lt;br /&gt;
    myHashtable.Add(&amp;quot;WY&amp;quot;, &amp;quot;Wyoming&amp;quot;);&lt;br /&gt;
    // display the Count property&lt;br /&gt;
    Console.WriteLine(&amp;quot;myHashtable.Count = &amp;quot; + myHashtable.Count);&lt;br /&gt;
    // lookup the state name for &amp;quot;CA&amp;quot;&lt;br /&gt;
    string myState = (string) myHashtable[&amp;quot;CA&amp;quot;];&lt;br /&gt;
    Console.WriteLine(&amp;quot;myState = &amp;quot; + myState);&lt;br /&gt;
    // display the keys for myHashtable using the Keys property&lt;br /&gt;
    foreach (string myKey in myHashtable.Keys)&lt;br /&gt;
    {&lt;br /&gt;
      Console.WriteLine(&amp;quot;myKey = &amp;quot; + myKey);&lt;br /&gt;
    }&lt;br /&gt;
    // display the values for myHashtable using the Values property&lt;br /&gt;
    foreach(string myValue in myHashtable.Values)&lt;br /&gt;
    {&lt;br /&gt;
      Console.WriteLine(&amp;quot;myValue = &amp;quot; + myValue);&lt;br /&gt;
    }&lt;br /&gt;
  }&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
           &lt;br /&gt;
       &amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==illustrates the use of the Hashtable methods==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
   &lt;br /&gt;
&amp;lt;source lang=&amp;quot;csharp&amp;quot;&amp;gt;&lt;br /&gt;
/*&lt;br /&gt;
Mastering Visual C# .NET&lt;br /&gt;
by Jason Price, Mike Gunderloy&lt;br /&gt;
Publisher: Sybex;&lt;br /&gt;
ISBN: 0782129110&lt;br /&gt;
*/&lt;br /&gt;
/*&lt;br /&gt;
  Example11_7.cs illustrates the use of the Hashtable methods&lt;br /&gt;
*/&lt;br /&gt;
using System;&lt;br /&gt;
using System.Collections;&lt;br /&gt;
public class Example11_7&lt;br /&gt;
{&lt;br /&gt;
  public static void Main()&lt;br /&gt;
  {&lt;br /&gt;
    // create a Hashtable object&lt;br /&gt;
    Hashtable myHashtable = new Hashtable();&lt;br /&gt;
    // add elements containing US state abbreviations and state&lt;br /&gt;
    // names to myHashtable using the Add() method&lt;br /&gt;
    myHashtable.Add(&amp;quot;AL&amp;quot;, &amp;quot;Alabama&amp;quot;);&lt;br /&gt;
    myHashtable.Add(&amp;quot;CA&amp;quot;, &amp;quot;California&amp;quot;);&lt;br /&gt;
    myHashtable.Add(&amp;quot;FL&amp;quot;, &amp;quot;Florida&amp;quot;);&lt;br /&gt;
    myHashtable.Add(&amp;quot;NY&amp;quot;, &amp;quot;New York&amp;quot;);&lt;br /&gt;
    myHashtable.Add(&amp;quot;WY&amp;quot;, &amp;quot;Wyoming&amp;quot;);&lt;br /&gt;
    // display the keys for myHashtable using the Keys property&lt;br /&gt;
    foreach (string myKey in myHashtable.Keys)&lt;br /&gt;
    {&lt;br /&gt;
      Console.WriteLine(&amp;quot;myKey = &amp;quot; + myKey);&lt;br /&gt;
    }&lt;br /&gt;
    // display the values for myHashtable using the Values property&lt;br /&gt;
    foreach(string myValue in myHashtable.Values)&lt;br /&gt;
    {&lt;br /&gt;
      Console.WriteLine(&amp;quot;myValue = &amp;quot; + myValue);&lt;br /&gt;
    }&lt;br /&gt;
    // use the ContainsKey() method to check if myHashtable&lt;br /&gt;
    // contains the key &amp;quot;FL&amp;quot;&lt;br /&gt;
    if (myHashtable.ContainsKey(&amp;quot;FL&amp;quot;))&lt;br /&gt;
    {&lt;br /&gt;
      Console.WriteLine(&amp;quot;myHashtable contains the key FL&amp;quot;);&lt;br /&gt;
    }&lt;br /&gt;
    // use the ContainsValue() method to check if myHashtable&lt;br /&gt;
    // contains the value &amp;quot;Florida&amp;quot;&lt;br /&gt;
    if (myHashtable.ContainsValue(&amp;quot;Florida&amp;quot;))&lt;br /&gt;
    {&lt;br /&gt;
      Console.WriteLine(&amp;quot;myHashtable contains the value Florida&amp;quot;);&lt;br /&gt;
    }&lt;br /&gt;
    // use the Remove() method to remove FL from myHashtable&lt;br /&gt;
    Console.WriteLine(&amp;quot;Removing FL from myHashtable&amp;quot;);&lt;br /&gt;
    myHashtable.Remove(&amp;quot;FL&amp;quot;);&lt;br /&gt;
    // get the number of elements in myHashtable using the Count&lt;br /&gt;
    // property&lt;br /&gt;
    int count = myHashtable.Count;&lt;br /&gt;
    // copy the keys from myHashtable into an array using&lt;br /&gt;
    // the CopyTo() method and then display the array contents&lt;br /&gt;
    Console.WriteLine(&amp;quot;Copying keys to myKeys array&amp;quot;);&lt;br /&gt;
    string[] myKeys = new string[count];&lt;br /&gt;
    myHashtable.Keys.CopyTo(myKeys, 0);&lt;br /&gt;
    for (int counter = 0; counter &amp;lt; myKeys.Length; counter++)&lt;br /&gt;
    {&lt;br /&gt;
      Console.WriteLine(&amp;quot;myKeys[&amp;quot; + counter + &amp;quot;] = &amp;quot; +&lt;br /&gt;
        myKeys[counter]);&lt;br /&gt;
    }&lt;br /&gt;
    // copy the values from myHashtable into an array using&lt;br /&gt;
    // the CopyTo() method and then display the array contents&lt;br /&gt;
    Console.WriteLine(&amp;quot;Copying values to myValues array&amp;quot;);&lt;br /&gt;
    string[] myValues = new string[count];&lt;br /&gt;
    myHashtable.Values.CopyTo(myValues, 0);&lt;br /&gt;
    for (int counter = 0; counter &amp;lt; myValues.Length; counter++)&lt;br /&gt;
    {&lt;br /&gt;
      Console.WriteLine(&amp;quot;myValues[&amp;quot; + counter + &amp;quot;] = &amp;quot; +&lt;br /&gt;
        myValues[counter]);&lt;br /&gt;
    }&lt;br /&gt;
  }&lt;br /&gt;
}&lt;br /&gt;
           &lt;br /&gt;
       &amp;lt;/source&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==Implement GetHashCode method and store it in a hashtable==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
   &lt;br /&gt;
&amp;lt;source lang=&amp;quot;csharp&amp;quot;&amp;gt;&lt;br /&gt;
using System;&lt;br /&gt;
using System.Collections;&lt;br /&gt;
public class GoodCompare {&lt;br /&gt;
  public static void Main() {&lt;br /&gt;
    Name president = new Name (&amp;quot;A&amp;quot;, &amp;quot;B&amp;quot;);&lt;br /&gt;
    Name first = new Name (&amp;quot;C&amp;quot;, &amp;quot;D&amp;quot;);&lt;br /&gt;
    &lt;br /&gt;
    Hashtable m = new Hashtable();&lt;br /&gt;
    m.Add(president, &amp;quot;first&amp;quot;);&lt;br /&gt;
    Console.WriteLine(m.Contains(first));&lt;br /&gt;
    Console.WriteLine(m[first]); &lt;br /&gt;
  }&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
public class Name {&lt;br /&gt;
  protected String first;&lt;br /&gt;
  protected char initial;&lt;br /&gt;
  protected String last;&lt;br /&gt;
          &lt;br /&gt;
  public Name(String f, String l) {&lt;br /&gt;
    first = f; &lt;br /&gt;
    last = l; &lt;br /&gt;
  }&lt;br /&gt;
  public Name(String f, char i, String l) : this(f,l) {&lt;br /&gt;
    initial = i;  &lt;br /&gt;
  } &lt;br /&gt;
  public override String ToString() {&lt;br /&gt;
    if (initial == &amp;quot;\u0000&amp;quot;)&lt;br /&gt;
       return first + &amp;quot; &amp;quot; + last;&lt;br /&gt;
    else  &lt;br /&gt;
       return first + &amp;quot; &amp;quot; + initial + &amp;quot; &amp;quot; + last;&lt;br /&gt;
  }&lt;br /&gt;
  public override bool Equals(Object o) {&lt;br /&gt;
    if (!(o is Name))&lt;br /&gt;
       return false;&lt;br /&gt;
    Name name = (Name)o;&lt;br /&gt;
    return first == name.first &amp;amp;&amp;amp; initial == name.initial&lt;br /&gt;
             &amp;amp;&amp;amp; last == name.last;&lt;br /&gt;
  }&lt;br /&gt;
  public override int GetHashCode() {&lt;br /&gt;
    return first.GetHashCode() + (int)initial &lt;br /&gt;
                             + last.GetHashCode();&lt;br /&gt;
  }&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
           &lt;br /&gt;
       &amp;lt;/source&amp;gt;&lt;/div&gt;</summary>
		<author><name>Admin</name></author>	</entry>

	</feed>