diff options
author | Bananeweizen <bananeweizen@gmx.de> | 2012-03-20 19:51:02 +0100 |
---|---|---|
committer | Bananeweizen <bananeweizen@gmx.de> | 2012-03-20 19:51:02 +0100 |
commit | 02f1ba2c07ec824e9d8df04908ecb2cde1ab3644 (patch) | |
tree | a44656e580be1e56be3a924007b3beceb5c2bade | |
parent | 7212666e3ca6f7f84e3a00388fd221ad59073dd2 (diff) | |
download | cgeo-02f1ba2c07ec824e9d8df04908ecb2cde1ab3644.zip cgeo-02f1ba2c07ec824e9d8df04908ecb2cde1ab3644.tar.gz cgeo-02f1ba2c07ec824e9d8df04908ecb2cde1ab3644.tar.bz2 |
fix #1281: .gpx import fails to recognize most caches in TX Challenge
package
-rw-r--r-- | main/src/cgeo/geocaching/files/GPXParser.java | 38 | ||||
-rw-r--r-- | tests/res/raw/challenge.gpx | 7553 | ||||
-rw-r--r-- | tests/src/cgeo/geocaching/files/GPXParserTest.java | 6 |
3 files changed, 7584 insertions, 13 deletions
diff --git a/main/src/cgeo/geocaching/files/GPXParser.java b/main/src/cgeo/geocaching/files/GPXParser.java index 10f3fa8..579c080 100644 --- a/main/src/cgeo/geocaching/files/GPXParser.java +++ b/main/src/cgeo/geocaching/files/GPXParser.java @@ -47,7 +47,10 @@ public abstract class GPXParser extends FileParser { private static final SimpleDateFormat formatSimpleZ = new SimpleDateFormat("yyyy-MM-dd'T'HH:mm:ss'Z'"); // 2010-04-20T07:00:00Z private static final SimpleDateFormat formatTimezone = new SimpleDateFormat("yyyy-MM-dd'T'HH:mm:ssZ"); // 2010-04-20T01:01:03-04:00 - private static final Pattern patternGeocode = Pattern.compile("([A-Z]{2}[0-9A-Z]+)", Pattern.CASE_INSENSITIVE); + /** + * Attention: case sensitive geocode pattern to avoid matching normal words in the name or description of the cache. + */ + private static final Pattern patternGeocode = Pattern.compile("([A-Z][0-9A-Z]+)"); private static final Pattern patternGuid = Pattern.compile(".*" + Pattern.quote("guid=") + "([0-9a-z\\-]+)", Pattern.CASE_INSENSITIVE); /** * supported groundspeak extensions of the GPX format @@ -61,7 +64,10 @@ public abstract class GPXParser extends FileParser { /** * supported GSAK extension of the GPX format */ - private static final String GSAK_NS = "http://www.gsak.net/xmlv1/5"; + private static final String[] GSAK_NS = new String[] { + "http://www.gsak.net/xmlv1/5", + "http://www.gsak.net/xmlv1/6" + }; private static final Pattern PATTERN_MILLISECONDS = Pattern.compile("\\.\\d{3,7}"); @@ -287,7 +293,11 @@ public abstract class GPXParser extends FileParser { createNoteFromGSAKUserdata(); - result.put(cache.getGeocode(), cache); + final String key = cache.getGeocode(); + if (result.containsKey(key)) { + Log.w(Settings.tag, "Duplicate geocode during GPX import: " + key); + } + result.put(key, cache); showProgressMessage(progressHandler, progressStream.getProgress()); } else if (StringUtils.isNotBlank(cache.getName()) && cache.getCoords() != null @@ -421,19 +431,21 @@ public abstract class GPXParser extends FileParser { final Element cacheParent = getCacheParent(waypoint); // GSAK extensions - final Element gsak = cacheParent.getChild(GSAK_NS, "wptExtension"); - gsak.getChild(GSAK_NS, "Watch").setEndTextElementListener(new EndTextElementListener() { + for (String gsakNamespace : GSAK_NS) { + final Element gsak = cacheParent.getChild(gsakNamespace, "wptExtension"); + gsak.getChild(gsakNamespace, "Watch").setEndTextElementListener(new EndTextElementListener() { - @Override - public void end(String watchList) { - cache.setOnWatchlist(Boolean.valueOf(watchList.trim()).booleanValue()); - } - }); + @Override + public void end(String watchList) { + cache.setOnWatchlist(Boolean.valueOf(watchList.trim()).booleanValue()); + } + }); - gsak.getChild(GSAK_NS, "UserData").setEndTextElementListener(new UserDataListener(1)); + gsak.getChild(gsakNamespace, "UserData").setEndTextElementListener(new UserDataListener(1)); - for (int i = 2; i <= 4; i++) { - gsak.getChild(GSAK_NS, "User" + i).setEndTextElementListener(new UserDataListener(i)); + for (int i = 2; i <= 4; i++) { + gsak.getChild(gsakNamespace, "User" + i).setEndTextElementListener(new UserDataListener(i)); + } } // 3 different versions of the GC schema diff --git a/tests/res/raw/challenge.gpx b/tests/res/raw/challenge.gpx new file mode 100644 index 0000000..a7ab96a --- /dev/null +++ b/tests/res/raw/challenge.gpx @@ -0,0 +1,7553 @@ +<?xml version="1.0" encoding="utf-8"?>
+<gpx xmlns:xsd="http://www.w3.org/2001/XMLSchema"
+xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
+version="1.0" creator="GSAK"
+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/1 http://www.groundspeak.com/cache/1/0/1/cache.xsd http://www.gsak.net/xmlv1/6 http://www.gsak.net/xmlv1/6/gsak.xsd"
+xmlns="http://www.topografix.com/GPX/1/0">
+ <desc>Geocache file generated by GSAK (HasChildren)</desc>
+ <author>GSAK</author>
+ <email>support@gsak.net</email>
+ <time>2012-03-10T08:10:33Z</time>
+ <keywords>cache, geocache, groundspeak</keywords>
+ <bounds minlat="33.361017" minlon="-97.035467" maxlat="33.408267" maxlon="-96.98995"/>
+ <wpt lat="33.36815" lon="-97.0129">
+ <time>2012-03-10T08:00:00Z</time>
+ <name>E221</name>
+ <desc>Evil Cache 221 by TEXANS (5/5)</desc>
+ <url></url>
+ <urlname>Evil Cache 221 by TEXANS</urlname>
+ <sym>Geocache</sym>
+ <type>Geocache|Virtual Cache</type>
+ <gsak:wptExtension xmlns:gsak="http://www.gsak.net/xmlv1/6">
+ <gsak:UserFlag>false</gsak:UserFlag>
+ <gsak:Lock>false</gsak:Lock>
+ <gsak:DNF>false</gsak:DNF>
+ <gsak:Watch>false</gsak:Watch>
+ <gsak:UserData></gsak:UserData>
+ <gsak:FirstToFind>false</gsak:FirstToFind>
+ <gsak:User2></gsak:User2>
+ <gsak:User3></gsak:User3>
+ <gsak:User4></gsak:User4>
+ <gsak:County></gsak:County>
+ <gsak:UserSort>0</gsak:UserSort>
+ <gsak:SmartName>EvilC221</gsak:SmartName>
+ <gsak:LastGpxDate>2012-03-10</gsak:LastGpxDate>
+ <gsak:Code>E221</gsak:Code>
+ <gsak:Resolution></gsak:Resolution>
+ <gsak:IsPremium>false</gsak:IsPremium>
+ <gsak:FavPoints>0</gsak:FavPoints>
+ <gsak:GcNote></gsak:GcNote>
+ <gsak:Guid></gsak:Guid>
+ <gsak:CacheImages>
+ </gsak:CacheImages>
+ <gsak:LogImages>
+ </gsak:LogImages>
+ <gsak:CustomData>
+Custom_Start:cCode:Custom_Data:E221:Custom_End
+
+ </gsak:CustomData>
+ </gsak:wptExtension>
+ <groundspeak:cache id="545" available="True" archived="False" xmlns:groundspeak="http://www.groundspeak.com/cache/1/0/1">
+ <groundspeak:name>Evil Cache 221</groundspeak:name>
+ <groundspeak:placed_by>TEXANS</groundspeak:placed_by>
+ <groundspeak:owner id="1">TXGA</groundspeak:owner>
+ <groundspeak:type>Virtual Cache</groundspeak:type>
+ <groundspeak:container>Not chosen</groundspeak:container>
+ <groundspeak:attributes>
+ </groundspeak:attributes>
+ <groundspeak:difficulty>5</groundspeak:difficulty>
+ <groundspeak:terrain>5</groundspeak:terrain>
+ <groundspeak:country></groundspeak:country>
+ <groundspeak:state></groundspeak:state>
+ <groundspeak:short_description html="False"> </groundspeak:short_description>
+ <groundspeak:long_description html="False"> </groundspeak:long_description>
+ <groundspeak:encoded_hints></groundspeak:encoded_hints>
+ <groundspeak:logs>
+ </groundspeak:logs>
+ <groundspeak:travelbugs>
+ </groundspeak:travelbugs>
+</groundspeak:cache>
+</wpt>
+ <wpt lat="33.364167" lon="-97.009417">
+ <time>2012-03-10T08:00:00Z</time>
+ <name>E222</name>
+ <desc>Evil Cache 222 by TEXANS (4.5/4.5)</desc>
+ <url></url>
+ <urlname>Evil Cache 222 by TEXANS</urlname>
+ <sym>Geocache</sym>
+ <type>Geocache|Virtual Cache</type>
+ <gsak:wptExtension xmlns:gsak="http://www.gsak.net/xmlv1/6">
+ <gsak:UserFlag>false</gsak:UserFlag>
+ <gsak:Lock>false</gsak:Lock>
+ <gsak:DNF>false</gsak:DNF>
+ <gsak:Watch>false</gsak:Watch>
+ <gsak:UserData></gsak:UserData>
+ <gsak:FirstToFind>false</gsak:FirstToFind>
+ <gsak:User2></gsak:User2>
+ <gsak:User3></gsak:User3>
+ <gsak:User4></gsak:User4>
+ <gsak:County></gsak:County>
+ <gsak:UserSort>0</gsak:UserSort>
+ <gsak:SmartName>EvilC222</gsak:SmartName>
+ <gsak:LastGpxDate>2012-03-10</gsak:LastGpxDate>
+ <gsak:Code>E222</gsak:Code>
+ <gsak:Resolution></gsak:Resolution>
+ <gsak:IsPremium>false</gsak:IsPremium>
+ <gsak:FavPoints>0</gsak:FavPoints>
+ <gsak:GcNote></gsak:GcNote>
+ <gsak:Guid></gsak:Guid>
+ <gsak:CacheImages>
+ </gsak:CacheImages>
+ <gsak:LogImages>
+ </gsak:LogImages>
+ <gsak:CustomData>
+Custom_Start:cCode:Custom_Data:E222:Custom_End
+
+ </gsak:CustomData>
+ </gsak:wptExtension>
+ <groundspeak:cache id="546" available="True" archived="False" xmlns:groundspeak="http://www.groundspeak.com/cache/1/0/1">
+ <groundspeak:name>Evil Cache 222</groundspeak:name>
+ <groundspeak:placed_by>TEXANS</groundspeak:placed_by>
+ <groundspeak:owner id="1">TXGA</groundspeak:owner>
+ <groundspeak:type>Virtual Cache</groundspeak:type>
+ <groundspeak:container>Not chosen</groundspeak:container>
+ <groundspeak:attributes>
+ </groundspeak:attributes>
+ <groundspeak:difficulty>4.5</groundspeak:difficulty>
+ <groundspeak:terrain>4.5</groundspeak:terrain>
+ <groundspeak:country></groundspeak:country>
+ <groundspeak:state></groundspeak:state>
+ <groundspeak:short_description html="False"> </groundspeak:short_description>
+ <groundspeak:long_description html="False"> </groundspeak:long_description>
+ <groundspeak:encoded_hints></groundspeak:encoded_hints>
+ <groundspeak:logs>
+ </groundspeak:logs>
+ <groundspeak:travelbugs>
+ </groundspeak:travelbugs>
+</groundspeak:cache>
+</wpt>
+ <wpt lat="33.3831" lon="-97.020717">
+ <time>2012-03-10T08:00:00Z</time>
+ <name>E223</name>
+ <desc>Evil Cache 223 by TEXANS (3/1.5)</desc>
+ <url></url>
+ <urlname>Evil Cache 223 by TEXANS</urlname>
+ <sym>Geocache</sym>
+ <type>Geocache|Virtual Cache</type>
+ <gsak:wptExtension xmlns:gsak="http://www.gsak.net/xmlv1/6">
+ <gsak:UserFlag>false</gsak:UserFlag>
+ <gsak:Lock>false</gsak:Lock>
+ <gsak:DNF>false</gsak:DNF>
+ <gsak:Watch>false</gsak:Watch>
+ <gsak:UserData></gsak:UserData>
+ <gsak:FirstToFind>false</gsak:FirstToFind>
+ <gsak:User2></gsak:User2>
+ <gsak:User3></gsak:User3>
+ <gsak:User4></gsak:User4>
+ <gsak:County></gsak:County>
+ <gsak:UserSort>0</gsak:UserSort>
+ <gsak:SmartName>EvilC223</gsak:SmartName>
+ <gsak:LastGpxDate>2012-03-10</gsak:LastGpxDate>
+ <gsak:Code>E223</gsak:Code>
+ <gsak:Resolution></gsak:Resolution>
+ <gsak:IsPremium>false</gsak:IsPremium>
+ <gsak:FavPoints>0</gsak:FavPoints>
+ <gsak:GcNote></gsak:GcNote>
+ <gsak:Guid></gsak:Guid>
+ <gsak:CacheImages>
+ </gsak:CacheImages>
+ <gsak:LogImages>
+ </gsak:LogImages>
+ <gsak:CustomData>
+Custom_Start:cCode:Custom_Data:E223:Custom_End
+
+ </gsak:CustomData>
+ </gsak:wptExtension>
+ <groundspeak:cache id="547" available="True" archived="False" xmlns:groundspeak="http://www.groundspeak.com/cache/1/0/1">
+ <groundspeak:name>Evil Cache 223</groundspeak:name>
+ <groundspeak:placed_by>TEXANS</groundspeak:placed_by>
+ <groundspeak:owner id="1">TXGA</groundspeak:owner>
+ <groundspeak:type>Virtual Cache</groundspeak:type>
+ <groundspeak:container>Not chosen</groundspeak:container>
+ <groundspeak:attributes>
+ </groundspeak:attributes>
+ <groundspeak:difficulty>3</groundspeak:difficulty>
+ <groundspeak:terrain>1.5</groundspeak:terrain>
+ <groundspeak:country></groundspeak:country>
+ <groundspeak:state></groundspeak:state>
+ <groundspeak:short_description html="False"> </groundspeak:short_description>
+ <groundspeak:long_description html="False"> </groundspeak:long_description>
+ <groundspeak:encoded_hints></groundspeak:encoded_hints>
+ <groundspeak:logs>
+ </groundspeak:logs>
+ <groundspeak:travelbugs>
+ </groundspeak:travelbugs>
+</groundspeak:cache>
+</wpt>
+ <wpt lat="33.3866" lon="-97.01005">
+ <time>2012-03-10T08:00:00Z</time>
+ <name>E224</name>
+ <desc>Evil Cache 224 by TEXANS (5/2.5)</desc>
+ <url></url>
+ <urlname>Evil Cache 224 by TEXANS</urlname>
+ <sym>Geocache</sym>
+ <type>Geocache|Virtual Cache</type>
+ <gsak:wptExtension xmlns:gsak="http://www.gsak.net/xmlv1/6">
+ <gsak:UserFlag>false</gsak:UserFlag>
+ <gsak:Lock>false</gsak:Lock>
+ <gsak:DNF>false</gsak:DNF>
+ <gsak:Watch>false</gsak:Watch>
+ <gsak:UserData></gsak:UserData>
+ <gsak:FirstToFind>false</gsak:FirstToFind>
+ <gsak:User2></gsak:User2>
+ <gsak:User3></gsak:User3>
+ <gsak:User4></gsak:User4>
+ <gsak:County></gsak:County>
+ <gsak:UserSort>0</gsak:UserSort>
+ <gsak:SmartName>EvilC224</gsak:SmartName>
+ <gsak:LastGpxDate>2012-03-10</gsak:LastGpxDate>
+ <gsak:Code>E224</gsak:Code>
+ <gsak:Resolution></gsak:Resolution>
+ <gsak:IsPremium>false</gsak:IsPremium>
+ <gsak:FavPoints>0</gsak:FavPoints>
+ <gsak:GcNote></gsak:GcNote>
+ <gsak:Guid></gsak:Guid>
+ <gsak:CacheImages>
+ </gsak:CacheImages>
+ <gsak:LogImages>
+ </gsak:LogImages>
+ <gsak:CustomData>
+Custom_Start:cCode:Custom_Data:E224:Custom_End
+
+ </gsak:CustomData>
+ </gsak:wptExtension>
+ <groundspeak:cache id="548" available="True" archived="False" xmlns:groundspeak="http://www.groundspeak.com/cache/1/0/1">
+ <groundspeak:name>Evil Cache 224</groundspeak:name>
+ <groundspeak:placed_by>TEXANS</groundspeak:placed_by>
+ <groundspeak:owner id="1">TXGA</groundspeak:owner>
+ <groundspeak:type>Virtual Cache</groundspeak:type>
+ <groundspeak:container>Not chosen</groundspeak:container>
+ <groundspeak:attributes>
+ </groundspeak:attributes>
+ <groundspeak:difficulty>5</groundspeak:difficulty>
+ <groundspeak:terrain>2.5</groundspeak:terrain>
+ <groundspeak:country></groundspeak:country>
+ <groundspeak:state></groundspeak:state>
+ <groundspeak:short_description html="False"> </groundspeak:short_description>
+ <groundspeak:long_description html="False"> </groundspeak:long_description>
+ <groundspeak:encoded_hints></groundspeak:encoded_hints>
+ <groundspeak:logs>
+ </groundspeak:logs>
+ <groundspeak:travelbugs>
+ </groundspeak:travelbugs>
+</groundspeak:cache>
+</wpt>
+ <wpt lat="33.380383" lon="-97.0167">
+ <time>2012-03-10T08:00:00Z</time>
+ <name>E225</name>
+ <desc>Evil Cache 225 by TEXANS (5/5)</desc>
+ <url></url>
+ <urlname>Evil Cache 225 by TEXANS</urlname>
+ <sym>Geocache</sym>
+ <type>Geocache|Virtual Cache</type>
+ <gsak:wptExtension xmlns:gsak="http://www.gsak.net/xmlv1/6">
+ <gsak:UserFlag>false</gsak:UserFlag>
+ <gsak:Lock>false</gsak:Lock>
+ <gsak:DNF>false</gsak:DNF>
+ <gsak:Watch>false</gsak:Watch>
+ <gsak:UserData></gsak:UserData>
+ <gsak:FirstToFind>false</gsak:FirstToFind>
+ <gsak:User2></gsak:User2>
+ <gsak:User3></gsak:User3>
+ <gsak:User4></gsak:User4>
+ <gsak:County></gsak:County>
+ <gsak:UserSort>0</gsak:UserSort>
+ <gsak:SmartName>EvilC225</gsak:SmartName>
+ <gsak:LastGpxDate>2012-03-10</gsak:LastGpxDate>
+ <gsak:Code>E225</gsak:Code>
+ <gsak:Resolution></gsak:Resolution>
+ <gsak:IsPremium>false</gsak:IsPremium>
+ <gsak:FavPoints>0</gsak:FavPoints>
+ <gsak:GcNote></gsak:GcNote>
+ <gsak:Guid></gsak:Guid>
+ <gsak:CacheImages>
+ </gsak:CacheImages>
+ <gsak:LogImages>
+ </gsak:LogImages>
+ <gsak:CustomData>
+Custom_Start:cCode:Custom_Data:E225:Custom_End
+
+ </gsak:CustomData>
+ </gsak:wptExtension>
+ <groundspeak:cache id="549" available="True" archived="False" xmlns:groundspeak="http://www.groundspeak.com/cache/1/0/1">
+ <groundspeak:name>Evil Cache 225</groundspeak:name>
+ <groundspeak:placed_by>TEXANS</groundspeak:placed_by>
+ <groundspeak:owner id="1">TXGA</groundspeak:owner>
+ <groundspeak:type>Virtual Cache</groundspeak:type>
+ <groundspeak:container>Not chosen</groundspeak:container>
+ <groundspeak:attributes>
+ </groundspeak:attributes>
+ <groundspeak:difficulty>5</groundspeak:difficulty>
+ <groundspeak:terrain>5</groundspeak:terrain>
+ <groundspeak:country></groundspeak:country>
+ <groundspeak:state></groundspeak:state>
+ <groundspeak:short_description html="False"> </groundspeak:short_description>
+ <groundspeak:long_description html="False"> </groundspeak:long_description>
+ <groundspeak:encoded_hints></groundspeak:encoded_hints>
+ <groundspeak:logs>
+ </groundspeak:logs>
+ <groundspeak:travelbugs>
+ </groundspeak:travelbugs>
+</groundspeak:cache>
+</wpt>
+ <wpt lat="33.408267" lon="-96.99835">
+ <time>2012-03-10T08:00:00Z</time>
+ <name>E226</name>
+ <desc>Evil Cache 226 by TEXANS (5/5)</desc>
+ <url></url>
+ <urlname>Evil Cache 226 by TEXANS</urlname>
+ <sym>Geocache</sym>
+ <type>Geocache|Virtual Cache</type>
+ <gsak:wptExtension xmlns:gsak="http://www.gsak.net/xmlv1/6">
+ <gsak:UserFlag>false</gsak:UserFlag>
+ <gsak:Lock>false</gsak:Lock>
+ <gsak:DNF>false</gsak:DNF>
+ <gsak:Watch>false</gsak:Watch>
+ <gsak:UserData></gsak:UserData>
+ <gsak:FirstToFind>false</gsak:FirstToFind>
+ <gsak:User2></gsak:User2>
+ <gsak:User3></gsak:User3>
+ <gsak:User4></gsak:User4>
+ <gsak:County></gsak:County>
+ <gsak:UserSort>0</gsak:UserSort>
+ <gsak:SmartName>EvilC226</gsak:SmartName>
+ <gsak:LastGpxDate>2012-03-10</gsak:LastGpxDate>
+ <gsak:Code>E226</gsak:Code>
+ <gsak:Resolution></gsak:Resolution>
+ <gsak:IsPremium>false</gsak:IsPremium>
+ <gsak:FavPoints>0</gsak:FavPoints>
+ <gsak:GcNote></gsak:GcNote>
+ <gsak:Guid></gsak:Guid>
+ <gsak:CacheImages>
+ </gsak:CacheImages>
+ <gsak:LogImages>
+ </gsak:LogImages>
+ <gsak:CustomData>
+Custom_Start:cCode:Custom_Data:E226:Custom_End
+
+ </gsak:CustomData>
+ </gsak:wptExtension>
+ <groundspeak:cache id="550" available="True" archived="False" xmlns:groundspeak="http://www.groundspeak.com/cache/1/0/1">
+ <groundspeak:name>Evil Cache 226</groundspeak:name>
+ <groundspeak:placed_by>TEXANS</groundspeak:placed_by>
+ <groundspeak:owner id="1">TXGA</groundspeak:owner>
+ <groundspeak:type>Virtual Cache</groundspeak:type>
+ <groundspeak:container>Not chosen</groundspeak:container>
+ <groundspeak:attributes>
+ </groundspeak:attributes>
+ <groundspeak:difficulty>5</groundspeak:difficulty>
+ <groundspeak:terrain>5</groundspeak:terrain>
+ <groundspeak:country></groundspeak:country>
+ <groundspeak:state></groundspeak:state>
+ <groundspeak:short_description html="False"> </groundspeak:short_description>
+ <groundspeak:long_description html="False"> </groundspeak:long_description>
+ <groundspeak:encoded_hints></groundspeak:encoded_hints>
+ <groundspeak:logs>
+ </groundspeak:logs>
+ <groundspeak:travelbugs>
+ </groundspeak:travelbugs>
+</groundspeak:cache>
+</wpt>
+ <wpt lat="33.365833" lon="-97.01195">
+ <time>2012-03-10T08:00:00Z</time>
+ <name>Aid1</name>
+ <desc>First Aid Station #1 by TEXANS (1/1)</desc>
+ <url></url>
+ <urlname>First Aid Station #1 by TEXANS</urlname>
+ <sym>Geocache</sym>
+ <type>Geocache|Event Cache</type>
+ <gsak:wptExtension xmlns:gsak="http://www.gsak.net/xmlv1/6">
+ <gsak:UserFlag>false</gsak:UserFlag>
+ <gsak:Lock>false</gsak:Lock>
+ <gsak:DNF>false</gsak:DNF>
+ <gsak:Watch>false</gsak:Watch>
+ <gsak:UserData></gsak:UserData>
+ <gsak:FirstToFind>false</gsak:FirstToFind>
+ <gsak:User2></gsak:User2>
+ <gsak:User3></gsak:User3>
+ <gsak:User4></gsak:User4>
+ <gsak:County></gsak:County>
+ <gsak:UserSort>0</gsak:UserSort>
+ <gsak:SmartName>FirstAi1</gsak:SmartName>
+ <gsak:LastGpxDate>2012-03-10</gsak:LastGpxDate>
+ <gsak:Code>Aid1</gsak:Code>
+ <gsak:Resolution></gsak:Resolution>
+ <gsak:IsPremium>false</gsak:IsPremium>
+ <gsak:FavPoints>0</gsak:FavPoints>
+ <gsak:GcNote></gsak:GcNote>
+ <gsak:Guid></gsak:Guid>
+ <gsak:CacheImages>
+ </gsak:CacheImages>
+ <gsak:LogImages>
+ </gsak:LogImages>
+ <gsak:CustomData>
+Custom_Start:cCode:Custom_Data:Aid1:Custom_End
+
+ </gsak:CustomData>
+ </gsak:wptExtension>
+ <groundspeak:cache id="41425" available="True" archived="False" xmlns:groundspeak="http://www.groundspeak.com/cache/1/0/1">
+ <groundspeak:name>First Aid Station #1</groundspeak:name>
+ <groundspeak:placed_by>TEXANS</groundspeak:placed_by>
+ <groundspeak:owner id="1">TXGA</groundspeak:owner>
+ <groundspeak:type>Event Cache</groundspeak:type>
+ <groundspeak:container>Not chosen</groundspeak:container>
+ <groundspeak:attributes>
+ </groundspeak:attributes>
+ <groundspeak:difficulty>1</groundspeak:difficulty>
+ <groundspeak:terrain>1</groundspeak:terrain>
+ <groundspeak:country></groundspeak:country>
+ <groundspeak:state></groundspeak:state>
+ <groundspeak:short_description html="False"> </groundspeak:short_description>
+ <groundspeak:long_description html="False"> </groundspeak:long_description>
+ <groundspeak:encoded_hints></groundspeak:encoded_hints>
+ <groundspeak:logs>
+ </groundspeak:logs>
+ <groundspeak:travelbugs>
+ </groundspeak:travelbugs>
+</groundspeak:cache>
+</wpt>
+ <wpt lat="33.3789" lon="-97.012433">
+ <time>2012-03-10T08:00:00Z</time>
+ <name>Aid2</name>
+ <desc>First Aid Station #2 by TEXANS (1/1)</desc>
+ <url></url>
+ <urlname>First Aid Station #2 by TEXANS</urlname>
+ <sym>Geocache</sym>
+ <type>Geocache|Event Cache</type>
+ <gsak:wptExtension xmlns:gsak="http://www.gsak.net/xmlv1/6">
+ <gsak:UserFlag>false</gsak:UserFlag>
+ <gsak:Lock>false</gsak:Lock>
+ <gsak:DNF>false</gsak:DNF>
+ <gsak:Watch>false</gsak:Watch>
+ <gsak:UserData></gsak:UserData>
+ <gsak:FirstToFind>false</gsak:FirstToFind>
+ <gsak:User2></gsak:User2>
+ <gsak:User3></gsak:User3>
+ <gsak:User4></gsak:User4>
+ <gsak:County></gsak:County>
+ <gsak:UserSort>0</gsak:UserSort>
+ <gsak:SmartName>FirstAi2</gsak:SmartName>
+ <gsak:LastGpxDate>2012-03-10</gsak:LastGpxDate>
+ <gsak:Code>Aid2</gsak:Code>
+ <gsak:Resolution></gsak:Resolution>
+ <gsak:IsPremium>false</gsak:IsPremium>
+ <gsak:FavPoints>0</gsak:FavPoints>
+ <gsak:GcNote></gsak:GcNote>
+ <gsak:Guid></gsak:Guid>
+ <gsak:CacheImages>
+ </gsak:CacheImages>
+ <gsak:LogImages>
+ </gsak:LogImages>
+ <gsak:CustomData>
+Custom_Start:cCode:Custom_Data:Aid2:Custom_End
+
+ </gsak:CustomData>
+ </gsak:wptExtension>
+ <groundspeak:cache id="41426" available="True" archived="False" xmlns:groundspeak="http://www.groundspeak.com/cache/1/0/1">
+ <groundspeak:name>First Aid Station #2</groundspeak:name>
+ <groundspeak:placed_by>TEXANS</groundspeak:placed_by>
+ <groundspeak:owner id="1">TXGA</groundspeak:owner>
+ <groundspeak:type>Event Cache</groundspeak:type>
+ <groundspeak:container>Not chosen</groundspeak:container>
+ <groundspeak:attributes>
+ </groundspeak:attributes>
+ <groundspeak:difficulty>1</groundspeak:difficulty>
+ <groundspeak:terrain>1</groundspeak:terrain>
+ <groundspeak:country></groundspeak:country>
+ <groundspeak:state></groundspeak:state>
+ <groundspeak:short_description html="False"> </groundspeak:short_description>
+ <groundspeak:long_description html="False"> </groundspeak:long_description>
+ <groundspeak:encoded_hints></groundspeak:encoded_hints>
+ <groundspeak:logs>
+ </groundspeak:logs>
+ <groundspeak:travelbugs>
+ </groundspeak:travelbugs>
+</groundspeak:cache>
+</wpt>
+ <wpt lat="33.375517" lon="-97.018283">
+ <time>2012-03-10T08:00:00Z</time>
+ <name>Aid3</name>
+ <desc>First Aid Station #3 by TEXANS (1/1)</desc>
+ <url></url>
+ <urlname>First Aid Station #3 by TEXANS</urlname>
+ <sym>Geocache</sym>
+ <type>Geocache|Event Cache</type>
+ <gsak:wptExtension xmlns:gsak="http://www.gsak.net/xmlv1/6">
+ <gsak:UserFlag>false</gsak:UserFlag>
+ <gsak:Lock>false</gsak:Lock>
+ <gsak:DNF>false</gsak:DNF>
+ <gsak:Watch>false</gsak:Watch>
+ <gsak:UserData></gsak:UserData>
+ <gsak:FirstToFind>false</gsak:FirstToFind>
+ <gsak:User2></gsak:User2>
+ <gsak:User3></gsak:User3>
+ <gsak:User4></gsak:User4>
+ <gsak:County></gsak:County>
+ <gsak:UserSort>0</gsak:UserSort>
+ <gsak:SmartName>FirstAi3</gsak:SmartName>
+ <gsak:LastGpxDate>2012-03-10</gsak:LastGpxDate>
+ <gsak:Code>Aid3</gsak:Code>
+ <gsak:Resolution></gsak:Resolution>
+ <gsak:IsPremium>false</gsak:IsPremium>
+ <gsak:FavPoints>0</gsak:FavPoints>
+ <gsak:GcNote></gsak:GcNote>
+ <gsak:Guid></gsak:Guid>
+ <gsak:CacheImages>
+ </gsak:CacheImages>
+ <gsak:LogImages>
+ </gsak:LogImages>
+ <gsak:CustomData>
+Custom_Start:cCode:Custom_Data:Aid3:Custom_End
+
+ </gsak:CustomData>
+ </gsak:wptExtension>
+ <groundspeak:cache id="41427" available="True" archived="False" xmlns:groundspeak="http://www.groundspeak.com/cache/1/0/1">
+ <groundspeak:name>First Aid Station #3</groundspeak:name>
+ <groundspeak:placed_by>TEXANS</groundspeak:placed_by>
+ <groundspeak:owner id="1">TXGA</groundspeak:owner>
+ <groundspeak:type>Event Cache</groundspeak:type>
+ <groundspeak:container>Not chosen</groundspeak:container>
+ <groundspeak:attributes>
+ </groundspeak:attributes>
+ <groundspeak:difficulty>1</groundspeak:difficulty>
+ <groundspeak:terrain>1</groundspeak:terrain>
+ <groundspeak:country></groundspeak:country>
+ <groundspeak:state></groundspeak:state>
+ <groundspeak:short_description html="False"> </groundspeak:short_description>
+ <groundspeak:long_description html="False"> </groundspeak:long_description>
+ <groundspeak:encoded_hints></groundspeak:encoded_hints>
+ <groundspeak:logs>
+ </groundspeak:logs>
+ <groundspeak:travelbugs>
+ </groundspeak:travelbugs>
+</groundspeak:cache>
+</wpt>
+ <wpt lat="33.397967" lon="-96.993217">
+ <time>2012-03-10T08:00:00Z</time>
+ <name>Aid4</name>
+ <desc>First Aid Station #4 by TEXANS (1/1)</desc>
+ <url></url>
+ <urlname>First Aid Station #4 by TEXANS</urlname>
+ <sym>Geocache</sym>
+ <type>Geocache|Event Cache</type>
+ <gsak:wptExtension xmlns:gsak="http://www.gsak.net/xmlv1/6">
+ <gsak:UserFlag>false</gsak:UserFlag>
+ <gsak:Lock>false</gsak:Lock>
+ <gsak:DNF>false</gsak:DNF>
+ <gsak:Watch>false</gsak:Watch>
+ <gsak:UserData></gsak:UserData>
+ <gsak:FirstToFind>false</gsak:FirstToFind>
+ <gsak:User2></gsak:User2>
+ <gsak:User3></gsak:User3>
+ <gsak:User4></gsak:User4>
+ <gsak:County></gsak:County>
+ <gsak:UserSort>0</gsak:UserSort>
+ <gsak:SmartName>FirstAi4</gsak:SmartName>
+ <gsak:LastGpxDate>2012-03-10</gsak:LastGpxDate>
+ <gsak:Code>Aid4</gsak:Code>
+ <gsak:Resolution></gsak:Resolution>
+ <gsak:IsPremium>false</gsak:IsPremium>
+ <gsak:FavPoints>0</gsak:FavPoints>
+ <gsak:GcNote></gsak:GcNote>
+ <gsak:Guid></gsak:Guid>
+ <gsak:CacheImages>
+ </gsak:CacheImages>
+ <gsak:LogImages>
+ </gsak:LogImages>
+ <gsak:CustomData>
+Custom_Start:cCode:Custom_Data:Aid4:Custom_End
+
+ </gsak:CustomData>
+ </gsak:wptExtension>
+ <groundspeak:cache id="41428" available="True" archived="False" xmlns:groundspeak="http://www.groundspeak.com/cache/1/0/1">
+ <groundspeak:name>First Aid Station #4</groundspeak:name>
+ <groundspeak:placed_by>TEXANS</groundspeak:placed_by>
+ <groundspeak:owner id="1">TXGA</groundspeak:owner>
+ <groundspeak:type>Event Cache</groundspeak:type>
+ <groundspeak:container>Not chosen</groundspeak:container>
+ <groundspeak:attributes>
+ </groundspeak:attributes>
+ <groundspeak:difficulty>1</groundspeak:difficulty>
+ <groundspeak:terrain>1</groundspeak:terrain>
+ <groundspeak:country></groundspeak:country>
+ <groundspeak:state></groundspeak:state>
+ <groundspeak:short_description html="False"> </groundspeak:short_description>
+ <groundspeak:long_description html="False"> </groundspeak:long_description>
+ <groundspeak:encoded_hints></groundspeak:encoded_hints>
+ <groundspeak:logs>
+ </groundspeak:logs>
+ <groundspeak:travelbugs>
+ </groundspeak:travelbugs>
+</groundspeak:cache>
+</wpt>
+ <wpt lat="33.361133" lon="-97.01255">
+ <time>2012-03-10T08:00:00Z</time>
+ <name>M007</name>
+ <desc>Multi-Cache 007 by TEXANS (2.5/2.5)</desc>
+ <url></url>
+ <urlname>Multi-Cache 007 by TEXANS</urlname>
+ <sym>Geocache</sym>
+ <type>Geocache|Multi-cache</type>
+ <gsak:wptExtension xmlns:gsak="http://www.gsak.net/xmlv1/6">
+ <gsak:UserFlag>false</gsak:UserFlag>
+ <gsak:Lock>false</gsak:Lock>
+ <gsak:DNF>false</gsak:DNF>
+ <gsak:Watch>false</gsak:Watch>
+ <gsak:UserData></gsak:UserData>
+ <gsak:FirstToFind>false</gsak:FirstToFind>
+ <gsak:User2></gsak:User2>
+ <gsak:User3></gsak:User3>
+ <gsak:User4></gsak:User4>
+ <gsak:County></gsak:County>
+ <gsak:UserSort>0</gsak:UserSort>
+ <gsak:SmartName>Multi007</gsak:SmartName>
+ <gsak:LastGpxDate>2012-03-10</gsak:LastGpxDate>
+ <gsak:Code>M007</gsak:Code>
+ <gsak:Resolution></gsak:Resolution>
+ <gsak:IsPremium>false</gsak:IsPremium>
+ <gsak:FavPoints>0</gsak:FavPoints>
+ <gsak:GcNote></gsak:GcNote>
+ <gsak:Guid></gsak:Guid>
+ <gsak:CacheImages>
+ </gsak:CacheImages>
+ <gsak:LogImages>
+ </gsak:LogImages>
+ <gsak:CustomData>
+Custom_Start:cCode:Custom_Data:M007:Custom_End
+
+ </gsak:CustomData>
+ </gsak:wptExtension>
+ <groundspeak:cache id="7" available="True" archived="False" xmlns:groundspeak="http://www.groundspeak.com/cache/1/0/1">
+ <groundspeak:name>Multi-Cache 007</groundspeak:name>
+ <groundspeak:placed_by>TEXANS</groundspeak:placed_by>
+ <groundspeak:owner id="1">TXGA</groundspeak:owner>
+ <groundspeak:type>Multi-cache</groundspeak:type>
+ <groundspeak:container>Not chosen</groundspeak:container>
+ <groundspeak:attributes>
+ </groundspeak:attributes>
+ <groundspeak:difficulty>2.5</groundspeak:difficulty>
+ <groundspeak:terrain>2.5</groundspeak:terrain>
+ <groundspeak:country></groundspeak:country>
+ <groundspeak:state></groundspeak:state>
+ <groundspeak:short_description html="False"> </groundspeak:short_description>
+ <groundspeak:long_description html="False"> </groundspeak:long_description>
+ <groundspeak:encoded_hints></groundspeak:encoded_hints>
+ <groundspeak:logs>
+ </groundspeak:logs>
+ <groundspeak:travelbugs>
+ </groundspeak:travelbugs>
+</groundspeak:cache>
+</wpt>
+ <wpt lat="33.401067" lon="-97.006867">
+ <time>2012-03-10T08:00:00Z</time>
+ <name>M016</name>
+ <desc>Multi-Cache 016 by TEXANS (4.5/3)</desc>
+ <url></url>
+ <urlname>Multi-Cache 016 by TEXANS</urlname>
+ <sym>Geocache</sym>
+ <type>Geocache|Multi-cache</type>
+ <gsak:wptExtension xmlns:gsak="http://www.gsak.net/xmlv1/6">
+ <gsak:UserFlag>false</gsak:UserFlag>
+ <gsak:Lock>false</gsak:Lock>
+ <gsak:DNF>false</gsak:DNF>
+ <gsak:Watch>false</gsak:Watch>
+ <gsak:UserData></gsak:UserData>
+ <gsak:FirstToFind>false</gsak:FirstToFind>
+ <gsak:User2></gsak:User2>
+ <gsak:User3></gsak:User3>
+ <gsak:User4></gsak:User4>
+ <gsak:County></gsak:County>
+ <gsak:UserSort>0</gsak:UserSort>
+ <gsak:SmartName>Multi016</gsak:SmartName>
+ <gsak:LastGpxDate>2012-03-10</gsak:LastGpxDate>
+ <gsak:Code>M016</gsak:Code>
+ <gsak:Resolution></gsak:Resolution>
+ <gsak:IsPremium>false</gsak:IsPremium>
+ <gsak:FavPoints>0</gsak:FavPoints>
+ <gsak:GcNote></gsak:GcNote>
+ <gsak:Guid></gsak:Guid>
+ <gsak:CacheImages>
+ </gsak:CacheImages>
+ <gsak:LogImages>
+ </gsak:LogImages>
+ <gsak:CustomData>
+Custom_Start:cCode:Custom_Data:M016:Custom_End
+
+ </gsak:CustomData>
+ </gsak:wptExtension>
+ <groundspeak:cache id="22" available="True" archived="False" xmlns:groundspeak="http://www.groundspeak.com/cache/1/0/1">
+ <groundspeak:name>Multi-Cache 016</groundspeak:name>
+ <groundspeak:placed_by>TEXANS</groundspeak:placed_by>
+ <groundspeak:owner id="1">TXGA</groundspeak:owner>
+ <groundspeak:type>Multi-cache</groundspeak:type>
+ <groundspeak:container>Not chosen</groundspeak:container>
+ <groundspeak:attributes>
+ </groundspeak:attributes>
+ <groundspeak:difficulty>4.5</groundspeak:difficulty>
+ <groundspeak:terrain>3</groundspeak:terrain>
+ <groundspeak:country></groundspeak:country>
+ <groundspeak:state></groundspeak:state>
+ <groundspeak:short_description html="False"> </groundspeak:short_description>
+ <groundspeak:long_description html="False"> </groundspeak:long_description>
+ <groundspeak:encoded_hints></groundspeak:encoded_hints>
+ <groundspeak:logs>
+ </groundspeak:logs>
+ <groundspeak:travelbugs>
+ </groundspeak:travelbugs>
+</groundspeak:cache>
+</wpt>
+ <wpt lat="33.366133" lon="-97.015833">
+ <time>2012-03-10T08:00:00Z</time>
+ <name>M031</name>
+ <desc>Multi-Cache 031 by TEXANS (5/5)</desc>
+ <url></url>
+ <urlname>Multi-Cache 031 by TEXANS</urlname>
+ <sym>Geocache</sym>
+ <type>Geocache|Multi-cache</type>
+ <gsak:wptExtension xmlns:gsak="http://www.gsak.net/xmlv1/6">
+ <gsak:UserFlag>false</gsak:UserFlag>
+ <gsak:Lock>false</gsak:Lock>
+ <gsak:DNF>false</gsak:DNF>
+ <gsak:Watch>false</gsak:Watch>
+ <gsak:UserData></gsak:UserData>
+ <gsak:FirstToFind>false</gsak:FirstToFind>
+ <gsak:User2></gsak:User2>
+ <gsak:User3></gsak:User3>
+ <gsak:User4></gsak:User4>
+ <gsak:County></gsak:County>
+ <gsak:UserSort>0</gsak:UserSort>
+ <gsak:SmartName>Multi031</gsak:SmartName>
+ <gsak:LastGpxDate>2012-03-10</gsak:LastGpxDate>
+ <gsak:Code>M031</gsak:Code>
+ <gsak:Resolution></gsak:Resolution>
+ <gsak:IsPremium>false</gsak:IsPremium>
+ <gsak:FavPoints>0</gsak:FavPoints>
+ <gsak:GcNote></gsak:GcNote>
+ <gsak:Guid></gsak:Guid>
+ <gsak:CacheImages>
+ </gsak:CacheImages>
+ <gsak:LogImages>
+ </gsak:LogImages>
+ <gsak:CustomData>
+Custom_Start:cCode:Custom_Data:M031:Custom_End
+
+ </gsak:CustomData>
+ </gsak:wptExtension>
+ <groundspeak:cache id="49" available="True" archived="False" xmlns:groundspeak="http://www.groundspeak.com/cache/1/0/1">
+ <groundspeak:name>Multi-Cache 031</groundspeak:name>
+ <groundspeak:placed_by>TEXANS</groundspeak:placed_by>
+ <groundspeak:owner id="1">TXGA</groundspeak:owner>
+ <groundspeak:type>Multi-cache</groundspeak:type>
+ <groundspeak:container>Not chosen</groundspeak:container>
+ <groundspeak:attributes>
+ </groundspeak:attributes>
+ <groundspeak:difficulty>5</groundspeak:difficulty>
+ <groundspeak:terrain>5</groundspeak:terrain>
+ <groundspeak:country></groundspeak:country>
+ <groundspeak:state></groundspeak:state>
+ <groundspeak:short_description html="False"> </groundspeak:short_description>
+ <groundspeak:long_description html="False"> </groundspeak:long_description>
+ <groundspeak:encoded_hints></groundspeak:encoded_hints>
+ <groundspeak:logs>
+ </groundspeak:logs>
+ <groundspeak:travelbugs>
+ </groundspeak:travelbugs>
+</groundspeak:cache>
+</wpt>
+ <wpt lat="33.38115" lon="-97.017667">
+ <time>2012-03-10T08:00:00Z</time>
+ <name>M063</name>
+ <desc>Multi-Cache 063 by TEXANS (2/1.5)</desc>
+ <url></url>
+ <urlname>Multi-Cache 063 by TEXANS</urlname>
+ <sym>Geocache</sym>
+ <type>Geocache|Multi-cache</type>
+ <gsak:wptExtension xmlns:gsak="http://www.gsak.net/xmlv1/6">
+ <gsak:UserFlag>false</gsak:UserFlag>
+ <gsak:Lock>false</gsak:Lock>
+ <gsak:DNF>false</gsak:DNF>
+ <gsak:Watch>false</gsak:Watch>
+ <gsak:UserData></gsak:UserData>
+ <gsak:FirstToFind>false</gsak:FirstToFind>
+ <gsak:User2></gsak:User2>
+ <gsak:User3></gsak:User3>
+ <gsak:User4></gsak:User4>
+ <gsak:County></gsak:County>
+ <gsak:UserSort>0</gsak:UserSort>
+ <gsak:SmartName>Multi063</gsak:SmartName>
+ <gsak:LastGpxDate>2012-03-10</gsak:LastGpxDate>
+ <gsak:Code>M063</gsak:Code>
+ <gsak:Resolution></gsak:Resolution>
+ <gsak:IsPremium>false</gsak:IsPremium>
+ <gsak:FavPoints>0</gsak:FavPoints>
+ <gsak:GcNote></gsak:GcNote>
+ <gsak:Guid></gsak:Guid>
+ <gsak:CacheImages>
+ </gsak:CacheImages>
+ <gsak:LogImages>
+ </gsak:LogImages>
+ <gsak:CustomData>
+Custom_Start:cCode:Custom_Data:M063:Custom_End
+
+ </gsak:CustomData>
+ </gsak:wptExtension>
+ <groundspeak:cache id="99" available="True" archived="False" xmlns:groundspeak="http://www.groundspeak.com/cache/1/0/1">
+ <groundspeak:name>Multi-Cache 063</groundspeak:name>
+ <groundspeak:placed_by>TEXANS</groundspeak:placed_by>
+ <groundspeak:owner id="1">TXGA</groundspeak:owner>
+ <groundspeak:type>Multi-cache</groundspeak:type>
+ <groundspeak:container>Not chosen</groundspeak:container>
+ <groundspeak:attributes>
+ </groundspeak:attributes>
+ <groundspeak:difficulty>2</groundspeak:difficulty>
+ <groundspeak:terrain>1.5</groundspeak:terrain>
+ <groundspeak:country></groundspeak:country>
+ <groundspeak:state></groundspeak:state>
+ <groundspeak:short_description html="False"> </groundspeak:short_description>
+ <groundspeak:long_description html="False"> </groundspeak:long_description>
+ <groundspeak:encoded_hints></groundspeak:encoded_hints>
+ <groundspeak:logs>
+ </groundspeak:logs>
+ <groundspeak:travelbugs>
+ </groundspeak:travelbugs>
+</groundspeak:cache>
+</wpt>
+ <wpt lat="33.383317" lon="-97.02085">
+ <time>2012-03-10T08:00:00Z</time>
+ <name>M087</name>
+ <desc>Multi-Cache 087 by TEXANS (3.5/3.5)</desc>
+ <url></url>
+ <urlname>Multi-Cache 087 by TEXANS</urlname>
+ <sym>Geocache</sym>
+ <type>Geocache|Multi-cache</type>
+ <gsak:wptExtension xmlns:gsak="http://www.gsak.net/xmlv1/6">
+ <gsak:UserFlag>false</gsak:UserFlag>
+ <gsak:Lock>false</gsak:Lock>
+ <gsak:DNF>false</gsak:DNF>
+ <gsak:Watch>false</gsak:Watch>
+ <gsak:UserData></gsak:UserData>
+ <gsak:FirstToFind>false</gsak:FirstToFind>
+ <gsak:User2></gsak:User2>
+ <gsak:User3></gsak:User3>
+ <gsak:User4></gsak:User4>
+ <gsak:County></gsak:County>
+ <gsak:UserSort>0</gsak:UserSort>
+ <gsak:SmartName>Multi087</gsak:SmartName>
+ <gsak:LastGpxDate>2012-03-10</gsak:LastGpxDate>
+ <gsak:Code>M087</gsak:Code>
+ <gsak:Resolution></gsak:Resolution>
+ <gsak:IsPremium>false</gsak:IsPremium>
+ <gsak:FavPoints>0</gsak:FavPoints>
+ <gsak:GcNote></gsak:GcNote>
+ <gsak:Guid></gsak:Guid>
+ <gsak:CacheImages>
+ </gsak:CacheImages>
+ <gsak:LogImages>
+ </gsak:LogImages>
+ <gsak:CustomData>
+Custom_Start:cCode:Custom_Data:M087:Custom_End
+
+ </gsak:CustomData>
+ </gsak:wptExtension>
+ <groundspeak:cache id="135" available="True" archived="False" xmlns:groundspeak="http://www.groundspeak.com/cache/1/0/1">
+ <groundspeak:name>Multi-Cache 087</groundspeak:name>
+ <groundspeak:placed_by>TEXANS</groundspeak:placed_by>
+ <groundspeak:owner id="1">TXGA</groundspeak:owner>
+ <groundspeak:type>Multi-cache</groundspeak:type>
+ <groundspeak:container>Not chosen</groundspeak:container>
+ <groundspeak:attributes>
+ </groundspeak:attributes>
+ <groundspeak:difficulty>3.5</groundspeak:difficulty>
+ <groundspeak:terrain>3.5</groundspeak:terrain>
+ <groundspeak:country></groundspeak:country>
+ <groundspeak:state></groundspeak:state>
+ <groundspeak:short_description html="False"> </groundspeak:short_description>
+ <groundspeak:long_description html="False"> </groundspeak:long_description>
+ <groundspeak:encoded_hints></groundspeak:encoded_hints>
+ <groundspeak:logs>
+ </groundspeak:logs>
+ <groundspeak:travelbugs>
+ </groundspeak:travelbugs>
+</groundspeak:cache>
+</wpt>
+ <wpt lat="33.382533" lon="-97.022967">
+ <time>2012-03-10T08:00:00Z</time>
+ <name>M089</name>
+ <desc>Multi-Cache 089 by TEXANS (3/1.5)</desc>
+ <url></url>
+ <urlname>Multi-Cache 089 by TEXANS</urlname>
+ <sym>Geocache</sym>
+ <type>Geocache|Multi-cache</type>
+ <gsak:wptExtension xmlns:gsak="http://www.gsak.net/xmlv1/6">
+ <gsak:UserFlag>false</gsak:UserFlag>
+ <gsak:Lock>false</gsak:Lock>
+ <gsak:DNF>false</gsak:DNF>
+ <gsak:Watch>false</gsak:Watch>
+ <gsak:UserData></gsak:UserData>
+ <gsak:FirstToFind>false</gsak:FirstToFind>
+ <gsak:User2></gsak:User2>
+ <gsak:User3></gsak:User3>
+ <gsak:User4></gsak:User4>
+ <gsak:County></gsak:County>
+ <gsak:UserSort>0</gsak:UserSort>
+ <gsak:SmartName>Multi089</gsak:SmartName>
+ <gsak:LastGpxDate>2012-03-10</gsak:LastGpxDate>
+ <gsak:Code>M089</gsak:Code>
+ <gsak:Resolution></gsak:Resolution>
+ <gsak:IsPremium>false</gsak:IsPremium>
+ <gsak:FavPoints>0</gsak:FavPoints>
+ <gsak:GcNote></gsak:GcNote>
+ <gsak:Guid></gsak:Guid>
+ <gsak:CacheImages>
+ </gsak:CacheImages>
+ <gsak:LogImages>
+ </gsak:LogImages>
+ <gsak:CustomData>
+Custom_Start:cCode:Custom_Data:M089:Custom_End
+
+ </gsak:CustomData>
+ </gsak:wptExtension>
+ <groundspeak:cache id="137" available="True" archived="False" xmlns:groundspeak="http://www.groundspeak.com/cache/1/0/1">
+ <groundspeak:name>Multi-Cache 089</groundspeak:name>
+ <groundspeak:placed_by>TEXANS</groundspeak:placed_by>
+ <groundspeak:owner id="1">TXGA</groundspeak:owner>
+ <groundspeak:type>Multi-cache</groundspeak:type>
+ <groundspeak:container>Not chosen</groundspeak:container>
+ <groundspeak:attributes>
+ </groundspeak:attributes>
+ <groundspeak:difficulty>3</groundspeak:difficulty>
+ <groundspeak:terrain>1.5</groundspeak:terrain>
+ <groundspeak:country></groundspeak:country>
+ <groundspeak:state></groundspeak:state>
+ <groundspeak:short_description html="False"> </groundspeak:short_description>
+ <groundspeak:long_description html="False"> </groundspeak:long_description>
+ <groundspeak:encoded_hints></groundspeak:encoded_hints>
+ <groundspeak:logs>
+ </groundspeak:logs>
+ <groundspeak:travelbugs>
+ </groundspeak:travelbugs>
+</groundspeak:cache>
+</wpt>
+ <wpt lat="33.368317" lon="-97.00885">
+ <time>2012-03-10T08:00:00Z</time>
+ <name>M101</name>
+ <desc>Multi-Cache 101 by TEXANS (4/2.5)</desc>
+ <url></url>
+ <urlname>Multi-Cache 101 by TEXANS</urlname>
+ <sym>Geocache</sym>
+ <type>Geocache|Multi-cache</type>
+ <gsak:wptExtension xmlns:gsak="http://www.gsak.net/xmlv1/6">
+ <gsak:UserFlag>false</gsak:UserFlag>
+ <gsak:Lock>false</gsak:Lock>
+ <gsak:DNF>false</gsak:DNF>
+ <gsak:Watch>false</gsak:Watch>
+ <gsak:UserData></gsak:UserData>
+ <gsak:FirstToFind>false</gsak:FirstToFind>
+ <gsak:User2></gsak:User2>
+ <gsak:User3></gsak:User3>
+ <gsak:User4></gsak:User4>
+ <gsak:County></gsak:County>
+ <gsak:UserSort>0</gsak:UserSort>
+ <gsak:SmartName>Multi101</gsak:SmartName>
+ <gsak:LastGpxDate>2012-03-10</gsak:LastGpxDate>
+ <gsak:Code>M101</gsak:Code>
+ <gsak:Resolution></gsak:Resolution>
+ <gsak:IsPremium>false</gsak:IsPremium>
+ <gsak:FavPoints>0</gsak:FavPoints>
+ <gsak:GcNote></gsak:GcNote>
+ <gsak:Guid></gsak:Guid>
+ <gsak:CacheImages>
+ </gsak:CacheImages>
+ <gsak:LogImages>
+ </gsak:LogImages>
+ <gsak:CustomData>
+Custom_Start:cCode:Custom_Data:M101:Custom_End
+
+ </gsak:CustomData>
+ </gsak:wptExtension>
+ <groundspeak:cache id="257" available="True" archived="False" xmlns:groundspeak="http://www.groundspeak.com/cache/1/0/1">
+ <groundspeak:name>Multi-Cache 101</groundspeak:name>
+ <groundspeak:placed_by>TEXANS</groundspeak:placed_by>
+ <groundspeak:owner id="1">TXGA</groundspeak:owner>
+ <groundspeak:type>Multi-cache</groundspeak:type>
+ <groundspeak:container>Not chosen</groundspeak:container>
+ <groundspeak:attributes>
+ </groundspeak:attributes>
+ <groundspeak:difficulty>4</groundspeak:difficulty>
+ <groundspeak:terrain>2.5</groundspeak:terrain>
+ <groundspeak:country></groundspeak:country>
+ <groundspeak:state></groundspeak:state>
+ <groundspeak:short_description html="False"> </groundspeak:short_description>
+ <groundspeak:long_description html="False"> </groundspeak:long_description>
+ <groundspeak:encoded_hints></groundspeak:encoded_hints>
+ <groundspeak:logs>
+ </groundspeak:logs>
+ <groundspeak:travelbugs>
+ </groundspeak:travelbugs>
+</groundspeak:cache>
+</wpt>
+ <wpt lat="33.3823" lon="-97.011333">
+ <time>2012-03-10T08:00:00Z</time>
+ <name>M112</name>
+ <desc>Multi-Cache 112 by TEXANS (3/2.5)</desc>
+ <url></url>
+ <urlname>Multi-Cache 112 by TEXANS</urlname>
+ <sym>Geocache</sym>
+ <type>Geocache|Multi-cache</type>
+ <gsak:wptExtension xmlns:gsak="http://www.gsak.net/xmlv1/6">
+ <gsak:UserFlag>false</gsak:UserFlag>
+ <gsak:Lock>false</gsak:Lock>
+ <gsak:DNF>false</gsak:DNF>
+ <gsak:Watch>false</gsak:Watch>
+ <gsak:UserData></gsak:UserData>
+ <gsak:FirstToFind>false</gsak:FirstToFind>
+ <gsak:User2></gsak:User2>
+ <gsak:User3></gsak:User3>
+ <gsak:User4></gsak:User4>
+ <gsak:County></gsak:County>
+ <gsak:UserSort>0</gsak:UserSort>
+ <gsak:SmartName>Multi112</gsak:SmartName>
+ <gsak:LastGpxDate>2012-03-10</gsak:LastGpxDate>
+ <gsak:Code>M112</gsak:Code>
+ <gsak:Resolution></gsak:Resolution>
+ <gsak:IsPremium>false</gsak:IsPremium>
+ <gsak:FavPoints>0</gsak:FavPoints>
+ <gsak:GcNote></gsak:GcNote>
+ <gsak:Guid></gsak:Guid>
+ <gsak:CacheImages>
+ </gsak:CacheImages>
+ <gsak:LogImages>
+ </gsak:LogImages>
+ <gsak:CustomData>
+Custom_Start:cCode:Custom_Data:M112:Custom_End
+
+ </gsak:CustomData>
+ </gsak:wptExtension>
+ <groundspeak:cache id="274" available="True" archived="False" xmlns:groundspeak="http://www.groundspeak.com/cache/1/0/1">
+ <groundspeak:name>Multi-Cache 112</groundspeak:name>
+ <groundspeak:placed_by>TEXANS</groundspeak:placed_by>
+ <groundspeak:owner id="1">TXGA</groundspeak:owner>
+ <groundspeak:type>Multi-cache</groundspeak:type>
+ <groundspeak:container>Not chosen</groundspeak:container>
+ <groundspeak:attributes>
+ </groundspeak:attributes>
+ <groundspeak:difficulty>3</groundspeak:difficulty>
+ <groundspeak:terrain>2.5</groundspeak:terrain>
+ <groundspeak:country></groundspeak:country>
+ <groundspeak:state></groundspeak:state>
+ <groundspeak:short_description html="False"> </groundspeak:short_description>
+ <groundspeak:long_description html="False"> </groundspeak:long_description>
+ <groundspeak:encoded_hints></groundspeak:encoded_hints>
+ <groundspeak:logs>
+ </groundspeak:logs>
+ <groundspeak:travelbugs>
+ </groundspeak:travelbugs>
+</groundspeak:cache>
+</wpt>
+ <wpt lat="33.377867" lon="-97.01765">
+ <time>2012-03-10T08:00:00Z</time>
+ <name>M118</name>
+ <desc>Multi-Cache 118 by TEXANS (2.5/1.5)</desc>
+ <url></url>
+ <urlname>Multi-Cache 118 by TEXANS</urlname>
+ <sym>Geocache</sym>
+ <type>Geocache|Multi-cache</type>
+ <gsak:wptExtension xmlns:gsak="http://www.gsak.net/xmlv1/6">
+ <gsak:UserFlag>false</gsak:UserFlag>
+ <gsak:Lock>false</gsak:Lock>
+ <gsak:DNF>false</gsak:DNF>
+ <gsak:Watch>false</gsak:Watch>
+ <gsak:UserData></gsak:UserData>
+ <gsak:FirstToFind>false</gsak:FirstToFind>
+ <gsak:User2></gsak:User2>
+ <gsak:User3></gsak:User3>
+ <gsak:User4></gsak:User4>
+ <gsak:County></gsak:County>
+ <gsak:UserSort>0</gsak:UserSort>
+ <gsak:SmartName>Multi118</gsak:SmartName>
+ <gsak:LastGpxDate>2012-03-10</gsak:LastGpxDate>
+ <gsak:Code>M118</gsak:Code>
+ <gsak:Resolution></gsak:Resolution>
+ <gsak:IsPremium>false</gsak:IsPremium>
+ <gsak:FavPoints>0</gsak:FavPoints>
+ <gsak:GcNote></gsak:GcNote>
+ <gsak:Guid></gsak:Guid>
+ <gsak:CacheImages>
+ </gsak:CacheImages>
+ <gsak:LogImages>
+ </gsak:LogImages>
+ <gsak:CustomData>
+Custom_Start:cCode:Custom_Data:M118:Custom_End
+
+ </gsak:CustomData>
+ </gsak:wptExtension>
+ <groundspeak:cache id="280" available="True" archived="False" xmlns:groundspeak="http://www.groundspeak.com/cache/1/0/1">
+ <groundspeak:name>Multi-Cache 118</groundspeak:name>
+ <groundspeak:placed_by>TEXANS</groundspeak:placed_by>
+ <groundspeak:owner id="1">TXGA</groundspeak:owner>
+ <groundspeak:type>Multi-cache</groundspeak:type>
+ <groundspeak:container>Not chosen</groundspeak:container>
+ <groundspeak:attributes>
+ </groundspeak:attributes>
+ <groundspeak:difficulty>2.5</groundspeak:difficulty>
+ <groundspeak:terrain>1.5</groundspeak:terrain>
+ <groundspeak:country></groundspeak:country>
+ <groundspeak:state></groundspeak:state>
+ <groundspeak:short_description html="False"> </groundspeak:short_description>
+ <groundspeak:long_description html="False"> </groundspeak:long_description>
+ <groundspeak:encoded_hints></groundspeak:encoded_hints>
+ <groundspeak:logs>
+ </groundspeak:logs>
+ <groundspeak:travelbugs>
+ </groundspeak:travelbugs>
+</groundspeak:cache>
+</wpt>
+ <wpt lat="33.3802" lon="-97.0352">
+ <time>2012-03-10T08:00:00Z</time>
+ <name>U020</name>
+ <desc>Puzzle #1 - The Gnarled Tree by TEXANS (5/2)</desc>
+ <url></url>
+ <urlname>Puzzle #1 - The Gnarled Tree by TEXANS</urlname>
+ <sym>Geocache</sym>
+ <type>Geocache|Unknown Cache</type>
+ <gsak:wptExtension xmlns:gsak="http://www.gsak.net/xmlv1/6">
+ <gsak:UserFlag>false</gsak:UserFlag>
+ <gsak:Lock>false</gsak:Lock>
+ <gsak:DNF>false</gsak:DNF>
+ <gsak:Watch>false</gsak:Watch>
+ <gsak:UserData></gsak:UserData>
+ <gsak:FirstToFind>false</gsak:FirstToFind>
+ <gsak:User2></gsak:User2>
+ <gsak:User3></gsak:User3>
+ <gsak:User4></gsak:User4>
+ <gsak:County></gsak:County>
+ <gsak:UserSort>0</gsak:UserSort>
+ <gsak:SmartName>Puzzle1T</gsak:SmartName>
+ <gsak:LastGpxDate>2012-03-10</gsak:LastGpxDate>
+ <gsak:Code>U020</gsak:Code>
+ <gsak:Resolution></gsak:Resolution>
+ <gsak:IsPremium>false</gsak:IsPremium>
+ <gsak:FavPoints>0</gsak:FavPoints>
+ <gsak:GcNote></gsak:GcNote>
+ <gsak:Guid></gsak:Guid>
+ <gsak:CacheImages>
+ </gsak:CacheImages>
+ <gsak:LogImages>
+ </gsak:LogImages>
+ <gsak:CustomData>
+Custom_Start:cCode:Custom_Data:U020:Custom_End
+
+ </gsak:CustomData>
+ </gsak:wptExtension>
+ <groundspeak:cache id="32" available="True" archived="False" xmlns:groundspeak="http://www.groundspeak.com/cache/1/0/1">
+ <groundspeak:name>Puzzle #1 - The Gnarled Tree</groundspeak:name>
+ <groundspeak:placed_by>TEXANS</groundspeak:placed_by>
+ <groundspeak:owner id="1">TXGA</groundspeak:owner>
+ <groundspeak:type>Unknown Cache</groundspeak:type>
+ <groundspeak:container>Not chosen</groundspeak:container>
+ <groundspeak:attributes>
+ </groundspeak:attributes>
+ <groundspeak:difficulty>5</groundspeak:difficulty>
+ <groundspeak:terrain>2</groundspeak:terrain>
+ <groundspeak:country></groundspeak:country>
+ <groundspeak:state></groundspeak:state>
+ <groundspeak:short_description html="False"> </groundspeak:short_description>
+ <groundspeak:long_description html="False"> </groundspeak:long_description>
+ <groundspeak:encoded_hints></groundspeak:encoded_hints>
+ <groundspeak:logs>
+ </groundspeak:logs>
+ <groundspeak:travelbugs>
+ </groundspeak:travelbugs>
+</groundspeak:cache>
+</wpt>
+ <wpt lat="33.380133" lon="-97.035133">
+ <time>2012-03-10T08:00:00Z</time>
+ <name>U006</name>
+ <desc>Puzzle #2 - Jousting with Logic by TEXANS (3/1.5)</desc>
+ <url></url>
+ <urlname>Puzzle #2 - Jousting with Logic by TEXANS</urlname>
+ <sym>Geocache</sym>
+ <type>Geocache|Unknown Cache</type>
+ <gsak:wptExtension xmlns:gsak="http://www.gsak.net/xmlv1/6">
+ <gsak:UserFlag>false</gsak:UserFlag>
+ <gsak:Lock>false</gsak:Lock>
+ <gsak:DNF>false</gsak:DNF>
+ <gsak:Watch>false</gsak:Watch>
+ <gsak:UserData></gsak:UserData>
+ <gsak:FirstToFind>false</gsak:FirstToFind>
+ <gsak:User2></gsak:User2>
+ <gsak:User3></gsak:User3>
+ <gsak:User4></gsak:User4>
+ <gsak:County></gsak:County>
+ <gsak:UserSort>0</gsak:UserSort>
+ <gsak:SmartName>Puzzle2J</gsak:SmartName>
+ <gsak:LastGpxDate>2012-03-10</gsak:LastGpxDate>
+ <gsak:Code>U006</gsak:Code>
+ <gsak:Resolution></gsak:Resolution>
+ <gsak:IsPremium>false</gsak:IsPremium>
+ <gsak:FavPoints>0</gsak:FavPoints>
+ <gsak:GcNote></gsak:GcNote>
+ <gsak:Guid></gsak:Guid>
+ <gsak:CacheImages>
+ </gsak:CacheImages>
+ <gsak:LogImages>
+ </gsak:LogImages>
+ <gsak:CustomData>
+Custom_Start:cCode:Custom_Data:U006:Custom_End
+
+ </gsak:CustomData>
+ </gsak:wptExtension>
+ <groundspeak:cache id="6" available="True" archived="False" xmlns:groundspeak="http://www.groundspeak.com/cache/1/0/1">
+ <groundspeak:name>Puzzle #2 - Jousting with Logic</groundspeak:name>
+ <groundspeak:placed_by>TEXANS</groundspeak:placed_by>
+ <groundspeak:owner id="1">TXGA</groundspeak:owner>
+ <groundspeak:type>Unknown Cache</groundspeak:type>
+ <groundspeak:container>Not chosen</groundspeak:container>
+ <groundspeak:attributes>
+ </groundspeak:attributes>
+ <groundspeak:difficulty>3</groundspeak:difficulty>
+ <groundspeak:terrain>1.5</groundspeak:terrain>
+ <groundspeak:country></groundspeak:country>
+ <groundspeak:state></groundspeak:state>
+ <groundspeak:short_description html="False"> </groundspeak:short_description>
+ <groundspeak:long_description html="False"> </groundspeak:long_description>
+ <groundspeak:encoded_hints></groundspeak:encoded_hints>
+ <groundspeak:logs>
+ </groundspeak:logs>
+ <groundspeak:travelbugs>
+ </groundspeak:travelbugs>
+</groundspeak:cache>
+</wpt>
+ <wpt lat="33.3804" lon="-97.0354">
+ <time>2012-03-10T08:00:00Z</time>
+ <name>U116</name>
+ <desc>Puzzle #3 - The Wisdom of the Eledhrim by TEXANS (4.5/2.5)</desc>
+ <url></url>
+ <urlname>Puzzle #3 - The Wisdom of the Eledhrim by TEXANS</urlname>
+ <sym>Geocache</sym>
+ <type>Geocache|Unknown Cache</type>
+ <gsak:wptExtension xmlns:gsak="http://www.gsak.net/xmlv1/6">
+ <gsak:UserFlag>false</gsak:UserFlag>
+ <gsak:Lock>false</gsak:Lock>
+ <gsak:DNF>false</gsak:DNF>
+ <gsak:Watch>false</gsak:Watch>
+ <gsak:UserData></gsak:UserData>
+ <gsak:FirstToFind>false</gsak:FirstToFind>
+ <gsak:User2></gsak:User2>
+ <gsak:User3></gsak:User3>
+ <gsak:User4></gsak:User4>
+ <gsak:County></gsak:County>
+ <gsak:UserSort>0</gsak:UserSort>
+ <gsak:SmartName>Puzzle3T</gsak:SmartName>
+ <gsak:LastGpxDate>2012-03-10</gsak:LastGpxDate>
+ <gsak:Code>U116</gsak:Code>
+ <gsak:Resolution></gsak:Resolution>
+ <gsak:IsPremium>false</gsak:IsPremium>
+ <gsak:FavPoints>0</gsak:FavPoints>
+ <gsak:GcNote></gsak:GcNote>
+ <gsak:Guid></gsak:Guid>
+ <gsak:CacheImages>
+ </gsak:CacheImages>
+ <gsak:LogImages>
+ </gsak:LogImages>
+ <gsak:CustomData>
+Custom_Start:cCode:Custom_Data:U116:Custom_End
+
+ </gsak:CustomData>
+ </gsak:wptExtension>
+ <groundspeak:cache id="278" available="True" archived="False" xmlns:groundspeak="http://www.groundspeak.com/cache/1/0/1">
+ <groundspeak:name>Puzzle #3 - The Wisdom of the Eledhrim</groundspeak:name>
+ <groundspeak:placed_by>TEXANS</groundspeak:placed_by>
+ <groundspeak:owner id="1">TXGA</groundspeak:owner>
+ <groundspeak:type>Unknown Cache</groundspeak:type>
+ <groundspeak:container>Not chosen</groundspeak:container>
+ <groundspeak:attributes>
+ </groundspeak:attributes>
+ <groundspeak:difficulty>4.5</groundspeak:difficulty>
+ <groundspeak:terrain>2.5</groundspeak:terrain>
+ <groundspeak:country></groundspeak:country>
+ <groundspeak:state></groundspeak:state>
+ <groundspeak:short_description html="False"> </groundspeak:short_description>
+ <groundspeak:long_description html="False"> </groundspeak:long_description>
+ <groundspeak:encoded_hints></groundspeak:encoded_hints>
+ <groundspeak:logs>
+ </groundspeak:logs>
+ <groundspeak:travelbugs>
+ </groundspeak:travelbugs>
+</groundspeak:cache>
+</wpt>
+ <wpt lat="33.380167" lon="-97.035167">
+ <time>2012-03-10T08:00:00Z</time>
+ <name>U056</name>
+ <desc>Puzzle #4 - Visual Puzzle by TEXANS (4.5/1.5)</desc>
+ <url></url>
+ <urlname>Puzzle #4 - Visual Puzzle by TEXANS</urlname>
+ <sym>Geocache</sym>
+ <type>Geocache|Unknown Cache</type>
+ <gsak:wptExtension xmlns:gsak="http://www.gsak.net/xmlv1/6">
+ <gsak:UserFlag>false</gsak:UserFlag>
+ <gsak:Lock>false</gsak:Lock>
+ <gsak:DNF>false</gsak:DNF>
+ <gsak:Watch>false</gsak:Watch>
+ <gsak:UserData></gsak:UserData>
+ <gsak:FirstToFind>false</gsak:FirstToFind>
+ <gsak:User2></gsak:User2>
+ <gsak:User3></gsak:User3>
+ <gsak:User4></gsak:User4>
+ <gsak:County></gsak:County>
+ <gsak:UserSort>0</gsak:UserSort>
+ <gsak:SmartName>Puzzle4V</gsak:SmartName>
+ <gsak:LastGpxDate>2012-03-10</gsak:LastGpxDate>
+ <gsak:Code>U056</gsak:Code>
+ <gsak:Resolution></gsak:Resolution>
+ <gsak:IsPremium>false</gsak:IsPremium>
+ <gsak:FavPoints>0</gsak:FavPoints>
+ <gsak:GcNote></gsak:GcNote>
+ <gsak:Guid></gsak:Guid>
+ <gsak:CacheImages>
+ </gsak:CacheImages>
+ <gsak:LogImages>
+ </gsak:LogImages>
+ <gsak:CustomData>
+Custom_Start:cCode:Custom_Data:U056:Custom_End
+
+ </gsak:CustomData>
+ </gsak:wptExtension>
+ <groundspeak:cache id="86" available="True" archived="False" xmlns:groundspeak="http://www.groundspeak.com/cache/1/0/1">
+ <groundspeak:name>Puzzle #4 - Visual Puzzle</groundspeak:name>
+ <groundspeak:placed_by>TEXANS</groundspeak:placed_by>
+ <groundspeak:owner id="1">TXGA</groundspeak:owner>
+ <groundspeak:type>Unknown Cache</groundspeak:type>
+ <groundspeak:container>Not chosen</groundspeak:container>
+ <groundspeak:attributes>
+ </groundspeak:attributes>
+ <groundspeak:difficulty>4.5</groundspeak:difficulty>
+ <groundspeak:terrain>1.5</groundspeak:terrain>
+ <groundspeak:country></groundspeak:country>
+ <groundspeak:state></groundspeak:state>
+ <groundspeak:short_description html="False"> </groundspeak:short_description>
+ <groundspeak:long_description html="False"> </groundspeak:long_description>
+ <groundspeak:encoded_hints></groundspeak:encoded_hints>
+ <groundspeak:logs>
+ </groundspeak:logs>
+ <groundspeak:travelbugs>
+ </groundspeak:travelbugs>
+</groundspeak:cache>
+</wpt>
+ <wpt lat="33.380367" lon="-97.035367">
+ <time>2012-03-10T08:00:00Z</time>
+ <name>U115</name>
+ <desc>Puzzle #5 - A Night At The Museum by TEXANS (3/2.5)</desc>
+ <url></url>
+ <urlname>Puzzle #5 - A Night At The Museum by TEXANS</urlname>
+ <sym>Geocache</sym>
+ <type>Geocache|Unknown Cache</type>
+ <gsak:wptExtension xmlns:gsak="http://www.gsak.net/xmlv1/6">
+ <gsak:UserFlag>false</gsak:UserFlag>
+ <gsak:Lock>false</gsak:Lock>
+ <gsak:DNF>false</gsak:DNF>
+ <gsak:Watch>false</gsak:Watch>
+ <gsak:UserData></gsak:UserData>
+ <gsak:FirstToFind>false</gsak:FirstToFind>
+ <gsak:User2></gsak:User2>
+ <gsak:User3></gsak:User3>
+ <gsak:User4></gsak:User4>
+ <gsak:County></gsak:County>
+ <gsak:UserSort>0</gsak:UserSort>
+ <gsak:SmartName>Puzzle5A</gsak:SmartName>
+ <gsak:LastGpxDate>2012-03-10</gsak:LastGpxDate>
+ <gsak:Code>U115</gsak:Code>
+ <gsak:Resolution></gsak:Resolution>
+ <gsak:IsPremium>false</gsak:IsPremium>
+ <gsak:FavPoints>0</gsak:FavPoints>
+ <gsak:GcNote></gsak:GcNote>
+ <gsak:Guid></gsak:Guid>
+ <gsak:CacheImages>
+ </gsak:CacheImages>
+ <gsak:LogImages>
+ </gsak:LogImages>
+ <gsak:CustomData>
+Custom_Start:cCode:Custom_Data:U115:Custom_End
+
+ </gsak:CustomData>
+ </gsak:wptExtension>
+ <groundspeak:cache id="277" available="True" archived="False" xmlns:groundspeak="http://www.groundspeak.com/cache/1/0/1">
+ <groundspeak:name>Puzzle #5 - A Night At The Museum</groundspeak:name>
+ <groundspeak:placed_by>TEXANS</groundspeak:placed_by>
+ <groundspeak:owner id="1">TXGA</groundspeak:owner>
+ <groundspeak:type>Unknown Cache</groundspeak:type>
+ <groundspeak:container>Not chosen</groundspeak:container>
+ <groundspeak:attributes>
+ </groundspeak:attributes>
+ <groundspeak:difficulty>3</groundspeak:difficulty>
+ <groundspeak:terrain>2.5</groundspeak:terrain>
+ <groundspeak:country></groundspeak:country>
+ <groundspeak:state></groundspeak:state>
+ <groundspeak:short_description html="False"> </groundspeak:short_description>
+ <groundspeak:long_description html="False"> </groundspeak:long_description>
+ <groundspeak:encoded_hints></groundspeak:encoded_hints>
+ <groundspeak:logs>
+ </groundspeak:logs>
+ <groundspeak:travelbugs>
+ </groundspeak:travelbugs>
+</groundspeak:cache>
+</wpt>
+ <wpt lat="33.380233" lon="-97.035233">
+ <time>2012-03-10T08:00:00Z</time>
+ <name>U071</name>
+ <desc>Puzzle #6 - Lego my Puzzle by TEXANS (4.5/2.5)</desc>
+ <url></url>
+ <urlname>Puzzle #6 - Lego my Puzzle by TEXANS</urlname>
+ <sym>Geocache</sym>
+ <type>Geocache|Unknown Cache</type>
+ <gsak:wptExtension xmlns:gsak="http://www.gsak.net/xmlv1/6">
+ <gsak:UserFlag>false</gsak:UserFlag>
+ <gsak:Lock>false</gsak:Lock>
+ <gsak:DNF>false</gsak:DNF>
+ <gsak:Watch>false</gsak:Watch>
+ <gsak:UserData></gsak:UserData>
+ <gsak:FirstToFind>false</gsak:FirstToFind>
+ <gsak:User2></gsak:User2>
+ <gsak:User3></gsak:User3>
+ <gsak:User4></gsak:User4>
+ <gsak:County></gsak:County>
+ <gsak:UserSort>0</gsak:UserSort>
+ <gsak:SmartName>Puzzle6L</gsak:SmartName>
+ <gsak:LastGpxDate>2012-03-10</gsak:LastGpxDate>
+ <gsak:Code>U071</gsak:Code>
+ <gsak:Resolution></gsak:Resolution>
+ <gsak:IsPremium>false</gsak:IsPremium>
+ <gsak:FavPoints>0</gsak:FavPoints>
+ <gsak:GcNote></gsak:GcNote>
+ <gsak:Guid></gsak:Guid>
+ <gsak:CacheImages>
+ </gsak:CacheImages>
+ <gsak:LogImages>
+ </gsak:LogImages>
+ <gsak:CustomData>
+Custom_Start:cCode:Custom_Data:U071:Custom_End
+
+ </gsak:CustomData>
+ </gsak:wptExtension>
+ <groundspeak:cache id="113" available="True" archived="False" xmlns:groundspeak="http://www.groundspeak.com/cache/1/0/1">
+ <groundspeak:name>Puzzle #6 - Lego my Puzzle</groundspeak:name>
+ <groundspeak:placed_by>TEXANS</groundspeak:placed_by>
+ <groundspeak:owner id="1">TXGA</groundspeak:owner>
+ <groundspeak:type>Unknown Cache</groundspeak:type>
+ <groundspeak:container>Not chosen</groundspeak:container>
+ <groundspeak:attributes>
+ </groundspeak:attributes>
+ <groundspeak:difficulty>4.5</groundspeak:difficulty>
+ <groundspeak:terrain>2.5</groundspeak:terrain>
+ <groundspeak:country></groundspeak:country>
+ <groundspeak:state></groundspeak:state>
+ <groundspeak:short_description html="False"> </groundspeak:short_description>
+ <groundspeak:long_description html="False"> </groundspeak:long_description>
+ <groundspeak:encoded_hints></groundspeak:encoded_hints>
+ <groundspeak:logs>
+ </groundspeak:logs>
+ <groundspeak:travelbugs>
+ </groundspeak:travelbugs>
+</groundspeak:cache>
+</wpt>
+ <wpt lat="33.380333" lon="-97.035333">
+ <time>2012-03-10T08:00:00Z</time>
+ <name>U009</name>
+ <desc>Puzzle #7 - Names Sound Exactly the Same by TEXANS (4/4.5)</desc>
+ <url></url>
+ <urlname>Puzzle #7 - Names Sound Exactly the Same by TEXANS</urlname>
+ <sym>Geocache</sym>
+ <type>Geocache|Unknown Cache</type>
+ <gsak:wptExtension xmlns:gsak="http://www.gsak.net/xmlv1/6">
+ <gsak:UserFlag>false</gsak:UserFlag>
+ <gsak:Lock>false</gsak:Lock>
+ <gsak:DNF>false</gsak:DNF>
+ <gsak:Watch>false</gsak:Watch>
+ <gsak:UserData></gsak:UserData>
+ <gsak:FirstToFind>false</gsak:FirstToFind>
+ <gsak:User2></gsak:User2>
+ <gsak:User3></gsak:User3>
+ <gsak:User4></gsak:User4>
+ <gsak:County></gsak:County>
+ <gsak:UserSort>0</gsak:UserSort>
+ <gsak:SmartName>Puzzle7N</gsak:SmartName>
+ <gsak:LastGpxDate>2012-03-10</gsak:LastGpxDate>
+ <gsak:Code>U009</gsak:Code>
+ <gsak:Resolution></gsak:Resolution>
+ <gsak:IsPremium>false</gsak:IsPremium>
+ <gsak:FavPoints>0</gsak:FavPoints>
+ <gsak:GcNote></gsak:GcNote>
+ <gsak:Guid></gsak:Guid>
+ <gsak:CacheImages>
+ </gsak:CacheImages>
+ <gsak:LogImages>
+ </gsak:LogImages>
+ <gsak:CustomData>
+Custom_Start:cCode:Custom_Data:U009:Custom_End
+
+ </gsak:CustomData>
+ </gsak:wptExtension>
+ <groundspeak:cache id="9" available="True" archived="False" xmlns:groundspeak="http://www.groundspeak.com/cache/1/0/1">
+ <groundspeak:name>Puzzle #7 - Names Sound Exactly the Same</groundspeak:name>
+ <groundspeak:placed_by>TEXANS</groundspeak:placed_by>
+ <groundspeak:owner id="1">TXGA</groundspeak:owner>
+ <groundspeak:type>Unknown Cache</groundspeak:type>
+ <groundspeak:container>Not chosen</groundspeak:container>
+ <groundspeak:attributes>
+ </groundspeak:attributes>
+ <groundspeak:difficulty>4</groundspeak:difficulty>
+ <groundspeak:terrain>4.5</groundspeak:terrain>
+ <groundspeak:country></groundspeak:country>
+ <groundspeak:state></groundspeak:state>
+ <groundspeak:short_description html="False"> </groundspeak:short_description>
+ <groundspeak:long_description html="False"> </groundspeak:long_description>
+ <groundspeak:encoded_hints></groundspeak:encoded_hints>
+ <groundspeak:logs>
+ </groundspeak:logs>
+ <groundspeak:travelbugs>
+ </groundspeak:travelbugs>
+</groundspeak:cache>
+</wpt>
+ <wpt lat="33.380467" lon="-97.035467">
+ <time>2012-03-10T08:00:00Z</time>
+ <name>U086</name>
+ <desc>Puzzle #8 - An Eye For Art by TEXANS (4/4)</desc>
+ <url></url>
+ <urlname>Puzzle #8 - An Eye For Art by TEXANS</urlname>
+ <sym>Geocache</sym>
+ <type>Geocache|Unknown Cache</type>
+ <gsak:wptExtension xmlns:gsak="http://www.gsak.net/xmlv1/6">
+ <gsak:UserFlag>false</gsak:UserFlag>
+ <gsak:Lock>false</gsak:Lock>
+ <gsak:DNF>false</gsak:DNF>
+ <gsak:Watch>false</gsak:Watch>
+ <gsak:UserData></gsak:UserData>
+ <gsak:FirstToFind>false</gsak:FirstToFind>
+ <gsak:User2></gsak:User2>
+ <gsak:User3></gsak:User3>
+ <gsak:User4></gsak:User4>
+ <gsak:County></gsak:County>
+ <gsak:UserSort>0</gsak:UserSort>
+ <gsak:SmartName>Puzzle8A</gsak:SmartName>
+ <gsak:LastGpxDate>2012-03-10</gsak:LastGpxDate>
+ <gsak:Code>U086</gsak:Code>
+ <gsak:Resolution></gsak:Resolution>
+ <gsak:IsPremium>false</gsak:IsPremium>
+ <gsak:FavPoints>0</gsak:FavPoints>
+ <gsak:GcNote></gsak:GcNote>
+ <gsak:Guid></gsak:Guid>
+ <gsak:CacheImages>
+ </gsak:CacheImages>
+ <gsak:LogImages>
+ </gsak:LogImages>
+ <gsak:CustomData>
+Custom_Start:cCode:Custom_Data:U086:Custom_End
+
+ </gsak:CustomData>
+ </gsak:wptExtension>
+ <groundspeak:cache id="134" available="True" archived="False" xmlns:groundspeak="http://www.groundspeak.com/cache/1/0/1">
+ <groundspeak:name>Puzzle #8 - An Eye For Art</groundspeak:name>
+ <groundspeak:placed_by>TEXANS</groundspeak:placed_by>
+ <groundspeak:owner id="1">TXGA</groundspeak:owner>
+ <groundspeak:type>Unknown Cache</groundspeak:type>
+ <groundspeak:container>Not chosen</groundspeak:container>
+ <groundspeak:attributes>
+ </groundspeak:attributes>
+ <groundspeak:difficulty>4</groundspeak:difficulty>
+ <groundspeak:terrain>4</groundspeak:terrain>
+ <groundspeak:country></groundspeak:country>
+ <groundspeak:state></groundspeak:state>
+ <groundspeak:short_description html="False"> </groundspeak:short_description>
+ <groundspeak:long_description html="False"> </groundspeak:long_description>
+ <groundspeak:encoded_hints></groundspeak:encoded_hints>
+ <groundspeak:logs>
+ </groundspeak:logs>
+ <groundspeak:travelbugs>
+ </groundspeak:travelbugs>
+</groundspeak:cache>
+</wpt>
+ <wpt lat="33.382967" lon="-97.009283">
+ <time>2012-03-10T08:00:00Z</time>
+ <name>T001</name>
+ <desc>Triditional Cache 001 by TEXANS (2/2)</desc>
+ <url></url>
+ <urlname>Triditional Cache 001 by TEXANS</urlname>
+ <sym>Geocache</sym>
+ <type>Geocache|Traditional Cache</type>
+ <gsak:wptExtension xmlns:gsak="http://www.gsak.net/xmlv1/6">
+ <gsak:UserFlag>false</gsak:UserFlag>
+ <gsak:Lock>false</gsak:Lock>
+ <gsak:DNF>false</gsak:DNF>
+ <gsak:Watch>false</gsak:Watch>
+ <gsak:UserData></gsak:UserData>
+ <gsak:FirstToFind>false</gsak:FirstToFind>
+ <gsak:User2></gsak:User2>
+ <gsak:User3></gsak:User3>
+ <gsak:User4></gsak:User4>
+ <gsak:County></gsak:County>
+ <gsak:UserSort>0</gsak:UserSort>
+ <gsak:SmartName>Tridi001</gsak:SmartName>
+ <gsak:LastGpxDate>2012-03-10</gsak:LastGpxDate>
+ <gsak:Code>T001</gsak:Code>
+ <gsak:Resolution></gsak:Resolution>
+ <gsak:IsPremium>false</gsak:IsPremium>
+ <gsak:FavPoints>0</gsak:FavPoints>
+ <gsak:GcNote></gsak:GcNote>
+ <gsak:Guid></gsak:Guid>
+ <gsak:CacheImages>
+ </gsak:CacheImages>
+ <gsak:LogImages>
+ </gsak:LogImages>
+ <gsak:CustomData>
+Custom_Start:cCode:Custom_Data:T001:Custom_End
+
+ </gsak:CustomData>
+ </gsak:wptExtension>
+ <groundspeak:cache id="1" available="True" archived="False" xmlns:groundspeak="http://www.groundspeak.com/cache/1/0/1">
+ <groundspeak:name>Triditional Cache 001</groundspeak:name>
+ <groundspeak:placed_by>TEXANS</groundspeak:placed_by>
+ <groundspeak:owner id="1">TXGA</groundspeak:owner>
+ <groundspeak:type>Traditional Cache</groundspeak:type>
+ <groundspeak:container>Not chosen</groundspeak:container>
+ <groundspeak:attributes>
+ </groundspeak:attributes>
+ <groundspeak:difficulty>2</groundspeak:difficulty>
+ <groundspeak:terrain>2</groundspeak:terrain>
+ <groundspeak:country></groundspeak:country>
+ <groundspeak:state></groundspeak:state>
+ <groundspeak:short_description html="False"> </groundspeak:short_description>
+ <groundspeak:long_description html="False"> </groundspeak:long_description>
+ <groundspeak:encoded_hints></groundspeak:encoded_hints>
+ <groundspeak:logs>
+ </groundspeak:logs>
+ <groundspeak:travelbugs>
+ </groundspeak:travelbugs>
+</groundspeak:cache>
+</wpt>
+ <wpt lat="33.40245" lon="-97.00585">
+ <time>2012-03-10T08:00:00Z</time>
+ <name>T002</name>
+ <desc>Triditional Cache 002 by TEXANS (3/1.5)</desc>
+ <url></url>
+ <urlname>Triditional Cache 002 by TEXANS</urlname>
+ <sym>Geocache</sym>
+ <type>Geocache|Traditional Cache</type>
+ <gsak:wptExtension xmlns:gsak="http://www.gsak.net/xmlv1/6">
+ <gsak:UserFlag>false</gsak:UserFlag>
+ <gsak:Lock>false</gsak:Lock>
+ <gsak:DNF>false</gsak:DNF>
+ <gsak:Watch>false</gsak:Watch>
+ <gsak:UserData></gsak:UserData>
+ <gsak:FirstToFind>false</gsak:FirstToFind>
+ <gsak:User2></gsak:User2>
+ <gsak:User3></gsak:User3>
+ <gsak:User4></gsak:User4>
+ <gsak:County></gsak:County>
+ <gsak:UserSort>0</gsak:UserSort>
+ <gsak:SmartName>Tridi002</gsak:SmartName>
+ <gsak:LastGpxDate>2012-03-10</gsak:LastGpxDate>
+ <gsak:Code>T002</gsak:Code>
+ <gsak:Resolution></gsak:Resolution>
+ <gsak:IsPremium>false</gsak:IsPremium>
+ <gsak:FavPoints>0</gsak:FavPoints>
+ <gsak:GcNote></gsak:GcNote>
+ <gsak:Guid></gsak:Guid>
+ <gsak:CacheImages>
+ </gsak:CacheImages>
+ <gsak:LogImages>
+ </gsak:LogImages>
+ <gsak:CustomData>
+Custom_Start:cCode:Custom_Data:T002:Custom_End
+
+ </gsak:CustomData>
+ </gsak:wptExtension>
+ <groundspeak:cache id="2" available="True" archived="False" xmlns:groundspeak="http://www.groundspeak.com/cache/1/0/1">
+ <groundspeak:name>Triditional Cache 002</groundspeak:name>
+ <groundspeak:placed_by>TEXANS</groundspeak:placed_by>
+ <groundspeak:owner id="1">TXGA</groundspeak:owner>
+ <groundspeak:type>Traditional Cache</groundspeak:type>
+ <groundspeak:container>Not chosen</groundspeak:container>
+ <groundspeak:attributes>
+ </groundspeak:attributes>
+ <groundspeak:difficulty>3</groundspeak:difficulty>
+ <groundspeak:terrain>1.5</groundspeak:terrain>
+ <groundspeak:country></groundspeak:country>
+ <groundspeak:state></groundspeak:state>
+ <groundspeak:short_description html="False"> </groundspeak:short_description>
+ <groundspeak:long_description html="False"> </groundspeak:long_description>
+ <groundspeak:encoded_hints></groundspeak:encoded_hints>
+ <groundspeak:logs>
+ </groundspeak:logs>
+ <groundspeak:travelbugs>
+ </groundspeak:travelbugs>
+</groundspeak:cache>
+</wpt>
+ <wpt lat="33.36295" lon="-97.015283">
+ <time>2012-03-10T08:00:00Z</time>
+ <name>T003</name>
+ <desc>Triditional Cache 003 by TEXANS (1.5/1.5)</desc>
+ <url></url>
+ <urlname>Triditional Cache 003 by TEXANS</urlname>
+ <sym>Geocache</sym>
+ <type>Geocache|Traditional Cache</type>
+ <gsak:wptExtension xmlns:gsak="http://www.gsak.net/xmlv1/6">
+ <gsak:UserFlag>false</gsak:UserFlag>
+ <gsak:Lock>false</gsak:Lock>
+ <gsak:DNF>false</gsak:DNF>
+ <gsak:Watch>false</gsak:Watch>
+ <gsak:UserData></gsak:UserData>
+ <gsak:FirstToFind>false</gsak:FirstToFind>
+ <gsak:User2></gsak:User2>
+ <gsak:User3></gsak:User3>
+ <gsak:User4></gsak:User4>
+ <gsak:County></gsak:County>
+ <gsak:UserSort>0</gsak:UserSort>
+ <gsak:SmartName>Tridi003</gsak:SmartName>
+ <gsak:LastGpxDate>2012-03-10</gsak:LastGpxDate>
+ <gsak:Code>T003</gsak:Code>
+ <gsak:Resolution></gsak:Resolution>
+ <gsak:IsPremium>false</gsak:IsPremium>
+ <gsak:FavPoints>0</gsak:FavPoints>
+ <gsak:GcNote></gsak:GcNote>
+ <gsak:Guid></gsak:Guid>
+ <gsak:CacheImages>
+ </gsak:CacheImages>
+ <gsak:LogImages>
+ </gsak:LogImages>
+ <gsak:CustomData>
+Custom_Start:cCode:Custom_Data:T003:Custom_End
+
+ </gsak:CustomData>
+ </gsak:wptExtension>
+ <groundspeak:cache id="3" available="True" archived="False" xmlns:groundspeak="http://www.groundspeak.com/cache/1/0/1">
+ <groundspeak:name>Triditional Cache 003</groundspeak:name>
+ <groundspeak:placed_by>TEXANS</groundspeak:placed_by>
+ <groundspeak:owner id="1">TXGA</groundspeak:owner>
+ <groundspeak:type>Traditional Cache</groundspeak:type>
+ <groundspeak:container>Not chosen</groundspeak:container>
+ <groundspeak:attributes>
+ </groundspeak:attributes>
+ <groundspeak:difficulty>1.5</groundspeak:difficulty>
+ <groundspeak:terrain>1.5</groundspeak:terrain>
+ <groundspeak:country></groundspeak:country>
+ <groundspeak:state></groundspeak:state>
+ <groundspeak:short_description html="False"> </groundspeak:short_description>
+ <groundspeak:long_description html="False"> </groundspeak:long_description>
+ <groundspeak:encoded_hints></groundspeak:encoded_hints>
+ <groundspeak:logs>
+ </groundspeak:logs>
+ <groundspeak:travelbugs>
+ </groundspeak:travelbugs>
+</groundspeak:cache>
+</wpt>
+ <wpt lat="33.388367" lon="-97.02385">
+ <time>2012-03-10T08:00:00Z</time>
+ <name>T004</name>
+ <desc>Triditional Cache 004 by TEXANS (2/2.5)</desc>
+ <url></url>
+ <urlname>Triditional Cache 004 by TEXANS</urlname>
+ <sym>Geocache</sym>
+ <type>Geocache|Traditional Cache</type>
+ <gsak:wptExtension xmlns:gsak="http://www.gsak.net/xmlv1/6">
+ <gsak:UserFlag>false</gsak:UserFlag>
+ <gsak:Lock>false</gsak:Lock>
+ <gsak:DNF>false</gsak:DNF>
+ <gsak:Watch>false</gsak:Watch>
+ <gsak:UserData></gsak:UserData>
+ <gsak:FirstToFind>false</gsak:FirstToFind>
+ <gsak:User2></gsak:User2>
+ <gsak:User3></gsak:User3>
+ <gsak:User4></gsak:User4>
+ <gsak:County></gsak:County>
+ <gsak:UserSort>0</gsak:UserSort>
+ <gsak:SmartName>Tridi004</gsak:SmartName>
+ <gsak:LastGpxDate>2012-03-10</gsak:LastGpxDate>
+ <gsak:Code>T004</gsak:Code>
+ <gsak:Resolution></gsak:Resolution>
+ <gsak:IsPremium>false</gsak:IsPremium>
+ <gsak:FavPoints>0</gsak:FavPoints>
+ <gsak:GcNote></gsak:GcNote>
+ <gsak:Guid></gsak:Guid>
+ <gsak:CacheImages>
+ </gsak:CacheImages>
+ <gsak:LogImages>
+ </gsak:LogImages>
+ <gsak:CustomData>
+Custom_Start:cCode:Custom_Data:T004:Custom_End
+
+ </gsak:CustomData>
+ </gsak:wptExtension>
+ <groundspeak:cache id="4" available="True" archived="False" xmlns:groundspeak="http://www.groundspeak.com/cache/1/0/1">
+ <groundspeak:name>Triditional Cache 004</groundspeak:name>
+ <groundspeak:placed_by>TEXANS</groundspeak:placed_by>
+ <groundspeak:owner id="1">TXGA</groundspeak:owner>
+ <groundspeak:type>Traditional Cache</groundspeak:type>
+ <groundspeak:container>Not chosen</groundspeak:container>
+ <groundspeak:attributes>
+ </groundspeak:attributes>
+ <groundspeak:difficulty>2</groundspeak:difficulty>
+ <groundspeak:terrain>2.5</groundspeak:terrain>
+ <groundspeak:country></groundspeak:country>
+ <groundspeak:state></groundspeak:state>
+ <groundspeak:short_description html="False"> </groundspeak:short_description>
+ <groundspeak:long_description html="False"> </groundspeak:long_description>
+ <groundspeak:encoded_hints></groundspeak:encoded_hints>
+ <groundspeak:logs>
+ </groundspeak:logs>
+ <groundspeak:travelbugs>
+ </groundspeak:travelbugs>
+</groundspeak:cache>
+</wpt>
+ <wpt lat="33.366383" lon="-97.014517">
+ <time>2012-03-10T08:00:00Z</time>
+ <name>T005</name>
+ <desc>Triditional Cache 005 by TEXANS (3/2)</desc>
+ <url></url>
+ <urlname>Triditional Cache 005 by TEXANS</urlname>
+ <sym>Geocache</sym>
+ <type>Geocache|Traditional Cache</type>
+ <gsak:wptExtension xmlns:gsak="http://www.gsak.net/xmlv1/6">
+ <gsak:UserFlag>false</gsak:UserFlag>
+ <gsak:Lock>false</gsak:Lock>
+ <gsak:DNF>false</gsak:DNF>
+ <gsak:Watch>false</gsak:Watch>
+ <gsak:UserData></gsak:UserData>
+ <gsak:FirstToFind>false</gsak:FirstToFind>
+ <gsak:User2></gsak:User2>
+ <gsak:User3></gsak:User3>
+ <gsak:User4></gsak:User4>
+ <gsak:County></gsak:County>
+ <gsak:UserSort>0</gsak:UserSort>
+ <gsak:SmartName>Tridi005</gsak:SmartName>
+ <gsak:LastGpxDate>2012-03-10</gsak:LastGpxDate>
+ <gsak:Code>T005</gsak:Code>
+ <gsak:Resolution></gsak:Resolution>
+ <gsak:IsPremium>false</gsak:IsPremium>
+ <gsak:FavPoints>0</gsak:FavPoints>
+ <gsak:GcNote></gsak:GcNote>
+ <gsak:Guid></gsak:Guid>
+ <gsak:CacheImages>
+ </gsak:CacheImages>
+ <gsak:LogImages>
+ </gsak:LogImages>
+ <gsak:CustomData>
+Custom_Start:cCode:Custom_Data:T005:Custom_End
+
+ </gsak:CustomData>
+ </gsak:wptExtension>
+ <groundspeak:cache id="5" available="True" archived="False" xmlns:groundspeak="http://www.groundspeak.com/cache/1/0/1">
+ <groundspeak:name>Triditional Cache 005</groundspeak:name>
+ <groundspeak:placed_by>TEXANS</groundspeak:placed_by>
+ <groundspeak:owner id="1">TXGA</groundspeak:owner>
+ <groundspeak:type>Traditional Cache</groundspeak:type>
+ <groundspeak:container>Not chosen</groundspeak:container>
+ <groundspeak:attributes>
+ </groundspeak:attributes>
+ <groundspeak:difficulty>3</groundspeak:difficulty>
+ <groundspeak:terrain>2</groundspeak:terrain>
+ <groundspeak:country></groundspeak:country>
+ <groundspeak:state></groundspeak:state>
+ <groundspeak:short_description html="False"> </groundspeak:short_description>
+ <groundspeak:long_description html="False"> </groundspeak:long_description>
+ <groundspeak:encoded_hints></groundspeak:encoded_hints>
+ <groundspeak:logs>
+ </groundspeak:logs>
+ <groundspeak:travelbugs>
+ </groundspeak:travelbugs>
+</groundspeak:cache>
+</wpt>
+ <wpt lat="33.390417" lon="-97.012083">
+ <time>2012-03-10T08:00:00Z</time>
+ <name>T008</name>
+ <desc>Triditional Cache 008 by TEXANS (1.5/3.5)</desc>
+ <url></url>
+ <urlname>Triditional Cache 008 by TEXANS</urlname>
+ <sym>Geocache</sym>
+ <type>Geocache|Traditional Cache</type>
+ <gsak:wptExtension xmlns:gsak="http://www.gsak.net/xmlv1/6">
+ <gsak:UserFlag>false</gsak:UserFlag>
+ <gsak:Lock>false</gsak:Lock>
+ <gsak:DNF>false</gsak:DNF>
+ <gsak:Watch>false</gsak:Watch>
+ <gsak:UserData></gsak:UserData>
+ <gsak:FirstToFind>false</gsak:FirstToFind>
+ <gsak:User2></gsak:User2>
+ <gsak:User3></gsak:User3>
+ <gsak:User4></gsak:User4>
+ <gsak:County></gsak:County>
+ <gsak:UserSort>0</gsak:UserSort>
+ <gsak:SmartName>Tridi008</gsak:SmartName>
+ <gsak:LastGpxDate>2012-03-10</gsak:LastGpxDate>
+ <gsak:Code>T008</gsak:Code>
+ <gsak:Resolution></gsak:Resolution>
+ <gsak:IsPremium>false</gsak:IsPremium>
+ <gsak:FavPoints>0</gsak:FavPoints>
+ <gsak:GcNote></gsak:GcNote>
+ <gsak:Guid></gsak:Guid>
+ <gsak:CacheImages>
+ </gsak:CacheImages>
+ <gsak:LogImages>
+ </gsak:LogImages>
+ <gsak:CustomData>
+Custom_Start:cCode:Custom_Data:T008:Custom_End
+
+ </gsak:CustomData>
+ </gsak:wptExtension>
+ <groundspeak:cache id="8" available="True" archived="False" xmlns:groundspeak="http://www.groundspeak.com/cache/1/0/1">
+ <groundspeak:name>Triditional Cache 008</groundspeak:name>
+ <groundspeak:placed_by>TEXANS</groundspeak:placed_by>
+ <groundspeak:owner id="1">TXGA</groundspeak:owner>
+ <groundspeak:type>Traditional Cache</groundspeak:type>
+ <groundspeak:container>Not chosen</groundspeak:container>
+ <groundspeak:attributes>
+ </groundspeak:attributes>
+ <groundspeak:difficulty>1.5</groundspeak:difficulty>
+ <groundspeak:terrain>3.5</groundspeak:terrain>
+ <groundspeak:country></groundspeak:country>
+ <groundspeak:state></groundspeak:state>
+ <groundspeak:short_description html="False"> </groundspeak:short_description>
+ <groundspeak:long_description html="False"> </groundspeak:long_description>
+ <groundspeak:encoded_hints></groundspeak:encoded_hints>
+ <groundspeak:logs>
+ </groundspeak:logs>
+ <groundspeak:travelbugs>
+ </groundspeak:travelbugs>
+</groundspeak:cache>
+</wpt>
+ <wpt lat="33.383817" lon="-97.003083">
+ <time>2012-03-10T08:00:00Z</time>
+ <name>T010</name>
+ <desc>Triditional Cache 010 by TEXANS (3/2)</desc>
+ <url></url>
+ <urlname>Triditional Cache 010 by TEXANS</urlname>
+ <sym>Geocache</sym>
+ <type>Geocache|Traditional Cache</type>
+ <gsak:wptExtension xmlns:gsak="http://www.gsak.net/xmlv1/6">
+ <gsak:UserFlag>false</gsak:UserFlag>
+ <gsak:Lock>false</gsak:Lock>
+ <gsak:DNF>false</gsak:DNF>
+ <gsak:Watch>false</gsak:Watch>
+ <gsak:UserData></gsak:UserData>
+ <gsak:FirstToFind>false</gsak:FirstToFind>
+ <gsak:User2></gsak:User2>
+ <gsak:User3></gsak:User3>
+ <gsak:User4></gsak:User4>
+ <gsak:County></gsak:County>
+ <gsak:UserSort>0</gsak:UserSort>
+ <gsak:SmartName>Tridi010</gsak:SmartName>
+ <gsak:LastGpxDate>2012-03-10</gsak:LastGpxDate>
+ <gsak:Code>T010</gsak:Code>
+ <gsak:Resolution></gsak:Resolution>
+ <gsak:IsPremium>false</gsak:IsPremium>
+ <gsak:FavPoints>0</gsak:FavPoints>
+ <gsak:GcNote></gsak:GcNote>
+ <gsak:Guid></gsak:Guid>
+ <gsak:CacheImages>
+ </gsak:CacheImages>
+ <gsak:LogImages>
+ </gsak:LogImages>
+ <gsak:CustomData>
+Custom_Start:cCode:Custom_Data:T010:Custom_End
+
+ </gsak:CustomData>
+ </gsak:wptExtension>
+ <groundspeak:cache id="16" available="True" archived="False" xmlns:groundspeak="http://www.groundspeak.com/cache/1/0/1">
+ <groundspeak:name>Triditional Cache 010</groundspeak:name>
+ <groundspeak:placed_by>TEXANS</groundspeak:placed_by>
+ <groundspeak:owner id="1">TXGA</groundspeak:owner>
+ <groundspeak:type>Traditional Cache</groundspeak:type>
+ <groundspeak:container>Not chosen</groundspeak:container>
+ <groundspeak:attributes>
+ </groundspeak:attributes>
+ <groundspeak:difficulty>3</groundspeak:difficulty>
+ <groundspeak:terrain>2</groundspeak:terrain>
+ <groundspeak:country></groundspeak:country>
+ <groundspeak:state></groundspeak:state>
+ <groundspeak:short_description html="False"> </groundspeak:short_description>
+ <groundspeak:long_description html="False"> </groundspeak:long_description>
+ <groundspeak:encoded_hints></groundspeak:encoded_hints>
+ <groundspeak:logs>
+ </groundspeak:logs>
+ <groundspeak:travelbugs>
+ </groundspeak:travelbugs>
+</groundspeak:cache>
+</wpt>
+ <wpt lat="33.361633" lon="-97.022917">
+ <time>2012-03-10T08:00:00Z</time>
+ <name>T011</name>
+ <desc>Triditional Cache 011 by TEXANS (2.5/2.5)</desc>
+ <url></url>
+ <urlname>Triditional Cache 011 by TEXANS</urlname>
+ <sym>Geocache</sym>
+ <type>Geocache|Traditional Cache</type>
+ <gsak:wptExtension xmlns:gsak="http://www.gsak.net/xmlv1/6">
+ <gsak:UserFlag>false</gsak:UserFlag>
+ <gsak:Lock>false</gsak:Lock>
+ <gsak:DNF>false</gsak:DNF>
+ <gsak:Watch>false</gsak:Watch>
+ <gsak:UserData></gsak:UserData>
+ <gsak:FirstToFind>false</gsak:FirstToFind>
+ <gsak:User2></gsak:User2>
+ <gsak:User3></gsak:User3>
+ <gsak:User4></gsak:User4>
+ <gsak:County></gsak:County>
+ <gsak:UserSort>0</gsak:UserSort>
+ <gsak:SmartName>Tridi011</gsak:SmartName>
+ <gsak:LastGpxDate>2012-03-10</gsak:LastGpxDate>
+ <gsak:Code>T011</gsak:Code>
+ <gsak:Resolution></gsak:Resolution>
+ <gsak:IsPremium>false</gsak:IsPremium>
+ <gsak:FavPoints>0</gsak:FavPoints>
+ <gsak:GcNote></gsak:GcNote>
+ <gsak:Guid></gsak:Guid>
+ <gsak:CacheImages>
+ </gsak:CacheImages>
+ <gsak:LogImages>
+ </gsak:LogImages>
+ <gsak:CustomData>
+Custom_Start:cCode:Custom_Data:T011:Custom_End
+
+ </gsak:CustomData>
+ </gsak:wptExtension>
+ <groundspeak:cache id="17" available="True" archived="False" xmlns:groundspeak="http://www.groundspeak.com/cache/1/0/1">
+ <groundspeak:name>Triditional Cache 011</groundspeak:name>
+ <groundspeak:placed_by>TEXANS</groundspeak:placed_by>
+ <groundspeak:owner id="1">TXGA</groundspeak:owner>
+ <groundspeak:type>Traditional Cache</groundspeak:type>
+ <groundspeak:container>Not chosen</groundspeak:container>
+ <groundspeak:attributes>
+ </groundspeak:attributes>
+ <groundspeak:difficulty>2.5</groundspeak:difficulty>
+ <groundspeak:terrain>2.5</groundspeak:terrain>
+ <groundspeak:country></groundspeak:country>
+ <groundspeak:state></groundspeak:state>
+ <groundspeak:short_description html="False"> </groundspeak:short_description>
+ <groundspeak:long_description html="False"> </groundspeak:long_description>
+ <groundspeak:encoded_hints></groundspeak:encoded_hints>
+ <groundspeak:logs>
+ </groundspeak:logs>
+ <groundspeak:travelbugs>
+ </groundspeak:travelbugs>
+</groundspeak:cache>
+</wpt>
+ <wpt lat="33.361017" lon="-97.02575">
+ <time>2012-03-10T08:00:00Z</time>
+ <name>T012</name>
+ <desc>Triditional Cache 012 by TEXANS (3/3)</desc>
+ <url></url>
+ <urlname>Triditional Cache 012 by TEXANS</urlname>
+ <sym>Geocache</sym>
+ <type>Geocache|Traditional Cache</type>
+ <gsak:wptExtension xmlns:gsak="http://www.gsak.net/xmlv1/6">
+ <gsak:UserFlag>false</gsak:UserFlag>
+ <gsak:Lock>false</gsak:Lock>
+ <gsak:DNF>false</gsak:DNF>
+ <gsak:Watch>false</gsak:Watch>
+ <gsak:UserData></gsak:UserData>
+ <gsak:FirstToFind>false</gsak:FirstToFind>
+ <gsak:User2></gsak:User2>
+ <gsak:User3></gsak:User3>
+ <gsak:User4></gsak:User4>
+ <gsak:County></gsak:County>
+ <gsak:UserSort>0</gsak:UserSort>
+ <gsak:SmartName>Tridi012</gsak:SmartName>
+ <gsak:LastGpxDate>2012-03-10</gsak:LastGpxDate>
+ <gsak:Code>T012</gsak:Code>
+ <gsak:Resolution></gsak:Resolution>
+ <gsak:IsPremium>false</gsak:IsPremium>
+ <gsak:FavPoints>0</gsak:FavPoints>
+ <gsak:GcNote></gsak:GcNote>
+ <gsak:Guid></gsak:Guid>
+ <gsak:CacheImages>
+ </gsak:CacheImages>
+ <gsak:LogImages>
+ </gsak:LogImages>
+ <gsak:CustomData>
+Custom_Start:cCode:Custom_Data:T012:Custom_End
+
+ </gsak:CustomData>
+ </gsak:wptExtension>
+ <groundspeak:cache id="18" available="True" archived="False" xmlns:groundspeak="http://www.groundspeak.com/cache/1/0/1">
+ <groundspeak:name>Triditional Cache 012</groundspeak:name>
+ <groundspeak:placed_by>TEXANS</groundspeak:placed_by>
+ <groundspeak:owner id="1">TXGA</groundspeak:owner>
+ <groundspeak:type>Traditional Cache</groundspeak:type>
+ <groundspeak:container>Not chosen</groundspeak:container>
+ <groundspeak:attributes>
+ </groundspeak:attributes>
+ <groundspeak:difficulty>3</groundspeak:difficulty>
+ <groundspeak:terrain>3</groundspeak:terrain>
+ <groundspeak:country></groundspeak:country>
+ <groundspeak:state></groundspeak:state>
+ <groundspeak:short_description html="False"> </groundspeak:short_description>
+ <groundspeak:long_description html="False"> </groundspeak:long_description>
+ <groundspeak:encoded_hints></groundspeak:encoded_hints>
+ <groundspeak:logs>
+ </groundspeak:logs>
+ <groundspeak:travelbugs>
+ </groundspeak:travelbugs>
+</groundspeak:cache>
+</wpt>
+ <wpt lat="33.378267" lon="-97.026017">
+ <time>2012-03-10T08:00:00Z</time>
+ <name>T013</name>
+ <desc>Triditional Cache 013 by TEXANS (1.5/2)</desc>
+ <url></url>
+ <urlname>Triditional Cache 013 by TEXANS</urlname>
+ <sym>Geocache</sym>
+ <type>Geocache|Traditional Cache</type>
+ <gsak:wptExtension xmlns:gsak="http://www.gsak.net/xmlv1/6">
+ <gsak:UserFlag>false</gsak:UserFlag>
+ <gsak:Lock>false</gsak:Lock>
+ <gsak:DNF>false</gsak:DNF>
+ <gsak:Watch>false</gsak:Watch>
+ <gsak:UserData></gsak:UserData>
+ <gsak:FirstToFind>false</gsak:FirstToFind>
+ <gsak:User2></gsak:User2>
+ <gsak:User3></gsak:User3>
+ <gsak:User4></gsak:User4>
+ <gsak:County></gsak:County>
+ <gsak:UserSort>0</gsak:UserSort>
+ <gsak:SmartName>Tridi013</gsak:SmartName>
+ <gsak:LastGpxDate>2012-03-10</gsak:LastGpxDate>
+ <gsak:Code>T013</gsak:Code>
+ <gsak:Resolution></gsak:Resolution>
+ <gsak:IsPremium>false</gsak:IsPremium>
+ <gsak:FavPoints>0</gsak:FavPoints>
+ <gsak:GcNote></gsak:GcNote>
+ <gsak:Guid></gsak:Guid>
+ <gsak:CacheImages>
+ </gsak:CacheImages>
+ <gsak:LogImages>
+ </gsak:LogImages>
+ <gsak:CustomData>
+Custom_Start:cCode:Custom_Data:T013:Custom_End
+
+ </gsak:CustomData>
+ </gsak:wptExtension>
+ <groundspeak:cache id="19" available="True" archived="False" xmlns:groundspeak="http://www.groundspeak.com/cache/1/0/1">
+ <groundspeak:name>Triditional Cache 013</groundspeak:name>
+ <groundspeak:placed_by>TEXANS</groundspeak:placed_by>
+ <groundspeak:owner id="1">TXGA</groundspeak:owner>
+ <groundspeak:type>Traditional Cache</groundspeak:type>
+ <groundspeak:container>Not chosen</groundspeak:container>
+ <groundspeak:attributes>
+ </groundspeak:attributes>
+ <groundspeak:difficulty>1.5</groundspeak:difficulty>
+ <groundspeak:terrain>2</groundspeak:terrain>
+ <groundspeak:country></groundspeak:country>
+ <groundspeak:state></groundspeak:state>
+ <groundspeak:short_description html="False"> </groundspeak:short_description>
+ <groundspeak:long_description html="False"> </groundspeak:long_description>
+ <groundspeak:encoded_hints></groundspeak:encoded_hints>
+ <groundspeak:logs>
+ </groundspeak:logs>
+ <groundspeak:travelbugs>
+ </groundspeak:travelbugs>
+</groundspeak:cache>
+</wpt>
+ <wpt lat="33.3843" lon="-97.0162">
+ <time>2012-03-10T08:00:00Z</time>
+ <name>T014</name>
+ <desc>Triditional Cache 014 by TEXANS (3.5/3)</desc>
+ <url></url>
+ <urlname>Triditional Cache 014 by TEXANS</urlname>
+ <sym>Geocache</sym>
+ <type>Geocache|Traditional Cache</type>
+ <gsak:wptExtension xmlns:gsak="http://www.gsak.net/xmlv1/6">
+ <gsak:UserFlag>false</gsak:UserFlag>
+ <gsak:Lock>false</gsak:Lock>
+ <gsak:DNF>false</gsak:DNF>
+ <gsak:Watch>false</gsak:Watch>
+ <gsak:UserData></gsak:UserData>
+ <gsak:FirstToFind>false</gsak:FirstToFind>
+ <gsak:User2></gsak:User2>
+ <gsak:User3></gsak:User3>
+ <gsak:User4></gsak:User4>
+ <gsak:County></gsak:County>
+ <gsak:UserSort>0</gsak:UserSort>
+ <gsak:SmartName>Tridi014</gsak:SmartName>
+ <gsak:LastGpxDate>2012-03-10</gsak:LastGpxDate>
+ <gsak:Code>T014</gsak:Code>
+ <gsak:Resolution></gsak:Resolution>
+ <gsak:IsPremium>false</gsak:IsPremium>
+ <gsak:FavPoints>0</gsak:FavPoints>
+ <gsak:GcNote></gsak:GcNote>
+ <gsak:Guid></gsak:Guid>
+ <gsak:CacheImages>
+ </gsak:CacheImages>
+ <gsak:LogImages>
+ </gsak:LogImages>
+ <gsak:CustomData>
+Custom_Start:cCode:Custom_Data:T014:Custom_End
+
+ </gsak:CustomData>
+ </gsak:wptExtension>
+ <groundspeak:cache id="20" available="True" archived="False" xmlns:groundspeak="http://www.groundspeak.com/cache/1/0/1">
+ <groundspeak:name>Triditional Cache 014</groundspeak:name>
+ <groundspeak:placed_by>TEXANS</groundspeak:placed_by>
+ <groundspeak:owner id="1">TXGA</groundspeak:owner>
+ <groundspeak:type>Traditional Cache</groundspeak:type>
+ <groundspeak:container>Not chosen</groundspeak:container>
+ <groundspeak:attributes>
+ </groundspeak:attributes>
+ <groundspeak:difficulty>3.5</groundspeak:difficulty>
+ <groundspeak:terrain>3</groundspeak:terrain>
+ <groundspeak:country></groundspeak:country>
+ <groundspeak:state></groundspeak:state>
+ <groundspeak:short_description html="False"> </groundspeak:short_description>
+ <groundspeak:long_description html="False"> </groundspeak:long_description>
+ <groundspeak:encoded_hints></groundspeak:encoded_hints>
+ <groundspeak:logs>
+ </groundspeak:logs>
+ <groundspeak:travelbugs>
+ </groundspeak:travelbugs>
+</groundspeak:cache>
+</wpt>
+ <wpt lat="33.361033" lon="-97.014817">
+ <time>2012-03-10T08:00:00Z</time>
+ <name>T015</name>
+ <desc>Triditional Cache 015 by TEXANS (1.5/1.5)</desc>
+ <url></url>
+ <urlname>Triditional Cache 015 by TEXANS</urlname>
+ <sym>Geocache</sym>
+ <type>Geocache|Traditional Cache</type>
+ <gsak:wptExtension xmlns:gsak="http://www.gsak.net/xmlv1/6">
+ <gsak:UserFlag>false</gsak:UserFlag>
+ <gsak:Lock>false</gsak:Lock>
+ <gsak:DNF>false</gsak:DNF>
+ <gsak:Watch>false</gsak:Watch>
+ <gsak:UserData></gsak:UserData>
+ <gsak:FirstToFind>false</gsak:FirstToFind>
+ <gsak:User2></gsak:User2>
+ <gsak:User3></gsak:User3>
+ <gsak:User4></gsak:User4>
+ <gsak:County></gsak:County>
+ <gsak:UserSort>0</gsak:UserSort>
+ <gsak:SmartName>Tridi015</gsak:SmartName>
+ <gsak:LastGpxDate>2012-03-10</gsak:LastGpxDate>
+ <gsak:Code>T015</gsak:Code>
+ <gsak:Resolution></gsak:Resolution>
+ <gsak:IsPremium>false</gsak:IsPremium>
+ <gsak:FavPoints>0</gsak:FavPoints>
+ <gsak:GcNote></gsak:GcNote>
+ <gsak:Guid></gsak:Guid>
+ <gsak:CacheImages>
+ </gsak:CacheImages>
+ <gsak:LogImages>
+ </gsak:LogImages>
+ <gsak:CustomData>
+Custom_Start:cCode:Custom_Data:T015:Custom_End
+
+ </gsak:CustomData>
+ </gsak:wptExtension>
+ <groundspeak:cache id="21" available="True" archived="False" xmlns:groundspeak="http://www.groundspeak.com/cache/1/0/1">
+ <groundspeak:name>Triditional Cache 015</groundspeak:name>
+ <groundspeak:placed_by>TEXANS</groundspeak:placed_by>
+ <groundspeak:owner id="1">TXGA</groundspeak:owner>
+ <groundspeak:type>Traditional Cache</groundspeak:type>
+ <groundspeak:container>Not chosen</groundspeak:container>
+ <groundspeak:attributes>
+ </groundspeak:attributes>
+ <groundspeak:difficulty>1.5</groundspeak:difficulty>
+ <groundspeak:terrain>1.5</groundspeak:terrain>
+ <groundspeak:country></groundspeak:country>
+ <groundspeak:state></groundspeak:state>
+ <groundspeak:short_description html="False"> </groundspeak:short_description>
+ <groundspeak:long_description html="False"> </groundspeak:long_description>
+ <groundspeak:encoded_hints></groundspeak:encoded_hints>
+ <groundspeak:logs>
+ </groundspeak:logs>
+ <groundspeak:travelbugs>
+ </groundspeak:travelbugs>
+</groundspeak:cache>
+</wpt>
+ <wpt lat="33.378267" lon="-97.009567">
+ <time>2012-03-10T08:00:00Z</time>
+ <name>T017</name>
+ <desc>Triditional Cache 017 by TEXANS (2/2)</desc>
+ <url></url>
+ <urlname>Triditional Cache 017 by TEXANS</urlname>
+ <sym>Geocache</sym>
+ <type>Geocache|Traditional Cache</type>
+ <gsak:wptExtension xmlns:gsak="http://www.gsak.net/xmlv1/6">
+ <gsak:UserFlag>false</gsak:UserFlag>
+ <gsak:Lock>false</gsak:Lock>
+ <gsak:DNF>false</gsak:DNF>
+ <gsak:Watch>false</gsak:Watch>
+ <gsak:UserData></gsak:UserData>
+ <gsak:FirstToFind>false</gsak:FirstToFind>
+ <gsak:User2></gsak:User2>
+ <gsak:User3></gsak:User3>
+ <gsak:User4></gsak:User4>
+ <gsak:County></gsak:County>
+ <gsak:UserSort>0</gsak:UserSort>
+ <gsak:SmartName>Tridi017</gsak:SmartName>
+ <gsak:LastGpxDate>2012-03-10</gsak:LastGpxDate>
+ <gsak:Code>T017</gsak:Code>
+ <gsak:Resolution></gsak:Resolution>
+ <gsak:IsPremium>false</gsak:IsPremium>
+ <gsak:FavPoints>0</gsak:FavPoints>
+ <gsak:GcNote></gsak:GcNote>
+ <gsak:Guid></gsak:Guid>
+ <gsak:CacheImages>
+ </gsak:CacheImages>
+ <gsak:LogImages>
+ </gsak:LogImages>
+ <gsak:CustomData>
+Custom_Start:cCode:Custom_Data:T017:Custom_End
+
+ </gsak:CustomData>
+ </gsak:wptExtension>
+ <groundspeak:cache id="23" available="True" archived="False" xmlns:groundspeak="http://www.groundspeak.com/cache/1/0/1">
+ <groundspeak:name>Triditional Cache 017</groundspeak:name>
+ <groundspeak:placed_by>TEXANS</groundspeak:placed_by>
+ <groundspeak:owner id="1">TXGA</groundspeak:owner>
+ <groundspeak:type>Traditional Cache</groundspeak:type>
+ <groundspeak:container>Not chosen</groundspeak:container>
+ <groundspeak:attributes>
+ </groundspeak:attributes>
+ <groundspeak:difficulty>2</groundspeak:difficulty>
+ <groundspeak:terrain>2</groundspeak:terrain>
+ <groundspeak:country></groundspeak:country>
+ <groundspeak:state></groundspeak:state>
+ <groundspeak:short_description html="False"> </groundspeak:short_description>
+ <groundspeak:long_description html="False"> </groundspeak:long_description>
+ <groundspeak:encoded_hints></groundspeak:encoded_hints>
+ <groundspeak:logs>
+ </groundspeak:logs>
+ <groundspeak:travelbugs>
+ </groundspeak:travelbugs>
+</groundspeak:cache>
+</wpt>
+ <wpt lat="33.382183" lon="-97.01855">
+ <time>2012-03-10T08:00:00Z</time>
+ <name>T018</name>
+ <desc>Triditional Cache 018 by TEXANS (2/2)</desc>
+ <url></url>
+ <urlname>Triditional Cache 018 by TEXANS</urlname>
+ <sym>Geocache</sym>
+ <type>Geocache|Traditional Cache</type>
+ <gsak:wptExtension xmlns:gsak="http://www.gsak.net/xmlv1/6">
+ <gsak:UserFlag>false</gsak:UserFlag>
+ <gsak:Lock>false</gsak:Lock>
+ <gsak:DNF>false</gsak:DNF>
+ <gsak:Watch>false</gsak:Watch>
+ <gsak:UserData></gsak:UserData>
+ <gsak:FirstToFind>false</gsak:FirstToFind>
+ <gsak:User2></gsak:User2>
+ <gsak:User3></gsak:User3>
+ <gsak:User4></gsak:User4>
+ <gsak:County></gsak:County>
+ <gsak:UserSort>0</gsak:UserSort>
+ <gsak:SmartName>Tridi018</gsak:SmartName>
+ <gsak:LastGpxDate>2012-03-10</gsak:LastGpxDate>
+ <gsak:Code>T018</gsak:Code>
+ <gsak:Resolution></gsak:Resolution>
+ <gsak:IsPremium>false</gsak:IsPremium>
+ <gsak:FavPoints>0</gsak:FavPoints>
+ <gsak:GcNote></gsak:GcNote>
+ <gsak:Guid></gsak:Guid>
+ <gsak:CacheImages>
+ </gsak:CacheImages>
+ <gsak:LogImages>
+ </gsak:LogImages>
+ <gsak:CustomData>
+Custom_Start:cCode:Custom_Data:T018:Custom_End
+
+ </gsak:CustomData>
+ </gsak:wptExtension>
+ <groundspeak:cache id="24" available="True" archived="False" xmlns:groundspeak="http://www.groundspeak.com/cache/1/0/1">
+ <groundspeak:name>Triditional Cache 018</groundspeak:name>
+ <groundspeak:placed_by>TEXANS</groundspeak:placed_by>
+ <groundspeak:owner id="1">TXGA</groundspeak:owner>
+ <groundspeak:type>Traditional Cache</groundspeak:type>
+ <groundspeak:container>Not chosen</groundspeak:container>
+ <groundspeak:attributes>
+ </groundspeak:attributes>
+ <groundspeak:difficulty>2</groundspeak:difficulty>
+ <groundspeak:terrain>2</groundspeak:terrain>
+ <groundspeak:country></groundspeak:country>
+ <groundspeak:state></groundspeak:state>
+ <groundspeak:short_description html="False"> </groundspeak:short_description>
+ <groundspeak:long_description html="False"> </groundspeak:long_description>
+ <groundspeak:encoded_hints></groundspeak:encoded_hints>
+ <groundspeak:logs>
+ </groundspeak:logs>
+ <groundspeak:travelbugs>
+ </groundspeak:travelbugs>
+</groundspeak:cache>
+</wpt>
+ <wpt lat="33.36335" lon="-97.02055">
+ <time>2012-03-10T08:00:00Z</time>
+ <name>T019</name>
+ <desc>Triditional Cache 019 by TEXANS (3/4)</desc>
+ <url></url>
+ <urlname>Triditional Cache 019 by TEXANS</urlname>
+ <sym>Geocache</sym>
+ <type>Geocache|Traditional Cache</type>
+ <gsak:wptExtension xmlns:gsak="http://www.gsak.net/xmlv1/6">
+ <gsak:UserFlag>false</gsak:UserFlag>
+ <gsak:Lock>false</gsak:Lock>
+ <gsak:DNF>false</gsak:DNF>
+ <gsak:Watch>false</gsak:Watch>
+ <gsak:UserData></gsak:UserData>
+ <gsak:FirstToFind>false</gsak:FirstToFind>
+ <gsak:User2></gsak:User2>
+ <gsak:User3></gsak:User3>
+ <gsak:User4></gsak:User4>
+ <gsak:County></gsak:County>
+ <gsak:UserSort>0</gsak:UserSort>
+ <gsak:SmartName>Tridi019</gsak:SmartName>
+ <gsak:LastGpxDate>2012-03-10</gsak:LastGpxDate>
+ <gsak:Code>T019</gsak:Code>
+ <gsak:Resolution></gsak:Resolution>
+ <gsak:IsPremium>false</gsak:IsPremium>
+ <gsak:FavPoints>0</gsak:FavPoints>
+ <gsak:GcNote></gsak:GcNote>
+ <gsak:Guid></gsak:Guid>
+ <gsak:CacheImages>
+ </gsak:CacheImages>
+ <gsak:LogImages>
+ </gsak:LogImages>
+ <gsak:CustomData>
+Custom_Start:cCode:Custom_Data:T019:Custom_End
+
+ </gsak:CustomData>
+ </gsak:wptExtension>
+ <groundspeak:cache id="25" available="True" archived="False" xmlns:groundspeak="http://www.groundspeak.com/cache/1/0/1">
+ <groundspeak:name>Triditional Cache 019</groundspeak:name>
+ <groundspeak:placed_by>TEXANS</groundspeak:placed_by>
+ <groundspeak:owner id="1">TXGA</groundspeak:owner>
+ <groundspeak:type>Traditional Cache</groundspeak:type>
+ <groundspeak:container>Not chosen</groundspeak:container>
+ <groundspeak:attributes>
+ </groundspeak:attributes>
+ <groundspeak:difficulty>3</groundspeak:difficulty>
+ <groundspeak:terrain>4</groundspeak:terrain>
+ <groundspeak:country></groundspeak:country>
+ <groundspeak:state></groundspeak:state>
+ <groundspeak:short_description html="False"> </groundspeak:short_description>
+ <groundspeak:long_description html="False"> </groundspeak:long_description>
+ <groundspeak:encoded_hints></groundspeak:encoded_hints>
+ <groundspeak:logs>
+ </groundspeak:logs>
+ <groundspeak:travelbugs>
+ </groundspeak:travelbugs>
+</groundspeak:cache>
+</wpt>
+ <wpt lat="33.365167" lon="-97.016883">
+ <time>2012-03-10T08:00:00Z</time>
+ <name>T021</name>
+ <desc>Triditional Cache 021 by TEXANS (3/4)</desc>
+ <url></url>
+ <urlname>Triditional Cache 021 by TEXANS</urlname>
+ <sym>Geocache</sym>
+ <type>Geocache|Traditional Cache</type>
+ <gsak:wptExtension xmlns:gsak="http://www.gsak.net/xmlv1/6">
+ <gsak:UserFlag>false</gsak:UserFlag>
+ <gsak:Lock>false</gsak:Lock>
+ <gsak:DNF>false</gsak:DNF>
+ <gsak:Watch>false</gsak:Watch>
+ <gsak:UserData></gsak:UserData>
+ <gsak:FirstToFind>false</gsak:FirstToFind>
+ <gsak:User2></gsak:User2>
+ <gsak:User3></gsak:User3>
+ <gsak:User4></gsak:User4>
+ <gsak:County></gsak:County>
+ <gsak:UserSort>0</gsak:UserSort>
+ <gsak:SmartName>Tridi021</gsak:SmartName>
+ <gsak:LastGpxDate>2012-03-10</gsak:LastGpxDate>
+ <gsak:Code>T021</gsak:Code>
+ <gsak:Resolution></gsak:Resolution>
+ <gsak:IsPremium>false</gsak:IsPremium>
+ <gsak:FavPoints>0</gsak:FavPoints>
+ <gsak:GcNote></gsak:GcNote>
+ <gsak:Guid></gsak:Guid>
+ <gsak:CacheImages>
+ </gsak:CacheImages>
+ <gsak:LogImages>
+ </gsak:LogImages>
+ <gsak:CustomData>
+Custom_Start:cCode:Custom_Data:T021:Custom_End
+
+ </gsak:CustomData>
+ </gsak:wptExtension>
+ <groundspeak:cache id="33" available="True" archived="False" xmlns:groundspeak="http://www.groundspeak.com/cache/1/0/1">
+ <groundspeak:name>Triditional Cache 021</groundspeak:name>
+ <groundspeak:placed_by>TEXANS</groundspeak:placed_by>
+ <groundspeak:owner id="1">TXGA</groundspeak:owner>
+ <groundspeak:type>Traditional Cache</groundspeak:type>
+ <groundspeak:container>Not chosen</groundspeak:container>
+ <groundspeak:attributes>
+ </groundspeak:attributes>
+ <groundspeak:difficulty>3</groundspeak:difficulty>
+ <groundspeak:terrain>4</groundspeak:terrain>
+ <groundspeak:country></groundspeak:country>
+ <groundspeak:state></groundspeak:state>
+ <groundspeak:short_description html="False"> </groundspeak:short_description>
+ <groundspeak:long_description html="False"> </groundspeak:long_description>
+ <groundspeak:encoded_hints></groundspeak:encoded_hints>
+ <groundspeak:logs>
+ </groundspeak:logs>
+ <groundspeak:travelbugs>
+ </groundspeak:travelbugs>
+</groundspeak:cache>
+</wpt>
+ <wpt lat="33.371617" lon="-97.006333">
+ <time>2012-03-10T08:00:00Z</time>
+ <name>T022</name>
+ <desc>Triditional Cache 022 by TEXANS (2.5/4)</desc>
+ <url></url>
+ <urlname>Triditional Cache 022 by TEXANS</urlname>
+ <sym>Geocache</sym>
+ <type>Geocache|Traditional Cache</type>
+ <gsak:wptExtension xmlns:gsak="http://www.gsak.net/xmlv1/6">
+ <gsak:UserFlag>false</gsak:UserFlag>
+ <gsak:Lock>false</gsak:Lock>
+ <gsak:DNF>false</gsak:DNF>
+ <gsak:Watch>false</gsak:Watch>
+ <gsak:UserData></gsak:UserData>
+ <gsak:FirstToFind>false</gsak:FirstToFind>
+ <gsak:User2></gsak:User2>
+ <gsak:User3></gsak:User3>
+ <gsak:User4></gsak:User4>
+ <gsak:County></gsak:County>
+ <gsak:UserSort>0</gsak:UserSort>
+ <gsak:SmartName>Tridi022</gsak:SmartName>
+ <gsak:LastGpxDate>2012-03-10</gsak:LastGpxDate>
+ <gsak:Code>T022</gsak:Code>
+ <gsak:Resolution></gsak:Resolution>
+ <gsak:IsPremium>false</gsak:IsPremium>
+ <gsak:FavPoints>0</gsak:FavPoints>
+ <gsak:GcNote></gsak:GcNote>
+ <gsak:Guid></gsak:Guid>
+ <gsak:CacheImages>
+ </gsak:CacheImages>
+ <gsak:LogImages>
+ </gsak:LogImages>
+ <gsak:CustomData>
+Custom_Start:cCode:Custom_Data:T022:Custom_End
+
+ </gsak:CustomData>
+ </gsak:wptExtension>
+ <groundspeak:cache id="34" available="True" archived="False" xmlns:groundspeak="http://www.groundspeak.com/cache/1/0/1">
+ <groundspeak:name>Triditional Cache 022</groundspeak:name>
+ <groundspeak:placed_by>TEXANS</groundspeak:placed_by>
+ <groundspeak:owner id="1">TXGA</groundspeak:owner>
+ <groundspeak:type>Traditional Cache</groundspeak:type>
+ <groundspeak:container>Not chosen</groundspeak:container>
+ <groundspeak:attributes>
+ </groundspeak:attributes>
+ <groundspeak:difficulty>2.5</groundspeak:difficulty>
+ <groundspeak:terrain>4</groundspeak:terrain>
+ <groundspeak:country></groundspeak:country>
+ <groundspeak:state></groundspeak:state>
+ <groundspeak:short_description html="False"> </groundspeak:short_description>
+ <groundspeak:long_description html="False"> </groundspeak:long_description>
+ <groundspeak:encoded_hints></groundspeak:encoded_hints>
+ <groundspeak:logs>
+ </groundspeak:logs>
+ <groundspeak:travelbugs>
+ </groundspeak:travelbugs>
+</groundspeak:cache>
+</wpt>
+ <wpt lat="33.399867" lon="-97.002983">
+ <time>2012-03-10T08:00:00Z</time>
+ <name>T023</name>
+ <desc>Triditional Cache 023 by TEXANS (2/2.5)</desc>
+ <url></url>
+ <urlname>Triditional Cache 023 by TEXANS</urlname>
+ <sym>Geocache</sym>
+ <type>Geocache|Traditional Cache</type>
+ <gsak:wptExtension xmlns:gsak="http://www.gsak.net/xmlv1/6">
+ <gsak:UserFlag>false</gsak:UserFlag>
+ <gsak:Lock>false</gsak:Lock>
+ <gsak:DNF>false</gsak:DNF>
+ <gsak:Watch>false</gsak:Watch>
+ <gsak:UserData></gsak:UserData>
+ <gsak:FirstToFind>false</gsak:FirstToFind>
+ <gsak:User2></gsak:User2>
+ <gsak:User3></gsak:User3>
+ <gsak:User4></gsak:User4>
+ <gsak:County></gsak:County>
+ <gsak:UserSort>0</gsak:UserSort>
+ <gsak:SmartName>Tridi023</gsak:SmartName>
+ <gsak:LastGpxDate>2012-03-10</gsak:LastGpxDate>
+ <gsak:Code>T023</gsak:Code>
+ <gsak:Resolution></gsak:Resolution>
+ <gsak:IsPremium>false</gsak:IsPremium>
+ <gsak:FavPoints>0</gsak:FavPoints>
+ <gsak:GcNote></gsak:GcNote>
+ <gsak:Guid></gsak:Guid>
+ <gsak:CacheImages>
+ </gsak:CacheImages>
+ <gsak:LogImages>
+ </gsak:LogImages>
+ <gsak:CustomData>
+Custom_Start:cCode:Custom_Data:T023:Custom_End
+
+ </gsak:CustomData>
+ </gsak:wptExtension>
+ <groundspeak:cache id="35" available="True" archived="False" xmlns:groundspeak="http://www.groundspeak.com/cache/1/0/1">
+ <groundspeak:name>Triditional Cache 023</groundspeak:name>
+ <groundspeak:placed_by>TEXANS</groundspeak:placed_by>
+ <groundspeak:owner id="1">TXGA</groundspeak:owner>
+ <groundspeak:type>Traditional Cache</groundspeak:type>
+ <groundspeak:container>Not chosen</groundspeak:container>
+ <groundspeak:attributes>
+ </groundspeak:attributes>
+ <groundspeak:difficulty>2</groundspeak:difficulty>
+ <groundspeak:terrain>2.5</groundspeak:terrain>
+ <groundspeak:country></groundspeak:country>
+ <groundspeak:state></groundspeak:state>
+ <groundspeak:short_description html="False"> </groundspeak:short_description>
+ <groundspeak:long_description html="False"> </groundspeak:long_description>
+ <groundspeak:encoded_hints></groundspeak:encoded_hints>
+ <groundspeak:logs>
+ </groundspeak:logs>
+ <groundspeak:travelbugs>
+ </groundspeak:travelbugs>
+</groundspeak:cache>
+</wpt>
+ <wpt lat="33.385983" lon="-96.9989">
+ <time>2012-03-10T08:00:00Z</time>
+ <name>T024</name>
+ <desc>Triditional Cache 024 by TEXANS (4/4)</desc>
+ <url></url>
+ <urlname>Triditional Cache 024 by TEXANS</urlname>
+ <sym>Geocache</sym>
+ <type>Geocache|Traditional Cache</type>
+ <gsak:wptExtension xmlns:gsak="http://www.gsak.net/xmlv1/6">
+ <gsak:UserFlag>false</gsak:UserFlag>
+ <gsak:Lock>false</gsak:Lock>
+ <gsak:DNF>false</gsak:DNF>
+ <gsak:Watch>false</gsak:Watch>
+ <gsak:UserData></gsak:UserData>
+ <gsak:FirstToFind>false</gsak:FirstToFind>
+ <gsak:User2></gsak:User2>
+ <gsak:User3></gsak:User3>
+ <gsak:User4></gsak:User4>
+ <gsak:County></gsak:County>
+ <gsak:UserSort>0</gsak:UserSort>
+ <gsak:SmartName>Tridi024</gsak:SmartName>
+ <gsak:LastGpxDate>2012-03-10</gsak:LastGpxDate>
+ <gsak:Code>T024</gsak:Code>
+ <gsak:Resolution></gsak:Resolution>
+ <gsak:IsPremium>false</gsak:IsPremium>
+ <gsak:FavPoints>0</gsak:FavPoints>
+ <gsak:GcNote></gsak:GcNote>
+ <gsak:Guid></gsak:Guid>
+ <gsak:CacheImages>
+ </gsak:CacheImages>
+ <gsak:LogImages>
+ </gsak:LogImages>
+ <gsak:CustomData>
+Custom_Start:cCode:Custom_Data:T024:Custom_End
+
+ </gsak:CustomData>
+ </gsak:wptExtension>
+ <groundspeak:cache id="36" available="True" archived="False" xmlns:groundspeak="http://www.groundspeak.com/cache/1/0/1">
+ <groundspeak:name>Triditional Cache 024</groundspeak:name>
+ <groundspeak:placed_by>TEXANS</groundspeak:placed_by>
+ <groundspeak:owner id="1">TXGA</groundspeak:owner>
+ <groundspeak:type>Traditional Cache</groundspeak:type>
+ <groundspeak:container>Not chosen</groundspeak:container>
+ <groundspeak:attributes>
+ </groundspeak:attributes>
+ <groundspeak:difficulty>4</groundspeak:difficulty>
+ <groundspeak:terrain>4</groundspeak:terrain>
+ <groundspeak:country></groundspeak:country>
+ <groundspeak:state></groundspeak:state>
+ <groundspeak:short_description html="False"> </groundspeak:short_description>
+ <groundspeak:long_description html="False"> </groundspeak:long_description>
+ <groundspeak:encoded_hints></groundspeak:encoded_hints>
+ <groundspeak:logs>
+ </groundspeak:logs>
+ <groundspeak:travelbugs>
+ </groundspeak:travelbugs>
+</groundspeak:cache>
+</wpt>
+ <wpt lat="33.370683" lon="-97.010017">
+ <time>2012-03-10T08:00:00Z</time>
+ <name>T025</name>
+ <desc>Triditional Cache 025 by TEXANS (2/4)</desc>
+ <url></url>
+ <urlname>Triditional Cache 025 by TEXANS</urlname>
+ <sym>Geocache</sym>
+ <type>Geocache|Traditional Cache</type>
+ <gsak:wptExtension xmlns:gsak="http://www.gsak.net/xmlv1/6">
+ <gsak:UserFlag>false</gsak:UserFlag>
+ <gsak:Lock>false</gsak:Lock>
+ <gsak:DNF>false</gsak:DNF>
+ <gsak:Watch>false</gsak:Watch>
+ <gsak:UserData></gsak:UserData>
+ <gsak:FirstToFind>false</gsak:FirstToFind>
+ <gsak:User2></gsak:User2>
+ <gsak:User3></gsak:User3>
+ <gsak:User4></gsak:User4>
+ <gsak:County></gsak:County>
+ <gsak:UserSort>0</gsak:UserSort>
+ <gsak:SmartName>Tridi025</gsak:SmartName>
+ <gsak:LastGpxDate>2012-03-10</gsak:LastGpxDate>
+ <gsak:Code>T025</gsak:Code>
+ <gsak:Resolution></gsak:Resolution>
+ <gsak:IsPremium>false</gsak:IsPremium>
+ <gsak:FavPoints>0</gsak:FavPoints>
+ <gsak:GcNote></gsak:GcNote>
+ <gsak:Guid></gsak:Guid>
+ <gsak:CacheImages>
+ </gsak:CacheImages>
+ <gsak:LogImages>
+ </gsak:LogImages>
+ <gsak:CustomData>
+Custom_Start:cCode:Custom_Data:T025:Custom_End
+
+ </gsak:CustomData>
+ </gsak:wptExtension>
+ <groundspeak:cache id="37" available="True" archived="False" xmlns:groundspeak="http://www.groundspeak.com/cache/1/0/1">
+ <groundspeak:name>Triditional Cache 025</groundspeak:name>
+ <groundspeak:placed_by>TEXANS</groundspeak:placed_by>
+ <groundspeak:owner id="1">TXGA</groundspeak:owner>
+ <groundspeak:type>Traditional Cache</groundspeak:type>
+ <groundspeak:container>Not chosen</groundspeak:container>
+ <groundspeak:attributes>
+ </groundspeak:attributes>
+ <groundspeak:difficulty>2</groundspeak:difficulty>
+ <groundspeak:terrain>4</groundspeak:terrain>
+ <groundspeak:country></groundspeak:country>
+ <groundspeak:state></groundspeak:state>
+ <groundspeak:short_description html="False"> </groundspeak:short_description>
+ <groundspeak:long_description html="False"> </groundspeak:long_description>
+ <groundspeak:encoded_hints></groundspeak:encoded_hints>
+ <groundspeak:logs>
+ </groundspeak:logs>
+ <groundspeak:travelbugs>
+ </groundspeak:travelbugs>
+</groundspeak:cache>
+</wpt>
+ <wpt lat="33.3638" lon="-97.01595">
+ <time>2012-03-10T08:00:00Z</time>
+ <name>T026</name>
+ <desc>Triditional Cache 026 by TEXANS (4/4)</desc>
+ <url></url>
+ <urlname>Triditional Cache 026 by TEXANS</urlname>
+ <sym>Geocache</sym>
+ <type>Geocache|Traditional Cache</type>
+ <gsak:wptExtension xmlns:gsak="http://www.gsak.net/xmlv1/6">
+ <gsak:UserFlag>false</gsak:UserFlag>
+ <gsak:Lock>false</gsak:Lock>
+ <gsak:DNF>false</gsak:DNF>
+ <gsak:Watch>false</gsak:Watch>
+ <gsak:UserData></gsak:UserData>
+ <gsak:FirstToFind>false</gsak:FirstToFind>
+ <gsak:User2></gsak:User2>
+ <gsak:User3></gsak:User3>
+ <gsak:User4></gsak:User4>
+ <gsak:County></gsak:County>
+ <gsak:UserSort>0</gsak:UserSort>
+ <gsak:SmartName>Tridi026</gsak:SmartName>
+ <gsak:LastGpxDate>2012-03-10</gsak:LastGpxDate>
+ <gsak:Code>T026</gsak:Code>
+ <gsak:Resolution></gsak:Resolution>
+ <gsak:IsPremium>false</gsak:IsPremium>
+ <gsak:FavPoints>0</gsak:FavPoints>
+ <gsak:GcNote></gsak:GcNote>
+ <gsak:Guid></gsak:Guid>
+ <gsak:CacheImages>
+ </gsak:CacheImages>
+ <gsak:LogImages>
+ </gsak:LogImages>
+ <gsak:CustomData>
+Custom_Start:cCode:Custom_Data:T026:Custom_End
+
+ </gsak:CustomData>
+ </gsak:wptExtension>
+ <groundspeak:cache id="38" available="True" archived="False" xmlns:groundspeak="http://www.groundspeak.com/cache/1/0/1">
+ <groundspeak:name>Triditional Cache 026</groundspeak:name>
+ <groundspeak:placed_by>TEXANS</groundspeak:placed_by>
+ <groundspeak:owner id="1">TXGA</groundspeak:owner>
+ <groundspeak:type>Traditional Cache</groundspeak:type>
+ <groundspeak:container>Not chosen</groundspeak:container>
+ <groundspeak:attributes>
+ </groundspeak:attributes>
+ <groundspeak:difficulty>4</groundspeak:difficulty>
+ <groundspeak:terrain>4</groundspeak:terrain>
+ <groundspeak:country></groundspeak:country>
+ <groundspeak:state></groundspeak:state>
+ <groundspeak:short_description html="False"> </groundspeak:short_description>
+ <groundspeak:long_description html="False"> </groundspeak:long_description>
+ <groundspeak:encoded_hints></groundspeak:encoded_hints>
+ <groundspeak:logs>
+ </groundspeak:logs>
+ <groundspeak:travelbugs>
+ </groundspeak:travelbugs>
+</groundspeak:cache>
+</wpt>
+ <wpt lat="33.362333" lon="-97.011533">
+ <time>2012-03-10T08:00:00Z</time>
+ <name>T027</name>
+ <desc>Triditional Cache 027 by TEXANS (3/4)</desc>
+ <url></url>
+ <urlname>Triditional Cache 027 by TEXANS</urlname>
+ <sym>Geocache</sym>
+ <type>Geocache|Traditional Cache</type>
+ <gsak:wptExtension xmlns:gsak="http://www.gsak.net/xmlv1/6">
+ <gsak:UserFlag>false</gsak:UserFlag>
+ <gsak:Lock>false</gsak:Lock>
+ <gsak:DNF>false</gsak:DNF>
+ <gsak:Watch>false</gsak:Watch>
+ <gsak:UserData></gsak:UserData>
+ <gsak:FirstToFind>false</gsak:FirstToFind>
+ <gsak:User2></gsak:User2>
+ <gsak:User3></gsak:User3>
+ <gsak:User4></gsak:User4>
+ <gsak:County></gsak:County>
+ <gsak:UserSort>0</gsak:UserSort>
+ <gsak:SmartName>Tridi027</gsak:SmartName>
+ <gsak:LastGpxDate>2012-03-10</gsak:LastGpxDate>
+ <gsak:Code>T027</gsak:Code>
+ <gsak:Resolution></gsak:Resolution>
+ <gsak:IsPremium>false</gsak:IsPremium>
+ <gsak:FavPoints>0</gsak:FavPoints>
+ <gsak:GcNote></gsak:GcNote>
+ <gsak:Guid></gsak:Guid>
+ <gsak:CacheImages>
+ </gsak:CacheImages>
+ <gsak:LogImages>
+ </gsak:LogImages>
+ <gsak:CustomData>
+Custom_Start:cCode:Custom_Data:T027:Custom_End
+
+ </gsak:CustomData>
+ </gsak:wptExtension>
+ <groundspeak:cache id="39" available="True" archived="False" xmlns:groundspeak="http://www.groundspeak.com/cache/1/0/1">
+ <groundspeak:name>Triditional Cache 027</groundspeak:name>
+ <groundspeak:placed_by>TEXANS</groundspeak:placed_by>
+ <groundspeak:owner id="1">TXGA</groundspeak:owner>
+ <groundspeak:type>Traditional Cache</groundspeak:type>
+ <groundspeak:container>Not chosen</groundspeak:container>
+ <groundspeak:attributes>
+ </groundspeak:attributes>
+ <groundspeak:difficulty>3</groundspeak:difficulty>
+ <groundspeak:terrain>4</groundspeak:terrain>
+ <groundspeak:country></groundspeak:country>
+ <groundspeak:state></groundspeak:state>
+ <groundspeak:short_description html="False"> </groundspeak:short_description>
+ <groundspeak:long_description html="False"> </groundspeak:long_description>
+ <groundspeak:encoded_hints></groundspeak:encoded_hints>
+ <groundspeak:logs>
+ </groundspeak:logs>
+ <groundspeak:travelbugs>
+ </groundspeak:travelbugs>
+</groundspeak:cache>
+</wpt>
+ <wpt lat="33.39165" lon="-97.0203">
+ <time>2012-03-10T08:00:00Z</time>
+ <name>T028</name>
+ <desc>Triditional Cache 028 by TEXANS (3/3)</desc>
+ <url></url>
+ <urlname>Triditional Cache 028 by TEXANS</urlname>
+ <sym>Geocache</sym>
+ <type>Geocache|Traditional Cache</type>
+ <gsak:wptExtension xmlns:gsak="http://www.gsak.net/xmlv1/6">
+ <gsak:UserFlag>false</gsak:UserFlag>
+ <gsak:Lock>false</gsak:Lock>
+ <gsak:DNF>false</gsak:DNF>
+ <gsak:Watch>false</gsak:Watch>
+ <gsak:UserData></gsak:UserData>
+ <gsak:FirstToFind>false</gsak:FirstToFind>
+ <gsak:User2></gsak:User2>
+ <gsak:User3></gsak:User3>
+ <gsak:User4></gsak:User4>
+ <gsak:County></gsak:County>
+ <gsak:UserSort>0</gsak:UserSort>
+ <gsak:SmartName>Tridi028</gsak:SmartName>
+ <gsak:LastGpxDate>2012-03-10</gsak:LastGpxDate>
+ <gsak:Code>T028</gsak:Code>
+ <gsak:Resolution></gsak:Resolution>
+ <gsak:IsPremium>false</gsak:IsPremium>
+ <gsak:FavPoints>0</gsak:FavPoints>
+ <gsak:GcNote></gsak:GcNote>
+ <gsak:Guid></gsak:Guid>
+ <gsak:CacheImages>
+ </gsak:CacheImages>
+ <gsak:LogImages>
+ </gsak:LogImages>
+ <gsak:CustomData>
+Custom_Start:cCode:Custom_Data:T028:Custom_End
+
+ </gsak:CustomData>
+ </gsak:wptExtension>
+ <groundspeak:cache id="40" available="True" archived="False" xmlns:groundspeak="http://www.groundspeak.com/cache/1/0/1">
+ <groundspeak:name>Triditional Cache 028</groundspeak:name>
+ <groundspeak:placed_by>TEXANS</groundspeak:placed_by>
+ <groundspeak:owner id="1">TXGA</groundspeak:owner>
+ <groundspeak:type>Traditional Cache</groundspeak:type>
+ <groundspeak:container>Not chosen</groundspeak:container>
+ <groundspeak:attributes>
+ </groundspeak:attributes>
+ <groundspeak:difficulty>3</groundspeak:difficulty>
+ <groundspeak:terrain>3</groundspeak:terrain>
+ <groundspeak:country></groundspeak:country>
+ <groundspeak:state></groundspeak:state>
+ <groundspeak:short_description html="False"> </groundspeak:short_description>
+ <groundspeak:long_description html="False"> </groundspeak:long_description>
+ <groundspeak:encoded_hints></groundspeak:encoded_hints>
+ <groundspeak:logs>
+ </groundspeak:logs>
+ <groundspeak:travelbugs>
+ </groundspeak:travelbugs>
+</groundspeak:cache>
+</wpt>
+ <wpt lat="33.391117" lon="-97.001067">
+ <time>2012-03-10T08:00:00Z</time>
+ <name>T029</name>
+ <desc>Triditional Cache 029 by TEXANS (5/5)</desc>
+ <url></url>
+ <urlname>Triditional Cache 029 by TEXANS</urlname>
+ <sym>Geocache</sym>
+ <type>Geocache|Traditional Cache</type>
+ <gsak:wptExtension xmlns:gsak="http://www.gsak.net/xmlv1/6">
+ <gsak:UserFlag>false</gsak:UserFlag>
+ <gsak:Lock>false</gsak:Lock>
+ <gsak:DNF>false</gsak:DNF>
+ <gsak:Watch>false</gsak:Watch>
+ <gsak:UserData></gsak:UserData>
+ <gsak:FirstToFind>false</gsak:FirstToFind>
+ <gsak:User2></gsak:User2>
+ <gsak:User3></gsak:User3>
+ <gsak:User4></gsak:User4>
+ <gsak:County></gsak:County>
+ <gsak:UserSort>0</gsak:UserSort>
+ <gsak:SmartName>Tridi029</gsak:SmartName>
+ <gsak:LastGpxDate>2012-03-10</gsak:LastGpxDate>
+ <gsak:Code>T029</gsak:Code>
+ <gsak:Resolution></gsak:Resolution>
+ <gsak:IsPremium>false</gsak:IsPremium>
+ <gsak:FavPoints>0</gsak:FavPoints>
+ <gsak:GcNote></gsak:GcNote>
+ <gsak:Guid></gsak:Guid>
+ <gsak:CacheImages>
+ </gsak:CacheImages>
+ <gsak:LogImages>
+ </gsak:LogImages>
+ <gsak:CustomData>
+Custom_Start:cCode:Custom_Data:T029:Custom_End
+
+ </gsak:CustomData>
+ </gsak:wptExtension>
+ <groundspeak:cache id="41" available="True" archived="False" xmlns:groundspeak="http://www.groundspeak.com/cache/1/0/1">
+ <groundspeak:name>Triditional Cache 029</groundspeak:name>
+ <groundspeak:placed_by>TEXANS</groundspeak:placed_by>
+ <groundspeak:owner id="1">TXGA</groundspeak:owner>
+ <groundspeak:type>Traditional Cache</groundspeak:type>
+ <groundspeak:container>Not chosen</groundspeak:container>
+ <groundspeak:attributes>
+ </groundspeak:attributes>
+ <groundspeak:difficulty>5</groundspeak:difficulty>
+ <groundspeak:terrain>5</groundspeak:terrain>
+ <groundspeak:country></groundspeak:country>
+ <groundspeak:state></groundspeak:state>
+ <groundspeak:short_description html="False"> </groundspeak:short_description>
+ <groundspeak:long_description html="False"> </groundspeak:long_description>
+ <groundspeak:encoded_hints></groundspeak:encoded_hints>
+ <groundspeak:logs>
+ </groundspeak:logs>
+ <groundspeak:travelbugs>
+ </groundspeak:travelbugs>
+</groundspeak:cache>
+</wpt>
+ <wpt lat="33.384883" lon="-97.00355">
+ <time>2012-03-10T08:00:00Z</time>
+ <name>T030</name>
+ <desc>Triditional Cache 030 by TEXANS (3/3)</desc>
+ <url></url>
+ <urlname>Triditional Cache 030 by TEXANS</urlname>
+ <sym>Geocache</sym>
+ <type>Geocache|Traditional Cache</type>
+ <gsak:wptExtension xmlns:gsak="http://www.gsak.net/xmlv1/6">
+ <gsak:UserFlag>false</gsak:UserFlag>
+ <gsak:Lock>false</gsak:Lock>
+ <gsak:DNF>false</gsak:DNF>
+ <gsak:Watch>false</gsak:Watch>
+ <gsak:UserData></gsak:UserData>
+ <gsak:FirstToFind>false</gsak:FirstToFind>
+ <gsak:User2></gsak:User2>
+ <gsak:User3></gsak:User3>
+ <gsak:User4></gsak:User4>
+ <gsak:County></gsak:County>
+ <gsak:UserSort>0</gsak:UserSort>
+ <gsak:SmartName>Tridi030</gsak:SmartName>
+ <gsak:LastGpxDate>2012-03-10</gsak:LastGpxDate>
+ <gsak:Code>T030</gsak:Code>
+ <gsak:Resolution></gsak:Resolution>
+ <gsak:IsPremium>false</gsak:IsPremium>
+ <gsak:FavPoints>0</gsak:FavPoints>
+ <gsak:GcNote></gsak:GcNote>
+ <gsak:Guid></gsak:Guid>
+ <gsak:CacheImages>
+ </gsak:CacheImages>
+ <gsak:LogImages>
+ </gsak:LogImages>
+ <gsak:CustomData>
+Custom_Start:cCode:Custom_Data:T030:Custom_End
+
+ </gsak:CustomData>
+ </gsak:wptExtension>
+ <groundspeak:cache id="48" available="True" archived="False" xmlns:groundspeak="http://www.groundspeak.com/cache/1/0/1">
+ <groundspeak:name>Triditional Cache 030</groundspeak:name>
+ <groundspeak:placed_by>TEXANS</groundspeak:placed_by>
+ <groundspeak:owner id="1">TXGA</groundspeak:owner>
+ <groundspeak:type>Traditional Cache</groundspeak:type>
+ <groundspeak:container>Not chosen</groundspeak:container>
+ <groundspeak:attributes>
+ </groundspeak:attributes>
+ <groundspeak:difficulty>3</groundspeak:difficulty>
+ <groundspeak:terrain>3</groundspeak:terrain>
+ <groundspeak:country></groundspeak:country>
+ <groundspeak:state></groundspeak:state>
+ <groundspeak:short_description html="False"> </groundspeak:short_description>
+ <groundspeak:long_description html="False"> </groundspeak:long_description>
+ <groundspeak:encoded_hints></groundspeak:encoded_hints>
+ <groundspeak:logs>
+ </groundspeak:logs>
+ <groundspeak:travelbugs>
+ </groundspeak:travelbugs>
+</groundspeak:cache>
+</wpt>
+ <wpt lat="33.369517" lon="-97.022367">
+ <time>2012-03-10T08:00:00Z</time>
+ <name>T032</name>
+ <desc>Triditional Cache 032 by TEXANS (3/5)</desc>
+ <url></url>
+ <urlname>Triditional Cache 032 by TEXANS</urlname>
+ <sym>Geocache</sym>
+ <type>Geocache|Traditional Cache</type>
+ <gsak:wptExtension xmlns:gsak="http://www.gsak.net/xmlv1/6">
+ <gsak:UserFlag>false</gsak:UserFlag>
+ <gsak:Lock>false</gsak:Lock>
+ <gsak:DNF>false</gsak:DNF>
+ <gsak:Watch>false</gsak:Watch>
+ <gsak:UserData></gsak:UserData>
+ <gsak:FirstToFind>false</gsak:FirstToFind>
+ <gsak:User2></gsak:User2>
+ <gsak:User3></gsak:User3>
+ <gsak:User4></gsak:User4>
+ <gsak:County></gsak:County>
+ <gsak:UserSort>0</gsak:UserSort>
+ <gsak:SmartName>Tridi032</gsak:SmartName>
+ <gsak:LastGpxDate>2012-03-10</gsak:LastGpxDate>
+ <gsak:Code>T032</gsak:Code>
+ <gsak:Resolution></gsak:Resolution>
+ <gsak:IsPremium>false</gsak:IsPremium>
+ <gsak:FavPoints>0</gsak:FavPoints>
+ <gsak:GcNote></gsak:GcNote>
+ <gsak:Guid></gsak:Guid>
+ <gsak:CacheImages>
+ </gsak:CacheImages>
+ <gsak:LogImages>
+ </gsak:LogImages>
+ <gsak:CustomData>
+Custom_Start:cCode:Custom_Data:T032:Custom_End
+
+ </gsak:CustomData>
+ </gsak:wptExtension>
+ <groundspeak:cache id="50" available="True" archived="False" xmlns:groundspeak="http://www.groundspeak.com/cache/1/0/1">
+ <groundspeak:name>Triditional Cache 032</groundspeak:name>
+ <groundspeak:placed_by>TEXANS</groundspeak:placed_by>
+ <groundspeak:owner id="1">TXGA</groundspeak:owner>
+ <groundspeak:type>Traditional Cache</groundspeak:type>
+ <groundspeak:container>Not chosen</groundspeak:container>
+ <groundspeak:attributes>
+ </groundspeak:attributes>
+ <groundspeak:difficulty>3</groundspeak:difficulty>
+ <groundspeak:terrain>5</groundspeak:terrain>
+ <groundspeak:country></groundspeak:country>
+ <groundspeak:state></groundspeak:state>
+ <groundspeak:short_description html="False"> </groundspeak:short_description>
+ <groundspeak:long_description html="False"> </groundspeak:long_description>
+ <groundspeak:encoded_hints></groundspeak:encoded_hints>
+ <groundspeak:logs>
+ </groundspeak:logs>
+ <groundspeak:travelbugs>
+ </groundspeak:travelbugs>
+</groundspeak:cache>
+</wpt>
+ <wpt lat="33.369433" lon="-97.02295">
+ <time>2012-03-10T08:00:00Z</time>
+ <name>T033</name>
+ <desc>Triditional Cache 033 by TEXANS (2.5/5)</desc>
+ <url></url>
+ <urlname>Triditional Cache 033 by TEXANS</urlname>
+ <sym>Geocache</sym>
+ <type>Geocache|Traditional Cache</type>
+ <gsak:wptExtension xmlns:gsak="http://www.gsak.net/xmlv1/6">
+ <gsak:UserFlag>false</gsak:UserFlag>
+ <gsak:Lock>false</gsak:Lock>
+ <gsak:DNF>false</gsak:DNF>
+ <gsak:Watch>false</gsak:Watch>
+ <gsak:UserData></gsak:UserData>
+ <gsak:FirstToFind>false</gsak:FirstToFind>
+ <gsak:User2></gsak:User2>
+ <gsak:User3></gsak:User3>
+ <gsak:User4></gsak:User4>
+ <gsak:County></gsak:County>
+ <gsak:UserSort>0</gsak:UserSort>
+ <gsak:SmartName>Tridi033</gsak:SmartName>
+ <gsak:LastGpxDate>2012-03-10</gsak:LastGpxDate>
+ <gsak:Code>T033</gsak:Code>
+ <gsak:Resolution></gsak:Resolution>
+ <gsak:IsPremium>false</gsak:IsPremium>
+ <gsak:FavPoints>0</gsak:FavPoints>
+ <gsak:GcNote></gsak:GcNote>
+ <gsak:Guid></gsak:Guid>
+ <gsak:CacheImages>
+ </gsak:CacheImages>
+ <gsak:LogImages>
+ </gsak:LogImages>
+ <gsak:CustomData>
+Custom_Start:cCode:Custom_Data:T033:Custom_End
+
+ </gsak:CustomData>
+ </gsak:wptExtension>
+ <groundspeak:cache id="51" available="True" archived="False" xmlns:groundspeak="http://www.groundspeak.com/cache/1/0/1">
+ <groundspeak:name>Triditional Cache 033</groundspeak:name>
+ <groundspeak:placed_by>TEXANS</groundspeak:placed_by>
+ <groundspeak:owner id="1">TXGA</groundspeak:owner>
+ <groundspeak:type>Traditional Cache</groundspeak:type>
+ <groundspeak:container>Not chosen</groundspeak:container>
+ <groundspeak:attributes>
+ </groundspeak:attributes>
+ <groundspeak:difficulty>2.5</groundspeak:difficulty>
+ <groundspeak:terrain>5</groundspeak:terrain>
+ <groundspeak:country></groundspeak:country>
+ <groundspeak:state></groundspeak:state>
+ <groundspeak:short_description html="False"> </groundspeak:short_description>
+ <groundspeak:long_description html="False"> </groundspeak:long_description>
+ <groundspeak:encoded_hints></groundspeak:encoded_hints>
+ <groundspeak:logs>
+ </groundspeak:logs>
+ <groundspeak:travelbugs>
+ </groundspeak:travelbugs>
+</groundspeak:cache>
+</wpt>
+ <wpt lat="33.39215" lon="-97.018817">
+ <time>2012-03-10T08:00:00Z</time>
+ <name>T034</name>
+ <desc>Triditional Cache 034 by TEXANS (4.5/3.5)</desc>
+ <url></url>
+ <urlname>Triditional Cache 034 by TEXANS</urlname>
+ <sym>Geocache</sym>
+ <type>Geocache|Traditional Cache</type>
+ <gsak:wptExtension xmlns:gsak="http://www.gsak.net/xmlv1/6">
+ <gsak:UserFlag>false</gsak:UserFlag>
+ <gsak:Lock>false</gsak:Lock>
+ <gsak:DNF>false</gsak:DNF>
+ <gsak:Watch>false</gsak:Watch>
+ <gsak:UserData></gsak:UserData>
+ <gsak:FirstToFind>false</gsak:FirstToFind>
+ <gsak:User2></gsak:User2>
+ <gsak:User3></gsak:User3>
+ <gsak:User4></gsak:User4>
+ <gsak:County></gsak:County>
+ <gsak:UserSort>0</gsak:UserSort>
+ <gsak:SmartName>Tridi034</gsak:SmartName>
+ <gsak:LastGpxDate>2012-03-10</gsak:LastGpxDate>
+ <gsak:Code>T034</gsak:Code>
+ <gsak:Resolution></gsak:Resolution>
+ <gsak:IsPremium>false</gsak:IsPremium>
+ <gsak:FavPoints>0</gsak:FavPoints>
+ <gsak:GcNote></gsak:GcNote>
+ <gsak:Guid></gsak:Guid>
+ <gsak:CacheImages>
+ </gsak:CacheImages>
+ <gsak:LogImages>
+ </gsak:LogImages>
+ <gsak:CustomData>
+Custom_Start:cCode:Custom_Data:T034:Custom_End
+
+ </gsak:CustomData>
+ </gsak:wptExtension>
+ <groundspeak:cache id="52" available="True" archived="False" xmlns:groundspeak="http://www.groundspeak.com/cache/1/0/1">
+ <groundspeak:name>Triditional Cache 034</groundspeak:name>
+ <groundspeak:placed_by>TEXANS</groundspeak:placed_by>
+ <groundspeak:owner id="1">TXGA</groundspeak:owner>
+ <groundspeak:type>Traditional Cache</groundspeak:type>
+ <groundspeak:container>Not chosen</groundspeak:container>
+ <groundspeak:attributes>
+ </groundspeak:attributes>
+ <groundspeak:difficulty>4.5</groundspeak:difficulty>
+ <groundspeak:terrain>3.5</groundspeak:terrain>
+ <groundspeak:country></groundspeak:country>
+ <groundspeak:state></groundspeak:state>
+ <groundspeak:short_description html="False"> </groundspeak:short_description>
+ <groundspeak:long_description html="False"> </groundspeak:long_description>
+ <groundspeak:encoded_hints></groundspeak:encoded_hints>
+ <groundspeak:logs>
+ </groundspeak:logs>
+ <groundspeak:travelbugs>
+ </groundspeak:travelbugs>
+</groundspeak:cache>
+</wpt>
+ <wpt lat="33.371483" lon="-97.007967">
+ <time>2012-03-10T08:00:00Z</time>
+ <name>T035</name>
+ <desc>Triditional Cache 035 by TEXANS (2.5/2.5)</desc>
+ <url></url>
+ <urlname>Triditional Cache 035 by TEXANS</urlname>
+ <sym>Geocache</sym>
+ <type>Geocache|Traditional Cache</type>
+ <gsak:wptExtension xmlns:gsak="http://www.gsak.net/xmlv1/6">
+ <gsak:UserFlag>false</gsak:UserFlag>
+ <gsak:Lock>false</gsak:Lock>
+ <gsak:DNF>false</gsak:DNF>
+ <gsak:Watch>false</gsak:Watch>
+ <gsak:UserData></gsak:UserData>
+ <gsak:FirstToFind>false</gsak:FirstToFind>
+ <gsak:User2></gsak:User2>
+ <gsak:User3></gsak:User3>
+ <gsak:User4></gsak:User4>
+ <gsak:County></gsak:County>
+ <gsak:UserSort>0</gsak:UserSort>
+ <gsak:SmartName>Tridi035</gsak:SmartName>
+ <gsak:LastGpxDate>2012-03-10</gsak:LastGpxDate>
+ <gsak:Code>T035</gsak:Code>
+ <gsak:Resolution></gsak:Resolution>
+ <gsak:IsPremium>false</gsak:IsPremium>
+ <gsak:FavPoints>0</gsak:FavPoints>
+ <gsak:GcNote></gsak:GcNote>
+ <gsak:Guid></gsak:Guid>
+ <gsak:CacheImages>
+ </gsak:CacheImages>
+ <gsak:LogImages>
+ </gsak:LogImages>
+ <gsak:CustomData>
+Custom_Start:cCode:Custom_Data:T035:Custom_End
+
+ </gsak:CustomData>
+ </gsak:wptExtension>
+ <groundspeak:cache id="53" available="True" archived="False" xmlns:groundspeak="http://www.groundspeak.com/cache/1/0/1">
+ <groundspeak:name>Triditional Cache 035</groundspeak:name>
+ <groundspeak:placed_by>TEXANS</groundspeak:placed_by>
+ <groundspeak:owner id="1">TXGA</groundspeak:owner>
+ <groundspeak:type>Traditional Cache</groundspeak:type>
+ <groundspeak:container>Not chosen</groundspeak:container>
+ <groundspeak:attributes>
+ </groundspeak:attributes>
+ <groundspeak:difficulty>2.5</groundspeak:difficulty>
+ <groundspeak:terrain>2.5</groundspeak:terrain>
+ <groundspeak:country></groundspeak:country>
+ <groundspeak:state></groundspeak:state>
+ <groundspeak:short_description html="False"> </groundspeak:short_description>
+ <groundspeak:long_description html="False"> </groundspeak:long_description>
+ <groundspeak:encoded_hints></groundspeak:encoded_hints>
+ <groundspeak:logs>
+ </groundspeak:logs>
+ <groundspeak:travelbugs>
+ </groundspeak:travelbugs>
+</groundspeak:cache>
+</wpt>
+ <wpt lat="33.3922" lon="-96.999283">
+ <time>2012-03-10T08:00:00Z</time>
+ <name>T036</name>
+ <desc>Triditional Cache 036 by TEXANS (2/5)</desc>
+ <url></url>
+ <urlname>Triditional Cache 036 by TEXANS</urlname>
+ <sym>Geocache</sym>
+ <type>Geocache|Traditional Cache</type>
+ <gsak:wptExtension xmlns:gsak="http://www.gsak.net/xmlv1/6">
+ <gsak:UserFlag>false</gsak:UserFlag>
+ <gsak:Lock>false</gsak:Lock>
+ <gsak:DNF>false</gsak:DNF>
+ <gsak:Watch>false</gsak:Watch>
+ <gsak:UserData></gsak:UserData>
+ <gsak:FirstToFind>false</gsak:FirstToFind>
+ <gsak:User2></gsak:User2>
+ <gsak:User3></gsak:User3>
+ <gsak:User4></gsak:User4>
+ <gsak:County></gsak:County>
+ <gsak:UserSort>0</gsak:UserSort>
+ <gsak:SmartName>Tridi036</gsak:SmartName>
+ <gsak:LastGpxDate>2012-03-10</gsak:LastGpxDate>
+ <gsak:Code>T036</gsak:Code>
+ <gsak:Resolution></gsak:Resolution>
+ <gsak:IsPremium>false</gsak:IsPremium>
+ <gsak:FavPoints>0</gsak:FavPoints>
+ <gsak:GcNote></gsak:GcNote>
+ <gsak:Guid></gsak:Guid>
+ <gsak:CacheImages>
+ </gsak:CacheImages>
+ <gsak:LogImages>
+ </gsak:LogImages>
+ <gsak:CustomData>
+Custom_Start:cCode:Custom_Data:T036:Custom_End
+
+ </gsak:CustomData>
+ </gsak:wptExtension>
+ <groundspeak:cache id="54" available="True" archived="False" xmlns:groundspeak="http://www.groundspeak.com/cache/1/0/1">
+ <groundspeak:name>Triditional Cache 036</groundspeak:name>
+ <groundspeak:placed_by>TEXANS</groundspeak:placed_by>
+ <groundspeak:owner id="1">TXGA</groundspeak:owner>
+ <groundspeak:type>Traditional Cache</groundspeak:type>
+ <groundspeak:container>Not chosen</groundspeak:container>
+ <groundspeak:attributes>
+ </groundspeak:attributes>
+ <groundspeak:difficulty>2</groundspeak:difficulty>
+ <groundspeak:terrain>5</groundspeak:terrain>
+ <groundspeak:country></groundspeak:country>
+ <groundspeak:state></groundspeak:state>
+ <groundspeak:short_description html="False"> </groundspeak:short_description>
+ <groundspeak:long_description html="False"> </groundspeak:long_description>
+ <groundspeak:encoded_hints></groundspeak:encoded_hints>
+ <groundspeak:logs>
+ </groundspeak:logs>
+ <groundspeak:travelbugs>
+ </groundspeak:travelbugs>
+</groundspeak:cache>
+</wpt>
+ <wpt lat="33.382817" lon="-97.00625">
+ <time>2012-03-10T08:00:00Z</time>
+ <name>T037</name>
+ <desc>Triditional Cache 037 by TEXANS (2/2)</desc>
+ <url></url>
+ <urlname>Triditional Cache 037 by TEXANS</urlname>
+ <sym>Geocache</sym>
+ <type>Geocache|Traditional Cache</type>
+ <gsak:wptExtension xmlns:gsak="http://www.gsak.net/xmlv1/6">
+ <gsak:UserFlag>false</gsak:UserFlag>
+ <gsak:Lock>false</gsak:Lock>
+ <gsak:DNF>false</gsak:DNF>
+ <gsak:Watch>false</gsak:Watch>
+ <gsak:UserData></gsak:UserData>
+ <gsak:FirstToFind>false</gsak:FirstToFind>
+ <gsak:User2></gsak:User2>
+ <gsak:User3></gsak:User3>
+ <gsak:User4></gsak:User4>
+ <gsak:County></gsak:County>
+ <gsak:UserSort>0</gsak:UserSort>
+ <gsak:SmartName>Tridi037</gsak:SmartName>
+ <gsak:LastGpxDate>2012-03-10</gsak:LastGpxDate>
+ <gsak:Code>T037</gsak:Code>
+ <gsak:Resolution></gsak:Resolution>
+ <gsak:IsPremium>false</gsak:IsPremium>
+ <gsak:FavPoints>0</gsak:FavPoints>
+ <gsak:GcNote></gsak:GcNote>
+ <gsak:Guid></gsak:Guid>
+ <gsak:CacheImages>
+ </gsak:CacheImages>
+ <gsak:LogImages>
+ </gsak:LogImages>
+ <gsak:CustomData>
+Custom_Start:cCode:Custom_Data:T037:Custom_End
+
+ </gsak:CustomData>
+ </gsak:wptExtension>
+ <groundspeak:cache id="55" available="True" archived="False" xmlns:groundspeak="http://www.groundspeak.com/cache/1/0/1">
+ <groundspeak:name>Triditional Cache 037</groundspeak:name>
+ <groundspeak:placed_by>TEXANS</groundspeak:placed_by>
+ <groundspeak:owner id="1">TXGA</groundspeak:owner>
+ <groundspeak:type>Traditional Cache</groundspeak:type>
+ <groundspeak:container>Not chosen</groundspeak:container>
+ <groundspeak:attributes>
+ </groundspeak:attributes>
+ <groundspeak:difficulty>2</groundspeak:difficulty>
+ <groundspeak:terrain>2</groundspeak:terrain>
+ <groundspeak:country></groundspeak:country>
+ <groundspeak:state></groundspeak:state>
+ <groundspeak:short_description html="False"> </groundspeak:short_description>
+ <groundspeak:long_description html="False"> </groundspeak:long_description>
+ <groundspeak:encoded_hints></groundspeak:encoded_hints>
+ <groundspeak:logs>
+ </groundspeak:logs>
+ <groundspeak:travelbugs>
+ </groundspeak:travelbugs>
+</groundspeak:cache>
+</wpt>
+ <wpt lat="33.36475" lon="-97.020917">
+ <time>2012-03-10T08:00:00Z</time>
+ <name>T038</name>
+ <desc>Triditional Cache 038 by TEXANS (2/4)</desc>
+ <url></url>
+ <urlname>Triditional Cache 038 by TEXANS</urlname>
+ <sym>Geocache</sym>
+ <type>Geocache|Traditional Cache</type>
+ <gsak:wptExtension xmlns:gsak="http://www.gsak.net/xmlv1/6">
+ <gsak:UserFlag>false</gsak:UserFlag>
+ <gsak:Lock>false</gsak:Lock>
+ <gsak:DNF>false</gsak:DNF>
+ <gsak:Watch>false</gsak:Watch>
+ <gsak:UserData></gsak:UserData>
+ <gsak:FirstToFind>false</gsak:FirstToFind>
+ <gsak:User2></gsak:User2>
+ <gsak:User3></gsak:User3>
+ <gsak:User4></gsak:User4>
+ <gsak:County></gsak:County>
+ <gsak:UserSort>0</gsak:UserSort>
+ <gsak:SmartName>Tridi038</gsak:SmartName>
+ <gsak:LastGpxDate>2012-03-10</gsak:LastGpxDate>
+ <gsak:Code>T038</gsak:Code>
+ <gsak:Resolution></gsak:Resolution>
+ <gsak:IsPremium>false</gsak:IsPremium>
+ <gsak:FavPoints>0</gsak:FavPoints>
+ <gsak:GcNote></gsak:GcNote>
+ <gsak:Guid></gsak:Guid>
+ <gsak:CacheImages>
+ </gsak:CacheImages>
+ <gsak:LogImages>
+ </gsak:LogImages>
+ <gsak:CustomData>
+Custom_Start:cCode:Custom_Data:T038:Custom_End
+
+ </gsak:CustomData>
+ </gsak:wptExtension>
+ <groundspeak:cache id="56" available="True" archived="False" xmlns:groundspeak="http://www.groundspeak.com/cache/1/0/1">
+ <groundspeak:name>Triditional Cache 038</groundspeak:name>
+ <groundspeak:placed_by>TEXANS</groundspeak:placed_by>
+ <groundspeak:owner id="1">TXGA</groundspeak:owner>
+ <groundspeak:type>Traditional Cache</groundspeak:type>
+ <groundspeak:container>Not chosen</groundspeak:container>
+ <groundspeak:attributes>
+ </groundspeak:attributes>
+ <groundspeak:difficulty>2</groundspeak:difficulty>
+ <groundspeak:terrain>4</groundspeak:terrain>
+ <groundspeak:country></groundspeak:country>
+ <groundspeak:state></groundspeak:state>
+ <groundspeak:short_description html="False"> </groundspeak:short_description>
+ <groundspeak:long_description html="False"> </groundspeak:long_description>
+ <groundspeak:encoded_hints></groundspeak:encoded_hints>
+ <groundspeak:logs>
+ </groundspeak:logs>
+ <groundspeak:travelbugs>
+ </groundspeak:travelbugs>
+</groundspeak:cache>
+</wpt>
+ <wpt lat="33.387083" lon="-97.0097">
+ <time>2012-03-10T08:00:00Z</time>
+ <name>T039</name>
+ <desc>Triditional Cache 039 by TEXANS (2.5/3)</desc>
+ <url></url>
+ <urlname>Triditional Cache 039 by TEXANS</urlname>
+ <sym>Geocache</sym>
+ <type>Geocache|Traditional Cache</type>
+ <gsak:wptExtension xmlns:gsak="http://www.gsak.net/xmlv1/6">
+ <gsak:UserFlag>false</gsak:UserFlag>
+ <gsak:Lock>false</gsak:Lock>
+ <gsak:DNF>false</gsak:DNF>
+ <gsak:Watch>false</gsak:Watch>
+ <gsak:UserData></gsak:UserData>
+ <gsak:FirstToFind>false</gsak:FirstToFind>
+ <gsak:User2></gsak:User2>
+ <gsak:User3></gsak:User3>
+ <gsak:User4></gsak:User4>
+ <gsak:County></gsak:County>
+ <gsak:UserSort>0</gsak:UserSort>
+ <gsak:SmartName>Tridi039</gsak:SmartName>
+ <gsak:LastGpxDate>2012-03-10</gsak:LastGpxDate>
+ <gsak:Code>T039</gsak:Code>
+ <gsak:Resolution></gsak:Resolution>
+ <gsak:IsPremium>false</gsak:IsPremium>
+ <gsak:FavPoints>0</gsak:FavPoints>
+ <gsak:GcNote></gsak:GcNote>
+ <gsak:Guid></gsak:Guid>
+ <gsak:CacheImages>
+ </gsak:CacheImages>
+ <gsak:LogImages>
+ </gsak:LogImages>
+ <gsak:CustomData>
+Custom_Start:cCode:Custom_Data:T039:Custom_End
+
+ </gsak:CustomData>
+ </gsak:wptExtension>
+ <groundspeak:cache id="57" available="True" archived="False" xmlns:groundspeak="http://www.groundspeak.com/cache/1/0/1">
+ <groundspeak:name>Triditional Cache 039</groundspeak:name>
+ <groundspeak:placed_by>TEXANS</groundspeak:placed_by>
+ <groundspeak:owner id="1">TXGA</groundspeak:owner>
+ <groundspeak:type>Traditional Cache</groundspeak:type>
+ <groundspeak:container>Not chosen</groundspeak:container>
+ <groundspeak:attributes>
+ </groundspeak:attributes>
+ <groundspeak:difficulty>2.5</groundspeak:difficulty>
+ <groundspeak:terrain>3</groundspeak:terrain>
+ <groundspeak:country></groundspeak:country>
+ <groundspeak:state></groundspeak:state>
+ <groundspeak:short_description html="False"> </groundspeak:short_description>
+ <groundspeak:long_description html="False"> </groundspeak:long_description>
+ <groundspeak:encoded_hints></groundspeak:encoded_hints>
+ <groundspeak:logs>
+ </groundspeak:logs>
+ <groundspeak:travelbugs>
+ </groundspeak:travelbugs>
+</groundspeak:cache>
+</wpt>
+ <wpt lat="33.370267" lon="-97.022867">
+ <time>2012-03-10T08:00:00Z</time>
+ <name>T040</name>
+ <desc>Triditional Cache 040 by TEXANS (3.5/5)</desc>
+ <url></url>
+ <urlname>Triditional Cache 040 by TEXANS</urlname>
+ <sym>Geocache</sym>
+ <type>Geocache|Traditional Cache</type>
+ <gsak:wptExtension xmlns:gsak="http://www.gsak.net/xmlv1/6">
+ <gsak:UserFlag>false</gsak:UserFlag>
+ <gsak:Lock>false</gsak:Lock>
+ <gsak:DNF>false</gsak:DNF>
+ <gsak:Watch>false</gsak:Watch>
+ <gsak:UserData></gsak:UserData>
+ <gsak:FirstToFind>false</gsak:FirstToFind>
+ <gsak:User2></gsak:User2>
+ <gsak:User3></gsak:User3>
+ <gsak:User4></gsak:User4>
+ <gsak:County></gsak:County>
+ <gsak:UserSort>0</gsak:UserSort>
+ <gsak:SmartName>Tridi040</gsak:SmartName>
+ <gsak:LastGpxDate>2012-03-10</gsak:LastGpxDate>
+ <gsak:Code>T040</gsak:Code>
+ <gsak:Resolution></gsak:Resolution>
+ <gsak:IsPremium>false</gsak:IsPremium>
+ <gsak:FavPoints>0</gsak:FavPoints>
+ <gsak:GcNote></gsak:GcNote>
+ <gsak:Guid></gsak:Guid>
+ <gsak:CacheImages>
+ </gsak:CacheImages>
+ <gsak:LogImages>
+ </gsak:LogImages>
+ <gsak:CustomData>
+Custom_Start:cCode:Custom_Data:T040:Custom_End
+
+ </gsak:CustomData>
+ </gsak:wptExtension>
+ <groundspeak:cache id="64" available="True" archived="False" xmlns:groundspeak="http://www.groundspeak.com/cache/1/0/1">
+ <groundspeak:name>Triditional Cache 040</groundspeak:name>
+ <groundspeak:placed_by>TEXANS</groundspeak:placed_by>
+ <groundspeak:owner id="1">TXGA</groundspeak:owner>
+ <groundspeak:type>Traditional Cache</groundspeak:type>
+ <groundspeak:container>Not chosen</groundspeak:container>
+ <groundspeak:attributes>
+ </groundspeak:attributes>
+ <groundspeak:difficulty>3.5</groundspeak:difficulty>
+ <groundspeak:terrain>5</groundspeak:terrain>
+ <groundspeak:country></groundspeak:country>
+ <groundspeak:state></groundspeak:state>
+ <groundspeak:short_description html="False"> </groundspeak:short_description>
+ <groundspeak:long_description html="False"> </groundspeak:long_description>
+ <groundspeak:encoded_hints></groundspeak:encoded_hints>
+ <groundspeak:logs>
+ </groundspeak:logs>
+ <groundspeak:travelbugs>
+ </groundspeak:travelbugs>
+</groundspeak:cache>
+</wpt>
+ <wpt lat="33.363767" lon="-97.022733">
+ <time>2012-03-10T08:00:00Z</time>
+ <name>T041</name>
+ <desc>Triditional Cache 041 by TEXANS (3/4)</desc>
+ <url></url>
+ <urlname>Triditional Cache 041 by TEXANS</urlname>
+ <sym>Geocache</sym>
+ <type>Geocache|Traditional Cache</type>
+ <gsak:wptExtension xmlns:gsak="http://www.gsak.net/xmlv1/6">
+ <gsak:UserFlag>false</gsak:UserFlag>
+ <gsak:Lock>false</gsak:Lock>
+ <gsak:DNF>false</gsak:DNF>
+ <gsak:Watch>false</gsak:Watch>
+ <gsak:UserData></gsak:UserData>
+ <gsak:FirstToFind>false</gsak:FirstToFind>
+ <gsak:User2></gsak:User2>
+ <gsak:User3></gsak:User3>
+ <gsak:User4></gsak:User4>
+ <gsak:County></gsak:County>
+ <gsak:UserSort>0</gsak:UserSort>
+ <gsak:SmartName>Tridi041</gsak:SmartName>
+ <gsak:LastGpxDate>2012-03-10</gsak:LastGpxDate>
+ <gsak:Code>T041</gsak:Code>
+ <gsak:Resolution></gsak:Resolution>
+ <gsak:IsPremium>false</gsak:IsPremium>
+ <gsak:FavPoints>0</gsak:FavPoints>
+ <gsak:GcNote></gsak:GcNote>
+ <gsak:Guid></gsak:Guid>
+ <gsak:CacheImages>
+ </gsak:CacheImages>
+ <gsak:LogImages>
+ </gsak:LogImages>
+ <gsak:CustomData>
+Custom_Start:cCode:Custom_Data:T041:Custom_End
+
+ </gsak:CustomData>
+ </gsak:wptExtension>
+ <groundspeak:cache id="65" available="True" archived="False" xmlns:groundspeak="http://www.groundspeak.com/cache/1/0/1">
+ <groundspeak:name>Triditional Cache 041</groundspeak:name>
+ <groundspeak:placed_by>TEXANS</groundspeak:placed_by>
+ <groundspeak:owner id="1">TXGA</groundspeak:owner>
+ <groundspeak:type>Traditional Cache</groundspeak:type>
+ <groundspeak:container>Not chosen</groundspeak:container>
+ <groundspeak:attributes>
+ </groundspeak:attributes>
+ <groundspeak:difficulty>3</groundspeak:difficulty>
+ <groundspeak:terrain>4</groundspeak:terrain>
+ <groundspeak:country></groundspeak:country>
+ <groundspeak:state></groundspeak:state>
+ <groundspeak:short_description html="False"> </groundspeak:short_description>
+ <groundspeak:long_description html="False"> </groundspeak:long_description>
+ <groundspeak:encoded_hints></groundspeak:encoded_hints>
+ <groundspeak:logs>
+ </groundspeak:logs>
+ <groundspeak:travelbugs>
+ </groundspeak:travelbugs>
+</groundspeak:cache>
+</wpt>
+ <wpt lat="33.368833" lon="-97.009083">
+ <time>2012-03-10T08:00:00Z</time>
+ <name>T042</name>
+ <desc>Triditional Cache 042 by TEXANS (2.5/2.5)</desc>
+ <url></url>
+ <urlname>Triditional Cache 042 by TEXANS</urlname>
+ <sym>Geocache</sym>
+ <type>Geocache|Traditional Cache</type>
+ <gsak:wptExtension xmlns:gsak="http://www.gsak.net/xmlv1/6">
+ <gsak:UserFlag>false</gsak:UserFlag>
+ <gsak:Lock>false</gsak:Lock>
+ <gsak:DNF>false</gsak:DNF>
+ <gsak:Watch>false</gsak:Watch>
+ <gsak:UserData></gsak:UserData>
+ <gsak:FirstToFind>false</gsak:FirstToFind>
+ <gsak:User2></gsak:User2>
+ <gsak:User3></gsak:User3>
+ <gsak:User4></gsak:User4>
+ <gsak:County></gsak:County>
+ <gsak:UserSort>0</gsak:UserSort>
+ <gsak:SmartName>Tridi042</gsak:SmartName>
+ <gsak:LastGpxDate>2012-03-10</gsak:LastGpxDate>
+ <gsak:Code>T042</gsak:Code>
+ <gsak:Resolution></gsak:Resolution>
+ <gsak:IsPremium>false</gsak:IsPremium>
+ <gsak:FavPoints>0</gsak:FavPoints>
+ <gsak:GcNote></gsak:GcNote>
+ <gsak:Guid></gsak:Guid>
+ <gsak:CacheImages>
+ </gsak:CacheImages>
+ <gsak:LogImages>
+ </gsak:LogImages>
+ <gsak:CustomData>
+Custom_Start:cCode:Custom_Data:T042:Custom_End
+
+ </gsak:CustomData>
+ </gsak:wptExtension>
+ <groundspeak:cache id="66" available="True" archived="False" xmlns:groundspeak="http://www.groundspeak.com/cache/1/0/1">
+ <groundspeak:name>Triditional Cache 042</groundspeak:name>
+ <groundspeak:placed_by>TEXANS</groundspeak:placed_by>
+ <groundspeak:owner id="1">TXGA</groundspeak:owner>
+ <groundspeak:type>Traditional Cache</groundspeak:type>
+ <groundspeak:container>Not chosen</groundspeak:container>
+ <groundspeak:attributes>
+ </groundspeak:attributes>
+ <groundspeak:difficulty>2.5</groundspeak:difficulty>
+ <groundspeak:terrain>2.5</groundspeak:terrain>
+ <groundspeak:country></groundspeak:country>
+ <groundspeak:state></groundspeak:state>
+ <groundspeak:short_description html="False"> </groundspeak:short_description>
+ <groundspeak:long_description html="False"> </groundspeak:long_description>
+ <groundspeak:encoded_hints></groundspeak:encoded_hints>
+ <groundspeak:logs>
+ </groundspeak:logs>
+ <groundspeak:travelbugs>
+ </groundspeak:travelbugs>
+</groundspeak:cache>
+</wpt>
+ <wpt lat="33.401567" lon="-97.0023">
+ <time>2012-03-10T08:00:00Z</time>
+ <name>T043</name>
+ <desc>Triditional Cache 043 by TEXANS (3.5/3)</desc>
+ <url></url>
+ <urlname>Triditional Cache 043 by TEXANS</urlname>
+ <sym>Geocache</sym>
+ <type>Geocache|Traditional Cache</type>
+ <gsak:wptExtension xmlns:gsak="http://www.gsak.net/xmlv1/6">
+ <gsak:UserFlag>false</gsak:UserFlag>
+ <gsak:Lock>false</gsak:Lock>
+ <gsak:DNF>false</gsak:DNF>
+ <gsak:Watch>false</gsak:Watch>
+ <gsak:UserData></gsak:UserData>
+ <gsak:FirstToFind>false</gsak:FirstToFind>
+ <gsak:User2></gsak:User2>
+ <gsak:User3></gsak:User3>
+ <gsak:User4></gsak:User4>
+ <gsak:County></gsak:County>
+ <gsak:UserSort>0</gsak:UserSort>
+ <gsak:SmartName>Tridi043</gsak:SmartName>
+ <gsak:LastGpxDate>2012-03-10</gsak:LastGpxDate>
+ <gsak:Code>T043</gsak:Code>
+ <gsak:Resolution></gsak:Resolution>
+ <gsak:IsPremium>false</gsak:IsPremium>
+ <gsak:FavPoints>0</gsak:FavPoints>
+ <gsak:GcNote></gsak:GcNote>
+ <gsak:Guid></gsak:Guid>
+ <gsak:CacheImages>
+ </gsak:CacheImages>
+ <gsak:LogImages>
+ </gsak:LogImages>
+ <gsak:CustomData>
+Custom_Start:cCode:Custom_Data:T043:Custom_End
+
+ </gsak:CustomData>
+ </gsak:wptExtension>
+ <groundspeak:cache id="67" available="True" archived="False" xmlns:groundspeak="http://www.groundspeak.com/cache/1/0/1">
+ <groundspeak:name>Triditional Cache 043</groundspeak:name>
+ <groundspeak:placed_by>TEXANS</groundspeak:placed_by>
+ <groundspeak:owner id="1">TXGA</groundspeak:owner>
+ <groundspeak:type>Traditional Cache</groundspeak:type>
+ <groundspeak:container>Not chosen</groundspeak:container>
+ <groundspeak:attributes>
+ </groundspeak:attributes>
+ <groundspeak:difficulty>3.5</groundspeak:difficulty>
+ <groundspeak:terrain>3</groundspeak:terrain>
+ <groundspeak:country></groundspeak:country>
+ <groundspeak:state></groundspeak:state>
+ <groundspeak:short_description html="False"> </groundspeak:short_description>
+ <groundspeak:long_description html="False"> </groundspeak:long_description>
+ <groundspeak:encoded_hints></groundspeak:encoded_hints>
+ <groundspeak:logs>
+ </groundspeak:logs>
+ <groundspeak:travelbugs>
+ </groundspeak:travelbugs>
+</groundspeak:cache>
+</wpt>
+ <wpt lat="33.3787" lon="-97.0299">
+ <time>2012-03-10T08:00:00Z</time>
+ <name>T045</name>
+ <desc>Triditional Cache 045 by TEXANS (2/1.5)</desc>
+ <url></url>
+ <urlname>Triditional Cache 045 by TEXANS</urlname>
+ <sym>Geocache</sym>
+ <type>Geocache|Traditional Cache</type>
+ <gsak:wptExtension xmlns:gsak="http://www.gsak.net/xmlv1/6">
+ <gsak:UserFlag>false</gsak:UserFlag>
+ <gsak:Lock>false</gsak:Lock>
+ <gsak:DNF>false</gsak:DNF>
+ <gsak:Watch>false</gsak:Watch>
+ <gsak:UserData></gsak:UserData>
+ <gsak:FirstToFind>false</gsak:FirstToFind>
+ <gsak:User2></gsak:User2>
+ <gsak:User3></gsak:User3>
+ <gsak:User4></gsak:User4>
+ <gsak:County></gsak:County>
+ <gsak:UserSort>0</gsak:UserSort>
+ <gsak:SmartName>Tridi045</gsak:SmartName>
+ <gsak:LastGpxDate>2012-03-10</gsak:LastGpxDate>
+ <gsak:Code>T045</gsak:Code>
+ <gsak:Resolution></gsak:Resolution>
+ <gsak:IsPremium>false</gsak:IsPremium>
+ <gsak:FavPoints>0</gsak:FavPoints>
+ <gsak:GcNote></gsak:GcNote>
+ <gsak:Guid></gsak:Guid>
+ <gsak:CacheImages>
+ </gsak:CacheImages>
+ <gsak:LogImages>
+ </gsak:LogImages>
+ <gsak:CustomData>
+Custom_Start:cCode:Custom_Data:T045:Custom_End
+
+ </gsak:CustomData>
+ </gsak:wptExtension>
+ <groundspeak:cache id="69" available="True" archived="False" xmlns:groundspeak="http://www.groundspeak.com/cache/1/0/1">
+ <groundspeak:name>Triditional Cache 045</groundspeak:name>
+ <groundspeak:placed_by>TEXANS</groundspeak:placed_by>
+ <groundspeak:owner id="1">TXGA</groundspeak:owner>
+ <groundspeak:type>Traditional Cache</groundspeak:type>
+ <groundspeak:container>Not chosen</groundspeak:container>
+ <groundspeak:attributes>
+ </groundspeak:attributes>
+ <groundspeak:difficulty>2</groundspeak:difficulty>
+ <groundspeak:terrain>1.5</groundspeak:terrain>
+ <groundspeak:country></groundspeak:country>
+ <groundspeak:state></groundspeak:state>
+ <groundspeak:short_description html="False"> </groundspeak:short_description>
+ <groundspeak:long_description html="False"> </groundspeak:long_description>
+ <groundspeak:encoded_hints></groundspeak:encoded_hints>
+ <groundspeak:logs>
+ </groundspeak:logs>
+ <groundspeak:travelbugs>
+ </groundspeak:travelbugs>
+</groundspeak:cache>
+</wpt>
+ <wpt lat="33.375117" lon="-97.011483">
+ <time>2012-03-10T08:00:00Z</time>
+ <name>T046</name>
+ <desc>Triditional Cache 046 by TEXANS (3/3)</desc>
+ <url></url>
+ <urlname>Triditional Cache 046 by TEXANS</urlname>
+ <sym>Geocache</sym>
+ <type>Geocache|Traditional Cache</type>
+ <gsak:wptExtension xmlns:gsak="http://www.gsak.net/xmlv1/6">
+ <gsak:UserFlag>false</gsak:UserFlag>
+ <gsak:Lock>false</gsak:Lock>
+ <gsak:DNF>false</gsak:DNF>
+ <gsak:Watch>false</gsak:Watch>
+ <gsak:UserData></gsak:UserData>
+ <gsak:FirstToFind>false</gsak:FirstToFind>
+ <gsak:User2></gsak:User2>
+ <gsak:User3></gsak:User3>
+ <gsak:User4></gsak:User4>
+ <gsak:County></gsak:County>
+ <gsak:UserSort>0</gsak:UserSort>
+ <gsak:SmartName>Tridi046</gsak:SmartName>
+ <gsak:LastGpxDate>2012-03-10</gsak:LastGpxDate>
+ <gsak:Code>T046</gsak:Code>
+ <gsak:Resolution></gsak:Resolution>
+ <gsak:IsPremium>false</gsak:IsPremium>
+ <gsak:FavPoints>0</gsak:FavPoints>
+ <gsak:GcNote></gsak:GcNote>
+ <gsak:Guid></gsak:Guid>
+ <gsak:CacheImages>
+ </gsak:CacheImages>
+ <gsak:LogImages>
+ </gsak:LogImages>
+ <gsak:CustomData>
+Custom_Start:cCode:Custom_Data:T046:Custom_End
+
+ </gsak:CustomData>
+ </gsak:wptExtension>
+ <groundspeak:cache id="70" available="True" archived="False" xmlns:groundspeak="http://www.groundspeak.com/cache/1/0/1">
+ <groundspeak:name>Triditional Cache 046</groundspeak:name>
+ <groundspeak:placed_by>TEXANS</groundspeak:placed_by>
+ <groundspeak:owner id="1">TXGA</groundspeak:owner>
+ <groundspeak:type>Traditional Cache</groundspeak:type>
+ <groundspeak:container>Not chosen</groundspeak:container>
+ <groundspeak:attributes>
+ </groundspeak:attributes>
+ <groundspeak:difficulty>3</groundspeak:difficulty>
+ <groundspeak:terrain>3</groundspeak:terrain>
+ <groundspeak:country></groundspeak:country>
+ <groundspeak:state></groundspeak:state>
+ <groundspeak:short_description html="False"> </groundspeak:short_description>
+ <groundspeak:long_description html="False"> </groundspeak:long_description>
+ <groundspeak:encoded_hints></groundspeak:encoded_hints>
+ <groundspeak:logs>
+ </groundspeak:logs>
+ <groundspeak:travelbugs>
+ </groundspeak:travelbugs>
+</groundspeak:cache>
+</wpt>
+ <wpt lat="33.40455" lon="-96.99845">
+ <time>2012-03-10T08:00:00Z</time>
+ <name>T047</name>
+ <desc>Triditional Cache 047 by TEXANS (1.5/1.5)</desc>
+ <url></url>
+ <urlname>Triditional Cache 047 by TEXANS</urlname>
+ <sym>Geocache</sym>
+ <type>Geocache|Traditional Cache</type>
+ <gsak:wptExtension xmlns:gsak="http://www.gsak.net/xmlv1/6">
+ <gsak:UserFlag>false</gsak:UserFlag>
+ <gsak:Lock>false</gsak:Lock>
+ <gsak:DNF>false</gsak:DNF>
+ <gsak:Watch>false</gsak:Watch>
+ <gsak:UserData></gsak:UserData>
+ <gsak:FirstToFind>false</gsak:FirstToFind>
+ <gsak:User2></gsak:User2>
+ <gsak:User3></gsak:User3>
+ <gsak:User4></gsak:User4>
+ <gsak:County></gsak:County>
+ <gsak:UserSort>0</gsak:UserSort>
+ <gsak:SmartName>Tridi047</gsak:SmartName>
+ <gsak:LastGpxDate>2012-03-10</gsak:LastGpxDate>
+ <gsak:Code>T047</gsak:Code>
+ <gsak:Resolution></gsak:Resolution>
+ <gsak:IsPremium>false</gsak:IsPremium>
+ <gsak:FavPoints>0</gsak:FavPoints>
+ <gsak:GcNote></gsak:GcNote>
+ <gsak:Guid></gsak:Guid>
+ <gsak:CacheImages>
+ </gsak:CacheImages>
+ <gsak:LogImages>
+ </gsak:LogImages>
+ <gsak:CustomData>
+Custom_Start:cCode:Custom_Data:T047:Custom_End
+
+ </gsak:CustomData>
+ </gsak:wptExtension>
+ <groundspeak:cache id="71" available="True" archived="False" xmlns:groundspeak="http://www.groundspeak.com/cache/1/0/1">
+ <groundspeak:name>Triditional Cache 047</groundspeak:name>
+ <groundspeak:placed_by>TEXANS</groundspeak:placed_by>
+ <groundspeak:owner id="1">TXGA</groundspeak:owner>
+ <groundspeak:type>Traditional Cache</groundspeak:type>
+ <groundspeak:container>Not chosen</groundspeak:container>
+ <groundspeak:attributes>
+ </groundspeak:attributes>
+ <groundspeak:difficulty>1.5</groundspeak:difficulty>
+ <groundspeak:terrain>1.5</groundspeak:terrain>
+ <groundspeak:country></groundspeak:country>
+ <groundspeak:state></groundspeak:state>
+ <groundspeak:short_description html="False"> </groundspeak:short_description>
+ <groundspeak:long_description html="False"> </groundspeak:long_description>
+ <groundspeak:encoded_hints></groundspeak:encoded_hints>
+ <groundspeak:logs>
+ </groundspeak:logs>
+ <groundspeak:travelbugs>
+ </groundspeak:travelbugs>
+</groundspeak:cache>
+</wpt>
+ <wpt lat="33.367383" lon="-97.00925">
+ <time>2012-03-10T08:00:00Z</time>
+ <name>T048</name>
+ <desc>Triditional Cache 048 by TEXANS (4.5/4.5)</desc>
+ <url></url>
+ <urlname>Triditional Cache 048 by TEXANS</urlname>
+ <sym>Geocache</sym>
+ <type>Geocache|Traditional Cache</type>
+ <gsak:wptExtension xmlns:gsak="http://www.gsak.net/xmlv1/6">
+ <gsak:UserFlag>false</gsak:UserFlag>
+ <gsak:Lock>false</gsak:Lock>
+ <gsak:DNF>false</gsak:DNF>
+ <gsak:Watch>false</gsak:Watch>
+ <gsak:UserData></gsak:UserData>
+ <gsak:FirstToFind>false</gsak:FirstToFind>
+ <gsak:User2></gsak:User2>
+ <gsak:User3></gsak:User3>
+ <gsak:User4></gsak:User4>
+ <gsak:County></gsak:County>
+ <gsak:UserSort>0</gsak:UserSort>
+ <gsak:SmartName>Tridi048</gsak:SmartName>
+ <gsak:LastGpxDate>2012-03-10</gsak:LastGpxDate>
+ <gsak:Code>T048</gsak:Code>
+ <gsak:Resolution></gsak:Resolution>
+ <gsak:IsPremium>false</gsak:IsPremium>
+ <gsak:FavPoints>0</gsak:FavPoints>
+ <gsak:GcNote></gsak:GcNote>
+ <gsak:Guid></gsak:Guid>
+ <gsak:CacheImages>
+ </gsak:CacheImages>
+ <gsak:LogImages>
+ </gsak:LogImages>
+ <gsak:CustomData>
+Custom_Start:cCode:Custom_Data:T048:Custom_End
+
+ </gsak:CustomData>
+ </gsak:wptExtension>
+ <groundspeak:cache id="72" available="True" archived="False" xmlns:groundspeak="http://www.groundspeak.com/cache/1/0/1">
+ <groundspeak:name>Triditional Cache 048</groundspeak:name>
+ <groundspeak:placed_by>TEXANS</groundspeak:placed_by>
+ <groundspeak:owner id="1">TXGA</groundspeak:owner>
+ <groundspeak:type>Traditional Cache</groundspeak:type>
+ <groundspeak:container>Not chosen</groundspeak:container>
+ <groundspeak:attributes>
+ </groundspeak:attributes>
+ <groundspeak:difficulty>4.5</groundspeak:difficulty>
+ <groundspeak:terrain>4.5</groundspeak:terrain>
+ <groundspeak:country></groundspeak:country>
+ <groundspeak:state></groundspeak:state>
+ <groundspeak:short_description html="False"> </groundspeak:short_description>
+ <groundspeak:long_description html="False"> </groundspeak:long_description>
+ <groundspeak:encoded_hints></groundspeak:encoded_hints>
+ <groundspeak:logs>
+ </groundspeak:logs>
+ <groundspeak:travelbugs>
+ </groundspeak:travelbugs>
+</groundspeak:cache>
+</wpt>
+ <wpt lat="33.392567" lon="-97.011667">
+ <time>2012-03-10T08:00:00Z</time>
+ <name>T049</name>
+ <desc>Triditional Cache 049 by TEXANS (4/3.5)</desc>
+ <url></url>
+ <urlname>Triditional Cache 049 by TEXANS</urlname>
+ <sym>Geocache</sym>
+ <type>Geocache|Traditional Cache</type>
+ <gsak:wptExtension xmlns:gsak="http://www.gsak.net/xmlv1/6">
+ <gsak:UserFlag>false</gsak:UserFlag>
+ <gsak:Lock>false</gsak:Lock>
+ <gsak:DNF>false</gsak:DNF>
+ <gsak:Watch>false</gsak:Watch>
+ <gsak:UserData></gsak:UserData>
+ <gsak:FirstToFind>false</gsak:FirstToFind>
+ <gsak:User2></gsak:User2>
+ <gsak:User3></gsak:User3>
+ <gsak:User4></gsak:User4>
+ <gsak:County></gsak:County>
+ <gsak:UserSort>0</gsak:UserSort>
+ <gsak:SmartName>Tridi049</gsak:SmartName>
+ <gsak:LastGpxDate>2012-03-10</gsak:LastGpxDate>
+ <gsak:Code>T049</gsak:Code>
+ <gsak:Resolution></gsak:Resolution>
+ <gsak:IsPremium>false</gsak:IsPremium>
+ <gsak:FavPoints>0</gsak:FavPoints>
+ <gsak:GcNote></gsak:GcNote>
+ <gsak:Guid></gsak:Guid>
+ <gsak:CacheImages>
+ </gsak:CacheImages>
+ <gsak:LogImages>
+ </gsak:LogImages>
+ <gsak:CustomData>
+Custom_Start:cCode:Custom_Data:T049:Custom_End
+
+ </gsak:CustomData>
+ </gsak:wptExtension>
+ <groundspeak:cache id="73" available="True" archived="False" xmlns:groundspeak="http://www.groundspeak.com/cache/1/0/1">
+ <groundspeak:name>Triditional Cache 049</groundspeak:name>
+ <groundspeak:placed_by>TEXANS</groundspeak:placed_by>
+ <groundspeak:owner id="1">TXGA</groundspeak:owner>
+ <groundspeak:type>Traditional Cache</groundspeak:type>
+ <groundspeak:container>Not chosen</groundspeak:container>
+ <groundspeak:attributes>
+ </groundspeak:attributes>
+ <groundspeak:difficulty>4</groundspeak:difficulty>
+ <groundspeak:terrain>3.5</groundspeak:terrain>
+ <groundspeak:country></groundspeak:country>
+ <groundspeak:state></groundspeak:state>
+ <groundspeak:short_description html="False"> </groundspeak:short_description>
+ <groundspeak:long_description html="False"> </groundspeak:long_description>
+ <groundspeak:encoded_hints></groundspeak:encoded_hints>
+ <groundspeak:logs>
+ </groundspeak:logs>
+ <groundspeak:travelbugs>
+ </groundspeak:travelbugs>
+</groundspeak:cache>
+</wpt>
+ <wpt lat="33.380767" lon="-97.026967">
+ <time>2012-03-10T08:00:00Z</time>
+ <name>T050</name>
+ <desc>Triditional Cache 050 by TEXANS (1/1.5)</desc>
+ <url></url>
+ <urlname>Triditional Cache 050 by TEXANS</urlname>
+ <sym>Geocache</sym>
+ <type>Geocache|Traditional Cache</type>
+ <gsak:wptExtension xmlns:gsak="http://www.gsak.net/xmlv1/6">
+ <gsak:UserFlag>false</gsak:UserFlag>
+ <gsak:Lock>false</gsak:Lock>
+ <gsak:DNF>false</gsak:DNF>
+ <gsak:Watch>false</gsak:Watch>
+ <gsak:UserData></gsak:UserData>
+ <gsak:FirstToFind>false</gsak:FirstToFind>
+ <gsak:User2></gsak:User2>
+ <gsak:User3></gsak:User3>
+ <gsak:User4></gsak:User4>
+ <gsak:County></gsak:County>
+ <gsak:UserSort>0</gsak:UserSort>
+ <gsak:SmartName>Tridi050</gsak:SmartName>
+ <gsak:LastGpxDate>2012-03-10</gsak:LastGpxDate>
+ <gsak:Code>T050</gsak:Code>
+ <gsak:Resolution></gsak:Resolution>
+ <gsak:IsPremium>false</gsak:IsPremium>
+ <gsak:FavPoints>0</gsak:FavPoints>
+ <gsak:GcNote></gsak:GcNote>
+ <gsak:Guid></gsak:Guid>
+ <gsak:CacheImages>
+ </gsak:CacheImages>
+ <gsak:LogImages>
+ </gsak:LogImages>
+ <gsak:CustomData>
+Custom_Start:cCode:Custom_Data:T050:Custom_End
+
+ </gsak:CustomData>
+ </gsak:wptExtension>
+ <groundspeak:cache id="80" available="True" archived="False" xmlns:groundspeak="http://www.groundspeak.com/cache/1/0/1">
+ <groundspeak:name>Triditional Cache 050</groundspeak:name>
+ <groundspeak:placed_by>TEXANS</groundspeak:placed_by>
+ <groundspeak:owner id="1">TXGA</groundspeak:owner>
+ <groundspeak:type>Traditional Cache</groundspeak:type>
+ <groundspeak:container>Not chosen</groundspeak:container>
+ <groundspeak:attributes>
+ </groundspeak:attributes>
+ <groundspeak:difficulty>1</groundspeak:difficulty>
+ <groundspeak:terrain>1.5</groundspeak:terrain>
+ <groundspeak:country></groundspeak:country>
+ <groundspeak:state></groundspeak:state>
+ <groundspeak:short_description html="False"> </groundspeak:short_description>
+ <groundspeak:long_description html="False"> </groundspeak:long_description>
+ <groundspeak:encoded_hints></groundspeak:encoded_hints>
+ <groundspeak:logs>
+ </groundspeak:logs>
+ <groundspeak:travelbugs>
+ </groundspeak:travelbugs>
+</groundspeak:cache>
+</wpt>
+ <wpt lat="33.366717" lon="-97.01775">
+ <time>2012-03-10T08:00:00Z</time>
+ <name>T051</name>
+ <desc>Triditional Cache 051 by TEXANS (4/4)</desc>
+ <url></url>
+ <urlname>Triditional Cache 051 by TEXANS</urlname>
+ <sym>Geocache</sym>
+ <type>Geocache|Traditional Cache</type>
+ <gsak:wptExtension xmlns:gsak="http://www.gsak.net/xmlv1/6">
+ <gsak:UserFlag>false</gsak:UserFlag>
+ <gsak:Lock>false</gsak:Lock>
+ <gsak:DNF>false</gsak:DNF>
+ <gsak:Watch>false</gsak:Watch>
+ <gsak:UserData></gsak:UserData>
+ <gsak:FirstToFind>false</gsak:FirstToFind>
+ <gsak:User2></gsak:User2>
+ <gsak:User3></gsak:User3>
+ <gsak:User4></gsak:User4>
+ <gsak:County></gsak:County>
+ <gsak:UserSort>0</gsak:UserSort>
+ <gsak:SmartName>Tridi051</gsak:SmartName>
+ <gsak:LastGpxDate>2012-03-10</gsak:LastGpxDate>
+ <gsak:Code>T051</gsak:Code>
+ <gsak:Resolution></gsak:Resolution>
+ <gsak:IsPremium>false</gsak:IsPremium>
+ <gsak:FavPoints>0</gsak:FavPoints>
+ <gsak:GcNote></gsak:GcNote>
+ <gsak:Guid></gsak:Guid>
+ <gsak:CacheImages>
+ </gsak:CacheImages>
+ <gsak:LogImages>
+ </gsak:LogImages>
+ <gsak:CustomData>
+Custom_Start:cCode:Custom_Data:T051:Custom_End
+
+ </gsak:CustomData>
+ </gsak:wptExtension>
+ <groundspeak:cache id="81" available="True" archived="False" xmlns:groundspeak="http://www.groundspeak.com/cache/1/0/1">
+ <groundspeak:name>Triditional Cache 051</groundspeak:name>
+ <groundspeak:placed_by>TEXANS</groundspeak:placed_by>
+ <groundspeak:owner id="1">TXGA</groundspeak:owner>
+ <groundspeak:type>Traditional Cache</groundspeak:type>
+ <groundspeak:container>Not chosen</groundspeak:container>
+ <groundspeak:attributes>
+ </groundspeak:attributes>
+ <groundspeak:difficulty>4</groundspeak:difficulty>
+ <groundspeak:terrain>4</groundspeak:terrain>
+ <groundspeak:country></groundspeak:country>
+ <groundspeak:state></groundspeak:state>
+ <groundspeak:short_description html="False"> </groundspeak:short_description>
+ <groundspeak:long_description html="False"> </groundspeak:long_description>
+ <groundspeak:encoded_hints></groundspeak:encoded_hints>
+ <groundspeak:logs>
+ </groundspeak:logs>
+ <groundspeak:travelbugs>
+ </groundspeak:travelbugs>
+</groundspeak:cache>
+</wpt>
+ <wpt lat="33.385483" lon="-97.000367">
+ <time>2012-03-10T08:00:00Z</time>
+ <name>T052</name>
+ <desc>Triditional Cache 052 by TEXANS (3/2)</desc>
+ <url></url>
+ <urlname>Triditional Cache 052 by TEXANS</urlname>
+ <sym>Geocache</sym>
+ <type>Geocache|Traditional Cache</type>
+ <gsak:wptExtension xmlns:gsak="http://www.gsak.net/xmlv1/6">
+ <gsak:UserFlag>false</gsak:UserFlag>
+ <gsak:Lock>false</gsak:Lock>
+ <gsak:DNF>false</gsak:DNF>
+ <gsak:Watch>false</gsak:Watch>
+ <gsak:UserData></gsak:UserData>
+ <gsak:FirstToFind>false</gsak:FirstToFind>
+ <gsak:User2></gsak:User2>
+ <gsak:User3></gsak:User3>
+ <gsak:User4></gsak:User4>
+ <gsak:County></gsak:County>
+ <gsak:UserSort>0</gsak:UserSort>
+ <gsak:SmartName>Tridi052</gsak:SmartName>
+ <gsak:LastGpxDate>2012-03-10</gsak:LastGpxDate>
+ <gsak:Code>T052</gsak:Code>
+ <gsak:Resolution></gsak:Resolution>
+ <gsak:IsPremium>false</gsak:IsPremium>
+ <gsak:FavPoints>0</gsak:FavPoints>
+ <gsak:GcNote></gsak:GcNote>
+ <gsak:Guid></gsak:Guid>
+ <gsak:CacheImages>
+ </gsak:CacheImages>
+ <gsak:LogImages>
+ </gsak:LogImages>
+ <gsak:CustomData>
+Custom_Start:cCode:Custom_Data:T052:Custom_End
+
+ </gsak:CustomData>
+ </gsak:wptExtension>
+ <groundspeak:cache id="82" available="True" archived="False" xmlns:groundspeak="http://www.groundspeak.com/cache/1/0/1">
+ <groundspeak:name>Triditional Cache 052</groundspeak:name>
+ <groundspeak:placed_by>TEXANS</groundspeak:placed_by>
+ <groundspeak:owner id="1">TXGA</groundspeak:owner>
+ <groundspeak:type>Traditional Cache</groundspeak:type>
+ <groundspeak:container>Not chosen</groundspeak:container>
+ <groundspeak:attributes>
+ </groundspeak:attributes>
+ <groundspeak:difficulty>3</groundspeak:difficulty>
+ <groundspeak:terrain>2</groundspeak:terrain>
+ <groundspeak:country></groundspeak:country>
+ <groundspeak:state></groundspeak:state>
+ <groundspeak:short_description html="False"> </groundspeak:short_description>
+ <groundspeak:long_description html="False"> </groundspeak:long_description>
+ <groundspeak:encoded_hints></groundspeak:encoded_hints>
+ <groundspeak:logs>
+ </groundspeak:logs>
+ <groundspeak:travelbugs>
+ </groundspeak:travelbugs>
+</groundspeak:cache>
+</wpt>
+ <wpt lat="33.395717" lon="-96.99185">
+ <time>2012-03-10T08:00:00Z</time>
+ <name>T054</name>
+ <desc>Triditional Cache 054 by TEXANS (2/2)</desc>
+ <url></url>
+ <urlname>Triditional Cache 054 by TEXANS</urlname>
+ <sym>Geocache</sym>
+ <type>Geocache|Traditional Cache</type>
+ <gsak:wptExtension xmlns:gsak="http://www.gsak.net/xmlv1/6">
+ <gsak:UserFlag>false</gsak:UserFlag>
+ <gsak:Lock>false</gsak:Lock>
+ <gsak:DNF>false</gsak:DNF>
+ <gsak:Watch>false</gsak:Watch>
+ <gsak:UserData></gsak:UserData>
+ <gsak:FirstToFind>false</gsak:FirstToFind>
+ <gsak:User2></gsak:User2>
+ <gsak:User3></gsak:User3>
+ <gsak:User4></gsak:User4>
+ <gsak:County></gsak:County>
+ <gsak:UserSort>0</gsak:UserSort>
+ <gsak:SmartName>Tridi054</gsak:SmartName>
+ <gsak:LastGpxDate>2012-03-10</gsak:LastGpxDate>
+ <gsak:Code>T054</gsak:Code>
+ <gsak:Resolution></gsak:Resolution>
+ <gsak:IsPremium>false</gsak:IsPremium>
+ <gsak:FavPoints>0</gsak:FavPoints>
+ <gsak:GcNote></gsak:GcNote>
+ <gsak:Guid></gsak:Guid>
+ <gsak:CacheImages>
+ </gsak:CacheImages>
+ <gsak:LogImages>
+ </gsak:LogImages>
+ <gsak:CustomData>
+Custom_Start:cCode:Custom_Data:T054:Custom_End
+
+ </gsak:CustomData>
+ </gsak:wptExtension>
+ <groundspeak:cache id="84" available="True" archived="False" xmlns:groundspeak="http://www.groundspeak.com/cache/1/0/1">
+ <groundspeak:name>Triditional Cache 054</groundspeak:name>
+ <groundspeak:placed_by>TEXANS</groundspeak:placed_by>
+ <groundspeak:owner id="1">TXGA</groundspeak:owner>
+ <groundspeak:type>Traditional Cache</groundspeak:type>
+ <groundspeak:container>Not chosen</groundspeak:container>
+ <groundspeak:attributes>
+ </groundspeak:attributes>
+ <groundspeak:difficulty>2</groundspeak:difficulty>
+ <groundspeak:terrain>2</groundspeak:terrain>
+ <groundspeak:country></groundspeak:country>
+ <groundspeak:state></groundspeak:state>
+ <groundspeak:short_description html="False"> </groundspeak:short_description>
+ <groundspeak:long_description html="False"> </groundspeak:long_description>
+ <groundspeak:encoded_hints></groundspeak:encoded_hints>
+ <groundspeak:logs>
+ </groundspeak:logs>
+ <groundspeak:travelbugs>
+ </groundspeak:travelbugs>
+</groundspeak:cache>
+</wpt>
+ <wpt lat="33.381517" lon="-97.012467">
+ <time>2012-03-10T08:00:00Z</time>
+ <name>T055</name>
+ <desc>Triditional Cache 055 by TEXANS (2/2)</desc>
+ <url></url>
+ <urlname>Triditional Cache 055 by TEXANS</urlname>
+ <sym>Geocache</sym>
+ <type>Geocache|Traditional Cache</type>
+ <gsak:wptExtension xmlns:gsak="http://www.gsak.net/xmlv1/6">
+ <gsak:UserFlag>false</gsak:UserFlag>
+ <gsak:Lock>false</gsak:Lock>
+ <gsak:DNF>false</gsak:DNF>
+ <gsak:Watch>false</gsak:Watch>
+ <gsak:UserData></gsak:UserData>
+ <gsak:FirstToFind>false</gsak:FirstToFind>
+ <gsak:User2></gsak:User2>
+ <gsak:User3></gsak:User3>
+ <gsak:User4></gsak:User4>
+ <gsak:County></gsak:County>
+ <gsak:UserSort>0</gsak:UserSort>
+ <gsak:SmartName>Tridi055</gsak:SmartName>
+ <gsak:LastGpxDate>2012-03-10</gsak:LastGpxDate>
+ <gsak:Code>T055</gsak:Code>
+ <gsak:Resolution></gsak:Resolution>
+ <gsak:IsPremium>false</gsak:IsPremium>
+ <gsak:FavPoints>0</gsak:FavPoints>
+ <gsak:GcNote></gsak:GcNote>
+ <gsak:Guid></gsak:Guid>
+ <gsak:CacheImages>
+ </gsak:CacheImages>
+ <gsak:LogImages>
+ </gsak:LogImages>
+ <gsak:CustomData>
+Custom_Start:cCode:Custom_Data:T055:Custom_End
+
+ </gsak:CustomData>
+ </gsak:wptExtension>
+ <groundspeak:cache id="85" available="True" archived="False" xmlns:groundspeak="http://www.groundspeak.com/cache/1/0/1">
+ <groundspeak:name>Triditional Cache 055</groundspeak:name>
+ <groundspeak:placed_by>TEXANS</groundspeak:placed_by>
+ <groundspeak:owner id="1">TXGA</groundspeak:owner>
+ <groundspeak:type>Traditional Cache</groundspeak:type>
+ <groundspeak:container>Not chosen</groundspeak:container>
+ <groundspeak:attributes>
+ </groundspeak:attributes>
+ <groundspeak:difficulty>2</groundspeak:difficulty>
+ <groundspeak:terrain>2</groundspeak:terrain>
+ <groundspeak:country></groundspeak:country>
+ <groundspeak:state></groundspeak:state>
+ <groundspeak:short_description html="False"> </groundspeak:short_description>
+ <groundspeak:long_description html="False"> </groundspeak:long_description>
+ <groundspeak:encoded_hints></groundspeak:encoded_hints>
+ <groundspeak:logs>
+ </groundspeak:logs>
+ <groundspeak:travelbugs>
+ </groundspeak:travelbugs>
+</groundspeak:cache>
+</wpt>
+ <wpt lat="33.364483" lon="-97.0144">
+ <time>2012-03-10T08:00:00Z</time>
+ <name>T057</name>
+ <desc>Triditional Cache 057 by TEXANS (2.5/2.5)</desc>
+ <url></url>
+ <urlname>Triditional Cache 057 by TEXANS</urlname>
+ <sym>Geocache</sym>
+ <type>Geocache|Traditional Cache</type>
+ <gsak:wptExtension xmlns:gsak="http://www.gsak.net/xmlv1/6">
+ <gsak:UserFlag>false</gsak:UserFlag>
+ <gsak:Lock>false</gsak:Lock>
+ <gsak:DNF>false</gsak:DNF>
+ <gsak:Watch>false</gsak:Watch>
+ <gsak:UserData></gsak:UserData>
+ <gsak:FirstToFind>false</gsak:FirstToFind>
+ <gsak:User2></gsak:User2>
+ <gsak:User3></gsak:User3>
+ <gsak:User4></gsak:User4>
+ <gsak:County></gsak:County>
+ <gsak:UserSort>0</gsak:UserSort>
+ <gsak:SmartName>Tridi057</gsak:SmartName>
+ <gsak:LastGpxDate>2012-03-10</gsak:LastGpxDate>
+ <gsak:Code>T057</gsak:Code>
+ <gsak:Resolution></gsak:Resolution>
+ <gsak:IsPremium>false</gsak:IsPremium>
+ <gsak:FavPoints>0</gsak:FavPoints>
+ <gsak:GcNote></gsak:GcNote>
+ <gsak:Guid></gsak:Guid>
+ <gsak:CacheImages>
+ </gsak:CacheImages>
+ <gsak:LogImages>
+ </gsak:LogImages>
+ <gsak:CustomData>
+Custom_Start:cCode:Custom_Data:T057:Custom_End
+
+ </gsak:CustomData>
+ </gsak:wptExtension>
+ <groundspeak:cache id="87" available="True" archived="False" xmlns:groundspeak="http://www.groundspeak.com/cache/1/0/1">
+ <groundspeak:name>Triditional Cache 057</groundspeak:name>
+ <groundspeak:placed_by>TEXANS</groundspeak:placed_by>
+ <groundspeak:owner id="1">TXGA</groundspeak:owner>
+ <groundspeak:type>Traditional Cache</groundspeak:type>
+ <groundspeak:container>Not chosen</groundspeak:container>
+ <groundspeak:attributes>
+ </groundspeak:attributes>
+ <groundspeak:difficulty>2.5</groundspeak:difficulty>
+ <groundspeak:terrain>2.5</groundspeak:terrain>
+ <groundspeak:country></groundspeak:country>
+ <groundspeak:state></groundspeak:state>
+ <groundspeak:short_description html="False"> </groundspeak:short_description>
+ <groundspeak:long_description html="False"> </groundspeak:long_description>
+ <groundspeak:encoded_hints></groundspeak:encoded_hints>
+ <groundspeak:logs>
+ </groundspeak:logs>
+ <groundspeak:travelbugs>
+ </groundspeak:travelbugs>
+</groundspeak:cache>
+</wpt>
+ <wpt lat="33.376317" lon="-97.017717">
+ <time>2012-03-10T08:00:00Z</time>
+ <name>T059</name>
+ <desc>Triditional Cache 059 by TEXANS (1/1.5)</desc>
+ <url></url>
+ <urlname>Triditional Cache 059 by TEXANS</urlname>
+ <sym>Geocache</sym>
+ <type>Geocache|Traditional Cache</type>
+ <gsak:wptExtension xmlns:gsak="http://www.gsak.net/xmlv1/6">
+ <gsak:UserFlag>false</gsak:UserFlag>
+ <gsak:Lock>false</gsak:Lock>
+ <gsak:DNF>false</gsak:DNF>
+ <gsak:Watch>false</gsak:Watch>
+ <gsak:UserData></gsak:UserData>
+ <gsak:FirstToFind>false</gsak:FirstToFind>
+ <gsak:User2></gsak:User2>
+ <gsak:User3></gsak:User3>
+ <gsak:User4></gsak:User4>
+ <gsak:County></gsak:County>
+ <gsak:UserSort>0</gsak:UserSort>
+ <gsak:SmartName>Tridi059</gsak:SmartName>
+ <gsak:LastGpxDate>2012-03-10</gsak:LastGpxDate>
+ <gsak:Code>T059</gsak:Code>
+ <gsak:Resolution></gsak:Resolution>
+ <gsak:IsPremium>false</gsak:IsPremium>
+ <gsak:FavPoints>0</gsak:FavPoints>
+ <gsak:GcNote></gsak:GcNote>
+ <gsak:Guid></gsak:Guid>
+ <gsak:CacheImages>
+ </gsak:CacheImages>
+ <gsak:LogImages>
+ </gsak:LogImages>
+ <gsak:CustomData>
+Custom_Start:cCode:Custom_Data:T059:Custom_End
+
+ </gsak:CustomData>
+ </gsak:wptExtension>
+ <groundspeak:cache id="89" available="True" archived="False" xmlns:groundspeak="http://www.groundspeak.com/cache/1/0/1">
+ <groundspeak:name>Triditional Cache 059</groundspeak:name>
+ <groundspeak:placed_by>TEXANS</groundspeak:placed_by>
+ <groundspeak:owner id="1">TXGA</groundspeak:owner>
+ <groundspeak:type>Traditional Cache</groundspeak:type>
+ <groundspeak:container>Not chosen</groundspeak:container>
+ <groundspeak:attributes>
+ </groundspeak:attributes>
+ <groundspeak:difficulty>1</groundspeak:difficulty>
+ <groundspeak:terrain>1.5</groundspeak:terrain>
+ <groundspeak:country></groundspeak:country>
+ <groundspeak:state></groundspeak:state>
+ <groundspeak:short_description html="False"> </groundspeak:short_description>
+ <groundspeak:long_description html="False"> </groundspeak:long_description>
+ <groundspeak:encoded_hints></groundspeak:encoded_hints>
+ <groundspeak:logs>
+ </groundspeak:logs>
+ <groundspeak:travelbugs>
+ </groundspeak:travelbugs>
+</groundspeak:cache>
+</wpt>
+ <wpt lat="33.37185" lon="-97.01195">
+ <time>2012-03-10T08:00:00Z</time>
+ <name>T060</name>
+ <desc>Triditional Cache 060 by TEXANS (3/4)</desc>
+ <url></url>
+ <urlname>Triditional Cache 060 by TEXANS</urlname>
+ <sym>Geocache</sym>
+ <type>Geocache|Traditional Cache</type>
+ <gsak:wptExtension xmlns:gsak="http://www.gsak.net/xmlv1/6">
+ <gsak:UserFlag>false</gsak:UserFlag>
+ <gsak:Lock>false</gsak:Lock>
+ <gsak:DNF>false</gsak:DNF>
+ <gsak:Watch>false</gsak:Watch>
+ <gsak:UserData></gsak:UserData>
+ <gsak:FirstToFind>false</gsak:FirstToFind>
+ <gsak:User2></gsak:User2>
+ <gsak:User3></gsak:User3>
+ <gsak:User4></gsak:User4>
+ <gsak:County></gsak:County>
+ <gsak:UserSort>0</gsak:UserSort>
+ <gsak:SmartName>Tridi060</gsak:SmartName>
+ <gsak:LastGpxDate>2012-03-10</gsak:LastGpxDate>
+ <gsak:Code>T060</gsak:Code>
+ <gsak:Resolution></gsak:Resolution>
+ <gsak:IsPremium>false</gsak:IsPremium>
+ <gsak:FavPoints>0</gsak:FavPoints>
+ <gsak:GcNote></gsak:GcNote>
+ <gsak:Guid></gsak:Guid>
+ <gsak:CacheImages>
+ </gsak:CacheImages>
+ <gsak:LogImages>
+ </gsak:LogImages>
+ <gsak:CustomData>
+Custom_Start:cCode:Custom_Data:T060:Custom_End
+
+ </gsak:CustomData>
+ </gsak:wptExtension>
+ <groundspeak:cache id="96" available="True" archived="False" xmlns:groundspeak="http://www.groundspeak.com/cache/1/0/1">
+ <groundspeak:name>Triditional Cache 060</groundspeak:name>
+ <groundspeak:placed_by>TEXANS</groundspeak:placed_by>
+ <groundspeak:owner id="1">TXGA</groundspeak:owner>
+ <groundspeak:type>Traditional Cache</groundspeak:type>
+ <groundspeak:container>Not chosen</groundspeak:container>
+ <groundspeak:attributes>
+ </groundspeak:attributes>
+ <groundspeak:difficulty>3</groundspeak:difficulty>
+ <groundspeak:terrain>4</groundspeak:terrain>
+ <groundspeak:country></groundspeak:country>
+ <groundspeak:state></groundspeak:state>
+ <groundspeak:short_description html="False"> </groundspeak:short_description>
+ <groundspeak:long_description html="False"> </groundspeak:long_description>
+ <groundspeak:encoded_hints></groundspeak:encoded_hints>
+ <groundspeak:logs>
+ </groundspeak:logs>
+ <groundspeak:travelbugs>
+ </groundspeak:travelbugs>
+</groundspeak:cache>
+</wpt>
+ <wpt lat="33.361967" lon="-97.018">
+ <time>2012-03-10T08:00:00Z</time>
+ <name>T061</name>
+ <desc>Triditional Cache 061 by TEXANS (3/4.5)</desc>
+ <url></url>
+ <urlname>Triditional Cache 061 by TEXANS</urlname>
+ <sym>Geocache</sym>
+ <type>Geocache|Traditional Cache</type>
+ <gsak:wptExtension xmlns:gsak="http://www.gsak.net/xmlv1/6">
+ <gsak:UserFlag>false</gsak:UserFlag>
+ <gsak:Lock>false</gsak:Lock>
+ <gsak:DNF>false</gsak:DNF>
+ <gsak:Watch>false</gsak:Watch>
+ <gsak:UserData></gsak:UserData>
+ <gsak:FirstToFind>false</gsak:FirstToFind>
+ <gsak:User2></gsak:User2>
+ <gsak:User3></gsak:User3>
+ <gsak:User4></gsak:User4>
+ <gsak:County></gsak:County>
+ <gsak:UserSort>0</gsak:UserSort>
+ <gsak:SmartName>Tridi061</gsak:SmartName>
+ <gsak:LastGpxDate>2012-03-10</gsak:LastGpxDate>
+ <gsak:Code>T061</gsak:Code>
+ <gsak:Resolution></gsak:Resolution>
+ <gsak:IsPremium>false</gsak:IsPremium>
+ <gsak:FavPoints>0</gsak:FavPoints>
+ <gsak:GcNote></gsak:GcNote>
+ <gsak:Guid></gsak:Guid>
+ <gsak:CacheImages>
+ </gsak:CacheImages>
+ <gsak:LogImages>
+ </gsak:LogImages>
+ <gsak:CustomData>
+Custom_Start:cCode:Custom_Data:T061:Custom_End
+
+ </gsak:CustomData>
+ </gsak:wptExtension>
+ <groundspeak:cache id="97" available="True" archived="False" xmlns:groundspeak="http://www.groundspeak.com/cache/1/0/1">
+ <groundspeak:name>Triditional Cache 061</groundspeak:name>
+ <groundspeak:placed_by>TEXANS</groundspeak:placed_by>
+ <groundspeak:owner id="1">TXGA</groundspeak:owner>
+ <groundspeak:type>Traditional Cache</groundspeak:type>
+ <groundspeak:container>Not chosen</groundspeak:container>
+ <groundspeak:attributes>
+ </groundspeak:attributes>
+ <groundspeak:difficulty>3</groundspeak:difficulty>
+ <groundspeak:terrain>4.5</groundspeak:terrain>
+ <groundspeak:country></groundspeak:country>
+ <groundspeak:state></groundspeak:state>
+ <groundspeak:short_description html="False"> </groundspeak:short_description>
+ <groundspeak:long_description html="False"> </groundspeak:long_description>
+ <groundspeak:encoded_hints></groundspeak:encoded_hints>
+ <groundspeak:logs>
+ </groundspeak:logs>
+ <groundspeak:travelbugs>
+ </groundspeak:travelbugs>
+</groundspeak:cache>
+</wpt>
+ <wpt lat="33.381833" lon="-97.02755">
+ <time>2012-03-10T08:00:00Z</time>
+ <name>T062</name>
+ <desc>Triditional Cache 062 by TEXANS (1/2)</desc>
+ <url></url>
+ <urlname>Triditional Cache 062 by TEXANS</urlname>
+ <sym>Geocache</sym>
+ <type>Geocache|Traditional Cache</type>
+ <gsak:wptExtension xmlns:gsak="http://www.gsak.net/xmlv1/6">
+ <gsak:UserFlag>false</gsak:UserFlag>
+ <gsak:Lock>false</gsak:Lock>
+ <gsak:DNF>false</gsak:DNF>
+ <gsak:Watch>false</gsak:Watch>
+ <gsak:UserData></gsak:UserData>
+ <gsak:FirstToFind>false</gsak:FirstToFind>
+ <gsak:User2></gsak:User2>
+ <gsak:User3></gsak:User3>
+ <gsak:User4></gsak:User4>
+ <gsak:County></gsak:County>
+ <gsak:UserSort>0</gsak:UserSort>
+ <gsak:SmartName>Tridi062</gsak:SmartName>
+ <gsak:LastGpxDate>2012-03-10</gsak:LastGpxDate>
+ <gsak:Code>T062</gsak:Code>
+ <gsak:Resolution></gsak:Resolution>
+ <gsak:IsPremium>false</gsak:IsPremium>
+ <gsak:FavPoints>0</gsak:FavPoints>
+ <gsak:GcNote></gsak:GcNote>
+ <gsak:Guid></gsak:Guid>
+ <gsak:CacheImages>
+ </gsak:CacheImages>
+ <gsak:LogImages>
+ </gsak:LogImages>
+ <gsak:CustomData>
+Custom_Start:cCode:Custom_Data:T062:Custom_End
+
+ </gsak:CustomData>
+ </gsak:wptExtension>
+ <groundspeak:cache id="98" available="True" archived="False" xmlns:groundspeak="http://www.groundspeak.com/cache/1/0/1">
+ <groundspeak:name>Triditional Cache 062</groundspeak:name>
+ <groundspeak:placed_by>TEXANS</groundspeak:placed_by>
+ <groundspeak:owner id="1">TXGA</groundspeak:owner>
+ <groundspeak:type>Traditional Cache</groundspeak:type>
+ <groundspeak:container>Not chosen</groundspeak:container>
+ <groundspeak:attributes>
+ </groundspeak:attributes>
+ <groundspeak:difficulty>1</groundspeak:difficulty>
+ <groundspeak:terrain>2</groundspeak:terrain>
+ <groundspeak:country></groundspeak:country>
+ <groundspeak:state></groundspeak:state>
+ <groundspeak:short_description html="False"> </groundspeak:short_description>
+ <groundspeak:long_description html="False"> </groundspeak:long_description>
+ <groundspeak:encoded_hints></groundspeak:encoded_hints>
+ <groundspeak:logs>
+ </groundspeak:logs>
+ <groundspeak:travelbugs>
+ </groundspeak:travelbugs>
+</groundspeak:cache>
+</wpt>
+ <wpt lat="33.367467" lon="-97.011517">
+ <time>2012-03-10T08:00:00Z</time>
+ <name>T064</name>
+ <desc>Triditional Cache 064 by TEXANS (3/3)</desc>
+ <url></url>
+ <urlname>Triditional Cache 064 by TEXANS</urlname>
+ <sym>Geocache</sym>
+ <type>Geocache|Traditional Cache</type>
+ <gsak:wptExtension xmlns:gsak="http://www.gsak.net/xmlv1/6">
+ <gsak:UserFlag>false</gsak:UserFlag>
+ <gsak:Lock>false</gsak:Lock>
+ <gsak:DNF>false</gsak:DNF>
+ <gsak:Watch>false</gsak:Watch>
+ <gsak:UserData></gsak:UserData>
+ <gsak:FirstToFind>false</gsak:FirstToFind>
+ <gsak:User2></gsak:User2>
+ <gsak:User3></gsak:User3>
+ <gsak:User4></gsak:User4>
+ <gsak:County></gsak:County>
+ <gsak:UserSort>0</gsak:UserSort>
+ <gsak:SmartName>Tridi064</gsak:SmartName>
+ <gsak:LastGpxDate>2012-03-10</gsak:LastGpxDate>
+ <gsak:Code>T064</gsak:Code>
+ <gsak:Resolution></gsak:Resolution>
+ <gsak:IsPremium>false</gsak:IsPremium>
+ <gsak:FavPoints>0</gsak:FavPoints>
+ <gsak:GcNote></gsak:GcNote>
+ <gsak:Guid></gsak:Guid>
+ <gsak:CacheImages>
+ </gsak:CacheImages>
+ <gsak:LogImages>
+ </gsak:LogImages>
+ <gsak:CustomData>
+Custom_Start:cCode:Custom_Data:T064:Custom_End
+
+ </gsak:CustomData>
+ </gsak:wptExtension>
+ <groundspeak:cache id="100" available="True" archived="False" xmlns:groundspeak="http://www.groundspeak.com/cache/1/0/1">
+ <groundspeak:name>Triditional Cache 064</groundspeak:name>
+ <groundspeak:placed_by>TEXANS</groundspeak:placed_by>
+ <groundspeak:owner id="1">TXGA</groundspeak:owner>
+ <groundspeak:type>Traditional Cache</groundspeak:type>
+ <groundspeak:container>Not chosen</groundspeak:container>
+ <groundspeak:attributes>
+ </groundspeak:attributes>
+ <groundspeak:difficulty>3</groundspeak:difficulty>
+ <groundspeak:terrain>3</groundspeak:terrain>
+ <groundspeak:country></groundspeak:country>
+ <groundspeak:state></groundspeak:state>
+ <groundspeak:short_description html="False"> </groundspeak:short_description>
+ <groundspeak:long_description html="False"> </groundspeak:long_description>
+ <groundspeak:encoded_hints></groundspeak:encoded_hints>
+ <groundspeak:logs>
+ </groundspeak:logs>
+ <groundspeak:travelbugs>
+ </groundspeak:travelbugs>
+</groundspeak:cache>
+</wpt>
+ <wpt lat="33.385583" lon="-96.99735">
+ <time>2012-03-10T08:00:00Z</time>
+ <name>T065</name>
+ <desc>Triditional Cache 065 by TEXANS (4/2)</desc>
+ <url></url>
+ <urlname>Triditional Cache 065 by TEXANS</urlname>
+ <sym>Geocache</sym>
+ <type>Geocache|Traditional Cache</type>
+ <gsak:wptExtension xmlns:gsak="http://www.gsak.net/xmlv1/6">
+ <gsak:UserFlag>false</gsak:UserFlag>
+ <gsak:Lock>false</gsak:Lock>
+ <gsak:DNF>false</gsak:DNF>
+ <gsak:Watch>false</gsak:Watch>
+ <gsak:UserData></gsak:UserData>
+ <gsak:FirstToFind>false</gsak:FirstToFind>
+ <gsak:User2></gsak:User2>
+ <gsak:User3></gsak:User3>
+ <gsak:User4></gsak:User4>
+ <gsak:County></gsak:County>
+ <gsak:UserSort>0</gsak:UserSort>
+ <gsak:SmartName>Tridi065</gsak:SmartName>
+ <gsak:LastGpxDate>2012-03-10</gsak:LastGpxDate>
+ <gsak:Code>T065</gsak:Code>
+ <gsak:Resolution></gsak:Resolution>
+ <gsak:IsPremium>false</gsak:IsPremium>
+ <gsak:FavPoints>0</gsak:FavPoints>
+ <gsak:GcNote></gsak:GcNote>
+ <gsak:Guid></gsak:Guid>
+ <gsak:CacheImages>
+ </gsak:CacheImages>
+ <gsak:LogImages>
+ </gsak:LogImages>
+ <gsak:CustomData>
+Custom_Start:cCode:Custom_Data:T065:Custom_End
+
+ </gsak:CustomData>
+ </gsak:wptExtension>
+ <groundspeak:cache id="101" available="True" archived="False" xmlns:groundspeak="http://www.groundspeak.com/cache/1/0/1">
+ <groundspeak:name>Triditional Cache 065</groundspeak:name>
+ <groundspeak:placed_by>TEXANS</groundspeak:placed_by>
+ <groundspeak:owner id="1">TXGA</groundspeak:owner>
+ <groundspeak:type>Traditional Cache</groundspeak:type>
+ <groundspeak:container>Not chosen</groundspeak:container>
+ <groundspeak:attributes>
+ </groundspeak:attributes>
+ <groundspeak:difficulty>4</groundspeak:difficulty>
+ <groundspeak:terrain>2</groundspeak:terrain>
+ <groundspeak:country></groundspeak:country>
+ <groundspeak:state></groundspeak:state>
+ <groundspeak:short_description html="False"> </groundspeak:short_description>
+ <groundspeak:long_description html="False"> </groundspeak:long_description>
+ <groundspeak:encoded_hints></groundspeak:encoded_hints>
+ <groundspeak:logs>
+ </groundspeak:logs>
+ <groundspeak:travelbugs>
+ </groundspeak:travelbugs>
+</groundspeak:cache>
+</wpt>
+ <wpt lat="33.37005" lon="-97.008667">
+ <time>2012-03-10T08:00:00Z</time>
+ <name>T066</name>
+ <desc>Triditional Cache 066 by TEXANS (3/3.5)</desc>
+ <url></url>
+ <urlname>Triditional Cache 066 by TEXANS</urlname>
+ <sym>Geocache</sym>
+ <type>Geocache|Traditional Cache</type>
+ <gsak:wptExtension xmlns:gsak="http://www.gsak.net/xmlv1/6">
+ <gsak:UserFlag>false</gsak:UserFlag>
+ <gsak:Lock>false</gsak:Lock>
+ <gsak:DNF>false</gsak:DNF>
+ <gsak:Watch>false</gsak:Watch>
+ <gsak:UserData></gsak:UserData>
+ <gsak:FirstToFind>false</gsak:FirstToFind>
+ <gsak:User2></gsak:User2>
+ <gsak:User3></gsak:User3>
+ <gsak:User4></gsak:User4>
+ <gsak:County></gsak:County>
+ <gsak:UserSort>0</gsak:UserSort>
+ <gsak:SmartName>Tridi066</gsak:SmartName>
+ <gsak:LastGpxDate>2012-03-10</gsak:LastGpxDate>
+ <gsak:Code>T066</gsak:Code>
+ <gsak:Resolution></gsak:Resolution>
+ <gsak:IsPremium>false</gsak:IsPremium>
+ <gsak:FavPoints>0</gsak:FavPoints>
+ <gsak:GcNote></gsak:GcNote>
+ <gsak:Guid></gsak:Guid>
+ <gsak:CacheImages>
+ </gsak:CacheImages>
+ <gsak:LogImages>
+ </gsak:LogImages>
+ <gsak:CustomData>
+Custom_Start:cCode:Custom_Data:T066:Custom_End
+
+ </gsak:CustomData>
+ </gsak:wptExtension>
+ <groundspeak:cache id="102" available="True" archived="False" xmlns:groundspeak="http://www.groundspeak.com/cache/1/0/1">
+ <groundspeak:name>Triditional Cache 066</groundspeak:name>
+ <groundspeak:placed_by>TEXANS</groundspeak:placed_by>
+ <groundspeak:owner id="1">TXGA</groundspeak:owner>
+ <groundspeak:type>Traditional Cache</groundspeak:type>
+ <groundspeak:container>Not chosen</groundspeak:container>
+ <groundspeak:attributes>
+ </groundspeak:attributes>
+ <groundspeak:difficulty>3</groundspeak:difficulty>
+ <groundspeak:terrain>3.5</groundspeak:terrain>
+ <groundspeak:country></groundspeak:country>
+ <groundspeak:state></groundspeak:state>
+ <groundspeak:short_description html="False"> </groundspeak:short_description>
+ <groundspeak:long_description html="False"> </groundspeak:long_description>
+ <groundspeak:encoded_hints></groundspeak:encoded_hints>
+ <groundspeak:logs>
+ </groundspeak:logs>
+ <groundspeak:travelbugs>
+ </groundspeak:travelbugs>
+</groundspeak:cache>
+</wpt>
+ <wpt lat="33.385" lon="-97.02055">
+ <time>2012-03-10T08:00:00Z</time>
+ <name>T067</name>
+ <desc>Triditional Cache 067 by TEXANS (1.5/3.5)</desc>
+ <url></url>
+ <urlname>Triditional Cache 067 by TEXANS</urlname>
+ <sym>Geocache</sym>
+ <type>Geocache|Traditional Cache</type>
+ <gsak:wptExtension xmlns:gsak="http://www.gsak.net/xmlv1/6">
+ <gsak:UserFlag>false</gsak:UserFlag>
+ <gsak:Lock>false</gsak:Lock>
+ <gsak:DNF>false</gsak:DNF>
+ <gsak:Watch>false</gsak:Watch>
+ <gsak:UserData></gsak:UserData>
+ <gsak:FirstToFind>false</gsak:FirstToFind>
+ <gsak:User2></gsak:User2>
+ <gsak:User3></gsak:User3>
+ <gsak:User4></gsak:User4>
+ <gsak:County></gsak:County>
+ <gsak:UserSort>0</gsak:UserSort>
+ <gsak:SmartName>Tridi067</gsak:SmartName>
+ <gsak:LastGpxDate>2012-03-10</gsak:LastGpxDate>
+ <gsak:Code>T067</gsak:Code>
+ <gsak:Resolution></gsak:Resolution>
+ <gsak:IsPremium>false</gsak:IsPremium>
+ <gsak:FavPoints>0</gsak:FavPoints>
+ <gsak:GcNote></gsak:GcNote>
+ <gsak:Guid></gsak:Guid>
+ <gsak:CacheImages>
+ </gsak:CacheImages>
+ <gsak:LogImages>
+ </gsak:LogImages>
+ <gsak:CustomData>
+Custom_Start:cCode:Custom_Data:T067:Custom_End
+
+ </gsak:CustomData>
+ </gsak:wptExtension>
+ <groundspeak:cache id="103" available="True" archived="False" xmlns:groundspeak="http://www.groundspeak.com/cache/1/0/1">
+ <groundspeak:name>Triditional Cache 067</groundspeak:name>
+ <groundspeak:placed_by>TEXANS</groundspeak:placed_by>
+ <groundspeak:owner id="1">TXGA</groundspeak:owner>
+ <groundspeak:type>Traditional Cache</groundspeak:type>
+ <groundspeak:container>Not chosen</groundspeak:container>
+ <groundspeak:attributes>
+ </groundspeak:attributes>
+ <groundspeak:difficulty>1.5</groundspeak:difficulty>
+ <groundspeak:terrain>3.5</groundspeak:terrain>
+ <groundspeak:country></groundspeak:country>
+ <groundspeak:state></groundspeak:state>
+ <groundspeak:short_description html="False"> </groundspeak:short_description>
+ <groundspeak:long_description html="False"> </groundspeak:long_description>
+ <groundspeak:encoded_hints></groundspeak:encoded_hints>
+ <groundspeak:logs>
+ </groundspeak:logs>
+ <groundspeak:travelbugs>
+ </groundspeak:travelbugs>
+</groundspeak:cache>
+</wpt>
+ <wpt lat="33.379333" lon="-97.019417">
+ <time>2012-03-10T08:00:00Z</time>
+ <name>T068</name>
+ <desc>Triditional Cache 068 by TEXANS (1.5/2.5)</desc>
+ <url></url>
+ <urlname>Triditional Cache 068 by TEXANS</urlname>
+ <sym>Geocache</sym>
+ <type>Geocache|Traditional Cache</type>
+ <gsak:wptExtension xmlns:gsak="http://www.gsak.net/xmlv1/6">
+ <gsak:UserFlag>false</gsak:UserFlag>
+ <gsak:Lock>false</gsak:Lock>
+ <gsak:DNF>false</gsak:DNF>
+ <gsak:Watch>false</gsak:Watch>
+ <gsak:UserData></gsak:UserData>
+ <gsak:FirstToFind>false</gsak:FirstToFind>
+ <gsak:User2></gsak:User2>
+ <gsak:User3></gsak:User3>
+ <gsak:User4></gsak:User4>
+ <gsak:County></gsak:County>
+ <gsak:UserSort>0</gsak:UserSort>
+ <gsak:SmartName>Tridi068</gsak:SmartName>
+ <gsak:LastGpxDate>2012-03-10</gsak:LastGpxDate>
+ <gsak:Code>T068</gsak:Code>
+ <gsak:Resolution></gsak:Resolution>
+ <gsak:IsPremium>false</gsak:IsPremium>
+ <gsak:FavPoints>0</gsak:FavPoints>
+ <gsak:GcNote></gsak:GcNote>
+ <gsak:Guid></gsak:Guid>
+ <gsak:CacheImages>
+ </gsak:CacheImages>
+ <gsak:LogImages>
+ </gsak:LogImages>
+ <gsak:CustomData>
+Custom_Start:cCode:Custom_Data:T068:Custom_End
+
+ </gsak:CustomData>
+ </gsak:wptExtension>
+ <groundspeak:cache id="104" available="True" archived="False" xmlns:groundspeak="http://www.groundspeak.com/cache/1/0/1">
+ <groundspeak:name>Triditional Cache 068</groundspeak:name>
+ <groundspeak:placed_by>TEXANS</groundspeak:placed_by>
+ <groundspeak:owner id="1">TXGA</groundspeak:owner>
+ <groundspeak:type>Traditional Cache</groundspeak:type>
+ <groundspeak:container>Not chosen</groundspeak:container>
+ <groundspeak:attributes>
+ </groundspeak:attributes>
+ <groundspeak:difficulty>1.5</groundspeak:difficulty>
+ <groundspeak:terrain>2.5</groundspeak:terrain>
+ <groundspeak:country></groundspeak:country>
+ <groundspeak:state></groundspeak:state>
+ <groundspeak:short_description html="False"> </groundspeak:short_description>
+ <groundspeak:long_description html="False"> </groundspeak:long_description>
+ <groundspeak:encoded_hints></groundspeak:encoded_hints>
+ <groundspeak:logs>
+ </groundspeak:logs>
+ <groundspeak:travelbugs>
+ </groundspeak:travelbugs>
+</groundspeak:cache>
+</wpt>
+ <wpt lat="33.398067" lon="-96.995">
+ <time>2012-03-10T08:00:00Z</time>
+ <name>T069</name>
+ <desc>Triditional Cache 069 by TEXANS (1/1.5)</desc>
+ <url></url>
+ <urlname>Triditional Cache 069 by TEXANS</urlname>
+ <sym>Geocache</sym>
+ <type>Geocache|Traditional Cache</type>
+ <gsak:wptExtension xmlns:gsak="http://www.gsak.net/xmlv1/6">
+ <gsak:UserFlag>false</gsak:UserFlag>
+ <gsak:Lock>false</gsak:Lock>
+ <gsak:DNF>false</gsak:DNF>
+ <gsak:Watch>false</gsak:Watch>
+ <gsak:UserData></gsak:UserData>
+ <gsak:FirstToFind>false</gsak:FirstToFind>
+ <gsak:User2></gsak:User2>
+ <gsak:User3></gsak:User3>
+ <gsak:User4></gsak:User4>
+ <gsak:County></gsak:County>
+ <gsak:UserSort>0</gsak:UserSort>
+ <gsak:SmartName>Tridi069</gsak:SmartName>
+ <gsak:LastGpxDate>2012-03-10</gsak:LastGpxDate>
+ <gsak:Code>T069</gsak:Code>
+ <gsak:Resolution></gsak:Resolution>
+ <gsak:IsPremium>false</gsak:IsPremium>
+ <gsak:FavPoints>0</gsak:FavPoints>
+ <gsak:GcNote></gsak:GcNote>
+ <gsak:Guid></gsak:Guid>
+ <gsak:CacheImages>
+ </gsak:CacheImages>
+ <gsak:LogImages>
+ </gsak:LogImages>
+ <gsak:CustomData>
+Custom_Start:cCode:Custom_Data:T069:Custom_End
+
+ </gsak:CustomData>
+ </gsak:wptExtension>
+ <groundspeak:cache id="105" available="True" archived="False" xmlns:groundspeak="http://www.groundspeak.com/cache/1/0/1">
+ <groundspeak:name>Triditional Cache 069</groundspeak:name>
+ <groundspeak:placed_by>TEXANS</groundspeak:placed_by>
+ <groundspeak:owner id="1">TXGA</groundspeak:owner>
+ <groundspeak:type>Traditional Cache</groundspeak:type>
+ <groundspeak:container>Not chosen</groundspeak:container>
+ <groundspeak:attributes>
+ </groundspeak:attributes>
+ <groundspeak:difficulty>1</groundspeak:difficulty>
+ <groundspeak:terrain>1.5</groundspeak:terrain>
+ <groundspeak:country></groundspeak:country>
+ <groundspeak:state></groundspeak:state>
+ <groundspeak:short_description html="False"> </groundspeak:short_description>
+ <groundspeak:long_description html="False"> </groundspeak:long_description>
+ <groundspeak:encoded_hints></groundspeak:encoded_hints>
+ <groundspeak:logs>
+ </groundspeak:logs>
+ <groundspeak:travelbugs>
+ </groundspeak:travelbugs>
+</groundspeak:cache>
+</wpt>
+ <wpt lat="33.383317" lon="-97.01045">
+ <time>2012-03-10T08:00:00Z</time>
+ <name>T070</name>
+ <desc>Triditional Cache 070 by TEXANS (2/2)</desc>
+ <url></url>
+ <urlname>Triditional Cache 070 by TEXANS</urlname>
+ <sym>Geocache</sym>
+ <type>Geocache|Traditional Cache</type>
+ <gsak:wptExtension xmlns:gsak="http://www.gsak.net/xmlv1/6">
+ <gsak:UserFlag>false</gsak:UserFlag>
+ <gsak:Lock>false</gsak:Lock>
+ <gsak:DNF>false</gsak:DNF>
+ <gsak:Watch>false</gsak:Watch>
+ <gsak:UserData></gsak:UserData>
+ <gsak:FirstToFind>false</gsak:FirstToFind>
+ <gsak:User2></gsak:User2>
+ <gsak:User3></gsak:User3>
+ <gsak:User4></gsak:User4>
+ <gsak:County></gsak:County>
+ <gsak:UserSort>0</gsak:UserSort>
+ <gsak:SmartName>Tridi070</gsak:SmartName>
+ <gsak:LastGpxDate>2012-03-10</gsak:LastGpxDate>
+ <gsak:Code>T070</gsak:Code>
+ <gsak:Resolution></gsak:Resolution>
+ <gsak:IsPremium>false</gsak:IsPremium>
+ <gsak:FavPoints>0</gsak:FavPoints>
+ <gsak:GcNote></gsak:GcNote>
+ <gsak:Guid></gsak:Guid>
+ <gsak:CacheImages>
+ </gsak:CacheImages>
+ <gsak:LogImages>
+ </gsak:LogImages>
+ <gsak:CustomData>
+Custom_Start:cCode:Custom_Data:T070:Custom_End
+
+ </gsak:CustomData>
+ </gsak:wptExtension>
+ <groundspeak:cache id="112" available="True" archived="False" xmlns:groundspeak="http://www.groundspeak.com/cache/1/0/1">
+ <groundspeak:name>Triditional Cache 070</groundspeak:name>
+ <groundspeak:placed_by>TEXANS</groundspeak:placed_by>
+ <groundspeak:owner id="1">TXGA</groundspeak:owner>
+ <groundspeak:type>Traditional Cache</groundspeak:type>
+ <groundspeak:container>Not chosen</groundspeak:container>
+ <groundspeak:attributes>
+ </groundspeak:attributes>
+ <groundspeak:difficulty>2</groundspeak:difficulty>
+ <groundspeak:terrain>2</groundspeak:terrain>
+ <groundspeak:country></groundspeak:country>
+ <groundspeak:state></groundspeak:state>
+ <groundspeak:short_description html="False"> </groundspeak:short_description>
+ <groundspeak:long_description html="False"> </groundspeak:long_description>
+ <groundspeak:encoded_hints></groundspeak:encoded_hints>
+ <groundspeak:logs>
+ </groundspeak:logs>
+ <groundspeak:travelbugs>
+ </groundspeak:travelbugs>
+</groundspeak:cache>
+</wpt>
+ <wpt lat="33.38565" lon="-97.013283">
+ <time>2012-03-10T08:00:00Z</time>
+ <name>T073</name>
+ <desc>Triditional Cache 073 by TEXANS (2/4)</desc>
+ <url></url>
+ <urlname>Triditional Cache 073 by TEXANS</urlname>
+ <sym>Geocache</sym>
+ <type>Geocache|Traditional Cache</type>
+ <gsak:wptExtension xmlns:gsak="http://www.gsak.net/xmlv1/6">
+ <gsak:UserFlag>false</gsak:UserFlag>
+ <gsak:Lock>false</gsak:Lock>
+ <gsak:DNF>false</gsak:DNF>
+ <gsak:Watch>false</gsak:Watch>
+ <gsak:UserData></gsak:UserData>
+ <gsak:FirstToFind>false</gsak:FirstToFind>
+ <gsak:User2></gsak:User2>
+ <gsak:User3></gsak:User3>
+ <gsak:User4></gsak:User4>
+ <gsak:County></gsak:County>
+ <gsak:UserSort>0</gsak:UserSort>
+ <gsak:SmartName>Tridi073</gsak:SmartName>
+ <gsak:LastGpxDate>2012-03-10</gsak:LastGpxDate>
+ <gsak:Code>T073</gsak:Code>
+ <gsak:Resolution></gsak:Resolution>
+ <gsak:IsPremium>false</gsak:IsPremium>
+ <gsak:FavPoints>0</gsak:FavPoints>
+ <gsak:GcNote></gsak:GcNote>
+ <gsak:Guid></gsak:Guid>
+ <gsak:CacheImages>
+ </gsak:CacheImages>
+ <gsak:LogImages>
+ </gsak:LogImages>
+ <gsak:CustomData>
+Custom_Start:cCode:Custom_Data:T073:Custom_End
+
+ </gsak:CustomData>
+ </gsak:wptExtension>
+ <groundspeak:cache id="115" available="True" archived="False" xmlns:groundspeak="http://www.groundspeak.com/cache/1/0/1">
+ <groundspeak:name>Triditional Cache 073</groundspeak:name>
+ <groundspeak:placed_by>TEXANS</groundspeak:placed_by>
+ <groundspeak:owner id="1">TXGA</groundspeak:owner>
+ <groundspeak:type>Traditional Cache</groundspeak:type>
+ <groundspeak:container>Not chosen</groundspeak:container>
+ <groundspeak:attributes>
+ </groundspeak:attributes>
+ <groundspeak:difficulty>2</groundspeak:difficulty>
+ <groundspeak:terrain>4</groundspeak:terrain>
+ <groundspeak:country></groundspeak:country>
+ <groundspeak:state></groundspeak:state>
+ <groundspeak:short_description html="False"> </groundspeak:short_description>
+ <groundspeak:long_description html="False"> </groundspeak:long_description>
+ <groundspeak:encoded_hints></groundspeak:encoded_hints>
+ <groundspeak:logs>
+ </groundspeak:logs>
+ <groundspeak:travelbugs>
+ </groundspeak:travelbugs>
+</groundspeak:cache>
+</wpt>
+ <wpt lat="33.3738" lon="-97.009133">
+ <time>2012-03-10T08:00:00Z</time>
+ <name>T074</name>
+ <desc>Triditional Cache 074 by TEXANS (1.5/1.5)</desc>
+ <url></url>
+ <urlname>Triditional Cache 074 by TEXANS</urlname>
+ <sym>Geocache</sym>
+ <type>Geocache|Traditional Cache</type>
+ <gsak:wptExtension xmlns:gsak="http://www.gsak.net/xmlv1/6">
+ <gsak:UserFlag>false</gsak:UserFlag>
+ <gsak:Lock>false</gsak:Lock>
+ <gsak:DNF>false</gsak:DNF>
+ <gsak:Watch>false</gsak:Watch>
+ <gsak:UserData></gsak:UserData>
+ <gsak:FirstToFind>false</gsak:FirstToFind>
+ <gsak:User2></gsak:User2>
+ <gsak:User3></gsak:User3>
+ <gsak:User4></gsak:User4>
+ <gsak:County></gsak:County>
+ <gsak:UserSort>0</gsak:UserSort>
+ <gsak:SmartName>Tridi074</gsak:SmartName>
+ <gsak:LastGpxDate>2012-03-10</gsak:LastGpxDate>
+ <gsak:Code>T074</gsak:Code>
+ <gsak:Resolution></gsak:Resolution>
+ <gsak:IsPremium>false</gsak:IsPremium>
+ <gsak:FavPoints>0</gsak:FavPoints>
+ <gsak:GcNote></gsak:GcNote>
+ <gsak:Guid></gsak:Guid>
+ <gsak:CacheImages>
+ </gsak:CacheImages>
+ <gsak:LogImages>
+ </gsak:LogImages>
+ <gsak:CustomData>
+Custom_Start:cCode:Custom_Data:T074:Custom_End
+
+ </gsak:CustomData>
+ </gsak:wptExtension>
+ <groundspeak:cache id="116" available="True" archived="False" xmlns:groundspeak="http://www.groundspeak.com/cache/1/0/1">
+ <groundspeak:name>Triditional Cache 074</groundspeak:name>
+ <groundspeak:placed_by>TEXANS</groundspeak:placed_by>
+ <groundspeak:owner id="1">TXGA</groundspeak:owner>
+ <groundspeak:type>Traditional Cache</groundspeak:type>
+ <groundspeak:container>Not chosen</groundspeak:container>
+ <groundspeak:attributes>
+ </groundspeak:attributes>
+ <groundspeak:difficulty>1.5</groundspeak:difficulty>
+ <groundspeak:terrain>1.5</groundspeak:terrain>
+ <groundspeak:country></groundspeak:country>
+ <groundspeak:state></groundspeak:state>
+ <groundspeak:short_description html="False"> </groundspeak:short_description>
+ <groundspeak:long_description html="False"> </groundspeak:long_description>
+ <groundspeak:encoded_hints></groundspeak:encoded_hints>
+ <groundspeak:logs>
+ </groundspeak:logs>
+ <groundspeak:travelbugs>
+ </groundspeak:travelbugs>
+</groundspeak:cache>
+</wpt>
+ <wpt lat="33.380833" lon="-97.02905">
+ <time>2012-03-10T08:00:00Z</time>
+ <name>T075</name>
+ <desc>Triditional Cache 075 by TEXANS (1/1.5)</desc>
+ <url></url>
+ <urlname>Triditional Cache 075 by TEXANS</urlname>
+ <sym>Geocache</sym>
+ <type>Geocache|Traditional Cache</type>
+ <gsak:wptExtension xmlns:gsak="http://www.gsak.net/xmlv1/6">
+ <gsak:UserFlag>false</gsak:UserFlag>
+ <gsak:Lock>false</gsak:Lock>
+ <gsak:DNF>false</gsak:DNF>
+ <gsak:Watch>false</gsak:Watch>
+ <gsak:UserData></gsak:UserData>
+ <gsak:FirstToFind>false</gsak:FirstToFind>
+ <gsak:User2></gsak:User2>
+ <gsak:User3></gsak:User3>
+ <gsak:User4></gsak:User4>
+ <gsak:County></gsak:County>
+ <gsak:UserSort>0</gsak:UserSort>
+ <gsak:SmartName>Tridi075</gsak:SmartName>
+ <gsak:LastGpxDate>2012-03-10</gsak:LastGpxDate>
+ <gsak:Code>T075</gsak:Code>
+ <gsak:Resolution></gsak:Resolution>
+ <gsak:IsPremium>false</gsak:IsPremium>
+ <gsak:FavPoints>0</gsak:FavPoints>
+ <gsak:GcNote></gsak:GcNote>
+ <gsak:Guid></gsak:Guid>
+ <gsak:CacheImages>
+ </gsak:CacheImages>
+ <gsak:LogImages>
+ </gsak:LogImages>
+ <gsak:CustomData>
+Custom_Start:cCode:Custom_Data:T075:Custom_End
+
+ </gsak:CustomData>
+ </gsak:wptExtension>
+ <groundspeak:cache id="117" available="True" archived="False" xmlns:groundspeak="http://www.groundspeak.com/cache/1/0/1">
+ <groundspeak:name>Triditional Cache 075</groundspeak:name>
+ <groundspeak:placed_by>TEXANS</groundspeak:placed_by>
+ <groundspeak:owner id="1">TXGA</groundspeak:owner>
+ <groundspeak:type>Traditional Cache</groundspeak:type>
+ <groundspeak:container>Not chosen</groundspeak:container>
+ <groundspeak:attributes>
+ </groundspeak:attributes>
+ <groundspeak:difficulty>1</groundspeak:difficulty>
+ <groundspeak:terrain>1.5</groundspeak:terrain>
+ <groundspeak:country></groundspeak:country>
+ <groundspeak:state></groundspeak:state>
+ <groundspeak:short_description html="False"> </groundspeak:short_description>
+ <groundspeak:long_description html="False"> </groundspeak:long_description>
+ <groundspeak:encoded_hints></groundspeak:encoded_hints>
+ <groundspeak:logs>
+ </groundspeak:logs>
+ <groundspeak:travelbugs>
+ </groundspeak:travelbugs>
+</groundspeak:cache>
+</wpt>
+ <wpt lat="33.384933" lon="-97.002867">
+ <time>2012-03-10T08:00:00Z</time>
+ <name>T076</name>
+ <desc>Triditional Cache 076 by TEXANS (3/3)</desc>
+ <url></url>
+ <urlname>Triditional Cache 076 by TEXANS</urlname>
+ <sym>Geocache</sym>
+ <type>Geocache|Traditional Cache</type>
+ <gsak:wptExtension xmlns:gsak="http://www.gsak.net/xmlv1/6">
+ <gsak:UserFlag>false</gsak:UserFlag>
+ <gsak:Lock>false</gsak:Lock>
+ <gsak:DNF>false</gsak:DNF>
+ <gsak:Watch>false</gsak:Watch>
+ <gsak:UserData></gsak:UserData>
+ <gsak:FirstToFind>false</gsak:FirstToFind>
+ <gsak:User2></gsak:User2>
+ <gsak:User3></gsak:User3>
+ <gsak:User4></gsak:User4>
+ <gsak:County></gsak:County>
+ <gsak:UserSort>0</gsak:UserSort>
+ <gsak:SmartName>Tridi076</gsak:SmartName>
+ <gsak:LastGpxDate>2012-03-10</gsak:LastGpxDate>
+ <gsak:Code>T076</gsak:Code>
+ <gsak:Resolution></gsak:Resolution>
+ <gsak:IsPremium>false</gsak:IsPremium>
+ <gsak:FavPoints>0</gsak:FavPoints>
+ <gsak:GcNote></gsak:GcNote>
+ <gsak:Guid></gsak:Guid>
+ <gsak:CacheImages>
+ </gsak:CacheImages>
+ <gsak:LogImages>
+ </gsak:LogImages>
+ <gsak:CustomData>
+Custom_Start:cCode:Custom_Data:T076:Custom_End
+
+ </gsak:CustomData>
+ </gsak:wptExtension>
+ <groundspeak:cache id="118" available="True" archived="False" xmlns:groundspeak="http://www.groundspeak.com/cache/1/0/1">
+ <groundspeak:name>Triditional Cache 076</groundspeak:name>
+ <groundspeak:placed_by>TEXANS</groundspeak:placed_by>
+ <groundspeak:owner id="1">TXGA</groundspeak:owner>
+ <groundspeak:type>Traditional Cache</groundspeak:type>
+ <groundspeak:container>Not chosen</groundspeak:container>
+ <groundspeak:attributes>
+ </groundspeak:attributes>
+ <groundspeak:difficulty>3</groundspeak:difficulty>
+ <groundspeak:terrain>3</groundspeak:terrain>
+ <groundspeak:country></groundspeak:country>
+ <groundspeak:state></groundspeak:state>
+ <groundspeak:short_description html="False"> </groundspeak:short_description>
+ <groundspeak:long_description html="False"> </groundspeak:long_description>
+ <groundspeak:encoded_hints></groundspeak:encoded_hints>
+ <groundspeak:logs>
+ </groundspeak:logs>
+ <groundspeak:travelbugs>
+ </groundspeak:travelbugs>
+</groundspeak:cache>
+</wpt>
+ <wpt lat="33.40265" lon="-97.00675">
+ <time>2012-03-10T08:00:00Z</time>
+ <name>T077</name>
+ <desc>Triditional Cache 077 by TEXANS (4/2)</desc>
+ <url></url>
+ <urlname>Triditional Cache 077 by TEXANS</urlname>
+ <sym>Geocache</sym>
+ <type>Geocache|Traditional Cache</type>
+ <gsak:wptExtension xmlns:gsak="http://www.gsak.net/xmlv1/6">
+ <gsak:UserFlag>false</gsak:UserFlag>
+ <gsak:Lock>false</gsak:Lock>
+ <gsak:DNF>false</gsak:DNF>
+ <gsak:Watch>false</gsak:Watch>
+ <gsak:UserData></gsak:UserData>
+ <gsak:FirstToFind>false</gsak:FirstToFind>
+ <gsak:User2></gsak:User2>
+ <gsak:User3></gsak:User3>
+ <gsak:User4></gsak:User4>
+ <gsak:County></gsak:County>
+ <gsak:UserSort>0</gsak:UserSort>
+ <gsak:SmartName>Tridi077</gsak:SmartName>
+ <gsak:LastGpxDate>2012-03-10</gsak:LastGpxDate>
+ <gsak:Code>T077</gsak:Code>
+ <gsak:Resolution></gsak:Resolution>
+ <gsak:IsPremium>false</gsak:IsPremium>
+ <gsak:FavPoints>0</gsak:FavPoints>
+ <gsak:GcNote></gsak:GcNote>
+ <gsak:Guid></gsak:Guid>
+ <gsak:CacheImages>
+ </gsak:CacheImages>
+ <gsak:LogImages>
+ </gsak:LogImages>
+ <gsak:CustomData>
+Custom_Start:cCode:Custom_Data:T077:Custom_End
+
+ </gsak:CustomData>
+ </gsak:wptExtension>
+ <groundspeak:cache id="119" available="True" archived="False" xmlns:groundspeak="http://www.groundspeak.com/cache/1/0/1">
+ <groundspeak:name>Triditional Cache 077</groundspeak:name>
+ <groundspeak:placed_by>TEXANS</groundspeak:placed_by>
+ <groundspeak:owner id="1">TXGA</groundspeak:owner>
+ <groundspeak:type>Traditional Cache</groundspeak:type>
+ <groundspeak:container>Not chosen</groundspeak:container>
+ <groundspeak:attributes>
+ </groundspeak:attributes>
+ <groundspeak:difficulty>4</groundspeak:difficulty>
+ <groundspeak:terrain>2</groundspeak:terrain>
+ <groundspeak:country></groundspeak:country>
+ <groundspeak:state></groundspeak:state>
+ <groundspeak:short_description html="False"> </groundspeak:short_description>
+ <groundspeak:long_description html="False"> </groundspeak:long_description>
+ <groundspeak:encoded_hints></groundspeak:encoded_hints>
+ <groundspeak:logs>
+ </groundspeak:logs>
+ <groundspeak:travelbugs>
+ </groundspeak:travelbugs>
+</groundspeak:cache>
+</wpt>
+ <wpt lat="33.404583" lon="-96.99665">
+ <time>2012-03-10T08:00:00Z</time>
+ <name>T078</name>
+ <desc>Triditional Cache 078 by TEXANS (2/1.5)</desc>
+ <url></url>
+ <urlname>Triditional Cache 078 by TEXANS</urlname>
+ <sym>Geocache</sym>
+ <type>Geocache|Traditional Cache</type>
+ <gsak:wptExtension xmlns:gsak="http://www.gsak.net/xmlv1/6">
+ <gsak:UserFlag>false</gsak:UserFlag>
+ <gsak:Lock>false</gsak:Lock>
+ <gsak:DNF>false</gsak:DNF>
+ <gsak:Watch>false</gsak:Watch>
+ <gsak:UserData></gsak:UserData>
+ <gsak:FirstToFind>false</gsak:FirstToFind>
+ <gsak:User2></gsak:User2>
+ <gsak:User3></gsak:User3>
+ <gsak:User4></gsak:User4>
+ <gsak:County></gsak:County>
+ <gsak:UserSort>0</gsak:UserSort>
+ <gsak:SmartName>Tridi078</gsak:SmartName>
+ <gsak:LastGpxDate>2012-03-10</gsak:LastGpxDate>
+ <gsak:Code>T078</gsak:Code>
+ <gsak:Resolution></gsak:Resolution>
+ <gsak:IsPremium>false</gsak:IsPremium>
+ <gsak:FavPoints>0</gsak:FavPoints>
+ <gsak:GcNote></gsak:GcNote>
+ <gsak:Guid></gsak:Guid>
+ <gsak:CacheImages>
+ </gsak:CacheImages>
+ <gsak:LogImages>
+ </gsak:LogImages>
+ <gsak:CustomData>
+Custom_Start:cCode:Custom_Data:T078:Custom_End
+
+ </gsak:CustomData>
+ </gsak:wptExtension>
+ <groundspeak:cache id="120" available="True" archived="False" xmlns:groundspeak="http://www.groundspeak.com/cache/1/0/1">
+ <groundspeak:name>Triditional Cache 078</groundspeak:name>
+ <groundspeak:placed_by>TEXANS</groundspeak:placed_by>
+ <groundspeak:owner id="1">TXGA</groundspeak:owner>
+ <groundspeak:type>Traditional Cache</groundspeak:type>
+ <groundspeak:container>Not chosen</groundspeak:container>
+ <groundspeak:attributes>
+ </groundspeak:attributes>
+ <groundspeak:difficulty>2</groundspeak:difficulty>
+ <groundspeak:terrain>1.5</groundspeak:terrain>
+ <groundspeak:country></groundspeak:country>
+ <groundspeak:state></groundspeak:state>
+ <groundspeak:short_description html="False"> </groundspeak:short_description>
+ <groundspeak:long_description html="False"> </groundspeak:long_description>
+ <groundspeak:encoded_hints></groundspeak:encoded_hints>
+ <groundspeak:logs>
+ </groundspeak:logs>
+ <groundspeak:travelbugs>
+ </groundspeak:travelbugs>
+</groundspeak:cache>
+</wpt>
+ <wpt lat="33.366033" lon="-97.010767">
+ <time>2012-03-10T08:00:00Z</time>
+ <name>T079</name>
+ <desc>Triditional Cache 079 by TEXANS (1.5/1.5)</desc>
+ <url></url>
+ <urlname>Triditional Cache 079 by TEXANS</urlname>
+ <sym>Geocache</sym>
+ <type>Geocache|Traditional Cache</type>
+ <gsak:wptExtension xmlns:gsak="http://www.gsak.net/xmlv1/6">
+ <gsak:UserFlag>false</gsak:UserFlag>
+ <gsak:Lock>false</gsak:Lock>
+ <gsak:DNF>false</gsak:DNF>
+ <gsak:Watch>false</gsak:Watch>
+ <gsak:UserData></gsak:UserData>
+ <gsak:FirstToFind>false</gsak:FirstToFind>
+ <gsak:User2></gsak:User2>
+ <gsak:User3></gsak:User3>
+ <gsak:User4></gsak:User4>
+ <gsak:County></gsak:County>
+ <gsak:UserSort>0</gsak:UserSort>
+ <gsak:SmartName>Tridi079</gsak:SmartName>
+ <gsak:LastGpxDate>2012-03-10</gsak:LastGpxDate>
+ <gsak:Code>T079</gsak:Code>
+ <gsak:Resolution></gsak:Resolution>
+ <gsak:IsPremium>false</gsak:IsPremium>
+ <gsak:FavPoints>0</gsak:FavPoints>
+ <gsak:GcNote></gsak:GcNote>
+ <gsak:Guid></gsak:Guid>
+ <gsak:CacheImages>
+ </gsak:CacheImages>
+ <gsak:LogImages>
+ </gsak:LogImages>
+ <gsak:CustomData>
+Custom_Start:cCode:Custom_Data:T079:Custom_End
+
+ </gsak:CustomData>
+ </gsak:wptExtension>
+ <groundspeak:cache id="121" available="True" archived="False" xmlns:groundspeak="http://www.groundspeak.com/cache/1/0/1">
+ <groundspeak:name>Triditional Cache 079</groundspeak:name>
+ <groundspeak:placed_by>TEXANS</groundspeak:placed_by>
+ <groundspeak:owner id="1">TXGA</groundspeak:owner>
+ <groundspeak:type>Traditional Cache</groundspeak:type>
+ <groundspeak:container>Not chosen</groundspeak:container>
+ <groundspeak:attributes>
+ </groundspeak:attributes>
+ <groundspeak:difficulty>1.5</groundspeak:difficulty>
+ <groundspeak:terrain>1.5</groundspeak:terrain>
+ <groundspeak:country></groundspeak:country>
+ <groundspeak:state></groundspeak:state>
+ <groundspeak:short_description html="False"> </groundspeak:short_description>
+ <groundspeak:long_description html="False"> </groundspeak:long_description>
+ <groundspeak:encoded_hints></groundspeak:encoded_hints>
+ <groundspeak:logs>
+ </groundspeak:logs>
+ <groundspeak:travelbugs>
+ </groundspeak:travelbugs>
+</groundspeak:cache>
+</wpt>
+ <wpt lat="33.385983" lon="-97.024567">
+ <time>2012-03-10T08:00:00Z</time>
+ <name>T080</name>
+ <desc>Triditional Cache 080 by TEXANS (2.5/2)</desc>
+ <url></url>
+ <urlname>Triditional Cache 080 by TEXANS</urlname>
+ <sym>Geocache</sym>
+ <type>Geocache|Traditional Cache</type>
+ <gsak:wptExtension xmlns:gsak="http://www.gsak.net/xmlv1/6">
+ <gsak:UserFlag>false</gsak:UserFlag>
+ <gsak:Lock>false</gsak:Lock>
+ <gsak:DNF>false</gsak:DNF>
+ <gsak:Watch>false</gsak:Watch>
+ <gsak:UserData></gsak:UserData>
+ <gsak:FirstToFind>false</gsak:FirstToFind>
+ <gsak:User2></gsak:User2>
+ <gsak:User3></gsak:User3>
+ <gsak:User4></gsak:User4>
+ <gsak:County></gsak:County>
+ <gsak:UserSort>0</gsak:UserSort>
+ <gsak:SmartName>Tridi080</gsak:SmartName>
+ <gsak:LastGpxDate>2012-03-10</gsak:LastGpxDate>
+ <gsak:Code>T080</gsak:Code>
+ <gsak:Resolution></gsak:Resolution>
+ <gsak:IsPremium>false</gsak:IsPremium>
+ <gsak:FavPoints>0</gsak:FavPoints>
+ <gsak:GcNote></gsak:GcNote>
+ <gsak:Guid></gsak:Guid>
+ <gsak:CacheImages>
+ </gsak:CacheImages>
+ <gsak:LogImages>
+ </gsak:LogImages>
+ <gsak:CustomData>
+Custom_Start:cCode:Custom_Data:T080:Custom_End
+
+ </gsak:CustomData>
+ </gsak:wptExtension>
+ <groundspeak:cache id="128" available="True" archived="False" xmlns:groundspeak="http://www.groundspeak.com/cache/1/0/1">
+ <groundspeak:name>Triditional Cache 080</groundspeak:name>
+ <groundspeak:placed_by>TEXANS</groundspeak:placed_by>
+ <groundspeak:owner id="1">TXGA</groundspeak:owner>
+ <groundspeak:type>Traditional Cache</groundspeak:type>
+ <groundspeak:container>Not chosen</groundspeak:container>
+ <groundspeak:attributes>
+ </groundspeak:attributes>
+ <groundspeak:difficulty>2.5</groundspeak:difficulty>
+ <groundspeak:terrain>2</groundspeak:terrain>
+ <groundspeak:country></groundspeak:country>
+ <groundspeak:state></groundspeak:state>
+ <groundspeak:short_description html="False"> </groundspeak:short_description>
+ <groundspeak:long_description html="False"> </groundspeak:long_description>
+ <groundspeak:encoded_hints></groundspeak:encoded_hints>
+ <groundspeak:logs>
+ </groundspeak:logs>
+ <groundspeak:travelbugs>
+ </groundspeak:travelbugs>
+</groundspeak:cache>
+</wpt>
+ <wpt lat="33.381767" lon="-97.009167">
+ <time>2012-03-10T08:00:00Z</time>
+ <name>T081</name>
+ <desc>Triditional Cache 081 by TEXANS (2/2)</desc>
+ <url></url>
+ <urlname>Triditional Cache 081 by TEXANS</urlname>
+ <sym>Geocache</sym>
+ <type>Geocache|Traditional Cache</type>
+ <gsak:wptExtension xmlns:gsak="http://www.gsak.net/xmlv1/6">
+ <gsak:UserFlag>false</gsak:UserFlag>
+ <gsak:Lock>false</gsak:Lock>
+ <gsak:DNF>false</gsak:DNF>
+ <gsak:Watch>false</gsak:Watch>
+ <gsak:UserData></gsak:UserData>
+ <gsak:FirstToFind>false</gsak:FirstToFind>
+ <gsak:User2></gsak:User2>
+ <gsak:User3></gsak:User3>
+ <gsak:User4></gsak:User4>
+ <gsak:County></gsak:County>
+ <gsak:UserSort>0</gsak:UserSort>
+ <gsak:SmartName>Tridi081</gsak:SmartName>
+ <gsak:LastGpxDate>2012-03-10</gsak:LastGpxDate>
+ <gsak:Code>T081</gsak:Code>
+ <gsak:Resolution></gsak:Resolution>
+ <gsak:IsPremium>false</gsak:IsPremium>
+ <gsak:FavPoints>0</gsak:FavPoints>
+ <gsak:GcNote></gsak:GcNote>
+ <gsak:Guid></gsak:Guid>
+ <gsak:CacheImages>
+ </gsak:CacheImages>
+ <gsak:LogImages>
+ </gsak:LogImages>
+ <gsak:CustomData>
+Custom_Start:cCode:Custom_Data:T081:Custom_End
+
+ </gsak:CustomData>
+ </gsak:wptExtension>
+ <groundspeak:cache id="129" available="True" archived="False" xmlns:groundspeak="http://www.groundspeak.com/cache/1/0/1">
+ <groundspeak:name>Triditional Cache 081</groundspeak:name>
+ <groundspeak:placed_by>TEXANS</groundspeak:placed_by>
+ <groundspeak:owner id="1">TXGA</groundspeak:owner>
+ <groundspeak:type>Traditional Cache</groundspeak:type>
+ <groundspeak:container>Not chosen</groundspeak:container>
+ <groundspeak:attributes>
+ </groundspeak:attributes>
+ <groundspeak:difficulty>2</groundspeak:difficulty>
+ <groundspeak:terrain>2</groundspeak:terrain>
+ <groundspeak:country></groundspeak:country>
+ <groundspeak:state></groundspeak:state>
+ <groundspeak:short_description html="False"> </groundspeak:short_description>
+ <groundspeak:long_description html="False"> </groundspeak:long_description>
+ <groundspeak:encoded_hints></groundspeak:encoded_hints>
+ <groundspeak:logs>
+ </groundspeak:logs>
+ <groundspeak:travelbugs>
+ </groundspeak:travelbugs>
+</groundspeak:cache>
+</wpt>
+ <wpt lat="33.373767" lon="-97.01385">
+ <time>2012-03-10T08:00:00Z</time>
+ <name>T082</name>
+ <desc>Triditional Cache 082 by TEXANS (2.5/3.5)</desc>
+ <url></url>
+ <urlname>Triditional Cache 082 by TEXANS</urlname>
+ <sym>Geocache</sym>
+ <type>Geocache|Traditional Cache</type>
+ <gsak:wptExtension xmlns:gsak="http://www.gsak.net/xmlv1/6">
+ <gsak:UserFlag>false</gsak:UserFlag>
+ <gsak:Lock>false</gsak:Lock>
+ <gsak:DNF>false</gsak:DNF>
+ <gsak:Watch>false</gsak:Watch>
+ <gsak:UserData></gsak:UserData>
+ <gsak:FirstToFind>false</gsak:FirstToFind>
+ <gsak:User2></gsak:User2>
+ <gsak:User3></gsak:User3>
+ <gsak:User4></gsak:User4>
+ <gsak:County></gsak:County>
+ <gsak:UserSort>0</gsak:UserSort>
+ <gsak:SmartName>Tridi082</gsak:SmartName>
+ <gsak:LastGpxDate>2012-03-10</gsak:LastGpxDate>
+ <gsak:Code>T082</gsak:Code>
+ <gsak:Resolution></gsak:Resolution>
+ <gsak:IsPremium>false</gsak:IsPremium>
+ <gsak:FavPoints>0</gsak:FavPoints>
+ <gsak:GcNote></gsak:GcNote>
+ <gsak:Guid></gsak:Guid>
+ <gsak:CacheImages>
+ </gsak:CacheImages>
+ <gsak:LogImages>
+ </gsak:LogImages>
+ <gsak:CustomData>
+Custom_Start:cCode:Custom_Data:T082:Custom_End
+
+ </gsak:CustomData>
+ </gsak:wptExtension>
+ <groundspeak:cache id="130" available="True" archived="False" xmlns:groundspeak="http://www.groundspeak.com/cache/1/0/1">
+ <groundspeak:name>Triditional Cache 082</groundspeak:name>
+ <groundspeak:placed_by>TEXANS</groundspeak:placed_by>
+ <groundspeak:owner id="1">TXGA</groundspeak:owner>
+ <groundspeak:type>Traditional Cache</groundspeak:type>
+ <groundspeak:container>Not chosen</groundspeak:container>
+ <groundspeak:attributes>
+ </groundspeak:attributes>
+ <groundspeak:difficulty>2.5</groundspeak:difficulty>
+ <groundspeak:terrain>3.5</groundspeak:terrain>
+ <groundspeak:country></groundspeak:country>
+ <groundspeak:state></groundspeak:state>
+ <groundspeak:short_description html="False"> </groundspeak:short_description>
+ <groundspeak:long_description html="False"> </groundspeak:long_description>
+ <groundspeak:encoded_hints></groundspeak:encoded_hints>
+ <groundspeak:logs>
+ </groundspeak:logs>
+ <groundspeak:travelbugs>
+ </groundspeak:travelbugs>
+</groundspeak:cache>
+</wpt>
+ <wpt lat="33.380983" lon="-97.006467">
+ <time>2012-03-10T08:00:00Z</time>
+ <name>T083</name>
+ <desc>Triditional Cache 083 by TEXANS (3/2)</desc>
+ <url></url>
+ <urlname>Triditional Cache 083 by TEXANS</urlname>
+ <sym>Geocache</sym>
+ <type>Geocache|Traditional Cache</type>
+ <gsak:wptExtension xmlns:gsak="http://www.gsak.net/xmlv1/6">
+ <gsak:UserFlag>false</gsak:UserFlag>
+ <gsak:Lock>false</gsak:Lock>
+ <gsak:DNF>false</gsak:DNF>
+ <gsak:Watch>false</gsak:Watch>
+ <gsak:UserData></gsak:UserData>
+ <gsak:FirstToFind>false</gsak:FirstToFind>
+ <gsak:User2></gsak:User2>
+ <gsak:User3></gsak:User3>
+ <gsak:User4></gsak:User4>
+ <gsak:County></gsak:County>
+ <gsak:UserSort>0</gsak:UserSort>
+ <gsak:SmartName>Tridi083</gsak:SmartName>
+ <gsak:LastGpxDate>2012-03-10</gsak:LastGpxDate>
+ <gsak:Code>T083</gsak:Code>
+ <gsak:Resolution></gsak:Resolution>
+ <gsak:IsPremium>false</gsak:IsPremium>
+ <gsak:FavPoints>0</gsak:FavPoints>
+ <gsak:GcNote></gsak:GcNote>
+ <gsak:Guid></gsak:Guid>
+ <gsak:CacheImages>
+ </gsak:CacheImages>
+ <gsak:LogImages>
+ </gsak:LogImages>
+ <gsak:CustomData>
+Custom_Start:cCode:Custom_Data:T083:Custom_End
+
+ </gsak:CustomData>
+ </gsak:wptExtension>
+ <groundspeak:cache id="131" available="True" archived="False" xmlns:groundspeak="http://www.groundspeak.com/cache/1/0/1">
+ <groundspeak:name>Triditional Cache 083</groundspeak:name>
+ <groundspeak:placed_by>TEXANS</groundspeak:placed_by>
+ <groundspeak:owner id="1">TXGA</groundspeak:owner>
+ <groundspeak:type>Traditional Cache</groundspeak:type>
+ <groundspeak:container>Not chosen</groundspeak:container>
+ <groundspeak:attributes>
+ </groundspeak:attributes>
+ <groundspeak:difficulty>3</groundspeak:difficulty>
+ <groundspeak:terrain>2</groundspeak:terrain>
+ <groundspeak:country></groundspeak:country>
+ <groundspeak:state></groundspeak:state>
+ <groundspeak:short_description html="False"> </groundspeak:short_description>
+ <groundspeak:long_description html="False"> </groundspeak:long_description>
+ <groundspeak:encoded_hints></groundspeak:encoded_hints>
+ <groundspeak:logs>
+ </groundspeak:logs>
+ <groundspeak:travelbugs>
+ </groundspeak:travelbugs>
+</groundspeak:cache>
+</wpt>
+ <wpt lat="33.364833" lon="-97.01205">
+ <time>2012-03-10T08:00:00Z</time>
+ <name>T084</name>
+ <desc>Triditional Cache 084 by TEXANS (3.5/3.5)</desc>
+ <url></url>
+ <urlname>Triditional Cache 084 by TEXANS</urlname>
+ <sym>Geocache</sym>
+ <type>Geocache|Traditional Cache</type>
+ <gsak:wptExtension xmlns:gsak="http://www.gsak.net/xmlv1/6">
+ <gsak:UserFlag>false</gsak:UserFlag>
+ <gsak:Lock>false</gsak:Lock>
+ <gsak:DNF>false</gsak:DNF>
+ <gsak:Watch>false</gsak:Watch>
+ <gsak:UserData></gsak:UserData>
+ <gsak:FirstToFind>false</gsak:FirstToFind>
+ <gsak:User2></gsak:User2>
+ <gsak:User3></gsak:User3>
+ <gsak:User4></gsak:User4>
+ <gsak:County></gsak:County>
+ <gsak:UserSort>0</gsak:UserSort>
+ <gsak:SmartName>Tridi084</gsak:SmartName>
+ <gsak:LastGpxDate>2012-03-10</gsak:LastGpxDate>
+ <gsak:Code>T084</gsak:Code>
+ <gsak:Resolution></gsak:Resolution>
+ <gsak:IsPremium>false</gsak:IsPremium>
+ <gsak:FavPoints>0</gsak:FavPoints>
+ <gsak:GcNote></gsak:GcNote>
+ <gsak:Guid></gsak:Guid>
+ <gsak:CacheImages>
+ </gsak:CacheImages>
+ <gsak:LogImages>
+ </gsak:LogImages>
+ <gsak:CustomData>
+Custom_Start:cCode:Custom_Data:T084:Custom_End
+
+ </gsak:CustomData>
+ </gsak:wptExtension>
+ <groundspeak:cache id="132" available="True" archived="False" xmlns:groundspeak="http://www.groundspeak.com/cache/1/0/1">
+ <groundspeak:name>Triditional Cache 084</groundspeak:name>
+ <groundspeak:placed_by>TEXANS</groundspeak:placed_by>
+ <groundspeak:owner id="1">TXGA</groundspeak:owner>
+ <groundspeak:type>Traditional Cache</groundspeak:type>
+ <groundspeak:container>Not chosen</groundspeak:container>
+ <groundspeak:attributes>
+ </groundspeak:attributes>
+ <groundspeak:difficulty>3.5</groundspeak:difficulty>
+ <groundspeak:terrain>3.5</groundspeak:terrain>
+ <groundspeak:country></groundspeak:country>
+ <groundspeak:state></groundspeak:state>
+ <groundspeak:short_description html="False"> </groundspeak:short_description>
+ <groundspeak:long_description html="False"> </groundspeak:long_description>
+ <groundspeak:encoded_hints></groundspeak:encoded_hints>
+ <groundspeak:logs>
+ </groundspeak:logs>
+ <groundspeak:travelbugs>
+ </groundspeak:travelbugs>
+</groundspeak:cache>
+</wpt>
+ <wpt lat="33.40175" lon="-96.994467">
+ <time>2012-03-10T08:00:00Z</time>
+ <name>T085</name>
+ <desc>Triditional Cache 085 by TEXANS (2/2)</desc>
+ <url></url>
+ <urlname>Triditional Cache 085 by TEXANS</urlname>
+ <sym>Geocache</sym>
+ <type>Geocache|Traditional Cache</type>
+ <gsak:wptExtension xmlns:gsak="http://www.gsak.net/xmlv1/6">
+ <gsak:UserFlag>false</gsak:UserFlag>
+ <gsak:Lock>false</gsak:Lock>
+ <gsak:DNF>false</gsak:DNF>
+ <gsak:Watch>false</gsak:Watch>
+ <gsak:UserData></gsak:UserData>
+ <gsak:FirstToFind>false</gsak:FirstToFind>
+ <gsak:User2></gsak:User2>
+ <gsak:User3></gsak:User3>
+ <gsak:User4></gsak:User4>
+ <gsak:County></gsak:County>
+ <gsak:UserSort>0</gsak:UserSort>
+ <gsak:SmartName>Tridi085</gsak:SmartName>
+ <gsak:LastGpxDate>2012-03-10</gsak:LastGpxDate>
+ <gsak:Code>T085</gsak:Code>
+ <gsak:Resolution></gsak:Resolution>
+ <gsak:IsPremium>false</gsak:IsPremium>
+ <gsak:FavPoints>0</gsak:FavPoints>
+ <gsak:GcNote></gsak:GcNote>
+ <gsak:Guid></gsak:Guid>
+ <gsak:CacheImages>
+ </gsak:CacheImages>
+ <gsak:LogImages>
+ </gsak:LogImages>
+ <gsak:CustomData>
+Custom_Start:cCode:Custom_Data:T085:Custom_End
+
+ </gsak:CustomData>
+ </gsak:wptExtension>
+ <groundspeak:cache id="133" available="True" archived="False" xmlns:groundspeak="http://www.groundspeak.com/cache/1/0/1">
+ <groundspeak:name>Triditional Cache 085</groundspeak:name>
+ <groundspeak:placed_by>TEXANS</groundspeak:placed_by>
+ <groundspeak:owner id="1">TXGA</groundspeak:owner>
+ <groundspeak:type>Traditional Cache</groundspeak:type>
+ <groundspeak:container>Not chosen</groundspeak:container>
+ <groundspeak:attributes>
+ </groundspeak:attributes>
+ <groundspeak:difficulty>2</groundspeak:difficulty>
+ <groundspeak:terrain>2</groundspeak:terrain>
+ <groundspeak:country></groundspeak:country>
+ <groundspeak:state></groundspeak:state>
+ <groundspeak:short_description html="False"> </groundspeak:short_description>
+ <groundspeak:long_description html="False"> </groundspeak:long_description>
+ <groundspeak:encoded_hints></groundspeak:encoded_hints>
+ <groundspeak:logs>
+ </groundspeak:logs>
+ <groundspeak:travelbugs>
+ </groundspeak:travelbugs>
+</groundspeak:cache>
+</wpt>
+ <wpt lat="33.385517" lon="-97.0172">
+ <time>2012-03-10T08:00:00Z</time>
+ <name>T088</name>
+ <desc>Triditional Cache 088 by TEXANS (3.5/2)</desc>
+ <url></url>
+ <urlname>Triditional Cache 088 by TEXANS</urlname>
+ <sym>Geocache</sym>
+ <type>Geocache|Traditional Cache</type>
+ <gsak:wptExtension xmlns:gsak="http://www.gsak.net/xmlv1/6">
+ <gsak:UserFlag>false</gsak:UserFlag>
+ <gsak:Lock>false</gsak:Lock>
+ <gsak:DNF>false</gsak:DNF>
+ <gsak:Watch>false</gsak:Watch>
+ <gsak:UserData></gsak:UserData>
+ <gsak:FirstToFind>false</gsak:FirstToFind>
+ <gsak:User2></gsak:User2>
+ <gsak:User3></gsak:User3>
+ <gsak:User4></gsak:User4>
+ <gsak:County></gsak:County>
+ <gsak:UserSort>0</gsak:UserSort>
+ <gsak:SmartName>Tridi088</gsak:SmartName>
+ <gsak:LastGpxDate>2012-03-10</gsak:LastGpxDate>
+ <gsak:Code>T088</gsak:Code>
+ <gsak:Resolution></gsak:Resolution>
+ <gsak:IsPremium>false</gsak:IsPremium>
+ <gsak:FavPoints>0</gsak:FavPoints>
+ <gsak:GcNote></gsak:GcNote>
+ <gsak:Guid></gsak:Guid>
+ <gsak:CacheImages>
+ </gsak:CacheImages>
+ <gsak:LogImages>
+ </gsak:LogImages>
+ <gsak:CustomData>
+Custom_Start:cCode:Custom_Data:T088:Custom_End
+
+ </gsak:CustomData>
+ </gsak:wptExtension>
+ <groundspeak:cache id="136" available="True" archived="False" xmlns:groundspeak="http://www.groundspeak.com/cache/1/0/1">
+ <groundspeak:name>Triditional Cache 088</groundspeak:name>
+ <groundspeak:placed_by>TEXANS</groundspeak:placed_by>
+ <groundspeak:owner id="1">TXGA</groundspeak:owner>
+ <groundspeak:type>Traditional Cache</groundspeak:type>
+ <groundspeak:container>Not chosen</groundspeak:container>
+ <groundspeak:attributes>
+ </groundspeak:attributes>
+ <groundspeak:difficulty>3.5</groundspeak:difficulty>
+ <groundspeak:terrain>2</groundspeak:terrain>
+ <groundspeak:country></groundspeak:country>
+ <groundspeak:state></groundspeak:state>
+ <groundspeak:short_description html="False"> </groundspeak:short_description>
+ <groundspeak:long_description html="False"> </groundspeak:long_description>
+ <groundspeak:encoded_hints></groundspeak:encoded_hints>
+ <groundspeak:logs>
+ </groundspeak:logs>
+ <groundspeak:travelbugs>
+ </groundspeak:travelbugs>
+</groundspeak:cache>
+</wpt>
+ <wpt lat="33.3875" lon="-97.014083">
+ <time>2012-03-10T08:00:00Z</time>
+ <name>T090</name>
+ <desc>Triditional Cache 090 by TEXANS (3.5/4)</desc>
+ <url></url>
+ <urlname>Triditional Cache 090 by TEXANS</urlname>
+ <sym>Geocache</sym>
+ <type>Geocache|Traditional Cache</type>
+ <gsak:wptExtension xmlns:gsak="http://www.gsak.net/xmlv1/6">
+ <gsak:UserFlag>false</gsak:UserFlag>
+ <gsak:Lock>false</gsak:Lock>
+ <gsak:DNF>false</gsak:DNF>
+ <gsak:Watch>false</gsak:Watch>
+ <gsak:UserData></gsak:UserData>
+ <gsak:FirstToFind>false</gsak:FirstToFind>
+ <gsak:User2></gsak:User2>
+ <gsak:User3></gsak:User3>
+ <gsak:User4></gsak:User4>
+ <gsak:County></gsak:County>
+ <gsak:UserSort>0</gsak:UserSort>
+ <gsak:SmartName>Tridi090</gsak:SmartName>
+ <gsak:LastGpxDate>2012-03-10</gsak:LastGpxDate>
+ <gsak:Code>T090</gsak:Code>
+ <gsak:Resolution></gsak:Resolution>
+ <gsak:IsPremium>false</gsak:IsPremium>
+ <gsak:FavPoints>0</gsak:FavPoints>
+ <gsak:GcNote></gsak:GcNote>
+ <gsak:Guid></gsak:Guid>
+ <gsak:CacheImages>
+ </gsak:CacheImages>
+ <gsak:LogImages>
+ </gsak:LogImages>
+ <gsak:CustomData>
+Custom_Start:cCode:Custom_Data:T090:Custom_End
+
+ </gsak:CustomData>
+ </gsak:wptExtension>
+ <groundspeak:cache id="144" available="True" archived="False" xmlns:groundspeak="http://www.groundspeak.com/cache/1/0/1">
+ <groundspeak:name>Triditional Cache 090</groundspeak:name>
+ <groundspeak:placed_by>TEXANS</groundspeak:placed_by>
+ <groundspeak:owner id="1">TXGA</groundspeak:owner>
+ <groundspeak:type>Traditional Cache</groundspeak:type>
+ <groundspeak:container>Not chosen</groundspeak:container>
+ <groundspeak:attributes>
+ </groundspeak:attributes>
+ <groundspeak:difficulty>3.5</groundspeak:difficulty>
+ <groundspeak:terrain>4</groundspeak:terrain>
+ <groundspeak:country></groundspeak:country>
+ <groundspeak:state></groundspeak:state>
+ <groundspeak:short_description html="False"> </groundspeak:short_description>
+ <groundspeak:long_description html="False"> </groundspeak:long_description>
+ <groundspeak:encoded_hints></groundspeak:encoded_hints>
+ <groundspeak:logs>
+ </groundspeak:logs>
+ <groundspeak:travelbugs>
+ </groundspeak:travelbugs>
+</groundspeak:cache>
+</wpt>
+ <wpt lat="33.3998" lon="-97.004483">
+ <time>2012-03-10T08:00:00Z</time>
+ <name>T091</name>
+ <desc>Triditional Cache 091 by TEXANS (2.5/2)</desc>
+ <url></url>
+ <urlname>Triditional Cache 091 by TEXANS</urlname>
+ <sym>Geocache</sym>
+ <type>Geocache|Traditional Cache</type>
+ <gsak:wptExtension xmlns:gsak="http://www.gsak.net/xmlv1/6">
+ <gsak:UserFlag>false</gsak:UserFlag>
+ <gsak:Lock>false</gsak:Lock>
+ <gsak:DNF>false</gsak:DNF>
+ <gsak:Watch>false</gsak:Watch>
+ <gsak:UserData></gsak:UserData>
+ <gsak:FirstToFind>false</gsak:FirstToFind>
+ <gsak:User2></gsak:User2>
+ <gsak:User3></gsak:User3>
+ <gsak:User4></gsak:User4>
+ <gsak:County></gsak:County>
+ <gsak:UserSort>0</gsak:UserSort>
+ <gsak:SmartName>Tridi091</gsak:SmartName>
+ <gsak:LastGpxDate>2012-03-10</gsak:LastGpxDate>
+ <gsak:Code>T091</gsak:Code>
+ <gsak:Resolution></gsak:Resolution>
+ <gsak:IsPremium>false</gsak:IsPremium>
+ <gsak:FavPoints>0</gsak:FavPoints>
+ <gsak:GcNote></gsak:GcNote>
+ <gsak:Guid></gsak:Guid>
+ <gsak:CacheImages>
+ </gsak:CacheImages>
+ <gsak:LogImages>
+ </gsak:LogImages>
+ <gsak:CustomData>
+Custom_Start:cCode:Custom_Data:T091:Custom_End
+
+ </gsak:CustomData>
+ </gsak:wptExtension>
+ <groundspeak:cache id="145" available="True" archived="False" xmlns:groundspeak="http://www.groundspeak.com/cache/1/0/1">
+ <groundspeak:name>Triditional Cache 091</groundspeak:name>
+ <groundspeak:placed_by>TEXANS</groundspeak:placed_by>
+ <groundspeak:owner id="1">TXGA</groundspeak:owner>
+ <groundspeak:type>Traditional Cache</groundspeak:type>
+ <groundspeak:container>Not chosen</groundspeak:container>
+ <groundspeak:attributes>
+ </groundspeak:attributes>
+ <groundspeak:difficulty>2.5</groundspeak:difficulty>
+ <groundspeak:terrain>2</groundspeak:terrain>
+ <groundspeak:country></groundspeak:country>
+ <groundspeak:state></groundspeak:state>
+ <groundspeak:short_description html="False"> </groundspeak:short_description>
+ <groundspeak:long_description html="False"> </groundspeak:long_description>
+ <groundspeak:encoded_hints></groundspeak:encoded_hints>
+ <groundspeak:logs>
+ </groundspeak:logs>
+ <groundspeak:travelbugs>
+ </groundspeak:travelbugs>
+</groundspeak:cache>
+</wpt>
+ <wpt lat="33.362983" lon="-97.024617">
+ <time>2012-03-10T08:00:00Z</time>
+ <name>T092</name>
+ <desc>Triditional Cache 092 by TEXANS (4/4)</desc>
+ <url></url>
+ <urlname>Triditional Cache 092 by TEXANS</urlname>
+ <sym>Geocache</sym>
+ <type>Geocache|Traditional Cache</type>
+ <gsak:wptExtension xmlns:gsak="http://www.gsak.net/xmlv1/6">
+ <gsak:UserFlag>false</gsak:UserFlag>
+ <gsak:Lock>false</gsak:Lock>
+ <gsak:DNF>false</gsak:DNF>
+ <gsak:Watch>false</gsak:Watch>
+ <gsak:UserData></gsak:UserData>
+ <gsak:FirstToFind>false</gsak:FirstToFind>
+ <gsak:User2></gsak:User2>
+ <gsak:User3></gsak:User3>
+ <gsak:User4></gsak:User4>
+ <gsak:County></gsak:County>
+ <gsak:UserSort>0</gsak:UserSort>
+ <gsak:SmartName>Tridi092</gsak:SmartName>
+ <gsak:LastGpxDate>2012-03-10</gsak:LastGpxDate>
+ <gsak:Code>T092</gsak:Code>
+ <gsak:Resolution></gsak:Resolution>
+ <gsak:IsPremium>false</gsak:IsPremium>
+ <gsak:FavPoints>0</gsak:FavPoints>
+ <gsak:GcNote></gsak:GcNote>
+ <gsak:Guid></gsak:Guid>
+ <gsak:CacheImages>
+ </gsak:CacheImages>
+ <gsak:LogImages>
+ </gsak:LogImages>
+ <gsak:CustomData>
+Custom_Start:cCode:Custom_Data:T092:Custom_End
+
+ </gsak:CustomData>
+ </gsak:wptExtension>
+ <groundspeak:cache id="146" available="True" archived="False" xmlns:groundspeak="http://www.groundspeak.com/cache/1/0/1">
+ <groundspeak:name>Triditional Cache 092</groundspeak:name>
+ <groundspeak:placed_by>TEXANS</groundspeak:placed_by>
+ <groundspeak:owner id="1">TXGA</groundspeak:owner>
+ <groundspeak:type>Traditional Cache</groundspeak:type>
+ <groundspeak:container>Not chosen</groundspeak:container>
+ <groundspeak:attributes>
+ </groundspeak:attributes>
+ <groundspeak:difficulty>4</groundspeak:difficulty>
+ <groundspeak:terrain>4</groundspeak:terrain>
+ <groundspeak:country></groundspeak:country>
+ <groundspeak:state></groundspeak:state>
+ <groundspeak:short_description html="False"> </groundspeak:short_description>
+ <groundspeak:long_description html="False"> </groundspeak:long_description>
+ <groundspeak:encoded_hints></groundspeak:encoded_hints>
+ <groundspeak:logs>
+ </groundspeak:logs>
+ <groundspeak:travelbugs>
+ </groundspeak:travelbugs>
+</groundspeak:cache>
+</wpt>
+ <wpt lat="33.3752" lon="-97.007883">
+ <time>2012-03-10T08:00:00Z</time>
+ <name>T093</name>
+ <desc>Triditional Cache 093 by TEXANS (3/3)</desc>
+ <url></url>
+ <urlname>Triditional Cache 093 by TEXANS</urlname>
+ <sym>Geocache</sym>
+ <type>Geocache|Traditional Cache</type>
+ <gsak:wptExtension xmlns:gsak="http://www.gsak.net/xmlv1/6">
+ <gsak:UserFlag>false</gsak:UserFlag>
+ <gsak:Lock>false</gsak:Lock>
+ <gsak:DNF>false</gsak:DNF>
+ <gsak:Watch>false</gsak:Watch>
+ <gsak:UserData></gsak:UserData>
+ <gsak:FirstToFind>false</gsak:FirstToFind>
+ <gsak:User2></gsak:User2>
+ <gsak:User3></gsak:User3>
+ <gsak:User4></gsak:User4>
+ <gsak:County></gsak:County>
+ <gsak:UserSort>0</gsak:UserSort>
+ <gsak:SmartName>Tridi093</gsak:SmartName>
+ <gsak:LastGpxDate>2012-03-10</gsak:LastGpxDate>
+ <gsak:Code>T093</gsak:Code>
+ <gsak:Resolution></gsak:Resolution>
+ <gsak:IsPremium>false</gsak:IsPremium>
+ <gsak:FavPoints>0</gsak:FavPoints>
+ <gsak:GcNote></gsak:GcNote>
+ <gsak:Guid></gsak:Guid>
+ <gsak:CacheImages>
+ </gsak:CacheImages>
+ <gsak:LogImages>
+ </gsak:LogImages>
+ <gsak:CustomData>
+Custom_Start:cCode:Custom_Data:T093:Custom_End
+
+ </gsak:CustomData>
+ </gsak:wptExtension>
+ <groundspeak:cache id="147" available="True" archived="False" xmlns:groundspeak="http://www.groundspeak.com/cache/1/0/1">
+ <groundspeak:name>Triditional Cache 093</groundspeak:name>
+ <groundspeak:placed_by>TEXANS</groundspeak:placed_by>
+ <groundspeak:owner id="1">TXGA</groundspeak:owner>
+ <groundspeak:type>Traditional Cache</groundspeak:type>
+ <groundspeak:container>Not chosen</groundspeak:container>
+ <groundspeak:attributes>
+ </groundspeak:attributes>
+ <groundspeak:difficulty>3</groundspeak:difficulty>
+ <groundspeak:terrain>3</groundspeak:terrain>
+ <groundspeak:country></groundspeak:country>
+ <groundspeak:state></groundspeak:state>
+ <groundspeak:short_description html="False"> </groundspeak:short_description>
+ <groundspeak:long_description html="False"> </groundspeak:long_description>
+ <groundspeak:encoded_hints></groundspeak:encoded_hints>
+ <groundspeak:logs>
+ </groundspeak:logs>
+ <groundspeak:travelbugs>
+ </groundspeak:travelbugs>
+</groundspeak:cache>
+</wpt>
+ <wpt lat="33.379683" lon="-97.022583">
+ <time>2012-03-10T08:00:00Z</time>
+ <name>T094</name>
+ <desc>Triditional Cache 094 by TEXANS (2/2.5)</desc>
+ <url></url>
+ <urlname>Triditional Cache 094 by TEXANS</urlname>
+ <sym>Geocache</sym>
+ <type>Geocache|Traditional Cache</type>
+ <gsak:wptExtension xmlns:gsak="http://www.gsak.net/xmlv1/6">
+ <gsak:UserFlag>false</gsak:UserFlag>
+ <gsak:Lock>false</gsak:Lock>
+ <gsak:DNF>false</gsak:DNF>
+ <gsak:Watch>false</gsak:Watch>
+ <gsak:UserData></gsak:UserData>
+ <gsak:FirstToFind>false</gsak:FirstToFind>
+ <gsak:User2></gsak:User2>
+ <gsak:User3></gsak:User3>
+ <gsak:User4></gsak:User4>
+ <gsak:County></gsak:County>
+ <gsak:UserSort>0</gsak:UserSort>
+ <gsak:SmartName>Tridi094</gsak:SmartName>
+ <gsak:LastGpxDate>2012-03-10</gsak:LastGpxDate>
+ <gsak:Code>T094</gsak:Code>
+ <gsak:Resolution></gsak:Resolution>
+ <gsak:IsPremium>false</gsak:IsPremium>
+ <gsak:FavPoints>0</gsak:FavPoints>
+ <gsak:GcNote></gsak:GcNote>
+ <gsak:Guid></gsak:Guid>
+ <gsak:CacheImages>
+ </gsak:CacheImages>
+ <gsak:LogImages>
+ </gsak:LogImages>
+ <gsak:CustomData>
+Custom_Start:cCode:Custom_Data:T094:Custom_End
+
+ </gsak:CustomData>
+ </gsak:wptExtension>
+ <groundspeak:cache id="148" available="True" archived="False" xmlns:groundspeak="http://www.groundspeak.com/cache/1/0/1">
+ <groundspeak:name>Triditional Cache 094</groundspeak:name>
+ <groundspeak:placed_by>TEXANS</groundspeak:placed_by>
+ <groundspeak:owner id="1">TXGA</groundspeak:owner>
+ <groundspeak:type>Traditional Cache</groundspeak:type>
+ <groundspeak:container>Not chosen</groundspeak:container>
+ <groundspeak:attributes>
+ </groundspeak:attributes>
+ <groundspeak:difficulty>2</groundspeak:difficulty>
+ <groundspeak:terrain>2.5</groundspeak:terrain>
+ <groundspeak:country></groundspeak:country>
+ <groundspeak:state></groundspeak:state>
+ <groundspeak:short_description html="False"> </groundspeak:short_description>
+ <groundspeak:long_description html="False"> </groundspeak:long_description>
+ <groundspeak:encoded_hints></groundspeak:encoded_hints>
+ <groundspeak:logs>
+ </groundspeak:logs>
+ <groundspeak:travelbugs>
+ </groundspeak:travelbugs>
+</groundspeak:cache>
+</wpt>
+ <wpt lat="33.390017" lon="-97.022067">
+ <time>2012-03-10T08:00:00Z</time>
+ <name>T095</name>
+ <desc>Triditional Cache 095 by TEXANS (1.5/3)</desc>
+ <url></url>
+ <urlname>Triditional Cache 095 by TEXANS</urlname>
+ <sym>Geocache</sym>
+ <type>Geocache|Traditional Cache</type>
+ <gsak:wptExtension xmlns:gsak="http://www.gsak.net/xmlv1/6">
+ <gsak:UserFlag>false</gsak:UserFlag>
+ <gsak:Lock>false</gsak:Lock>
+ <gsak:DNF>false</gsak:DNF>
+ <gsak:Watch>false</gsak:Watch>
+ <gsak:UserData></gsak:UserData>
+ <gsak:FirstToFind>false</gsak:FirstToFind>
+ <gsak:User2></gsak:User2>
+ <gsak:User3></gsak:User3>
+ <gsak:User4></gsak:User4>
+ <gsak:County></gsak:County>
+ <gsak:UserSort>0</gsak:UserSort>
+ <gsak:SmartName>Tridi095</gsak:SmartName>
+ <gsak:LastGpxDate>2012-03-10</gsak:LastGpxDate>
+ <gsak:Code>T095</gsak:Code>
+ <gsak:Resolution></gsak:Resolution>
+ <gsak:IsPremium>false</gsak:IsPremium>
+ <gsak:FavPoints>0</gsak:FavPoints>
+ <gsak:GcNote></gsak:GcNote>
+ <gsak:Guid></gsak:Guid>
+ <gsak:CacheImages>
+ </gsak:CacheImages>
+ <gsak:LogImages>
+ </gsak:LogImages>
+ <gsak:CustomData>
+Custom_Start:cCode:Custom_Data:T095:Custom_End
+
+ </gsak:CustomData>
+ </gsak:wptExtension>
+ <groundspeak:cache id="149" available="True" archived="False" xmlns:groundspeak="http://www.groundspeak.com/cache/1/0/1">
+ <groundspeak:name>Triditional Cache 095</groundspeak:name>
+ <groundspeak:placed_by>TEXANS</groundspeak:placed_by>
+ <groundspeak:owner id="1">TXGA</groundspeak:owner>
+ <groundspeak:type>Traditional Cache</groundspeak:type>
+ <groundspeak:container>Not chosen</groundspeak:container>
+ <groundspeak:attributes>
+ </groundspeak:attributes>
+ <groundspeak:difficulty>1.5</groundspeak:difficulty>
+ <groundspeak:terrain>3</groundspeak:terrain>
+ <groundspeak:country></groundspeak:country>
+ <groundspeak:state></groundspeak:state>
+ <groundspeak:short_description html="False"> </groundspeak:short_description>
+ <groundspeak:long_description html="False"> </groundspeak:long_description>
+ <groundspeak:encoded_hints></groundspeak:encoded_hints>
+ <groundspeak:logs>
+ </groundspeak:logs>
+ <groundspeak:travelbugs>
+ </groundspeak:travelbugs>
+</groundspeak:cache>
+</wpt>
+ <wpt lat="33.392333" lon="-97.017317">
+ <time>2012-03-10T08:00:00Z</time>
+ <name>T096</name>
+ <desc>Triditional Cache 096 by TEXANS (3/3)</desc>
+ <url></url>
+ <urlname>Triditional Cache 096 by TEXANS</urlname>
+ <sym>Geocache</sym>
+ <type>Geocache|Traditional Cache</type>
+ <gsak:wptExtension xmlns:gsak="http://www.gsak.net/xmlv1/6">
+ <gsak:UserFlag>false</gsak:UserFlag>
+ <gsak:Lock>false</gsak:Lock>
+ <gsak:DNF>false</gsak:DNF>
+ <gsak:Watch>false</gsak:Watch>
+ <gsak:UserData></gsak:UserData>
+ <gsak:FirstToFind>false</gsak:FirstToFind>
+ <gsak:User2></gsak:User2>
+ <gsak:User3></gsak:User3>
+ <gsak:User4></gsak:User4>
+ <gsak:County></gsak:County>
+ <gsak:UserSort>0</gsak:UserSort>
+ <gsak:SmartName>Tridi096</gsak:SmartName>
+ <gsak:LastGpxDate>2012-03-10</gsak:LastGpxDate>
+ <gsak:Code>T096</gsak:Code>
+ <gsak:Resolution></gsak:Resolution>
+ <gsak:IsPremium>false</gsak:IsPremium>
+ <gsak:FavPoints>0</gsak:FavPoints>
+ <gsak:GcNote></gsak:GcNote>
+ <gsak:Guid></gsak:Guid>
+ <gsak:CacheImages>
+ </gsak:CacheImages>
+ <gsak:LogImages>
+ </gsak:LogImages>
+ <gsak:CustomData>
+Custom_Start:cCode:Custom_Data:T096:Custom_End
+
+ </gsak:CustomData>
+ </gsak:wptExtension>
+ <groundspeak:cache id="150" available="True" archived="False" xmlns:groundspeak="http://www.groundspeak.com/cache/1/0/1">
+ <groundspeak:name>Triditional Cache 096</groundspeak:name>
+ <groundspeak:placed_by>TEXANS</groundspeak:placed_by>
+ <groundspeak:owner id="1">TXGA</groundspeak:owner>
+ <groundspeak:type>Traditional Cache</groundspeak:type>
+ <groundspeak:container>Not chosen</groundspeak:container>
+ <groundspeak:attributes>
+ </groundspeak:attributes>
+ <groundspeak:difficulty>3</groundspeak:difficulty>
+ <groundspeak:terrain>3</groundspeak:terrain>
+ <groundspeak:country></groundspeak:country>
+ <groundspeak:state></groundspeak:state>
+ <groundspeak:short_description html="False"> </groundspeak:short_description>
+ <groundspeak:long_description html="False"> </groundspeak:long_description>
+ <groundspeak:encoded_hints></groundspeak:encoded_hints>
+ <groundspeak:logs>
+ </groundspeak:logs>
+ <groundspeak:travelbugs>
+ </groundspeak:travelbugs>
+</groundspeak:cache>
+</wpt>
+ <wpt lat="33.400217" lon="-97.008267">
+ <time>2012-03-10T08:00:00Z</time>
+ <name>T097</name>
+ <desc>Triditional Cache 097 by TEXANS (4/2)</desc>
+ <url></url>
+ <urlname>Triditional Cache 097 by TEXANS</urlname>
+ <sym>Geocache</sym>
+ <type>Geocache|Traditional Cache</type>
+ <gsak:wptExtension xmlns:gsak="http://www.gsak.net/xmlv1/6">
+ <gsak:UserFlag>false</gsak:UserFlag>
+ <gsak:Lock>false</gsak:Lock>
+ <gsak:DNF>false</gsak:DNF>
+ <gsak:Watch>false</gsak:Watch>
+ <gsak:UserData></gsak:UserData>
+ <gsak:FirstToFind>false</gsak:FirstToFind>
+ <gsak:User2></gsak:User2>
+ <gsak:User3></gsak:User3>
+ <gsak:User4></gsak:User4>
+ <gsak:County></gsak:County>
+ <gsak:UserSort>0</gsak:UserSort>
+ <gsak:SmartName>Tridi097</gsak:SmartName>
+ <gsak:LastGpxDate>2012-03-10</gsak:LastGpxDate>
+ <gsak:Code>T097</gsak:Code>
+ <gsak:Resolution></gsak:Resolution>
+ <gsak:IsPremium>false</gsak:IsPremium>
+ <gsak:FavPoints>0</gsak:FavPoints>
+ <gsak:GcNote></gsak:GcNote>
+ <gsak:Guid></gsak:Guid>
+ <gsak:CacheImages>
+ </gsak:CacheImages>
+ <gsak:LogImages>
+ </gsak:LogImages>
+ <gsak:CustomData>
+Custom_Start:cCode:Custom_Data:T097:Custom_End
+
+ </gsak:CustomData>
+ </gsak:wptExtension>
+ <groundspeak:cache id="151" available="True" archived="False" xmlns:groundspeak="http://www.groundspeak.com/cache/1/0/1">
+ <groundspeak:name>Triditional Cache 097</groundspeak:name>
+ <groundspeak:placed_by>TEXANS</groundspeak:placed_by>
+ <groundspeak:owner id="1">TXGA</groundspeak:owner>
+ <groundspeak:type>Traditional Cache</groundspeak:type>
+ <groundspeak:container>Not chosen</groundspeak:container>
+ <groundspeak:attributes>
+ </groundspeak:attributes>
+ <groundspeak:difficulty>4</groundspeak:difficulty>
+ <groundspeak:terrain>2</groundspeak:terrain>
+ <groundspeak:country></groundspeak:country>
+ <groundspeak:state></groundspeak:state>
+ <groundspeak:short_description html="False"> </groundspeak:short_description>
+ <groundspeak:long_description html="False"> </groundspeak:long_description>
+ <groundspeak:encoded_hints></groundspeak:encoded_hints>
+ <groundspeak:logs>
+ </groundspeak:logs>
+ <groundspeak:travelbugs>
+ </groundspeak:travelbugs>
+</groundspeak:cache>
+</wpt>
+ <wpt lat="33.39795" lon="-97.004417">
+ <time>2012-03-10T08:00:00Z</time>
+ <name>T098</name>
+ <desc>Triditional Cache 098 by TEXANS (2/1.5)</desc>
+ <url></url>
+ <urlname>Triditional Cache 098 by TEXANS</urlname>
+ <sym>Geocache</sym>
+ <type>Geocache|Traditional Cache</type>
+ <gsak:wptExtension xmlns:gsak="http://www.gsak.net/xmlv1/6">
+ <gsak:UserFlag>false</gsak:UserFlag>
+ <gsak:Lock>false</gsak:Lock>
+ <gsak:DNF>false</gsak:DNF>
+ <gsak:Watch>false</gsak:Watch>
+ <gsak:UserData></gsak:UserData>
+ <gsak:FirstToFind>false</gsak:FirstToFind>
+ <gsak:User2></gsak:User2>
+ <gsak:User3></gsak:User3>
+ <gsak:User4></gsak:User4>
+ <gsak:County></gsak:County>
+ <gsak:UserSort>0</gsak:UserSort>
+ <gsak:SmartName>Tridi098</gsak:SmartName>
+ <gsak:LastGpxDate>2012-03-10</gsak:LastGpxDate>
+ <gsak:Code>T098</gsak:Code>
+ <gsak:Resolution></gsak:Resolution>
+ <gsak:IsPremium>false</gsak:IsPremium>
+ <gsak:FavPoints>0</gsak:FavPoints>
+ <gsak:GcNote></gsak:GcNote>
+ <gsak:Guid></gsak:Guid>
+ <gsak:CacheImages>
+ </gsak:CacheImages>
+ <gsak:LogImages>
+ </gsak:LogImages>
+ <gsak:CustomData>
+Custom_Start:cCode:Custom_Data:T098:Custom_End
+
+ </gsak:CustomData>
+ </gsak:wptExtension>
+ <groundspeak:cache id="152" available="True" archived="False" xmlns:groundspeak="http://www.groundspeak.com/cache/1/0/1">
+ <groundspeak:name>Triditional Cache 098</groundspeak:name>
+ <groundspeak:placed_by>TEXANS</groundspeak:placed_by>
+ <groundspeak:owner id="1">TXGA</groundspeak:owner>
+ <groundspeak:type>Traditional Cache</groundspeak:type>
+ <groundspeak:container>Not chosen</groundspeak:container>
+ <groundspeak:attributes>
+ </groundspeak:attributes>
+ <groundspeak:difficulty>2</groundspeak:difficulty>
+ <groundspeak:terrain>1.5</groundspeak:terrain>
+ <groundspeak:country></groundspeak:country>
+ <groundspeak:state></groundspeak:state>
+ <groundspeak:short_description html="False"> </groundspeak:short_description>
+ <groundspeak:long_description html="False"> </groundspeak:long_description>
+ <groundspeak:encoded_hints></groundspeak:encoded_hints>
+ <groundspeak:logs>
+ </groundspeak:logs>
+ <groundspeak:travelbugs>
+ </groundspeak:travelbugs>
+</groundspeak:cache>
+</wpt>
+ <wpt lat="33.380567" lon="-97.009367">
+ <time>2012-03-10T08:00:00Z</time>
+ <name>T099</name>
+ <desc>Triditional Cache 099 by TEXANS (2/3)</desc>
+ <url></url>
+ <urlname>Triditional Cache 099 by TEXANS</urlname>
+ <sym>Geocache</sym>
+ <type>Geocache|Traditional Cache</type>
+ <gsak:wptExtension xmlns:gsak="http://www.gsak.net/xmlv1/6">
+ <gsak:UserFlag>false</gsak:UserFlag>
+ <gsak:Lock>false</gsak:Lock>
+ <gsak:DNF>false</gsak:DNF>
+ <gsak:Watch>false</gsak:Watch>
+ <gsak:UserData></gsak:UserData>
+ <gsak:FirstToFind>false</gsak:FirstToFind>
+ <gsak:User2></gsak:User2>
+ <gsak:User3></gsak:User3>
+ <gsak:User4></gsak:User4>
+ <gsak:County></gsak:County>
+ <gsak:UserSort>0</gsak:UserSort>
+ <gsak:SmartName>Tridi099</gsak:SmartName>
+ <gsak:LastGpxDate>2012-03-10</gsak:LastGpxDate>
+ <gsak:Code>T099</gsak:Code>
+ <gsak:Resolution></gsak:Resolution>
+ <gsak:IsPremium>false</gsak:IsPremium>
+ <gsak:FavPoints>0</gsak:FavPoints>
+ <gsak:GcNote></gsak:GcNote>
+ <gsak:Guid></gsak:Guid>
+ <gsak:CacheImages>
+ </gsak:CacheImages>
+ <gsak:LogImages>
+ </gsak:LogImages>
+ <gsak:CustomData>
+Custom_Start:cCode:Custom_Data:T099:Custom_End
+
+ </gsak:CustomData>
+ </gsak:wptExtension>
+ <groundspeak:cache id="153" available="True" archived="False" xmlns:groundspeak="http://www.groundspeak.com/cache/1/0/1">
+ <groundspeak:name>Triditional Cache 099</groundspeak:name>
+ <groundspeak:placed_by>TEXANS</groundspeak:placed_by>
+ <groundspeak:owner id="1">TXGA</groundspeak:owner>
+ <groundspeak:type>Traditional Cache</groundspeak:type>
+ <groundspeak:container>Not chosen</groundspeak:container>
+ <groundspeak:attributes>
+ </groundspeak:attributes>
+ <groundspeak:difficulty>2</groundspeak:difficulty>
+ <groundspeak:terrain>3</groundspeak:terrain>
+ <groundspeak:country></groundspeak:country>
+ <groundspeak:state></groundspeak:state>
+ <groundspeak:short_description html="False"> </groundspeak:short_description>
+ <groundspeak:long_description html="False"> </groundspeak:long_description>
+ <groundspeak:encoded_hints></groundspeak:encoded_hints>
+ <groundspeak:logs>
+ </groundspeak:logs>
+ <groundspeak:travelbugs>
+ </groundspeak:travelbugs>
+</groundspeak:cache>
+</wpt>
+ <wpt lat="33.362383" lon="-97.01365">
+ <time>2012-03-10T08:00:00Z</time>
+ <name>T100</name>
+ <desc>Triditional Cache 100 by TEXANS (4.5/4.5)</desc>
+ <url></url>
+ <urlname>Triditional Cache 100 by TEXANS</urlname>
+ <sym>Geocache</sym>
+ <type>Geocache|Traditional Cache</type>
+ <gsak:wptExtension xmlns:gsak="http://www.gsak.net/xmlv1/6">
+ <gsak:UserFlag>false</gsak:UserFlag>
+ <gsak:Lock>false</gsak:Lock>
+ <gsak:DNF>false</gsak:DNF>
+ <gsak:Watch>false</gsak:Watch>
+ <gsak:UserData></gsak:UserData>
+ <gsak:FirstToFind>false</gsak:FirstToFind>
+ <gsak:User2></gsak:User2>
+ <gsak:User3></gsak:User3>
+ <gsak:User4></gsak:User4>
+ <gsak:County></gsak:County>
+ <gsak:UserSort>0</gsak:UserSort>
+ <gsak:SmartName>Tridi100</gsak:SmartName>
+ <gsak:LastGpxDate>2012-03-10</gsak:LastGpxDate>
+ <gsak:Code>T100</gsak:Code>
+ <gsak:Resolution></gsak:Resolution>
+ <gsak:IsPremium>false</gsak:IsPremium>
+ <gsak:FavPoints>0</gsak:FavPoints>
+ <gsak:GcNote></gsak:GcNote>
+ <gsak:Guid></gsak:Guid>
+ <gsak:CacheImages>
+ </gsak:CacheImages>
+ <gsak:LogImages>
+ </gsak:LogImages>
+ <gsak:CustomData>
+Custom_Start:cCode:Custom_Data:T100:Custom_End
+
+ </gsak:CustomData>
+ </gsak:wptExtension>
+ <groundspeak:cache id="256" available="True" archived="False" xmlns:groundspeak="http://www.groundspeak.com/cache/1/0/1">
+ <groundspeak:name>Triditional Cache 100</groundspeak:name>
+ <groundspeak:placed_by>TEXANS</groundspeak:placed_by>
+ <groundspeak:owner id="1">TXGA</groundspeak:owner>
+ <groundspeak:type>Traditional Cache</groundspeak:type>
+ <groundspeak:container>Not chosen</groundspeak:container>
+ <groundspeak:attributes>
+ </groundspeak:attributes>
+ <groundspeak:difficulty>4.5</groundspeak:difficulty>
+ <groundspeak:terrain>4.5</groundspeak:terrain>
+ <groundspeak:country></groundspeak:country>
+ <groundspeak:state></groundspeak:state>
+ <groundspeak:short_description html="False"> </groundspeak:short_description>
+ <groundspeak:long_description html="False"> </groundspeak:long_description>
+ <groundspeak:encoded_hints></groundspeak:encoded_hints>
+ <groundspeak:logs>
+ </groundspeak:logs>
+ <groundspeak:travelbugs>
+ </groundspeak:travelbugs>
+</groundspeak:cache>
+</wpt>
+ <wpt lat="33.365083" lon="-97.018767">
+ <time>2012-03-10T08:00:00Z</time>
+ <name>T102</name>
+ <desc>Triditional Cache 102 by TEXANS (4/4)</desc>
+ <url></url>
+ <urlname>Triditional Cache 102 by TEXANS</urlname>
+ <sym>Geocache</sym>
+ <type>Geocache|Traditional Cache</type>
+ <gsak:wptExtension xmlns:gsak="http://www.gsak.net/xmlv1/6">
+ <gsak:UserFlag>false</gsak:UserFlag>
+ <gsak:Lock>false</gsak:Lock>
+ <gsak:DNF>false</gsak:DNF>
+ <gsak:Watch>false</gsak:Watch>
+ <gsak:UserData></gsak:UserData>
+ <gsak:FirstToFind>false</gsak:FirstToFind>
+ <gsak:User2></gsak:User2>
+ <gsak:User3></gsak:User3>
+ <gsak:User4></gsak:User4>
+ <gsak:County></gsak:County>
+ <gsak:UserSort>0</gsak:UserSort>
+ <gsak:SmartName>Tridi102</gsak:SmartName>
+ <gsak:LastGpxDate>2012-03-10</gsak:LastGpxDate>
+ <gsak:Code>T102</gsak:Code>
+ <gsak:Resolution></gsak:Resolution>
+ <gsak:IsPremium>false</gsak:IsPremium>
+ <gsak:FavPoints>0</gsak:FavPoints>
+ <gsak:GcNote></gsak:GcNote>
+ <gsak:Guid></gsak:Guid>
+ <gsak:CacheImages>
+ </gsak:CacheImages>
+ <gsak:LogImages>
+ </gsak:LogImages>
+ <gsak:CustomData>
+Custom_Start:cCode:Custom_Data:T102:Custom_End
+
+ </gsak:CustomData>
+ </gsak:wptExtension>
+ <groundspeak:cache id="258" available="True" archived="False" xmlns:groundspeak="http://www.groundspeak.com/cache/1/0/1">
+ <groundspeak:name>Triditional Cache 102</groundspeak:name>
+ <groundspeak:placed_by>TEXANS</groundspeak:placed_by>
+ <groundspeak:owner id="1">TXGA</groundspeak:owner>
+ <groundspeak:type>Traditional Cache</groundspeak:type>
+ <groundspeak:container>Not chosen</groundspeak:container>
+ <groundspeak:attributes>
+ </groundspeak:attributes>
+ <groundspeak:difficulty>4</groundspeak:difficulty>
+ <groundspeak:terrain>4</groundspeak:terrain>
+ <groundspeak:country></groundspeak:country>
+ <groundspeak:state></groundspeak:state>
+ <groundspeak:short_description html="False"> </groundspeak:short_description>
+ <groundspeak:long_description html="False"> </groundspeak:long_description>
+ <groundspeak:encoded_hints></groundspeak:encoded_hints>
+ <groundspeak:logs>
+ </groundspeak:logs>
+ <groundspeak:travelbugs>
+ </groundspeak:travelbugs>
+</groundspeak:cache>
+</wpt>
+ <wpt lat="33.365867" lon="-97.020017">
+ <time>2012-03-10T08:00:00Z</time>
+ <name>T103</name>
+ <desc>Triditional Cache 103 by TEXANS (3/4)</desc>
+ <url></url>
+ <urlname>Triditional Cache 103 by TEXANS</urlname>
+ <sym>Geocache</sym>
+ <type>Geocache|Traditional Cache</type>
+ <gsak:wptExtension xmlns:gsak="http://www.gsak.net/xmlv1/6">
+ <gsak:UserFlag>false</gsak:UserFlag>
+ <gsak:Lock>false</gsak:Lock>
+ <gsak:DNF>false</gsak:DNF>
+ <gsak:Watch>false</gsak:Watch>
+ <gsak:UserData></gsak:UserData>
+ <gsak:FirstToFind>false</gsak:FirstToFind>
+ <gsak:User2></gsak:User2>
+ <gsak:User3></gsak:User3>
+ <gsak:User4></gsak:User4>
+ <gsak:County></gsak:County>
+ <gsak:UserSort>0</gsak:UserSort>
+ <gsak:SmartName>Tridi103</gsak:SmartName>
+ <gsak:LastGpxDate>2012-03-10</gsak:LastGpxDate>
+ <gsak:Code>T103</gsak:Code>
+ <gsak:Resolution></gsak:Resolution>
+ <gsak:IsPremium>false</gsak:IsPremium>
+ <gsak:FavPoints>0</gsak:FavPoints>
+ <gsak:GcNote></gsak:GcNote>
+ <gsak:Guid></gsak:Guid>
+ <gsak:CacheImages>
+ </gsak:CacheImages>
+ <gsak:LogImages>
+ </gsak:LogImages>
+ <gsak:CustomData>
+Custom_Start:cCode:Custom_Data:T103:Custom_End
+
+ </gsak:CustomData>
+ </gsak:wptExtension>
+ <groundspeak:cache id="259" available="True" archived="False" xmlns:groundspeak="http://www.groundspeak.com/cache/1/0/1">
+ <groundspeak:name>Triditional Cache 103</groundspeak:name>
+ <groundspeak:placed_by>TEXANS</groundspeak:placed_by>
+ <groundspeak:owner id="1">TXGA</groundspeak:owner>
+ <groundspeak:type>Traditional Cache</groundspeak:type>
+ <groundspeak:container>Not chosen</groundspeak:container>
+ <groundspeak:attributes>
+ </groundspeak:attributes>
+ <groundspeak:difficulty>3</groundspeak:difficulty>
+ <groundspeak:terrain>4</groundspeak:terrain>
+ <groundspeak:country></groundspeak:country>
+ <groundspeak:state></groundspeak:state>
+ <groundspeak:short_description html="False"> </groundspeak:short_description>
+ <groundspeak:long_description html="False"> </groundspeak:long_description>
+ <groundspeak:encoded_hints></groundspeak:encoded_hints>
+ <groundspeak:logs>
+ </groundspeak:logs>
+ <groundspeak:travelbugs>
+ </groundspeak:travelbugs>
+</groundspeak:cache>
+</wpt>
+ <wpt lat="33.403383" lon="-96.995167">
+ <time>2012-03-10T08:00:00Z</time>
+ <name>T104</name>
+ <desc>Triditional Cache 104 by TEXANS (1.5/2)</desc>
+ <url></url>
+ <urlname>Triditional Cache 104 by TEXANS</urlname>
+ <sym>Geocache</sym>
+ <type>Geocache|Traditional Cache</type>
+ <gsak:wptExtension xmlns:gsak="http://www.gsak.net/xmlv1/6">
+ <gsak:UserFlag>false</gsak:UserFlag>
+ <gsak:Lock>false</gsak:Lock>
+ <gsak:DNF>false</gsak:DNF>
+ <gsak:Watch>false</gsak:Watch>
+ <gsak:UserData></gsak:UserData>
+ <gsak:FirstToFind>false</gsak:FirstToFind>
+ <gsak:User2></gsak:User2>
+ <gsak:User3></gsak:User3>
+ <gsak:User4></gsak:User4>
+ <gsak:County></gsak:County>
+ <gsak:UserSort>0</gsak:UserSort>
+ <gsak:SmartName>Tridi104</gsak:SmartName>
+ <gsak:LastGpxDate>2012-03-10</gsak:LastGpxDate>
+ <gsak:Code>T104</gsak:Code>
+ <gsak:Resolution></gsak:Resolution>
+ <gsak:IsPremium>false</gsak:IsPremium>
+ <gsak:FavPoints>0</gsak:FavPoints>
+ <gsak:GcNote></gsak:GcNote>
+ <gsak:Guid></gsak:Guid>
+ <gsak:CacheImages>
+ </gsak:CacheImages>
+ <gsak:LogImages>
+ </gsak:LogImages>
+ <gsak:CustomData>
+Custom_Start:cCode:Custom_Data:T104:Custom_End
+
+ </gsak:CustomData>
+ </gsak:wptExtension>
+ <groundspeak:cache id="260" available="True" archived="False" xmlns:groundspeak="http://www.groundspeak.com/cache/1/0/1">
+ <groundspeak:name>Triditional Cache 104</groundspeak:name>
+ <groundspeak:placed_by>TEXANS</groundspeak:placed_by>
+ <groundspeak:owner id="1">TXGA</groundspeak:owner>
+ <groundspeak:type>Traditional Cache</groundspeak:type>
+ <groundspeak:container>Not chosen</groundspeak:container>
+ <groundspeak:attributes>
+ </groundspeak:attributes>
+ <groundspeak:difficulty>1.5</groundspeak:difficulty>
+ <groundspeak:terrain>2</groundspeak:terrain>
+ <groundspeak:country></groundspeak:country>
+ <groundspeak:state></groundspeak:state>
+ <groundspeak:short_description html="False"> </groundspeak:short_description>
+ <groundspeak:long_description html="False"> </groundspeak:long_description>
+ <groundspeak:encoded_hints></groundspeak:encoded_hints>
+ <groundspeak:logs>
+ </groundspeak:logs>
+ <groundspeak:travelbugs>
+ </groundspeak:travelbugs>
+</groundspeak:cache>
+</wpt>
+ <wpt lat="33.38385" lon="-97.0057">
+ <time>2012-03-10T08:00:00Z</time>
+ <name>T105</name>
+ <desc>Triditional Cache 105 by TEXANS (2/2)</desc>
+ <url></url>
+ <urlname>Triditional Cache 105 by TEXANS</urlname>
+ <sym>Geocache</sym>
+ <type>Geocache|Traditional Cache</type>
+ <gsak:wptExtension xmlns:gsak="http://www.gsak.net/xmlv1/6">
+ <gsak:UserFlag>false</gsak:UserFlag>
+ <gsak:Lock>false</gsak:Lock>
+ <gsak:DNF>false</gsak:DNF>
+ <gsak:Watch>false</gsak:Watch>
+ <gsak:UserData></gsak:UserData>
+ <gsak:FirstToFind>false</gsak:FirstToFind>
+ <gsak:User2></gsak:User2>
+ <gsak:User3></gsak:User3>
+ <gsak:User4></gsak:User4>
+ <gsak:County></gsak:County>
+ <gsak:UserSort>0</gsak:UserSort>
+ <gsak:SmartName>Tridi105</gsak:SmartName>
+ <gsak:LastGpxDate>2012-03-10</gsak:LastGpxDate>
+ <gsak:Code>T105</gsak:Code>
+ <gsak:Resolution></gsak:Resolution>
+ <gsak:IsPremium>false</gsak:IsPremium>
+ <gsak:FavPoints>0</gsak:FavPoints>
+ <gsak:GcNote></gsak:GcNote>
+ <gsak:Guid></gsak:Guid>
+ <gsak:CacheImages>
+ </gsak:CacheImages>
+ <gsak:LogImages>
+ </gsak:LogImages>
+ <gsak:CustomData>
+Custom_Start:cCode:Custom_Data:T105:Custom_End
+
+ </gsak:CustomData>
+ </gsak:wptExtension>
+ <groundspeak:cache id="261" available="True" archived="False" xmlns:groundspeak="http://www.groundspeak.com/cache/1/0/1">
+ <groundspeak:name>Triditional Cache 105</groundspeak:name>
+ <groundspeak:placed_by>TEXANS</groundspeak:placed_by>
+ <groundspeak:owner id="1">TXGA</groundspeak:owner>
+ <groundspeak:type>Traditional Cache</groundspeak:type>
+ <groundspeak:container>Not chosen</groundspeak:container>
+ <groundspeak:attributes>
+ </groundspeak:attributes>
+ <groundspeak:difficulty>2</groundspeak:difficulty>
+ <groundspeak:terrain>2</groundspeak:terrain>
+ <groundspeak:country></groundspeak:country>
+ <groundspeak:state></groundspeak:state>
+ <groundspeak:short_description html="False"> </groundspeak:short_description>
+ <groundspeak:long_description html="False"> </groundspeak:long_description>
+ <groundspeak:encoded_hints></groundspeak:encoded_hints>
+ <groundspeak:logs>
+ </groundspeak:logs>
+ <groundspeak:travelbugs>
+ </groundspeak:travelbugs>
+</groundspeak:cache>
+</wpt>
+ <wpt lat="33.384233" lon="-97.009183">
+ <time>2012-03-10T08:00:00Z</time>
+ <name>T106</name>
+ <desc>Triditional Cache 106 by TEXANS (3/3)</desc>
+ <url></url>
+ <urlname>Triditional Cache 106 by TEXANS</urlname>
+ <sym>Geocache</sym>
+ <type>Geocache|Traditional Cache</type>
+ <gsak:wptExtension xmlns:gsak="http://www.gsak.net/xmlv1/6">
+ <gsak:UserFlag>false</gsak:UserFlag>
+ <gsak:Lock>false</gsak:Lock>
+ <gsak:DNF>false</gsak:DNF>
+ <gsak:Watch>false</gsak:Watch>
+ <gsak:UserData></gsak:UserData>
+ <gsak:FirstToFind>false</gsak:FirstToFind>
+ <gsak:User2></gsak:User2>
+ <gsak:User3></gsak:User3>
+ <gsak:User4></gsak:User4>
+ <gsak:County></gsak:County>
+ <gsak:UserSort>0</gsak:UserSort>
+ <gsak:SmartName>Tridi106</gsak:SmartName>
+ <gsak:LastGpxDate>2012-03-10</gsak:LastGpxDate>
+ <gsak:Code>T106</gsak:Code>
+ <gsak:Resolution></gsak:Resolution>
+ <gsak:IsPremium>false</gsak:IsPremium>
+ <gsak:FavPoints>0</gsak:FavPoints>
+ <gsak:GcNote></gsak:GcNote>
+ <gsak:Guid></gsak:Guid>
+ <gsak:CacheImages>
+ </gsak:CacheImages>
+ <gsak:LogImages>
+ </gsak:LogImages>
+ <gsak:CustomData>
+Custom_Start:cCode:Custom_Data:T106:Custom_End
+
+ </gsak:CustomData>
+ </gsak:wptExtension>
+ <groundspeak:cache id="262" available="True" archived="False" xmlns:groundspeak="http://www.groundspeak.com/cache/1/0/1">
+ <groundspeak:name>Triditional Cache 106</groundspeak:name>
+ <groundspeak:placed_by>TEXANS</groundspeak:placed_by>
+ <groundspeak:owner id="1">TXGA</groundspeak:owner>
+ <groundspeak:type>Traditional Cache</groundspeak:type>
+ <groundspeak:container>Not chosen</groundspeak:container>
+ <groundspeak:attributes>
+ </groundspeak:attributes>
+ <groundspeak:difficulty>3</groundspeak:difficulty>
+ <groundspeak:terrain>3</groundspeak:terrain>
+ <groundspeak:country></groundspeak:country>
+ <groundspeak:state></groundspeak:state>
+ <groundspeak:short_description html="False"> </groundspeak:short_description>
+ <groundspeak:long_description html="False"> </groundspeak:long_description>
+ <groundspeak:encoded_hints></groundspeak:encoded_hints>
+ <groundspeak:logs>
+ </groundspeak:logs>
+ <groundspeak:travelbugs>
+ </groundspeak:travelbugs>
+</groundspeak:cache>
+</wpt>
+ <wpt lat="33.378567" lon="-97.008067">
+ <time>2012-03-10T08:00:00Z</time>
+ <name>T108</name>
+ <desc>Triditional Cache 108 by TEXANS (2/4)</desc>
+ <url></url>
+ <urlname>Triditional Cache 108 by TEXANS</urlname>
+ <sym>Geocache</sym>
+ <type>Geocache|Traditional Cache</type>
+ <gsak:wptExtension xmlns:gsak="http://www.gsak.net/xmlv1/6">
+ <gsak:UserFlag>false</gsak:UserFlag>
+ <gsak:Lock>false</gsak:Lock>
+ <gsak:DNF>false</gsak:DNF>
+ <gsak:Watch>false</gsak:Watch>
+ <gsak:UserData></gsak:UserData>
+ <gsak:FirstToFind>false</gsak:FirstToFind>
+ <gsak:User2></gsak:User2>
+ <gsak:User3></gsak:User3>
+ <gsak:User4></gsak:User4>
+ <gsak:County></gsak:County>
+ <gsak:UserSort>0</gsak:UserSort>
+ <gsak:SmartName>Tridi108</gsak:SmartName>
+ <gsak:LastGpxDate>2012-03-10</gsak:LastGpxDate>
+ <gsak:Code>T108</gsak:Code>
+ <gsak:Resolution></gsak:Resolution>
+ <gsak:IsPremium>false</gsak:IsPremium>
+ <gsak:FavPoints>0</gsak:FavPoints>
+ <gsak:GcNote></gsak:GcNote>
+ <gsak:Guid></gsak:Guid>
+ <gsak:CacheImages>
+ </gsak:CacheImages>
+ <gsak:LogImages>
+ </gsak:LogImages>
+ <gsak:CustomData>
+Custom_Start:cCode:Custom_Data:T108:Custom_End
+
+ </gsak:CustomData>
+ </gsak:wptExtension>
+ <groundspeak:cache id="264" available="True" archived="False" xmlns:groundspeak="http://www.groundspeak.com/cache/1/0/1">
+ <groundspeak:name>Triditional Cache 108</groundspeak:name>
+ <groundspeak:placed_by>TEXANS</groundspeak:placed_by>
+ <groundspeak:owner id="1">TXGA</groundspeak:owner>
+ <groundspeak:type>Traditional Cache</groundspeak:type>
+ <groundspeak:container>Not chosen</groundspeak:container>
+ <groundspeak:attributes>
+ </groundspeak:attributes>
+ <groundspeak:difficulty>2</groundspeak:difficulty>
+ <groundspeak:terrain>4</groundspeak:terrain>
+ <groundspeak:country></groundspeak:country>
+ <groundspeak:state></groundspeak:state>
+ <groundspeak:short_description html="False"> </groundspeak:short_description>
+ <groundspeak:long_description html="False"> </groundspeak:long_description>
+ <groundspeak:encoded_hints></groundspeak:encoded_hints>
+ <groundspeak:logs>
+ </groundspeak:logs>
+ <groundspeak:travelbugs>
+ </groundspeak:travelbugs>
+</groundspeak:cache>
+</wpt>
+ <wpt lat="33.376317" lon="-97.019167">
+ <time>2012-03-10T08:00:00Z</time>
+ <name>T109</name>
+ <desc>Triditional Cache 109 by TEXANS (2/2)</desc>
+ <url></url>
+ <urlname>Triditional Cache 109 by TEXANS</urlname>
+ <sym>Geocache</sym>
+ <type>Geocache|Traditional Cache</type>
+ <gsak:wptExtension xmlns:gsak="http://www.gsak.net/xmlv1/6">
+ <gsak:UserFlag>false</gsak:UserFlag>
+ <gsak:Lock>false</gsak:Lock>
+ <gsak:DNF>false</gsak:DNF>
+ <gsak:Watch>false</gsak:Watch>
+ <gsak:UserData></gsak:UserData>
+ <gsak:FirstToFind>false</gsak:FirstToFind>
+ <gsak:User2></gsak:User2>
+ <gsak:User3></gsak:User3>
+ <gsak:User4></gsak:User4>
+ <gsak:County></gsak:County>
+ <gsak:UserSort>0</gsak:UserSort>
+ <gsak:SmartName>Tridi109</gsak:SmartName>
+ <gsak:LastGpxDate>2012-03-10</gsak:LastGpxDate>
+ <gsak:Code>T109</gsak:Code>
+ <gsak:Resolution></gsak:Resolution>
+ <gsak:IsPremium>false</gsak:IsPremium>
+ <gsak:FavPoints>0</gsak:FavPoints>
+ <gsak:GcNote></gsak:GcNote>
+ <gsak:Guid></gsak:Guid>
+ <gsak:CacheImages>
+ </gsak:CacheImages>
+ <gsak:LogImages>
+ </gsak:LogImages>
+ <gsak:CustomData>
+Custom_Start:cCode:Custom_Data:T109:Custom_End
+
+ </gsak:CustomData>
+ </gsak:wptExtension>
+ <groundspeak:cache id="265" available="True" archived="False" xmlns:groundspeak="http://www.groundspeak.com/cache/1/0/1">
+ <groundspeak:name>Triditional Cache 109</groundspeak:name>
+ <groundspeak:placed_by>TEXANS</groundspeak:placed_by>
+ <groundspeak:owner id="1">TXGA</groundspeak:owner>
+ <groundspeak:type>Traditional Cache</groundspeak:type>
+ <groundspeak:container>Not chosen</groundspeak:container>
+ <groundspeak:attributes>
+ </groundspeak:attributes>
+ <groundspeak:difficulty>2</groundspeak:difficulty>
+ <groundspeak:terrain>2</groundspeak:terrain>
+ <groundspeak:country></groundspeak:country>
+ <groundspeak:state></groundspeak:state>
+ <groundspeak:short_description html="False"> </groundspeak:short_description>
+ <groundspeak:long_description html="False"> </groundspeak:long_description>
+ <groundspeak:encoded_hints></groundspeak:encoded_hints>
+ <groundspeak:logs>
+ </groundspeak:logs>
+ <groundspeak:travelbugs>
+ </groundspeak:travelbugs>
+</groundspeak:cache>
+</wpt>
+ <wpt lat="33.365283" lon="-97.012033">
+ <time>2012-03-10T08:00:00Z</time>
+ <name>T110</name>
+ <desc>Triditional Cache 110 by TEXANS (1.5/1.5)</desc>
+ <url></url>
+ <urlname>Triditional Cache 110 by TEXANS</urlname>
+ <sym>Geocache</sym>
+ <type>Geocache|Traditional Cache</type>
+ <gsak:wptExtension xmlns:gsak="http://www.gsak.net/xmlv1/6">
+ <gsak:UserFlag>false</gsak:UserFlag>
+ <gsak:Lock>false</gsak:Lock>
+ <gsak:DNF>false</gsak:DNF>
+ <gsak:Watch>false</gsak:Watch>
+ <gsak:UserData></gsak:UserData>
+ <gsak:FirstToFind>false</gsak:FirstToFind>
+ <gsak:User2></gsak:User2>
+ <gsak:User3></gsak:User3>
+ <gsak:User4></gsak:User4>
+ <gsak:County></gsak:County>
+ <gsak:UserSort>0</gsak:UserSort>
+ <gsak:SmartName>Tridi110</gsak:SmartName>
+ <gsak:LastGpxDate>2012-03-10</gsak:LastGpxDate>
+ <gsak:Code>T110</gsak:Code>
+ <gsak:Resolution></gsak:Resolution>
+ <gsak:IsPremium>false</gsak:IsPremium>
+ <gsak:FavPoints>0</gsak:FavPoints>
+ <gsak:GcNote></gsak:GcNote>
+ <gsak:Guid></gsak:Guid>
+ <gsak:CacheImages>
+ </gsak:CacheImages>
+ <gsak:LogImages>
+ </gsak:LogImages>
+ <gsak:CustomData>
+Custom_Start:cCode:Custom_Data:T110:Custom_End
+
+ </gsak:CustomData>
+ </gsak:wptExtension>
+ <groundspeak:cache id="272" available="True" archived="False" xmlns:groundspeak="http://www.groundspeak.com/cache/1/0/1">
+ <groundspeak:name>Triditional Cache 110</groundspeak:name>
+ <groundspeak:placed_by>TEXANS</groundspeak:placed_by>
+ <groundspeak:owner id="1">TXGA</groundspeak:owner>
+ <groundspeak:type>Traditional Cache</groundspeak:type>
+ <groundspeak:container>Not chosen</groundspeak:container>
+ <groundspeak:attributes>
+ </groundspeak:attributes>
+ <groundspeak:difficulty>1.5</groundspeak:difficulty>
+ <groundspeak:terrain>1.5</groundspeak:terrain>
+ <groundspeak:country></groundspeak:country>
+ <groundspeak:state></groundspeak:state>
+ <groundspeak:short_description html="False"> </groundspeak:short_description>
+ <groundspeak:long_description html="False"> </groundspeak:long_description>
+ <groundspeak:encoded_hints></groundspeak:encoded_hints>
+ <groundspeak:logs>
+ </groundspeak:logs>
+ <groundspeak:travelbugs>
+ </groundspeak:travelbugs>
+</groundspeak:cache>
+</wpt>
+ <wpt lat="33.39085" lon="-97.008817">
+ <time>2012-03-10T08:00:00Z</time>
+ <name>T111</name>
+ <desc>Triditional Cache 111 by TEXANS (3/4)</desc>
+ <url></url>
+ <urlname>Triditional Cache 111 by TEXANS</urlname>
+ <sym>Geocache</sym>
+ <type>Geocache|Traditional Cache</type>
+ <gsak:wptExtension xmlns:gsak="http://www.gsak.net/xmlv1/6">
+ <gsak:UserFlag>false</gsak:UserFlag>
+ <gsak:Lock>false</gsak:Lock>
+ <gsak:DNF>false</gsak:DNF>
+ <gsak:Watch>false</gsak:Watch>
+ <gsak:UserData></gsak:UserData>
+ <gsak:FirstToFind>false</gsak:FirstToFind>
+ <gsak:User2></gsak:User2>
+ <gsak:User3></gsak:User3>
+ <gsak:User4></gsak:User4>
+ <gsak:County></gsak:County>
+ <gsak:UserSort>0</gsak:UserSort>
+ <gsak:SmartName>Tridi111</gsak:SmartName>
+ <gsak:LastGpxDate>2012-03-10</gsak:LastGpxDate>
+ <gsak:Code>T111</gsak:Code>
+ <gsak:Resolution></gsak:Resolution>
+ <gsak:IsPremium>false</gsak:IsPremium>
+ <gsak:FavPoints>0</gsak:FavPoints>
+ <gsak:GcNote></gsak:GcNote>
+ <gsak:Guid></gsak:Guid>
+ <gsak:CacheImages>
+ </gsak:CacheImages>
+ <gsak:LogImages>
+ </gsak:LogImages>
+ <gsak:CustomData>
+Custom_Start:cCode:Custom_Data:T111:Custom_End
+
+ </gsak:CustomData>
+ </gsak:wptExtension>
+ <groundspeak:cache id="273" available="True" archived="False" xmlns:groundspeak="http://www.groundspeak.com/cache/1/0/1">
+ <groundspeak:name>Triditional Cache 111</groundspeak:name>
+ <groundspeak:placed_by>TEXANS</groundspeak:placed_by>
+ <groundspeak:owner id="1">TXGA</groundspeak:owner>
+ <groundspeak:type>Traditional Cache</groundspeak:type>
+ <groundspeak:container>Not chosen</groundspeak:container>
+ <groundspeak:attributes>
+ </groundspeak:attributes>
+ <groundspeak:difficulty>3</groundspeak:difficulty>
+ <groundspeak:terrain>4</groundspeak:terrain>
+ <groundspeak:country></groundspeak:country>
+ <groundspeak:state></groundspeak:state>
+ <groundspeak:short_description html="False"> </groundspeak:short_description>
+ <groundspeak:long_description html="False"> </groundspeak:long_description>
+ <groundspeak:encoded_hints></groundspeak:encoded_hints>
+ <groundspeak:logs>
+ </groundspeak:logs>
+ <groundspeak:travelbugs>
+ </groundspeak:travelbugs>
+</groundspeak:cache>
+</wpt>
+ <wpt lat="33.373383" lon="-97.006383">
+ <time>2012-03-10T08:00:00Z</time>
+ <name>T113</name>
+ <desc>Triditional Cache 113 by TEXANS (2.5/2.5)</desc>
+ <url></url>
+ <urlname>Triditional Cache 113 by TEXANS</urlname>
+ <sym>Geocache</sym>
+ <type>Geocache|Traditional Cache</type>
+ <gsak:wptExtension xmlns:gsak="http://www.gsak.net/xmlv1/6">
+ <gsak:UserFlag>false</gsak:UserFlag>
+ <gsak:Lock>false</gsak:Lock>
+ <gsak:DNF>false</gsak:DNF>
+ <gsak:Watch>false</gsak:Watch>
+ <gsak:UserData></gsak:UserData>
+ <gsak:FirstToFind>false</gsak:FirstToFind>
+ <gsak:User2></gsak:User2>
+ <gsak:User3></gsak:User3>
+ <gsak:User4></gsak:User4>
+ <gsak:County></gsak:County>
+ <gsak:UserSort>0</gsak:UserSort>
+ <gsak:SmartName>Tridi113</gsak:SmartName>
+ <gsak:LastGpxDate>2012-03-10</gsak:LastGpxDate>
+ <gsak:Code>T113</gsak:Code>
+ <gsak:Resolution></gsak:Resolution>
+ <gsak:IsPremium>false</gsak:IsPremium>
+ <gsak:FavPoints>0</gsak:FavPoints>
+ <gsak:GcNote></gsak:GcNote>
+ <gsak:Guid></gsak:Guid>
+ <gsak:CacheImages>
+ </gsak:CacheImages>
+ <gsak:LogImages>
+ </gsak:LogImages>
+ <gsak:CustomData>
+Custom_Start:cCode:Custom_Data:T113:Custom_End
+
+ </gsak:CustomData>
+ </gsak:wptExtension>
+ <groundspeak:cache id="275" available="True" archived="False" xmlns:groundspeak="http://www.groundspeak.com/cache/1/0/1">
+ <groundspeak:name>Triditional Cache 113</groundspeak:name>
+ <groundspeak:placed_by>TEXANS</groundspeak:placed_by>
+ <groundspeak:owner id="1">TXGA</groundspeak:owner>
+ <groundspeak:type>Traditional Cache</groundspeak:type>
+ <groundspeak:container>Not chosen</groundspeak:container>
+ <groundspeak:attributes>
+ </groundspeak:attributes>
+ <groundspeak:difficulty>2.5</groundspeak:difficulty>
+ <groundspeak:terrain>2.5</groundspeak:terrain>
+ <groundspeak:country></groundspeak:country>
+ <groundspeak:state></groundspeak:state>
+ <groundspeak:short_description html="False"> </groundspeak:short_description>
+ <groundspeak:long_description html="False"> </groundspeak:long_description>
+ <groundspeak:encoded_hints></groundspeak:encoded_hints>
+ <groundspeak:logs>
+ </groundspeak:logs>
+ <groundspeak:travelbugs>
+ </groundspeak:travelbugs>
+</groundspeak:cache>
+</wpt>
+ <wpt lat="33.372917" lon="-97.007717">
+ <time>2012-03-10T08:00:00Z</time>
+ <name>T114</name>
+ <desc>Triditional Cache 114 by TEXANS (2.5/3.5)</desc>
+ <url></url>
+ <urlname>Triditional Cache 114 by TEXANS</urlname>
+ <sym>Geocache</sym>
+ <type>Geocache|Traditional Cache</type>
+ <gsak:wptExtension xmlns:gsak="http://www.gsak.net/xmlv1/6">
+ <gsak:UserFlag>false</gsak:UserFlag>
+ <gsak:Lock>false</gsak:Lock>
+ <gsak:DNF>false</gsak:DNF>
+ <gsak:Watch>false</gsak:Watch>
+ <gsak:UserData></gsak:UserData>
+ <gsak:FirstToFind>false</gsak:FirstToFind>
+ <gsak:User2></gsak:User2>
+ <gsak:User3></gsak:User3>
+ <gsak:User4></gsak:User4>
+ <gsak:County></gsak:County>
+ <gsak:UserSort>0</gsak:UserSort>
+ <gsak:SmartName>Tridi114</gsak:SmartName>
+ <gsak:LastGpxDate>2012-03-10</gsak:LastGpxDate>
+ <gsak:Code>T114</gsak:Code>
+ <gsak:Resolution></gsak:Resolution>
+ <gsak:IsPremium>false</gsak:IsPremium>
+ <gsak:FavPoints>0</gsak:FavPoints>
+ <gsak:GcNote></gsak:GcNote>
+ <gsak:Guid></gsak:Guid>
+ <gsak:CacheImages>
+ </gsak:CacheImages>
+ <gsak:LogImages>
+ </gsak:LogImages>
+ <gsak:CustomData>
+Custom_Start:cCode:Custom_Data:T114:Custom_End
+
+ </gsak:CustomData>
+ </gsak:wptExtension>
+ <groundspeak:cache id="276" available="True" archived="False" xmlns:groundspeak="http://www.groundspeak.com/cache/1/0/1">
+ <groundspeak:name>Triditional Cache 114</groundspeak:name>
+ <groundspeak:placed_by>TEXANS</groundspeak:placed_by>
+ <groundspeak:owner id="1">TXGA</groundspeak:owner>
+ <groundspeak:type>Traditional Cache</groundspeak:type>
+ <groundspeak:container>Not chosen</groundspeak:container>
+ <groundspeak:attributes>
+ </groundspeak:attributes>
+ <groundspeak:difficulty>2.5</groundspeak:difficulty>
+ <groundspeak:terrain>3.5</groundspeak:terrain>
+ <groundspeak:country></groundspeak:country>
+ <groundspeak:state></groundspeak:state>
+ <groundspeak:short_description html="False"> </groundspeak:short_description>
+ <groundspeak:long_description html="False"> </groundspeak:long_description>
+ <groundspeak:encoded_hints></groundspeak:encoded_hints>
+ <groundspeak:logs>
+ </groundspeak:logs>
+ <groundspeak:travelbugs>
+ </groundspeak:travelbugs>
+</groundspeak:cache>
+</wpt>
+ <wpt lat="33.38385" lon="-96.998667">
+ <time>2012-03-10T08:00:00Z</time>
+ <name>T117</name>
+ <desc>Triditional Cache 117 by TEXANS (4/2)</desc>
+ <url></url>
+ <urlname>Triditional Cache 117 by TEXANS</urlname>
+ <sym>Geocache</sym>
+ <type>Geocache|Traditional Cache</type>
+ <gsak:wptExtension xmlns:gsak="http://www.gsak.net/xmlv1/6">
+ <gsak:UserFlag>false</gsak:UserFlag>
+ <gsak:Lock>false</gsak:Lock>
+ <gsak:DNF>false</gsak:DNF>
+ <gsak:Watch>false</gsak:Watch>
+ <gsak:UserData></gsak:UserData>
+ <gsak:FirstToFind>false</gsak:FirstToFind>
+ <gsak:User2></gsak:User2>
+ <gsak:User3></gsak:User3>
+ <gsak:User4></gsak:User4>
+ <gsak:County></gsak:County>
+ <gsak:UserSort>0</gsak:UserSort>
+ <gsak:SmartName>Tridi117</gsak:SmartName>
+ <gsak:LastGpxDate>2012-03-10</gsak:LastGpxDate>
+ <gsak:Code>T117</gsak:Code>
+ <gsak:Resolution></gsak:Resolution>
+ <gsak:IsPremium>false</gsak:IsPremium>
+ <gsak:FavPoints>0</gsak:FavPoints>
+ <gsak:GcNote></gsak:GcNote>
+ <gsak:Guid></gsak:Guid>
+ <gsak:CacheImages>
+ </gsak:CacheImages>
+ <gsak:LogImages>
+ </gsak:LogImages>
+ <gsak:CustomData>
+Custom_Start:cCode:Custom_Data:T117:Custom_End
+
+ </gsak:CustomData>
+ </gsak:wptExtension>
+ <groundspeak:cache id="279" available="True" archived="False" xmlns:groundspeak="http://www.groundspeak.com/cache/1/0/1">
+ <groundspeak:name>Triditional Cache 117</groundspeak:name>
+ <groundspeak:placed_by>TEXANS</groundspeak:placed_by>
+ <groundspeak:owner id="1">TXGA</groundspeak:owner>
+ <groundspeak:type>Traditional Cache</groundspeak:type>
+ <groundspeak:container>Not chosen</groundspeak:container>
+ <groundspeak:attributes>
+ </groundspeak:attributes>
+ <groundspeak:difficulty>4</groundspeak:difficulty>
+ <groundspeak:terrain>2</groundspeak:terrain>
+ <groundspeak:country></groundspeak:country>
+ <groundspeak:state></groundspeak:state>
+ <groundspeak:short_description html="False"> </groundspeak:short_description>
+ <groundspeak:long_description html="False"> </groundspeak:long_description>
+ <groundspeak:encoded_hints></groundspeak:encoded_hints>
+ <groundspeak:logs>
+ </groundspeak:logs>
+ <groundspeak:travelbugs>
+ </groundspeak:travelbugs>
+</groundspeak:cache>
+</wpt>
+ <wpt lat="33.380033" lon="-97.006933">
+ <time>2012-03-10T08:00:00Z</time>
+ <name>T119</name>
+ <desc>Triditional Cache 119 by TEXANS (3/2)</desc>
+ <url></url>
+ <urlname>Triditional Cache 119 by TEXANS</urlname>
+ <sym>Geocache</sym>
+ <type>Geocache|Traditional Cache</type>
+ <gsak:wptExtension xmlns:gsak="http://www.gsak.net/xmlv1/6">
+ <gsak:UserFlag>false</gsak:UserFlag>
+ <gsak:Lock>false</gsak:Lock>
+ <gsak:DNF>false</gsak:DNF>
+ <gsak:Watch>false</gsak:Watch>
+ <gsak:UserData></gsak:UserData>
+ <gsak:FirstToFind>false</gsak:FirstToFind>
+ <gsak:User2></gsak:User2>
+ <gsak:User3></gsak:User3>
+ <gsak:User4></gsak:User4>
+ <gsak:County></gsak:County>
+ <gsak:UserSort>0</gsak:UserSort>
+ <gsak:SmartName>Tridi119</gsak:SmartName>
+ <gsak:LastGpxDate>2012-03-10</gsak:LastGpxDate>
+ <gsak:Code>T119</gsak:Code>
+ <gsak:Resolution></gsak:Resolution>
+ <gsak:IsPremium>false</gsak:IsPremium>
+ <gsak:FavPoints>0</gsak:FavPoints>
+ <gsak:GcNote></gsak:GcNote>
+ <gsak:Guid></gsak:Guid>
+ <gsak:CacheImages>
+ </gsak:CacheImages>
+ <gsak:LogImages>
+ </gsak:LogImages>
+ <gsak:CustomData>
+Custom_Start:cCode:Custom_Data:T119:Custom_End
+
+ </gsak:CustomData>
+ </gsak:wptExtension>
+ <groundspeak:cache id="281" available="True" archived="False" xmlns:groundspeak="http://www.groundspeak.com/cache/1/0/1">
+ <groundspeak:name>Triditional Cache 119</groundspeak:name>
+ <groundspeak:placed_by>TEXANS</groundspeak:placed_by>
+ <groundspeak:owner id="1">TXGA</groundspeak:owner>
+ <groundspeak:type>Traditional Cache</groundspeak:type>
+ <groundspeak:container>Not chosen</groundspeak:container>
+ <groundspeak:attributes>
+ </groundspeak:attributes>
+ <groundspeak:difficulty>3</groundspeak:difficulty>
+ <groundspeak:terrain>2</groundspeak:terrain>
+ <groundspeak:country></groundspeak:country>
+ <groundspeak:state></groundspeak:state>
+ <groundspeak:short_description html="False"> </groundspeak:short_description>
+ <groundspeak:long_description html="False"> </groundspeak:long_description>
+ <groundspeak:encoded_hints></groundspeak:encoded_hints>
+ <groundspeak:logs>
+ </groundspeak:logs>
+ <groundspeak:travelbugs>
+ </groundspeak:travelbugs>
+</groundspeak:cache>
+</wpt>
+ <wpt lat="33.39365" lon="-96.98995">
+ <time>2012-03-10T08:00:00Z</time>
+ <name>T120</name>
+ <desc>Triditional Cache 120 by TEXANS (2.5/3)</desc>
+ <url></url>
+ <urlname>Triditional Cache 120 by TEXANS</urlname>
+ <sym>Geocache</sym>
+ <type>Geocache|Traditional Cache</type>
+ <gsak:wptExtension xmlns:gsak="http://www.gsak.net/xmlv1/6">
+ <gsak:UserFlag>false</gsak:UserFlag>
+ <gsak:Lock>false</gsak:Lock>
+ <gsak:DNF>false</gsak:DNF>
+ <gsak:Watch>false</gsak:Watch>
+ <gsak:UserData></gsak:UserData>
+ <gsak:FirstToFind>false</gsak:FirstToFind>
+ <gsak:User2></gsak:User2>
+ <gsak:User3></gsak:User3>
+ <gsak:User4></gsak:User4>
+ <gsak:County></gsak:County>
+ <gsak:UserSort>0</gsak:UserSort>
+ <gsak:SmartName>Tridi120</gsak:SmartName>
+ <gsak:LastGpxDate>2012-03-10</gsak:LastGpxDate>
+ <gsak:Code>T120</gsak:Code>
+ <gsak:Resolution></gsak:Resolution>
+ <gsak:IsPremium>false</gsak:IsPremium>
+ <gsak:FavPoints>0</gsak:FavPoints>
+ <gsak:GcNote></gsak:GcNote>
+ <gsak:Guid></gsak:Guid>
+ <gsak:CacheImages>
+ </gsak:CacheImages>
+ <gsak:LogImages>
+ </gsak:LogImages>
+ <gsak:CustomData>
+Custom_Start:cCode:Custom_Data:T120:Custom_End
+
+ </gsak:CustomData>
+ </gsak:wptExtension>
+ <groundspeak:cache id="288" available="True" archived="False" xmlns:groundspeak="http://www.groundspeak.com/cache/1/0/1">
+ <groundspeak:name>Triditional Cache 120</groundspeak:name>
+ <groundspeak:placed_by>TEXANS</groundspeak:placed_by>
+ <groundspeak:owner id="1">TXGA</groundspeak:owner>
+ <groundspeak:type>Traditional Cache</groundspeak:type>
+ <groundspeak:container>Not chosen</groundspeak:container>
+ <groundspeak:attributes>
+ </groundspeak:attributes>
+ <groundspeak:difficulty>2.5</groundspeak:difficulty>
+ <groundspeak:terrain>3</groundspeak:terrain>
+ <groundspeak:country></groundspeak:country>
+ <groundspeak:state></groundspeak:state>
+ <groundspeak:short_description html="False"> </groundspeak:short_description>
+ <groundspeak:long_description html="False"> </groundspeak:long_description>
+ <groundspeak:encoded_hints></groundspeak:encoded_hints>
+ <groundspeak:logs>
+ </groundspeak:logs>
+ <groundspeak:travelbugs>
+ </groundspeak:travelbugs>
+</groundspeak:cache>
+</wpt>
+ <wpt lat="33.378017" lon="-97.01165">
+ <time>2012-03-10T08:00:00Z</time>
+ <name>U044</name>
+ <desc>Unknown Cache 044 by TEXANS (4/4)</desc>
+ <url></url>
+ <urlname>Unknown Cache 044 by TEXANS</urlname>
+ <sym>Geocache</sym>
+ <type>Geocache|Unknown Cache</type>
+ <gsak:wptExtension xmlns:gsak="http://www.gsak.net/xmlv1/6">
+ <gsak:UserFlag>false</gsak:UserFlag>
+ <gsak:Lock>false</gsak:Lock>
+ <gsak:DNF>false</gsak:DNF>
+ <gsak:Watch>false</gsak:Watch>
+ <gsak:UserData></gsak:UserData>
+ <gsak:FirstToFind>false</gsak:FirstToFind>
+ <gsak:User2></gsak:User2>
+ <gsak:User3></gsak:User3>
+ <gsak:User4></gsak:User4>
+ <gsak:County></gsak:County>
+ <gsak:UserSort>0</gsak:UserSort>
+ <gsak:SmartName>Unkno044</gsak:SmartName>
+ <gsak:LastGpxDate>2012-03-10</gsak:LastGpxDate>
+ <gsak:Code>U044</gsak:Code>
+ <gsak:Resolution></gsak:Resolution>
+ <gsak:IsPremium>false</gsak:IsPremium>
+ <gsak:FavPoints>0</gsak:FavPoints>
+ <gsak:GcNote></gsak:GcNote>
+ <gsak:Guid></gsak:Guid>
+ <gsak:CacheImages>
+ </gsak:CacheImages>
+ <gsak:LogImages>
+ </gsak:LogImages>
+ <gsak:CustomData>
+Custom_Start:cCode:Custom_Data:U044:Custom_End
+
+ </gsak:CustomData>
+ </gsak:wptExtension>
+ <groundspeak:cache id="68" available="True" archived="False" xmlns:groundspeak="http://www.groundspeak.com/cache/1/0/1">
+ <groundspeak:name>Unknown Cache 044</groundspeak:name>
+ <groundspeak:placed_by>TEXANS</groundspeak:placed_by>
+ <groundspeak:owner id="1">TXGA</groundspeak:owner>
+ <groundspeak:type>Unknown Cache</groundspeak:type>
+ <groundspeak:container>Not chosen</groundspeak:container>
+ <groundspeak:attributes>
+ </groundspeak:attributes>
+ <groundspeak:difficulty>4</groundspeak:difficulty>
+ <groundspeak:terrain>4</groundspeak:terrain>
+ <groundspeak:country></groundspeak:country>
+ <groundspeak:state></groundspeak:state>
+ <groundspeak:short_description html="False"> </groundspeak:short_description>
+ <groundspeak:long_description html="False"> </groundspeak:long_description>
+ <groundspeak:encoded_hints></groundspeak:encoded_hints>
+ <groundspeak:logs>
+ </groundspeak:logs>
+ <groundspeak:travelbugs>
+ </groundspeak:travelbugs>
+</groundspeak:cache>
+</wpt>
+ <wpt lat="33.4006" lon="-97.005683">
+ <time>2012-03-10T08:00:00Z</time>
+ <name>U053</name>
+ <desc>Unknown Cache 053 by TEXANS (2/1)</desc>
+ <url></url>
+ <urlname>Unknown Cache 053 by TEXANS</urlname>
+ <sym>Geocache</sym>
+ <type>Geocache|Unknown Cache</type>
+ <gsak:wptExtension xmlns:gsak="http://www.gsak.net/xmlv1/6">
+ <gsak:UserFlag>false</gsak:UserFlag>
+ <gsak:Lock>false</gsak:Lock>
+ <gsak:DNF>false</gsak:DNF>
+ <gsak:Watch>false</gsak:Watch>
+ <gsak:UserData></gsak:UserData>
+ <gsak:FirstToFind>false</gsak:FirstToFind>
+ <gsak:User2></gsak:User2>
+ <gsak:User3></gsak:User3>
+ <gsak:User4></gsak:User4>
+ <gsak:County></gsak:County>
+ <gsak:UserSort>0</gsak:UserSort>
+ <gsak:SmartName>Unkno053</gsak:SmartName>
+ <gsak:LastGpxDate>2012-03-10</gsak:LastGpxDate>
+ <gsak:Code>U053</gsak:Code>
+ <gsak:Resolution></gsak:Resolution>
+ <gsak:IsPremium>false</gsak:IsPremium>
+ <gsak:FavPoints>0</gsak:FavPoints>
+ <gsak:GcNote></gsak:GcNote>
+ <gsak:Guid></gsak:Guid>
+ <gsak:CacheImages>
+ </gsak:CacheImages>
+ <gsak:LogImages>
+ </gsak:LogImages>
+ <gsak:CustomData>
+Custom_Start:cCode:Custom_Data:U053:Custom_End
+
+ </gsak:CustomData>
+ </gsak:wptExtension>
+ <groundspeak:cache id="83" available="True" archived="False" xmlns:groundspeak="http://www.groundspeak.com/cache/1/0/1">
+ <groundspeak:name>Unknown Cache 053</groundspeak:name>
+ <groundspeak:placed_by>TEXANS</groundspeak:placed_by>
+ <groundspeak:owner id="1">TXGA</groundspeak:owner>
+ <groundspeak:type>Unknown Cache</groundspeak:type>
+ <groundspeak:container>Not chosen</groundspeak:container>
+ <groundspeak:attributes>
+ </groundspeak:attributes>
+ <groundspeak:difficulty>2</groundspeak:difficulty>
+ <groundspeak:terrain>1</groundspeak:terrain>
+ <groundspeak:country></groundspeak:country>
+ <groundspeak:state></groundspeak:state>
+ <groundspeak:short_description html="False"> </groundspeak:short_description>
+ <groundspeak:long_description html="False"> </groundspeak:long_description>
+ <groundspeak:encoded_hints></groundspeak:encoded_hints>
+ <groundspeak:logs>
+ </groundspeak:logs>
+ <groundspeak:travelbugs>
+ </groundspeak:travelbugs>
+</groundspeak:cache>
+</wpt>
+ <wpt lat="33.361567" lon="-97.024917">
+ <time>2012-03-10T08:00:00Z</time>
+ <name>U058</name>
+ <desc>Unknown Cache 058 by TEXANS (2.5/2.5)</desc>
+ <url></url>
+ <urlname>Unknown Cache 058 by TEXANS</urlname>
+ <sym>Geocache</sym>
+ <type>Geocache|Unknown Cache</type>
+ <gsak:wptExtension xmlns:gsak="http://www.gsak.net/xmlv1/6">
+ <gsak:UserFlag>false</gsak:UserFlag>
+ <gsak:Lock>false</gsak:Lock>
+ <gsak:DNF>false</gsak:DNF>
+ <gsak:Watch>false</gsak:Watch>
+ <gsak:UserData></gsak:UserData>
+ <gsak:FirstToFind>false</gsak:FirstToFind>
+ <gsak:User2></gsak:User2>
+ <gsak:User3></gsak:User3>
+ <gsak:User4></gsak:User4>
+ <gsak:County></gsak:County>
+ <gsak:UserSort>0</gsak:UserSort>
+ <gsak:SmartName>Unkno058</gsak:SmartName>
+ <gsak:LastGpxDate>2012-03-10</gsak:LastGpxDate>
+ <gsak:Code>U058</gsak:Code>
+ <gsak:Resolution></gsak:Resolution>
+ <gsak:IsPremium>false</gsak:IsPremium>
+ <gsak:FavPoints>0</gsak:FavPoints>
+ <gsak:GcNote></gsak:GcNote>
+ <gsak:Guid></gsak:Guid>
+ <gsak:CacheImages>
+ </gsak:CacheImages>
+ <gsak:LogImages>
+ </gsak:LogImages>
+ <gsak:CustomData>
+Custom_Start:cCode:Custom_Data:U058:Custom_End
+
+ </gsak:CustomData>
+ </gsak:wptExtension>
+ <groundspeak:cache id="88" available="True" archived="False" xmlns:groundspeak="http://www.groundspeak.com/cache/1/0/1">
+ <groundspeak:name>Unknown Cache 058</groundspeak:name>
+ <groundspeak:placed_by>TEXANS</groundspeak:placed_by>
+ <groundspeak:owner id="1">TXGA</groundspeak:owner>
+ <groundspeak:type>Unknown Cache</groundspeak:type>
+ <groundspeak:container>Not chosen</groundspeak:container>
+ <groundspeak:attributes>
+ </groundspeak:attributes>
+ <groundspeak:difficulty>2.5</groundspeak:difficulty>
+ <groundspeak:terrain>2.5</groundspeak:terrain>
+ <groundspeak:country></groundspeak:country>
+ <groundspeak:state></groundspeak:state>
+ <groundspeak:short_description html="False"> </groundspeak:short_description>
+ <groundspeak:long_description html="False"> </groundspeak:long_description>
+ <groundspeak:encoded_hints></groundspeak:encoded_hints>
+ <groundspeak:logs>
+ </groundspeak:logs>
+ <groundspeak:travelbugs>
+ </groundspeak:travelbugs>
+</groundspeak:cache>
+</wpt>
+ <wpt lat="33.365083" lon="-97.01265">
+ <time>2012-03-10T08:00:00Z</time>
+ <name>U072</name>
+ <desc>Unknown Cache 072 by TEXANS (1.5/1.5)</desc>
+ <url></url>
+ <urlname>Unknown Cache 072 by TEXANS</urlname>
+ <sym>Geocache</sym>
+ <type>Geocache|Unknown Cache</type>
+ <gsak:wptExtension xmlns:gsak="http://www.gsak.net/xmlv1/6">
+ <gsak:UserFlag>false</gsak:UserFlag>
+ <gsak:Lock>false</gsak:Lock>
+ <gsak:DNF>false</gsak:DNF>
+ <gsak:Watch>false</gsak:Watch>
+ <gsak:UserData></gsak:UserData>
+ <gsak:FirstToFind>false</gsak:FirstToFind>
+ <gsak:User2></gsak:User2>
+ <gsak:User3></gsak:User3>
+ <gsak:User4></gsak:User4>
+ <gsak:County></gsak:County>
+ <gsak:UserSort>0</gsak:UserSort>
+ <gsak:SmartName>Unkno072</gsak:SmartName>
+ <gsak:LastGpxDate>2012-03-10</gsak:LastGpxDate>
+ <gsak:Code>U072</gsak:Code>
+ <gsak:Resolution></gsak:Resolution>
+ <gsak:IsPremium>false</gsak:IsPremium>
+ <gsak:FavPoints>0</gsak:FavPoints>
+ <gsak:GcNote></gsak:GcNote>
+ <gsak:Guid></gsak:Guid>
+ <gsak:CacheImages>
+ </gsak:CacheImages>
+ <gsak:LogImages>
+ </gsak:LogImages>
+ <gsak:CustomData>
+Custom_Start:cCode:Custom_Data:U072:Custom_End
+
+ </gsak:CustomData>
+ </gsak:wptExtension>
+ <groundspeak:cache id="114" available="True" archived="False" xmlns:groundspeak="http://www.groundspeak.com/cache/1/0/1">
+ <groundspeak:name>Unknown Cache 072</groundspeak:name>
+ <groundspeak:placed_by>TEXANS</groundspeak:placed_by>
+ <groundspeak:owner id="1">TXGA</groundspeak:owner>
+ <groundspeak:type>Unknown Cache</groundspeak:type>
+ <groundspeak:container>Not chosen</groundspeak:container>
+ <groundspeak:attributes>
+ </groundspeak:attributes>
+ <groundspeak:difficulty>1.5</groundspeak:difficulty>
+ <groundspeak:terrain>1.5</groundspeak:terrain>
+ <groundspeak:country></groundspeak:country>
+ <groundspeak:state></groundspeak:state>
+ <groundspeak:short_description html="False"> </groundspeak:short_description>
+ <groundspeak:long_description html="False"> </groundspeak:long_description>
+ <groundspeak:encoded_hints></groundspeak:encoded_hints>
+ <groundspeak:logs>
+ </groundspeak:logs>
+ <groundspeak:travelbugs>
+ </groundspeak:travelbugs>
+</groundspeak:cache>
+</wpt>
+ <wpt lat="33.380433" lon="-97.035433">
+ <time>2012-03-10T08:00:00Z</time>
+ <name>U107</name>
+ <desc>Unknown Cache 107 by TEXANS (2/3)</desc>
+ <url></url>
+ <urlname>Unknown Cache 107 by TEXANS</urlname>
+ <sym>Geocache</sym>
+ <type>Geocache|Unknown Cache</type>
+ <gsak:wptExtension xmlns:gsak="http://www.gsak.net/xmlv1/6">
+ <gsak:UserFlag>false</gsak:UserFlag>
+ <gsak:Lock>false</gsak:Lock>
+ <gsak:DNF>false</gsak:DNF>
+ <gsak:Watch>false</gsak:Watch>
+ <gsak:UserData></gsak:UserData>
+ <gsak:FirstToFind>false</gsak:FirstToFind>
+ <gsak:User2></gsak:User2>
+ <gsak:User3></gsak:User3>
+ <gsak:User4></gsak:User4>
+ <gsak:County></gsak:County>
+ <gsak:UserSort>0</gsak:UserSort>
+ <gsak:SmartName>Unkno107</gsak:SmartName>
+ <gsak:LastGpxDate>2012-03-10</gsak:LastGpxDate>
+ <gsak:Code>U107</gsak:Code>
+ <gsak:Resolution></gsak:Resolution>
+ <gsak:IsPremium>false</gsak:IsPremium>
+ <gsak:FavPoints>0</gsak:FavPoints>
+ <gsak:GcNote></gsak:GcNote>
+ <gsak:Guid></gsak:Guid>
+ <gsak:CacheImages>
+ </gsak:CacheImages>
+ <gsak:LogImages>
+ </gsak:LogImages>
+ <gsak:CustomData>
+Custom_Start:cCode:Custom_Data:U107:Custom_End
+
+ </gsak:CustomData>
+ </gsak:wptExtension>
+ <groundspeak:cache id="263" available="True" archived="False" xmlns:groundspeak="http://www.groundspeak.com/cache/1/0/1">
+ <groundspeak:name>Unknown Cache 107</groundspeak:name>
+ <groundspeak:placed_by>TEXANS</groundspeak:placed_by>
+ <groundspeak:owner id="1">TXGA</groundspeak:owner>
+ <groundspeak:type>Unknown Cache</groundspeak:type>
+ <groundspeak:container>Not chosen</groundspeak:container>
+ <groundspeak:attributes>
+ </groundspeak:attributes>
+ <groundspeak:difficulty>2</groundspeak:difficulty>
+ <groundspeak:terrain>3</groundspeak:terrain>
+ <groundspeak:country></groundspeak:country>
+ <groundspeak:state></groundspeak:state>
+ <groundspeak:short_description html="False"> </groundspeak:short_description>
+ <groundspeak:long_description html="False"> </groundspeak:long_description>
+ <groundspeak:encoded_hints></groundspeak:encoded_hints>
+ <groundspeak:logs>
+ </groundspeak:logs>
+ <groundspeak:travelbugs>
+ </groundspeak:travelbugs>
+</groundspeak:cache>
+</wpt>
+</gpx>
diff --git a/tests/src/cgeo/geocaching/files/GPXParserTest.java b/tests/src/cgeo/geocaching/files/GPXParserTest.java index e69800b..3754af1 100644 --- a/tests/src/cgeo/geocaching/files/GPXParserTest.java +++ b/tests/src/cgeo/geocaching/files/GPXParserTest.java @@ -226,4 +226,10 @@ public class GPXParserTest extends AbstractResourceInstrumentationTestCase { final List<cgCache> caches = readGPX11(R.raw.no_connector); assertEquals(13, caches.size()); } + + public void testTexasChallenge2012() throws Exception { + final List<cgCache> caches = readGPX10(R.raw.challenge); + // previously these caches overwrote each other during parsing + assertEquals(130, caches.size()); + } } |