473,396 Members | 1,758 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,396 software developers and data experts.

Loading multiple files with FileReader() into browser memory

Claus Mygind
571 512MB
I am attempting to load multiple files into the browser memory, but I don't seem to be able to overcome the timing issue between the first and second file.

For reference purposes, here are some links in case you are not familiar with "FileReader()". I think it is a part of HTML5

https://developer.mozilla.org/en/DOM/FileReader

and

https://developer.mozilla.org/en/Usi...b_applications


Even though the files are not that big, the browser stalls out. I use FireFox 8 and a solution should be able to run on it.

I have tried a number of solutions
1) setTimeOut() method
2) reader.onloadend
3) status codes using reader.readyState==1

all I want to do here is load the result into an array for additional processing.

I use xml files with the extension .gpx I have included some sample data because I split the data using the .split() method for what I thought was the quickest processing. The sample data is both at the bottom of this post and in attached zip file. If you are uncomfortable downloading a zip file, use the data included and save them into files with the extention .gpx.

I know it is a timing issue because I halt program execution and restart with no problem. The end result should yield two elements in the grpWpt array. Wherein each is an array of waypoints.

Here is my sample code which will using the references above.
Expand|Select|Wrap|Line Numbers
  1. <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
  2. <html xmlns="http://www.w3.org/1999/xhtml">
  3. <head>
  4.     <title id="title">Uploader</title>
  5.  
  6.     <script type="text/javascript">
  7.         //an array I can access after files have been loaded into browser memory
  8.         grpWpt = new Array();
  9.  
  10.         //instantiate the reader
  11.         var reader = new FileReader();
  12.  
  13.         /*when file has loaded store in an array*/
  14.         reader.onload = function () { 
  15.             grpWpt.push(reader.result.split("<wpt "));
  16.         }
  17.  
  18.         function docStartUp(obj)
  19.         {
  20.             var fileSelect = document.getElementById("fileSelect"),  
  21.             fileElem = document.getElementById("fileElem");  
  22.  
  23.             fileSelect.addEventListener("click", function (e) {  
  24.                 if (fileElem) 
  25.                 {  
  26.                     fileElem.click();  
  27.                 }  
  28.                 e.preventDefault(); // prevent navigation to "#"  
  29.             }, false);      
  30.  
  31.             fileElem.addEventListener("change", function (e) {
  32.                 grpWpt.length = 0;
  33.  
  34.                 for (var i = 0; i < this.files.length; i++ )
  35.                 {
  36.                     /* readyState can have 3 values 0,1,2 1=reading in progress*/
  37.                     while (reader.readyState==1)
  38.                     {
  39.                         //do nothing
  40.                     }
  41.                     handleFiles(this.files[i]);
  42.  
  43.             }
  44.         /*
  45.         //original attempt send all references to files to handleFiles (did not work)
  46.                     handleFiles(this.files);
  47.         */
  48.                 }, false);  
  49.             }
  50.  
  51.             function handleFiles(files) {
  52.         /*            
  53.         //loop through list of files and read into browser (did not work moved too fast on 2nd file)
  54.                 for (var i = 0; i < files.length; i++) {
  55.                     reader.readAsText( files[i] );
  56.                 }
  57.         */
  58.                 //works because it only reads the first file in the list
  59.         //        reader.readAsText( files[0] );
  60.                 reader.readAsText( files );
  61.             }
  62.     </script> 
  63.  </head>
  64.  
  65. <body onload="docStartUp(this)">
  66.     <input type="file" id="fileElem" multiple="true" accept="xml/*" style="display:none">  
  67.     <a href="#" id="fileSelect">Select Files</a> 
  68. </body>
  69. </html>
  70.  
Sample xml data small file
Expand|Select|Wrap|Line Numbers
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <gpx xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" version="1.0" creator="Groundspeak, Inc. All Rights Reserved. http://www.groundspeak.com" xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/GPX/1/0/gpx.xsd http://www.groundspeak.com/cache/1/0 http://www.groundspeak.com/cache/1/0/cache.xsd" xmlns="http://www.topografix.com/GPX/1/0">
  3.   <name>Waypoints for Cache Listings Generated from Geocaching.com</name>
  4.   <desc>This is a list of supporting waypoints for caches generated from Geocaching.com</desc>
  5.   <author>Various users from Geocaching.com</author>
  6.   <email>contact@geocaching.com</email>
  7.   <url>http://www.geocaching.com</url>
  8.   <urlname>Geocaching - High Tech Treasure Hunting</urlname>
  9.   <time>2011-11-25T15:45:19.1517864Z</time>
  10.   <keywords>cache, geocache, waypoints</keywords>
  11.   <bounds minlat="41.7721" minlon="-88.212183" maxlat="41.827367" maxlon="-88.159" />
  12.   <wpt lat="41.827367" lon="-88.212183">
  13.     <time>2010-09-04T13:07:41.657</time>
  14.     <name>PK2EJVA</name>
  15.     <cmt>Suggested parking</cmt>
  16.     <desc>GC2EJVA Parking</desc>
  17.     <url>http://www.geocaching.com/seek/wpt.aspx?WID=fce697f6-63c9-46c7-80da-5ef3fddaa201</url>
  18.     <urlname>GC2EJVA Parking</urlname>
  19.     <sym>Parking Area</sym>
  20.     <type>Waypoint|Parking Area</type>
  21.   </wpt>
  22.   <wpt lat="41.783917" lon="-88.180217">
  23.     <time>2010-09-20T17:27:48.067</time>
  24.     <name>PK2FBEN</name>
  25.     <cmt />
  26.     <desc>GC2FBEN Parking</desc>
  27.     <url>http://www.geocaching.com/seek/wpt.aspx?WID=ec86c33e-82c9-4820-bd84-e2d357025855</url>
  28.     <urlname>GC2FBEN Parking</urlname>
  29.     <sym>Parking Area</sym>
  30.     <type>Waypoint|Parking Area</type>
  31.   </wpt>
  32.   <wpt lat="41.783917" lon="-88.180217">
  33.     <time>2010-10-24T14:06:53.497</time>
  34.     <name>PK2H81B</name>
  35.     <cmt />
  36.     <desc>GC2H81B Parking</desc>
  37.     <url>http://www.geocaching.com/seek/wpt.aspx?WID=5a232a68-0f8b-494a-8eec-d02d8955e42d</url>
  38.     <urlname>GC2H81B Parking</urlname>
  39.     <sym>Parking Area</sym>
  40.     <type>Waypoint|Parking Area</type>
  41.   </wpt>
  42.   <wpt lat="41.7721" lon="-88.159">
  43.     <time>2011-09-11T15:26:47.323</time>
  44.     <name>EN32KYR</name>
  45.     <cmt>Note:     Entrance to the park. Follow the parking lot south then west to the closest parking to the cache site.</cmt>
  46.     <desc>Entrance to Park to get to the cache via car</desc>
  47.     <url>http://www.geocaching.com/seek/wpt.aspx?WID=7793c927-1ebc-4507-a25a-9de47397b868</url>
  48.     <urlname>Entrance to Park to get to the cache via car</urlname>
  49.     <sym>Parking Area</sym>
  50.     <type>Waypoint|Parking Area</type>
  51.   </wpt>
  52. </gpx>
  53.  
Sample Data Larger File
Expand|Select|Wrap|Line Numbers
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <gpx xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" version="1.0" creator="Groundspeak Pocket Query" xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/GPX/1/0/gpx.xsd http://www.groundspeak.com/cache/1/0 http://www.groundspeak.com/cache/1/0/cache.xsd" xmlns="http://www.topografix.com/GPX/1/0">
  3.   <name>Bike Path</name>
  4.   <desc>Geocache file generated by Groundspeak</desc>
  5.   <author>Groundspeak</author>
  6.   <email>contact@groundspeak.com</email>
  7.   <time>2011-11-25T15:45:19.3857894Z</time>
  8.   <keywords>cache, geocache, groundspeak</keywords>
  9.   <bounds minlat="41.758417" minlon="-88.284167" maxlat="41.862867" maxlon="-88.131067" />
  10.   <wpt lat="41.81025" lon="-88.2076">
  11.     <time>2011-01-27T08:00:00Z</time>
  12.     <name>GC2N0DR</name>
  13.     <desc>Just Under 5 Tons by G.O. John and Carol, Traditional Cache (1.5/1.5)</desc>
  14.     <url>http://www.geocaching.com/seek/cache_details.aspx?guid=b4ea3983-676e-4287-8d43-e4d777b2c15a</url>
  15.     <urlname>Just Under 5 Tons</urlname>
  16.     <sym>Geocache</sym>
  17.     <type>Geocache|Traditional Cache</type>
  18.     <groundspeak:cache id="2061960" available="True" archived="False" xmlns:groundspeak="http://www.groundspeak.com/cache/1/0">
  19.       <groundspeak:name>Just Under 5 Tons</groundspeak:name>
  20.       <groundspeak:placed_by>G.O. John and Carol</groundspeak:placed_by>
  21.       <groundspeak:owner id="235754">G.O. John and Carol</groundspeak:owner>
  22.       <groundspeak:type>Traditional Cache</groundspeak:type>
  23.       <groundspeak:container>Small</groundspeak:container>
  24.       <groundspeak:difficulty>1.5</groundspeak:difficulty>
  25.       <groundspeak:terrain>1.5</groundspeak:terrain>
  26.       <groundspeak:country>United States</groundspeak:country>
  27.       <groundspeak:state>Illinois</groundspeak:state>
  28.       <groundspeak:short_description html="True">
  29.       </groundspeak:short_description>
  30.       <groundspeak:long_description html="True">&lt;font size="4"&gt;&lt;strong&gt;&lt;font face="Arial"&gt;This cache
  31. was&amp;nbsp;hidden for the first annual "&lt;/font&gt;&lt;/strong&gt;&lt;/font&gt;
  32. &lt;a href=
  33. "http://www.geocaching.com/seek/cache_details.aspx?guid=2476befd-408a-4ad2-a99e-76a1bd8e8c39"&gt;
  34. &lt;font size="4" face="Arial"&gt;&lt;strong&gt;It's Great to See DST A
  35. Breakfast Event&lt;/strong&gt;&lt;/font&gt;&lt;/a&gt; &lt;font size="4" face=
  36. "Arial"&gt;&lt;strong&gt;".&lt;br /&gt;&lt;/strong&gt;&lt;/font&gt;
  37. &lt;p&gt;&lt;font size="4" face="Arial"&gt;Once you decide where to park, you
  38. should enjoy your walk along the Prairie Path.&lt;font size="3" face=
  39. "Times New Roman"&gt;&amp;nbsp;&amp;nbsp;&lt;/font&gt; You won't have any trouble
  40. finding this one, but I hope it doesn't cause any problems.&amp;nbsp;
  41. You see, the limit is 5 tons, and this cache is truly &lt;em&gt;just&lt;/em&gt;
  42. under 5 tons.&lt;br /&gt;
  43. &lt;br /&gt;
  44. Let me know if anything collapses!&lt;/font&gt;&lt;/p&gt;</groundspeak:long_description>
  45.       <groundspeak:encoded_hints>
  46.       </groundspeak:encoded_hints>
  47.       <groundspeak:logs>
  48.         <groundspeak:log id="198978317">
  49.           <groundspeak:date>2011-11-14T20:00:00Z</groundspeak:date>
  50.           <groundspeak:type>Found it</groundspeak:type>
  51.           <groundspeak:finder id="1911595">Jacobn'I</groundspeak:finder>
  52.           <groundspeak:text encoded="False">Out for a couple of caches after work b4 dark</groundspeak:text>
  53.         </groundspeak:log>
  54.         <groundspeak:log id="198808368">
  55.           <groundspeak:date>2011-11-13T20:00:00Z</groundspeak:date>
  56.           <groundspeak:type>Found it</groundspeak:type>
  57.           <groundspeak:finder id="93109">Lindave</groundspeak:finder>
  58.           <groundspeak:text encoded="False">It was a bit windy getting to this cool stash but we enjoyed the find. Thanks...Lindave</groundspeak:text>
  59.         </groundspeak:log>
  60.         <groundspeak:log id="198795885">
  61.           <groundspeak:date>2011-11-13T20:00:00Z</groundspeak:date>
  62.           <groundspeak:type>Found it</groundspeak:type>
  63.           <groundspeak:finder id="2318675">cubdad7</groundspeak:finder>
  64.           <groundspeak:text encoded="False">love this hide. it's something that i would have done.
  65. impressive and a fav point from me.
  66. sl tftc</groundspeak:text>
  67.         </groundspeak:log>
  68.         <groundspeak:log id="197917228">
  69.           <groundspeak:date>2011-11-05T19:00:00Z</groundspeak:date>
  70.           <groundspeak:type>Found it</groundspeak:type>
  71.           <groundspeak:finder id="119759">katguy</groundspeak:finder>
  72.           <groundspeak:text encoded="False">I found "Just Under 5 Tons" with Odyn as the sun was fading out on the last day of DST.  Truth.  Thanks for the cache and the fun time.</groundspeak:text>
  73.         </groundspeak:log>
  74.         <groundspeak:log id="197753591">
  75.           <groundspeak:date>2011-11-05T19:00:00Z</groundspeak:date>
  76.           <groundspeak:type>Found it</groundspeak:type>
  77.           <groundspeak:finder id="60384">Odyn</groundspeak:finder>
  78.           <groundspeak:text encoded="False">Had a good time caching in the area with Katguy. We attended two events, ran into several cachers on the trail, and found some nice caches. Another really nice one. Thanks for the hide.</groundspeak:text>
  79.         </groundspeak:log>
  80.       </groundspeak:logs>
  81.       <groundspeak:travelbugs />
  82.     </groundspeak:cache>
  83.   </wpt>
  84.   <wpt lat="41.809467" lon="-88.20425">
  85.     <time>2011-03-06T08:00:00Z</time>
  86.     <name>GC2NF72</name>
  87.     <desc>Be Sure It Speaks Bocce by sgauss, Traditional Cache (1.5/2)</desc>
  88.     <url>http://www.geocaching.com/seek/cache_details.aspx?guid=f1ba99c8-86df-4ecb-80c4-43cc73154617</url>
  89.     <urlname>Be Sure It Speaks Bocce</urlname>
  90.     <sym>Geocache</sym>
  91.     <type>Geocache|Traditional Cache</type>
  92.     <groundspeak:cache id="2076167" available="True" archived="False" xmlns:groundspeak="http://www.groundspeak.com/cache/1/0">
  93.       <groundspeak:name>Be Sure It Speaks Bocce</groundspeak:name>
  94.       <groundspeak:placed_by>sgauss</groundspeak:placed_by>
  95.       <groundspeak:owner id="2458905">sgauss</groundspeak:owner>
  96.       <groundspeak:type>Traditional Cache</groundspeak:type>
  97.       <groundspeak:container>Micro</groundspeak:container>
  98.       <groundspeak:difficulty>1.5</groundspeak:difficulty>
  99.       <groundspeak:terrain>2</groundspeak:terrain>
  100.       <groundspeak:country>United States</groundspeak:country>
  101.       <groundspeak:state>Illinois</groundspeak:state>
  102.       <groundspeak:short_description html="True">Luke, tell uncle if he gets a translator be sure it speaks Bocce!</groundspeak:short_description>
  103.       <groundspeak:long_description html="True">The title of this cache is inspired by the office building on the
  104. east side of Route 59, across from this location. It looked
  105. familiar to me.&lt;br /&gt;
  106. &lt;center&gt;&lt;img src=
  107. "http://img.geocaching.com/cache/ee99df7a-0f9f-4912-8330-a12e796ecdb6.jpg" /&gt;&lt;/center&gt;
  108. &lt;br /&gt;
  109. &lt;br /&gt;
  110. You're looking for a preform container.</groundspeak:long_description>
  111.       <groundspeak:encoded_hints>
  112.       </groundspeak:encoded_hints>
  113.       <groundspeak:logs>
  114.         <groundspeak:log id="198796673">
  115.           <groundspeak:date>2011-11-13T20:00:00Z</groundspeak:date>
  116.           <groundspeak:type>Found it</groundspeak:type>
  117.           <groundspeak:finder id="2318675">cubdad7</groundspeak:finder>
  118.           <groundspeak:text encoded="False">nice little hide. numbers are right on.
  119. sl tftc</groundspeak:text>
  120.         </groundspeak:log>
  121.         <groundspeak:log id="197912671">
  122.           <groundspeak:date>2011-11-09T20:00:00Z</groundspeak:date>
  123.           <groundspeak:type>Found it</groundspeak:type>
  124.           <groundspeak:finder id="230171">toursport</groundspeak:finder>
  125.           <groundspeak:text encoded="False">Made it to this side of the construction and made the find.
  126. TFTC, WHOOP WHOOP !!</groundspeak:text>
  127.         </groundspeak:log>
  128.         <groundspeak:log id="197914406">
  129.           <groundspeak:date>2011-11-05T19:00:00Z</groundspeak:date>
  130.           <groundspeak:type>Found it</groundspeak:type>
  131.           <groundspeak:finder id="119759">katguy</groundspeak:finder>
  132.           <groundspeak:text encoded="False">As today's flight path brought us by this way, my pal Odyn and I stopped to stalk and discover this hide.  TFTC sgauss.</groundspeak:text>
  133.         </groundspeak:log>
  134.         <groundspeak:log id="197752559">
  135.           <groundspeak:date>2011-11-05T19:00:00Z</groundspeak:date>
  136.           <groundspeak:type>Found it</groundspeak:type>
  137.           <groundspeak:finder id="60384">Odyn</groundspeak:finder>
  138.           <groundspeak:text encoded="False">Had a good time caching in the area with Katguy. We attended two events, ran into several cachers on the trail, and found some nice caches. LOL I just now finally got the joke! Thanks for the hide.</groundspeak:text>
  139.         </groundspeak:log>
  140.         <groundspeak:log id="197573606">
  141.           <groundspeak:date>2011-11-05T19:00:00Z</groundspeak:date>
  142.           <groundspeak:type>Found it</groundspeak:type>
  143.           <groundspeak:finder id="1701047">cummins6061</groundspeak:finder>
  144.           <groundspeak:text encoded="False">Out on a cache run during the DST event and trying for a few more before the night event. This one escaped us for a bit but we made the find.   :Found on 11/05/2011 at  7:15 PM, TNLNSL with our groups initials 'ZCG'...TFTC!!!</groundspeak:text>
  145.         </groundspeak:log>
  146.       </groundspeak:logs>
  147.       <groundspeak:travelbugs />
  148.     </groundspeak:cache>
  149.   </wpt>
  150.   <wpt lat="41.807567" lon="-88.204133">
  151.     <time>2011-02-04T08:00:00Z</time>
  152.     <name>GC2NAV4</name>
  153.     <desc>South of the Border This Would Be Called... by G.O. John and Carol, Traditional Cache (1.5/1.5)</desc>
  154.     <url>http://www.geocaching.com/seek/cache_details.aspx?guid=40964823-2864-4260-a8ec-461f6b597d40</url>
  155.     <urlname>South of the Border This Would Be Called...</urlname>
  156.     <sym>Geocache</sym>
  157.     <type>Geocache|Traditional Cache</type>
  158.     <groundspeak:cache id="2071953" available="True" archived="False" xmlns:groundspeak="http://www.groundspeak.com/cache/1/0">
  159.       <groundspeak:name>South of the Border This Would Be Called...</groundspeak:name>
  160.       <groundspeak:placed_by>G.O. John and Carol</groundspeak:placed_by>
  161.       <groundspeak:owner id="235754">G.O. John and Carol</groundspeak:owner>
  162.       <groundspeak:type>Traditional Cache</groundspeak:type>
  163.       <groundspeak:container>Micro</groundspeak:container>
  164.       <groundspeak:difficulty>1.5</groundspeak:difficulty>
  165.       <groundspeak:terrain>1.5</groundspeak:terrain>
  166.       <groundspeak:country>United States</groundspeak:country>
  167.       <groundspeak:state>Illinois</groundspeak:state>
  168.       <groundspeak:short_description html="True">
  169.       </groundspeak:short_description>
  170.       <groundspeak:long_description html="True">&lt;font size="4"&gt;&lt;font face="Arial"&gt;This cache was&amp;nbsp;hidden for
  171. the first annual "&lt;/font&gt;&lt;/font&gt; &lt;a href=
  172. "http://www.geocaching.com/seek/cache_details.aspx?guid=2476befd-408a-4ad2-a99e-76a1bd8e8c39"&gt;
  173. &lt;font size="4" face="Arial"&gt;It's Great to See DST! A Breakfast
  174. Event&lt;/font&gt;&lt;/a&gt; &lt;font face="Arial"&gt;&lt;font size="4"&gt;".&lt;br /&gt;
  175. &lt;br /&gt;&lt;/font&gt;&lt;/font&gt;
  176. &lt;p&gt;&lt;font face="Arial"&gt;&lt;font color="#000000" size="4"&gt;Some of you
  177. won't get the joke here, but&amp;nbsp;we think most will.&amp;nbsp; You may
  178. wish you didn't get it.&amp;nbsp; Anyway, this is just a simple little
  179. micro waiting for you to visit.&lt;br /&gt;
  180. &lt;br /&gt;
  181. Good luck!&lt;/font&gt;&lt;/font&gt;&lt;/p&gt;</groundspeak:long_description>
  182.       <groundspeak:encoded_hints>
  183.       </groundspeak:encoded_hints>
  184.       <groundspeak:logs>
  185.         <groundspeak:log id="199117679">
  186.           <groundspeak:date>2011-11-15T20:00:00Z</groundspeak:date>
  187.           <groundspeak:type>Found it</groundspeak:type>
  188.           <groundspeak:finder id="1911595">Jacobn'I</groundspeak:finder>
  189.           <groundspeak:text encoded="False">This one had me a little stumped but my GPSSr finally pointed right to it</groundspeak:text>
  190.         </groundspeak:log>
  191.         <groundspeak:log id="198796503">
  192.           <groundspeak:date>2011-11-13T20:00:00Z</groundspeak:date>
  193.           <groundspeak:type>Found it</groundspeak:type>
  194.           <groundspeak:finder id="2318675">cubdad7</groundspeak:finder>
  195.           <groundspeak:text encoded="False">almost a png on the alt cachemobile. walked right up to it.
  196. sl tftc</groundspeak:text>
  197.         </groundspeak:log>
  198.         <groundspeak:log id="197914409">
  199.           <groundspeak:date>2011-11-05T19:00:00Z</groundspeak:date>
  200.           <groundspeak:type>Found it</groundspeak:type>
  201.           <groundspeak:finder id="119759">katguy</groundspeak:finder>
  202.           <groundspeak:text encoded="False">A cache which good friend Odyn and I visited this Saturday.  LOL!  Thanks for the fun.</groundspeak:text>
  203.         </groundspeak:log>
  204.         <groundspeak:log id="197752701">
  205.           <groundspeak:date>2011-11-05T19:00:00Z</groundspeak:date>
  206.           <groundspeak:type>Found it</groundspeak:type>
  207.           <groundspeak:finder id="60384">Odyn</groundspeak:finder>
  208.           <groundspeak:text encoded="False">Had a good time caching in the area with Katguy. We attended two events, ran into several cachers on the trail, and found some nice caches.  Lol thanks for the cute one.</groundspeak:text>
  209.         </groundspeak:log>
  210.         <groundspeak:log id="197668001">
  211.           <groundspeak:date>2011-11-05T19:00:00Z</groundspeak:date>
  212.           <groundspeak:type>Found it</groundspeak:type>
  213.           <groundspeak:finder id="91151">JustUsTwo</groundspeak:finder>
  214.           <groundspeak:text encoded="False">Nice play on words John!    [^]   
  215.  
  216. You always crack us up!    [8D] 
  217.  
  218. We took turns finding it...one by one!  [;)]
  219.  
  220. Thanks, “G.O. John and Carol” for the cache!      [:D]</groundspeak:text>
  221.         </groundspeak:log>
  222.       </groundspeak:logs>
  223.       <groundspeak:travelbugs />
  224.     </groundspeak:cache>
  225.   </wpt>
  226.   <wpt lat="41.814" lon="-88.216933">
  227.     <time>2011-02-27T08:00:00Z</time>
  228.     <name>GC2PDHD</name>
  229.     <desc>DP IL #3 by G.O. John and Carol, Traditional Cache (1/1.5)</desc>
  230.     <url>http://www.geocaching.com/seek/cache_details.aspx?guid=b7f22fa6-b2cd-4576-a8e0-72032ebeaab4</url>
  231.     <urlname>DP IL #3</urlname>
  232.     <sym>Geocache</sym>
  233.     <type>Geocache|Traditional Cache</type>
  234.     <groundspeak:cache id="2104357" available="True" archived="False" xmlns:groundspeak="http://www.groundspeak.com/cache/1/0">
  235.       <groundspeak:name>DP IL #3</groundspeak:name>
  236.       <groundspeak:placed_by>G.O. John and Carol</groundspeak:placed_by>
  237.       <groundspeak:owner id="235754">G.O. John and Carol</groundspeak:owner>
  238.       <groundspeak:type>Traditional Cache</groundspeak:type>
  239.       <groundspeak:container>Micro</groundspeak:container>
  240.       <groundspeak:difficulty>1</groundspeak:difficulty>
  241.       <groundspeak:terrain>1.5</groundspeak:terrain>
  242.       <groundspeak:country>United States</groundspeak:country>
  243.       <groundspeak:state>Illinois</groundspeak:state>
  244.       <groundspeak:short_description html="True">
  245.       </groundspeak:short_description>
  246.       <groundspeak:long_description html="True">&lt;font size="4"&gt;&lt;font face="Arial"&gt;This cache was&amp;nbsp;hidden for
  247. the first annual "&lt;/font&gt; &lt;a href=
  248. "http://www.geocaching.com/seek/cache_details.aspx?guid=2476befd-408a-4ad2-a99e-76a1bd8e8c39"&gt;
  249. &lt;font face="Arial"&gt;It's Great to See DST!&amp;nbsp; &amp;nbsp;A Breakfast
  250. Event&lt;/font&gt;&lt;/a&gt; &lt;font face="Arial"&gt;".&lt;br /&gt;
  251. &lt;br /&gt;
  252. Carol and I found a bunch of DP (Dog Post) caches in Kentucky and
  253. Tennessee recently, and I thought they were kind of fun. The guy
  254. who hid the ones we found copied the idea from DP caches he'd found
  255. in Arkansas. We've brought the idea back to Illinois, and we hope
  256. you find these to be fun little driveups. They're typically in out
  257. of the way places, and they shouldn't draw a lot of attention from
  258. muggles. Almost all of these are quick and easy park and grabs,
  259. although this one involves a little bit of walking.&lt;/font&gt;&lt;/font&gt;</groundspeak:long_description>
  260.       <groundspeak:encoded_hints>
  261.       </groundspeak:encoded_hints>
  262.       <groundspeak:logs>
  263.         <groundspeak:log id="198795325">
  264.           <groundspeak:date>2011-11-13T20:00:00Z</groundspeak:date>
  265.           <groundspeak:type>Found it</groundspeak:type>
  266.           <groundspeak:finder id="2318675">cubdad7</groundspeak:finder>
  267.           <groundspeak:text encoded="False">took a stupid round about way to get to this one.
  268. what a dummy i was.
  269. sl tftc</groundspeak:text>
  270.         </groundspeak:log>
  271.         <groundspeak:log id="196422606">
  272.           <groundspeak:date>2011-11-01T19:00:00Z</groundspeak:date>
  273.           <groundspeak:type>Found it</groundspeak:type>
  274.           <groundspeak:finder id="5183771">cull3n</groundspeak:finder>
  275.           <groundspeak:text encoded="False">I'm working in the warehouse here now and found this on a smoke break.  Easy find.  Tftc.</groundspeak:text>
  276.         </groundspeak:log>
  277.         <groundspeak:log id="195568966">
  278.           <groundspeak:date>2011-10-29T19:00:00Z</groundspeak:date>
  279.           <groundspeak:type>Found it</groundspeak:type>
  280.           <groundspeak:finder id="1770137">psychovw</groundspeak:finder>
  281.           <groundspeak:text encoded="False">Found @ 1:45 pm.  Cache is doing fine.  TFTC</groundspeak:text>
  282.         </groundspeak:log>
  283.         <groundspeak:log id="190566852">
  284.           <groundspeak:date>2011-10-02T19:00:00Z</groundspeak:date>
  285.           <groundspeak:type>Found it</groundspeak:type>
  286.           <groundspeak:finder id="1295103">goinkers</groundspeak:finder>
  287.           <groundspeak:text encoded="False">Pops had seen one like this before so he stood back while #1 Son sniffed around for it. Content to find the cache, he resisted the urge to do more, however.</groundspeak:text>
  288.         </groundspeak:log>
  289.         <groundspeak:log id="186796332">
  290.           <groundspeak:date>2011-09-15T19:00:00Z</groundspeak:date>
  291.           <groundspeak:type>Found it</groundspeak:type>
  292.           <groundspeak:finder id="543890">Abell</groundspeak:finder>
  293.           <groundspeak:text encoded="False">Good thing this was the last one of the day, the "dog" was running dry :-).</groundspeak:text>
  294.         </groundspeak:log>
  295.       </groundspeak:logs>
  296.       <groundspeak:travelbugs />
  297.     </groundspeak:cache>
  298.   </wpt>
  299.   <wpt lat="41.805486" lon="-88.198421">
  300.     <time>2011-10-18T07:00:00Z</time>
  301.     <name>GC366K0</name>
  302.     <desc>Sea of Tranquility by HomerDad, Traditional Cache (1.5/1.5)</desc>
  303.     <url>http://www.geocaching.com/seek/cache_details.aspx?guid=1d9f885a-26e6-43ff-a888-71fd109ea4d9</url>
  304.     <urlname>Sea of Tranquility</urlname>
  305.     <sym>Geocache</sym>
  306.     <type>Geocache|Traditional Cache</type>
  307.     <groundspeak:cache id="2544544" available="True" archived="False" xmlns:groundspeak="http://www.groundspeak.com/cache/1/0">
  308.       <groundspeak:name>Sea of Tranquility</groundspeak:name>
  309.       <groundspeak:placed_by>HomerDad</groundspeak:placed_by>
  310.       <groundspeak:owner id="3897908">HomerDad</groundspeak:owner>
  311.       <groundspeak:type>Traditional Cache</groundspeak:type>
  312.       <groundspeak:container>Micro</groundspeak:container>
  313.       <groundspeak:difficulty>1.5</groundspeak:difficulty>
  314.       <groundspeak:terrain>1.5</groundspeak:terrain>
  315.       <groundspeak:country>United States</groundspeak:country>
  316.       <groundspeak:state>Illinois</groundspeak:state>
  317.       <groundspeak:short_description html="False">A nice little resting spot to ease your stress</groundspeak:short_description>
  318.       <groundspeak:long_description html="False">This nice resting place is situated between three large businesses.  At lunch time on a nice day, the walking paths are full of people getting a little breather from the stresses that fill their day while inside.  Some of them stop here to relax and enjoy a nice book or just talk.  Take a walk, admire the scenery, and be tranquil.
  319.  
  320. I hope you enjoy it as much as I do.
  321.  
  322. You're looking for a small waterproof pill container.  it has a log and a small pencil.</groundspeak:long_description>
  323.       <groundspeak:encoded_hints>Poor little fella, he looks so lonely by himself on the banks of the Sea.  Won't you pay him a visit?</groundspeak:encoded_hints>
  324.       <groundspeak:logs>
  325.         <groundspeak:log id="200310081">
  326.           <groundspeak:date>2011-11-22T20:00:00Z</groundspeak:date>
  327.           <groundspeak:type>Found it</groundspeak:type>
  328.           <groundspeak:finder id="2458905">sgauss</groundspeak:finder>
  329.           <groundspeak:text encoded="False">This is only a mile or so from the gym, so I stopped by after climbing and searched for the cache.  Coords seemed good, and I found it pretty quickly.  Thanks for the cache!</groundspeak:text>
  330.         </groundspeak:log>
  331.         <groundspeak:log id="198796916">
  332.           <groundspeak:date>2011-11-13T20:00:00Z</groundspeak:date>
  333.           <groundspeak:type>Found it</groundspeak:type>
  334.           <groundspeak:finder id="2318675">cubdad7</groundspeak:finder>
  335.           <groundspeak:text encoded="False">what a pain this one turned out to be.
  336. i was looking in all the wrong places til i found the right one.
  337. sl tftc</groundspeak:text>
  338.         </groundspeak:log>
  339.         <groundspeak:log id="197667794">
  340.           <groundspeak:date>2011-11-05T19:00:00Z</groundspeak:date>
  341.           <groundspeak:type>Found it</groundspeak:type>
  342.           <groundspeak:finder id="91151">JustUsTwo</groundspeak:finder>
  343.           <groundspeak:text encoded="False">Nice location!  [8D]        We were careful to hang on to all our stuff while hunting this one.     [;)]
  344.  
  345. Thanks, “Homerdad” for the cache!      [:D]</groundspeak:text>
  346.         </groundspeak:log>
  347.         <groundspeak:log id="197573477">
  348.           <groundspeak:date>2011-11-05T19:00:00Z</groundspeak:date>
  349.           <groundspeak:type>Found it</groundspeak:type>
  350.           <groundspeak:finder id="1701047">cummins6061</groundspeak:finder>
  351.           <groundspeak:text encoded="False">Out on a cache run during the DST event. No one around and we made the quick find under artificial light. :Found on 11/05/2011 at  6:50 PM, TNLNSL with our groups initials 'ZCG'...TFTC!!!</groundspeak:text>
  352.         </groundspeak:log>
  353.         <groundspeak:log id="197500876">
  354.           <groundspeak:date>2011-11-05T19:00:00Z</groundspeak:date>
  355.           <groundspeak:type>Found it</groundspeak:type>
  356.           <groundspeak:finder id="161275">lucy~</groundspeak:finder>
  357.           <groundspeak:text encoded="False">Very nice buildings around here. don't know how tranquil it is with the traffic roaring nearby. A nice hide we almost missed. The crew was winding down as we neared the time deadline for the day.
  358.  
  359. Thanks for the fun and the find HomerDad.</groundspeak:text>
  360.         </groundspeak:log>
  361.       </groundspeak:logs>
  362.       <groundspeak:travelbugs />
  363.     </groundspeak:cache>
  364.   </wpt>
  365.   <wpt lat="41.808017" lon="-88.2262">
  366.     <time>2011-10-07T07:00:00Z</time>
  367.     <name>GC35H4F</name>
  368.     <desc>DP IL #12  -  The Mismatch by G.O. John and Carol, Traditional Cache (1.5/1.5)</desc>
  369.     <url>http://www.geocaching.com/seek/cache_details.aspx?guid=60b478c8-0d6e-49b0-8ff2-770eb1558ec6</url>
  370.     <urlname>DP IL #12  -  The Mismatch</urlname>
  371.     <sym>Geocache</sym>
  372.     <type>Geocache|Traditional Cache</type>
  373.     <groundspeak:cache id="2524874" available="True" archived="False" xmlns:groundspeak="http://www.groundspeak.com/cache/1/0">
  374.       <groundspeak:name>DP IL #12  -  The Mismatch</groundspeak:name>
  375.       <groundspeak:placed_by>G.O. John and Carol</groundspeak:placed_by>
  376.       <groundspeak:owner id="235754">G.O. John and Carol</groundspeak:owner>
  377.       <groundspeak:type>Traditional Cache</groundspeak:type>
  378.       <groundspeak:container>Micro</groundspeak:container>
  379.       <groundspeak:difficulty>1.5</groundspeak:difficulty>
  380.       <groundspeak:terrain>1.5</groundspeak:terrain>
  381.       <groundspeak:country>United States</groundspeak:country>
  382.       <groundspeak:state>Illinois</groundspeak:state>
  383.       <groundspeak:short_description html="True">
  384.       </groundspeak:short_description>
  385.       <groundspeak:long_description html="True">&lt;p align="center"&gt;&lt;font size="4" face="Arial"&gt;This cache was hidden
  386. for the following 2 events:&lt;br /&gt;
  387. &lt;a href=
  388. "http://www.geocaching.com/seek/cache_details.aspx?guid=d4e3d2a1-058b-4f88-9ef8-014235194400"&gt;
  389. &lt;font color="#0066CC"&gt;Please Don't Leave, DST! A Breakfast
  390. Event&lt;br /&gt;&lt;/font&gt;&lt;/a&gt;and Moodygrrl's follow up event&lt;br /&gt;
  391. &lt;a href=
  392. "http://www.geocaching.com/seek/cache_details.aspx?wp=GC33NYG"&gt;&lt;font color="#0066CC"&gt;
  393. "Fall Back"... Into Caching&lt;/font&gt;&lt;/a&gt;&lt;/font&gt;&lt;/p&gt;
  394. &lt;p align="left"&gt;&lt;font size="4" face="Arial"&gt;&lt;br /&gt;
  395. Carol and I found a bunch of DP (Dog Post) caches in Kentucky and
  396. Tennessee recently, and I thought they were kind of fun. The guy
  397. who hid the ones we found copied the idea from DP caches he'd found
  398. in Arkansas. We've brought the idea back to Illinois, and we hope
  399. you find these to be fun little driveups. They're typically in out
  400. of the way places, and they shouldn't draw a lot of attention from
  401. muggles.&lt;br /&gt;
  402. &lt;br /&gt;
  403. This one doesn't quite match up.&amp;nbsp; Oh well, it's what I had
  404. with me...&lt;br /&gt;&lt;/font&gt;&lt;/p&gt;</groundspeak:long_description>
  405.       <groundspeak:encoded_hints>
  406.       </groundspeak:encoded_hints>
  407.       <groundspeak:logs>
  408.         <groundspeak:log id="198794626">
  409.           <groundspeak:date>2011-11-13T20:00:00Z</groundspeak:date>
  410.           <groundspeak:type>Found it</groundspeak:type>
  411.           <groundspeak:finder id="2318675">cubdad7</groundspeak:finder>
  412.           <groundspeak:text encoded="False">kinda out of the way, but easy to get to.
  413. sl tftc</groundspeak:text>
  414.         </groundspeak:log>
  415.         <groundspeak:log id="196773095">
  416.           <groundspeak:date>2011-11-04T19:00:00Z</groundspeak:date>
  417.           <groundspeak:type>Found it</groundspeak:type>
  418.           <groundspeak:finder id="4205557">mau724</groundspeak:finder>
  419.           <groundspeak:text encoded="False">Found it! Title made us chuckle! TFTC!</groundspeak:text>
  420.         </groundspeak:log>
  421.         <groundspeak:log id="196686423">
  422.           <groundspeak:date>2011-11-04T04:02:03Z</groundspeak:date>
  423.           <groundspeak:type>Publish Listing</groundspeak:type>
  424.           <groundspeak:finder id="4898090">Edward Rooney</groundspeak:finder>
  425.           <groundspeak:text encoded="False">Published</groundspeak:text>
  426.         </groundspeak:log>
  427.         <groundspeak:log id="196735956">
  428.           <groundspeak:date>2011-11-03T19:00:00Z</groundspeak:date>
  429.           <groundspeak:type>Found it</groundspeak:type>
  430.           <groundspeak:finder id="1701047">cummins6061</groundspeak:finder>
  431.           <groundspeak:text encoded="False">I needed a FTF for this month to keep the streak going and missed out on one earlier in the day, then I see all the DST caches popping up, hmmm do I head down to try for a couple. I starting checking a few of the more "night accesible" caches and they were mostly found then I found a couple possibilities. SO I pulled the trigger and headed south to this one first. It was had to spot parking asI passed up the cache but on the way back I found a side steet to park on. Ofto the cache where I made the quick find. I then pulled the log out and saw a MEGA-sized nano type log which took more time to unroll then roll back in order to see if there were any other names then the total time to walk to the cache find it and replace. After the "long" search of the log I found no names, WooooHoooo a FTF for me. I'm so glad as itwould have been a bummer to miss this on. :Found 11/3/11 @ 11:25pm, TFTC!!!</groundspeak:text>
  432.         </groundspeak:log>
  433.       </groundspeak:logs>
  434.       <groundspeak:travelbugs />
  435.     </groundspeak:cache>
  436.   </wpt>
  437.   <wpt lat="41.829183" lon="-88.210433">
  438.     <time>2010-09-04T07:00:00Z</time>
  439.     <name>GC2EJVA</name>
  440.     <desc>PenguinChick ran 2 miles in 16 minutes 18 seconds by FlipperFamily, Traditional Cache (1.5/2)</desc>
  441.     <url>http://www.geocaching.com/seek/cache_details.aspx?guid=00332be6-1779-4066-8883-4123717abc5a</url>
  442.     <urlname>PenguinChick ran 2 miles in 16 minutes 18 seconds</urlname>
  443.     <sym>Geocache</sym>
  444.     <type>Geocache|Traditional Cache</type>
  445.     <groundspeak:cache id="1871110" available="True" archived="False" xmlns:groundspeak="http://www.groundspeak.com/cache/1/0">
  446.       <groundspeak:name>PenguinChick ran 2 miles in 16 minutes 18 seconds</groundspeak:name>
  447.       <groundspeak:placed_by>FlipperFamily</groundspeak:placed_by>
  448.       <groundspeak:owner id="650616">FlipperFamily</groundspeak:owner>
  449.       <groundspeak:type>Traditional Cache</groundspeak:type>
  450.       <groundspeak:container>Small</groundspeak:container>
  451.       <groundspeak:difficulty>1.5</groundspeak:difficulty>
  452.       <groundspeak:terrain>2</groundspeak:terrain>
  453.       <groundspeak:country>United States</groundspeak:country>
  454.       <groundspeak:state>Illinois</groundspeak:state>
  455.       <groundspeak:short_description html="True">The difficulty of this cache is pretty easy unless there's a ball
  456. game going on. If there is, the difficulty jumps to a 5.</groundspeak:short_description>
  457.       <groundspeak:long_description html="True">&lt;hr color="#FF0000" /&gt;
  458. &lt;center&gt;&lt;font color="#FF0000" size="3"&gt;&lt;b&gt;Congrats to nusense for
  459. the FTF&lt;/b&gt;&lt;/font&gt;&lt;/center&gt;
  460. &lt;hr color="#FF0000" /&gt;
  461. &lt;br /&gt;
  462. &lt;br /&gt;
  463. My daughter, PenguinChick, is in the 8th grade and runs cross
  464. country for her school.&lt;br /&gt;
  465. On September 4, 2010, she ran the 2 mile course at Summerlakes Park
  466. in 16 minutes and 18 seconds.&lt;br /&gt;
  467. &lt;br /&gt;
  468. &lt;img src=
  469. "http://img.geocaching.com/cache/2d4356cb-b6f9-4fee-8270-47c626e20165.jpg" /&gt;
  470. &lt;br /&gt;
  471. &lt;br /&gt;
  472. While they were warming up, I decided to hide a cache.&lt;br /&gt;
  473. &lt;a rel="nofollow" href="http://www.gonil.org/"&gt;&lt;img src=
  474. "http://www.gonil.org/i/m/m_gonil_1_2.jpg" /&gt;&lt;/a&gt;&lt;p&gt;Additional Waypoints&lt;/p&gt;PK2EJVA - GC2EJVA Parking&lt;br /&gt;N 41° 49.642 W 088° 12.731&lt;br /&gt;Suggested parking&lt;br /&gt;</groundspeak:long_description>
  475.       <groundspeak:encoded_hints>On a fallen tree</groundspeak:encoded_hints>
  476.       <groundspeak:logs>
  477.         <groundspeak:log id="200387977">
  478.           <groundspeak:date>2011-11-23T20:00:00Z</groundspeak:date>
  479.           <groundspeak:type>Found it</groundspeak:type>
  480.           <groundspeak:finder id="2095787">zteam118</groundspeak:finder>
  481.           <groundspeak:text encoded="False">Only a few kids playing a pick up game of soccer here today so was able to retrieve the cache pretty easily.  Nice hide!</groundspeak:text>
  482.         </groundspeak:log>
  483.         <groundspeak:log id="195927152">
  484.           <groundspeak:date>2011-10-30T19:00:00Z</groundspeak:date>
  485.           <groundspeak:type>Found it</groundspeak:type>
  486.           <groundspeak:finder id="1339448">ralphmjw</groundspeak:finder>
  487.           <groundspeak:text encoded="False">Searched the first possible host and came up empty and was about to give up. But then I noticed I was off on my coords and then I was able to make the find. TFTC</groundspeak:text>
  488.         </groundspeak:log>
  489.         <groundspeak:log id="189344960">
  490.           <groundspeak:date>2011-09-28T19:00:00Z</groundspeak:date>
  491.           <groundspeak:type>Found it</groundspeak:type>
  492.           <groundspeak:finder id="230171">toursport</groundspeak:finder>
  493.           <groundspeak:text encoded="False">Stopped by for a lunch grab. Nicely hidden.
  494. TFTC, WHOOP WHOOP !!</groundspeak:text>
  495.         </groundspeak:log>
  496.         <groundspeak:log id="187911488">
  497.           <groundspeak:date>2011-05-27T19:00:00Z</groundspeak:date>
  498.           <groundspeak:type>Found it</groundspeak:type>
  499.           <groundspeak:finder id="2890318">Fashota</groundspeak:finder>
  500.           <groundspeak:text encoded="False">TFTC[8D]</groundspeak:text>
  501.         </groundspeak:log>
  502.         <groundspeak:log id="163057612">
  503.           <groundspeak:date>2011-05-27T19:00:00Z</groundspeak:date>
  504.           <groundspeak:type>Found it</groundspeak:type>
  505.           <groundspeak:finder id="1911595">Jacobn'I</groundspeak:finder>
  506.           <groundspeak:text encoded="False">At first I was on the wrong side of the creek, then I got thing straightened around and made the find. Nice hide, should have read the hint beforehand.</groundspeak:text>
  507.         </groundspeak:log>
  508.       </groundspeak:logs>
  509.       <groundspeak:travelbugs />
  510.     </groundspeak:cache>
  511.   </wpt>
  512.   <wpt lat="41.803283" lon="-88.235567">
  513.     <time>2011-03-03T08:00:00Z</time>
  514.     <name>GC2PNJE</name>
  515.     <desc>500 by G.O. John and Carol, Traditional Cache (3.5/2)</desc>
  516.     <url>http://www.geocaching.com/seek/cache_details.aspx?guid=24e854a5-a08d-4635-8d64-aeb881907560</url>
  517.     <urlname>500</urlname>
  518.     <sym>Geocache</sym>
  519.     <type>Geocache|Traditional Cache</type>
  520.     <groundspeak:cache id="2112077" available="True" archived="False" xmlns:groundspeak="http://www.groundspeak.com/cache/1/0">
  521.       <groundspeak:name>500</groundspeak:name>
  522.       <groundspeak:placed_by>G.O. John and Carol</groundspeak:placed_by>
  523.       <groundspeak:owner id="235754">G.O. John and Carol</groundspeak:owner>
  524.       <groundspeak:type>Traditional Cache</groundspeak:type>
  525.       <groundspeak:container>Micro</groundspeak:container>
  526.       <groundspeak:difficulty>3.5</groundspeak:difficulty>
  527.       <groundspeak:terrain>2</groundspeak:terrain>
  528.       <groundspeak:country>United States</groundspeak:country>
  529.       <groundspeak:state>Illinois</groundspeak:state>
  530.       <groundspeak:short_description html="True">
  531.       </groundspeak:short_description>
  532.       <groundspeak:long_description html="True">&lt;font size="4"&gt;&lt;font face="Arial"&gt;This cache was&amp;nbsp;hidden for
  533. the first annual "&lt;/font&gt; &lt;a href=
  534. "http://www.geocaching.com/seek/cache_details.aspx?guid=2476befd-408a-4ad2-a99e-76a1bd8e8c39"&gt;
  535. &lt;font face="Arial"&gt;It's Great to See DST!&amp;nbsp; &amp;nbsp;A Breakfast
  536. Event&lt;/font&gt;&lt;/a&gt; &lt;font face="Arial"&gt;".&lt;br /&gt;
  537. &lt;br /&gt;
  538. If you want a quick and easy cache, avoid this one for sure. It
  539. will probably take a long time for you to complete it, especially
  540. if you're by yourself . This cache is best found with a group,
  541. because you'll benefit from their assistance. You've been warned,
  542. so no grousing in your log.&lt;br /&gt;
  543. &lt;br /&gt;
  544. This is our 500th hide, and we thought we'd come up with something
  545. a little crazy to celebrate the event. Sure, this has been done
  546. before, but seldom to this extent. Um... enjoy yourself! Can't wait
  547. til we have 1000 hides!&lt;/font&gt;&lt;/font&gt;</groundspeak:long_description>
  548.       <groundspeak:encoded_hints>
  549.       </groundspeak:encoded_hints>
  550.       <groundspeak:logs>
  551.         <groundspeak:log id="199612120">
  552.           <groundspeak:date>2011-11-19T20:00:00Z</groundspeak:date>
  553.           <groundspeak:type>Found it</groundspeak:type>
  554.           <groundspeak:finder id="946692">LucknJoe</groundspeak:finder>
  555.           <groundspeak:text encoded="False">Ok guys, I used to like you and your hides. I was alone on my bike today &amp; weather was turning nasty. So I decided to only pick one type do a quick search and be prepared to return another day. Got sort of lucky and picked the right type but still took some time to locate the log. Was tempted to use up the whole log and make you come back for maintenance but figured your day will come eventually. TFTH(I think)!</groundspeak:text>
  556.         </groundspeak:log>
  557.         <groundspeak:log id="198078551">
  558.           <groundspeak:date>2011-11-05T19:00:00Z</groundspeak:date>
  559.           <groundspeak:type>Found it</groundspeak:type>
  560.           <groundspeak:finder id="1904304">sunshnface</groundspeak:finder>
  561.           <groundspeak:text encoded="False">This one was the one that we all wanted to set our sights on all day!</groundspeak:text>
  562.         </groundspeak:log>
  563.         <groundspeak:log id="197496427">
  564.           <groundspeak:date>2011-11-05T19:00:00Z</groundspeak:date>
  565.           <groundspeak:type>Found it</groundspeak:type>
  566.           <groundspeak:finder id="1737330">BDKnel</groundspeak:finder>
  567.           <groundspeak:text encoded="False">Yet another Fav of the day.  We took turns saying "I remember this one.....I remember that one."  Looking forward to the MANY more GOJaC hides on my 'bucket list".  Good thing we had a large group. Found with EnPleineAire, BDSmiley, MacWin11SE, Sunshnface, aKiteFlier, WonderWoman821 (and family) and PsychoVW.  SLTFTC
  568.  
  569. This entry was edited by BDKnel on Monday, 07 November 2011 at 03:49:49 UTC.</groundspeak:text>
  570.         </groundspeak:log>
  571.         <groundspeak:log id="197357521">
  572.           <groundspeak:date>2011-11-05T19:00:00Z</groundspeak:date>
  573.           <groundspeak:type>Found it</groundspeak:type>
  574.           <groundspeak:finder id="1536817">EnPleinAire</groundspeak:finder>
  575.           <groundspeak:text encoded="False">Caching with various groups and meeting cachers along the way today on this fun, eventful, georgeous-weather day. GOJAC, thanks for all your creative and humorous hides, and huge congratulations on your 500th hide. We sure had fun here. Can't wait to see what you do for your 1,000th hide. Thanks for the great fun!</groundspeak:text>
  576.         </groundspeak:log>
  577.         <groundspeak:log id="197304676">
  578.           <groundspeak:date>2011-11-05T19:00:00Z</groundspeak:date>
  579.           <groundspeak:type>Found it</groundspeak:type>
  580.           <groundspeak:finder id="2020286">BDSmiley</groundspeak:finder>
  581.           <groundspeak:text encoded="False">Congrats on your 500th hide!  It's a good thing we had 9+ people in our group. :) 1 of 57 finds for me today with BDKnel and EnPleinAire.  The DST events were really great.  We found some real quality caches, met some new cachers, saw some old friends, ate some great food... this is what caching is all about!  TFTC!</groundspeak:text>
  582.         </groundspeak:log>
  583.       </groundspeak:logs>
  584.       <groundspeak:travelbugs />
  585.     </groundspeak:cache>
  586.   </wpt>
  587.   <wpt lat="41.825233" lon="-88.178533">
  588.     <time>2011-05-19T07:00:00Z</time>
  589.     <name>GC2WHQH</name>
  590.     <desc>Scooter's Bolt by Scooter's Dog Spot, Traditional Cache (1.5/1.5)</desc>
  591.     <url>http://www.geocaching.com/seek/cache_details.aspx?guid=237b5c0d-5da4-4881-85df-a02d0afe6965</url>
  592.     <urlname>Scooter's Bolt</urlname>
  593.     <sym>Geocache</sym>
  594.     <type>Geocache|Traditional Cache</type>
  595.     <groundspeak:cache id="2257346" available="True" archived="False" xmlns:groundspeak="http://www.groundspeak.com/cache/1/0">
  596.       <groundspeak:name>Scooter's Bolt</groundspeak:name>
  597.       <groundspeak:placed_by>Scooter's Dog Spot</groundspeak:placed_by>
  598.       <groundspeak:owner id="331172">badlands</groundspeak:owner>
  599.       <groundspeak:type>Traditional Cache</groundspeak:type>
  600.       <groundspeak:container>Micro</groundspeak:container>
  601.       <groundspeak:difficulty>1.5</groundspeak:difficulty>
  602.       <groundspeak:terrain>1.5</groundspeak:terrain>
  603.       <groundspeak:country>United States</groundspeak:country>
  604.       <groundspeak:state>Illinois</groundspeak:state>
  605.       <groundspeak:short_description html="True">
  606.       </groundspeak:short_description>
  607.       <groundspeak:long_description html="True">&lt;center&gt;This cache has been placed in conjunction with an event
  608. hosted by:&lt;br /&gt;
  609. &lt;a href=
  610. "http://www.geocaching.com/profile/?guid=6de9b44a-7e32-4195-ba27-f2a3ae92ec6b&amp;amp;wid=8b330e9a-1265-45f2-80db-0b513eafd898&amp;amp;ds=2"
  611. target="_blank" rel='nofollow'&gt;Dutchlandian&lt;/a&gt;&lt;/center&gt;
  612. &lt;center&gt;&lt;a href="http://coord.info/GC2QDDM" target="_blank" rel=
  613. 'nofollow'&gt;I Scream for a "Dutch Treat"&lt;/a&gt;&lt;/center&gt;
  614. &lt;br /&gt;
  615. &lt;br /&gt;
  616. &lt;br /&gt;
  617. &lt;br /&gt;
  618. &lt;br /&gt;
  619. &lt;br /&gt;
  620. &lt;br /&gt;
  621. &lt;br /&gt;
  622. &lt;br /&gt;
  623. &lt;br /&gt;
  624. &lt;br /&gt;
  625. &lt;br /&gt;
  626. &lt;center&gt;&lt;a rel="nofollow" href="http://www.gonil.org/"&gt;&lt;img src=
  627. "http://www.gonil.org/i/m/m_gonil_3_1.jpg" /&gt;&lt;/a&gt;&lt;/center&gt;
  628. &lt;center&gt;Geocachers of Northeastern Illinois&lt;/center&gt;
  629. Geocachers of Northeastern Illinois</groundspeak:long_description>
  630.       <groundspeak:encoded_hints>
  631.       </groundspeak:encoded_hints>
  632.       <groundspeak:logs>
  633.         <groundspeak:log id="197914405">
  634.           <groundspeak:date>2011-11-05T19:00:00Z</groundspeak:date>
  635.           <groundspeak:type>Found it</groundspeak:type>
  636.           <groundspeak:finder id="119759">katguy</groundspeak:finder>
  637.           <groundspeak:text encoded="False">Found this container while exploring with caching buddy Odyn, who had the sharp eye and spotted it first.   Thanks for the cache and visit to this spot.</groundspeak:text>
  638.         </groundspeak:log>
  639.         <groundspeak:log id="197751602">
  640.           <groundspeak:date>2011-11-05T19:00:00Z</groundspeak:date>
  641.           <groundspeak:type>Found it</groundspeak:type>
  642.           <groundspeak:finder id="60384">Odyn</groundspeak:finder>
  643.           <groundspeak:text encoded="False">Had a good time caching in the area with Katguy. We attended two events, ran into several cachers on the trail, and found some nice caches.  Spotted this cute cache right away.  Thanks for the hide.</groundspeak:text>
  644.         </groundspeak:log>
  645.         <groundspeak:log id="195322477">
  646.           <groundspeak:date>2011-10-28T19:00:00Z</groundspeak:date>
  647.           <groundspeak:type>Found it</groundspeak:type>
  648.           <groundspeak:finder id="5101959">WhoIsJenGalt</groundspeak:finder>
  649.           <groundspeak:text encoded="False">Brought my 4yr old with.  Took the toy spider and left a little trinket.  I didn't see any sign of the trackable though - possibly it was picked up and not logged?</groundspeak:text>
  650.         </groundspeak:log>
  651.         <groundspeak:log id="189629976">
  652.           <groundspeak:date>2011-09-30T07:00:00Z</groundspeak:date>
  653.           <groundspeak:type>Found it</groundspeak:type>
  654.           <groundspeak:finder id="5073639">nihilistic nick</groundspeak:finder>
  655.           <groundspeak:text encoded="False">Out with my rugrats quick pick up... "dad we found treasure! "</groundspeak:text>
  656.         </groundspeak:log>
  657.         <groundspeak:log id="189750680">
  658.           <groundspeak:date>2011-09-24T19:00:00Z</groundspeak:date>
  659.           <groundspeak:type>Found it</groundspeak:type>
  660.           <groundspeak:finder id="2842347">meltricia</groundspeak:finder>
  661.           <groundspeak:text encoded="False">TFTC Out with our Boyscout troop on a hike and found this one.</groundspeak:text>
  662.         </groundspeak:log>
  663.       </groundspeak:logs>
  664.       <groundspeak:travelbugs>
  665.         <groundspeak:travelbug id="3491188" ref="TB46ZMX">
  666.           <groundspeak:name>Cache &amp; Nemo's GeckoTravel Tag</groundspeak:name>
  667.         </groundspeak:travelbug>
  668.       </groundspeak:travelbugs>
  669.     </groundspeak:cache>
  670.   </wpt>
  671.   <wpt lat="41.817417" lon="-88.171583">
  672.     <time>2011-07-01T07:00:00Z</time>
  673.     <name>GC2Z9P0</name>
  674.     <desc>Pizza, Pizza, Pizza by Kerstin-cachers, Traditional Cache (2.5/2.5)</desc>
  675.     <url>http://www.geocaching.com/seek/cache_details.aspx?guid=ce61ccdc-efc4-47d5-9069-15c2e444d340</url>
  676.     <urlname>Pizza, Pizza, Pizza</urlname>
  677.     <sym>Geocache</sym>
  678.     <type>Geocache|Traditional Cache</type>
  679.     <groundspeak:cache id="2338983" available="True" archived="False" xmlns:groundspeak="http://www.groundspeak.com/cache/1/0">
  680.       <groundspeak:name>Pizza, Pizza, Pizza</groundspeak:name>
  681.       <groundspeak:placed_by>Kerstin-cachers</groundspeak:placed_by>
  682.       <groundspeak:owner id="3134525">Kerstin-cachers</groundspeak:owner>
  683.       <groundspeak:type>Traditional Cache</groundspeak:type>
  684.       <groundspeak:container>Micro</groundspeak:container>
  685.       <groundspeak:difficulty>2.5</groundspeak:difficulty>
  686.       <groundspeak:terrain>2.5</groundspeak:terrain>
  687.       <groundspeak:country>United States</groundspeak:country>
  688.       <groundspeak:state>Illinois</groundspeak:state>
  689.       <groundspeak:short_description html="False">Located near one of our favorite places.  We are here so often, just had to hide a cache here. 
  690. Bring your own pen.</groundspeak:short_description>
  691.       <groundspeak:long_description html="False">
  692.       </groundspeak:long_description>
  693.       <groundspeak:encoded_hints>After large rains you may get wet.</groundspeak:encoded_hints>
  694.       <groundspeak:logs>
  695.         <groundspeak:log id="197914404">
  696.           <groundspeak:date>2011-11-05T19:00:00Z</groundspeak:date>
  697.           <groundspeak:type>Found it</groundspeak:type>
  698.           <groundspeak:finder id="119759">katguy</groundspeak:finder>
  699.           <groundspeak:text encoded="False">Today found us pussyfooting around the Aurora area where my pal Odyn and I stopped to pin down this Kerstin-cachers stash.  Thanks for the fun and the cache.</groundspeak:text>
  700.         </groundspeak:log>
  701.         <groundspeak:log id="197677595">
  702.           <groundspeak:date>2011-11-05T19:00:00Z</groundspeak:date>
  703.           <groundspeak:type>Found it</groundspeak:type>
  704.           <groundspeak:finder id="60384">Odyn</groundspeak:finder>
  705.           <groundspeak:text encoded="False">Had a good time caching in the area with Katguy. We attended two events and ran into several cachers on the trail. I was expecting a Little Ceasars, but found a nice cache instead.  Really liked the way you hide this one. Thanks for the hide.</groundspeak:text>
  706.         </groundspeak:log>
  707.         <groundspeak:log id="196389541">
  708.           <groundspeak:date>2011-11-01T19:00:00Z</groundspeak:date>
  709.           <groundspeak:type>Found it</groundspeak:type>
  710.           <groundspeak:finder id="2287669">Nemo29 &amp; Cache LaRue</groundspeak:finder>
  711.           <groundspeak:text encoded="False">Very clever! Thanks for the fun hide.</groundspeak:text>
  712.         </groundspeak:log>
  713.         <groundspeak:log id="190994045">
  714.           <groundspeak:date>2011-10-06T19:00:00Z</groundspeak:date>
  715.           <groundspeak:type>Found it</groundspeak:type>
  716.           <groundspeak:finder id="736592">Tbern</groundspeak:finder>
  717.           <groundspeak:text encoded="False">Had a lot of time waiting for the car to get fixed, so I thought I'd take a look. Great hide! Thanks for the cache!</groundspeak:text>
  718.         </groundspeak:log>
  719.         <groundspeak:log id="184346182">
  720.           <groundspeak:date>2011-09-03T19:00:00Z</groundspeak:date>
  721.           <groundspeak:type>Found it</groundspeak:type>
  722.           <groundspeak:finder id="245775">Cindermouse</groundspeak:finder>
  723.           <groundspeak:text encoded="False">Hate todo this aftera hard rain. Cute idea.</groundspeak:text>
  724.         </groundspeak:log>
  725.       </groundspeak:logs>
  726.       <groundspeak:travelbugs />
  727.     </groundspeak:cache>
  728.   </wpt>
  729.   <wpt lat="41.7831" lon="-88.20865">
  730.     <time>2011-03-03T08:00:00Z</time>
  731.     <name>GC2PMGC</name>
  732.     <desc>Retention Ponds by koey10, Multi-cache (2/2)</desc>
  733.     <url>http://www.geocaching.com/seek/cache_details.aspx?guid=d2c3897b-68d9-4a3e-b1b0-68d33520e743</url>
  734.     <urlname>Retention Ponds</urlname>
  735.     <sym>Geocache</sym>
  736.     <type>Geocache|Multi-cache</type>
  737.     <groundspeak:cache id="2111052" available="True" archived="False" xmlns:groundspeak="http://www.groundspeak.com/cache/1/0">
  738.       <groundspeak:name>Retention Ponds</groundspeak:name>
  739.       <groundspeak:placed_by>koey10</groundspeak:placed_by>
  740.       <groundspeak:owner id="3831018">koey10</groundspeak:owner>
  741.       <groundspeak:type>Multi-cache</groundspeak:type>
  742.       <groundspeak:container>Micro</groundspeak:container>
  743.       <groundspeak:difficulty>2</groundspeak:difficulty>
  744.       <groundspeak:terrain>2</groundspeak:terrain>
  745.       <groundspeak:country>United States</groundspeak:country>
  746.       <groundspeak:state>Illinois</groundspeak:state>
  747.       <groundspeak:short_description html="False">This is a two stage multi.  Stage one, posted coordinates, contains the coordinates for the final which is within walking distance.  Both stages are camoed bison tubes hanging in trees.  Please replace on the holders provided.</groundspeak:short_description>
  748.       <groundspeak:long_description html="False">Retention Ponds:
  749. When a natural area is disturbed or developed, the rate at which stormwater from the site runs off changes.  To prevent flooding downstream, the stormwater is delivered to an area that can retain the water and then release it.  The release of this water is controlled as to not increase the runoff rate from the original undisturbed site.  They also provide an opportunity to improve the water quality by filtering out debris before it reaches the downstream creek, stream, river, or lake.  Properly designed retention ponds accomplish these goals.  Because these retention areas “take up space” they are designed to fit in any available “wasted” space, thus the pretty geometric shaped ponds seen in this multi.  
  750. Hope you enjoy the dumbed down explanation of retention ponds.
  751.  
  752. Additional Waypoints
  753. </groundspeak:long_description>
  754.       <groundspeak:encoded_hints>Both stages: West side of a pine tree, eye level, near trunk</groundspeak:encoded_hints>
  755.       <groundspeak:logs>
  756.         <groundspeak:log id="199266736">
  757.           <groundspeak:date>2011-11-16T20:00:00Z</groundspeak:date>
  758.           <groundspeak:type>Write note</groundspeak:type>
  759.           <groundspeak:finder id="3831018">koey10</groundspeak:finder>
  760.           <groundspeak:text encoded="False">I was in the area and decided to check on the final.  It is there.  Same hide as Stage 1 and the hint is still valid.  It does blend in pretty well.  Thanks to all who have hunted this, I love to see the logs.</groundspeak:text>
  761.         </groundspeak:log>
  762.         <groundspeak:log id="198810777">
  763.           <groundspeak:date>2011-11-13T20:00:00Z</groundspeak:date>
  764.           <groundspeak:type>Didn't find it</groundspeak:type>
  765.           <groundspeak:finder id="537286">Siamese Retriever</groundspeak:finder>
  766.           <groundspeak:text encoded="False">11/13/2011 16:37 DNF: Stage 1 - check.  Found it pretty quickly, actually.  Stage 2 - Nope.  I reparked after stage 1, got some water and a flu shot.  Not something I do every time I cache, thankfully!  I looked for stage 2 for a few minutes, and checked three spots several times each.  Then I realized that the weather was not going to be this nice for much longer, and that I could always come back for this one.  So, I will be back!</groundspeak:text>
  767.         </groundspeak:log>
  768.         <groundspeak:log id="197929357">
  769.           <groundspeak:date>2011-11-09T20:00:00Z</groundspeak:date>
  770.           <groundspeak:type>Found it</groundspeak:type>
  771.           <groundspeak:finder id="3902783">superior o</groundspeak:finder>
  772.           <groundspeak:text encoded="False">i was looking in the right place. was on the phone with Ed from dnfu. got a little hint then made the find before we were even off the phone.</groundspeak:text>
  773.         </groundspeak:log>
  774.         <groundspeak:log id="197544260">
  775.           <groundspeak:date>2011-11-05T19:00:00Z</groundspeak:date>
  776.           <groundspeak:type>Found it</groundspeak:type>
  777.           <groundspeak:finder id="4226231">tblazek756</groundspeak:finder>
  778.           <groundspeak:text encoded="False">found with luvtwingle today on a nice day one of a few TFTC</groundspeak:text>
  779.         </groundspeak:log>
  780.         <groundspeak:log id="197501552">
  781.           <groundspeak:date>2011-11-05T19:00:00Z</groundspeak:date>
  782.           <groundspeak:type>Found it</groundspeak:type>
  783.           <groundspeak:finder id="1811721">luvtwingle</groundspeak:finder>
  784.           <groundspeak:text encoded="False">Out with tblazek756 for a full day of caching in the Aurora\Naperville area bookended by two events. This cache we found on the way to the first event.  Parked nearby and off we went and found stage one quickly and took a few minutes to find the final.</groundspeak:text>
  785.         </groundspeak:log>
  786.       </groundspeak:logs>
  787.       <groundspeak:travelbugs />
  788.     </groundspeak:cache>
  789.   </wpt>
  790.   <wpt lat="41.802067" lon="-88.243467">
  791.     <time>2011-02-26T08:00:00Z</time>
  792.     <name>GC2PDHJ</name>
  793.     <desc>Deer Me! by G.O. John and Carol, Traditional Cache (1/1.5)</desc>
  794.     <url>http://www.geocaching.com/seek/cache_details.aspx?guid=c397c541-504f-4899-9ba2-4d87d6a04336</url>
  795.     <urlname>Deer Me!</urlname>
  796.     <sym>Geocache</sym>
  797.     <type>Geocache|Traditional Cache</type>
  798.     <groundspeak:cache id="2104362" available="True" archived="False" xmlns:groundspeak="http://www.groundspeak.com/cache/1/0">
  799.       <groundspeak:name>Deer Me!</groundspeak:name>
  800.       <groundspeak:placed_by>G.O. John and Carol</groundspeak:placed_by>
  801.       <groundspeak:owner id="235754">G.O. John and Carol</groundspeak:owner>
  802.       <groundspeak:type>Traditional Cache</groundspeak:type>
  803.       <groundspeak:container>Micro</groundspeak:container>
  804.       <groundspeak:difficulty>1</groundspeak:difficulty>
  805.       <groundspeak:terrain>1.5</groundspeak:terrain>
  806.       <groundspeak:country>United States</groundspeak:country>
  807.       <groundspeak:state>Illinois</groundspeak:state>
  808.       <groundspeak:short_description html="True">
  809.       </groundspeak:short_description>
  810.       <groundspeak:long_description html="True">&lt;font size="4"&gt;&lt;font face="Arial"&gt;This cache was&amp;nbsp;hidden for
  811. the first annual "&lt;/font&gt; &lt;a href=
  812. "http://www.geocaching.com/seek/cache_details.aspx?guid=2476befd-408a-4ad2-a99e-76a1bd8e8c39"&gt;
  813. &lt;font face="Arial"&gt;It's Great to See DST!&amp;nbsp; &amp;nbsp;A Breakfast
  814. Event&lt;/font&gt;&lt;/a&gt; &lt;font face="Arial"&gt;".&lt;br /&gt;
  815. &lt;br /&gt;
  816. &lt;b&gt;DO NOT TRY TO ACCESS THE CACHE FROM THE TOLLWAY! YOU MUST ACCESS
  817. IT FROM THE BIKE TRAIL!!!&lt;/b&gt;&lt;br /&gt;
  818. &lt;br /&gt;
  819. A bit of a walk or a short bike ride, but nothing real special
  820. here. Just a preform along the trail.&lt;/font&gt;&lt;/font&gt;</groundspeak:long_description>
  821.       <groundspeak:encoded_hints>
  822.       </groundspeak:encoded_hints>
  823.       <groundspeak:logs>
  824.         <groundspeak:log id="198548713">
  825.           <groundspeak:date>2011-11-12T20:00:00Z</groundspeak:date>
  826.           <groundspeak:type>Found it</groundspeak:type>
  827.           <groundspeak:finder id="2318675">cubdad7</groundspeak:finder>
  828.           <groundspeak:text encoded="False">walked right up to this one. log is wet. i would suggest to the CO, to mount the cache with the cap up so rain doesn't collect in it.
  829. sl tftc</groundspeak:text>
  830.         </groundspeak:log>
  831.         <groundspeak:log id="197917571">
  832.           <groundspeak:date>2011-11-10T03:34:50Z</groundspeak:date>
  833.           <groundspeak:type>Found it</groundspeak:type>
  834.           <groundspeak:finder id="5153368">chirpythegecko</groundspeak:finder>
  835.           <groundspeak:text encoded="False">I'm guessing someone opened this in the rain a few months ago and the soggy log has not been able to dry out in the sealed container.  Its starting to fall apart, but we were able to sign it and gingerly slide it back in. No time to let it dry. Sorry.</groundspeak:text>
  836.         </groundspeak:log>
  837.         <groundspeak:log id="197929114">
  838.           <groundspeak:date>2011-11-09T20:00:00Z</groundspeak:date>
  839.           <groundspeak:type>Found it</groundspeak:type>
  840.           <groundspeak:finder id="3902783">superior o</groundspeak:finder>
  841.           <groundspeak:text encoded="False">very windy and cold. finally feels like november weather.</groundspeak:text>
  842.         </groundspeak:log>
  843.         <groundspeak:log id="197915558">
  844.           <groundspeak:date>2011-11-09T20:00:00Z</groundspeak:date>
  845.           <groundspeak:type>Found it</groundspeak:type>
  846.           <groundspeak:finder id="2714879">dnfu</groundspeak:finder>
  847.           <groundspeak:text encoded="False">Came out after work today with a couple of friends for a quick, frigid cache run.  I always admire a cache whose title is so perfect we didn't even look at the GPSR!</groundspeak:text>
  848.         </groundspeak:log>
  849.         <groundspeak:log id="190243218">
  850.           <groundspeak:date>2011-10-02T19:00:00Z</groundspeak:date>
  851.           <groundspeak:type>Found it</groundspeak:type>
  852.           <groundspeak:finder id="1295103">goinkers</groundspeak:finder>
  853.           <groundspeak:text encoded="False">#1 Son made the initial spot and despite the dampness, we unrolled enough of the log to add our inkstain.</groundspeak:text>
  854.         </groundspeak:log>
  855.       </groundspeak:logs>
  856.       <groundspeak:travelbugs />
  857.     </groundspeak:cache>
  858.   </wpt>
  859.   <wpt lat="41.803917" lon="-88.244367">
  860.     <time>2011-03-03T08:00:00Z</time>
  861.     <name>GC2PDHW</name>
  862.     <desc>Caching Can Also Take a Toll by G.O. John and Carol, Traditional Cache (1/1.5)</desc>
  863.     <url>http://www.geocaching.com/seek/cache_details.aspx?guid=e55e2571-4284-41e7-8534-5b4d5fd96118</url>
  864.     <urlname>Caching Can Also Take a Toll</urlname>
  865.     <sym>Geocache</sym>
  866.     <type>Geocache|Traditional Cache</type>
  867.     <groundspeak:cache id="2104371" available="True" archived="False" xmlns:groundspeak="http://www.groundspeak.com/cache/1/0">
  868.       <groundspeak:name>Caching Can Also Take a Toll</groundspeak:name>
  869.       <groundspeak:placed_by>G.O. John and Carol</groundspeak:placed_by>
  870.       <groundspeak:owner id="235754">G.O. John and Carol</groundspeak:owner>
  871.       <groundspeak:type>Traditional Cache</groundspeak:type>
  872.       <groundspeak:container>Micro</groundspeak:container>
  873.       <groundspeak:difficulty>1</groundspeak:difficulty>
  874.       <groundspeak:terrain>1.5</groundspeak:terrain>
  875.       <groundspeak:country>United States</groundspeak:country>
  876.       <groundspeak:state>Illinois</groundspeak:state>
  877.       <groundspeak:short_description html="True">
  878.       </groundspeak:short_description>
  879.       <groundspeak:long_description html="True">&lt;font size="4"&gt;&lt;font face="Arial"&gt;This cache was&amp;nbsp;hidden for
  880. the first annual "&lt;/font&gt; &lt;a href=
  881. "http://www.geocaching.com/seek/cache_details.aspx?guid=2476befd-408a-4ad2-a99e-76a1bd8e8c39"&gt;
  882. &lt;font face="Arial"&gt;It's Great to See DST!&amp;nbsp; &amp;nbsp;A Breakfast
  883. Event&lt;/font&gt;&lt;/a&gt; &lt;font face="Arial"&gt;".&lt;br /&gt;
  884. &lt;br /&gt;
  885. &lt;b&gt;You've got to get this one from the Prairie Path! Trying to get
  886. it from the tollway would be foolish!&lt;/b&gt;&lt;br /&gt;
  887. &lt;br /&gt;
  888. You'll have to walk or ride a little to reach the cache site, but
  889. once there, you won't have any problem finding this micro. This
  890. hide shouldn't take too much of a toll on you.&lt;/font&gt;&lt;/font&gt;</groundspeak:long_description>
  891.       <groundspeak:encoded_hints>
  892.       </groundspeak:encoded_hints>
  893.       <groundspeak:logs>
  894.         <groundspeak:log id="198549103">
  895.           <groundspeak:date>2011-11-12T20:00:00Z</groundspeak:date>
  896.           <groundspeak:type>Found it</groundspeak:type>
  897.           <groundspeak:finder id="2318675">cubdad7</groundspeak:finder>
  898.           <groundspeak:text encoded="False">another quick find with the same results. wet log.
  899. cache needs to be hung the other side up.
  900. sl tftc</groundspeak:text>
  901.         </groundspeak:log>
  902.         <groundspeak:log id="197917786">
  903.           <groundspeak:date>2011-11-10T03:42:14Z</groundspeak:date>
  904.           <groundspeak:type>Found it</groundspeak:type>
  905.           <groundspeak:finder id="5153368">chirpythegecko</groundspeak:finder>
  906.           <groundspeak:text encoded="False">Like "deer me" this log desperately needs a few hours in the sun to dry out. I do like this hiding spot though. Thanks</groundspeak:text>
  907.         </groundspeak:log>
  908.         <groundspeak:log id="197929151">
  909.           <groundspeak:date>2011-11-09T20:00:00Z</groundspeak:date>
  910.           <groundspeak:type>Found it</groundspeak:type>
  911.           <groundspeak:finder id="3902783">superior o</groundspeak:finder>
  912.           <groundspeak:text encoded="False">almost 7:00pm. gonna start work at 8:00pm. aw crap.</groundspeak:text>
  913.         </groundspeak:log>
  914.         <groundspeak:log id="197916125">
  915.           <groundspeak:date>2011-11-09T20:00:00Z</groundspeak:date>
  916.           <groundspeak:type>Found it</groundspeak:type>
  917.           <groundspeak:finder id="2714879">dnfu</groundspeak:finder>
  918.           <groundspeak:text encoded="False">I actually walked right by this (and probably a whole bunch of other caches) after work yesterday on a nice 2 hour walk to Batavia to retrieve my car from my mechanic.  
  919. I came back after work today with a couple of friends to make a few quick grabs along the same path.  Thanks!</groundspeak:text>
  920.         </groundspeak:log>
  921.         <groundspeak:log id="190243588">
  922.           <groundspeak:date>2011-10-02T19:00:00Z</groundspeak:date>
  923.           <groundspeak:type>Found it</groundspeak:type>
  924.           <groundspeak:finder id="1295103">goinkers</groundspeak:finder>
  925.           <groundspeak:text encoded="False">Pops saw this one, but unlike "Deer Me" this log was too wet to extract without damaging it.  Containers and hide style would seem to argue against these getting wet but they are.</groundspeak:text>
  926.         </groundspeak:log>
  927.       </groundspeak:logs>
  928.       <groundspeak:travelbugs />
  929.     </groundspeak:cache>
  930.   </wpt>
  931.   <wpt lat="41.7897" lon="-88.232717">
  932.     <time>2011-10-07T07:00:00Z</time>
  933.     <name>GC35H5V</name>
  934.     <desc>GOJAC's Pivotal Cache by G.O. John and Carol, Traditional Cache (1.5/1.5)</desc>
  935.     <url>http://www.geocaching.com/seek/cache_details.aspx?guid=6a348c62-7dae-48ce-94c4-37ae26b6af12</url>
  936.     <urlname>GOJAC's Pivotal Cache</urlname>
  937.     <sym>Geocache</sym>
  938.     <type>Geocache|Traditional Cache</type>
  939.     <groundspeak:cache id="2524916" available="True" archived="False" xmlns:groundspeak="http://www.groundspeak.com/cache/1/0">
  940.       <groundspeak:name>GOJAC's Pivotal Cache</groundspeak:name>
  941.       <groundspeak:placed_by>G.O. John and Carol</groundspeak:placed_by>
  942.       <groundspeak:owner id="235754">G.O. John and Carol</groundspeak:owner>
  943.       <groundspeak:type>Traditional Cache</groundspeak:type>
  944.       <groundspeak:container>Micro</groundspeak:container>
  945.       <groundspeak:difficulty>1.5</groundspeak:difficulty>
  946.       <groundspeak:terrain>1.5</groundspeak:terrain>
  947.       <groundspeak:country>United States</groundspeak:country>
  948.       <groundspeak:state>Illinois</groundspeak:state>
  949.       <groundspeak:short_description html="True">Please access this cache from the park to the south of the school
  950. grounds. The park and school are separated by a chain link fence.</groundspeak:short_description>
  951.       <groundspeak:long_description html="True">&lt;p align="center"&gt;&lt;font size="4" face="Arial"&gt;This cache was hidden
  952. for the following 2 events:&lt;br /&gt;
  953. &lt;a href=
  954. "http://www.geocaching.com/seek/cache_details.aspx?guid=d4e3d2a1-058b-4f88-9ef8-014235194400"&gt;
  955. &lt;font color="#0066CC"&gt;Please Don't Leave, DST! A Breakfast
  956. Event&lt;br /&gt;&lt;/font&gt;&lt;/a&gt;and Moodygrrl's follow up event&lt;br /&gt;
  957. &lt;a href=
  958. "http://www.geocaching.com/seek/cache_details.aspx?wp=GC33NYG"&gt;&lt;font color="#0066CC"&gt;
  959. "Fall Back"... Into Caching&lt;/font&gt;&lt;/a&gt;&lt;/font&gt;&lt;/p&gt;
  960. &lt;p align="left"&gt;&lt;font size="4" face="Arial"&gt;&lt;br /&gt;
  961. I can't stress how important it is for you to find this pivotal
  962. cache!&amp;nbsp; &lt;font color=
  963. "#FF0000"&gt;&lt;strong&gt;&lt;em&gt;&lt;u&gt;Everything&lt;/u&gt;&lt;/em&gt;&lt;/strong&gt;&lt;/font&gt;
  964. &lt;font color="#000000"&gt;depends on it!&amp;nbsp; If you fail, then I'm
  965. not sure what might happen!!&amp;nbsp; Please go find this cache
  966. right&amp;nbsp; &lt;font color=
  967. "#FF0000"&gt;&lt;strong&gt;&lt;u&gt;&lt;em&gt;NOW&lt;/em&gt;&lt;/u&gt;&lt;/strong&gt;&lt;/font&gt; !&lt;br /&gt;
  968. &lt;br /&gt;
  969. Why are you still reading?&amp;nbsp; I asked you to find the cache
  970. NOW!&lt;/font&gt;&lt;/font&gt;&lt;/p&gt;</groundspeak:long_description>
  971.       <groundspeak:encoded_hints>
  972.       </groundspeak:encoded_hints>
  973.       <groundspeak:logs>
  974.         <groundspeak:log id="198809045">
  975.           <groundspeak:date>2011-11-13T20:00:00Z</groundspeak:date>
  976.           <groundspeak:type>Found it</groundspeak:type>
  977.           <groundspeak:finder id="93109">Lindave</groundspeak:finder>
  978.           <groundspeak:text encoded="False">Dang it we messed up and now we'll never know what could happen just cuz we found it, oh well. Thanks...Lindave</groundspeak:text>
  979.         </groundspeak:log>
  980.         <groundspeak:log id="198546433">
  981.           <groundspeak:date>2011-11-12T20:00:00Z</groundspeak:date>
  982.           <groundspeak:type>Found it</groundspeak:type>
  983.           <groundspeak:finder id="2318675">cubdad7</groundspeak:finder>
  984.           <groundspeak:text encoded="False">numbers are right on for this one. typical gojac hide. nice as always.
  985. sl tftc</groundspeak:text>
  986.         </groundspeak:log>
  987.         <groundspeak:log id="197916562">
  988.           <groundspeak:date>2011-11-10T03:17:33Z</groundspeak:date>
  989.           <groundspeak:type>Found it</groundspeak:type>
  990.           <groundspeak:finder id="5153368">chirpythegecko</groundspeak:finder>
  991.           <groundspeak:text encoded="False">This is definitely the most pivotal cash I've ever found. Thanks</groundspeak:text>
  992.         </groundspeak:log>
  993.         <groundspeak:log id="197915585">
  994.           <groundspeak:date>2011-11-10T03:10:06Z</groundspeak:date>
  995.           <groundspeak:type>Enable Listing</groundspeak:type>
  996.           <groundspeak:finder id="235754">G.O. John and Carol</groundspeak:finder>
  997.           <groundspeak:text encoded="False">It's there to be found.</groundspeak:text>
  998.         </groundspeak:log>
  999.         <groundspeak:log id="197929262">
  1000.           <groundspeak:date>2011-11-09T20:00:00Z</groundspeak:date>
  1001.           <groundspeak:type>Found it</groundspeak:type>
  1002.           <groundspeak:finder id="3902783">superior o</groundspeak:finder>
  1003.           <groundspeak:text encoded="False">i do not think this cache was pivotal enough for me. i guess i am just trouble.</groundspeak:text>
  1004.         </groundspeak:log>
  1005.       </groundspeak:logs>
  1006.       <groundspeak:travelbugs />
  1007.     </groundspeak:cache>
  1008.   </wpt>
  1009.   <wpt lat="41.786967" lon="-88.177267">
  1010.     <time>2010-10-24T07:00:00Z</time>
  1011.     <name>GC2H81B</name>
  1012.     <desc>Look Again by Team Sukie, Traditional Cache (3/2)</desc>
  1013.     <url>http://www.geocaching.com/seek/cache_details.aspx?guid=983b28aa-5dcf-438e-b13f-d746463cb6ef</url>
  1014.     <urlname>Look Again</urlname>
  1015.     <sym>Geocache</sym>
  1016.     <type>Geocache|Traditional Cache</type>
  1017.     <groundspeak:cache id="1950099" available="True" archived="False" xmlns:groundspeak="http://www.groundspeak.com/cache/1/0">
  1018.       <groundspeak:name>Look Again</groundspeak:name>
  1019.       <groundspeak:placed_by>Team Sukie</groundspeak:placed_by>
  1020.       <groundspeak:owner id="2178108">Team Sukie</groundspeak:owner>
  1021.       <groundspeak:type>Traditional Cache</groundspeak:type>
  1022.       <groundspeak:container>Micro</groundspeak:container>
  1023.       <groundspeak:difficulty>3</groundspeak:difficulty>
  1024.       <groundspeak:terrain>2</groundspeak:terrain>
  1025.       <groundspeak:country>United States</groundspeak:country>
  1026.       <groundspeak:state>Illinois</groundspeak:state>
  1027.       <groundspeak:short_description html="False">
  1028.       </groundspeak:short_description>
  1029.       <groundspeak:long_description html="False">Just finished an excellent novel, Look Again, by Lisa Scottoline and I thought that would be an appropriate name for this cache. 
  1030.  
  1031. This is a very nice park for hiking and kayaking or canoeing. Nice paths from either the main parking area for McDowell Grove or from the parking location until you get within 50' of the cache. BYOP
  1032.  
  1033. Legal Stuff
  1034. Thanks to DuPage County Forest Preserve Ranger, Christina, for approving this hide.
  1035. 1. This Geocache is placed on DuPage County Forest Preserve property with permission. Permit number 257.
  1036. 2. Do not place the following items in the Geocache: Food items, inappropriate, offensive, or hazardous materials.
  1037. 3. DuPage County Forest Preserve hours are 1 hour after sunrise until 1 hour after sunset. Preserve users must not be in the preserves after hours.
  1038. 4. It is the visitor’s responsibility to be aware of the policies and rules pertaining to this preserve. For more information on preserve rules, see the information kiosk in the parking lot of the preserve or contact Visitor Services at (630) 933-7248.
  1039.  
  1040. Congratulations to rorokili on the FTF.
  1041.  
  1042. Additional Waypoints
  1043. PK2H81B - GC2H81B Parking
  1044. N 41° 47.035 W 088° 10.813
  1045.  
  1046. </groundspeak:long_description>
  1047.       <groundspeak:encoded_hints>
  1048.       </groundspeak:encoded_hints>
  1049.       <groundspeak:logs>
  1050.         <groundspeak:log id="194091017">
  1051.           <groundspeak:date>2011-10-22T19:00:00Z</groundspeak:date>
  1052.           <groundspeak:type>Found it</groundspeak:type>
  1053.           <groundspeak:finder id="4850971">ScorpiFish</groundspeak:finder>
  1054.           <groundspeak:text encoded="False">Loved it!  Favorite point!!</groundspeak:text>
  1055.         </groundspeak:log>
  1056.         <groundspeak:log id="188470428">
  1057.           <groundspeak:date>2011-09-25T03:24:39Z</groundspeak:date>
  1058.           <groundspeak:type>Found it</groundspeak:type>
  1059.           <groundspeak:finder id="5065206">LWoj717</groundspeak:finder>
  1060.           <groundspeak:text encoded="False">We found it (finally!!), but it needs maintenance. The cap of the container is missing... the paper is wet and stuck in the container.</groundspeak:text>
  1061.         </groundspeak:log>
  1062.         <groundspeak:log id="179842673">
  1063.           <groundspeak:date>2011-08-14T19:00:00Z</groundspeak:date>
  1064.           <groundspeak:type>Write note</groundspeak:type>
  1065.           <groundspeak:finder id="2060850">ihssenr</groundspeak:finder>
  1066.           <groundspeak:text encoded="False">Found the decoy, and the letterbox nearby, but no cache. Might want to check it and see if it is still there.</groundspeak:text>
  1067.         </groundspeak:log>
  1068.         <groundspeak:log id="164773725">
  1069.           <groundspeak:date>2011-06-04T19:00:00Z</groundspeak:date>
  1070.           <groundspeak:type>Didn't find it</groundspeak:type>
  1071.           <groundspeak:finder id="3266170">MrandMrsR</groundspeak:finder>
  1072.           <groundspeak:text encoded="False">Unable to find. Wear bug spray!</groundspeak:text>
  1073.         </groundspeak:log>
  1074.         <groundspeak:log id="160460564">
  1075.           <groundspeak:date>2011-05-12T19:00:00Z</groundspeak:date>
  1076.           <groundspeak:type>Found it</groundspeak:type>
  1077.           <groundspeak:finder id="2458905">sgauss</groundspeak:finder>
  1078.           <groundspeak:text encoded="False">Headed over here this everning.  Got to gz and checked the obvious spot with the expected result.  Wasn't sure what I was looking for, so I expanded the search.  I found a letterbox hidden in the area, but still no cache.  Did some more checking and followed up a hunch to make the find.  Phew - needed a cache without an 'e' in the name!  Thanks for the cache!</groundspeak:text>
  1079.         </groundspeak:log>
  1080.       </groundspeak:logs>
  1081.       <groundspeak:travelbugs />
  1082.     </groundspeak:cache>
  1083.   </wpt>
  1084.   <wpt lat="41.784867" lon="-88.23435">
  1085.     <time>2011-10-07T07:00:00Z</time>
  1086.     <name>GC35H57</name>
  1087.     <desc>Beyond the Land of the Ne'er Do Wells by G.O. John and Carol, Traditional Cache (1.5/2)</desc>
  1088.     <url>http://www.geocaching.com/seek/cache_details.aspx?guid=0065adb0-52bf-492f-bcd8-2ef2855e9213</url>
  1089.     <urlname>Beyond the Land of the Ne'er Do Wells</urlname>
  1090.     <sym>Geocache</sym>
  1091.     <type>Geocache|Traditional Cache</type>
  1092.     <groundspeak:cache id="2524897" available="True" archived="False" xmlns:groundspeak="http://www.groundspeak.com/cache/1/0">
  1093.       <groundspeak:name>Beyond the Land of the Ne'er Do Wells</groundspeak:name>
  1094.       <groundspeak:placed_by>G.O. John and Carol</groundspeak:placed_by>
  1095.       <groundspeak:owner id="235754">G.O. John and Carol</groundspeak:owner>
  1096.       <groundspeak:type>Traditional Cache</groundspeak:type>
  1097.       <groundspeak:container>Regular</groundspeak:container>
  1098.       <groundspeak:difficulty>1.5</groundspeak:difficulty>
  1099.       <groundspeak:terrain>2</groundspeak:terrain>
  1100.       <groundspeak:country>United States</groundspeak:country>
  1101.       <groundspeak:state>Illinois</groundspeak:state>
  1102.       <groundspeak:short_description html="True">
  1103.       </groundspeak:short_description>
  1104.       <groundspeak:long_description html="True">&lt;p align="center"&gt;&lt;font size="4" face="Arial"&gt;This cache was hidden
  1105. for the following 2 events:&lt;br /&gt;
  1106. &lt;a href=
  1107. "http://www.geocaching.com/seek/cache_details.aspx?guid=d4e3d2a1-058b-4f88-9ef8-014235194400"&gt;
  1108. &lt;font color="#0066CC"&gt;Please Don't Leave, DST! A Breakfast
  1109. Event&lt;br /&gt;&lt;/font&gt;&lt;/a&gt;and Moodygrrl's follow up event&lt;br /&gt;
  1110. &lt;a href=
  1111. "http://www.geocaching.com/seek/cache_details.aspx?wp=GC33NYG"&gt;&lt;font color="#0066CC"&gt;
  1112. "Fall Back"... Into Caching&lt;/font&gt;&lt;/a&gt;&lt;/font&gt;&lt;/p&gt;
  1113. &lt;p align="left"&gt;&lt;font size="4" face="Arial"&gt;&lt;br /&gt;
  1114. This cache is located in a wooded area at the edge of a nice
  1115. park.&amp;nbsp;&amp;nbsp; BUT, you'll have pass through the land of the
  1116. ne'er do wells to reach it!&lt;/font&gt;&lt;/p&gt;</groundspeak:long_description>
  1117.       <groundspeak:encoded_hints>
  1118.       </groundspeak:encoded_hints>
  1119.       <groundspeak:logs>
  1120.         <groundspeak:log id="200201631">
  1121.           <groundspeak:date>2011-11-21T20:00:00Z</groundspeak:date>
  1122.           <groundspeak:type>Found it</groundspeak:type>
  1123.           <groundspeak:finder id="462553">jaycop71</groundspeak:finder>
  1124.           <groundspeak:text encoded="False">Grabbed this one before hockey practice started tonight.  Did not come upon any Ne'er Do Wells in the area while going to and fro from the cache mobile.  SL TFTC</groundspeak:text>
  1125.         </groundspeak:log>
  1126.         <groundspeak:log id="198809619">
  1127.           <groundspeak:date>2011-11-13T20:00:00Z</groundspeak:date>
  1128.           <groundspeak:type>Found it</groundspeak:type>
  1129.           <groundspeak:finder id="93109">Lindave</groundspeak:finder>
  1130.           <groundspeak:text encoded="False">We found the stash without trouble but we found no evidence of anyone living in the area. Maybe they are clean Ne'er do wells. Thanks...Lindave</groundspeak:text>
  1131.         </groundspeak:log>
  1132.         <groundspeak:log id="198547090">
  1133.           <groundspeak:date>2011-11-12T20:00:00Z</groundspeak:date>
  1134.           <groundspeak:type>Found it</groundspeak:type>
  1135.           <groundspeak:finder id="2318675">cubdad7</groundspeak:finder>
  1136.           <groundspeak:text encoded="False">the do wells were off doing well so i had the place to myself.
  1137. walked right up to the prize while i was enjoying the fall colors and fungii.
  1138. sl tftc</groundspeak:text>
  1139.         </groundspeak:log>
  1140.         <groundspeak:log id="197694183">
  1141.           <groundspeak:date>2011-11-07T20:00:00Z</groundspeak:date>
  1142.           <groundspeak:type>Found it</groundspeak:type>
  1143.           <groundspeak:finder id="1391683">JnglBelz</groundspeak:finder>
  1144.           <groundspeak:text encoded="False">Nice park of goose poop. Found this one after work. TFTC</groundspeak:text>
  1145.         </groundspeak:log>
  1146.         <groundspeak:log id="197501230">
  1147.           <groundspeak:date>2011-11-05T19:00:00Z</groundspeak:date>
  1148.           <groundspeak:type>Found it</groundspeak:type>
  1149.           <groundspeak:finder id="1737330">BDKnel</groundspeak:finder>
  1150.           <groundspeak:text encoded="False">Fun day caching with EnPleinAire and BDSmiley after the DST Event.  Actually passed through a corn field.  How do these farmers make any $ with only one ear per stalk?  SLTFTC</groundspeak:text>
  1151.         </groundspeak:log>
  1152.       </groundspeak:logs>
  1153.       <groundspeak:travelbugs />
  1154.     </groundspeak:cache>
  1155.   </wpt>
  1156.   <wpt lat="41.7849" lon="-88.17895">
  1157.     <time>2010-09-20T07:00:00Z</time>
  1158.     <name>GC2FBEN</name>
  1159.     <desc>Fawell Dam by Team Sukie, Multi-cache (3/2)</desc>
  1160.     <url>http://www.geocaching.com/seek/cache_details.aspx?guid=174fa7d5-2a79-4f8f-86af-27bad9b18d4f</url>
  1161.     <urlname>Fawell Dam</urlname>
  1162.     <sym>Geocache</sym>
  1163.     <type>Geocache|Multi-cache</type>
  1164.     <groundspeak:cache id="1893813" available="True" archived="False" xmlns:groundspeak="http://www.groundspeak.com/cache/1/0">
  1165.       <groundspeak:name>Fawell Dam</groundspeak:name>
  1166.       <groundspeak:placed_by>Team Sukie</groundspeak:placed_by>
  1167.       <groundspeak:owner id="2178108">Team Sukie</groundspeak:owner>
  1168.       <groundspeak:type>Multi-cache</groundspeak:type>
  1169.       <groundspeak:container>Small</groundspeak:container>
  1170.       <groundspeak:difficulty>3</groundspeak:difficulty>
  1171.       <groundspeak:terrain>2</groundspeak:terrain>
  1172.       <groundspeak:country>United States</groundspeak:country>
  1173.       <groundspeak:state>Illinois</groundspeak:state>
  1174.       <groundspeak:short_description html="False">
  1175.       </groundspeak:short_description>
  1176.       <groundspeak:long_description html="False">This is a two stage multi-cache. The final is within a couple hundred feet of stage 1. This area is prone to flooding after heavy rains.
  1177.  
  1178. This is located at the south end of McDowell Grove Forest Preserve close to Fawell Dam. This is a very nice forest preserve. The dam is an excellent location to put a canoe or kayak into the West Branch of the DuPage River and enjoy a paddle through Naperville. A good take out is Knock Knolls Park. Only problem is water level. You have to catch it after a rain so there is enough water to get through but this area is also subject to flooding if we get too much rain and then the current as well as bridge clearances can be a challenge. There is a very nice trail over the dam and up the east side of the preserve.
  1179.  
  1180. If you want a nice hike, park in the forest preserve and hike the trail down the west side of the river. If you want a quick grab, park in the specified parking area.
  1181.  
  1182. There is a "prize" for the FTF.
  1183.  
  1184. Legal Stuff
  1185. Thanks to DuPage County Forest Preserve Ranger, Christina, for approving this hide.
  1186. 1. This Geocache is placed on DuPage County Forest Preserve property with permission. Permit number 252 and 253.
  1187. 2. Do not place the following items in the Geocache: Food items, inappropriate, offensive, or hazardous materials.
  1188. 3. DuPage County Forest Preserve hours are 1 hour after sunrise until 1 hour after sunset. Preserve users must not be in the preserves after hours.
  1189. 4. It is the visitor’s responsibility to be aware of the policies and rules pertaining to this preserve. For more information on preserve rules, see the information kiosk in the parking lot of the preserve or contact Visitor Services at (630) 933-7248.
  1190.  
  1191. Additional Waypoints
  1192. PK2FBEN - GC2FBEN Parking
  1193. N 41° 47.035 W 088° 10.813
  1194.  
  1195. </groundspeak:long_description>
  1196.       <groundspeak:encoded_hints>
  1197.       </groundspeak:encoded_hints>
  1198.       <groundspeak:logs>
  1199.         <groundspeak:log id="194878627">
  1200.           <groundspeak:date>2011-10-25T19:00:00Z</groundspeak:date>
  1201.           <groundspeak:type>Didn't find it</groundspeak:type>
  1202.           <groundspeak:finder id="186008">goldfishy</groundspeak:finder>
  1203.           <groundspeak:text encoded="False">[:(] [:(] [:(] I wave my white flag on this one.  I've been here more times than I can count.  I don't think I can take the frustration any more. [:(]</groundspeak:text>
  1204.         </groundspeak:log>
  1205.         <groundspeak:log id="194091638">
  1206.           <groundspeak:date>2011-10-22T19:00:00Z</groundspeak:date>
  1207.           <groundspeak:type>Didn't find it</groundspeak:type>
  1208.           <groundspeak:finder id="4850971">ScorpiFish</groundspeak:finder>
  1209.           <groundspeak:text encoded="False">Looked for quite a while with no luck.  Will come again in the future though.</groundspeak:text>
  1210.         </groundspeak:log>
  1211.         <groundspeak:log id="193414718">
  1212.           <groundspeak:date>2011-10-18T19:00:00Z</groundspeak:date>
  1213.           <groundspeak:type>Found it</groundspeak:type>
  1214.           <groundspeak:finder id="19736">Eagle Son</groundspeak:finder>
  1215.           <groundspeak:text encoded="False">10/18/2011 12:11 Found: 
  1216. Looked fore this one once before with no luck. Made the find at stage one this time with no trouble, not sure how I missed it the first time, I swear I looked there. Found stage two after a bit of searching, It was not in the expected spot.
  1217. TFTC  SL</groundspeak:text>
  1218.         </groundspeak:log>
  1219.         <groundspeak:log id="192203493">
  1220.           <groundspeak:date>2011-10-12T19:00:00Z</groundspeak:date>
  1221.           <groundspeak:type>Found it</groundspeak:type>
  1222.           <groundspeak:finder id="594838">Tink74</groundspeak:finder>
  1223.           <groundspeak:text encoded="False">My 445th Find [:)]  I was on-call, but not working this afternoon, so off into the sunshine I went [:D]  I spent a great deal of time at stage one...this has always been my least favorite hide style [:o)]  Stage 2 also took a few minutes and my 2nd favorite caching tool to find.  TNLN  SL  TFTC
  1224.  
  1225. This entry was edited by Tink74 on Thursday, 13 October 2011 at 01:12:03 UTC.</groundspeak:text>
  1226.         </groundspeak:log>
  1227.         <groundspeak:log id="191912539">
  1228.           <groundspeak:date>2011-10-11T00:23:36Z</groundspeak:date>
  1229.           <groundspeak:type>Didn't find it</groundspeak:type>
  1230.           <groundspeak:finder id="3831018">koey10</groundspeak:finder>
  1231.           <groundspeak:text encoded="False">My wife and I, and three little ones, looked for quite a long time for stage one and never came up with it. It was a disappointing walk back to the car. </groundspeak:text>
  1232.         </groundspeak:log>
  1233.       </groundspeak:logs>
  1234.       <groundspeak:travelbugs />
  1235.     </groundspeak:cache>
  1236.   </wpt>
  1237.   <wpt lat="41.775917" lon="-88.205383">
  1238.     <time>2011-09-10T07:00:00Z</time>
  1239.     <name>GC33Y4M</name>
  1240.     <desc>Boat Wreck by IGotADisneyJeep, Traditional Cache (1.5/1.5)</desc>
  1241.     <url>http://www.geocaching.com/seek/cache_details.aspx?guid=2172f795-fb61-4df8-b692-9cc2e0223397</url>
  1242.     <urlname>Boat Wreck</urlname>
  1243.     <sym>Geocache</sym>
  1244.     <type>Geocache|Traditional Cache</type>
  1245.     <groundspeak:cache id="2476829" available="True" archived="False" xmlns:groundspeak="http://www.groundspeak.com/cache/1/0">
  1246.       <groundspeak:name>Boat Wreck</groundspeak:name>
  1247.       <groundspeak:placed_by>IGotADisneyJeep</groundspeak:placed_by>
  1248.       <groundspeak:owner id="3295748">IGotADisneyJeep</groundspeak:owner>
  1249.       <groundspeak:type>Traditional Cache</groundspeak:type>
  1250.       <groundspeak:container>Small</groundspeak:container>
  1251.       <groundspeak:difficulty>1.5</groundspeak:difficulty>
  1252.       <groundspeak:terrain>1.5</groundspeak:terrain>
  1253.       <groundspeak:country>United States</groundspeak:country>
  1254.       <groundspeak:state>Illinois</groundspeak:state>
  1255.       <groundspeak:short_description html="False">Boat Wreck. This hide is an easy one and kid friendly. 
  1256. Note: Please bring a pen, replace the cache container at its original location and close the container tight. Please be respectful and don't spoil this fun game for everyone. Do not steal or damage the cache container along with the log sheet. Thank You.</groundspeak:short_description>
  1257.       <groundspeak:long_description html="False">
  1258.       </groundspeak:long_description>
  1259.       <groundspeak:encoded_hints>
  1260.       </groundspeak:encoded_hints>
  1261.       <groundspeak:logs>
  1262.         <groundspeak:log id="199244774">
  1263.           <groundspeak:date>2011-11-16T20:00:00Z</groundspeak:date>
  1264.           <groundspeak:type>Found it</groundspeak:type>
  1265.           <groundspeak:finder id="2095787">zteam118</groundspeak:finder>
  1266.           <groundspeak:text encoded="False">Found it with no problem.  TFTC</groundspeak:text>
  1267.         </groundspeak:log>
  1268.         <groundspeak:log id="198810834">
  1269.           <groundspeak:date>2011-11-13T20:00:00Z</groundspeak:date>
  1270.           <groundspeak:type>Didn't find it</groundspeak:type>
  1271.           <groundspeak:finder id="537286">Siamese Retriever</groundspeak:finder>
  1272.           <groundspeak:text encoded="False">11/13/2011 16:45 DNF: How do you know it is time to go home?  After you DNF and 1.5/1.5 cache, that is usually a good indication that the caching mojo has left for the day.  I was sorry to see Key Wester go, and was really surpised.  It was part of the Portillo's group.  Anyhow, I checked one spot, about 50' off, then checked the right spot, but not very well, as I could not come up with the find.  Oh well.  I will be back this way again, I am sure!</groundspeak:text>
  1273.         </groundspeak:log>
  1274.         <groundspeak:log id="198810504">
  1275.           <groundspeak:date>2011-11-13T20:00:00Z</groundspeak:date>
  1276.           <groundspeak:type>Found it</groundspeak:type>
  1277.           <groundspeak:finder id="93109">Lindave</groundspeak:finder>
  1278.           <groundspeak:text encoded="False">A nice cache with a nautical theme, thanks for the fun...Lindave</groundspeak:text>
  1279.         </groundspeak:log>
  1280.         <groundspeak:log id="199711598">
  1281.           <groundspeak:date>2011-11-05T19:00:00Z</groundspeak:date>
  1282.           <groundspeak:type>Found it</groundspeak:type>
  1283.           <groundspeak:finder id="4014037">LEGOexplorer</groundspeak:finder>
  1284.           <groundspeak:text encoded="False">Found it with mom, dad and a group of cachers after the event. We signed the log as the Breakfast Club.</groundspeak:text>
  1285.         </groundspeak:log>
  1286.         <groundspeak:log id="197923572">
  1287.           <groundspeak:date>2011-11-05T19:00:00Z</groundspeak:date>
  1288.           <groundspeak:type>Found it</groundspeak:type>
  1289.           <groundspeak:finder id="744677">racer2814</groundspeak:finder>
  1290.           <groundspeak:text encoded="False">Found in between events today. Signed log as TBC for The Breakfast Crew which consisted of KingEvo, King0806, spierson82, geecmom, Texican Space Cowboy, and myself. We made a giant loop through the area and found many caches. Thanks for placing this one. Orale! Live, laugh, love, cache.
  1291.  
  1292. Neat area. Took a couple minutes to spot cache.</groundspeak:text>
  1293.         </groundspeak:log>
  1294.       </groundspeak:logs>
  1295.       <groundspeak:travelbugs />
  1296.     </groundspeak:cache>
  1297.   </wpt>
  1298.   <wpt lat="41.806033" lon="-88.159417">
  1299.     <time>2011-08-30T07:00:00Z</time>
  1300.     <name>GC339Y5</name>
  1301.     <desc>CKC IL-110 by sgauss, Traditional Cache (1.5/1.5)</desc>
  1302.     <url>http://www.geocaching.com/seek/cache_details.aspx?guid=10ab404a-e5d8-4846-8b3a-c6629cb08621</url>
  1303.     <urlname>CKC IL-110</urlname>
  1304.     <sym>Geocache</sym>
  1305.     <type>Geocache|Traditional Cache</type>
  1306.     <groundspeak:cache id="2458369" available="True" archived="False" xmlns:groundspeak="http://www.groundspeak.com/cache/1/0">
  1307.       <groundspeak:name>CKC IL-110</groundspeak:name>
  1308.       <groundspeak:placed_by>sgauss</groundspeak:placed_by>
  1309.       <groundspeak:owner id="2458905">sgauss</groundspeak:owner>
  1310.       <groundspeak:type>Traditional Cache</groundspeak:type>
  1311.       <groundspeak:container>Micro</groundspeak:container>
  1312.       <groundspeak:difficulty>1.5</groundspeak:difficulty>
  1313.       <groundspeak:terrain>1.5</groundspeak:terrain>
  1314.       <groundspeak:country>United States</groundspeak:country>
  1315.       <groundspeak:state>Illinois</groundspeak:state>
  1316.       <groundspeak:short_description html="True">Look east while you're looking for this cache and you'll see a sign
  1317. with a 'CKC' logo above a sign for Illinois Highway 110. Parking is
  1318. to the south, do not try to retrieve the cache from I-88!</groundspeak:short_description>
  1319.       <groundspeak:long_description html="True">These signs went up in August, 2010, designating I-88 as part of
  1320. the Chicago-Kansas City Expressway. The Illinois portion of the
  1321. Expressway is Illinois 110, and starts near Hannibal, MO., runs
  1322. north through Quincy, Macomb and Galesburg in western Illinois to
  1323. the Quad Cities area, and then runs east along I-88 and I-290 to
  1324. just west of downtown Chicago.&lt;br /&gt;
  1325. &lt;br /&gt;
  1326. The Tri-State Development Commission, representing western
  1327. Illinois, northern Missouri and southeastern Iowa has been trying
  1328. to develop this expressway since the 1950s! I noticed these signs
  1329. not long after they went up, but it took a couple of months before
  1330. I finally researched them on the internet.&lt;br /&gt;
  1331. &lt;br /&gt;
  1332. Congratulations to rorokili for the First to Find!</groundspeak:long_description>
  1333.       <groundspeak:encoded_hints>
  1334.       </groundspeak:encoded_hints>
  1335.       <groundspeak:logs>
  1336.         <groundspeak:log id="200497171">
  1337.           <groundspeak:date>2011-11-24T20:00:00Z</groundspeak:date>
  1338.           <groundspeak:type>Found it</groundspeak:type>
  1339.           <groundspeak:finder id="1622205">airguide</groundspeak:finder>
  1340.           <groundspeak:text encoded="False">Out with Mandy,Pickles,geoKens &amp; Fed on a cold windy and rainy Autumn day. Mandy and Fed did all the work on this one TFTC [:)]</groundspeak:text>
  1341.         </groundspeak:log>
  1342.         <groundspeak:log id="200298230">
  1343.           <groundspeak:date>2011-11-22T20:00:00Z</groundspeak:date>
  1344.           <groundspeak:type>Found it</groundspeak:type>
  1345.           <groundspeak:finder id="1753034">geoKens</groundspeak:finder>
  1346.           <groundspeak:text encoded="False">Out with Fed, Mandy, Pickles, and airguide. The Tuesday Hunt Club hunted in rain for the 2nd time this year. TFTH. Noticed the 110 sign down the road.</groundspeak:text>
  1347.         </groundspeak:log>
  1348.         <groundspeak:log id="200297633">
  1349.           <groundspeak:date>2011-11-22T20:00:00Z</groundspeak:date>
  1350.           <groundspeak:type>Found it</groundspeak:type>
  1351.           <groundspeak:finder id="424523">MandyCamp</groundspeak:finder>
  1352.           <groundspeak:text encoded="False">Caching in the rain with Airguide, geoKens, Mr. Pickles and fed.  fed spotted it.  TFTC</groundspeak:text>
  1353.         </groundspeak:log>
  1354.         <groundspeak:log id="200296546">
  1355.           <groundspeak:date>2011-11-22T20:00:00Z</groundspeak:date>
  1356.           <groundspeak:type>Found it</groundspeak:type>
  1357.           <groundspeak:finder id="2274995">Mr.Pickles</groundspeak:finder>
  1358.           <groundspeak:text encoded="False">Thanks to fed and mandycamp for making the walk thru the wet grass.  TFTC</groundspeak:text>
  1359.         </groundspeak:log>
  1360.         <groundspeak:log id="200293472">
  1361.           <groundspeak:date>2011-11-22T20:00:00Z</groundspeak:date>
  1362.           <groundspeak:type>Found it</groundspeak:type>
  1363.           <groundspeak:finder id="176194">fed</groundspeak:finder>
  1364.           <groundspeak:text encoded="False">Mandy and I made the treck over from parking for our THC. Had me head in one place, turned and almost broke me nose on the container. Had it in hand at 14:40. SL No 110 sign in our view today?</groundspeak:text>
  1365.         </groundspeak:log>
  1366.       </groundspeak:logs>
  1367.       <groundspeak:travelbugs />
  1368.     </groundspeak:cache>
  1369.   </wpt>
  1370.   <wpt lat="41.792417" lon="-88.2502">
  1371.     <time>2010-10-04T07:00:00Z</time>
  1372.     <name>GC2G7B5</name>
  1373.     <desc>To the Woods... by JnglBelz, Traditional Cache (2/2)</desc>
  1374.     <url>http://www.geocaching.com/seek/cache_details.aspx?guid=439a2a3f-9d3e-4d9b-a4ec-7b08e5d8ecbc</url>
  1375.     <urlname>To the Woods...</urlname>
  1376.     <sym>Geocache</sym>
  1377.     <type>Geocache|Traditional Cache</type>
  1378.     <groundspeak:cache id="1919651" available="True" archived="False" xmlns:groundspeak="http://www.groundspeak.com/cache/1/0">
  1379.       <groundspeak:name>To the Woods...</groundspeak:name>
  1380.       <groundspeak:placed_by>JnglBelz</groundspeak:placed_by>
  1381.       <groundspeak:owner id="1391683">JnglBelz</groundspeak:owner>
  1382.       <groundspeak:type>Traditional Cache</groundspeak:type>
  1383.       <groundspeak:container>Small</groundspeak:container>
  1384.       <groundspeak:difficulty>2</groundspeak:difficulty>
  1385.       <groundspeak:terrain>2</groundspeak:terrain>
  1386.       <groundspeak:country>United States</groundspeak:country>
  1387.       <groundspeak:state>Illinois</groundspeak:state>
  1388.       <groundspeak:short_description html="False">Small jar able to hold small items and travel bugs</groundspeak:short_description>
  1389.       <groundspeak:long_description html="False">Just a few feet off the trail. Minor bushwacking. Use North trail entrance and be stealthy from homeowners. Be extremely careful when removing cache. Please replace as found or better so all can enjoy the hunt.</groundspeak:long_description>
  1390.       <groundspeak:encoded_hints>
  1391.       </groundspeak:encoded_hints>
  1392.       <groundspeak:logs>
  1393.         <groundspeak:log id="198080104">
  1394.           <groundspeak:date>2011-11-11T20:00:00Z</groundspeak:date>
  1395.           <groundspeak:type>Found it</groundspeak:type>
  1396.           <groundspeak:finder id="4205557">mau724</groundspeak:finder>
  1397.           <groundspeak:text encoded="False">Found it in short order but little concerned about the "private property" near by. TFTC!</groundspeak:text>
  1398.         </groundspeak:log>
  1399.         <groundspeak:log id="197665439">
  1400.           <groundspeak:date>2011-11-05T19:00:00Z</groundspeak:date>
  1401.           <groundspeak:type>Found it</groundspeak:type>
  1402.           <groundspeak:finder id="91151">JustUsTwo</groundspeak:finder>
  1403.           <groundspeak:text encoded="False">We didn’t notice the ‘private property' signs...until we were on our way out.  [;)]
  1404.  
  1405. Thanks, “JnglBelz” for the hide!      [:D]</groundspeak:text>
  1406.         </groundspeak:log>
  1407.         <groundspeak:log id="197500244">
  1408.           <groundspeak:date>2011-11-05T19:00:00Z</groundspeak:date>
  1409.           <groundspeak:type>Found it</groundspeak:type>
  1410.           <groundspeak:finder id="161275">lucy~</groundspeak:finder>
  1411.           <groundspeak:text encoded="False">Sometimes the path well trodden is there for a reason. Bushwhacked in took the path out....go figure.
  1412.  
  1413. Out with the crew after the breakfast event. Thanks Jnglbelz for the fun and the pocket-woods find.</groundspeak:text>
  1414.         </groundspeak:log>
  1415.         <groundspeak:log id="196862371">
  1416.           <groundspeak:date>2011-11-04T19:00:00Z</groundspeak:date>
  1417.           <groundspeak:type>Found it</groundspeak:type>
  1418.           <groundspeak:finder id="1040256">lostlinda</groundspeak:finder>
  1419.           <groundspeak:text encoded="False">Not sure where the "path" was!  The sign we saw said "Private Property"!, but we did it anyway.  Magoo found it after a bit of searching.  Nice hiding spot.  Great "camo"  TFTC</groundspeak:text>
  1420.         </groundspeak:log>
  1421.         <groundspeak:log id="191879803">
  1422.           <groundspeak:date>2011-10-10T19:00:00Z</groundspeak:date>
  1423.           <groundspeak:type>Found it</groundspeak:type>
  1424.           <groundspeak:finder id="1512673">djpd1023</groundspeak:finder>
  1425.           <groundspeak:text encoded="False">I have been to this location before and got turned away with nothing to show for my efforts. Today, I was driving by and decided to give it a look. Glad I did. Cache has been given some maintenance and I was first to sign off on the dry log. Returned as found. Cool area!</groundspeak:text>
  1426.         </groundspeak:log>
  1427.       </groundspeak:logs>
  1428.       <groundspeak:travelbugs />
  1429.     </groundspeak:cache>
  1430.   </wpt>
  1431.   <wpt lat="41.794917" lon="-88.254667">
  1432.     <time>2011-09-18T07:00:00Z</time>
  1433.     <name>GC34DKV</name>
  1434.     <desc>Still Curious by G.O. John and Carol, Traditional Cache (2.5/1.5)</desc>
  1435.     <url>http://www.geocaching.com/seek/cache_details.aspx?guid=0ae1cd3d-6344-4e39-8e8b-8d435d6fe9ad</url>
  1436.     <urlname>Still Curious</urlname>
  1437.     <sym>Geocache</sym>
  1438.     <type>Geocache|Traditional Cache</type>
  1439.     <groundspeak:cache id="2491715" available="True" archived="False" xmlns:groundspeak="http://www.groundspeak.com/cache/1/0">
  1440.       <groundspeak:name>Still Curious</groundspeak:name>
  1441.       <groundspeak:placed_by>G.O. John and Carol</groundspeak:placed_by>
  1442.       <groundspeak:owner id="235754">G.O. John and Carol</groundspeak:owner>
  1443.       <groundspeak:type>Traditional Cache</groundspeak:type>
  1444.       <groundspeak:container>Micro</groundspeak:container>
  1445.       <groundspeak:difficulty>2.5</groundspeak:difficulty>
  1446.       <groundspeak:terrain>1.5</groundspeak:terrain>
  1447.       <groundspeak:country>United States</groundspeak:country>
  1448.       <groundspeak:state>Illinois</groundspeak:state>
  1449.       <groundspeak:short_description html="True">
  1450.       </groundspeak:short_description>
  1451.       <groundspeak:long_description html="True">&lt;p align="center"&gt;&lt;font size="4" face="Arial"&gt;This cache was hidden
  1452. for the following 2 events:&lt;br /&gt;
  1453. &lt;br /&gt;
  1454. &lt;a href=
  1455. "http://www.geocaching.com/seek/cache_details.aspx?guid=d4e3d2a1-058b-4f88-9ef8-014235194400"&gt;
  1456. &lt;font color="#0066CC" size="4" face="Arial"&gt;Please Don't Leave,
  1457. DST! A Breakfast Event&lt;br /&gt;&lt;/font&gt;&lt;/a&gt;&lt;font size="4" face=
  1458. "Arial"&gt;and Moodygrrl's follow up event&lt;br /&gt;&lt;/font&gt; &lt;a href=
  1459. "http://www.geocaching.com/seek/cache_details.aspx?wp=GC33NYG"&gt;&lt;font color="#0066CC"
  1460. size="4" face="Arial"&gt;"Fall Back"... Into Caching&lt;/font&gt;&lt;/a&gt;
  1461. &lt;font size="4" face="Arial"&gt;&lt;br /&gt;
  1462. &lt;br /&gt;
  1463. &lt;br /&gt;
  1464. No, the cache title does not refer to me.&amp;nbsp; I archived
  1465. "Curious" a while back when it became irretrievable.&amp;nbsp; Thought
  1466. I'd try something a little different as a replacement for that
  1467. cache,since I'm still curious about the history of this spot.&amp;nbsp;
  1468. This may be a challenging cache. I will tell you that it's not in
  1469. the vegetation; and it is NOT winter friendly.&lt;br /&gt;
  1470. &lt;br /&gt;
  1471. Good luck!&lt;/font&gt;&lt;/font&gt;&lt;/p&gt;</groundspeak:long_description>
  1472.       <groundspeak:encoded_hints>
  1473.       </groundspeak:encoded_hints>
  1474.       <groundspeak:logs>
  1475.         <groundspeak:log id="199610170">
  1476.           <groundspeak:date>2011-11-19T20:00:00Z</groundspeak:date>
  1477.           <groundspeak:type>Found it</groundspeak:type>
  1478.           <groundspeak:finder id="946692">LucknJoe</groundspeak:finder>
  1479.           <groundspeak:text encoded="False">I remember the last cache here and how much garbage was dumped, even tires. Glad it's cleaned up. Cords were dead on making for a quick pick up. TFTH!</groundspeak:text>
  1480.         </groundspeak:log>
  1481.         <groundspeak:log id="199316912">
  1482.           <groundspeak:date>2011-11-17T20:00:00Z</groundspeak:date>
  1483.           <groundspeak:type>Found it</groundspeak:type>
  1484.           <groundspeak:finder id="4205557">mau724</groundspeak:finder>
  1485.           <groundspeak:text encoded="False">Finally found it! Actually I checked this spot when I got DNF the first and I don't know why I missed it! I would blame it on rainy day?! Thank you for the challenge GOJAC!</groundspeak:text>
  1486.         </groundspeak:log>
  1487.         <groundspeak:log id="198549787">
  1488.           <groundspeak:date>2011-11-12T20:00:00Z</groundspeak:date>
  1489.           <groundspeak:type>Found it</groundspeak:type>
  1490.           <groundspeak:finder id="2318675">cubdad7</groundspeak:finder>
  1491.           <groundspeak:text encoded="False">grabbed this one while i was in the area. took me a while to find. searched until something caught my eye. nice hide!
  1492. sl tftc</groundspeak:text>
  1493.         </groundspeak:log>
  1494.         <groundspeak:log id="197694123">
  1495.           <groundspeak:date>2011-11-07T20:00:00Z</groundspeak:date>
  1496.           <groundspeak:type>Found it</groundspeak:type>
  1497.           <groundspeak:finder id="1391683">JnglBelz</groundspeak:finder>
  1498.           <groundspeak:text encoded="False">Interesting! Very interesting. Took me a few but finally came up with it. TFTC</groundspeak:text>
  1499.         </groundspeak:log>
  1500.         <groundspeak:log id="197498947">
  1501.           <groundspeak:date>2011-11-06T20:00:00Z</groundspeak:date>
  1502.           <groundspeak:type>Found it</groundspeak:type>
  1503.           <groundspeak:finder id="93109">Lindave</groundspeak:finder>
  1504.           <groundspeak:text encoded="False">Strange how well the cammo matches the surrounding area. Trust your GPS on this one. Thanks for the fun...Lindave</groundspeak:text>
  1505.         </groundspeak:log>
  1506.       </groundspeak:logs>
  1507.       <groundspeak:travelbugs />
  1508.     </groundspeak:cache>
  1509.   </wpt>
  1510.   <wpt lat="41.800533" lon="-88.156333">
  1511.     <time>2011-10-30T07:00:00Z</time>
  1512.     <name>GC36XMJ</name>
  1513.     <desc>Empty Nester by stashtracker, Traditional Cache (3/3)</desc>
  1514.     <url>http://www.geocaching.com/seek/cache_details.aspx?guid=1f4df691-be2e-4954-93a6-bfb2e0134138</url>
  1515.     <urlname>Empty Nester</urlname>
  1516.     <sym>Geocache</sym>
  1517.     <type>Geocache|Traditional Cache</type>
  1518.     <groundspeak:cache id="2565735" available="True" archived="False" xmlns:groundspeak="http://www.groundspeak.com/cache/1/0">
  1519.       <groundspeak:name>Empty Nester</groundspeak:name>
  1520.       <groundspeak:placed_by>stashtracker</groundspeak:placed_by>
  1521.       <groundspeak:owner id="470882">stashtracker</groundspeak:owner>
  1522.       <groundspeak:type>Traditional Cache</groundspeak:type>
  1523.       <groundspeak:container>Micro</groundspeak:container>
  1524.       <groundspeak:difficulty>3</groundspeak:difficulty>
  1525.       <groundspeak:terrain>3</groundspeak:terrain>
  1526.       <groundspeak:country>United States</groundspeak:country>
  1527.       <groundspeak:state>Illinois</groundspeak:state>
  1528.       <groundspeak:short_description html="False">
  1529.       </groundspeak:short_description>
  1530.       <groundspeak:long_description html="False">An empty nester is a parent whose children have all grown up and left home. If you've not yet experienced this phase of life this cache will give you a real-life example. You might have feelings of sadness and loss. Don’t be ashamed of your feelings. However, if you experience excessive crying or serious depression while trying to find this cache seek professional help.
  1531.  
  1532.  
  1533. Enjoy!
  1534.  
  1535. Make sure you approach from the NW (West St.) You can avoid most thorns and there is an industrial office area that is mostly vacant with ample parking.
  1536. </groundspeak:long_description>
  1537.       <groundspeak:encoded_hints>
  1538.       </groundspeak:encoded_hints>
  1539.       <groundspeak:logs>
  1540.         <groundspeak:log id="200432694">
  1541.           <groundspeak:date>2011-11-19T20:00:00Z</groundspeak:date>
  1542.           <groundspeak:type>Found it</groundspeak:type>
  1543.           <groundspeak:finder id="60384">Odyn</groundspeak:finder>
  1544.           <groundspeak:text encoded="False">Cute concept.  I was finding decoys left right and down the middle, but Greenback found what we were really looking for.  Thanks for the cache.</groundspeak:text>
  1545.         </groundspeak:log>
  1546.         <groundspeak:log id="199716929">
  1547.           <groundspeak:date>2011-11-19T19:00:00Z</groundspeak:date>
  1548.           <groundspeak:type>Found it</groundspeak:type>
  1549.           <groundspeak:finder id="119759">katguy</groundspeak:finder>
  1550.           <groundspeak:text encoded="False">I found this snazzy hide with caching buddies Greenback and  Odyn on this chilly fall day.  I'd like to say more, but don't want to be leaking any spoilers, so I'll just say thanks for the cache stashtracker!</groundspeak:text>
  1551.         </groundspeak:log>
  1552.         <groundspeak:log id="199705291">
  1553.           <groundspeak:date>2011-11-19T16:57:00Z</groundspeak:date>
  1554.           <groundspeak:type>Found it</groundspeak:type>
  1555.           <groundspeak:finder id="61124">Greenback</groundspeak:finder>
  1556.           <groundspeak:text encoded="False">We arrived at ground zero and Odyn was on point, he had three decoys before anyone could even grab one. I found two more decoys and the stash.
  1557.  
  1558. Thanks for the cache stash.</groundspeak:text>
  1559.         </groundspeak:log>
  1560.         <groundspeak:log id="198945300">
  1561.           <groundspeak:date>2011-11-13T20:00:00Z</groundspeak:date>
  1562.           <groundspeak:type>Found it</groundspeak:type>
  1563.           <groundspeak:finder id="2299304">KeeganC</groundspeak:finder>
  1564.           <groundspeak:text encoded="False">After getting a FTF on another new ST cache I decided to head over here to look for this one.  I had herbs2 in the car with me so he had to come along for the ride to watch me search.  We made it to GZ and I started to look, no, no ,no ,no, no, wait what is this????  I made the find and logged in.  
  1565.  
  1566. Thanks for another great challenge ST.
  1567.  
  1568. TFTC SL.</groundspeak:text>
  1569.         </groundspeak:log>
  1570.         <groundspeak:log id="198797907">
  1571.           <groundspeak:date>2011-11-13T20:00:00Z</groundspeak:date>
  1572.           <groundspeak:type>Didn't find it</groundspeak:type>
  1573.           <groundspeak:finder id="1295103">goinkers</groundspeak:finder>
  1574.           <groundspeak:text encoded="False">Only 1 for 3 on the ST hides today--guess we're out of practice.  We certainly found a significant number of decoys, but not the real McCoy.  No need to be coy, we DNF-ed it!</groundspeak:text>
  1575.         </groundspeak:log>
  1576.       </groundspeak:logs>
  1577.       <groundspeak:travelbugs />
  1578.     </groundspeak:cache>
  1579.   </wpt>
  1580.   <wpt lat="41.780117" lon="-88.241033">
  1581.     <time>2011-01-18T08:00:00Z</time>
  1582.     <name>GC2MF8D</name>
  1583.     <desc>Here's What Happens When No One Bothers to Plan Ah by G.O. John and Carol, Multi-cache (1.5/1.5)</desc>
  1584.     <url>http://www.geocaching.com/seek/cache_details.aspx?guid=61d2dbdc-5fd9-41fb-9d98-14c0341a50a7</url>
  1585.     <urlname>Here's What Happens When No One Bothers to Plan Ah</urlname>
  1586.     <sym>Geocache</sym>
  1587.     <type>Geocache|Multi-cache</type>
  1588.     <groundspeak:cache id="2046418" available="True" archived="False" xmlns:groundspeak="http://www.groundspeak.com/cache/1/0">
  1589.       <groundspeak:name>Here's What Happens When No One Bothers to Plan Ah</groundspeak:name>
  1590.       <groundspeak:placed_by>G.O. John and Carol</groundspeak:placed_by>
  1591.       <groundspeak:owner id="235754">G.O. John and Carol</groundspeak:owner>
  1592.       <groundspeak:type>Multi-cache</groundspeak:type>
  1593.       <groundspeak:container>Micro</groundspeak:container>
  1594.       <groundspeak:difficulty>1.5</groundspeak:difficulty>
  1595.       <groundspeak:terrain>1.5</groundspeak:terrain>
  1596.       <groundspeak:country>United States</groundspeak:country>
  1597.       <groundspeak:state>Illinois</groundspeak:state>
  1598.       <groundspeak:short_description html="False">Suggested parking is in the Chase bank parking lot north of the cache.  This would be a 1 terrain if somebody had done their job properly, but if it HAD been done properly, there wouldn't be a need for a cache here.  Stage 1 of this short 2 stage multi will give you the coordinates for the final.  You'll laugh or cry at stage 2, depending on how you view things in life.</groundspeak:short_description>
  1599.       <groundspeak:long_description html="False">There has to be SOMEONE working for the city whose job is to prevent things like this from happening.
  1600.  
  1601. Why am I always the one who sees ridiculous things like this?  Maybe I should move to Washington DC to get more important things straightened out.  They could sure use someone like me, ya know?  Who am I kidding, I wouldn't last a single day there.  Can you imagine what would happen to me when those politicians realize how well I sniff these things out and expose them?  We urgently need to put a stop to all the nonsense out there! 
  1602.  
  1603. We must organize and get ourselves listened to!  Unfortunately, I can't even organize my sock drawer.  I can only hope that someone qualified to take the lead on these matters will find this cache and get the ball rolling.  I will follow!  Will you???
  1604.  
  1605. Additional Waypoints
  1606. </groundspeak:long_description>
  1607.       <groundspeak:encoded_hints>
  1608.       </groundspeak:encoded_hints>
  1609.       <groundspeak:logs>
  1610.         <groundspeak:log id="200403664">
  1611.           <groundspeak:date>2011-11-23T20:00:00Z</groundspeak:date>
  1612.           <groundspeak:type>Found it</groundspeak:type>
  1613.           <groundspeak:finder id="285526">.MikeyB</groundspeak:finder>
  1614.           <groundspeak:text encoded="False">Hitting my cache a day streak and heard of this one. Soooo why not. Tax dollars at work. Gotta love it tfth</groundspeak:text>
  1615.         </groundspeak:log>
  1616.         <groundspeak:log id="199400716">
  1617.           <groundspeak:date>2011-11-17T20:00:00Z</groundspeak:date>
  1618.           <groundspeak:type>Write note</groundspeak:type>
  1619.           <groundspeak:finder id="2714879">dnfu</groundspeak:finder>
  1620.           <groundspeak:text encoded="False">A fun thing to add to the story of this gap in the sidewalk,
  1621. As I mentioned in my previous log, this gap is precisely because Aurora is planning ahead. 
  1622. Aurora has commercial plans for this stretch along Eola road, but my great neighbor simply likes her house and doesn’t want to move and see it razed thank you very much.
  1623. And of course she isn’t under any obligation to pay for a sidewalk across her property.
  1624.  
  1625. She joined us tonight for trivia at Paulies, and while we walked back home together I told her about Geocaching (she seemed intrigued) and we made the brief detour so I could show her the cache hidden on the back corner of her lot.
  1626.  
  1627. She though it was hilarious and thought it was a great conversation piece.
  1628.  
  1629. I hope this got her interested enough to look into Geocaching – I think she will love it.
  1630. And of course, thanks once again for a really neat cache and another fun Geocaching story!</groundspeak:text>
  1631.         </groundspeak:log>
  1632.         <groundspeak:log id="198069336">
  1633.           <groundspeak:date>2011-11-05T19:00:00Z</groundspeak:date>
  1634.           <groundspeak:type>Found it</groundspeak:type>
  1635.           <groundspeak:finder id="1904304">sunshnface</groundspeak:finder>
  1636.           <groundspeak:text encoded="False">Found after the DST event.</groundspeak:text>
  1637.         </groundspeak:log>
  1638.         <groundspeak:log id="197544354">
  1639.           <groundspeak:date>2011-11-05T19:00:00Z</groundspeak:date>
  1640.           <groundspeak:type>Found it</groundspeak:type>
  1641.           <groundspeak:finder id="4226231">tblazek756</groundspeak:finder>
  1642.           <groundspeak:text encoded="False">found with luvtwingle today on a nice day one of a few TFTC</groundspeak:text>
  1643.         </groundspeak:log>
  1644.         <groundspeak:log id="197502029">
  1645.           <groundspeak:date>2011-11-05T19:00:00Z</groundspeak:date>
  1646.           <groundspeak:type>Found it</groundspeak:type>
  1647.           <groundspeak:finder id="1811721">luvtwingle</groundspeak:finder>
  1648.           <groundspeak:text encoded="False">Out with tblazek756 for a full day of caching in the Aurora\Naperville area bookended by two events.  Loved this cache.  Loved the signs.</groundspeak:text>
  1649.         </groundspeak:log>
  1650.       </groundspeak:logs>
  1651.       <groundspeak:travelbugs />
  1652.     </groundspeak:cache>
  1653.   </wpt>
  1654.   <wpt lat="41.7846" lon="-88.164267">
  1655.     <time>2011-02-20T08:00:00Z</time>
  1656.     <name>GC2P49B</name>
  1657.     <desc>Indian Bridge by Greenback, Traditional Cache (1.5/1.5)</desc>
  1658.     <url>http://www.geocaching.com/seek/cache_details.aspx?guid=943dc271-86a6-4294-8f79-eb8b9e708d5c</url>
  1659.     <urlname>Indian Bridge</urlname>
  1660.     <sym>Geocache</sym>
  1661.     <type>Geocache|Traditional Cache</type>
  1662.     <groundspeak:cache id="2095458" available="True" archived="False" xmlns:groundspeak="http://www.groundspeak.com/cache/1/0">
  1663.       <groundspeak:name>Indian Bridge</groundspeak:name>
  1664.       <groundspeak:placed_by>Greenback</groundspeak:placed_by>
  1665.       <groundspeak:owner id="61124">Greenback</groundspeak:owner>
  1666.       <groundspeak:type>Traditional Cache</groundspeak:type>
  1667.       <groundspeak:container>Micro</groundspeak:container>
  1668.       <groundspeak:difficulty>1.5</groundspeak:difficulty>
  1669.       <groundspeak:terrain>1.5</groundspeak:terrain>
  1670.       <groundspeak:country>United States</groundspeak:country>
  1671.       <groundspeak:state>Illinois</groundspeak:state>
  1672.       <groundspeak:short_description html="True">You seek a bison tube.</groundspeak:short_description>
  1673.       <groundspeak:long_description html="True">&lt;p align="center"&gt;&lt;a rel="nofollow" href=
  1674. "http://www.gogeocaching.com/" target="_blank"&gt;&lt;img src=
  1675. "http://gogeocaching.com/memberof_logo_white.jpg" /&gt;&lt;/a&gt;&lt;/p&gt;</groundspeak:long_description>
  1676.       <groundspeak:encoded_hints>
  1677.       </groundspeak:encoded_hints>
  1678.       <groundspeak:logs>
  1679.         <groundspeak:log id="200051190">
  1680.           <groundspeak:date>2011-11-20T20:00:00Z</groundspeak:date>
  1681.           <groundspeak:type>Found it</groundspeak:type>
  1682.           <groundspeak:finder id="2287669">Nemo29 &amp; Cache LaRue</groundspeak:finder>
  1683.           <groundspeak:text encoded="False">Fortunately this was a quick find because it was a little bit windy and nippy out there today. We're definitely going to have to try this restaurant soon - it smelled great while we were hunting.  Thanks for the fun.</groundspeak:text>
  1684.         </groundspeak:log>
  1685.         <groundspeak:log id="194075248">
  1686.           <groundspeak:date>2011-10-22T19:00:00Z</groundspeak:date>
  1687.           <groundspeak:type>Didn't find it</groundspeak:type>
  1688.           <groundspeak:finder id="2250808">nilskp</groundspeak:finder>
  1689.           <groundspeak:text encoded="False">Well, what can I say, we're apparently not very good at this. Spent about half hour trying to find this, but to no avail.</groundspeak:text>
  1690.         </groundspeak:log>
  1691.         <groundspeak:log id="191721196">
  1692.           <groundspeak:date>2011-10-08T19:00:00Z</groundspeak:date>
  1693.           <groundspeak:type>Found it</groundspeak:type>
  1694.           <groundspeak:finder id="3479167">nascarcacher</groundspeak:finder>
  1695.           <groundspeak:text encoded="False">My old geocaching partner, NightriseX5, moved to Seattle because of his dad's job. So, I am out of a geocaching partner...          ...but I think I found one. I found some caches with this kids brother who has always wanted to try it, so I said "want to come along?" With much enthusiasm, he said yes. I found this one right off the bat and he loved it. "Oh how cool" he said. Little did he know that the rest of the day wouldn't be so easy. This was only our first one. TFTC. (The guy I took with is trying to figure out how to make a geocaching membership)</groundspeak:text>
  1696.         </groundspeak:log>
  1697.         <groundspeak:log id="191160788">
  1698.           <groundspeak:date>2011-10-06T19:00:00Z</groundspeak:date>
  1699.           <groundspeak:type>Found it</groundspeak:type>
  1700.           <groundspeak:finder id="2758053">borders905</groundspeak:finder>
  1701.           <groundspeak:text encoded="False">My wife said that her sinuses were stuffy and she needed some Indian food to clear them up. Well, that was enough of an excuse for me to go to my favorite Indian restaurant. After a delicious dinner, we took the short walk over to the cache. My wife made the find quickly and I signed in.
  1702.  
  1703. TFTH!</groundspeak:text>
  1704.         </groundspeak:log>
  1705.         <groundspeak:log id="189817881">
  1706.           <groundspeak:date>2011-09-27T19:00:00Z</groundspeak:date>
  1707.           <groundspeak:type>Found it</groundspeak:type>
  1708.           <groundspeak:finder id="114695">Leader1</groundspeak:finder>
  1709.           <groundspeak:text encoded="False">Almost forgot about finding this one.  Nice hide.  TFTC</groundspeak:text>
  1710.         </groundspeak:log>
  1711.       </groundspeak:logs>
  1712.       <groundspeak:travelbugs />
  1713.     </groundspeak:cache>
  1714.   </wpt>
  1715.   <wpt lat="41.811533" lon="-88.150633">
  1716.     <time>2011-10-03T07:00:00Z</time>
  1717.     <name>GC35AVV</name>
  1718.     <desc>Higher Education - Blue Demons by TomEagle55, Traditional Cache (1.5/1.5)</desc>
  1719.     <url>http://www.geocaching.com/seek/cache_details.aspx?guid=a9dd4522-7678-4400-95d0-d39a39458186</url>
  1720.     <urlname>Higher Education - Blue Demons</urlname>
  1721.     <sym>Geocache</sym>
  1722.     <type>Geocache|Traditional Cache</type>
  1723.     <groundspeak:cache id="2518840" available="True" archived="False" xmlns:groundspeak="http://www.groundspeak.com/cache/1/0">
  1724.       <groundspeak:name>Higher Education - Blue Demons</groundspeak:name>
  1725.       <groundspeak:placed_by>TomEagle55</groundspeak:placed_by>
  1726.       <groundspeak:owner id="2669012">TomEagle55</groundspeak:owner>
  1727.       <groundspeak:type>Traditional Cache</groundspeak:type>
  1728.       <groundspeak:container>Other</groundspeak:container>
  1729.       <groundspeak:difficulty>1.5</groundspeak:difficulty>
  1730.       <groundspeak:terrain>1.5</groundspeak:terrain>
  1731.       <groundspeak:country>United States</groundspeak:country>
  1732.       <groundspeak:state>Illinois</groundspeak:state>
  1733.       <groundspeak:short_description html="True">&lt;p&gt;&lt;font size="5" face="Hurry Up"&gt;&lt;font color="#FF0000"&gt;Cache
  1734. container&lt;/font&gt; &lt;font color="#0000FF"&gt;is very low and&lt;/font&gt;
  1735. &lt;font color="#FF0000"&gt;well concealed.&lt;/font&gt;&lt;/font&gt;&lt;/p&gt;</groundspeak:short_description>
  1736.       <groundspeak:long_description html="True">&lt;p&gt;&lt;font face="Hurry Up" size="6"&gt;&lt;font color="#0000FF"&gt;This cache
  1737. is one of four celebrating higher education opportunities along the
  1738. Golden Corridor.&lt;/font&gt;&lt;br /&gt;
  1739. &lt;font color="#FF0000"&gt;Within the cache are 1/4 of the coordinates
  1740. needed for Higher Education- Graduation bonus
  1741. cache.&lt;/font&gt;&lt;/font&gt;&lt;/p&gt;</groundspeak:long_description>
  1742.       <groundspeak:encoded_hints>_ _ _ _ solid foundation.</groundspeak:encoded_hints>
  1743.       <groundspeak:logs>
  1744.         <groundspeak:log id="200297749">
  1745.           <groundspeak:date>2011-11-22T20:00:00Z</groundspeak:date>
  1746.           <groundspeak:type>Didn't find it</groundspeak:type>
  1747.           <groundspeak:finder id="424523">MandyCamp</groundspeak:finder>
  1748.           <groundspeak:text encoded="False">Caching in the rain with Airguide, geoKens, Mr. Pickles and fed.  It eluded us today.</groundspeak:text>
  1749.         </groundspeak:log>
  1750.         <groundspeak:log id="200296370">
  1751.           <groundspeak:date>2011-11-22T20:00:00Z</groundspeak:date>
  1752.           <groundspeak:type>Didn't find it</groundspeak:type>
  1753.           <groundspeak:finder id="2274995">Mr.Pickles</groundspeak:finder>
  1754.           <groundspeak:text encoded="False">No success,</groundspeak:text>
  1755.         </groundspeak:log>
  1756.         <groundspeak:log id="200293709">
  1757.           <groundspeak:date>2011-11-22T20:00:00Z</groundspeak:date>
  1758.           <groundspeak:type>Didn't find it</groundspeak:type>
  1759.           <groundspeak:finder id="176194">fed</groundspeak:finder>
  1760.           <groundspeak:text encoded="False">At 14:40 it was pretty cool if not cold with the never ending drizzle today. Great weather to go hunting only one thing, this was not in our view today. The Tuesday Hunt Club first DNF on the day.</groundspeak:text>
  1761.         </groundspeak:log>
  1762.         <groundspeak:log id="199733236">
  1763.           <groundspeak:date>2011-11-19T20:00:00Z</groundspeak:date>
  1764.           <groundspeak:type>Found it</groundspeak:type>
  1765.           <groundspeak:finder id="114695">Leader1</groundspeak:finder>
  1766.           <groundspeak:text encoded="False">Nice series.  TFTC</groundspeak:text>
  1767.         </groundspeak:log>
  1768.         <groundspeak:log id="199730456">
  1769.           <groundspeak:date>2011-11-19T20:00:00Z</groundspeak:date>
  1770.           <groundspeak:type>Found it</groundspeak:type>
  1771.           <groundspeak:finder id="2095787">zteam118</groundspeak:finder>
  1772.           <groundspeak:text encoded="False">Saved this one for our 700th find to celebrate our daughter's graduation from DePaul University this week. Thought this was an appropriate cache to mark for this special occasion TFTC</groundspeak:text>
  1773.         </groundspeak:log>
  1774.       </groundspeak:logs>
  1775.       <groundspeak:travelbugs />
  1776.     </groundspeak:cache>
  1777.   </wpt>
  1778.   <wpt lat="41.77875" lon="-88.170633">
  1779.     <time>2011-03-03T08:00:00Z</time>
  1780.     <name>GC2PNBX</name>
  1781.     <desc>Scooter Spots A Train by Scooter, Traditional Cache (1.5/1.5)</desc>
  1782.     <url>http://www.geocaching.com/seek/cache_details.aspx?guid=97275bbc-bbd4-4c3e-b45b-b44efbaa4338</url>
  1783.     <urlname>Scooter Spots A Train</urlname>
  1784.     <sym>Geocache</sym>
  1785.     <type>Geocache|Traditional Cache</type>
  1786.     <groundspeak:cache id="2111874" available="True" archived="False" xmlns:groundspeak="http://www.groundspeak.com/cache/1/0">
  1787.       <groundspeak:name>Scooter Spots A Train</groundspeak:name>
  1788.       <groundspeak:placed_by>Scooter</groundspeak:placed_by>
  1789.       <groundspeak:owner id="331172">badlands</groundspeak:owner>
  1790.       <groundspeak:type>Traditional Cache</groundspeak:type>
  1791.       <groundspeak:container>Micro</groundspeak:container>
  1792.       <groundspeak:difficulty>1.5</groundspeak:difficulty>
  1793.       <groundspeak:terrain>1.5</groundspeak:terrain>
  1794.       <groundspeak:country>United States</groundspeak:country>
  1795.       <groundspeak:state>Illinois</groundspeak:state>
  1796.       <groundspeak:short_description html="True">This cache has been placed in conjunction with the Daylight Savings
  1797. Time Breakfast hosted by G.O. John &amp;amp; Carol and Moodygrrl</groundspeak:short_description>
  1798.       <groundspeak:long_description html="True">&lt;br /&gt;
  1799. &lt;br /&gt;
  1800. &lt;br /&gt;
  1801. &lt;br /&gt;
  1802. &lt;br /&gt;
  1803. &lt;br /&gt;
  1804. &lt;br /&gt;
  1805. &lt;br /&gt;
  1806. &lt;br /&gt;
  1807. &lt;br /&gt;
  1808. &lt;br /&gt;
  1809. &lt;br /&gt;
  1810. &lt;center&gt;&lt;a rel="nofollow" href="http://www.gonil.org/"&gt;&lt;img src=
  1811. "http://www.gonil.org/i/m/m_gonil_3_1.jpg" /&gt;&lt;/a&gt;&lt;/center&gt;
  1812. &lt;center&gt;Geocachers of Northeastern Illinois&lt;/center&gt;</groundspeak:long_description>
  1813.       <groundspeak:encoded_hints>pill bottle
  1814.  
  1815.  
  1816. </groundspeak:encoded_hints>
  1817.       <groundspeak:logs>
  1818.         <groundspeak:log id="197498948">
  1819.           <groundspeak:date>2011-11-06T20:00:00Z</groundspeak:date>
  1820.           <groundspeak:type>Found it</groundspeak:type>
  1821.           <groundspeak:finder id="2178108">Team Sukie</groundspeak:finder>
  1822.           <groundspeak:text encoded="False">Picking up some caches in Naperville and get Sukie out for a walk. TFTC</groundspeak:text>
  1823.         </groundspeak:log>
  1824.         <groundspeak:log id="197122980">
  1825.           <groundspeak:date>2011-11-05T19:00:00Z</groundspeak:date>
  1826.           <groundspeak:type>Found it</groundspeak:type>
  1827.           <groundspeak:finder id="961097">TeacherMike</groundspeak:finder>
  1828.           <groundspeak:text encoded="False">Out with Salz today after the event.  Quick grab while working the area.  No problems.  TFTH.</groundspeak:text>
  1829.         </groundspeak:log>
  1830.         <groundspeak:log id="197121619">
  1831.           <groundspeak:date>2011-11-05T19:00:00Z</groundspeak:date>
  1832.           <groundspeak:type>Found it</groundspeak:type>
  1833.           <groundspeak:finder id="1214585">salz69</groundspeak:finder>
  1834.           <groundspeak:text encoded="False">Hit the greater Naperville area with TeacherMike after the DST event, this guy was in our flight pattern. TFTC!!!</groundspeak:text>
  1835.         </groundspeak:log>
  1836.         <groundspeak:log id="194458171">
  1837.           <groundspeak:date>2011-10-22T19:00:00Z</groundspeak:date>
  1838.           <groundspeak:type>Found it</groundspeak:type>
  1839.           <groundspeak:finder id="3111007">10000Steps</groundspeak:finder>
  1840.           <groundspeak:text encoded="False">Nice sunny fall day to get a cache or two.  I can't wait until they complete the nearby bike path next summer!  TFTC!</groundspeak:text>
  1841.         </groundspeak:log>
  1842.         <groundspeak:log id="194413605">
  1843.           <groundspeak:date>2011-10-22T19:00:00Z</groundspeak:date>
  1844.           <groundspeak:type>Found it</groundspeak:type>
  1845.           <groundspeak:finder id="1766802">ajmitchell</groundspeak:finder>
  1846.           <groundspeak:text encoded="False">Out to see how the new trail is coming along.  TFTC</groundspeak:text>
  1847.         </groundspeak:log>
  1848.       </groundspeak:logs>
  1849.       <groundspeak:travelbugs />
  1850.     </groundspeak:cache>
  1851.   </wpt>
  1852.   <wpt lat="41.805867" lon="-88.14755">
  1853.     <time>2011-10-11T07:00:00Z</time>
  1854.     <name>GC35TDG</name>
  1855.     <desc>Go Speed Racer! (88) by Greenback, Traditional Cache (2/2)</desc>
  1856.     <url>http://www.geocaching.com/seek/cache_details.aspx?guid=657f8a45-75f3-4c75-aed8-d1b02edc9476</url>
  1857.     <urlname>Go Speed Racer! (88)</urlname>
  1858.     <sym>Geocache</sym>
  1859.     <type>Geocache|Traditional Cache</type>
  1860.     <groundspeak:cache id="2532842" available="True" archived="False" xmlns:groundspeak="http://www.groundspeak.com/cache/1/0">
  1861.       <groundspeak:name>Go Speed Racer! (88)</groundspeak:name>
  1862.       <groundspeak:placed_by>Greenback</groundspeak:placed_by>
  1863.       <groundspeak:owner id="61124">Greenback</groundspeak:owner>
  1864.       <groundspeak:type>Traditional Cache</groundspeak:type>
  1865.       <groundspeak:container>Small</groundspeak:container>
  1866.       <groundspeak:difficulty>2</groundspeak:difficulty>
  1867.       <groundspeak:terrain>2</groundspeak:terrain>
  1868.       <groundspeak:country>United States</groundspeak:country>
  1869.       <groundspeak:state>Illinois</groundspeak:state>
  1870.       <groundspeak:short_description html="True">
  1871.       </groundspeak:short_description>
  1872.       <groundspeak:long_description html="True">Between high voltage and high speed cars you're sure to get a
  1873. charge out of this cache. You're seeking a small lock-n-lock
  1874. container which contains a pencil and log sheet.&lt;br /&gt;
  1875. &lt;br /&gt;
  1876. This cache is NOT accessible from the toll road.&lt;br /&gt;
  1877. &lt;br /&gt;
  1878. &lt;p align="center"&gt;&lt;a rel="nofollow" href=
  1879. "http://www.gogeocaching.com/" target="_blank"&gt;&lt;img src=
  1880. "http://gogeocaching.com/memberof_logo_blue.jpg" /&gt;&lt;/a&gt;&lt;/p&gt;</groundspeak:long_description>
  1881.       <groundspeak:encoded_hints>Crotchety old man</groundspeak:encoded_hints>
  1882.       <groundspeak:logs>
  1883.         <groundspeak:log id="200498891">
  1884.           <groundspeak:date>2011-11-22T20:00:00Z</groundspeak:date>
  1885.           <groundspeak:type>Found it</groundspeak:type>
  1886.           <groundspeak:finder id="1622205">airguide</groundspeak:finder>
  1887.           <groundspeak:text encoded="False">Out with Mandy,Pickles,geoKens &amp; Fed on a cold windy and rainy Autumn day. GeoKens spotted this one from below and directed us to it TFTC [:)]</groundspeak:text>
  1888.         </groundspeak:log>
  1889.         <groundspeak:log id="200297855">
  1890.           <groundspeak:date>2011-11-22T20:00:00Z</groundspeak:date>
  1891.           <groundspeak:type>Found it</groundspeak:type>
  1892.           <groundspeak:finder id="1753034">geoKens</groundspeak:finder>
  1893.           <groundspeak:text encoded="False">Out with Fed, Mandy, Pickles, and airguide. The Tuesday Hunt Club hunted in rain for the 2nd time this year. TFTH. Some took the hi road and some the low road. I spotted from the low rd.</groundspeak:text>
  1894.         </groundspeak:log>
  1895.         <groundspeak:log id="200297449">
  1896.           <groundspeak:date>2011-11-22T20:00:00Z</groundspeak:date>
  1897.           <groundspeak:type>Found it</groundspeak:type>
  1898.           <groundspeak:finder id="424523">MandyCamp</groundspeak:finder>
  1899.           <groundspeak:text encoded="False">Caching in the rain with Airguide, geoKens, Mr. Pickles and fed.  geoKens spotted it from below. TFTC</groundspeak:text>
  1900.         </groundspeak:log>
  1901.         <groundspeak:log id="200297167">
  1902.           <groundspeak:date>2011-11-22T20:00:00Z</groundspeak:date>
  1903.           <groundspeak:type>Found it</groundspeak:type>
  1904.           <groundspeak:finder id="2274995">Mr.Pickles</groundspeak:finder>
  1905.           <groundspeak:text encoded="False">A slow walk today in the rain.  TFTC</groundspeak:text>
  1906.         </groundspeak:log>
  1907.         <groundspeak:log id="200293162">
  1908.           <groundspeak:date>2011-11-22T20:00:00Z</groundspeak:date>
  1909.           <groundspeak:type>Found it</groundspeak:type>
  1910.           <groundspeak:finder id="176194">fed</groundspeak:finder>
  1911.           <groundspeak:text encoded="False">Think gK spied this from below at the same time I did from above. We directed AG to the spot at 14:20. SL The trail was pretty messy with all the drizzle today. Glad there was lots of grass at parking to clean off the footware. Thanks Greenback</groundspeak:text>
  1912.         </groundspeak:log>
  1913.       </groundspeak:logs>
  1914.       <groundspeak:travelbugs />
  1915.     </groundspeak:cache>
  1916.   </wpt>
  1917.   <wpt lat="41.7759" lon="-88.168167">
  1918.     <time>2011-03-03T08:00:00Z</time>
  1919.     <name>GC2PNC0</name>
  1920.     <desc>Scooter Stayed Dry by Scooter, Traditional Cache (1.5/1.5)</desc>
  1921.     <url>http://www.geocaching.com/seek/cache_details.aspx?guid=aa97685f-985e-443a-9a05-f03839ff903a</url>
  1922.     <urlname>Scooter Stayed Dry</urlname>
  1923.     <sym>Geocache</sym>
  1924.     <type>Geocache|Traditional Cache</type>
  1925.     <groundspeak:cache id="2111877" available="True" archived="False" xmlns:groundspeak="http://www.groundspeak.com/cache/1/0">
  1926.       <groundspeak:name>Scooter Stayed Dry</groundspeak:name>
  1927.       <groundspeak:placed_by>Scooter</groundspeak:placed_by>
  1928.       <groundspeak:owner id="331172">badlands</groundspeak:owner>
  1929.       <groundspeak:type>Traditional Cache</groundspeak:type>
  1930.       <groundspeak:container>Micro</groundspeak:container>
  1931.       <groundspeak:difficulty>1.5</groundspeak:difficulty>
  1932.       <groundspeak:terrain>1.5</groundspeak:terrain>
  1933.       <groundspeak:country>United States</groundspeak:country>
  1934.       <groundspeak:state>Illinois</groundspeak:state>
  1935.       <groundspeak:short_description html="True">This cache has been placed in conjunction with the Daylight Savings
  1936. Time Breakfast hosted by G.O. John &amp;amp; Carol and Moodygrrl</groundspeak:short_description>
  1937.       <groundspeak:long_description html="True">&lt;br /&gt;
  1938. &lt;br /&gt;
  1939. &lt;br /&gt;
  1940. &lt;br /&gt;
  1941. &lt;br /&gt;
  1942. &lt;br /&gt;
  1943. &lt;br /&gt;
  1944. &lt;br /&gt;
  1945. &lt;br /&gt;
  1946. &lt;br /&gt;
  1947. &lt;br /&gt;
  1948. &lt;br /&gt;
  1949. &lt;center&gt;&lt;a rel="nofollow" href="http://www.gonil.org/"&gt;&lt;img src=
  1950. "http://www.gonil.org/i/m/m_gonil_3_1.jpg" /&gt;&lt;/a&gt;&lt;/center&gt;
  1951. &lt;center&gt;Geocachers of Northeastern Illinois&lt;/center&gt;</groundspeak:long_description>
  1952.       <groundspeak:encoded_hints>pill bottle</groundspeak:encoded_hints>
  1953.       <groundspeak:logs>
  1954.         <groundspeak:log id="197122983">
  1955.           <groundspeak:date>2011-11-05T19:00:00Z</groundspeak:date>
  1956.           <groundspeak:type>Found it</groundspeak:type>
  1957.           <groundspeak:finder id="961097">TeacherMike</groundspeak:finder>
  1958.           <groundspeak:text encoded="False">Out with Salz today after the event.  Quick grab while working the area.  No problems.  TFTH.</groundspeak:text>
  1959.         </groundspeak:log>
  1960.         <groundspeak:log id="197121597">
  1961.           <groundspeak:date>2011-11-05T19:00:00Z</groundspeak:date>
  1962.           <groundspeak:type>Found it</groundspeak:type>
  1963.           <groundspeak:finder id="1214585">salz69</groundspeak:finder>
  1964.           <groundspeak:text encoded="False">Hit the greater Naperville area with TeacherMike after the DST event, this guy was in our flight pattern. TFTC!!!</groundspeak:text>
  1965.         </groundspeak:log>
  1966.         <groundspeak:log id="194459443">
  1967.           <groundspeak:date>2011-10-22T19:00:00Z</groundspeak:date>
  1968.           <groundspeak:type>Found it</groundspeak:type>
  1969.           <groundspeak:finder id="3111007">10000Steps</groundspeak:finder>
  1970.           <groundspeak:text encoded="False">Another lovely cache along the mighty raging DuPage River!  Looks like some beavers are interested in caching too.</groundspeak:text>
  1971.         </groundspeak:log>
  1972.         <groundspeak:log id="194413993">
  1973.           <groundspeak:date>2011-10-22T19:00:00Z</groundspeak:date>
  1974.           <groundspeak:type>Found it</groundspeak:type>
  1975.           <groundspeak:finder id="1766802">ajmitchell</groundspeak:finder>
  1976.           <groundspeak:text encoded="False">Out to see how the new trail is coming along.  TFTC</groundspeak:text>
  1977.         </groundspeak:log>
  1978.         <groundspeak:log id="193427498">
  1979.           <groundspeak:date>2011-10-18T19:00:00Z</groundspeak:date>
  1980.           <groundspeak:type>Found it</groundspeak:type>
  1981.           <groundspeak:finder id="4205557">mau724</groundspeak:finder>
  1982.           <groundspeak:text encoded="False">Found it! Yes, we stayed dry too. TFTC!</groundspeak:text>
  1983.         </groundspeak:log>
  1984.       </groundspeak:logs>
  1985.       <groundspeak:travelbugs />
  1986.     </groundspeak:cache>
  1987.   </wpt>
  1988.   <wpt lat="41.7918" lon="-88.262717">
  1989.     <time>2011-05-19T07:00:00Z</time>
  1990.     <name>GC2WHQZ</name>
  1991.     <desc>Scooter Knows The End Is Near by Scooter's Dog Spot, Traditional Cache (1.5/1.5)</desc>
  1992.     <url>http://www.geocaching.com/seek/cache_details.aspx?guid=2a3dd479-20f8-4fb0-a8e0-7b011661eb4f</url>
  1993.     <urlname>Scooter Knows The End Is Near</urlname>
  1994.     <sym>Geocache</sym>
  1995.     <type>Geocache|Traditional Cache</type>
  1996.     <groundspeak:cache id="2257359" available="True" archived="False" xmlns:groundspeak="http://www.groundspeak.com/cache/1/0">
  1997.       <groundspeak:name>Scooter Knows The End Is Near</groundspeak:name>
  1998.       <groundspeak:placed_by>Scooter's Dog Spot</groundspeak:placed_by>
  1999.       <groundspeak:owner id="331172">badlands</groundspeak:owner>
  2000.       <groundspeak:type>Traditional Cache</groundspeak:type>
  2001.       <groundspeak:container>Micro</groundspeak:container>
  2002.       <groundspeak:difficulty>1.5</groundspeak:difficulty>
  2003.       <groundspeak:terrain>1.5</groundspeak:terrain>
  2004.       <groundspeak:country>United States</groundspeak:country>
  2005.       <groundspeak:state>Illinois</groundspeak:state>
  2006.       <groundspeak:short_description html="True">
  2007.       </groundspeak:short_description>
  2008.       <groundspeak:long_description html="True">&lt;center&gt;This cache has been placed in conjunction with an event
  2009. hosted by:&lt;br /&gt;
  2010. &lt;br /&gt;
  2011. &lt;a href=
  2012. "http://www.geocaching.com/profile/?guid=6de9b44a-7e32-4195-ba27-f2a3ae92ec6b&amp;amp;wid=8b330e9a-1265-45f2-80db-0b513eafd898&amp;amp;ds=2"
  2013. target="_blank" rel="nofollow"&gt;Dutchlandian&lt;/a&gt;&lt;/center&gt;
  2014. &lt;br /&gt;
  2015. &lt;center&gt;&lt;a href="http://coord.info/GC2QDDM" target="_blank" rel=
  2016. "nofollow"&gt;I Scream for a "Dutch Treat"&lt;/a&gt;&lt;/center&gt;
  2017. &lt;br /&gt;
  2018. &lt;br /&gt;
  2019. &lt;center&gt;&lt;a rel="nofollow" href="http://www.gonil.org/"&gt;&lt;img src=
  2020. "http://www.gonil.org/i/m/m_gonil_3_1.jpg" /&gt;&lt;/a&gt;&lt;/center&gt;
  2021. &lt;br /&gt;
  2022. &lt;center&gt;Geocachers of Northeastern Illinois&lt;/center&gt;
  2023. &lt;br /&gt;</groundspeak:long_description>
  2024.       <groundspeak:encoded_hints>
  2025.       </groundspeak:encoded_hints>
  2026.       <groundspeak:logs>
  2027.         <groundspeak:log id="197664906">
  2028.           <groundspeak:date>2011-11-05T19:00:00Z</groundspeak:date>
  2029.           <groundspeak:type>Found it</groundspeak:type>
  2030.           <groundspeak:finder id="91151">JustUsTwo</groundspeak:finder>
  2031.           <groundspeak:text encoded="False">The end was near and we spotted this in plain sight.  [:P]       Not that any muggles along this path would bother to check it out though.  Cammo will be better in the spring!  [;)]         
  2032.  
  2033. Thanks, “Scooter’s Dog Spot” for the hide!      [:D]</groundspeak:text>
  2034.         </groundspeak:log>
  2035.         <groundspeak:log id="197499849">
  2036.           <groundspeak:date>2011-11-05T19:00:00Z</groundspeak:date>
  2037.           <groundspeak:type>Found it</groundspeak:type>
  2038.           <groundspeak:finder id="161275">lucy~</groundspeak:finder>
  2039.           <groundspeak:text encoded="False">We all chuckled at this one...it was a might naked out there. But I bet it goes unnoticed. Sometimes on plain sight is the best cammo.
  2040.  
  2041. thanks badlands for the fun and the find.</groundspeak:text>
  2042.         </groundspeak:log>
  2043.         <groundspeak:log id="197146656">
  2044.           <groundspeak:date>2011-11-05T19:00:00Z</groundspeak:date>
  2045.           <groundspeak:type>Found it</groundspeak:type>
  2046.           <groundspeak:finder id="331902">vtaltos_1</groundspeak:finder>
  2047.           <groundspeak:text encoded="False">Spotted it from the trail, might need some ammo tape to hie it a little better. TFTC</groundspeak:text>
  2048.         </groundspeak:log>
  2049.         <groundspeak:log id="197117392">
  2050.           <groundspeak:date>2011-11-05T19:00:00Z</groundspeak:date>
  2051.           <groundspeak:type>Found it</groundspeak:type>
  2052.           <groundspeak:finder id="3032409">Fluxell</groundspeak:finder>
  2053.           <groundspeak:text encoded="False">Nice and quick. TFTC</groundspeak:text>
  2054.         </groundspeak:log>
  2055.         <groundspeak:log id="197110290">
  2056.           <groundspeak:date>2011-11-05T19:00:00Z</groundspeak:date>
  2057.           <groundspeak:type>Found it</groundspeak:type>
  2058.           <groundspeak:finder id="1581238">j.brand</groundspeak:finder>
  2059.           <groundspeak:text encoded="False">Spotted this one from the trail, whilst on a post-breakfast even caching run. TFTH!</groundspeak:text>
  2060.         </groundspeak:log>
  2061.       </groundspeak:logs>
  2062.       <groundspeak:travelbugs />
  2063.     </groundspeak:cache>
  2064.   </wpt>
  2065.   <wpt lat="41.79365" lon="-88.2661">
  2066.     <time>2011-02-27T08:00:00Z</time>
  2067.     <name>GC2PDHB</name>
  2068.     <desc>DP IL #1 by G.O. John and Carol, Traditional Cache (1/1.5)</desc>
  2069.     <url>http://www.geocaching.com/seek/cache_details.aspx?guid=9db5c3d3-70a3-431a-a4f1-00f785f5db52</url>
  2070.     <urlname>DP IL #1</urlname>
  2071.     <sym>Geocache</sym>
  2072.     <type>Geocache|Traditional Cache</type>
  2073.     <groundspeak:cache id="2104355" available="True" archived="False" xmlns:groundspeak="http://www.groundspeak.com/cache/1/0">
  2074.       <groundspeak:name>DP IL #1</groundspeak:name>
  2075.       <groundspeak:placed_by>G.O. John and Carol</groundspeak:placed_by>
  2076.       <groundspeak:owner id="235754">G.O. John and Carol</groundspeak:owner>
  2077.       <groundspeak:type>Traditional Cache</groundspeak:type>
  2078.       <groundspeak:container>Micro</groundspeak:container>
  2079.       <groundspeak:difficulty>1</groundspeak:difficulty>
  2080.       <groundspeak:terrain>1.5</groundspeak:terrain>
  2081.       <groundspeak:country>United States</groundspeak:country>
  2082.       <groundspeak:state>Illinois</groundspeak:state>
  2083.       <groundspeak:short_description html="True">
  2084.       </groundspeak:short_description>
  2085.       <groundspeak:long_description html="True">&lt;font size="4"&gt;&lt;font face="Arial"&gt;This cache was&amp;nbsp;hidden for
  2086. the first annual "&lt;/font&gt; &lt;a href=
  2087. "http://www.geocaching.com/seek/cache_details.aspx?guid=2476befd-408a-4ad2-a99e-76a1bd8e8c39"&gt;
  2088. &lt;font face="Arial"&gt;It's Great to See DST!&amp;nbsp; &amp;nbsp;A Breakfast
  2089. Event&lt;/font&gt;&lt;/a&gt; &lt;font face="Arial"&gt;".&lt;br /&gt;
  2090. &lt;br /&gt;
  2091. Carol and I found a bunch of DP (Dog Post) caches in Kentucky and
  2092. Tennessee recently, and I thought they were kind of fun. The guy
  2093. who hid the ones we found copied the idea from DP caches he'd found
  2094. in Arkansas. We've brought the idea back to Illinois, and we hope
  2095. you find these to be fun little driveups. They're typically in out
  2096. of the way places, and they shouldn't draw a lot of attention from
  2097. muggles. Almost all of these are quick and easy park and grabs, so
  2098. don't expect nothin' fancy now...&lt;/font&gt;&lt;/font&gt;</groundspeak:long_description>
  2099.       <groundspeak:encoded_hints>
  2100.       </groundspeak:encoded_hints>
  2101.       <groundspeak:logs>
  2102.         <groundspeak:log id="197488889">
  2103.           <groundspeak:date>2011-10-20T19:00:00Z</groundspeak:date>
  2104.           <groundspeak:type>Found it</groundspeak:type>
  2105.           <groundspeak:finder id="331172">badlands</groundspeak:finder>
  2106.           <groundspeak:text encoded="False">Quick stop on the way home from work.  Thanks G.O.John and Carol for the hide.</groundspeak:text>
  2107.         </groundspeak:log>
  2108.         <groundspeak:log id="191874784">
  2109.           <groundspeak:date>2011-10-10T19:00:00Z</groundspeak:date>
  2110.           <groundspeak:type>Found it</groundspeak:type>
  2111.           <groundspeak:finder id="1512673">djpd1023</groundspeak:finder>
  2112.           <groundspeak:text encoded="False">Dog Post! Quick and painless work here. TFTS!</groundspeak:text>
  2113.         </groundspeak:log>
  2114.         <groundspeak:log id="191693449">
  2115.           <groundspeak:date>2011-10-09T19:00:00Z</groundspeak:date>
  2116.           <groundspeak:type>Found it</groundspeak:type>
  2117.           <groundspeak:finder id="114695">Leader1</groundspeak:finder>
  2118.           <groundspeak:text encoded="False">Nice hide.  Out with my wife looking for a new home and needed to get my cache fix. TFTC</groundspeak:text>
  2119.         </groundspeak:log>
  2120.         <groundspeak:log id="189769977">
  2121.           <groundspeak:date>2011-10-01T17:44:32Z</groundspeak:date>
  2122.           <groundspeak:type>Found it</groundspeak:type>
  2123.           <groundspeak:finder id="4896043">Senninha27</groundspeak:finder>
  2124.           <groundspeak:text encoded="False">Another R. If we don't find an even number of Ls soon I'm going to get really antsy. </groundspeak:text>
  2125.         </groundspeak:log>
  2126.         <groundspeak:log id="186792827">
  2127.           <groundspeak:date>2011-09-15T19:00:00Z</groundspeak:date>
  2128.           <groundspeak:type>Found it</groundspeak:type>
  2129.           <groundspeak:finder id="543890">Abell</groundspeak:finder>
  2130.           <groundspeak:text encoded="False">Those bozos wouldn't let me get any of the DP caches.  Guess I wasn't quick enough out of the car.</groundspeak:text>
  2131.         </groundspeak:log>
  2132.       </groundspeak:logs>
  2133.       <groundspeak:travelbugs />
  2134.     </groundspeak:cache>
  2135.   </wpt>
  2136.   <wpt lat="41.774917" lon="-88.250933">
  2137.     <time>2010-11-27T08:00:00Z</time>
  2138.     <name>GC2JTJH</name>
  2139.     <desc>Bamm-Bamm by dnfu, Traditional Cache (1.5/1)</desc>
  2140.     <url>http://www.geocaching.com/seek/cache_details.aspx?guid=794cc514-41d3-415e-9638-441b0b36168a</url>
  2141.     <urlname>Bamm-Bamm</urlname>
  2142.     <sym>Geocache</sym>
  2143.     <type>Geocache|Traditional Cache</type>
  2144.     <groundspeak:cache id="1996760" available="True" archived="False" xmlns:groundspeak="http://www.groundspeak.com/cache/1/0">
  2145.       <groundspeak:name>Bamm-Bamm</groundspeak:name>
  2146.       <groundspeak:placed_by>dnfu</groundspeak:placed_by>
  2147.       <groundspeak:owner id="2714879">dnfu</groundspeak:owner>
  2148.       <groundspeak:type>Traditional Cache</groundspeak:type>
  2149.       <groundspeak:container>Micro</groundspeak:container>
  2150.       <groundspeak:difficulty>1.5</groundspeak:difficulty>
  2151.       <groundspeak:terrain>1</groundspeak:terrain>
  2152.       <groundspeak:country>United States</groundspeak:country>
  2153.       <groundspeak:state>Illinois</groundspeak:state>
  2154.       <groundspeak:short_description html="False">The cache is placed in a retaining wall, in a spot hidden from general view along on an easy path.
  2155.  
  2156. It is located in the same spot as baker25’s recently archived ‘Freight Train to Boulder’. If you hunted that original cache you can expect a different experience with this new one.</groundspeak:short_description>
  2157.       <groundspeak:long_description html="False">You are looking for the smallest rock there – a five pound rock about the size of a baseball cap. 
  2158.  
  2159. Please note that this cache is wheelchair accessible; it is not down the hill toward the tracks. 
  2160.  
  2161. Final note: This hide uses a “Geo John and Carol” seed cache.  Thanks GOJAC!</groundspeak:long_description>
  2162.       <groundspeak:encoded_hints>
  2163.       </groundspeak:encoded_hints>
  2164.       <groundspeak:logs>
  2165.         <groundspeak:log id="199711623">
  2166.           <groundspeak:date>2011-11-05T19:00:00Z</groundspeak:date>
  2167.           <groundspeak:type>Found it</groundspeak:type>
  2168.           <groundspeak:finder id="4014037">LEGOexplorer</groundspeak:finder>
  2169.           <groundspeak:text encoded="False">Found it with mom, dad and a group of cachers after the event. We signed the log as the Breakfast Club.</groundspeak:text>
  2170.         </groundspeak:log>
  2171.         <groundspeak:log id="198070019">
  2172.           <groundspeak:date>2011-11-05T19:00:00Z</groundspeak:date>
  2173.           <groundspeak:type>Found it</groundspeak:type>
  2174.           <groundspeak:finder id="2051259">BRBTLawson</groundspeak:finder>
  2175.           <groundspeak:text encoded="False">Out caching after a local event.  TFTC!!!  BRBTLawson</groundspeak:text>
  2176.         </groundspeak:log>
  2177.         <groundspeak:log id="198069267">
  2178.           <groundspeak:date>2011-11-05T19:00:00Z</groundspeak:date>
  2179.           <groundspeak:type>Found it</groundspeak:type>
  2180.           <groundspeak:finder id="1904304">sunshnface</groundspeak:finder>
  2181.           <groundspeak:text encoded="False">Found after the DST event.</groundspeak:text>
  2182.         </groundspeak:log>
  2183.         <groundspeak:log id="197923599">
  2184.           <groundspeak:date>2011-11-05T19:00:00Z</groundspeak:date>
  2185.           <groundspeak:type>Found it</groundspeak:type>
  2186.           <groundspeak:finder id="744677">racer2814</groundspeak:finder>
  2187.           <groundspeak:text encoded="False">Found in between events today. Signed log as TBC for The Breakfast Crew which consisted of KingEvo, King0806, spierson82, geecmom, Texican Space Cowboy, and myself. We made a giant loop through the area and found many caches. Thanks for placing this one. Orale! Live, laugh, love, cache.
  2188.  
  2189. King0806 made short work of this one.</groundspeak:text>
  2190.         </groundspeak:log>
  2191.         <groundspeak:log id="197556444">
  2192.           <groundspeak:date>2011-11-05T19:00:00Z</groundspeak:date>
  2193.           <groundspeak:type>Found it</groundspeak:type>
  2194.           <groundspeak:finder id="2368594">bapierson</groundspeak:finder>
  2195.           <groundspeak:text encoded="False">TFTC</groundspeak:text>
  2196.         </groundspeak:log>
  2197.       </groundspeak:logs>
  2198.       <groundspeak:travelbugs />
  2199.     </groundspeak:cache>
  2200.   </wpt>
  2201.   <wpt lat="41.763983" lon="-88.187233">
  2202.     <time>2011-07-29T07:00:00Z</time>
  2203.     <name>GC2Y2MG</name>
  2204.     <desc>Devil's Trap #1 by YPE1999, Traditional Cache (1.5/1.5)</desc>
  2205.     <url>http://www.geocaching.com/seek/cache_details.aspx?guid=4be7fa4c-afb3-4bae-81e8-81157007a9b5</url>
  2206.     <urlname>Devil's Trap #1</urlname>
  2207.     <sym>Geocache</sym>
  2208.     <type>Geocache|Traditional Cache</type>
  2209.     <groundspeak:cache id="2302419" available="True" archived="False" xmlns:groundspeak="http://www.groundspeak.com/cache/1/0">
  2210.       <groundspeak:name>Devil's Trap #1</groundspeak:name>
  2211.       <groundspeak:placed_by>YPE1999</groundspeak:placed_by>
  2212.       <groundspeak:owner id="4382392">YPE1999</groundspeak:owner>
  2213.       <groundspeak:type>Traditional Cache</groundspeak:type>
  2214.       <groundspeak:container>Micro</groundspeak:container>
  2215.       <groundspeak:difficulty>1.5</groundspeak:difficulty>
  2216.       <groundspeak:terrain>1.5</groundspeak:terrain>
  2217.       <groundspeak:country>United States</groundspeak:country>
  2218.       <groundspeak:state>Illinois</groundspeak:state>
  2219.       <groundspeak:short_description html="False">This is the 1st in a set of 11.
  2220.  
  2221. There are 10 caches hidden in a circle to create a pentagram with the 11th cache, or Devil’s Gate, in the middle. The Directions and first set of numbers for each direction are already given to you, now you just have to find the second part of each set. I have given you some the coordinates. Use the directions below to find the rest of the coordinates.
  2222.  
  2223. And THANK YOU very much to Electric Mouse for being such a big help in making this set possible!</groundspeak:short_description>
  2224.       <groundspeak:long_description html="False">How to find the coordinates
  2225.  
  2226. Alright so there are 10 caches hidden in a circle to create a pentagram with the 11th cache, or Devil’s Gate, in the middle. The Directions and first set of numbers for each direction are already given to you, now you just have to find the second part of each set.
  2227.  
  2228. The caches have the following characters of the coordinates:
  2229.  
  2230.           First – "N"
  2231.           Second – "4"
  2232.           Third – "1
  2233.           Fourth – Devil’s Trap #1 (http://coord.info/GC2Y2MG)
  2234.           Fifth – Devil’s Trap #2 (http://coord.info/GC2Y5EX)
  2235.           Sixth – Devil’s Trap #3 (http://coord.info/GC2Y5F5)
  2236.           Seventh – Devil’s Trap #4 (http://coord.info/GC2Y5FC)
  2237.           Eight – Devil’s Trap #5 (http://coord.info/GC2Y5CP)
  2238.           Ninth – "W"
  2239.           Tenth –  "8"
  2240.           Eleventh – "8"
  2241.           Twelfth – Devil’s Trap #6 (http://coord.info/GC2Y5FM)
  2242.           Thirteenth – Devil’s Trap #7 (http://coord.info/GC2Y5D4)
  2243.           Fourteenth – Devil’s Trap #8 (http://coord.info/GC2Y5GG)
  2244.           Fifteenth – Devil’s Trap #9 (http://coord.info/GC2Y5E1)
  2245.           Sixteenth – Devil’s Trap #10 (http://coord.info/GC2Y5GX)
  2246.  
  2247. N 41 _ _ . _ _ _
  2248. W 88 _ _ . _ _ _
  2249.  
  2250.  
  2251. Find those 10 caches and plug in the coordinates correctly and you will have the coordinates to find the Devil’s Gate cache in the middle (http://coord.info/GC2Y2KE)
  2252. ________________________________________________________
  2253.  
  2254. *The following story is just that, a story. None of this is true, just taking an idea from my favorite TV, Supernatural, and making a cache set out of it.*
  2255.  
  2256. A quick overview of Supernatural.
  2257.  
  2258. Supernatural is an American supernatural and horror television series created by Eric Kripke, which debuted on September 13, 2005 on The WB, and is now part of The CW's lineup. Starring Jared Padalecki as Sam Winchester and Jensen Ackles as Dean Winchester, the series follows the brothers as they hunt demons and other figures of the supernatural.
  2259.  
  2260. What is a Devil’s Trap?
  2261.  
  2262. A Devil’s Trap is a mystical symbol that contains a demon and strips it of its power when the demon is inside of it. It looks like a pentagram, or a star in a circle.
  2263.  
  2264. In one of my favorite Supernatural episodes, “All Hell Breaks Loose Part 2,” it is revealed that gun maker Samuel Colt created a massive Devil’s Trap that covers hundreds of miles. He did this by creating five churches as the points of a star and connected them using iron rail lines to create the pentagram symbol with a Devil’s Gate, or gate to Hell directly in the center, therefore locking in and out all demons. That is what this cache set makes, just on a smaller scale.</groundspeak:long_description>
  2265.       <groundspeak:encoded_hints>
  2266.       </groundspeak:encoded_hints>
  2267.       <groundspeak:logs>
  2268.         <groundspeak:log id="198788160">
  2269.           <groundspeak:date>2011-11-13T20:00:00Z</groundspeak:date>
  2270.           <groundspeak:type>Found it</groundspeak:type>
  2271.           <groundspeak:finder id="537286">Siamese Retriever</groundspeak:finder>
  2272.           <groundspeak:text encoded="False">11/13/2011 14:53 Found: I was hunting a lot of next closest caches today, and this was one of them.  Thanks for the hide(s!).</groundspeak:text>
  2273.         </groundspeak:log>
  2274.         <groundspeak:log id="198779271">
  2275.           <groundspeak:date>2011-11-13T20:00:00Z</groundspeak:date>
  2276.           <groundspeak:type>Found it</groundspeak:type>
  2277.           <groundspeak:finder id="2201023">QJ/WIN</groundspeak:finder>
  2278.           <groundspeak:text encoded="False">Simple find right off the menu.</groundspeak:text>
  2279.         </groundspeak:log>
  2280.         <groundspeak:log id="198764508">
  2281.           <groundspeak:date>2011-11-13T20:00:00Z</groundspeak:date>
  2282.           <groundspeak:type>Found it</groundspeak:type>
  2283.           <groundspeak:finder id="900812">Babygirl64</groundspeak:finder>
  2284.           <groundspeak:text encoded="False">Windy but beautiful day to cache before the snow flies.  Made really quick work of this one.  TFTC!</groundspeak:text>
  2285.         </groundspeak:log>
  2286.         <groundspeak:log id="197446745">
  2287.           <groundspeak:date>2011-11-06T22:33:26Z</groundspeak:date>
  2288.           <groundspeak:type>Found it</groundspeak:type>
  2289.           <groundspeak:finder id="3134525">Kerstin-cachers</groundspeak:finder>
  2290.           <groundspeak:text encoded="False">Made a quick grab. TFTC</groundspeak:text>
  2291.         </groundspeak:log>
  2292.         <groundspeak:log id="197778722">
  2293.           <groundspeak:date>2011-11-05T19:00:00Z</groundspeak:date>
  2294.           <groundspeak:type>Found it</groundspeak:type>
  2295.           <groundspeak:finder id="1907271">j3yoda</groundspeak:finder>
  2296.           <groundspeak:text encoded="False">Michigan_Chris, AThrillOfTheHunt and I used every second of daylight to find caches all over the area!  Gracias por el cache!</groundspeak:text>
  2297.         </groundspeak:log>
  2298.       </groundspeak:logs>
  2299.       <groundspeak:travelbugs />
  2300.     </groundspeak:cache>
  2301.   </wpt>
  2302.   <wpt lat="41.859617" lon="-88.1941">
  2303.     <time>2011-08-04T07:00:00Z</time>
  2304.     <name>GC31FTB</name>
  2305.     <desc>Quiet Sunday by Jacobn'I, Traditional Cache (1.5/2)</desc>
  2306.     <url>http://www.geocaching.com/seek/cache_details.aspx?guid=0c587b2d-65c9-42f3-96d5-a528525c62d8</url>
  2307.     <urlname>Quiet Sunday</urlname>
  2308.     <sym>Geocache</sym>
  2309.     <type>Geocache|Traditional Cache</type>
  2310.     <groundspeak:cache id="2404435" available="True" archived="False" xmlns:groundspeak="http://www.groundspeak.com/cache/1/0">
  2311.       <groundspeak:name>Quiet Sunday</groundspeak:name>
  2312.       <groundspeak:placed_by>Jacobn'I</groundspeak:placed_by>
  2313.       <groundspeak:owner id="1911595">Jacobn'I</groundspeak:owner>
  2314.       <groundspeak:type>Traditional Cache</groundspeak:type>
  2315.       <groundspeak:container>Small</groundspeak:container>
  2316.       <groundspeak:difficulty>1.5</groundspeak:difficulty>
  2317.       <groundspeak:terrain>2</groundspeak:terrain>
  2318.       <groundspeak:country>United States</groundspeak:country>
  2319.       <groundspeak:state>Illinois</groundspeak:state>
  2320.       <groundspeak:short_description html="False">
  2321.       </groundspeak:short_description>
  2322.       <groundspeak:long_description html="False">Even though it's a church it's pretty quiet on Sundays</groundspeak:long_description>
  2323.       <groundspeak:encoded_hints>
  2324.       </groundspeak:encoded_hints>
  2325.       <groundspeak:logs>
  2326.         <groundspeak:log id="199511449">
  2327.           <groundspeak:date>2011-11-18T20:00:00Z</groundspeak:date>
  2328.           <groundspeak:type>Found it</groundspeak:type>
  2329.           <groundspeak:finder id="3624869">DaFia TreTy</groundspeak:finder>
  2330.           <groundspeak:text encoded="False">Out today in an effort to reach 1,200. This was number 1,183. TFTC. DaFia TreTy strikes again!</groundspeak:text>
  2331.         </groundspeak:log>
  2332.         <groundspeak:log id="199364617">
  2333.           <groundspeak:date>2011-11-17T20:00:00Z</groundspeak:date>
  2334.           <groundspeak:type>Found it</groundspeak:type>
  2335.           <groundspeak:finder id="3082491">cachyew</groundspeak:finder>
  2336.           <groundspeak:text encoded="False">A quick grab while passing through the area. TFTC</groundspeak:text>
  2337.         </groundspeak:log>
  2338.         <groundspeak:log id="193545562">
  2339.           <groundspeak:date>2011-10-19T19:00:00Z</groundspeak:date>
  2340.           <groundspeak:type>Found it</groundspeak:type>
  2341.           <groundspeak:finder id="2814054">FelixFamilia</groundspeak:finder>
  2342.           <groundspeak:text encoded="False">What a creepy place!  Made the quick find, stepping over at least a case worth of  empty beer and liquor bottles tossed there.  (We would need a garbage bag or two to clear out that spot.  Is there an open container law exception when it is in a trash bag??  Need to look into that.  We have been pulled over for looking suspicious while geocaching, so we certainly don't want to have that volume of bottles in my car for any length of time!!)  At any rate, it was an easy find at a really odd place.</groundspeak:text>
  2343.         </groundspeak:log>
  2344.         <groundspeak:log id="191352693">
  2345.           <groundspeak:date>2011-10-08T19:00:00Z</groundspeak:date>
  2346.           <groundspeak:type>Found it</groundspeak:type>
  2347.           <groundspeak:finder id="1581238">j.brand</groundspeak:finder>
  2348.           <groundspeak:text encoded="False">Found the cache on the ground, so re-hid in a likely seeming spot. Nice area here. TFTH!</groundspeak:text>
  2349.         </groundspeak:log>
  2350.         <groundspeak:log id="189498462">
  2351.           <groundspeak:date>2011-09-29T19:00:00Z</groundspeak:date>
  2352.           <groundspeak:type>Found it</groundspeak:type>
  2353.           <groundspeak:finder id="230171">toursport</groundspeak:finder>
  2354.           <groundspeak:text encoded="False">Dropped by heading north and made the find at this quiet area.
  2355. TFTC, WHOOP WHOOP !!</groundspeak:text>
  2356.         </groundspeak:log>
  2357.       </groundspeak:logs>
  2358.       <groundspeak:travelbugs>
  2359.         <groundspeak:travelbug id="2987654" ref="TB3N2NW">
  2360.           <groundspeak:name>It's Locked #3</groundspeak:name>
  2361.         </groundspeak:travelbug>
  2362.       </groundspeak:travelbugs>
  2363.     </groundspeak:cache>
  2364.   </wpt>
  2365.   <wpt lat="41.772283" lon="-88.163983">
  2366.     <time>2011-09-30T07:00:00Z</time>
  2367.     <name>GC32KYR</name>
  2368.     <desc>The Geo-Giving Tree by Tommmmm, Traditional Cache (1.5/2)</desc>
  2369.     <url>http://www.geocaching.com/seek/cache_details.aspx?guid=a71a0ed0-aa58-4da5-b86b-2900cd4317c4</url>
  2370.     <urlname>The Geo-Giving Tree</urlname>
  2371.     <sym>Geocache</sym>
  2372.     <type>Geocache|Traditional Cache</type>
  2373.     <groundspeak:cache id="2438207" available="True" archived="False" xmlns:groundspeak="http://www.groundspeak.com/cache/1/0">
  2374.       <groundspeak:name>The Geo-Giving Tree</groundspeak:name>
  2375.       <groundspeak:placed_by>Tommmmm</groundspeak:placed_by>
  2376.       <groundspeak:owner id="1771589">Tommmmm</groundspeak:owner>
  2377.       <groundspeak:type>Traditional Cache</groundspeak:type>
  2378.       <groundspeak:container>Small</groundspeak:container>
  2379.       <groundspeak:difficulty>1.5</groundspeak:difficulty>
  2380.       <groundspeak:terrain>2</groundspeak:terrain>
  2381.       <groundspeak:country>United States</groundspeak:country>
  2382.       <groundspeak:state>Illinois</groundspeak:state>
  2383.       <groundspeak:short_description html="False">Use the RiverWalk for easy access.</groundspeak:short_description>
  2384.       <groundspeak:long_description html="False">Should be a good one for beginners.
  2385.  
  2386.  
  2387. The cache is based on the book, with a similar name. (Minus the Geo).   The cache is not in the book, but for us cachers it is the next logical step.  If you know the story, it should be a 1 or 1.5, if not maybe a 1.51 on the difficulty.
  2388.  
  2389. The approach terrain, via the RiverWalk, is a 1.0 to 1.5 except for the last 30 yds (no paved path), depending on your approach, no bushwacking to speak, of, just light overgrowth. Look for an easy way in, (the dirt path by the white rocks). 
  2390.  
  2391.  
  2392. I had a hard time getting good numbers under that canopy of trees.   Feel free to post your numbers.
  2393.  
  2394. _______________________________________________________
  2395. Original contents of the cache.
  2396.  
  2397. 1. Toy Compasses
  2398. 2. packette of "Wet Ones"
  2399. 3. a toy car.
  2400. 4. Log Book
  2401. _______________________________________________________
  2402.  
  2403.  
  2404. Permit #277
  2405.  
  2406.          DuPage County Forest Preserve    
  2407.  
  2408. 1. This Geocache is placed on DuPage County Forest Preserve property with permission.
  2409.  
  2410. 2. Do not place the following items in the Geocache:  Food items, inappropriate, offensive, or hazardous materials.
  2411.  
  2412. 3. DuPage County Forest Preserve hours are 1 hour after sunrise until 1 hour after sunset.  Preserve users must not be in the preserves after hours.
  2413.  
  2414. 4. It is the visitor’s responsibility to be aware of the policies and rules pertaining to this preserve.  For more information on preserve rules, see the information kiosk in the parking lot of the preserve or contact Visitor Services at (630) 933-7248.
  2415.  
  2416. 5. All Forest Preserve District of DuPage County Ordinances and subsequent policies, rules, and regulations are applicable.
  2417.  
  2418. ----------------------------------------------------------
  2419.  
  2420. Congratulations to "goinkers" on the FTF! Nice Job!
  2421.  
  2422. ----------------------------------------------------------
  2423. .
  2424. .
  2425. .
  2426. .
  2427.  
  2428. If you have more than 100 finds, you don't need the hint.
  2429. .
  2430. .
  2431. .
  2432. .
  2433. .
  2434. .
  2435.  
  2436.  
  2437.  
  2438.  
  2439.  
  2440.  
  2441.  
  2442.  
  2443.  
  2444.  
  2445. It is a little different, but I expect it to be pretty obvious to cachers, not so obvious to muggles.
  2446.  
  2447. .
  2448. .
  2449. .
  2450. .
  2451. .
  2452. .
  2453. .
  2454.  
  2455.  
  2456.  
  2457.  
  2458. The hint is a spoiler. Open at your own risk. [:)] .
  2459. .
  2460. .
  2461. .
  2462.  
  2463. If you can't find it please post a DNF so I can check on it ASAP . IF it hasn't gone missing, in return, I will send you a more obvious hint .
  2464.  
  2465. Additional Waypoints
  2466. EN32KYR - Entrance to Park to get to the cache via car
  2467. N 41° 46.326 W 088° 09.540
  2468. Note:     Entrance to the park. Follow the parking lot south then west to the closest parking to the cache site.
  2469. </groundspeak:long_description>
  2470.       <groundspeak:encoded_hints>stump/cap?</groundspeak:encoded_hints>
  2471.       <groundspeak:logs>
  2472.         <groundspeak:log id="199330269">
  2473.           <groundspeak:date>2011-11-17T20:00:00Z</groundspeak:date>
  2474.           <groundspeak:type>Found it</groundspeak:type>
  2475.           <groundspeak:finder id="2564478">rorokili</groundspeak:finder>
  2476.           <groundspeak:text encoded="False">Quick and easy find.  Nice hide!  Pen ran out of ink, but I dropped a tb to prove my visit.  Thanks Tommmmm!</groundspeak:text>
  2477.         </groundspeak:log>
  2478.         <groundspeak:log id="199396019">
  2479.           <groundspeak:date>2011-11-12T20:00:00Z</groundspeak:date>
  2480.           <groundspeak:type>Found it</groundspeak:type>
  2481.           <groundspeak:finder id="60384">Odyn</groundspeak:finder>
  2482.           <groundspeak:text encoded="False">Katguy and I returned to the area today to grab some more of the plentiful caches in the area and avenge a couple of DNFs.  Quick find of this nicely disguised cache.  Thanks for the cache.</groundspeak:text>
  2483.         </groundspeak:log>
  2484.         <groundspeak:log id="198474837">
  2485.           <groundspeak:date>2011-11-12T19:00:00Z</groundspeak:date>
  2486.           <groundspeak:type>Found it</groundspeak:type>
  2487.           <groundspeak:finder id="119759">katguy</groundspeak:finder>
  2488.           <groundspeak:text encoded="False">Out and about with my pal Odyn searching in the western burbs today.  Thanks for the cache and the fun adventure Tommmmm.</groundspeak:text>
  2489.         </groundspeak:log>
  2490.         <groundspeak:log id="197498600">
  2491.           <groundspeak:date>2011-11-06T20:00:00Z</groundspeak:date>
  2492.           <groundspeak:type>Found it</groundspeak:type>
  2493.           <groundspeak:finder id="2178108">Team Sukie</groundspeak:finder>
  2494.           <groundspeak:text encoded="False">Decided to pick up several "new" caches in Naperville and get Sukie out for a walk. TFTC</groundspeak:text>
  2495.         </groundspeak:log>
  2496.         <groundspeak:log id="197503423">
  2497.           <groundspeak:date>2011-11-05T19:00:00Z</groundspeak:date>
  2498.           <groundspeak:type>Found it</groundspeak:type>
  2499.           <groundspeak:finder id="1737330">BDKnel</groundspeak:finder>
  2500.           <groundspeak:text encoded="False">Fun day caching with EnPleinAire, RikJaxon and BDSmiley after the DST Event.  Lots of things to trip you up enroute to this nice hide.   SLTFTC</groundspeak:text>
  2501.         </groundspeak:log>
  2502.       </groundspeak:logs>
  2503.       <groundspeak:travelbugs>
  2504.         <groundspeak:travelbug id="1731551" ref="TB29XKD">
  2505.           <groundspeak:name>Patatje</groundspeak:name>
  2506.         </groundspeak:travelbug>
  2507.       </groundspeak:travelbugs>
  2508.     </groundspeak:cache>
  2509.   </wpt>
  2510.   <wpt lat="41.767783" lon="-88.242317">
  2511.     <time>2011-02-11T08:00:00Z</time>
  2512.     <name>GC2NN80</name>
  2513.     <desc>Air Angels by G.O. John and Carol, Multi-cache (1.5/1.5)</desc>
  2514.     <url>http://www.geocaching.com/seek/cache_details.aspx?guid=82cee3ba-9b22-4928-a0dd-e2fe0728b796</url>
  2515.     <urlname>Air Angels</urlname>
  2516.     <sym>Geocache</sym>
  2517.     <type>Geocache|Multi-cache</type>
  2518.     <groundspeak:cache id="2081962" available="True" archived="False" xmlns:groundspeak="http://www.groundspeak.com/cache/1/0">
  2519.       <groundspeak:name>Air Angels</groundspeak:name>
  2520.       <groundspeak:placed_by>G.O. John and Carol</groundspeak:placed_by>
  2521.       <groundspeak:owner id="235754">G.O. John and Carol</groundspeak:owner>
  2522.       <groundspeak:type>Multi-cache</groundspeak:type>
  2523.       <groundspeak:container>Micro</groundspeak:container>
  2524.       <groundspeak:difficulty>1.5</groundspeak:difficulty>
  2525.       <groundspeak:terrain>1.5</groundspeak:terrain>
  2526.       <groundspeak:country>United States</groundspeak:country>
  2527.       <groundspeak:state>Illinois</groundspeak:state>
  2528.       <groundspeak:short_description html="True">
  2529.       </groundspeak:short_description>
  2530.       <groundspeak:long_description html="True">&lt;font size="4"&gt;&lt;strong&gt;&lt;font face="Arial"&gt;This cache
  2531. was&amp;nbsp;hidden for the first annual "&lt;/font&gt;&lt;/strong&gt;&lt;/font&gt;
  2532. &lt;a href=
  2533. "http://www.geocaching.com/seek/cache_details.aspx?guid=2476befd-408a-4ad2-a99e-76a1bd8e8c39"&gt;
  2534. &lt;font size="4" face="Arial"&gt;&lt;strong&gt;It's Great to See DST! A
  2535. Breakfast Event&lt;/strong&gt;&lt;/font&gt;&lt;/a&gt; &lt;font size="4" face=
  2536. "Arial"&gt;&lt;strong&gt;".&lt;/strong&gt;&lt;/font&gt;&lt;br /&gt;
  2537. &lt;p&gt;&lt;font size="4" face="Arial"&gt;This is a very short two stage
  2538. multi. The first stage will take you to a small memorial that is
  2539. located a few feet outside the forest preserve boundry. You can use
  2540. the church parking lot to get very close to the
  2541. memorial.&lt;/font&gt;&lt;/p&gt;
  2542. &lt;p&gt;&lt;font size="4" face="Arial"&gt;The memorial was placed in
  2543. remembrance of the four people who were killed on October 15, 2008
  2544. when the medevac helicopter they were flying in clipped a guy wire
  2545. on the nearby radio tower and crashed in the forest preserve field.
  2546. One of the victims of the crash was a 14 month old girl who was
  2547. being transported to a hospital in Winfield. Those of us who live
  2548. and work in the area will always remember that shocking and tragic
  2549. day.&lt;/font&gt;&lt;/p&gt;
  2550. &lt;p&gt;&lt;font size="4" face="Arial"&gt;To find the final stage, simply
  2551. count the number of letters on the memorial that are in quotes, and
  2552. add that number to the following coordinates:&lt;/font&gt;&lt;/p&gt;
  2553. &lt;p&gt;&lt;font size="4" face="Arial"&gt;N 41 46.007&lt;/font&gt;&lt;/p&gt;
  2554. &lt;p&gt;&lt;font size="4" face="Arial"&gt;&lt;br /&gt;
  2555. W 088 14.388&lt;br /&gt;&lt;/font&gt;&lt;/p&gt;&lt;p&gt;Additional Waypoints&lt;/p&gt;</groundspeak:long_description>
  2556.       <groundspeak:encoded_hints>
  2557.       </groundspeak:encoded_hints>
  2558.       <groundspeak:logs>
  2559.         <groundspeak:log id="200429667">
  2560.           <groundspeak:date>2011-11-23T20:00:00Z</groundspeak:date>
  2561.           <groundspeak:type>Found it</groundspeak:type>
  2562.           <groundspeak:finder id="56175">Spyderuser</groundspeak:finder>
  2563.           <groundspeak:text encoded="False">Thanks for the quick multi John and Carol. Glad to see those little containers are still out there and coming in handy!</groundspeak:text>
  2564.         </groundspeak:log>
  2565.         <groundspeak:log id="198068897">
  2566.           <groundspeak:date>2011-11-05T19:00:00Z</groundspeak:date>
  2567.           <groundspeak:type>Found it</groundspeak:type>
  2568.           <groundspeak:finder id="1904304">sunshnface</groundspeak:finder>
  2569.           <groundspeak:text encoded="False">Found after the DST event.</groundspeak:text>
  2570.         </groundspeak:log>
  2571.         <groundspeak:log id="197668191">
  2572.           <groundspeak:date>2011-11-05T19:00:00Z</groundspeak:date>
  2573.           <groundspeak:type>Found it</groundspeak:type>
  2574.           <groundspeak:finder id="2299304">KeeganC</groundspeak:finder>
  2575.           <groundspeak:text encoded="False">Very nice little multi.  Thanks for taking me to this spot.
  2576.  
  2577. TFTC SL.</groundspeak:text>
  2578.         </groundspeak:log>
  2579.         <groundspeak:log id="197648367">
  2580.           <groundspeak:date>2011-11-05T19:00:00Z</groundspeak:date>
  2581.           <groundspeak:type>Found it</groundspeak:type>
  2582.           <groundspeak:finder id="4226231">tblazek756</groundspeak:finder>
  2583.           <groundspeak:text encoded="False">found with luvtwingle on a nice day TFTC</groundspeak:text>
  2584.         </groundspeak:log>
  2585.         <groundspeak:log id="197505531">
  2586.           <groundspeak:date>2011-11-05T19:00:00Z</groundspeak:date>
  2587.           <groundspeak:type>Found it</groundspeak:type>
  2588.           <groundspeak:finder id="1811721">luvtwingle</groundspeak:finder>
  2589.           <groundspeak:text encoded="False">Out with tblazek756 for a full day of caching in the Aurora\Naperville area bookended by two events.  Thanks for bringing us to this memorial. I remember when it happened.  So tragic.  Found this one after dark without any problems.</groundspeak:text>
  2590.         </groundspeak:log>
  2591.       </groundspeak:logs>
  2592.       <groundspeak:travelbugs />
  2593.     </groundspeak:cache>
  2594.   </wpt>
  2595.   <wpt lat="41.770983" lon="-88.165067">
  2596.     <time>2011-11-05T07:00:00Z</time>
  2597.     <name>GC377FH</name>
  2598.     <desc>Log Your Find by GoldfinchGunner, Traditional Cache (2/2.5)</desc>
  2599.     <url>http://www.geocaching.com/seek/cache_details.aspx?guid=12273754-36e5-4f54-bec0-cea04ac08dc0</url>
  2600.     <urlname>Log Your Find</urlname>
  2601.     <sym>Geocache</sym>
  2602.     <type>Geocache|Traditional Cache</type>
  2603.     <groundspeak:cache id="2575189" available="True" archived="False" xmlns:groundspeak="http://www.groundspeak.com/cache/1/0">
  2604.       <groundspeak:name>Log Your Find</groundspeak:name>
  2605.       <groundspeak:placed_by>GoldfinchGunner</groundspeak:placed_by>
  2606.       <groundspeak:owner id="4506903">GoldfinchGunner</groundspeak:owner>
  2607.       <groundspeak:type>Traditional Cache</groundspeak:type>
  2608.       <groundspeak:container>Micro</groundspeak:container>
  2609.       <groundspeak:difficulty>2</groundspeak:difficulty>
  2610.       <groundspeak:terrain>2.5</groundspeak:terrain>
  2611.       <groundspeak:country>United States</groundspeak:country>
  2612.       <groundspeak:state>Illinois</groundspeak:state>
  2613.       <groundspeak:short_description html="False">A bit off the beaten path of the Northern end of Naperville's Riverwalk Park.</groundspeak:short_description>
  2614.       <groundspeak:long_description html="False">A camo pill bottle is hidden among the trees of the Riverwalk Park. Should be accessible even when the nearby DuPage River is running high. Not too far off the pathways, but underbrush to contend with before you reach the hiding spot.
  2615.  
  2616.  
  2617. Congrats to ajmitchell and 10000Steps on FTF.</groundspeak:long_description>
  2618.       <groundspeak:encoded_hints>If you can't find it right away, you may be barking up the wrong tree.</groundspeak:encoded_hints>
  2619.       <groundspeak:logs>
  2620.         <groundspeak:log id="200260816">
  2621.           <groundspeak:date>2011-11-22T20:00:00Z</groundspeak:date>
  2622.           <groundspeak:type>Found it</groundspeak:type>
  2623.           <groundspeak:finder id="2564478">rorokili</groundspeak:finder>
  2624.           <groundspeak:text encoded="False">Stopped by here after loading up on books on cd for the Thanksgiving car ride.  I'm not sure why I didn't find it last time.  I certainly should have.  The last coordinates had me at the right spot.  I just didn't look quite at the right angle last time I guess.  Found it pretty quickly this time.  TFTC!</groundspeak:text>
  2625.         </groundspeak:log>
  2626.         <groundspeak:log id="199329734">
  2627.           <groundspeak:date>2011-11-17T20:00:00Z</groundspeak:date>
  2628.           <groundspeak:type>Didn't find it</groundspeak:type>
  2629.           <groundspeak:finder id="2564478">rorokili</groundspeak:finder>
  2630.           <groundspeak:text encoded="False">Hmmmm. DNF on 2 star today.  Checked all the likely locations near gz.  Maybe I have the wrong type of hide in mind.  I guess I'll try again some other time.</groundspeak:text>
  2631.         </groundspeak:log>
  2632.         <groundspeak:log id="199347125">
  2633.           <groundspeak:date>2011-11-17T19:45:46Z</groundspeak:date>
  2634.           <groundspeak:type>Update Coordinates</groundspeak:type>
  2635.           <groundspeak:finder id="4506903">GoldfinchGunner</groundspeak:finder>
  2636.           <groundspeak:text encoded="False">Coordinates changed from:
  2637. N 41° 46.260 W 088° 09.898
  2638.  
  2639. Coordinates changed to:
  2640. N 41° 46.259 W 088° 09.904
  2641.  
  2642. Distance from original: 27.9 feet or 8.5 meters.
  2643.  
  2644. Went to check cache today. Still in place.
  2645. Took a few readings and averaged them to tweak coordinates.
  2646. Should get you close enough to find the cache.</groundspeak:text>
  2647.           <groundspeak:log_wpt lat="41.770983" lon="-88.165067" />
  2648.         </groundspeak:log>
  2649.         <groundspeak:log id="198934122">
  2650.           <groundspeak:date>2011-11-14T19:03:10Z</groundspeak:date>
  2651.           <groundspeak:type>Update Coordinates</groundspeak:type>
  2652.           <groundspeak:finder id="4506903">GoldfinchGunner</groundspeak:finder>
  2653.           <groundspeak:text encoded="False">Coordinates changed from:
  2654. N 41° 46.260 W 088° 09.889
  2655.  
  2656. Coordinates changed to:
  2657. N 41° 46.260 W 088° 09.898
  2658.  
  2659. Distance from original: 40.8 feet or 12.4 meters.
  2660.  
  2661. Looks like we transposed the last two digits of the longitudinal coordinates on the original entry.
  2662.  
  2663. Updated coordinates:
  2664.  
  2665. N 41 46.260
  2666. W 088 09.898</groundspeak:text>
  2667.           <groundspeak:log_wpt lat="41.771" lon="-88.164967" />
  2668.         </groundspeak:log>
  2669.         <groundspeak:log id="198946323">
  2670.           <groundspeak:date>2011-11-13T20:00:00Z</groundspeak:date>
  2671.           <groundspeak:type>Found it</groundspeak:type>
  2672.           <groundspeak:finder id="2299304">KeeganC</groundspeak:finder>
  2673.           <groundspeak:text encoded="False">Herbs2 and I were out on a fun afternoon ST run and decided to stop here for the last one of the day.  As herbs2 said we expanded our search and made the find.
  2674.  
  2675. TFTC SL.</groundspeak:text>
  2676.         </groundspeak:log>
  2677.       </groundspeak:logs>
  2678.       <groundspeak:travelbugs />
  2679.     </groundspeak:cache>
  2680.   </wpt>
  2681.   <wpt lat="41.77445" lon="-88.254717">
  2682.     <time>2011-09-18T07:00:00Z</time>
  2683.     <name>GC34DGK</name>
  2684.     <desc>Railroad Ridge by G.O. John and Carol, Traditional Cache (2/1.5)</desc>
  2685.     <url>http://www.geocaching.com/seek/cache_details.aspx?guid=190c0173-d5cc-4e6a-b9d5-157d9232d559</url>
  2686.     <urlname>Railroad Ridge</urlname>
  2687.     <sym>Geocache</sym>
  2688.     <type>Geocache|Traditional Cache</type>
  2689.     <groundspeak:cache id="2491615" available="True" archived="False" xmlns:groundspeak="http://www.groundspeak.com/cache/1/0">
  2690.       <groundspeak:name>Railroad Ridge</groundspeak:name>
  2691.       <groundspeak:placed_by>G.O. John and Carol</groundspeak:placed_by>
  2692.       <groundspeak:owner id="235754">G.O. John and Carol</groundspeak:owner>
  2693.       <groundspeak:type>Traditional Cache</groundspeak:type>
  2694.       <groundspeak:container>Small</groundspeak:container>
  2695.       <groundspeak:difficulty>2</groundspeak:difficulty>
  2696.       <groundspeak:terrain>1.5</groundspeak:terrain>
  2697.       <groundspeak:country>United States</groundspeak:country>
  2698.       <groundspeak:state>Illinois</groundspeak:state>
  2699.       <groundspeak:short_description html="True">
  2700.       </groundspeak:short_description>
  2701.       <groundspeak:long_description html="True">&lt;p align="center"&gt;&lt;font size="4" face="Arial"&gt;This cache was hidden
  2702. for the following 2 events:&lt;br /&gt;
  2703. &lt;br /&gt;&lt;/font&gt; &lt;a href=
  2704. "http://www.geocaching.com/seek/cache_details.aspx?guid=d4e3d2a1-058b-4f88-9ef8-014235194400"&gt;
  2705. &lt;font size="4" face="Arial"&gt;Please Don't Leave, DST! &amp;nbsp;A
  2706. Breakfast Event&lt;br /&gt;&lt;/font&gt;&lt;/a&gt;&lt;font size="4" face="Arial"&gt;and
  2707. Moodygrrl's follow up event&lt;br /&gt;&lt;/font&gt; &lt;a href=
  2708. "http://www.geocaching.com/seek/cache_details.aspx?wp=GC33NYG"&gt;&lt;font size="4"
  2709. face="Arial"&gt;"Fall Back"... Into Caching&lt;/font&gt;&lt;/a&gt; &lt;font size="4"
  2710. face="Arial"&gt;&lt;br /&gt;
  2711. &lt;br /&gt;
  2712. &lt;font color="#FF0000"&gt;This cache is not on railroad property, and
  2713. it cannot be accessed from railroad property.&amp;nbsp; There is no
  2714. need to go anywhere near the tracks.&amp;nbsp; Parking is available on
  2715. Sutton Lane.&lt;/font&gt;&lt;br /&gt;
  2716. &lt;br /&gt;
  2717. The cache is hidden at the top of a ridge that overlooks a&amp;nbsp;big
  2718. rail yard.&amp;nbsp; Kind of a cool view, and there's a lot of activity
  2719. in the yard, but there are typically a lot of trains parked in the
  2720. yard, so much of your view of moving trains will be blocked.&amp;nbsp;
  2721. However, the view from this park is still worth a peek.&amp;nbsp;
  2722. You'll be looking for a small camouflaged Lock and Lock.&lt;/font&gt;&lt;/p&gt;</groundspeak:long_description>
  2723.       <groundspeak:encoded_hints>
  2724.       </groundspeak:encoded_hints>
  2725.       <groundspeak:logs>
  2726.         <groundspeak:log id="198545622">
  2727.           <groundspeak:date>2011-11-12T20:00:00Z</groundspeak:date>
  2728.           <groundspeak:type>Found it</groundspeak:type>
  2729.           <groundspeak:finder id="2318675">cubdad7</groundspeak:finder>
  2730.           <groundspeak:text encoded="False">almost a png except for that big hill in the way..
  2731. sl tftc</groundspeak:text>
  2732.         </groundspeak:log>
  2733.         <groundspeak:log id="199711718">
  2734.           <groundspeak:date>2011-11-05T19:00:00Z</groundspeak:date>
  2735.           <groundspeak:type>Found it</groundspeak:type>
  2736.           <groundspeak:finder id="4014037">LEGOexplorer</groundspeak:finder>
  2737.           <groundspeak:text encoded="False">Found it with mom, dad and a group of cachers after the event. We signed the log as the Breakfast Club.</groundspeak:text>
  2738.         </groundspeak:log>
  2739.         <groundspeak:log id="198070094">
  2740.           <groundspeak:date>2011-11-05T19:00:00Z</groundspeak:date>
  2741.           <groundspeak:type>Found it</groundspeak:type>
  2742.           <groundspeak:finder id="2051259">BRBTLawson</groundspeak:finder>
  2743.           <groundspeak:text encoded="False">Out caching after a local event.  TFTC!!!  BRBTLawson</groundspeak:text>
  2744.         </groundspeak:log>
  2745.         <groundspeak:log id="198068714">
  2746.           <groundspeak:date>2011-11-05T19:00:00Z</groundspeak:date>
  2747.           <groundspeak:type>Found it</groundspeak:type>
  2748.           <groundspeak:finder id="1904304">sunshnface</groundspeak:finder>
  2749.           <groundspeak:text encoded="False">Found after the DST event.</groundspeak:text>
  2750.         </groundspeak:log>
  2751.         <groundspeak:log id="197923619">
  2752.           <groundspeak:date>2011-11-05T19:00:00Z</groundspeak:date>
  2753.           <groundspeak:type>Found it</groundspeak:type>
  2754.           <groundspeak:finder id="744677">racer2814</groundspeak:finder>
  2755.           <groundspeak:text encoded="False">Found in between events today. Signed log as TBC for The Breakfast Crew which consisted of KingEvo, King0806, spierson82, geecmom, Texican Space Cowboy, and myself. We made a giant loop through the area and found many caches. Thanks for placing this one. Orale! Live, laugh, love, cache.
  2756.  
  2757. Congrats to geecmom on 700 here.</groundspeak:text>
  2758.         </groundspeak:log>
  2759.       </groundspeak:logs>
  2760.       <groundspeak:travelbugs />
  2761.     </groundspeak:cache>
  2762.   </wpt>
  2763.   <wpt lat="41.8628" lon="-88.199667">
  2764.     <time>2011-10-02T07:00:00Z</time>
  2765.     <name>GC3593D</name>
  2766.     <desc>Geo Putt-Putt #1 by sgauss, Traditional Cache (1.5/1.5)</desc>
  2767.     <url>http://www.geocaching.com/seek/cache_details.aspx?guid=2d8023e1-7c8f-4f0c-962d-bfd75f39fe15</url>
  2768.     <urlname>Geo Putt-Putt #1</urlname>
  2769.     <sym>Geocache</sym>
  2770.     <type>Geocache|Traditional Cache</type>
  2771.     <groundspeak:cache id="2517153" available="True" archived="False" xmlns:groundspeak="http://www.groundspeak.com/cache/1/0">
  2772.       <groundspeak:name>Geo Putt-Putt #1</groundspeak:name>
  2773.       <groundspeak:placed_by>sgauss</groundspeak:placed_by>
  2774.       <groundspeak:owner id="2458905">sgauss</groundspeak:owner>
  2775.       <groundspeak:type>Traditional Cache</groundspeak:type>
  2776.       <groundspeak:container>Micro</groundspeak:container>
  2777.       <groundspeak:difficulty>1.5</groundspeak:difficulty>
  2778.       <groundspeak:terrain>1.5</groundspeak:terrain>
  2779.       <groundspeak:country>United States</groundspeak:country>
  2780.       <groundspeak:state>Illinois</groundspeak:state>
  2781.       <groundspeak:short_description html="False">You're looking for a preform container that holds part of the coordinates for Geo Putt-Putt #3.</groundspeak:short_description>
  2782.       <groundspeak:long_description html="False">Some of the finest caching in Chicagoland is based on a concept started in the long gone Geo-Golf series: triads.  Great trail caches should be hunted in threes.  The first two caches each contain part of the coordinates for the third cache.  The original Geo-Golf series spawned the Can-Can series, the Box-Box series, a Lock-Lock series, and finally a Geo-Golf redux series.  Nineteen caches in the woods can be a great thing to hunt, but it may not be for everyone.    Now, for the dedicated urban cacher or time-constrained cacher we have Geo Putt-Putt!
  2783.  
  2784. Simply find cache #1 and #2, write down the coordinates you find in each cache, and then find cache #3!  Enjoy!</groundspeak:long_description>
  2785.       <groundspeak:encoded_hints>
  2786.       </groundspeak:encoded_hints>
  2787.       <groundspeak:logs>
  2788.         <groundspeak:log id="199510787">
  2789.           <groundspeak:date>2011-11-18T20:00:00Z</groundspeak:date>
  2790.           <groundspeak:type>Found it</groundspeak:type>
  2791.           <groundspeak:finder id="3624869">DaFia TreTy</groundspeak:finder>
  2792.           <groundspeak:text encoded="False">Out today in an effort to reach 1,200. This was number 1,181. TFTC. DaFia TreTy strikes again!</groundspeak:text>
  2793.         </groundspeak:log>
  2794.         <groundspeak:log id="198029350">
  2795.           <groundspeak:date>2011-11-10T20:00:00Z</groundspeak:date>
  2796.           <groundspeak:type>Found it</groundspeak:type>
  2797.           <groundspeak:finder id="230171">toursport</groundspeak:finder>
  2798.           <groundspeak:text encoded="False">Stopped by to play a few mini-golf holes. Made this find no problem.
  2799. TFTC, WHOOP WHOOP !!</groundspeak:text>
  2800.         </groundspeak:log>
  2801.         <groundspeak:log id="197573798">
  2802.           <groundspeak:date>2011-11-05T19:00:00Z</groundspeak:date>
  2803.           <groundspeak:type>Found it</groundspeak:type>
  2804.           <groundspeak:finder id="1701047">cummins6061</groundspeak:finder>
  2805.           <groundspeak:text encoded="False">Out on a cache run after the DST event.  Nice quick find.   :Found on 11/05/2011 at  9:18 PM, TNLNSL with our groups initials 'ZC'...TFTC!!!</groundspeak:text>
  2806.         </groundspeak:log>
  2807.         <groundspeak:log id="197124754">
  2808.           <groundspeak:date>2011-11-05T19:00:00Z</groundspeak:date>
  2809.           <groundspeak:type>Found it</groundspeak:type>
  2810.           <groundspeak:finder id="3916073">ziggy1fan@aol.com</groundspeak:finder>
  2811.           <groundspeak:text encoded="False">T4T$ Ziggy1Fan Thanks for a great day of caching</groundspeak:text>
  2812.         </groundspeak:log>
  2813.         <groundspeak:log id="196688940">
  2814.           <groundspeak:date>2011-11-03T19:00:00Z</groundspeak:date>
  2815.           <groundspeak:type>Found it</groundspeak:type>
  2816.           <groundspeak:finder id="1911595">Jacobn'I</groundspeak:finder>
  2817.           <groundspeak:text encoded="False">Found on this cold cold wet day.</groundspeak:text>
  2818.         </groundspeak:log>
  2819.       </groundspeak:logs>
  2820.       <groundspeak:travelbugs />
  2821.     </groundspeak:cache>
  2822.   </wpt>
  2823.   <wpt lat="41.862867" lon="-88.197617">
  2824.     <time>2011-10-02T07:00:00Z</time>
  2825.     <name>GC3593E</name>
  2826.     <desc>Geo Putt-Putt #2 by sgauss, Traditional Cache (1.5/1.5)</desc>
  2827.     <url>http://www.geocaching.com/seek/cache_details.aspx?guid=36438930-a00b-4ba3-9b21-287b2fd36708</url>
  2828.     <urlname>Geo Putt-Putt #2</urlname>
  2829.     <sym>Geocache</sym>
  2830.     <type>Geocache|Traditional Cache</type>
  2831.     <groundspeak:cache id="2517154" available="True" archived="False" xmlns:groundspeak="http://www.groundspeak.com/cache/1/0">
  2832.       <groundspeak:name>Geo Putt-Putt #2</groundspeak:name>
  2833.       <groundspeak:placed_by>sgauss</groundspeak:placed_by>
  2834.       <groundspeak:owner id="2458905">sgauss</groundspeak:owner>
  2835.       <groundspeak:type>Traditional Cache</groundspeak:type>
  2836.       <groundspeak:container>Micro</groundspeak:container>
  2837.       <groundspeak:difficulty>1.5</groundspeak:difficulty>
  2838.       <groundspeak:terrain>1.5</groundspeak:terrain>
  2839.       <groundspeak:country>United States</groundspeak:country>
  2840.       <groundspeak:state>Illinois</groundspeak:state>
  2841.       <groundspeak:short_description html="False">You're looking for a preform container that holds part of the coordinates for Geo Putt-Putt #3.</groundspeak:short_description>
  2842.       <groundspeak:long_description html="False">Some of the finest caching in Chicagoland is based on a concept started in the long gone Geo-Golf series: triads.  Great trail caches should be hunted in threes.  The first two caches each contain part of the coordinates for the third cache.  The original Geo-Golf series spawned the Can-Can series, the Box-Box series, a Lock-Lock series, and finally a Geo-Golf redux series.  Nineteen caches in the woods can be a great thing to hunt, but it may not be for everyone.    Now, for the dedicated urban cacher or time-constrained cacher we have Geo Putt-Putt!
  2843.  
  2844. Simply find cache #1 and #2, write down the coordinates you find in each cache, and then find cache #3!  Enjoy!</groundspeak:long_description>
  2845.       <groundspeak:encoded_hints>
  2846.       </groundspeak:encoded_hints>
  2847.       <groundspeak:logs>
  2848.         <groundspeak:log id="199510930">
  2849.           <groundspeak:date>2011-11-18T20:00:00Z</groundspeak:date>
  2850.           <groundspeak:type>Found it</groundspeak:type>
  2851.           <groundspeak:finder id="3624869">DaFia TreTy</groundspeak:finder>
  2852.           <groundspeak:text encoded="False">Out today in an effort to reach 1,200. This was number 1,182. TFTC. DaFia TreTy strikes again!</groundspeak:text>
  2853.         </groundspeak:log>
  2854.         <groundspeak:log id="199364372">
  2855.           <groundspeak:date>2011-11-17T20:00:00Z</groundspeak:date>
  2856.           <groundspeak:type>Found it</groundspeak:type>
  2857.           <groundspeak:finder id="3082491">cachyew</groundspeak:finder>
  2858.           <groundspeak:text encoded="False">Out for supplies and hit this one. TFTC</groundspeak:text>
  2859.         </groundspeak:log>
  2860.         <groundspeak:log id="198029803">
  2861.           <groundspeak:date>2011-11-10T20:00:00Z</groundspeak:date>
  2862.           <groundspeak:type>Found it</groundspeak:type>
  2863.           <groundspeak:finder id="230171">toursport</groundspeak:finder>
  2864.           <groundspeak:text encoded="False">Stopped by for another hole, walked over from #1, the breeze is really cold today.
  2865. TFTC, WHOOP WHOOP !!</groundspeak:text>
  2866.         </groundspeak:log>
  2867.         <groundspeak:log id="197573843">
  2868.           <groundspeak:date>2011-11-05T19:00:00Z</groundspeak:date>
  2869.           <groundspeak:type>Found it</groundspeak:type>
  2870.           <groundspeak:finder id="1701047">cummins6061</groundspeak:finder>
  2871.           <groundspeak:text encoded="False">Out on a cache run after the DST event. Another quickie and stop to figure out the final location. :Found on 11/05/2011 at  9:20 PM, TNLNSL with our groups initials 'ZC'...TFTC!!!</groundspeak:text>
  2872.         </groundspeak:log>
  2873.         <groundspeak:log id="197124795">
  2874.           <groundspeak:date>2011-11-05T19:00:00Z</groundspeak:date>
  2875.           <groundspeak:type>Found it</groundspeak:type>
  2876.           <groundspeak:finder id="3916073">ziggy1fan@aol.com</groundspeak:finder>
  2877.           <groundspeak:text encoded="False">T4T$ Ziggy1Fan Thanks for a great day of caching</groundspeak:text>
  2878.         </groundspeak:log>
  2879.       </groundspeak:logs>
  2880.       <groundspeak:travelbugs />
  2881.     </groundspeak:cache>
  2882.   </wpt>
  2883.   <wpt lat="41.777867" lon="-88.262133">
  2884.     <time>2011-04-26T07:00:00Z</time>
  2885.     <name>GC2V2TG</name>
  2886.     <desc>Changing Neighborhoods by JnglBelz, Traditional Cache (1.5/1.5)</desc>
  2887.     <url>http://www.geocaching.com/seek/cache_details.aspx?guid=1ce478fd-b738-4eec-9535-a7cf6334dfd1</url>
  2888.     <urlname>Changing Neighborhoods</urlname>
  2889.     <sym>Geocache</sym>
  2890.     <type>Geocache|Traditional Cache</type>
  2891.     <groundspeak:cache id="2213201" available="True" archived="False" xmlns:groundspeak="http://www.groundspeak.com/cache/1/0">
  2892.       <groundspeak:name>Changing Neighborhoods</groundspeak:name>
  2893.       <groundspeak:placed_by>JnglBelz</groundspeak:placed_by>
  2894.       <groundspeak:owner id="1391683">JnglBelz</groundspeak:owner>
  2895.       <groundspeak:type>Traditional Cache</groundspeak:type>
  2896.       <groundspeak:container>Micro</groundspeak:container>
  2897.       <groundspeak:difficulty>1.5</groundspeak:difficulty>
  2898.       <groundspeak:terrain>1.5</groundspeak:terrain>
  2899.       <groundspeak:country>United States</groundspeak:country>
  2900.       <groundspeak:state>Illinois</groundspeak:state>
  2901.       <groundspeak:short_description html="False">You are looking for a small camo pill container. Bring your own writing stick.</groundspeak:short_description>
  2902.       <groundspeak:long_description html="False">Parking close by, not really.  Quick P&amp;G. Do not cross fence line.</groundspeak:long_description>
  2903.       <groundspeak:encoded_hints>
  2904.       </groundspeak:encoded_hints>
  2905.       <groundspeak:logs>
  2906.         <groundspeak:log id="199711767">
  2907.           <groundspeak:date>2011-11-05T19:00:00Z</groundspeak:date>
  2908.           <groundspeak:type>Found it</groundspeak:type>
  2909.           <groundspeak:finder id="4014037">LEGOexplorer</groundspeak:finder>
  2910.           <groundspeak:text encoded="False">Found it with mom, dad and a group of cachers after the event. We signed the log as the Breakfast Club.</groundspeak:text>
  2911.         </groundspeak:log>
  2912.         <groundspeak:log id="198070233">
  2913.           <groundspeak:date>2011-11-05T19:00:00Z</groundspeak:date>
  2914.           <groundspeak:type>Found it</groundspeak:type>
  2915.           <groundspeak:finder id="2051259">BRBTLawson</groundspeak:finder>
  2916.           <groundspeak:text encoded="False">Out caching after a local event.  TFTC!!!  BRBTLawson</groundspeak:text>
  2917.         </groundspeak:log>
  2918.         <groundspeak:log id="197923654">
  2919.           <groundspeak:date>2011-11-05T19:00:00Z</groundspeak:date>
  2920.           <groundspeak:type>Found it</groundspeak:type>
  2921.           <groundspeak:finder id="744677">racer2814</groundspeak:finder>
  2922.           <groundspeak:text encoded="False">Found in between events today. Signed log as TBC for The Breakfast Crew which consisted of KingEvo, King0806, spierson82, geecmom, Texican Space Cowboy, and myself. We made a giant loop through the area and found many caches. Thanks for placing this one. Orale! Live, laugh, love, cache.
  2923.  
  2924. TSC found it but his fat fingers kept him from retrieving it. Racer to the rescue.</groundspeak:text>
  2925.         </groundspeak:log>
  2926.         <groundspeak:log id="197556560">
  2927.           <groundspeak:date>2011-11-05T19:00:00Z</groundspeak:date>
  2928.           <groundspeak:type>Found it</groundspeak:type>
  2929.           <groundspeak:finder id="2368594">bapierson</groundspeak:finder>
  2930.           <groundspeak:text encoded="False">TFTC</groundspeak:text>
  2931.         </groundspeak:log>
  2932.         <groundspeak:log id="197500470">
  2933.           <groundspeak:date>2011-11-05T19:00:00Z</groundspeak:date>
  2934.           <groundspeak:type>Found it</groundspeak:type>
  2935.           <groundspeak:finder id="1737330">BDKnel</groundspeak:finder>
  2936.           <groundspeak:text encoded="False">Fun day caching with EnPleinAire and BDSmiley after the DST Event.  SLTFTC</groundspeak:text>
  2937.         </groundspeak:log>
  2938.       </groundspeak:logs>
  2939.       <groundspeak:travelbugs />
  2940.     </groundspeak:cache>
  2941.   </wpt>
  2942.   <wpt lat="41.779867" lon="-88.1499">
  2943.     <time>2011-03-03T08:00:00Z</time>
  2944.     <name>GC2PNCM</name>
  2945.     <desc>Scooter's Gets Down Low by Scooter, Traditional Cache (1.5/1.5)</desc>
  2946.     <url>http://www.geocaching.com/seek/cache_details.aspx?guid=43badf71-8357-4c3b-962a-fb6c85612190</url>
  2947.     <urlname>Scooter's Gets Down Low</urlname>
  2948.     <sym>Geocache</sym>
  2949.     <type>Geocache|Traditional Cache</type>
  2950.     <groundspeak:cache id="2111897" available="True" archived="False" xmlns:groundspeak="http://www.groundspeak.com/cache/1/0">
  2951.       <groundspeak:name>Scooter's Gets Down Low</groundspeak:name>
  2952.       <groundspeak:placed_by>Scooter</groundspeak:placed_by>
  2953.       <groundspeak:owner id="331172">badlands</groundspeak:owner>
  2954.       <groundspeak:type>Traditional Cache</groundspeak:type>
  2955.       <groundspeak:container>Micro</groundspeak:container>
  2956.       <groundspeak:difficulty>1.5</groundspeak:difficulty>
  2957.       <groundspeak:terrain>1.5</groundspeak:terrain>
  2958.       <groundspeak:country>United States</groundspeak:country>
  2959.       <groundspeak:state>Illinois</groundspeak:state>
  2960.       <groundspeak:short_description html="True">This cache has been placed in conjunction with the Daylight Savings
  2961. Time Breakfast hosted by G.O. John &amp;amp; Carol and Moodygrrl</groundspeak:short_description>
  2962.       <groundspeak:long_description html="True">&lt;br /&gt;
  2963. &lt;br /&gt;
  2964. &lt;br /&gt;
  2965. &lt;br /&gt;
  2966. &lt;br /&gt;
  2967. &lt;br /&gt;
  2968. &lt;br /&gt;
  2969. &lt;br /&gt;
  2970. &lt;br /&gt;
  2971. &lt;br /&gt;
  2972. &lt;br /&gt;
  2973. &lt;br /&gt;
  2974. &lt;center&gt;&lt;a rel="nofollow" href="http://www.gonil.org/"&gt;&lt;img src=
  2975. "http://www.gonil.org/i/m/m_gonil_3_1.jpg" /&gt;&lt;/a&gt;&lt;/center&gt;
  2976. &lt;center&gt;Geocachers of Northeastern Illinois&lt;/center&gt;</groundspeak:long_description>
  2977.       <groundspeak:encoded_hints>pill bottle</groundspeak:encoded_hints>
  2978.       <groundspeak:logs>
  2979.         <groundspeak:log id="200183406">
  2980.           <groundspeak:date>2011-11-20T20:00:00Z</groundspeak:date>
  2981.           <groundspeak:type>Didn't find it</groundspeak:type>
  2982.           <groundspeak:finder id="176194">fed</groundspeak:finder>
  2983.           <groundspeak:text encoded="False">Looked for a spell to no avail. A lot of leafs in the area? It's probably there just no in our view today. I hate starting the days hunt with a DNF.</groundspeak:text>
  2984.         </groundspeak:log>
  2985.         <groundspeak:log id="191904024">
  2986.           <groundspeak:date>2011-10-10T19:00:00Z</groundspeak:date>
  2987.           <groundspeak:type>Found it</groundspeak:type>
  2988.           <groundspeak:finder id="5000034">Team_Pampinella</groundspeak:finder>
  2989.           <groundspeak:text encoded="False">I followed my GPS to the gz, completely forgetting the name of the cache. Looked up for a long time and then it dawned on me. The only clue you need is in the title. TFTC.</groundspeak:text>
  2990.         </groundspeak:log>
  2991.         <groundspeak:log id="191683437">
  2992.           <groundspeak:date>2011-10-09T22:43:53Z</groundspeak:date>
  2993.           <groundspeak:type>Found it</groundspeak:type>
  2994.           <groundspeak:finder id="4506903">GoldfinchGunner</groundspeak:finder>
  2995.           <groundspeak:text encoded="False">Watch for burrs on approach to gz.</groundspeak:text>
  2996.         </groundspeak:log>
  2997.         <groundspeak:log id="189188305">
  2998.           <groundspeak:date>2011-09-27T19:00:00Z</groundspeak:date>
  2999.           <groundspeak:type>Found it</groundspeak:type>
  3000.           <groundspeak:finder id="1192452">SebastiansCrew</groundspeak:finder>
  3001.           <groundspeak:text encoded="False">The group playing frisbee hardly noticed me.  TFTC</groundspeak:text>
  3002.         </groundspeak:log>
  3003.         <groundspeak:log id="188029633">
  3004.           <groundspeak:date>2011-09-22T18:36:00Z</groundspeak:date>
  3005.           <groundspeak:type>Found it</groundspeak:type>
  3006.           <groundspeak:finder id="2157010">mrxhill</groundspeak:finder>
  3007.           <groundspeak:text encoded="False">Found on the way to Amtrak station. TFTC</groundspeak:text>
  3008.         </groundspeak:log>
  3009.       </groundspeak:logs>
  3010.       <groundspeak:travelbugs />
  3011.     </groundspeak:cache>
  3012.   </wpt>
  3013.   <wpt lat="41.791583" lon="-88.274317">
  3014.     <time>2011-05-19T07:00:00Z</time>
  3015.     <name>GC2WHQN</name>
  3016.     <desc>Scooter Sings O Dennenboom by Scooter's Dog Spot, Traditional Cache (1.5/1.5)</desc>
  3017.     <url>http://www.geocaching.com/seek/cache_details.aspx?guid=efa7bb1d-0d77-444b-a315-dffa0bf178f5</url>
  3018.     <urlname>Scooter Sings O Dennenboom</urlname>
  3019.     <sym>Geocache</sym>
  3020.     <type>Geocache|Traditional Cache</type>
  3021.     <groundspeak:cache id="2257350" available="True" archived="False" xmlns:groundspeak="http://www.groundspeak.com/cache/1/0">
  3022.       <groundspeak:name>Scooter Sings O Dennenboom</groundspeak:name>
  3023.       <groundspeak:placed_by>Scooter's Dog Spot</groundspeak:placed_by>
  3024.       <groundspeak:owner id="331172">badlands</groundspeak:owner>
  3025.       <groundspeak:type>Traditional Cache</groundspeak:type>
  3026.       <groundspeak:container>Micro</groundspeak:container>
  3027.       <groundspeak:difficulty>1.5</groundspeak:difficulty>
  3028.       <groundspeak:terrain>1.5</groundspeak:terrain>
  3029.       <groundspeak:country>United States</groundspeak:country>
  3030.       <groundspeak:state>Illinois</groundspeak:state>
  3031.       <groundspeak:short_description html="True">
  3032.       </groundspeak:short_description>
  3033.       <groundspeak:long_description html="True">&lt;center&gt;This cache has been placed in conjunction with an event
  3034. hosted by:&lt;br /&gt;
  3035. &lt;a href=
  3036. "http://www.geocaching.com/profile/?guid=6de9b44a-7e32-4195-ba27-f2a3ae92ec6b&amp;amp;wid=8b330e9a-1265-45f2-80db-0b513eafd898&amp;amp;ds=2"
  3037. target="_blank" rel='nofollow'&gt;Dutchlandian&lt;/a&gt;&lt;/center&gt;
  3038. &lt;center&gt;&lt;a href="http://coord.info/GC2QDDM" target="_blank" rel=
  3039. 'nofollow'&gt;I Scream for a "Dutch Treat"&lt;/a&gt;&lt;/center&gt;
  3040. &lt;br /&gt;
  3041. &lt;br /&gt;
  3042. &lt;br /&gt;
  3043. &lt;br /&gt;
  3044. &lt;br /&gt;
  3045. &lt;br /&gt;
  3046. &lt;br /&gt;
  3047. &lt;br /&gt;
  3048. &lt;br /&gt;
  3049. &lt;br /&gt;
  3050. &lt;br /&gt;
  3051. &lt;br /&gt;
  3052. &lt;center&gt;&lt;a rel="nofollow" href="http://www.gonil.org/"&gt;&lt;img src=
  3053. "http://www.gonil.org/i/m/m_gonil_3_1.jpg" /&gt;&lt;/a&gt;&lt;/center&gt;
  3054. &lt;center&gt;Geocachers of Northeastern Illinois&lt;/center&gt;</groundspeak:long_description>
  3055.       <groundspeak:encoded_hints>
  3056.       </groundspeak:encoded_hints>
  3057.       <groundspeak:logs>
  3058.         <groundspeak:log id="199385537">
  3059.           <groundspeak:date>2011-11-17T20:00:00Z</groundspeak:date>
  3060.           <groundspeak:type>Found it</groundspeak:type>
  3061.           <groundspeak:finder id="3902783">superior o</groundspeak:finder>
  3062.           <groundspeak:text encoded="False">Went for my second scooter cache tonight. Was surprised to find the gz hide location. Nice hide.</groundspeak:text>
  3063.         </groundspeak:log>
  3064.         <groundspeak:log id="199115369">
  3065.           <groundspeak:date>2011-11-15T20:00:00Z</groundspeak:date>
  3066.           <groundspeak:type>Found it</groundspeak:type>
  3067.           <groundspeak:finder id="3778144">hurtpiggypig</groundspeak:finder>
  3068.           <groundspeak:text encoded="False">yay!</groundspeak:text>
  3069.         </groundspeak:log>
  3070.         <groundspeak:log id="197496755">
  3071.           <groundspeak:date>2011-11-05T19:00:00Z</groundspeak:date>
  3072.           <groundspeak:type>Found it</groundspeak:type>
  3073.           <groundspeak:finder id="161275">lucy~</groundspeak:finder>
  3074.           <groundspeak:text encoded="False">We had figured out where this was but went on the the next closest. Grabbed this  on the way back to the car. I only "spotted it" cause I was ahead of everyone else.
  3075.  
  3076. Thanks badlands for the fun and the find.</groundspeak:text>
  3077.         </groundspeak:log>
  3078.         <groundspeak:log id="197492002">
  3079.           <groundspeak:date>2011-11-05T19:00:00Z</groundspeak:date>
  3080.           <groundspeak:type>Found it</groundspeak:type>
  3081.           <groundspeak:finder id="91151">JustUsTwo</groundspeak:finder>
  3082.           <groundspeak:text encoded="False">We decided not to sing as we approached the cache.  ‘Lucy~’ made a quick find!    [8D]        
  3083.  
  3084. Thanks, “Scooter’s Dog Spot” for the hide!      [:D]</groundspeak:text>
  3085.         </groundspeak:log>
  3086.         <groundspeak:log id="197110413">
  3087.           <groundspeak:date>2011-11-05T19:00:00Z</groundspeak:date>
  3088.           <groundspeak:type>Found it</groundspeak:type>
  3089.           <groundspeak:finder id="2378911">mjholley</groundspeak:finder>
  3090.           <groundspeak:text encoded="False">TFTC SL Out with a group today havung a great time.</groundspeak:text>
  3091.         </groundspeak:log>
  3092.       </groundspeak:logs>
  3093.       <groundspeak:travelbugs />
  3094.     </groundspeak:cache>
  3095.   </wpt>
  3096.   <wpt lat="41.804683" lon="-88.134967">
  3097.     <time>2011-10-03T07:00:00Z</time>
  3098.     <name>GC35AW9</name>
  3099.     <desc>Higher Education - Eagles  by TomEagle55, Traditional Cache (1.5/1.5)</desc>
  3100.     <url>http://www.geocaching.com/seek/cache_details.aspx?guid=902ff773-dbcd-402b-9c4e-e02a08846815</url>
  3101.     <urlname>Higher Education - Eagles </urlname>
  3102.     <sym>Geocache</sym>
  3103.     <type>Geocache|Traditional Cache</type>
  3104.     <groundspeak:cache id="2518854" available="True" archived="False" xmlns:groundspeak="http://www.groundspeak.com/cache/1/0">
  3105.       <groundspeak:name>Higher Education - Eagles </groundspeak:name>
  3106.       <groundspeak:placed_by>TomEagle55</groundspeak:placed_by>
  3107.       <groundspeak:owner id="2669012">TomEagle55</groundspeak:owner>
  3108.       <groundspeak:type>Traditional Cache</groundspeak:type>
  3109.       <groundspeak:container>Micro</groundspeak:container>
  3110.       <groundspeak:difficulty>1.5</groundspeak:difficulty>
  3111.       <groundspeak:terrain>1.5</groundspeak:terrain>
  3112.       <groundspeak:country>United States</groundspeak:country>
  3113.       <groundspeak:state>Illinois</groundspeak:state>
  3114.       <groundspeak:short_description html="True">&lt;p&gt;&lt;font face="Hurry Up" size="5" color="#FF0000"&gt;Small seed cache
  3115. container, well cammo'd, eye level.&lt;br /&gt;
  3116. Can be high muggle area at certain times.&lt;/font&gt;&lt;/p&gt;</groundspeak:short_description>
  3117.       <groundspeak:long_description html="True">&lt;p&gt;&lt;b&gt;&lt;font face="Hurry Up" size="5"&gt;&lt;font color="#FF0000"&gt;This
  3118. cache is one of four&lt;/font&gt; celebrating &lt;font color=
  3119. "#FF0000"&gt;higher education opportunuities along the&lt;/font&gt; Golden
  3120. Corridor.&lt;br /&gt;
  3121. &lt;br /&gt;
  3122. &lt;font color="#FF0000"&gt;Within the cache are&lt;/font&gt; 1/4 of the
  3123. coordinates &lt;font color="#FF0000"&gt;needed for the Higher Education-
  3124. Graduation bonus cache&lt;/font&gt;.&lt;/font&gt;&lt;/b&gt;&lt;/p&gt;</groundspeak:long_description>
  3125.       <groundspeak:encoded_hints>Yes it is another Pine Tree Cache.</groundspeak:encoded_hints>
  3126.       <groundspeak:logs>
  3127.         <groundspeak:log id="200297998">
  3128.           <groundspeak:date>2011-11-22T20:00:00Z</groundspeak:date>
  3129.           <groundspeak:type>Didn't find it</groundspeak:type>
  3130.           <groundspeak:finder id="424523">MandyCamp</groundspeak:finder>
  3131.           <groundspeak:text encoded="False">Didn't find this one.</groundspeak:text>
  3132.         </groundspeak:log>
  3133.         <groundspeak:log id="200295700">
  3134.           <groundspeak:date>2011-11-22T20:00:00Z</groundspeak:date>
  3135.           <groundspeak:type>Didn't find it</groundspeak:type>
  3136.           <groundspeak:finder id="2274995">Mr.Pickles</groundspeak:finder>
  3137.           <groundspeak:text encoded="False">No success</groundspeak:text>
  3138.         </groundspeak:log>
  3139.         <groundspeak:log id="200294306">
  3140.           <groundspeak:date>2011-11-22T20:00:00Z</groundspeak:date>
  3141.           <groundspeak:type>Didn't find it</groundspeak:type>
  3142.           <groundspeak:finder id="176194">fed</groundspeak:finder>
  3143.           <groundspeak:text encoded="False">Add 5 more DNFs to this one as the Tuesday Hunt Club had no joy.</groundspeak:text>
  3144.         </groundspeak:log>
  3145.         <groundspeak:log id="200004984">
  3146.           <groundspeak:date>2011-11-20T20:00:00Z</groundspeak:date>
  3147.           <groundspeak:type>Didn't find it</groundspeak:type>
  3148.           <groundspeak:finder id="2201023">QJ/WIN</groundspeak:finder>
  3149.           <groundspeak:text encoded="False">I just don't get these caches.  We found the door and the trees but which door and which tree.  If you are just a little bit off, you waste too much time looking for something that isn't there.  Frustrating.</groundspeak:text>
  3150.         </groundspeak:log>
  3151.         <groundspeak:log id="199996673">
  3152.           <groundspeak:date>2011-11-20T20:00:00Z</groundspeak:date>
  3153.           <groundspeak:type>Didn't find it</groundspeak:type>
  3154.           <groundspeak:finder id="900812">Babygirl64</groundspeak:finder>
  3155.           <groundspeak:text encoded="False">Had to get out today before the Bears game started and grab a few caches.  I like caching this time of year because the distractions of leaves and foilage is gone.  So, just when I compliment QJ/Win on his skills...we failed miserably at this one.  I don't know, either we were completely off base or it might be gone.  There is a tremendous amount of activity even for a Sunday.  I wonder if a student got curious.  I am going to watch this one to see if someone else comes up with it after we have been there.</groundspeak:text>
  3156.         </groundspeak:log>
  3157.       </groundspeak:logs>
  3158.       <groundspeak:travelbugs />
  3159.     </groundspeak:cache>
  3160.   </wpt>
  3161.   <wpt lat="41.758417" lon="-88.187767">
  3162.     <time>2011-07-22T07:00:00Z</time>
  3163.     <name>GC30N3M</name>
  3164.     <desc>"Cross" roads by Cavermarkk, Traditional Cache (1/1)</desc>
  3165.     <url>http://www.geocaching.com/seek/cache_details.aspx?guid=781ddd95-c0d2-4a76-98eb-07e91a04d568</url>
  3166.     <urlname>"Cross" roads</urlname>
  3167.     <sym>Geocache</sym>
  3168.     <type>Geocache|Traditional Cache</type>
  3169.     <groundspeak:cache id="2379737" available="True" archived="False" xmlns:groundspeak="http://www.groundspeak.com/cache/1/0">
  3170.       <groundspeak:name>"Cross" roads</groundspeak:name>
  3171.       <groundspeak:placed_by>Cavermarkk</groundspeak:placed_by>
  3172.       <groundspeak:owner id="3574395">Cavermarkk</groundspeak:owner>
  3173.       <groundspeak:type>Traditional Cache</groundspeak:type>
  3174.       <groundspeak:container>Micro</groundspeak:container>
  3175.       <groundspeak:difficulty>1</groundspeak:difficulty>
  3176.       <groundspeak:terrain>1</groundspeak:terrain>
  3177.       <groundspeak:country>United States</groundspeak:country>
  3178.       <groundspeak:state>Illinois</groundspeak:state>
  3179.       <groundspeak:short_description html="False">
  3180.       </groundspeak:short_description>
  3181.       <groundspeak:long_description html="False">The name will make sense once you get there.  This is an easy Park and Grab LPC.  The container is a clear 35 mm film canister.  BYOP.  Beware of Muggles.
  3182.  
  3183. Congratulations KeeganC for FTF.</groundspeak:long_description>
  3184.       <groundspeak:encoded_hints>
  3185.       </groundspeak:encoded_hints>
  3186.       <groundspeak:logs>
  3187.         <groundspeak:log id="197778724">
  3188.           <groundspeak:date>2011-11-05T19:00:00Z</groundspeak:date>
  3189.           <groundspeak:type>Found it</groundspeak:type>
  3190.           <groundspeak:finder id="1907271">j3yoda</groundspeak:finder>
  3191.           <groundspeak:text encoded="False">Michigan_Chris, AThrillOfTheHunt and I used every second of daylight to find caches all over the area!  Gracias por el cache!</groundspeak:text>
  3192.         </groundspeak:log>
  3193.         <groundspeak:log id="197676029">
  3194.           <groundspeak:date>2011-11-05T19:00:00Z</groundspeak:date>
  3195.           <groundspeak:type>Found it</groundspeak:type>
  3196.           <groundspeak:finder id="60384">Odyn</groundspeak:finder>
  3197.           <groundspeak:text encoded="False">Katguy and I found this one while working the area.  Thanks for the cache.</groundspeak:text>
  3198.         </groundspeak:log>
  3199.         <groundspeak:log id="197486929">
  3200.           <groundspeak:date>2011-11-05T19:00:00Z</groundspeak:date>
  3201.           <groundspeak:type>Found it</groundspeak:type>
  3202.           <groundspeak:finder id="119759">katguy</groundspeak:finder>
  3203.           <groundspeak:text encoded="False">The caching expedition today brought us around the area where Odyn and I pounced and dispatched this hide.  Thanks for the cache and the fun time.</groundspeak:text>
  3204.         </groundspeak:log>
  3205.         <groundspeak:log id="197119984">
  3206.           <groundspeak:date>2011-11-05T19:00:00Z</groundspeak:date>
  3207.           <groundspeak:type>Found it</groundspeak:type>
  3208.           <groundspeak:finder id="1214585">salz69</groundspeak:finder>
  3209.           <groundspeak:text encoded="False">Hitting some caches before the DST event this morning, This guy was in my flight pattern. TFTC!!</groundspeak:text>
  3210.         </groundspeak:log>
  3211.         <groundspeak:log id="197115736">
  3212.           <groundspeak:date>2011-11-05T19:00:00Z</groundspeak:date>
  3213.           <groundspeak:type>Found it</groundspeak:type>
  3214.           <groundspeak:finder id="244143">michigan_chris</groundspeak:finder>
  3215.           <groundspeak:text encoded="False">I stopped by here today with j3yoda and AThrilloftheHunt on a DST event day bonanza.  We drove all over the place but managed to find lots of caches along the way and definitely had a good time.  Thanks for hiding this cache - it really made for a fun day.</groundspeak:text>
  3216.         </groundspeak:log>
  3217.       </groundspeak:logs>
  3218.       <groundspeak:travelbugs />
  3219.     </groundspeak:cache>
  3220.   </wpt>
  3221.   <wpt lat="41.852683" lon="-88.1557">
  3222.     <time>2010-04-20T07:00:00Z</time>
  3223.     <name>GC275HY</name>
  3224.     <desc>Tanks a lot! by double you, Traditional Cache (1.5/1)</desc>
  3225.     <url>http://www.geocaching.com/seek/cache_details.aspx?guid=371224e7-ce77-4768-ac6d-1e992c32e88e</url>
  3226.     <urlname>Tanks a lot!</urlname>
  3227.     <sym>Geocache</sym>
  3228.     <type>Geocache|Traditional Cache</type>
  3229.     <groundspeak:cache id="1649820" available="True" archived="False" xmlns:groundspeak="http://www.groundspeak.com/cache/1/0">
  3230.       <groundspeak:name>Tanks a lot!</groundspeak:name>
  3231.       <groundspeak:placed_by>double you</groundspeak:placed_by>
  3232.       <groundspeak:owner id="3198106">double you</groundspeak:owner>
  3233.       <groundspeak:type>Traditional Cache</groundspeak:type>
  3234.       <groundspeak:container>Micro</groundspeak:container>
  3235.       <groundspeak:difficulty>1.5</groundspeak:difficulty>
  3236.       <groundspeak:terrain>1</groundspeak:terrain>
  3237.       <groundspeak:country>United States</groundspeak:country>
  3238.       <groundspeak:state>Illinois</groundspeak:state>
  3239.       <groundspeak:short_description html="False">
  3240.       </groundspeak:short_description>
  3241.       <groundspeak:long_description html="False">This cache is worth the price of admission!  Learn about the wars the US has been involved in, stroll along beautifully landscaped gardens, and possibly get a round or two in!  We hold a special place in our hearts for the men and women whose sacrifices have made our freedom possible.  And to them we say, "tanks a lot!".  Enjoy!
  3242.      Regular parking fee is $5 per vehicle, with an off-peak rate of $2 on Mondays, and other days before 10am and after 4pm(fall, winter, spring) and after 5pm(summer).  Nov to Apr the park opens at 9am, May to Oct 7am.  The gates close one hour prior to sunset, with the park closing at sunset.  Museums and gift shops have different hours.  Check out the Cantigny website www.cantigny.org for more details if you'd like.
  3243.      This cache has been approved through the public relations department of Cantigny.</groundspeak:long_description>
  3244.       <groundspeak:encoded_hints>This is micro cache with only a log book in it.</groundspeak:encoded_hints>
  3245.       <groundspeak:logs>
  3246.         <groundspeak:log id="191349507">
  3247.           <groundspeak:date>2011-10-08T21:33:19Z</groundspeak:date>
  3248.           <groundspeak:type>Found it</groundspeak:type>
  3249.           <groundspeak:finder id="1297713">mattstratton</groundspeak:finder>
  3250.           <groundspeak:text encoded="False">Found it!</groundspeak:text>
  3251.         </groundspeak:log>
  3252.         <groundspeak:log id="189809920">
  3253.           <groundspeak:date>2011-10-01T19:30:15Z</groundspeak:date>
  3254.           <groundspeak:type>Found it</groundspeak:type>
  3255.           <groundspeak:finder id="3821130">willy_wonka</groundspeak:finder>
  3256.           <groundspeak:text encoded="False">My son found it while out for the civil war reenactment.  Tftc</groundspeak:text>
  3257.         </groundspeak:log>
  3258.         <groundspeak:log id="189340777">
  3259.           <groundspeak:date>2011-09-24T19:00:00Z</groundspeak:date>
  3260.           <groundspeak:type>Found it</groundspeak:type>
  3261.           <groundspeak:finder id="4288950">NESAMOH</groundspeak:finder>
  3262.           <groundspeak:text encoded="False">Found this with Boy Scout Troops 42 and 345 of the Chicago Area Council River Trails District. 
  3263. used it as part of the GEOCACHING Merit Badge.
  3264. TFTC we appriciate it.</groundspeak:text>
  3265.         </groundspeak:log>
  3266.         <groundspeak:log id="188750309">
  3267.           <groundspeak:date>2011-09-24T18:01:35Z</groundspeak:date>
  3268.           <groundspeak:type>Found it</groundspeak:type>
  3269.           <groundspeak:finder id="4388781">HilHawk</groundspeak:finder>
  3270.           <groundspeak:text encoded="False">Found a day after Jacobius :p</groundspeak:text>
  3271.         </groundspeak:log>
  3272.         <groundspeak:log id="188234779">
  3273.           <groundspeak:date>2011-09-24T04:09:30Z</groundspeak:date>
  3274.           <groundspeak:type>Found it</groundspeak:type>
  3275.           <groundspeak:finder id="3833934">lfedermeyer</groundspeak:finder>
  3276.           <groundspeak:text encoded="False">It took us two tries.  It was not where we would have expected it but it was very well done.  Nice one!</groundspeak:text>
  3277.         </groundspeak:log>
  3278.       </groundspeak:logs>
  3279.       <groundspeak:travelbugs />
  3280.     </groundspeak:cache>
  3281.   </wpt>
  3282.   <wpt lat="41.789383" lon="-88.277467">
  3283.     <time>2011-05-19T07:00:00Z</time>
  3284.     <name>GC2WHQQ</name>
  3285.     <desc>Scooter's Grotto by Scooter's Dog Spot, Traditional Cache (3/1.5)</desc>
  3286.     <url>http://www.geocaching.com/seek/cache_details.aspx?guid=7c1a8a6a-5d14-437f-ab7e-ba33d48aca82</url>
  3287.     <urlname>Scooter's Grotto</urlname>
  3288.     <sym>Geocache</sym>
  3289.     <type>Geocache|Traditional Cache</type>
  3290.     <groundspeak:cache id="2257352" available="True" archived="False" xmlns:groundspeak="http://www.groundspeak.com/cache/1/0">
  3291.       <groundspeak:name>Scooter's Grotto</groundspeak:name>
  3292.       <groundspeak:placed_by>Scooter's Dog Spot</groundspeak:placed_by>
  3293.       <groundspeak:owner id="331172">badlands</groundspeak:owner>
  3294.       <groundspeak:type>Traditional Cache</groundspeak:type>
  3295.       <groundspeak:container>Micro</groundspeak:container>
  3296.       <groundspeak:difficulty>3</groundspeak:difficulty>
  3297.       <groundspeak:terrain>1.5</groundspeak:terrain>
  3298.       <groundspeak:country>United States</groundspeak:country>
  3299.       <groundspeak:state>Illinois</groundspeak:state>
  3300.       <groundspeak:short_description html="True">
  3301.       </groundspeak:short_description>
  3302.       <groundspeak:long_description html="True">&lt;center&gt;This cache has been placed in conjunction with an event
  3303. hosted by:&lt;br /&gt;
  3304. &lt;a href=
  3305. "http://www.geocaching.com/profile/?guid=6de9b44a-7e32-4195-ba27-f2a3ae92ec6b&amp;amp;wid=8b330e9a-1265-45f2-80db-0b513eafd898&amp;amp;ds=2"
  3306. target="_blank" rel='nofollow'&gt;Dutchlandian&lt;/a&gt;&lt;/center&gt;
  3307. &lt;center&gt;&lt;a href="http://coord.info/GC2QDDM" target="_blank" rel=
  3308. 'nofollow'&gt;I Scream for a "Dutch Treat"&lt;/a&gt;&lt;/center&gt;
  3309. &lt;br /&gt;
  3310. &lt;br /&gt;
  3311. &lt;br /&gt;
  3312. &lt;br /&gt;
  3313. &lt;br /&gt;
  3314. &lt;br /&gt;
  3315. &lt;br /&gt;
  3316. &lt;br /&gt;
  3317. &lt;br /&gt;
  3318. &lt;br /&gt;
  3319. &lt;br /&gt;
  3320. &lt;br /&gt;
  3321. &lt;center&gt;&lt;a rel="nofollow" href="http://www.gonil.org/"&gt;&lt;img src=
  3322. "http://www.gonil.org/i/m/m_gonil_3_1.jpg" /&gt;&lt;/a&gt;&lt;/center&gt;
  3323. &lt;center&gt;Geocachers of Northeastern Illinois&lt;/center&gt;</groundspeak:long_description>
  3324.       <groundspeak:encoded_hints>Outside</groundspeak:encoded_hints>
  3325.       <groundspeak:logs>
  3326.         <groundspeak:log id="199385215">
  3327.           <groundspeak:date>2011-11-17T20:00:00Z</groundspeak:date>
  3328.           <groundspeak:type>Found it</groundspeak:type>
  3329.           <groundspeak:finder id="3902783">superior o</groundspeak:finder>
  3330.           <groundspeak:text encoded="False">Scooter was on my radar for the day. My first scooter find. Will not be my last.</groundspeak:text>
  3331.         </groundspeak:log>
  3332.         <groundspeak:log id="199116877">
  3333.           <groundspeak:date>2011-11-15T20:00:00Z</groundspeak:date>
  3334.           <groundspeak:type>Found it</groundspeak:type>
  3335.           <groundspeak:finder id="3778144">hurtpiggypig</groundspeak:finder>
  3336.           <groundspeak:text encoded="False">nice, I love this park :D</groundspeak:text>
  3337.         </groundspeak:log>
  3338.         <groundspeak:log id="197496510">
  3339.           <groundspeak:date>2011-11-05T19:00:00Z</groundspeak:date>
  3340.           <groundspeak:type>Found it</groundspeak:type>
  3341.           <groundspeak:finder id="161275">lucy~</groundspeak:finder>
  3342.           <groundspeak:text encoded="False">Out with the crew on a great autumn day. We had so much fun today finding a few and hanging out. I bet the rest of us looked at this at least twice...all except Mrs JU2 who got it on the first try.
  3343.  
  3344. Thanks badlands for the fun and the find.</groundspeak:text>
  3345.         </groundspeak:log>
  3346.         <groundspeak:log id="197491759">
  3347.           <groundspeak:date>2011-11-05T19:00:00Z</groundspeak:date>
  3348.           <groundspeak:type>Found it</groundspeak:type>
  3349.           <groundspeak:finder id="91151">JustUsTwo</groundspeak:finder>
  3350.           <groundspeak:text encoded="False">After looking around for a bit, Mrs. JU2 spotted it...in plain sight.  Cool area!    [8D]        
  3351.  
  3352. Thanks, “Scooter’s Dog Spot” for the cache!      [:D]</groundspeak:text>
  3353.         </groundspeak:log>
  3354.         <groundspeak:log id="196113644">
  3355.           <groundspeak:date>2011-10-31T19:00:00Z</groundspeak:date>
  3356.           <groundspeak:type>Found it</groundspeak:type>
  3357.           <groundspeak:finder id="4205557">mau724</groundspeak:finder>
  3358.           <groundspeak:text encoded="False">Found it! Most helpful hint was the terrain rate. TFTC!</groundspeak:text>
  3359.         </groundspeak:log>
  3360.       </groundspeak:logs>
  3361.       <groundspeak:travelbugs />
  3362.     </groundspeak:cache>
  3363.   </wpt>
  3364.   <wpt lat="41.802517" lon="-88.131067">
  3365.     <time>2011-10-03T07:00:00Z</time>
  3366.     <name>GC35ATZ</name>
  3367.     <desc>Higher Education - Huskies  by TomEagle55, Traditional Cache (1.5/1.5)</desc>
  3368.     <url>http://www.geocaching.com/seek/cache_details.aspx?guid=2ef1229d-14fc-4f2a-b9f9-be0638a78e19</url>
  3369.     <urlname>Higher Education - Huskies </urlname>
  3370.     <sym>Geocache</sym>
  3371.     <type>Geocache|Traditional Cache</type>
  3372.     <groundspeak:cache id="2518813" available="True" archived="False" xmlns:groundspeak="http://www.groundspeak.com/cache/1/0">
  3373.       <groundspeak:name>Higher Education - Huskies </groundspeak:name>
  3374.       <groundspeak:placed_by>TomEagle55</groundspeak:placed_by>
  3375.       <groundspeak:owner id="2669012">TomEagle55</groundspeak:owner>
  3376.       <groundspeak:type>Traditional Cache</groundspeak:type>
  3377.       <groundspeak:container>Micro</groundspeak:container>
  3378.       <groundspeak:difficulty>1.5</groundspeak:difficulty>
  3379.       <groundspeak:terrain>1.5</groundspeak:terrain>
  3380.       <groundspeak:country>United States</groundspeak:country>
  3381.       <groundspeak:state>Illinois</groundspeak:state>
  3382.       <groundspeak:short_description html="True">&lt;p&gt;&lt;b&gt;&lt;font face="Hurry Up" size="4"&gt;film cannister, hidden low but
  3383. still accessible during the winter.&lt;/font&gt;&lt;/b&gt;&lt;/p&gt;
  3384. &lt;p&gt;&lt;b&gt;&lt;font color="#FF0000" face="Hurry Up" size="4"&gt;High muggle
  3385. area during the day and sometimes on the weekends during
  3386. events.&lt;/font&gt;&lt;/b&gt;&lt;/p&gt;</groundspeak:short_description>
  3387.       <groundspeak:long_description html="True">&lt;p&gt;&lt;font face="Hurry Up" size="6"&gt;This cache is one of four
  3388. celebrating higher education opportunities along the Golden
  3389. Corridor.&lt;/font&gt;&lt;/p&gt;
  3390. &lt;p&gt;&lt;font face="Hurry Up" size="6" color="#FF0000"&gt;Within the cache
  3391. are 1/4 of the coordinates needed for the Higher Education -
  3392. Graduation bonus cache.&lt;/font&gt;&lt;/p&gt;</groundspeak:long_description>
  3393.       <groundspeak:encoded_hints>Needling.</groundspeak:encoded_hints>
  3394.       <groundspeak:logs>
  3395.         <groundspeak:log id="200500363">
  3396.           <groundspeak:date>2011-11-24T16:06:29Z</groundspeak:date>
  3397.           <groundspeak:type>Found it</groundspeak:type>
  3398.           <groundspeak:finder id="3118905">SquareRo0t</groundspeak:finder>
  3399.           <groundspeak:text encoded="False">First of the day, and the third in chicago. This was right across the hotel. Nice cammo. TFTC</groundspeak:text>
  3400.         </groundspeak:log>
  3401.         <groundspeak:log id="200497842">
  3402.           <groundspeak:date>2011-11-22T20:00:00Z</groundspeak:date>
  3403.           <groundspeak:type>Found it</groundspeak:type>
  3404.           <groundspeak:finder id="1622205">airguide</groundspeak:finder>
  3405.           <groundspeak:text encoded="False">Out with Mandy,Pickles,geoKens &amp; Fed on a cold windy and rainy Autumn day.Mr. Pickles found this one first TFTC [:)]</groundspeak:text>
  3406.         </groundspeak:log>
  3407.         <groundspeak:log id="200298504">
  3408.           <groundspeak:date>2011-11-22T20:00:00Z</groundspeak:date>
  3409.           <groundspeak:type>Found it</groundspeak:type>
  3410.           <groundspeak:finder id="1753034">geoKens</groundspeak:finder>
  3411.           <groundspeak:text encoded="False">Out with Fed, Mandy, Pickles, and airguide. The Tuesday Hunt Club hunted in rain for the 2nd time this year. TFTH. Thanks team had a great time today.</groundspeak:text>
  3412.         </groundspeak:log>
  3413.         <groundspeak:log id="200297948">
  3414.           <groundspeak:date>2011-11-22T20:00:00Z</groundspeak:date>
  3415.           <groundspeak:type>Found it</groundspeak:type>
  3416.           <groundspeak:finder id="424523">MandyCamp</groundspeak:finder>
  3417.           <groundspeak:text encoded="False">Caching in the rain with Airguide, geoKens, Mr. Pickles and fed.  Mr.Pickles found it.  TFTC</groundspeak:text>
  3418.         </groundspeak:log>
  3419.         <groundspeak:log id="200296156">
  3420.           <groundspeak:date>2011-11-22T20:00:00Z</groundspeak:date>
  3421.           <groundspeak:type>Found it</groundspeak:type>
  3422.           <groundspeak:finder id="2274995">Mr.Pickles</groundspeak:finder>
  3423.           <groundspeak:text encoded="False">Out with the Tuesday Hunt Club on a very rainy day.  TFTC</groundspeak:text>
  3424.         </groundspeak:log>
  3425.       </groundspeak:logs>
  3426.       <groundspeak:travelbugs />
  3427.     </groundspeak:cache>
  3428.   </wpt>
  3429.   <wpt lat="41.8146" lon="-88.284167">
  3430.     <time>2009-04-27T07:00:00Z</time>
  3431.     <name>GC1QNA6</name>
  3432.     <desc>LPC-NOT by Slim Shady, Traditional Cache (3.5/3.5)</desc>
  3433.     <url>http://www.geocaching.com/seek/cache_details.aspx?guid=692f6e9f-1e8b-43e8-b666-fe502dab9fe7</url>
  3434.     <urlname>LPC-NOT</urlname>
  3435.     <sym>Geocache</sym>
  3436.     <type>Geocache|Traditional Cache</type>
  3437.     <groundspeak:cache id="1218091" available="True" archived="False" xmlns:groundspeak="http://www.groundspeak.com/cache/1/0">
  3438.       <groundspeak:name>LPC-NOT</groundspeak:name>
  3439.       <groundspeak:placed_by>Slim Shady</groundspeak:placed_by>
  3440.       <groundspeak:owner id="56175">Spyderuser</groundspeak:owner>
  3441.       <groundspeak:type>Traditional Cache</groundspeak:type>
  3442.       <groundspeak:container>Small</groundspeak:container>
  3443.       <groundspeak:difficulty>3.5</groundspeak:difficulty>
  3444.       <groundspeak:terrain>3.5</groundspeak:terrain>
  3445.       <groundspeak:country>United States</groundspeak:country>
  3446.       <groundspeak:state>Illinois</groundspeak:state>
  3447.       <groundspeak:short_description html="False">You can park in Wal-Mart lot very close to the cache.</groundspeak:short_description>
  3448.       <groundspeak:long_description html="False">I was checking out this area and decided to hide a cache..At first I considered a LPC but there is already another LPC in this parking lot so I decided against that 1.  Besides that would just be 2 easy and I already hid an easy cache 4 or 5 weeks ago. I know that I have to be about 6 hundred feet away from the nearest cache and that puts me in the area just behind the Wal-Mart parking lot. Lucky for me there just happens to be 7 or 8 trees back there and they all look just perfect for hiding geocaches! The only problem is that the Wal-Mart building is surrounded by cameras!  There must be 9 or 10 cameras up there on top of the building just watching every corner of the parking lot.!!
  3449.  
  3450. So I searched and I searched and I think I finially found the perfect spot where I could hide a cache without being spotted by the cameras and arousing suspicion. 
  3451.  
  3452. You can park in the corner of the Wal-Mart within about 60 feet of the cache and if you proceed directly to the cache, you will be able to retreive it without being spotted.
  3453.  
  3454. But wait...There is a catch...This is a Spyderuser cache and I did not get my nasty reputation by hiding easy to spot caches. I will tell you that this cache is attached to an evergreen branch by a piece of heavy wire so that it will not fall off. I will also tell you that I have used a new cache container for this one and I think it is pretty sneaky. The container is small. It is a little bigger around than a roll of quarters but not big enough to fit a full size geocoin. There is a log book inside with a little note to the FTF. 
  3455.  
  3456. Coordinates are very accurate and I believe they should be for this type of hide. There are little pieces of trash scattered around so feel free to pick them up and carry them away so the next searcher does not have to search them.
  3457.  
  3458. When you find it, let me know if you like, and if the ratings are accurate.</groundspeak:long_description>
  3459.       <groundspeak:encoded_hints>Never trust a Spyder and the numbers mean nothing.. I'm just learning to count... I don't have many friends so email me and tell me you want to be my friend if you want a clue...</groundspeak:encoded_hints>
  3460.       <groundspeak:logs>
  3461.         <groundspeak:log id="199046760">
  3462.           <groundspeak:date>2011-11-15T14:08:28Z</groundspeak:date>
  3463.           <groundspeak:type>Didn't find it</groundspeak:type>
  3464.           <groundspeak:finder id="1837219">JonesPosse</groundspeak:finder>
  3465.           <groundspeak:text encoded="False">Not to be found today! Checked nearby trees but coords had me at the curb!</groundspeak:text>
  3466.         </groundspeak:log>
  3467.         <groundspeak:log id="190356435">
  3468.           <groundspeak:date>2011-10-03T14:03:32Z</groundspeak:date>
  3469.           <groundspeak:type>Didn't find it</groundspeak:type>
  3470.           <groundspeak:finder id="4896043">Senninha27</groundspeak:finder>
  3471.           <groundspeak:text encoded="False">Didn't find, but there was something conspicuously missing at GZ, so I emailed spyderuser</groundspeak:text>
  3472.         </groundspeak:log>
  3473.         <groundspeak:log id="190265483">
  3474.           <groundspeak:date>2011-10-02T19:00:00Z</groundspeak:date>
  3475.           <groundspeak:type>Didn't find it</groundspeak:type>
  3476.           <groundspeak:finder id="1295103">goinkers</groundspeak:finder>
  3477.           <groundspeak:text encoded="False">Saw this one had a high terrain and wanted to go after it. When we got there we saw there was some new homes being built. There wasn't anything around suggesting a 3.5 terrain. Pops looked around for 20 mins but came up with nothing. 
  3478.  
  3479. The CO should prolly check this out.</groundspeak:text>
  3480.         </groundspeak:log>
  3481.         <groundspeak:log id="190119455">
  3482.           <groundspeak:date>2011-10-02T17:52:09Z</groundspeak:date>
  3483.           <groundspeak:type>Didn't find it</groundspeak:type>
  3484.           <groundspeak:finder id="5090337">Stacy2701</groundspeak:finder>
  3485.           <groundspeak:text encoded="False">I'll come back with reinforcement next time.</groundspeak:text>
  3486.         </groundspeak:log>
  3487.         <groundspeak:log id="177865626">
  3488.           <groundspeak:date>2011-08-06T19:00:00Z</groundspeak:date>
  3489.           <groundspeak:type>Found it</groundspeak:type>
  3490.           <groundspeak:finder id="1887528">summergladiators</groundspeak:finder>
  3491.           <groundspeak:text encoded="False">We first looked for this cache a little over a year ago (7/17/2010).  I'm not sure why I didn't log a DNF, but that's what it was on that day. 
  3492.  
  3493. So we thought about this cache for the past year, and had a plan for our summer visit back to the area.  I am very glad that we were on the right track, otherwise we were out of ideas.  
  3494.  
  3495. We really enjoyed this adventure.  I have not laughed so hard at watching how excited my older daughter was at making this find today. I could hardly curb her enthusiasm.  Both daughters especially enjoyed this and will most likely report it as a notable summer activity once they get back to school.  Thanks for the hide.  
  3496.  
  3497. Now to the log.... We opened the cache to find chewed cud, which once was the log.  So we took the recommendations of previous finders and brought along the necessary stuff to do log maintenance.  Old log is in a sealed bad, in case the cache owner wants to try to dry it out and salvage.  Inside of the container was dried with a cloth.  A new log was started and is in a resealable bag.  Cache replaced to its original spot.  We will download a picture of the old log once we return home.
  3498.  
  3499. We did attract some attention when my wife was busily taking pictures of us in the process of searching and finding the cache.  He was watching from a distance, smoking a cigarette, thinking "What the hell are these people doing!  Should I help them, or just keep my distance?"  He kept his distance and we had fun!  He probably has a story to tell over dinner tonight.
  3500.  
  3501. Thanks to Spyderuser for making and placing this cache.  We like to have the occasional difficult find.  To all future cachers - don't give up, you will figure it out.  We did!!! [:D] [:X] [:P] [8)]</groundspeak:text>
  3502.         </groundspeak:log>
  3503.         <groundspeak:log id="74153341">
  3504.           <groundspeak:date>2009-06-14T19:00:00Z</groundspeak:date>
  3505.           <groundspeak:type>Write note</groundspeak:type>
  3506.           <groundspeak:finder id="284972">White Dane &amp; Irish Setter</groundspeak:finder>
  3507.           <groundspeak:text encoded="False">Not gonna do it,  just not gonna do it.  Take a DNFr on this. We figured it out, even the rating, confirmed the whole thing.  So we are writing a note and coming back to get this one. TFTH</groundspeak:text>
  3508.         </groundspeak:log>
  3509.       </groundspeak:logs>
  3510.       <groundspeak:travelbugs />
  3511.     </groundspeak:cache>
  3512.   </wpt>
  3513.   <wpt lat="41.778367" lon="-88.271667">
  3514.     <time>2011-06-11T07:00:00Z</time>
  3515.     <name>GC2Y1A3</name>
  3516.     <desc>Stonegate Workout by JnglBelz, Traditional Cache (1/1)</desc>
  3517.     <url>http://www.geocaching.com/seek/cache_details.aspx?guid=218d0244-c158-414b-9ecd-a9d568d005aa</url>
  3518.     <urlname>Stonegate Workout</urlname>
  3519.     <sym>Geocache</sym>
  3520.     <type>Geocache|Traditional Cache</type>
  3521.     <groundspeak:cache id="2301135" available="True" archived="False" xmlns:groundspeak="http://www.groundspeak.com/cache/1/0">
  3522.       <groundspeak:name>Stonegate Workout</groundspeak:name>
  3523.       <groundspeak:placed_by>JnglBelz</groundspeak:placed_by>
  3524.       <groundspeak:owner id="1391683">JnglBelz</groundspeak:owner>
  3525.       <groundspeak:type>Traditional Cache</groundspeak:type>
  3526.       <groundspeak:container>Micro</groundspeak:container>
  3527.       <groundspeak:difficulty>1</groundspeak:difficulty>
  3528.       <groundspeak:terrain>1</groundspeak:terrain>
  3529.       <groundspeak:country>United States</groundspeak:country>
  3530.       <groundspeak:state>Illinois</groundspeak:state>
  3531.       <groundspeak:short_description html="False">This is an easy grab. Bring your own writing stick.</groundspeak:short_description>
  3532.       <groundspeak:long_description html="False">Wow. Who thought of this? An exercise park? Is the Park District trying to tell us geoseekers something?</groundspeak:long_description>
  3533.       <groundspeak:encoded_hints>
  3534.       </groundspeak:encoded_hints>
  3535.       <groundspeak:logs>
  3536.         <groundspeak:log id="199711782">
  3537.           <groundspeak:date>2011-11-05T19:00:00Z</groundspeak:date>
  3538.           <groundspeak:type>Found it</groundspeak:type>
  3539.           <groundspeak:finder id="4014037">LEGOexplorer</groundspeak:finder>
  3540.           <groundspeak:text encoded="False">Found it with mom, dad and a group of cachers after the event. We signed the log as the Breakfast Club.</groundspeak:text>
  3541.         </groundspeak:log>
  3542.         <groundspeak:log id="198070294">
  3543.           <groundspeak:date>2011-11-05T19:00:00Z</groundspeak:date>
  3544.           <groundspeak:type>Found it</groundspeak:type>
  3545.           <groundspeak:finder id="2051259">BRBTLawson</groundspeak:finder>
  3546.           <groundspeak:text encoded="False">Out caching after a local event.  TFTC!!!  BRBTLawson</groundspeak:text>
  3547.         </groundspeak:log>
  3548.         <groundspeak:log id="197923676">
  3549.           <groundspeak:date>2011-11-05T19:00:00Z</groundspeak:date>
  3550.           <groundspeak:type>Found it</groundspeak:type>
  3551.           <groundspeak:finder id="744677">racer2814</groundspeak:finder>
  3552.           <groundspeak:text encoded="False">Found in between events today. Signed log as TBC for The Breakfast Crew which consisted of KingEvo, King0806, spierson82, geecmom, Texican Space Cowboy, and myself. We made a giant loop through the area and found many caches. Thanks for placing this one. Orale! Live, laugh, love, cache.</groundspeak:text>
  3553.         </groundspeak:log>
  3554.         <groundspeak:log id="197556602">
  3555.           <groundspeak:date>2011-11-05T19:00:00Z</groundspeak:date>
  3556.           <groundspeak:type>Found it</groundspeak:type>
  3557.           <groundspeak:finder id="2368594">bapierson</groundspeak:finder>
  3558.           <groundspeak:text encoded="False">TFTC</groundspeak:text>
  3559.         </groundspeak:log>
  3560.         <groundspeak:log id="197499972">
  3561.           <groundspeak:date>2011-11-05T19:00:00Z</groundspeak:date>
  3562.           <groundspeak:type>Found it</groundspeak:type>
  3563.           <groundspeak:finder id="1737330">BDKnel</groundspeak:finder>
  3564.           <groundspeak:text encoded="False">Pumped a little iron here.   SLTFTC</groundspeak:text>
  3565.         </groundspeak:log>
  3566.       </groundspeak:logs>
  3567.       <groundspeak:travelbugs />
  3568.     </groundspeak:cache>
  3569.   </wpt>
  3570.   <wpt lat="41.759017" lon="-88.171333">
  3571.     <time>2011-10-08T07:00:00Z</time>
  3572.     <name>GC35K8Q</name>
  3573.     <desc>Fancy Needlework at Buttonwood Park by G.O. John and Carol, Traditional Cache (1.5/2.5)</desc>
  3574.     <url>http://www.geocaching.com/seek/cache_details.aspx?guid=3ba92b90-0c29-458d-91a4-c55c861b3e1f</url>
  3575.     <urlname>Fancy Needlework at Buttonwood Park</urlname>
  3576.     <sym>Geocache</sym>
  3577.     <type>Geocache|Traditional Cache</type>
  3578.     <groundspeak:cache id="2526928" available="True" archived="False" xmlns:groundspeak="http://www.groundspeak.com/cache/1/0">
  3579.       <groundspeak:name>Fancy Needlework at Buttonwood Park</groundspeak:name>
  3580.       <groundspeak:placed_by>G.O. John and Carol</groundspeak:placed_by>
  3581.       <groundspeak:owner id="235754">G.O. John and Carol</groundspeak:owner>
  3582.       <groundspeak:type>Traditional Cache</groundspeak:type>
  3583.       <groundspeak:container>Micro</groundspeak:container>
  3584.       <groundspeak:difficulty>1.5</groundspeak:difficulty>
  3585.       <groundspeak:terrain>2.5</groundspeak:terrain>
  3586.       <groundspeak:country>United States</groundspeak:country>
  3587.       <groundspeak:state>Illinois</groundspeak:state>
  3588.       <groundspeak:short_description html="True">
  3589.       </groundspeak:short_description>
  3590.       <groundspeak:long_description html="True">&lt;p align="center"&gt;&lt;font size="4" face="Arial"&gt;&lt;font size="4" face=
  3591. "Arial"&gt;This cache was hidden for the following 2 events:&lt;br /&gt;
  3592. &lt;a href=
  3593. "http://www.geocaching.com/seek/cache_details.aspx?guid=d4e3d2a1-058b-4f88-9ef8-014235194400"&gt;
  3594. &lt;font color="#0066CC"&gt;Please Don't Leave, DST! A Breakfast
  3595. Event&lt;br /&gt;&lt;/font&gt;&lt;/a&gt;and Moodygrrl's follow up event&lt;br /&gt;
  3596. &lt;a href=
  3597. "http://www.geocaching.com/seek/cache_details.aspx?wp=GC33NYG"&gt;&lt;font color="#0066CC"&gt;
  3598. "Fall Back"... Into Caching&lt;/font&gt;&lt;/a&gt;&lt;/font&gt;&lt;/font&gt;&lt;/p&gt;
  3599. &lt;p align="left"&gt;&lt;font size="4" face="Arial"&gt;&lt;font size="4" face=
  3600. "Arial"&gt;&lt;br /&gt;
  3601. Sure, I like to needle you a lot with our hides, but this is a
  3602. different kind of needlework.&amp;nbsp; Well, maybe it's different, or
  3603. maybe it's TWO KINDS of needlework.&amp;nbsp;You'll have to be the
  3604. judge of that.&amp;nbsp; I predict some DNFs here, but it really
  3605. shouldn't be too&amp;nbsp;difficult if you trust your...&lt;br /&gt;
  3606. &lt;br /&gt;
  3607. (choose one)&lt;br /&gt;
  3608. &lt;br /&gt;
  3609. A. GPS&lt;br /&gt;
  3610. B. Geosense&lt;br /&gt;
  3611. C.&amp;nbsp;COMMON sense and avoid this cache&lt;br /&gt;
  3612. D. None of the above&lt;br /&gt;
  3613. &lt;br /&gt;
  3614. Don't you love multiple choice?&amp;nbsp; Hope you pick the one that's
  3615. right for you!&amp;nbsp;&lt;/font&gt;&lt;/font&gt;&lt;/p&gt;</groundspeak:long_description>
  3616.       <groundspeak:encoded_hints>
  3617.       </groundspeak:encoded_hints>
  3618.       <groundspeak:logs>
  3619.         <groundspeak:log id="198709280">
  3620.           <groundspeak:date>2011-11-12T20:00:00Z</groundspeak:date>
  3621.           <groundspeak:type>Found it</groundspeak:type>
  3622.           <groundspeak:finder id="1295103">goinkers</groundspeak:finder>
  3623.           <groundspeak:text encoded="False">We were fortunate to take the right approach on this one--like from about 3 miles south where Younger Son learned a lesson he aptly applied here.  Pops thinks there's a bit of deception going on here, but all is fair in love and caching--isn't it?</groundspeak:text>
  3624.         </groundspeak:log>
  3625.         <groundspeak:log id="197778727">
  3626.           <groundspeak:date>2011-11-05T19:00:00Z</groundspeak:date>
  3627.           <groundspeak:type>Found it</groundspeak:type>
  3628.           <groundspeak:finder id="1907271">j3yoda</groundspeak:finder>
  3629.           <groundspeak:text encoded="False">Michigan_Chris, AThrillOfTheHunt and I used every second of daylight to find caches all over the area!  Gracias por el cache!</groundspeak:text>
  3630.         </groundspeak:log>
  3631.         <groundspeak:log id="197676154">
  3632.           <groundspeak:date>2011-11-05T19:00:00Z</groundspeak:date>
  3633.           <groundspeak:type>Found it</groundspeak:type>
  3634.           <groundspeak:finder id="60384">Odyn</groundspeak:finder>
  3635.           <groundspeak:text encoded="False">Ran into Eagle Son, herbs2, KeeganC, and TeamAlexAbby at the cache.  Everyone had their chance to find the cache.  Thanks for hiding this one.</groundspeak:text>
  3636.         </groundspeak:log>
  3637.         <groundspeak:log id="197662569">
  3638.           <groundspeak:date>2011-11-05T19:00:00Z</groundspeak:date>
  3639.           <groundspeak:type>Found it</groundspeak:type>
  3640.           <groundspeak:finder id="2299304">KeeganC</groundspeak:finder>
  3641.           <groundspeak:text encoded="False">Hit the trail today with my son, TeamAlexAbby, Herbs2 and Eagle Son after the DST Breakfast Event.
  3642.  
  3643. As we parked and started our walk to GZ katguy and Odyn pulled up and joined us for the search.  We all searched around GZ for a few minutes before making the find.
  3644.  
  3645. TFTC SL.</groundspeak:text>
  3646.         </groundspeak:log>
  3647.         <groundspeak:log id="197486931">
  3648.           <groundspeak:date>2011-11-05T19:00:00Z</groundspeak:date>
  3649.           <groundspeak:type>Found it</groundspeak:type>
  3650.           <groundspeak:finder id="119759">katguy</groundspeak:finder>
  3651.           <groundspeak:text encoded="False">Our rambling today found us checking out the neighborhood for adventures and hidden treasures, and as we pulled up the TB decal on the car ahead clued us in that we had caught up with some others from the breakfast event.  Sure enough, Eagle Son, herbs2, KeeganC, and TeamAlexAbby were already hot in pursuit.  Thanks for the adventure.</groundspeak:text>
  3652.         </groundspeak:log>
  3653.       </groundspeak:logs>
  3654.       <groundspeak:travelbugs />
  3655.     </groundspeak:cache>
  3656.   </wpt>
  3657. </gpx>
  3658.  
Attached Files
File Type: zip Sample XML data.zip (45.5 KB, 62 views)
Nov 25 '11 #1

✓ answered by Claus Mygind

Well I figured it out. It was just a matter of properly defining the "reader.onloadend" event and removing the file loop. I am sure there is a prettier way to write the code but the code below works quite well.

Additional validation has to be put in the code to verify some files were chosen. But that is minor stuff. Now at least I can go on processing.

Expand|Select|Wrap|Line Numbers
  1. <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
  2. <html xmlns="http://www.w3.org/1999/xhtml">
  3. <head>
  4.     <title id="title">Uploader</title>
  5.  
  6.     <script type="text/javascript">
  7.         var g = new Object()
  8.  
  9.         //an array I can access after files have been loaded into browser memory
  10.         g.grpWpt = new Array();
  11.  
  12.         //instantiate the reader
  13.         var reader = new FileReader();
  14.  
  15.         /*when file has loaded store in an array*/
  16.         reader.onload = function () { 
  17.             g.grpWpt.push( reader.result.split("<wpt ") );
  18.         }
  19.  
  20.         reader.onloadend = function () { 
  21.             document.getElementById("filesProcessed").value += "\n"+g.files[g.currCnt].name;
  22.             g.currCnt += 1;
  23.             if (g.currCnt < g.fileCnt)
  24.             {
  25.                 processFile(g.currCnt);
  26.             }else{
  27.                 alert("Done!");
  28.             }
  29.         }
  30.  
  31.         function docStartUp(obj)
  32.         {
  33.             var fileSelect = document.getElementById("fileSelect"),  
  34.             fileElem = document.getElementById("fileElem");  
  35.  
  36.             fileSelect.addEventListener("click", function (e) {  
  37.                 if (fileElem) { fileElem.click(); }  
  38.                 e.preventDefault(); // prevent navigation to "#"  
  39.             }, false);      
  40.  
  41.             fileElem.addEventListener("change", function (e) {
  42.                 g.grpWpt.length = 0;
  43.                 g.files = this.files;
  44.                 g.fileCnt = this.files.length;
  45.                 g.currCnt = 0;
  46.                 processFile(0);
  47.             }, false);
  48.         }
  49.  
  50.         function processFile(cnt)    
  51.         {
  52.                 g.currCnt = cnt;
  53.                 handleFiles(g.files[cnt]);
  54.         }
  55.  
  56.         function handleFiles(files) {
  57.             reader.readAsText( files );
  58.         }
  59.     </script> 
  60.  </head>
  61.  
  62. <body onload="docStartUp(this)">
  63.     <input type="file" id="fileElem" multiple="true" accept="xml/*" style="display:none">  
  64.     <a href="#" id="fileSelect">Select Files</a> <br />
  65.     <textarea id="filesProcessed" rows="10" cols="100" value=""></textarea>
  66. </body>
  67. </html>
  68.  

2 4579
Claus Mygind
571 512MB
Note this is a serverless HTML page. Just cut and paste the sample code above. If you don't want to limit yourself to .gpx files, just delete that "if" condition from the javaScript.
Nov 25 '11 #2
Claus Mygind
571 512MB
Well I figured it out. It was just a matter of properly defining the "reader.onloadend" event and removing the file loop. I am sure there is a prettier way to write the code but the code below works quite well.

Additional validation has to be put in the code to verify some files were chosen. But that is minor stuff. Now at least I can go on processing.

Expand|Select|Wrap|Line Numbers
  1. <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
  2. <html xmlns="http://www.w3.org/1999/xhtml">
  3. <head>
  4.     <title id="title">Uploader</title>
  5.  
  6.     <script type="text/javascript">
  7.         var g = new Object()
  8.  
  9.         //an array I can access after files have been loaded into browser memory
  10.         g.grpWpt = new Array();
  11.  
  12.         //instantiate the reader
  13.         var reader = new FileReader();
  14.  
  15.         /*when file has loaded store in an array*/
  16.         reader.onload = function () { 
  17.             g.grpWpt.push( reader.result.split("<wpt ") );
  18.         }
  19.  
  20.         reader.onloadend = function () { 
  21.             document.getElementById("filesProcessed").value += "\n"+g.files[g.currCnt].name;
  22.             g.currCnt += 1;
  23.             if (g.currCnt < g.fileCnt)
  24.             {
  25.                 processFile(g.currCnt);
  26.             }else{
  27.                 alert("Done!");
  28.             }
  29.         }
  30.  
  31.         function docStartUp(obj)
  32.         {
  33.             var fileSelect = document.getElementById("fileSelect"),  
  34.             fileElem = document.getElementById("fileElem");  
  35.  
  36.             fileSelect.addEventListener("click", function (e) {  
  37.                 if (fileElem) { fileElem.click(); }  
  38.                 e.preventDefault(); // prevent navigation to "#"  
  39.             }, false);      
  40.  
  41.             fileElem.addEventListener("change", function (e) {
  42.                 g.grpWpt.length = 0;
  43.                 g.files = this.files;
  44.                 g.fileCnt = this.files.length;
  45.                 g.currCnt = 0;
  46.                 processFile(0);
  47.             }, false);
  48.         }
  49.  
  50.         function processFile(cnt)    
  51.         {
  52.                 g.currCnt = cnt;
  53.                 handleFiles(g.files[cnt]);
  54.         }
  55.  
  56.         function handleFiles(files) {
  57.             reader.readAsText( files );
  58.         }
  59.     </script> 
  60.  </head>
  61.  
  62. <body onload="docStartUp(this)">
  63.     <input type="file" id="fileElem" multiple="true" accept="xml/*" style="display:none">  
  64.     <a href="#" id="fileSelect">Select Files</a> <br />
  65.     <textarea id="filesProcessed" rows="10" cols="100" value=""></textarea>
  66. </body>
  67. </html>
  68.  
Nov 26 '11 #3

Sign in to post your reply or Sign up for a free account.

Similar topics

6
by: x. zhang | last post by:
Hi Guys, We know that we can use <input type=file ...> to upload one file per time to the server. My question is if there are some way to upload multiple files per time to the server. (Of...
3
by: arkerpay2001 | last post by:
Hi all, Developing in JavaScript for IE6+ and Mozilla 1.7+. Could someone please direct me to a reference that describes how memory in managed within the browser? I need to know how much...
2
by: moondaddy | last post by:
I have a asp.net app where a user will need to download multiple files at once. Below is some sample code I'm using to download a single file which works perfectly, however, rather than a single...
5
by: Stanav | last post by:
Hello all, Thanks in advance for any replies... Now, my question is: Is it possible to do a multiple files download for a single response event on an aspx page? If there is, please give me some...
7
by: crowl | last post by:
Hi there, I am looking for a component allowing me uploading multiple files by my asp page. I have found several components achieving this by require a <input type="file" name="FileX"> field for...
3
by: fatima.issawi | last post by:
Hello, Is it possible to download multiple files? Right now I am using the following code in a loop, but I can only save one file - the first one. Response.Clear();...
5
by: tdan | last post by:
When loading Javascript files with <scripttags in your HTML, do the files load AND run sequentially or does the HTML simply load the files and run them simultaneously. If not, how can you force...
2
by: jai_python | last post by:
hi frenz I Need a Python Script For read multiple files(.txt) from a folder and write it in a single text file.... Thanks
2
by: aruna.mysore | last post by:
Hi all, I have specific question about usage of extern. I want to share a single variable say int a; across multiple files. I would define it in file1.c as int a=0; int main() {
43
by: bonneylake | last post by:
Hey Everyone, Well this is my first time asking a question on here so please forgive me if i post my question in the wrong section. What i am trying to do is upload multiple files like gmail...
0
by: Charles Arthur | last post by:
How do i turn on java script on a villaon, callus and itel keypad mobile phone
0
by: emmanuelkatto | last post by:
Hi All, I am Emmanuel katto from Uganda. I want to ask what challenges you've faced while migrating a website to cloud. Please let me know. Thanks! Emmanuel
0
BarryA
by: BarryA | last post by:
What are the essential steps and strategies outlined in the Data Structures and Algorithms (DSA) roadmap for aspiring data scientists? How can individuals effectively utilize this roadmap to progress...
1
by: Sonnysonu | last post by:
This is the data of csv file 1 2 3 1 2 3 1 2 3 1 2 3 2 3 2 3 3 the lengths should be different i have to store the data by column-wise with in the specific length. suppose the i have to...
0
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However,...
0
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can...
0
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers,...
0
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows...
0
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.