Guess What I'm doing?
You can see by the output of the xml parser that I ... ahem .. uh.. "pause" ... a lot when I'm "running"
What I think I know so far:
time (duration) measurements *.001 = seconds
Raw distance measurements are all in km
The user's distance unit preferences are used for string attributes "7:58 min/mi")
There is a Snapshot list (pauses, when you asked it for a report, powerSong playing) that (unfortunately) doesn't tell the time of the pause. (a pause pauses workout time)
There are Mile and Kilometer splits (!)
The extended data list includes kilometer distance at 10 second intervals.
//
// NikeXmlParser.m
// ipodTest1
//
// Created by Jonathan on 8/29/06.
// Copyright 2006. All rights reserved.
//#define LogMethod() NSLog(@"-[%@ %s]", self, _cmd)
#import "NikeXmlParser.h"
@implementation NikeXmlParser
- (id)init
{
NSString *filePath = [@"~/Desktop/testIpodWorkout.xml" stringByExpandingTildeInPath];
NSURL *url = [[[NSURL alloc] initWithString:filePath] autorelease];
self = [self initWithContentsOfURL:url];
return self;
}- (id)initWithContentsOfURL:(NSURL *)url
{
self = [super init];
if (self != nil) {
parser = [[NSXMLParser alloc] initWithContentsOfURL:url];
[parser setDelegate:self];
}
return self;
}- (void)parse
{
[parser parse];
}- (void) dealloc {
[parser dealloc];
[super dealloc];
}#pragma mark -
#pragma mark xmlParser delegate actions
- (void)parserDidStartDocument:(NSXMLParser *)parser
{
NSLog(@"Parser Start");
}- (void)parserDidEndDocument:(NSXMLParser *)parser
{
NSLog(@"Parser End");
}- (void)parser:(NSXMLParser *)parser didStartElement:(NSString *)elementName namespaceURI:(NSString *)namespaceURI qualifiedName:(NSString *)qName attributes:(NSDictionary *)attributeDict
{
NSLog(@"______________________________________________________ START %@ tag", elementName);
if ([attributeDict count] > 0){
NSLog(@"__________Attributes__________");
NSEnumerator *enumerator = [attributeDict objectEnumerator];
id value;
while ((value = [enumerator nextObject])) {
NSLog(@" %@", value);
}
}
}- (void)parser:(NSXMLParser *)parser didEndElement:(NSString *)elementName namespaceURI:(NSString *)namespaceURI qualifiedName:(NSString *)qName
{
NSLog(@"^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ END %@ tag", elementName);
}
// sent when an end tag is encountered. The various parameters are supplied as above.- (void)parser:(NSXMLParser *)parser foundCharacters:(NSString *)string
{
if (([string length] > 0) && (![string isEqualToString:@"\n"])){
//only log the string if it's not empty and it it's not just spaces
NSLog(@"Found Characters = %@", string);
}
}
// This returns the string of the characters encountered thus far. You may not necessarily get the longest character run. The parser reserves the right to hand these to the delegate as potentially many calls in a row to -parser:foundCharacters:- (void)parser:(NSXMLParser *)parser parseErrorOccurred:(NSError *)parseError
{
LogMethod();
NSLog(@"PARSER ERROR");
}
// ...and this reports a fatal error to the delegate. The parser will stop parsing.@end
[Session started at 2006-08-29 21:37:09 -0400.]
2006-08-29 21:37:09.430 ipodTest1[3513] Parser Start
2006-08-29 21:37:09.431 ipodTest1[3513] ______________________________________________________ START sportsData tag
2006-08-29 21:37:09.432 ipodTest1[3513] ______________________________________________________ START vers tag
2006-08-29 21:37:09.432 ipodTest1[3513] Found Characters = 1
2006-08-29 21:37:09.433 ipodTest1[3513] ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ END vers tag
2006-08-29 21:37:09.433 ipodTest1[3513] ______________________________________________________ START runSummary tag
2006-08-29 21:37:09.434 ipodTest1[3513] ______________________________________________________ START workoutName tag
2006-08-29 21:37:09.434 ipodTest1[3513] Found Characters = 3.25 miles
2006-08-29 21:37:09.434 ipodTest1[3513] ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ END workoutName tag
2006-08-29 21:37:09.434 ipodTest1[3513] ______________________________________________________ START time tag
2006-08-29 21:37:09.434 ipodTest1[3513] Found Characters = 2006-08-08T02:07:21-04:00
2006-08-29 21:37:09.434 ipodTest1[3513] ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ END time tag
2006-08-29 21:37:09.434 ipodTest1[3513] ______________________________________________________ START duration tag
2006-08-29 21:37:09.434 ipodTest1[3513] Found Characters = 1599878
2006-08-29 21:37:09.434 ipodTest1[3513] ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ END duration tag
2006-08-29 21:37:09.434 ipodTest1[3513] ______________________________________________________ START durationString tag
2006-08-29 21:37:09.435 ipodTest1[3513] Found Characters = 26:39
2006-08-29 21:37:09.435 ipodTest1[3513] ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ END durationString tag
2006-08-29 21:37:09.435 ipodTest1[3513] ______________________________________________________ START distance tag
2006-08-29 21:37:09.435 ipodTest1[3513] __________Attributes__________
2006-08-29 21:37:09.435 ipodTest1[3513] km
2006-08-29 21:37:09.436 ipodTest1[3513] Found Characters = 5.3755
2006-08-29 21:37:09.436 ipodTest1[3513] ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ END distance tag
2006-08-29 21:37:09.436 ipodTest1[3513] ______________________________________________________ START distanceString tag
2006-08-29 21:37:09.436 ipodTest1[3513] Found Characters = 3.34 mi
2006-08-29 21:37:09.436 ipodTest1[3513] ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ END distanceString tag
2006-08-29 21:37:09.436 ipodTest1[3513] ______________________________________________________ START pace tag
2006-08-29 21:37:09.437 ipodTest1[3513] Found Characters = 7:58 min/mi
2006-08-29 21:37:09.437 ipodTest1[3513] ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ END pace tag
2006-08-29 21:37:09.437 ipodTest1[3513] ______________________________________________________ START calories tag
2006-08-29 21:37:09.437 ipodTest1[3513] Found Characters = 457
2006-08-29 21:37:09.437 ipodTest1[3513] ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ END calories tag
2006-08-29 21:37:09.437 ipodTest1[3513] ______________________________________________________ START battery tag
2006-08-29 21:37:09.437 ipodTest1[3513] ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ END battery tag
2006-08-29 21:37:09.437 ipodTest1[3513] ______________________________________________________ START stepCounts tag
2006-08-29 21:37:09.438 ipodTest1[3513] ______________________________________________________ START walkBegin tag
2006-08-29 21:37:09.438 ipodTest1[3513] Found Characters = 0
2006-08-29 21:37:09.438 ipodTest1[3513] ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ END walkBegin tag
2006-08-29 21:37:09.438 ipodTest1[3513] ______________________________________________________ START walkEnd tag
2006-08-29 21:37:09.438 ipodTest1[3513] Found Characters = 758
2006-08-29 21:37:09.439 ipodTest1[3513] ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ END walkEnd tag
2006-08-29 21:37:09.439 ipodTest1[3513] ______________________________________________________ START runBegin tag
2006-08-29 21:37:09.439 ipodTest1[3513] Found Characters = 0
2006-08-29 21:37:09.439 ipodTest1[3513] ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ END runBegin tag
2006-08-29 21:37:09.439 ipodTest1[3513] ______________________________________________________ START runEnd tag
2006-08-29 21:37:09.439 ipodTest1[3513] Found Characters = 4144
2006-08-29 21:37:09.439 ipodTest1[3513] ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ END runEnd tag
2006-08-29 21:37:09.439 ipodTest1[3513] ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ END stepCounts tag
2006-08-29 21:37:09.439 ipodTest1[3513] ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ END runSummary tag
2006-08-29 21:37:09.439 ipodTest1[3513] ______________________________________________________ START template tag
2006-08-29 21:37:09.440 ipodTest1[3513] ______________________________________________________ START templateID tag
2006-08-29 21:37:09.440 ipodTest1[3513] Found Characters = 70090BFF
2006-08-29 21:37:09.440 ipodTest1[3513] ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ END templateID tag
2006-08-29 21:37:09.440 ipodTest1[3513] ______________________________________________________ START templateName tag
2006-08-29 21:37:09.440 ipodTest1[3513] Found Characters = 3.25 miles
2006-08-29 21:37:09.440 ipodTest1[3513] ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ END templateName tag
2006-08-29 21:37:09.440 ipodTest1[3513] ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ END template tag
2006-08-29 21:37:09.440 ipodTest1[3513] ______________________________________________________ START goal tag
2006-08-29 21:37:09.440 ipodTest1[3513] __________Attributes__________
2006-08-29 21:37:09.440 ipodTest1[3513] Distance
2006-08-29 21:37:09.440 ipodTest1[3513] mi
2006-08-29 21:37:09.440 ipodTest1[3513] 3.25
2006-08-29 21:37:09.441 ipodTest1[3513] ______________________________________________________ START distance tag
2006-08-29 21:37:09.441 ipodTest1[3513] Found Characters = 5.2335
2006-08-29 21:37:09.441 ipodTest1[3513] ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ END distance tag
2006-08-29 21:37:09.441 ipodTest1[3513] ______________________________________________________ START duration tag
2006-08-29 21:37:09.441 ipodTest1[3513] Found Characters = 1558831
2006-08-29 21:37:09.441 ipodTest1[3513] ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ END duration tag
2006-08-29 21:37:09.441 ipodTest1[3513] ______________________________________________________ START calories tag
2006-08-29 21:37:09.441 ipodTest1[3513] Found Characters = 445
2006-08-29 21:37:09.442 ipodTest1[3513] ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ END calories tag
2006-08-29 21:37:09.442 ipodTest1[3513] ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ END goal tag
2006-08-29 21:37:09.442 ipodTest1[3513] ______________________________________________________ START userInfo tag
2006-08-29 21:37:09.442 ipodTest1[3513] ______________________________________________________ START empedID tag
2006-08-29 21:37:09.442 ipodTest1[3513] Found Characters = 4H6303LGVSX
2006-08-29 21:37:09.442 ipodTest1[3513] ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ END empedID tag
2006-08-29 21:37:09.442 ipodTest1[3513] ______________________________________________________ START weight tag
2006-08-29 21:37:09.442 ipodTest1[3513] Found Characters = 82.6
2006-08-29 21:37:09.442 ipodTest1[3513] ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ END weight tag
2006-08-29 21:37:09.442 ipodTest1[3513] ______________________________________________________ START device tag
2006-08-29 21:37:09.442 ipodTest1[3513] Found Characters = iPod
2006-08-29 21:37:09.443 ipodTest1[3513] ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ END device tag
2006-08-29 21:37:09.443 ipodTest1[3513] ______________________________________________________ START calibration tag
2006-08-29 21:37:09.443 ipodTest1[3513] Found Characters = 000000004170000001fe00230000000041f0000004a1000000008d0000000000
2006-08-29 21:37:09.443 ipodTest1[3513] ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ END calibration tag
2006-08-29 21:37:09.443 ipodTest1[3513] ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ END userInfo tag
2006-08-29 21:37:09.443 ipodTest1[3513] ______________________________________________________ START startTime tag
2006-08-29 21:37:09.444 ipodTest1[3513] Found Characters = 2006-08-08T02:07:21-04:00
2006-08-29 21:37:09.444 ipodTest1[3513] ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ END startTime tag
2006-08-29 21:37:09.444 ipodTest1[3513] ______________________________________________________ START snapShotList tag
2006-08-29 21:37:09.444 ipodTest1[3513] __________Attributes__________
2006-08-29 21:37:09.444 ipodTest1[3513] userClick
2006-08-29 21:37:09.444 ipodTest1[3513] ______________________________________________________ START snapShot tag
2006-08-29 21:37:09.444 ipodTest1[3513] __________Attributes__________
2006-08-29 21:37:09.444 ipodTest1[3513] onDemandVP
2006-08-29 21:37:09.444 ipodTest1[3513] ______________________________________________________ START duration tag
2006-08-29 21:37:09.444 ipodTest1[3513] Found Characters = 49308
2006-08-29 21:37:09.444 ipodTest1[3513] ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ END duration tag
2006-08-29 21:37:09.444 ipodTest1[3513] ______________________________________________________ START distance tag
2006-08-29 21:37:09.444 ipodTest1[3513] Found Characters = 0.158
2006-08-29 21:37:09.444 ipodTest1[3513] ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ END distance tag
2006-08-29 21:37:09.445 ipodTest1[3513] ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ END snapShot tag
2006-08-29 21:37:09.445 ipodTest1[3513] ______________________________________________________ START snapShot tag
2006-08-29 21:37:09.445 ipodTest1[3513] __________Attributes__________
2006-08-29 21:37:09.445 ipodTest1[3513] pause
2006-08-29 21:37:09.445 ipodTest1[3513] ______________________________________________________ START duration tag
2006-08-29 21:37:09.445 ipodTest1[3513] Found Characters = 271730
2006-08-29 21:37:09.445 ipodTest1[3513] ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ END duration tag
2006-08-29 21:37:09.445 ipodTest1[3513] ______________________________________________________ START distance tag
2006-08-29 21:37:09.445 ipodTest1[3513] Found Characters = 0.936
2006-08-29 21:37:09.445 ipodTest1[3513] ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ END distance tag
2006-08-29 21:37:09.445 ipodTest1[3513] ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ END snapShot tag
2006-08-29 21:37:09.445 ipodTest1[3513] ______________________________________________________ START snapShot tag
2006-08-29 21:37:09.445 ipodTest1[3513] __________Attributes__________
2006-08-29 21:37:09.445 ipodTest1[3513] resume
2006-08-29 21:37:09.446 ipodTest1[3513] ______________________________________________________ START duration tag
2006-08-29 21:37:09.446 ipodTest1[3513] Found Characters = 271730
2006-08-29 21:37:09.446 ipodTest1[3513] ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ END duration tag
2006-08-29 21:37:09.446 ipodTest1[3513] ______________________________________________________ START distance tag
2006-08-29 21:37:09.446 ipodTest1[3513] Found Characters = 0.936
2006-08-29 21:37:09.446 ipodTest1[3513] ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ END distance tag
2006-08-29 21:37:09.446 ipodTest1[3513] ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ END snapShot tag
2006-08-29 21:37:09.446 ipodTest1[3513] ______________________________________________________ START snapShot tag
2006-08-29 21:37:09.446 ipodTest1[3513] __________Attributes__________
2006-08-29 21:37:09.446 ipodTest1[3513] pause
2006-08-29 21:37:09.446 ipodTest1[3513] ______________________________________________________ START duration tag
2006-08-29 21:37:09.447 ipodTest1[3513] Found Characters = 374768
2006-08-29 21:37:09.447 ipodTest1[3513] ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ END duration tag
2006-08-29 21:37:09.447 ipodTest1[3513] ______________________________________________________ START distance tag
2006-08-29 21:37:09.447 ipodTest1[3513] Found Characters = 1.3
2006-08-29 21:37:09.447 ipodTest1[3513] ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ END distance tag
2006-08-29 21:37:09.447 ipodTest1[3513] ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ END snapShot tag
2006-08-29 21:37:09.447 ipodTest1[3513] ______________________________________________________ START snapShot tag
2006-08-29 21:37:09.447 ipodTest1[3513] __________Attributes__________
2006-08-29 21:37:09.447 ipodTest1[3513] resume
2006-08-29 21:37:09.447 ipodTest1[3513] ______________________________________________________ START duration tag
2006-08-29 21:37:09.447 ipodTest1[3513] Found Characters = 374768
2006-08-29 21:37:09.447 ipodTest1[3513] ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ END duration tag
2006-08-29 21:37:09.447 ipodTest1[3513] ______________________________________________________ START distance tag
2006-08-29 21:37:09.447 ipodTest1[3513] Found Characters = 1.3
2006-08-29 21:37:09.448 ipodTest1[3513] ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ END distance tag
2006-08-29 21:37:09.448 ipodTest1[3513] ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ END snapShot tag
2006-08-29 21:37:09.448 ipodTest1[3513] ______________________________________________________ START snapShot tag
2006-08-29 21:37:09.448 ipodTest1[3513] __________Attributes__________
2006-08-29 21:37:09.448 ipodTest1[3513] onDemandVP
2006-08-29 21:37:09.448 ipodTest1[3513] ______________________________________________________ START duration tag
2006-08-29 21:37:09.448 ipodTest1[3513] Found Characters = 543072
2006-08-29 21:37:09.448 ipodTest1[3513] ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ END duration tag
2006-08-29 21:37:09.448 ipodTest1[3513] ______________________________________________________ START distance tag
2006-08-29 21:37:09.448 ipodTest1[3513] Found Characters = 1.825
2006-08-29 21:37:09.448 ipodTest1[3513] ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ END distance tag
2006-08-29 21:37:09.448 ipodTest1[3513] ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ END snapShot tag
2006-08-29 21:37:09.448 ipodTest1[3513] ______________________________________________________ START snapShot tag
2006-08-29 21:37:09.449 ipodTest1[3513] __________Attributes__________
2006-08-29 21:37:09.449 ipodTest1[3513] pause
2006-08-29 21:37:09.449 ipodTest1[3513] ______________________________________________________ START duration tag
2006-08-29 21:37:09.449 ipodTest1[3513] Found Characters = 667937
2006-08-29 21:37:09.449 ipodTest1[3513] ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ END duration tag
2006-08-29 21:37:09.449 ipodTest1[3513] ______________________________________________________ START distance tag
2006-08-29 21:37:09.449 ipodTest1[3513] Found Characters = 2.234
2006-08-29 21:37:09.449 ipodTest1[3513] ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ END distance tag
2006-08-29 21:37:09.450 ipodTest1[3513] ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ END snapShot tag
2006-08-29 21:37:09.450 ipodTest1[3513] ______________________________________________________ START snapShot tag
2006-08-29 21:37:09.450 ipodTest1[3513] __________Attributes__________
2006-08-29 21:37:09.450 ipodTest1[3513] resume
2006-08-29 21:37:09.450 ipodTest1[3513] ______________________________________________________ START duration tag
2006-08-29 21:37:09.450 ipodTest1[3513] Found Characters = 667937
2006-08-29 21:37:09.451 ipodTest1[3513] ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ END duration tag
2006-08-29 21:37:09.451 ipodTest1[3513] ______________________________________________________ START distance tag
2006-08-29 21:37:09.451 ipodTest1[3513] Found Characters = 2.234
2006-08-29 21:37:09.451 ipodTest1[3513] ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ END distance tag
2006-08-29 21:37:09.451 ipodTest1[3513] ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ END snapShot tag
2006-08-29 21:37:09.451 ipodTest1[3513] ______________________________________________________ START snapShot tag
2006-08-29 21:37:09.451 ipodTest1[3513] __________Attributes__________
2006-08-29 21:37:09.451 ipodTest1[3513] onDemandVP
2006-08-29 21:37:09.451 ipodTest1[3513] ______________________________________________________ START duration tag
2006-08-29 21:37:09.452 ipodTest1[3513] Found Characters = 896313
2006-08-29 21:37:09.452 ipodTest1[3513] ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ END duration tag
2006-08-29 21:37:09.452 ipodTest1[3513] ______________________________________________________ START distance tag
2006-08-29 21:37:09.452 ipodTest1[3513] Found Characters = 3.001
2006-08-29 21:37:09.452 ipodTest1[3513] ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ END distance tag
2006-08-29 21:37:09.452 ipodTest1[3513] ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ END snapShot tag
2006-08-29 21:37:09.452 ipodTest1[3513] ______________________________________________________ START snapShot tag
2006-08-29 21:37:09.452 ipodTest1[3513] __________Attributes__________
2006-08-29 21:37:09.452 ipodTest1[3513] pause
2006-08-29 21:37:09.452 ipodTest1[3513] ______________________________________________________ START duration tag
2006-08-29 21:37:09.452 ipodTest1[3513] Found Characters = 904275
2006-08-29 21:37:09.452 ipodTest1[3513] ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ END duration tag
2006-08-29 21:37:09.452 ipodTest1[3513] ______________________________________________________ START distance tag
2006-08-29 21:37:09.452 ipodTest1[3513] Found Characters = 3.007
2006-08-29 21:37:09.453 ipodTest1[3513] ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ END distance tag
2006-08-29 21:37:09.453 ipodTest1[3513] ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ END snapShot tag
2006-08-29 21:37:09.453 ipodTest1[3513] ______________________________________________________ START snapShot tag
2006-08-29 21:37:09.453 ipodTest1[3513] __________Attributes__________
2006-08-29 21:37:09.453 ipodTest1[3513] resume
2006-08-29 21:37:09.453 ipodTest1[3513] ______________________________________________________ START duration tag
2006-08-29 21:37:09.453 ipodTest1[3513] Found Characters = 904275
2006-08-29 21:37:09.453 ipodTest1[3513] ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ END duration tag
2006-08-29 21:37:09.453 ipodTest1[3513] ______________________________________________________ START distance tag
2006-08-29 21:37:09.453 ipodTest1[3513] Found Characters = 3.007
2006-08-29 21:37:09.453 ipodTest1[3513] ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ END distance tag
2006-08-29 21:37:09.453 ipodTest1[3513] ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ END snapShot tag
2006-08-29 21:37:09.453 ipodTest1[3513] ______________________________________________________ START snapShot tag
2006-08-29 21:37:09.453 ipodTest1[3513] __________Attributes__________
2006-08-29 21:37:09.453 ipodTest1[3513] powerSong
2006-08-29 21:37:09.454 ipodTest1[3513] ______________________________________________________ START duration tag
2006-08-29 21:37:09.454 ipodTest1[3513] Found Characters = 1039515
2006-08-29 21:37:09.454 ipodTest1[3513] ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ END duration tag
2006-08-29 21:37:09.454 ipodTest1[3513] ______________________________________________________ START distance tag
2006-08-29 21:37:09.454 ipodTest1[3513] Found Characters = 3.454
2006-08-29 21:37:09.454 ipodTest1[3513] ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ END distance tag
2006-08-29 21:37:09.454 ipodTest1[3513] ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ END snapShot tag
2006-08-29 21:37:09.454 ipodTest1[3513] ______________________________________________________ START snapShot tag
2006-08-29 21:37:09.454 ipodTest1[3513] __________Attributes__________
2006-08-29 21:37:09.454 ipodTest1[3513] pause
2006-08-29 21:37:09.454 ipodTest1[3513] ______________________________________________________ START duration tag
2006-08-29 21:37:09.454 ipodTest1[3513] Found Characters = 1120185
2006-08-29 21:37:09.454 ipodTest1[3513] ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ END duration tag
2006-08-29 21:37:09.454 ipodTest1[3513] ______________________________________________________ START distance tag
2006-08-29 21:37:09.455 ipodTest1[3513] Found Characters = 3.733
2006-08-29 21:37:09.455 ipodTest1[3513] ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ END distance tag
2006-08-29 21:37:09.455 ipodTest1[3513] ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ END snapShot tag
2006-08-29 21:37:09.455 ipodTest1[3513] ______________________________________________________ START snapShot tag
2006-08-29 21:37:09.455 ipodTest1[3513] __________Attributes__________
2006-08-29 21:37:09.455 ipodTest1[3513] onDemandVP
2006-08-29 21:37:09.455 ipodTest1[3513] ______________________________________________________ START duration tag
2006-08-29 21:37:09.455 ipodTest1[3513] Found Characters = 1120185
2006-08-29 21:37:09.455 ipodTest1[3513] ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ END duration tag
2006-08-29 21:37:09.455 ipodTest1[3513] ______________________________________________________ START distance tag
2006-08-29 21:37:09.455 ipodTest1[3513] Found Characters = 3.733
2006-08-29 21:37:09.455 ipodTest1[3513] ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ END distance tag
2006-08-29 21:37:09.455 ipodTest1[3513] ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ END snapShot tag
2006-08-29 21:37:09.455 ipodTest1[3513] ______________________________________________________ START snapShot tag
2006-08-29 21:37:09.455 ipodTest1[3513] __________Attributes__________
2006-08-29 21:37:09.456 ipodTest1[3513] resume
2006-08-29 21:37:09.456 ipodTest1[3513] ______________________________________________________ START duration tag
2006-08-29 21:37:09.456 ipodTest1[3513] Found Characters = 1120185
2006-08-29 21:37:09.456 ipodTest1[3513] ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ END duration tag
2006-08-29 21:37:09.456 ipodTest1[3513] ______________________________________________________ START distance tag
2006-08-29 21:37:09.456 ipodTest1[3513] Found Characters = 3.733
2006-08-29 21:37:09.456 ipodTest1[3513] ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ END distance tag
2006-08-29 21:37:09.456 ipodTest1[3513] ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ END snapShot tag
2006-08-29 21:37:09.456 ipodTest1[3513] ______________________________________________________ START snapShot tag
2006-08-29 21:37:09.456 ipodTest1[3513] __________Attributes__________
2006-08-29 21:37:09.456 ipodTest1[3513] onDemandVP
2006-08-29 21:37:09.456 ipodTest1[3513] ______________________________________________________ START duration tag
2006-08-29 21:37:09.456 ipodTest1[3513] Found Characters = 1318038
2006-08-29 21:37:09.457 ipodTest1[3513] ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ END duration tag
2006-08-29 21:37:09.457 ipodTest1[3513] ______________________________________________________ START distance tag
2006-08-29 21:37:09.457 ipodTest1[3513] Found Characters = 4.413
2006-08-29 21:37:09.457 ipodTest1[3513] ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ END distance tag
2006-08-29 21:37:09.457 ipodTest1[3513] ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ END snapShot tag
2006-08-29 21:37:09.457 ipodTest1[3513] ______________________________________________________ START snapShot tag
2006-08-29 21:37:09.459 ipodTest1[3513] __________Attributes__________
2006-08-29 21:37:09.459 ipodTest1[3513] onDemandVP
2006-08-29 21:37:09.459 ipodTest1[3513] ______________________________________________________ START duration tag
2006-08-29 21:37:09.459 ipodTest1[3513] Found Characters = 1512403
2006-08-29 21:37:09.459 ipodTest1[3513] ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ END duration tag
2006-08-29 21:37:09.460 ipodTest1[3513] ______________________________________________________ START distance tag
2006-08-29 21:37:09.460 ipodTest1[3513] Found Characters = 5.06
2006-08-29 21:37:09.460 ipodTest1[3513] ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ END distance tag
2006-08-29 21:37:09.460 ipodTest1[3513] ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ END snapShot tag
2006-08-29 21:37:09.460 ipodTest1[3513] ______________________________________________________ START snapShot tag
2006-08-29 21:37:09.460 ipodTest1[3513] __________Attributes__________
2006-08-29 21:37:09.460 ipodTest1[3513] onDemandVP
2006-08-29 21:37:09.460 ipodTest1[3513] ______________________________________________________ START duration tag
2006-08-29 21:37:09.460 ipodTest1[3513] Found Characters = 1588359
2006-08-29 21:37:09.461 ipodTest1[3513] ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ END duration tag
2006-08-29 21:37:09.461 ipodTest1[3513] ______________________________________________________ START distance tag
2006-08-29 21:37:09.461 ipodTest1[3513] Found Characters = 5.34
2006-08-29 21:37:09.461 ipodTest1[3513] ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ END distance tag
2006-08-29 21:37:09.461 ipodTest1[3513] ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ END snapShot tag
2006-08-29 21:37:09.461 ipodTest1[3513] ______________________________________________________ START snapShot tag
2006-08-29 21:37:09.461 ipodTest1[3513] __________Attributes__________
2006-08-29 21:37:09.461 ipodTest1[3513] pause
2006-08-29 21:37:09.461 ipodTest1[3513] ______________________________________________________ START duration tag
2006-08-29 21:37:09.461 ipodTest1[3513] Found Characters = 1599878
2006-08-29 21:37:09.461 ipodTest1[3513] ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ END duration tag
2006-08-29 21:37:09.462 ipodTest1[3513] ______________________________________________________ START distance tag
2006-08-29 21:37:09.462 ipodTest1[3513] Found Characters = 5.375
2006-08-29 21:37:09.462 ipodTest1[3513] ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ END distance tag
2006-08-29 21:37:09.462 ipodTest1[3513] ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ END snapShot tag
2006-08-29 21:37:09.462 ipodTest1[3513] ______________________________________________________ START snapShot tag
2006-08-29 21:37:09.462 ipodTest1[3513] __________Attributes__________
2006-08-29 21:37:09.462 ipodTest1[3513] stop
2006-08-29 21:37:09.462 ipodTest1[3513] ______________________________________________________ START duration tag
2006-08-29 21:37:09.462 ipodTest1[3513] Found Characters = 1599878
2006-08-29 21:37:09.462 ipodTest1[3513] ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ END duration tag
2006-08-29 21:37:09.462 ipodTest1[3513] ______________________________________________________ START distance tag
2006-08-29 21:37:09.462 ipodTest1[3513] Found Characters = 5.375
2006-08-29 21:37:09.462 ipodTest1[3513] ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ END distance tag
2006-08-29 21:37:09.462 ipodTest1[3513] ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ END snapShot tag
2006-08-29 21:37:09.462 ipodTest1[3513] ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ END snapShotList tag
2006-08-29 21:37:09.463 ipodTest1[3513] ______________________________________________________ START snapShotList tag
2006-08-29 21:37:09.463 ipodTest1[3513] __________Attributes__________
2006-08-29 21:37:09.463 ipodTest1[3513] kmSplit
2006-08-29 21:37:09.463 ipodTest1[3513] ______________________________________________________ START snapShot tag
2006-08-29 21:37:09.463 ipodTest1[3513] ______________________________________________________ START duration tag
2006-08-29 21:37:09.463 ipodTest1[3513] Found Characters = 291757
2006-08-29 21:37:09.463 ipodTest1[3513] ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ END duration tag
2006-08-29 21:37:09.463 ipodTest1[3513] ______________________________________________________ START distance tag
2006-08-29 21:37:09.463 ipodTest1[3513] Found Characters = 1.005
2006-08-29 21:37:09.463 ipodTest1[3513] ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ END distance tag
2006-08-29 21:37:09.463 ipodTest1[3513] ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ END snapShot tag
2006-08-29 21:37:09.464 ipodTest1[3513] ______________________________________________________ START snapShot tag
2006-08-29 21:37:09.464 ipodTest1[3513] ______________________________________________________ START duration tag
2006-08-29 21:37:09.464 ipodTest1[3513] Found Characters = 593908
2006-08-29 21:37:09.464 ipodTest1[3513] ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ END duration tag
2006-08-29 21:37:09.464 ipodTest1[3513] ______________________________________________________ START distance tag
2006-08-29 21:37:09.464 ipodTest1[3513] Found Characters = 2.0
2006-08-29 21:37:09.465 ipodTest1[3513] ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ END distance tag
2006-08-29 21:37:09.465 ipodTest1[3513] ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ END snapShot tag
2006-08-29 21:37:09.465 ipodTest1[3513] ______________________________________________________ START snapShot tag
2006-08-29 21:37:09.465 ipodTest1[3513] ______________________________________________________ START duration tag
2006-08-29 21:37:09.465 ipodTest1[3513] Found Characters = 896187
2006-08-29 21:37:09.465 ipodTest1[3513] ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ END duration tag
2006-08-29 21:37:09.466 ipodTest1[3513] ______________________________________________________ START distance tag
2006-08-29 21:37:09.466 ipodTest1[3513] Found Characters = 3.001
2006-08-29 21:37:09.466 ipodTest1[3513] ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ END distance tag
2006-08-29 21:37:09.466 ipodTest1[3513] ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ END snapShot tag
2006-08-29 21:37:09.466 ipodTest1[3513] ______________________________________________________ START snapShot tag
2006-08-29 21:37:09.466 ipodTest1[3513] ______________________________________________________ START duration tag
2006-08-29 21:37:09.466 ipodTest1[3513] Found Characters = 1198250
2006-08-29 21:37:09.466 ipodTest1[3513] ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ END duration tag
2006-08-29 21:37:09.466 ipodTest1[3513] ______________________________________________________ START distance tag
2006-08-29 21:37:09.466 ipodTest1[3513] Found Characters = 4.002
2006-08-29 21:37:09.466 ipodTest1[3513] ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ END distance tag
2006-08-29 21:37:09.466 ipodTest1[3513] ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ END snapShot tag
2006-08-29 21:37:09.466 ipodTest1[3513] ______________________________________________________ START snapShot tag
2006-08-29 21:37:09.466 ipodTest1[3513] ______________________________________________________ START duration tag
2006-08-29 21:37:09.467 ipodTest1[3513] Found Characters = 1494609
2006-08-29 21:37:09.467 ipodTest1[3513] ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ END duration tag
2006-08-29 21:37:09.467 ipodTest1[3513] ______________________________________________________ START distance tag
2006-08-29 21:37:09.468 ipodTest1[3513] Found Characters = 5.0
2006-08-29 21:37:09.468 ipodTest1[3513] ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ END distance tag
2006-08-29 21:37:09.468 ipodTest1[3513] ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ END snapShot tag
2006-08-29 21:37:09.468 ipodTest1[3513] ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ END snapShotList tag
2006-08-29 21:37:09.468 ipodTest1[3513] ______________________________________________________ START snapShotList tag
2006-08-29 21:37:09.468 ipodTest1[3513] __________Attributes__________
2006-08-29 21:37:09.468 ipodTest1[3513] mileSplit
2006-08-29 21:37:09.468 ipodTest1[3513] ______________________________________________________ START snapShot tag
2006-08-29 21:37:09.468 ipodTest1[3513] ______________________________________________________ START duration tag
2006-08-29 21:37:09.468 ipodTest1[3513] Found Characters = 479812
2006-08-29 21:37:09.468 ipodTest1[3513] ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ END duration tag
2006-08-29 21:37:09.469 ipodTest1[3513] ______________________________________________________ START distance tag
2006-08-29 21:37:09.469 ipodTest1[3513] Found Characters = 1.61
2006-08-29 21:37:09.469 ipodTest1[3513] ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ END distance tag
2006-08-29 21:37:09.469 ipodTest1[3513] ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ END snapShot tag
2006-08-29 21:37:09.469 ipodTest1[3513] ______________________________________________________ START snapShot tag
2006-08-29 21:37:09.469 ipodTest1[3513] ______________________________________________________ START duration tag
2006-08-29 21:37:09.469 ipodTest1[3513] Found Characters = 967203
2006-08-29 21:37:09.469 ipodTest1[3513] ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ END duration tag
2006-08-29 21:37:09.469 ipodTest1[3513] ______________________________________________________ START distance tag
2006-08-29 21:37:09.469 ipodTest1[3513] Found Characters = 3.221
2006-08-29 21:37:09.469 ipodTest1[3513] ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ END distance tag
2006-08-29 21:37:09.469 ipodTest1[3513] ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ END snapShot tag
2006-08-29 21:37:09.686 ipodTest1[3513] ______________________________________________________ START snapShot tag
2006-08-29 21:37:09.686 ipodTest1[3513] ______________________________________________________ START duration tag
2006-08-29 21:37:09.686 ipodTest1[3513] Found Characters = 1445739
2006-08-29 21:37:09.686 ipodTest1[3513] ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ END duration tag
2006-08-29 21:37:09.686 ipodTest1[3513] ______________________________________________________ START distance tag
2006-08-29 21:37:09.686 ipodTest1[3513] Found Characters = 4.828
2006-08-29 21:37:09.686 ipodTest1[3513] ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ END distance tag
2006-08-29 21:37:09.686 ipodTest1[3513] ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ END snapShot tag
2006-08-29 21:37:09.686 ipodTest1[3513] ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ END snapShotList tag
2006-08-29 21:37:09.687 ipodTest1[3513] ______________________________________________________ START extendedDataList tag
2006-08-29 21:37:09.687 ipodTest1[3513] ______________________________________________________ START extendedData tag
2006-08-29 21:37:09.687 ipodTest1[3513] __________Attributes__________
2006-08-29 21:37:09.687 ipodTest1[3513] 10
2006-08-29 21:37:09.687 ipodTest1[3513] s
2006-08-29 21:37:09.687 ipodTest1[3513] time
2006-08-29 21:37:09.687 ipodTest1[3513] distance
2006-08-29 21:37:09.687 ipodTest1[3513] Found Characters = 0.0, 0.0225, 0.0593, 0.0951, 0.13, 0.1653, 0.2008, 0.2327, 0.2644, 0.3039, 0.3411, 0.374, 0.4144, 0.4487, 0.4799, 0.5145, 0.5497, 0.5812, 0.6157, 0.6442, 0.6908, 0.7224, 0.7504, 0.7853, 0.832, 0.8632, 0.8985, 0.9332, 0.9628, 0.997, 1.035, 1.07, 1.1117, 1.1483, 1.1814, 1.2128, 1.253, 1.2889, 1.2992, 1.3098, 1.3162, 1.3537, 1.395, 1.4306, 1.4681, 1.5045, 1.5369, 1.5707, 1.6098, 1.6431, 1.6736, 1.7084, 1.7445, 1.7831, 1.815, 1.8488, 1.8768, 1.9155, 1.9514, 1.9898, 2.0197, 2.0506, 2.0827, 2.112, 2.1429, 2.177, 2.2102, 2.2353, 2.2653, 2.2985, 2.3361, 2.3719, 2.4072, 2.43, 2.4684, 2.4942, 2.5125, 2.5525, 2.5889, 2.621, 2.6498, 2.694, 2.7288, 2.7648, 2.7999, 2.8362, 2.8664, 2.9075, 2.9444, 2.98, 3.0072, 3.0204, 3.058, 3.0883, 3.1278, 3.1626, 3.1902, 3.2318, 3.266, 3.2962, 3.3313, 3.3659, 3.4001, 3.4302, 3.4649, 3.4974, 3.5311, 3.5655, 3.5973, 3.6347, 3.6684, 3.6991, 3.7332, 3.7499, 3.7932, 3.8287, 3.8647, 3.9017, 3.9381, 3.9704, 4.0097, 4.0447, 4.0801, 4.1125, 4.1437, 4.1824, 4.2185, 4.2494, 4.287, 4.3225, 4.3509, 4.3888, 4.4204, 4.4372, 4.4679, 4.4966, 4.5352, 4.5672, 4.6015, 4.6366, 4.6711, 4.7065, 4.7416, 4.7719, 4.8069, 4.8422, 4.8779, 4.907, 4.9503, 4.9868, 5.0213, 5.0567, 5.0897, 5.1244, 5.162, 5.1996, 5.2413, 5.2751, 5.3116, 5.348
2006-08-29 21:37:09.697 ipodTest1[3513] ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ END extendedData tag
2006-08-29 21:37:09.697 ipodTest1[3513] ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ END extendedDataList tag
2006-08-29 21:37:09.697 ipodTest1[3513] ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ END sportsData tag
2006-08-29 21:37:09.697 ipodTest1[3513] Parser End
ipodTest1 has exited with status 0.