ratis 3.4.1 → 3.4.2

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: bbba57710ea09ab0ff391b47e49753d68e564516
4
- data.tar.gz: e90b4c54fa10ec5458bc17236f9994a88e8c3791
3
+ metadata.gz: 1b043a46ae4af0931603865057f34363004be16c
4
+ data.tar.gz: 084ca86cd40894ce8b0a0e60756ec500f6b8a5ae
5
5
  SHA512:
6
- metadata.gz: 530bc837ea1e99f649f0e57f3466a036e74ccaefac6a1f2191ed28865cbbb13bb7c48c155fbdf5f890ff997398056ad2a3d05f28a46657c55a57134addad422a
7
- data.tar.gz: 5db91fb81a2bd8502a1504822207cf152b21449aa74407002c5ba9d2a658072fbe5c9352dfe4edc7a943b052b0ffdbd50fd449d34b72333789abea8a525b0e56
6
+ metadata.gz: 89481b49138c0a50160c44a78fb9cbf073786c334a7a0a2c825cf9459fb44a1aa4516ee93698c6131155e7db737ecab0557a5cfcaede3b4c29ad4ee153f540cd
7
+ data.tar.gz: 1bf727ab54f380ea8de285550e5915ec944ecd62bad7b0df7d108ce49dfc3d070833a0074b81599ff3d5d2d16b5eb0173518f9b9ab26c2410fcfced10fbce089
data/CHANGELOG CHANGED
@@ -48,4 +48,7 @@
48
48
  - added test spec for location type ahead support
49
49
 
50
50
  3.4.1
51
- - regeneration of gem to fix missing files
51
+ - regeneration of gem to fix missing files
52
+
53
+ 3.4.2
54
+ - added support for ATIS ver 2.7.1's Fleetlocation api
data/Gemfile.lock CHANGED
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- ratis (3.4.0)
4
+ ratis (3.4.2)
5
5
  savon (< 2.0)
6
6
 
7
7
  GEM
data/lib/ratis.rb CHANGED
@@ -5,6 +5,7 @@ require 'ratis/closest_stop'
5
5
  require 'ratis/config'
6
6
  require 'ratis/core_ext'
7
7
  require 'ratis/errors'
8
+ require 'ratis/fleet_location'
8
9
  require 'ratis/itinerary'
9
10
  require 'ratis/landmark'
10
11
  require 'ratis/landmark_category'
@@ -0,0 +1,42 @@
1
+ module Ratis
2
+
3
+ class Vehicle
4
+ attr_accessor :route, :direction, :updatetime, :adherance, :adhchange, :vehicle_id, :offroute, :stopped, :reliable, :inservice, :speed, :heading, :route_id
5
+
6
+ def initialize(vehicle)
7
+ @route = vehicle[:route]
8
+ @direction = vehicle[:direction]
9
+ @updatetime = vehicle[:updatetime]
10
+ @adherance = vehicle[:adherance]
11
+ @adhchange = vehicle[:adhchange]
12
+ @vehicle_id = vehicle[:vehicle_id]
13
+ @offroute = vehicle[:offroute]
14
+ @stopped = vehicle[:stopped]
15
+ @reliable = vehicle[:reliable]
16
+ @inservice = vehicle[:inservice]
17
+ @speed = vehicle[:speed]
18
+ @heading = vehicle[:heading]
19
+ @route_id = vehicle[:route_id]
20
+ end
21
+ end
22
+
23
+ #--------------------------------------------
24
+
25
+ class FleetLocation
26
+
27
+ def self.current(conditions)
28
+ app_id = conditions.delete(:app_id) || 'WEB'
29
+
30
+ response = Request.get 'Fleetlocation', {'Appid' => app_id}
31
+
32
+ return [] unless response.success?
33
+
34
+ response.to_array(:fleetlocation_response, :vehicles, :vehicle).map do |vehicle|
35
+ Vehicle.new(vehicle)
36
+ end
37
+
38
+ end
39
+
40
+ end
41
+
42
+ end
@@ -4,8 +4,15 @@ module Ratis
4
4
 
5
5
  attr_accessor :type, :verbose, :location, :locality
6
6
 
7
+ def initialize(landmark)
8
+ @type = landmark[:type]
9
+ @verbose = landmark[:verbose]
10
+ @location = landmark[:location]
11
+ @locality = landmark[:locality]
12
+ end
13
+
7
14
  def self.where(conditions)
8
- app_id = conditions.delete(:app_id) || 'WEB'
15
+ app_id = conditions.delete(:app_id) || 'WEB'
9
16
  type = conditions.delete(:type).to_s.upcase
10
17
  zipcode = conditions.delete(:zipcode)
11
18
 
@@ -19,12 +26,7 @@ module Ratis
19
26
  return [] unless response.success?
20
27
 
21
28
  response.to_array(:getlandmarks_response, :landmark).map do |landmark|
22
- atis_landmark = Landmark.new
23
- atis_landmark.type = landmark[:type]
24
- atis_landmark.verbose = landmark[:verbose]
25
- atis_landmark.location = landmark[:location]
26
- atis_landmark.locality = landmark[:locality]
27
- atis_landmark
29
+ Landmark.new(landmark)
28
30
  end
29
31
 
30
32
  end
data/lib/ratis/version.rb CHANGED
@@ -5,7 +5,7 @@ module Ratis
5
5
  def version
6
6
  @version ||= begin
7
7
 
8
- string = '3.4.1'
8
+ string = '3.4.2'
9
9
 
10
10
  def string.parts
11
11
  split('.').map { |p| p.to_i }
data/ratis.gemspec CHANGED
@@ -7,8 +7,8 @@ Gem::Specification.new do |s|
7
7
  s.version = Ratis.version
8
8
  s.platform = Gem::Platform::RUBY
9
9
  s.summary = 'A Ruby wrapper around the ATIS SOAP Interface'
10
- s.authors = ['Burst Software']
11
- s.email = 'irish@burstdev.com'
10
+ s.authors = ['Velocity labs']
11
+ s.email = 'irish@velocitylabs.io'
12
12
  s.files = `git ls-files`.split($/)
13
13
  s.require_paths = ['lib']
14
14
  s.rdoc_options = ['--charset=UTF-8 --main=README.md']
@@ -0,0 +1,64 @@
1
+ require 'spec_helper'
2
+
3
+ describe Ratis::FleetLocation do
4
+
5
+ before do
6
+ Ratis.reset
7
+ Ratis.configure do |config|
8
+ config.endpoint = 'http://soap.valleymetro.org/cgi-bin-soap-web-271/soap.cgi'
9
+ config.namespace = 'PX_WEB'
10
+ end
11
+ end
12
+
13
+ describe "#current" do
14
+ before do
15
+ @conditions = {:app_id => 'WEB'}
16
+ end
17
+
18
+ it 'only makes one request', vcr: {} do
19
+ # false just to stop further processing of response
20
+ Ratis::Request.should_receive(:get).once.and_call_original
21
+ Ratis::FleetLocation.current(@conditions.dup)
22
+ end
23
+
24
+ it 'requests the correct SOAP action' do
25
+ Ratis::Request.should_receive(:get) do |action, options|
26
+ action.should eq('Fleetlocation')
27
+ options["Appid"].should eq(@conditions[:app_id])
28
+
29
+ end.and_return(double('response', :success? => false))
30
+
31
+ Ratis::FleetLocation.current(@conditions.dup)
32
+ end
33
+
34
+ it "should return a collection of Ratis::Vehicle(s)", vcr: {} do
35
+ stops = Ratis::FleetLocation.current(@conditions.dup)
36
+ stops.each do |obj|
37
+ expect(obj).to be_a(Ratis::Vehicle)
38
+ end
39
+ end
40
+
41
+ it 'returns multiple vehicles', vcr: {} do
42
+ stops = Ratis::FleetLocation.current(@conditions.dup)
43
+ stops.should have(403).items
44
+ end
45
+
46
+ it 'parses out the vehicle fields correctly', vcr: {} do
47
+ vehicles = Ratis::FleetLocation.current(@conditions.dup)
48
+ vehicle = vehicles.first
49
+
50
+ expect(vehicle.route).to eq('1')
51
+ expect(vehicle.direction).to eq('E')
52
+ expect(vehicle.updatetime).to eq('02:08 PM')
53
+ expect(vehicle.adherance).to eq('0')
54
+ expect(vehicle.adhchange).to eq('S')
55
+ expect(vehicle.vehicle_id).to be_nil
56
+ expect(vehicle.offroute).to eq('N')
57
+ expect(vehicle.stopped).to eq('N')
58
+ expect(vehicle.reliable).to eq('Y')
59
+ expect(vehicle.inservice).to eq('Y')
60
+ end
61
+
62
+ end
63
+
64
+ end
@@ -12,37 +12,57 @@ describe Ratis::Landmark do
12
12
 
13
13
  describe "#where" do
14
14
  before do
15
- @conditions = {:type => 'all',
15
+ @conditions = {:type => '*',
16
16
  :zipcode => '85224'}
17
17
  end
18
18
 
19
- it 'only makes one request' do
20
- pending 'Need method turned on in ATIS'
21
-
19
+ it 'only makes one request', vcr: {} do
22
20
  # false just to stop further processing of response
23
21
  Ratis::Request.should_receive(:get).once.and_call_original
24
22
  Ratis::Landmark.where(@conditions.dup)
25
23
  end
26
- end
27
24
 
28
- it 'requests the correct SOAP action' do
29
- pending
30
- an_atis_request_for('Getlandmarks', 'Type' => 'ALL').should have_been_made
31
- end
25
+ it 'requests the correct SOAP action' do
26
+ Ratis::Request.should_receive(:get) do |action, options|
27
+ action.should eq('Getlandmarks')
28
+ options["Type"].should eq(@conditions[:type])
29
+ options["Zipcode"].should eq(@conditions[:zipcode])
30
+
31
+ end.and_return(double('response', :success? => false))
32
+
33
+ Ratis::Landmark.where(@conditions.dup)
34
+ end
32
35
 
33
- it 'should return all landmarks' do
34
- pending
35
- @landmarks.should have(2).items
36
+ it "should return a collection of Ratis::Landmark(s)", vcr: {} do
37
+ stops = Ratis::Landmark.where(@conditions.dup)
38
+ stops.each do |obj|
39
+ expect(obj).to be_a(Ratis::Landmark)
40
+ end
41
+ end
42
+
43
+ it 'returns multiple landmarks', vcr: {} do
44
+ stops = Ratis::Landmark.where(@conditions.dup)
45
+ stops.should have(1514).items
46
+ end
36
47
 
37
- @landmarks[0].type.should eql 'AIRPT'
38
- @landmarks[0].verbose.should eql 'FALCON FIELD AIRPORT'
39
- @landmarks[0].location.should eql '4800 E. FALCON DR.'
40
- @landmarks[0].locality.should eql 'N'
48
+ it 'parses out the landmark fields correctly', vcr: {} do
49
+ landmarks = Ratis::Landmark.where(@conditions.dup)
50
+ landmark = landmarks.first
41
51
 
42
- @landmarks[1].type.should eql 'AIRPT'
43
- @landmarks[1].verbose.should eql 'SKY HARBOR AIRPORT TERMINAL 4 WB'
44
- @landmarks[1].location.should eql '3700 E SKY HARBOR BLVD'
45
- @landmarks[1].locality.should eql 'N'
52
+ expect(landmark.type).to eq('LRT')
53
+ expect(landmark.verbose).to eq('12JF')
54
+ expect(landmark.location).to eq('S 12TH ST & E JEFFERSON ST')
55
+ expect(landmark.locality).to eq('N')
56
+ end
57
+
58
+ it "should raise error for missing arg type" do
59
+ conditions = @conditions.dup
60
+ conditions.delete(:type)
61
+
62
+ expect do
63
+ Ratis::Landmark.where(conditions)
64
+ end.to raise_error(ArgumentError, 'You must provide a type')
65
+ end
46
66
  end
47
67
 
48
68
  end
@@ -109,6 +109,19 @@ describe Ratis::Timetable do
109
109
  end.to raise_error(ArgumentError, 'You must provide either date or service_type')
110
110
  end
111
111
 
112
+ describe 'ATIS call' do
113
+ it "should not throw a 500" do
114
+ # This test was added because while our test suite was passing 2/18/14 the real API was throwing 500s and we want to know about things like that. CI
115
+ @today = Time.now.strftime("%m/%d/%Y")
116
+ @conditions = {:route_short_name => 'ZERO',
117
+ :direction => 'N',
118
+ :service_type => 'W',
119
+ :date => @today}
120
+ expect {
121
+ Ratis::Timetable.where(@conditions.dup)
122
+ }.to_not raise_exception(Ratis::Errors::SoapError)
123
+ end
124
+ end
112
125
  end
113
126
 
114
127
  end
@@ -0,0 +1,609 @@
1
+ ---
2
+ http_interactions:
3
+ - request:
4
+ method: post
5
+ uri: http://soap.valleymetro.org/cgi-bin-soap-web-271/soap.cgi
6
+ body:
7
+ encoding: UTF-8
8
+ string: <?xml version="1.0" encoding="UTF-8"?><env:Envelope xmlns:xsd="http://www.w3.org/2001/XMLSchema"
9
+ xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:wsdl="PX_WEB"
10
+ xmlns:env="http://schemas.xmlsoap.org/soap/envelope/"><env:Body><Fleetlocation
11
+ xmlns="PX_WEB"><Appid>WEB</Appid></Fleetlocation></env:Body></env:Envelope>
12
+ headers:
13
+ Soapaction:
14
+ - '"PX_WEB#Fleetlocation"'
15
+ Content-Type:
16
+ - text/xml;charset=UTF-8
17
+ Content-Length:
18
+ - '325'
19
+ Accept-Encoding:
20
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
21
+ Accept:
22
+ - '*/*'
23
+ User-Agent:
24
+ - Ruby
25
+ response:
26
+ status:
27
+ code: 200
28
+ message: OK
29
+ headers:
30
+ Date:
31
+ - Wed, 14 May 2014 20:55:27 GMT
32
+ Server:
33
+ - Apache/2.2.3 (CentOS)
34
+ Soapserver:
35
+ - SOAP::Lite/Perl/0.55
36
+ Content-Length:
37
+ - '168693'
38
+ Connection:
39
+ - close
40
+ Content-Type:
41
+ - text/xml; charset=utf-8
42
+ body:
43
+ encoding: UTF-8
44
+ string: "<?xml version=\"1.0\" encoding=\"UTF-8\"?><SOAP-ENV:Envelope xmlns:xsi=\"http://www.w3.org/1999/XMLSchema-instance\"
45
+ xmlns:SOAP-ENC=\"http://schemas.xmlsoap.org/soap/encoding/\" xmlns:SOAP-ENV=\"http://schemas.xmlsoap.org/soap/envelope/\"
46
+ xmlns:xsd=\"http://www.w3.org/1999/XMLSchema\" SOAP-ENV:encodingStyle=\"http://schemas.xmlsoap.org/soap/encoding/\"><SOAP-ENV:Body><namesp1:FleetlocationResponse
47
+ xmlns:namesp1=\"PX_WEB\">\n\t<Responsecode>0</Responsecode>\n\t<Version>1.0</Version>\n\t\t<Responsecode>0</Responsecode>\n\t\t<Vehicles>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>1</Route>\n\t\t\t\t<Direction>W</Direction>\n\t\t\t\t<Updatetime>01:54
48
+ PM</Updatetime>\n\t\t\t\t<Vehicleid>6362</Vehicleid>\n\t\t\t\t<Block>1</Block>\n\t\t\t\t<Adherance>0</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>1.49</Speed>\n\t\t\t\t<Heading>36</Heading>\n\t\t\t\t<Routeid>15722</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>7</Route>\n\t\t\t\t<Direction>S</Direction>\n\t\t\t\t<Updatetime>01:54
49
+ PM</Updatetime>\n\t\t\t\t<Vehicleid>6104</Vehicleid>\n\t\t\t\t<Block>10</Block>\n\t\t\t\t<Adherance>0</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>Y</Stopped>\n\t\t\t\t<Inservice>L</Inservice>\n\t\t\t\t<Speed>0.00</Speed>\n\t\t\t\t<Heading>
50
+ 0</Heading>\n\t\t\t\t<Routeid>15785</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>50</Route>\n\t\t\t\t<Direction>W</Direction>\n\t\t\t\t<Updatetime>01:50
51
+ PM</Updatetime>\n\t\t\t\t<Vehicleid>6360</Vehicleid>\n\t\t\t\t<Block>100</Block>\n\t\t\t\t<Adherance>0</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>N</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>15.65</Speed>\n\t\t\t\t<Heading>27</Heading>\n\t\t\t\t<Routeid>16112</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>50</Route>\n\t\t\t\t<Direction>E</Direction>\n\t\t\t\t<Updatetime>01:54
52
+ PM</Updatetime>\n\t\t\t\t<Vehicleid>6288</Vehicleid>\n\t\t\t\t<Block>101</Block>\n\t\t\t\t<Adherance>2</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>6.44</Speed>\n\t\t\t\t<Heading>
53
+ 9</Heading>\n\t\t\t\t<Routeid>16097</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>50</Route>\n\t\t\t\t<Direction>E</Direction>\n\t\t\t\t<Updatetime>01:52
54
+ PM</Updatetime>\n\t\t\t\t<Vehicleid>6375</Vehicleid>\n\t\t\t\t<Block>102</Block>\n\t\t\t\t<Adherance>0</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>16.17</Speed>\n\t\t\t\t<Heading>
55
+ 9</Heading>\n\t\t\t\t<Routeid>16099</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>7</Route>\n\t\t\t\t<Direction>S</Direction>\n\t\t\t\t<Updatetime>01:54
56
+ PM</Updatetime>\n\t\t\t\t<Vehicleid>6299</Vehicleid>\n\t\t\t\t<Block>11</Block>\n\t\t\t\t<Adherance>0</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>9.12</Speed>\n\t\t\t\t<Heading>18</Heading>\n\t\t\t\t<Routeid>15785</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>52</Route>\n\t\t\t\t<Direction>W</Direction>\n\t\t\t\t<Updatetime>01:49
57
+ PM</Updatetime>\n\t\t\t\t<Vehicleid>6286</Vehicleid>\n\t\t\t\t<Block>112</Block>\n\t\t\t\t<Adherance>0</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>L</Inservice>\n\t\t\t\t<Speed>0.00</Speed>\n\t\t\t\t<Heading>
58
+ 0</Heading>\n\t\t\t\t<Routeid>16132</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>60</Route>\n\t\t\t\t<Direction>E</Direction>\n\t\t\t\t<Updatetime>01:54
59
+ PM</Updatetime>\n\t\t\t\t<Vehicleid>6536</Vehicleid>\n\t\t\t\t<Block>119</Block>\n\t\t\t\t<Adherance>0</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>27.99</Speed>\n\t\t\t\t<Heading>
60
+ 9</Heading>\n\t\t\t\t<Routeid>16186</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>7</Route>\n\t\t\t\t<Direction>N</Direction>\n\t\t\t\t<Updatetime>01:54
61
+ PM</Updatetime>\n\t\t\t\t<Vehicleid>6365</Vehicleid>\n\t\t\t\t<Block>12</Block>\n\t\t\t\t<Adherance>-3</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>9.83</Speed>\n\t\t\t\t<Heading>
62
+ 9</Heading>\n\t\t\t\t<Routeid>15781</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>60</Route>\n\t\t\t\t<Direction>W</Direction>\n\t\t\t\t<Updatetime>01:52
63
+ PM</Updatetime>\n\t\t\t\t<Vehicleid>6031</Vehicleid>\n\t\t\t\t<Block>121</Block>\n\t\t\t\t<Adherance>-4</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>14.89</Speed>\n\t\t\t\t<Heading>
64
+ 8</Heading>\n\t\t\t\t<Routeid>16190</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>60</Route>\n\t\t\t\t<Direction>E</Direction>\n\t\t\t\t<Updatetime>01:47
65
+ PM</Updatetime>\n\t\t\t\t<Vehicleid>6535</Vehicleid>\n\t\t\t\t<Block>123</Block>\n\t\t\t\t<Adherance>0</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>Y</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>0.05</Speed>\n\t\t\t\t<Heading>21</Heading>\n\t\t\t\t<Routeid>16186</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>16</Route>\n\t\t\t\t<Direction>S</Direction>\n\t\t\t\t<Updatetime>01:53
66
+ PM</Updatetime>\n\t\t\t\t<Vehicleid>6293</Vehicleid>\n\t\t\t\t<Block>125</Block>\n\t\t\t\t<Adherance>5</Adherance>\n\t\t\t\t<Adhchange>I</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>15.77</Speed>\n\t\t\t\t<Heading>18</Heading>\n\t\t\t\t<Routeid>15855</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>16</Route>\n\t\t\t\t<Direction>S</Direction>\n\t\t\t\t<Updatetime>01:53
67
+ PM</Updatetime>\n\t\t\t\t<Vehicleid>6303</Vehicleid>\n\t\t\t\t<Block>126</Block>\n\t\t\t\t<Adherance>2</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>8.86</Speed>\n\t\t\t\t<Heading>
68
+ 9</Heading>\n\t\t\t\t<Routeid>15855</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>70</Route>\n\t\t\t\t<Direction>W</Direction>\n\t\t\t\t<Updatetime>01:48
69
+ PM</Updatetime>\n\t\t\t\t<Vehicleid>6017</Vehicleid>\n\t\t\t\t<Block>128</Block>\n\t\t\t\t<Adherance>0</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>13.86</Speed>\n\t\t\t\t<Heading>27</Heading>\n\t\t\t\t<Routeid>16292</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>70</Route>\n\t\t\t\t<Direction>W</Direction>\n\t\t\t\t<Updatetime>01:53
70
+ PM</Updatetime>\n\t\t\t\t<Vehicleid>6539</Vehicleid>\n\t\t\t\t<Block>129</Block>\n\t\t\t\t<Adherance>1</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>11.47</Speed>\n\t\t\t\t<Heading>36</Heading>\n\t\t\t\t<Routeid>16290</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>70</Route>\n\t\t\t\t<Direction>E</Direction>\n\t\t\t\t<Updatetime>01:53
71
+ PM</Updatetime>\n\t\t\t\t<Vehicleid>8012</Vehicleid>\n\t\t\t\t<Block>130</Block>\n\t\t\t\t<Adherance>1</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>28.34</Speed>\n\t\t\t\t<Heading>10</Heading>\n\t\t\t\t<Routeid>16279</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>70</Route>\n\t\t\t\t<Direction>E</Direction>\n\t\t\t\t<Updatetime>01:53
72
+ PM</Updatetime>\n\t\t\t\t<Vehicleid>6349</Vehicleid>\n\t\t\t\t<Block>132</Block>\n\t\t\t\t<Adherance>1</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>19.93</Speed>\n\t\t\t\t<Heading>
73
+ 9</Heading>\n\t\t\t\t<Routeid>16282</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>70</Route>\n\t\t\t\t<Direction>W</Direction>\n\t\t\t\t<Updatetime>01:53
74
+ PM</Updatetime>\n\t\t\t\t<Vehicleid>6552</Vehicleid>\n\t\t\t\t<Block>135</Block>\n\t\t\t\t<Adherance>-2</Adherance>\n\t\t\t\t<Adhchange>N</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>0.00</Speed>\n\t\t\t\t<Heading>
75
+ 0</Heading>\n\t\t\t\t<Routeid>16292</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>70</Route>\n\t\t\t\t<Direction>E</Direction>\n\t\t\t\t<Updatetime>01:54
76
+ PM</Updatetime>\n\t\t\t\t<Vehicleid>6540</Vehicleid>\n\t\t\t\t<Block>136</Block>\n\t\t\t\t<Adherance>-2</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>14.33</Speed>\n\t\t\t\t<Heading>
77
+ 9</Heading>\n\t\t\t\t<Routeid>16279</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>70</Route>\n\t\t\t\t<Direction>W</Direction>\n\t\t\t\t<Updatetime>01:54
78
+ PM</Updatetime>\n\t\t\t\t<Vehicleid>6541</Vehicleid>\n\t\t\t\t<Block>137</Block>\n\t\t\t\t<Adherance>0</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>Y</Stopped>\n\t\t\t\t<Inservice>L</Inservice>\n\t\t\t\t<Speed>0.00</Speed>\n\t\t\t\t<Heading>
79
+ 0</Heading>\n\t\t\t\t<Routeid>16290</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>8</Route>\n\t\t\t\t<Direction>S</Direction>\n\t\t\t\t<Updatetime>01:54
80
+ PM</Updatetime>\n\t\t\t\t<Vehicleid>6347</Vehicleid>\n\t\t\t\t<Block>14</Block>\n\t\t\t\t<Adherance>5</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>15.51</Speed>\n\t\t\t\t<Heading>16</Heading>\n\t\t\t\t<Routeid>15793</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>70</Route>\n\t\t\t\t<Direction>E</Direction>\n\t\t\t\t<Updatetime>01:53
81
+ PM</Updatetime>\n\t\t\t\t<Vehicleid>6309</Vehicleid>\n\t\t\t\t<Block>140</Block>\n\t\t\t\t<Adherance>0</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>Y</Stopped>\n\t\t\t\t<Inservice>L</Inservice>\n\t\t\t\t<Speed>0.00</Speed>\n\t\t\t\t<Heading>
82
+ 0</Heading>\n\t\t\t\t<Routeid>16281</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>70</Route>\n\t\t\t\t<Direction>E</Direction>\n\t\t\t\t<Updatetime>01:53
83
+ PM</Updatetime>\n\t\t\t\t<Vehicleid>6122</Vehicleid>\n\t\t\t\t<Block>142</Block>\n\t\t\t\t<Adherance>-3</Adherance>\n\t\t\t\t<Adhchange>I</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>12.83</Speed>\n\t\t\t\t<Heading>18</Heading>\n\t\t\t\t<Routeid>16282</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>70</Route>\n\t\t\t\t<Direction>W</Direction>\n\t\t\t\t<Updatetime>01:54
84
+ PM</Updatetime>\n\t\t\t\t<Vehicleid>6543</Vehicleid>\n\t\t\t\t<Block>143</Block>\n\t\t\t\t<Adherance>3</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>27.34</Speed>\n\t\t\t\t<Heading>27</Heading>\n\t\t\t\t<Routeid>16290</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>70</Route>\n\t\t\t\t<Direction>W</Direction>\n\t\t\t\t<Updatetime>01:54
85
+ PM</Updatetime>\n\t\t\t\t<Vehicleid>6361</Vehicleid>\n\t\t\t\t<Block>144</Block>\n\t\t\t\t<Adherance>2</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>24.14</Speed>\n\t\t\t\t<Heading>11</Heading>\n\t\t\t\t<Routeid>16291</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>8</Route>\n\t\t\t\t<Direction>N</Direction>\n\t\t\t\t<Updatetime>01:54
86
+ PM</Updatetime>\n\t\t\t\t<Vehicleid>6352</Vehicleid>\n\t\t\t\t<Block>15</Block>\n\t\t\t\t<Adherance>2</Adherance>\n\t\t\t\t<Adhchange>I</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>9.70</Speed>\n\t\t\t\t<Heading>36</Heading>\n\t\t\t\t<Routeid>15789</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>DASG</Route>\n\t\t\t\t<Direction>K</Direction>\n\t\t\t\t<Updatetime>01:53
87
+ PM</Updatetime>\n\t\t\t\t<Vehicleid>4164</Vehicleid>\n\t\t\t\t<Block>155</Block>\n\t\t\t\t<Adherance>0</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>14.06</Speed>\n\t\t\t\t<Heading>24</Heading>\n\t\t\t\t<Routeid>16768</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>DASG</Route>\n\t\t\t\t<Direction>K</Direction>\n\t\t\t\t<Updatetime>01:54
88
+ PM</Updatetime>\n\t\t\t\t<Vehicleid>4165</Vehicleid>\n\t\t\t\t<Block>156</Block>\n\t\t\t\t<Adherance>3</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>Y</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>0.12</Speed>\n\t\t\t\t<Heading>
89
+ 0</Heading>\n\t\t\t\t<Routeid>16768</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>DASG</Route>\n\t\t\t\t<Direction>K</Direction>\n\t\t\t\t<Updatetime>01:54
90
+ PM</Updatetime>\n\t\t\t\t<Vehicleid>4167</Vehicleid>\n\t\t\t\t<Block>157</Block>\n\t\t\t\t<Adherance>4</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>9.53</Speed>\n\t\t\t\t<Heading>
91
+ 9</Heading>\n\t\t\t\t<Routeid>16768</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>8</Route>\n\t\t\t\t<Direction>S</Direction>\n\t\t\t\t<Updatetime>01:53
92
+ PM</Updatetime>\n\t\t\t\t<Vehicleid>6368</Vehicleid>\n\t\t\t\t<Block>16</Block>\n\t\t\t\t<Adherance>-2</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>16.34</Speed>\n\t\t\t\t<Heading>18</Heading>\n\t\t\t\t<Routeid>15793</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>8</Route>\n\t\t\t\t<Direction>N</Direction>\n\t\t\t\t<Updatetime>01:54
93
+ PM</Updatetime>\n\t\t\t\t<Vehicleid>6343</Vehicleid>\n\t\t\t\t<Block>17</Block>\n\t\t\t\t<Adherance>14</Adherance>\n\t\t\t\t<Adhchange>I</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>7.12</Speed>\n\t\t\t\t<Heading>28</Heading>\n\t\t\t\t<Routeid>15789</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>LTRL</Route>\n\t\t\t\t<Direction>E</Direction>\n\t\t\t\t<Updatetime>01:50
94
+ PM</Updatetime>\n\t\t\t\t<Vehicleid>149</Vehicleid>\n\t\t\t\t<Block>17045</Block>\n\t\t\t\t<Adherance>0</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>48.89</Speed>\n\t\t\t\t<Heading>
95
+ 9</Heading>\n\t\t\t\t<Routeid>14482</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>LTRL</Route>\n\t\t\t\t<Direction>E</Direction>\n\t\t\t\t<Updatetime>01:54
96
+ PM</Updatetime>\n\t\t\t\t<Vehicleid>140</Vehicleid>\n\t\t\t\t<Block>17046</Block>\n\t\t\t\t<Adherance>0</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>10.69</Speed>\n\t\t\t\t<Heading>10</Heading>\n\t\t\t\t<Routeid>14484</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>LTRL</Route>\n\t\t\t\t<Direction>E</Direction>\n\t\t\t\t<Updatetime>01:54
97
+ PM</Updatetime>\n\t\t\t\t<Vehicleid>133</Vehicleid>\n\t\t\t\t<Block>17047</Block>\n\t\t\t\t<Adherance>0</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>Y</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>0.00</Speed>\n\t\t\t\t<Heading>10</Heading>\n\t\t\t\t<Routeid>14482</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>LTRL</Route>\n\t\t\t\t<Direction>E</Direction>\n\t\t\t\t<Updatetime>01:54
98
+ PM</Updatetime>\n\t\t\t\t<Vehicleid>109</Vehicleid>\n\t\t\t\t<Block>17049</Block>\n\t\t\t\t<Adherance>1</Adherance>\n\t\t\t\t<Adhchange>I</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>25.10</Speed>\n\t\t\t\t<Heading>19</Heading>\n\t\t\t\t<Routeid>14482</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>LTRL</Route>\n\t\t\t\t<Direction>E</Direction>\n\t\t\t\t<Updatetime>01:54
99
+ PM</Updatetime>\n\t\t\t\t<Vehicleid>112</Vehicleid>\n\t\t\t\t<Block>17050</Block>\n\t\t\t\t<Adherance>0</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>22.30</Speed>\n\t\t\t\t<Heading>16</Heading>\n\t\t\t\t<Routeid>14484</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>LTRL</Route>\n\t\t\t\t<Direction>E</Direction>\n\t\t\t\t<Updatetime>01:54
100
+ PM</Updatetime>\n\t\t\t\t<Vehicleid>105</Vehicleid>\n\t\t\t\t<Block>17051</Block>\n\t\t\t\t<Adherance>0</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>Y</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>0.00</Speed>\n\t\t\t\t<Heading>
101
+ 0</Heading>\n\t\t\t\t<Routeid>14482</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>LTRL</Route>\n\t\t\t\t<Direction>E</Direction>\n\t\t\t\t<Updatetime>01:54
102
+ PM</Updatetime>\n\t\t\t\t<Vehicleid>104</Vehicleid>\n\t\t\t\t<Block>17052</Block>\n\t\t\t\t<Adherance>0</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>Y</Stopped>\n\t\t\t\t<Inservice>L</Inservice>\n\t\t\t\t<Speed>0.00</Speed>\n\t\t\t\t<Heading>
103
+ 0</Heading>\n\t\t\t\t<Routeid>14484</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>LTRL</Route>\n\t\t\t\t<Direction>W</Direction>\n\t\t\t\t<Updatetime>01:48
104
+ PM</Updatetime>\n\t\t\t\t<Vehicleid>104</Vehicleid>\n\t\t\t\t<Block>17137</Block>\n\t\t\t\t<Adherance>0</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>Y</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>0.00</Speed>\n\t\t\t\t<Heading>11</Heading>\n\t\t\t\t<Routeid>14513</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>LTRL</Route>\n\t\t\t\t<Direction>W</Direction>\n\t\t\t\t<Updatetime>01:54
105
+ PM</Updatetime>\n\t\t\t\t<Vehicleid>150</Vehicleid>\n\t\t\t\t<Block>17138</Block>\n\t\t\t\t<Adherance>-3</Adherance>\n\t\t\t\t<Adhchange>I</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>Y</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>0.00</Speed>\n\t\t\t\t<Heading>11</Heading>\n\t\t\t\t<Routeid>14515</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>LTRL</Route>\n\t\t\t\t<Direction>W</Direction>\n\t\t\t\t<Updatetime>01:54
106
+ PM</Updatetime>\n\t\t\t\t<Vehicleid>125</Vehicleid>\n\t\t\t\t<Block>17139</Block>\n\t\t\t\t<Adherance>0</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>Y</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>0.00</Speed>\n\t\t\t\t<Heading>27</Heading>\n\t\t\t\t<Routeid>14513</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>LTRL</Route>\n\t\t\t\t<Direction>W</Direction>\n\t\t\t\t<Updatetime>01:54
107
+ PM</Updatetime>\n\t\t\t\t<Vehicleid>102</Vehicleid>\n\t\t\t\t<Block>17140</Block>\n\t\t\t\t<Adherance>2</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>38.84</Speed>\n\t\t\t\t<Heading>27</Heading>\n\t\t\t\t<Routeid>14515</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>LTRL</Route>\n\t\t\t\t<Direction>W</Direction>\n\t\t\t\t<Updatetime>01:54
108
+ PM</Updatetime>\n\t\t\t\t<Vehicleid>130</Vehicleid>\n\t\t\t\t<Block>17141</Block>\n\t\t\t\t<Adherance>0</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>Y</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>0.00</Speed>\n\t\t\t\t<Heading>
109
+ 0</Heading>\n\t\t\t\t<Routeid>14513</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>LTRL</Route>\n\t\t\t\t<Direction>W</Direction>\n\t\t\t\t<Updatetime>01:54
110
+ PM</Updatetime>\n\t\t\t\t<Vehicleid>120</Vehicleid>\n\t\t\t\t<Block>17142</Block>\n\t\t\t\t<Adherance>1</Adherance>\n\t\t\t\t<Adhchange>I</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>11.60</Speed>\n\t\t\t\t<Heading>27</Heading>\n\t\t\t\t<Routeid>14515</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>LTRL</Route>\n\t\t\t\t<Direction>W</Direction>\n\t\t\t\t<Updatetime>01:54
111
+ PM</Updatetime>\n\t\t\t\t<Vehicleid>114</Vehicleid>\n\t\t\t\t<Block>17143</Block>\n\t\t\t\t<Adherance>0</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>Y</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>0.12</Speed>\n\t\t\t\t<Heading>36</Heading>\n\t\t\t\t<Routeid>14513</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>LTRL</Route>\n\t\t\t\t<Direction>W</Direction>\n\t\t\t\t<Updatetime>01:54
112
+ PM</Updatetime>\n\t\t\t\t<Vehicleid>149</Vehicleid>\n\t\t\t\t<Block>17144</Block>\n\t\t\t\t<Adherance>0</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>Y</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>0.00</Speed>\n\t\t\t\t<Heading>
113
+ 0</Heading>\n\t\t\t\t<Routeid>14515</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>ZERO</Route>\n\t\t\t\t<Direction>S</Direction>\n\t\t\t\t<Updatetime>01:54
114
+ PM</Updatetime>\n\t\t\t\t<Vehicleid>6544</Vehicleid>\n\t\t\t\t<Block>189</Block>\n\t\t\t\t<Adherance>0</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>6.09</Speed>\n\t\t\t\t<Heading>18</Heading>\n\t\t\t\t<Routeid>16903</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>10</Route>\n\t\t\t\t<Direction>W</Direction>\n\t\t\t\t<Updatetime>01:53
115
+ PM</Updatetime>\n\t\t\t\t<Vehicleid>8004</Vehicleid>\n\t\t\t\t<Block>19</Block>\n\t\t\t\t<Adherance>2</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>Y</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>0.11</Speed>\n\t\t\t\t<Heading>25</Heading>\n\t\t\t\t<Routeid>15807</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>ZERO</Route>\n\t\t\t\t<Direction>N</Direction>\n\t\t\t\t<Updatetime>01:53
116
+ PM</Updatetime>\n\t\t\t\t<Vehicleid>6545</Vehicleid>\n\t\t\t\t<Block>190</Block>\n\t\t\t\t<Adherance>-2</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>6.49</Speed>\n\t\t\t\t<Heading>36</Heading>\n\t\t\t\t<Routeid>16895</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>ZERO</Route>\n\t\t\t\t<Direction>S</Direction>\n\t\t\t\t<Updatetime>01:50
117
+ PM</Updatetime>\n\t\t\t\t<Vehicleid>6546</Vehicleid>\n\t\t\t\t<Block>191</Block>\n\t\t\t\t<Adherance>4</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>Y</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>0.07</Speed>\n\t\t\t\t<Heading>18</Heading>\n\t\t\t\t<Routeid>16903</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>ZERO</Route>\n\t\t\t\t<Direction>N</Direction>\n\t\t\t\t<Updatetime>01:53
118
+ PM</Updatetime>\n\t\t\t\t<Vehicleid>6547</Vehicleid>\n\t\t\t\t<Block>192</Block>\n\t\t\t\t<Adherance>3</Adherance>\n\t\t\t\t<Adhchange>I</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>3.47</Speed>\n\t\t\t\t<Heading>36</Heading>\n\t\t\t\t<Routeid>16895</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>ZERO</Route>\n\t\t\t\t<Direction>S</Direction>\n\t\t\t\t<Updatetime>01:54
119
+ PM</Updatetime>\n\t\t\t\t<Vehicleid>6548</Vehicleid>\n\t\t\t\t<Block>193</Block>\n\t\t\t\t<Adherance>3</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>14.43</Speed>\n\t\t\t\t<Heading>18</Heading>\n\t\t\t\t<Routeid>16903</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>ZERO</Route>\n\t\t\t\t<Direction>N</Direction>\n\t\t\t\t<Updatetime>01:54
120
+ PM</Updatetime>\n\t\t\t\t<Vehicleid>6549</Vehicleid>\n\t\t\t\t<Block>194</Block>\n\t\t\t\t<Adherance>1</Adherance>\n\t\t\t\t<Adhchange>I</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>5.81</Speed>\n\t\t\t\t<Heading>36</Heading>\n\t\t\t\t<Routeid>16895</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>ZERO</Route>\n\t\t\t\t<Direction>S</Direction>\n\t\t\t\t<Updatetime>01:53
121
+ PM</Updatetime>\n\t\t\t\t<Vehicleid>6550</Vehicleid>\n\t\t\t\t<Block>195</Block>\n\t\t\t\t<Adherance>0</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>Y</Stopped>\n\t\t\t\t<Inservice>L</Inservice>\n\t\t\t\t<Speed>0.00</Speed>\n\t\t\t\t<Heading>
122
+ 0</Heading>\n\t\t\t\t<Routeid>16903</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>ZERO</Route>\n\t\t\t\t<Direction>S</Direction>\n\t\t\t\t<Updatetime>01:53
123
+ PM</Updatetime>\n\t\t\t\t<Vehicleid>6551</Vehicleid>\n\t\t\t\t<Block>198</Block>\n\t\t\t\t<Adherance>5</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>4.55</Speed>\n\t\t\t\t<Heading>
124
+ 9</Heading>\n\t\t\t\t<Routeid>16903</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>7</Route>\n\t\t\t\t<Direction>S</Direction>\n\t\t\t\t<Updatetime>01:54
125
+ PM</Updatetime>\n\t\t\t\t<Vehicleid>6298</Vehicleid>\n\t\t\t\t<Block>2</Block>\n\t\t\t\t<Adherance>0</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>14.33</Speed>\n\t\t\t\t<Heading>18</Heading>\n\t\t\t\t<Routeid>15785</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>10</Route>\n\t\t\t\t<Direction>W</Direction>\n\t\t\t\t<Updatetime>01:53
126
+ PM</Updatetime>\n\t\t\t\t<Vehicleid>6300</Vehicleid>\n\t\t\t\t<Block>20</Block>\n\t\t\t\t<Adherance>0</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>Y</Stopped>\n\t\t\t\t<Inservice>L</Inservice>\n\t\t\t\t<Speed>0.00</Speed>\n\t\t\t\t<Heading>
127
+ 0</Heading>\n\t\t\t\t<Routeid>15807</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>ZERO</Route>\n\t\t\t\t<Direction>N</Direction>\n\t\t\t\t<Updatetime>01:52
128
+ PM</Updatetime>\n\t\t\t\t<Vehicleid>6371</Vehicleid>\n\t\t\t\t<Block>200</Block>\n\t\t\t\t<Adherance>0</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>L</Inservice>\n\t\t\t\t<Speed>0.00</Speed>\n\t\t\t\t<Heading>
129
+ 0</Heading>\n\t\t\t\t<Routeid>16896</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>3</Route>\n\t\t\t\t<Direction>E</Direction>\n\t\t\t\t<Updatetime>01:54
130
+ PM</Updatetime>\n\t\t\t\t<Vehicleid>8046</Vehicleid>\n\t\t\t\t<Block>2002</Block>\n\t\t\t\t<Adherance>0</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>N</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>Y</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>0.00</Speed>\n\t\t\t\t<Heading>19</Heading>\n\t\t\t\t<Routeid>15740</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>3</Route>\n\t\t\t\t<Direction>W</Direction>\n\t\t\t\t<Updatetime>01:54
131
+ PM</Updatetime>\n\t\t\t\t<Vehicleid>6501</Vehicleid>\n\t\t\t\t<Block>2003</Block>\n\t\t\t\t<Adherance>7</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>Y</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>0.00</Speed>\n\t\t\t\t<Heading>27</Heading>\n\t\t\t\t<Routeid>15775</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>3</Route>\n\t\t\t\t<Direction>E</Direction>\n\t\t\t\t<Updatetime>01:53
132
+ PM</Updatetime>\n\t\t\t\t<Vehicleid>8032</Vehicleid>\n\t\t\t\t<Block>2004</Block>\n\t\t\t\t<Adherance>-2</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>19.10</Speed>\n\t\t\t\t<Heading>
133
+ 9</Heading>\n\t\t\t\t<Routeid>15740</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>3</Route>\n\t\t\t\t<Direction>W</Direction>\n\t\t\t\t<Updatetime>01:53
134
+ PM</Updatetime>\n\t\t\t\t<Vehicleid>6509</Vehicleid>\n\t\t\t\t<Block>2005</Block>\n\t\t\t\t<Adherance>3</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>13.43</Speed>\n\t\t\t\t<Heading>27</Heading>\n\t\t\t\t<Routeid>15775</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>3</Route>\n\t\t\t\t<Direction>W</Direction>\n\t\t\t\t<Updatetime>01:53
135
+ PM</Updatetime>\n\t\t\t\t<Vehicleid>5006</Vehicleid>\n\t\t\t\t<Block>2007</Block>\n\t\t\t\t<Adherance>0</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>N</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>13.16</Speed>\n\t\t\t\t<Heading>
136
+ 8</Heading>\n\t\t\t\t<Routeid>15776</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>3</Route>\n\t\t\t\t<Direction>E</Direction>\n\t\t\t\t<Updatetime>01:51
137
+ PM</Updatetime>\n\t\t\t\t<Vehicleid>5045</Vehicleid>\n\t\t\t\t<Block>2008</Block>\n\t\t\t\t<Adherance>0</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>N</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>22.80</Speed>\n\t\t\t\t<Heading>
138
+ 9</Heading>\n\t\t\t\t<Routeid>15740</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>3</Route>\n\t\t\t\t<Direction>W</Direction>\n\t\t\t\t<Updatetime>01:54
139
+ PM</Updatetime>\n\t\t\t\t<Vehicleid>5031</Vehicleid>\n\t\t\t\t<Block>2009</Block>\n\t\t\t\t<Adherance>-5</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>10.81</Speed>\n\t\t\t\t<Heading>27</Heading>\n\t\t\t\t<Routeid>15772</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>ZERO</Route>\n\t\t\t\t<Direction>S</Direction>\n\t\t\t\t<Updatetime>01:51
140
+ PM</Updatetime>\n\t\t\t\t<Vehicleid>6330</Vehicleid>\n\t\t\t\t<Block>201</Block>\n\t\t\t\t<Adherance>0</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>1.14</Speed>\n\t\t\t\t<Heading>34</Heading>\n\t\t\t\t<Routeid>16904</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>3</Route>\n\t\t\t\t<Direction>W</Direction>\n\t\t\t\t<Updatetime>01:54
141
+ PM</Updatetime>\n\t\t\t\t<Vehicleid>6505</Vehicleid>\n\t\t\t\t<Block>2010</Block>\n\t\t\t\t<Adherance>4</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>9.43</Speed>\n\t\t\t\t<Heading>27</Heading>\n\t\t\t\t<Routeid>15776</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>3</Route>\n\t\t\t\t<Direction>E</Direction>\n\t\t\t\t<Updatetime>01:51
142
+ PM</Updatetime>\n\t\t\t\t<Vehicleid>5001</Vehicleid>\n\t\t\t\t<Block>2011</Block>\n\t\t\t\t<Adherance>-7</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>21.86</Speed>\n\t\t\t\t<Heading>
143
+ 9</Heading>\n\t\t\t\t<Routeid>15745</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>3</Route>\n\t\t\t\t<Direction>E</Direction>\n\t\t\t\t<Updatetime>01:53
144
+ PM</Updatetime>\n\t\t\t\t<Vehicleid>5057</Vehicleid>\n\t\t\t\t<Block>2012</Block>\n\t\t\t\t<Adherance>0</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>8.07</Speed>\n\t\t\t\t<Heading>
145
+ 9</Heading>\n\t\t\t\t<Routeid>15740</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>3</Route>\n\t\t\t\t<Direction>E</Direction>\n\t\t\t\t<Updatetime>01:54
146
+ PM</Updatetime>\n\t\t\t\t<Vehicleid>5056</Vehicleid>\n\t\t\t\t<Block>2013</Block>\n\t\t\t\t<Adherance>4</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>12.64</Speed>\n\t\t\t\t<Heading>
147
+ 9</Heading>\n\t\t\t\t<Routeid>15745</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route></Route>\n\t\t\t\t<Direction>
148
+ </Direction>\n\t\t\t\t<Updatetime>01:54 PM</Updatetime>\n\t\t\t\t<Vehicleid>5055</Vehicleid>\n\t\t\t\t<Block>2014</Block>\n\t\t\t\t<Adherance>0</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>N</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>Y</Stopped>\n\t\t\t\t<Inservice>N</Inservice>\n\t\t\t\t<Speed>0.06</Speed>\n\t\t\t\t<Heading>
149
+ 0</Heading>\n\t\t\t\t<Routeid>0</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route></Route>\n\t\t\t\t<Direction>
150
+ </Direction>\n\t\t\t\t<Updatetime>01:53 PM</Updatetime>\n\t\t\t\t<Vehicleid>6523</Vehicleid>\n\t\t\t\t<Block>2015</Block>\n\t\t\t\t<Adherance>0</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>N</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>Y</Stopped>\n\t\t\t\t<Inservice>N</Inservice>\n\t\t\t\t<Speed>0.40</Speed>\n\t\t\t\t<Heading>
151
+ 0</Heading>\n\t\t\t\t<Routeid>0</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>13</Route>\n\t\t\t\t<Direction>E</Direction>\n\t\t\t\t<Updatetime>01:54
152
+ PM</Updatetime>\n\t\t\t\t<Vehicleid>6524</Vehicleid>\n\t\t\t\t<Block>2018</Block>\n\t\t\t\t<Adherance>2</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>15.43</Speed>\n\t\t\t\t<Heading>
153
+ 9</Heading>\n\t\t\t\t<Routeid>15821</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>13</Route>\n\t\t\t\t<Direction>W</Direction>\n\t\t\t\t<Updatetime>01:53
154
+ PM</Updatetime>\n\t\t\t\t<Vehicleid>6522</Vehicleid>\n\t\t\t\t<Block>2019</Block>\n\t\t\t\t<Adherance>4</Adherance>\n\t\t\t\t<Adhchange>N</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>0.00</Speed>\n\t\t\t\t<Heading>
155
+ 0</Heading>\n\t\t\t\t<Routeid>15825</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>ZERO</Route>\n\t\t\t\t<Direction>N</Direction>\n\t\t\t\t<Updatetime>01:53
156
+ PM</Updatetime>\n\t\t\t\t<Vehicleid>6332</Vehicleid>\n\t\t\t\t<Block>202</Block>\n\t\t\t\t<Adherance>2</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>29.58</Speed>\n\t\t\t\t<Heading>36</Heading>\n\t\t\t\t<Routeid>16896</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>13</Route>\n\t\t\t\t<Direction>W</Direction>\n\t\t\t\t<Updatetime>01:54
157
+ PM</Updatetime>\n\t\t\t\t<Vehicleid>5010</Vehicleid>\n\t\t\t\t<Block>2020</Block>\n\t\t\t\t<Adherance>3</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>8.33</Speed>\n\t\t\t\t<Heading>27</Heading>\n\t\t\t\t<Routeid>15825</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>13</Route>\n\t\t\t\t<Direction>E</Direction>\n\t\t\t\t<Updatetime>01:54
158
+ PM</Updatetime>\n\t\t\t\t<Vehicleid>5019</Vehicleid>\n\t\t\t\t<Block>2022</Block>\n\t\t\t\t<Adherance>-3</Adherance>\n\t\t\t\t<Adhchange>I</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>14.17</Speed>\n\t\t\t\t<Heading>10</Heading>\n\t\t\t\t<Routeid>15821</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>17</Route>\n\t\t\t\t<Direction>E</Direction>\n\t\t\t\t<Updatetime>01:53
159
+ PM</Updatetime>\n\t\t\t\t<Vehicleid>8038</Vehicleid>\n\t\t\t\t<Block>2024</Block>\n\t\t\t\t<Adherance>5</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>Y</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>0.06</Speed>\n\t\t\t\t<Heading>
160
+ 9</Heading>\n\t\t\t\t<Routeid>15866</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>17</Route>\n\t\t\t\t<Direction>W</Direction>\n\t\t\t\t<Updatetime>01:53
161
+ PM</Updatetime>\n\t\t\t\t<Vehicleid>5015</Vehicleid>\n\t\t\t\t<Block>2025</Block>\n\t\t\t\t<Adherance>6</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>12.53</Speed>\n\t\t\t\t<Heading>27</Heading>\n\t\t\t\t<Routeid>15880</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>17</Route>\n\t\t\t\t<Direction>W</Direction>\n\t\t\t\t<Updatetime>01:53
162
+ PM</Updatetime>\n\t\t\t\t<Vehicleid>8041</Vehicleid>\n\t\t\t\t<Block>2026</Block>\n\t\t\t\t<Adherance>2</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>16.72</Speed>\n\t\t\t\t<Heading>27</Heading>\n\t\t\t\t<Routeid>15879</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>17</Route>\n\t\t\t\t<Direction>E</Direction>\n\t\t\t\t<Updatetime>01:54
163
+ PM</Updatetime>\n\t\t\t\t<Vehicleid>8027</Vehicleid>\n\t\t\t\t<Block>2027</Block>\n\t\t\t\t<Adherance>-1</Adherance>\n\t\t\t\t<Adhchange>D</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>18.80</Speed>\n\t\t\t\t<Heading>
164
+ 9</Heading>\n\t\t\t\t<Routeid>15866</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>17</Route>\n\t\t\t\t<Direction>W</Direction>\n\t\t\t\t<Updatetime>01:54
165
+ PM</Updatetime>\n\t\t\t\t<Vehicleid>5009</Vehicleid>\n\t\t\t\t<Block>2028</Block>\n\t\t\t\t<Adherance>-1</Adherance>\n\t\t\t\t<Adhchange>D</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>13.82</Speed>\n\t\t\t\t<Heading>27</Heading>\n\t\t\t\t<Routeid>15880</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>17</Route>\n\t\t\t\t<Direction>W</Direction>\n\t\t\t\t<Updatetime>01:54
166
+ PM</Updatetime>\n\t\t\t\t<Vehicleid>6531</Vehicleid>\n\t\t\t\t<Block>2029</Block>\n\t\t\t\t<Adherance>0</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>17.74</Speed>\n\t\t\t\t<Heading>27</Heading>\n\t\t\t\t<Routeid>15880</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>27</Route>\n\t\t\t\t<Direction>S</Direction>\n\t\t\t\t<Updatetime>01:52
167
+ PM</Updatetime>\n\t\t\t\t<Vehicleid>6139</Vehicleid>\n\t\t\t\t<Block>203</Block>\n\t\t\t\t<Adherance>2</Adherance>\n\t\t\t\t<Adhchange>I</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>12.17</Speed>\n\t\t\t\t<Heading>18</Heading>\n\t\t\t\t<Routeid>15920</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>17</Route>\n\t\t\t\t<Direction>E</Direction>\n\t\t\t\t<Updatetime>01:54
168
+ PM</Updatetime>\n\t\t\t\t<Vehicleid>6526</Vehicleid>\n\t\t\t\t<Block>2030</Block>\n\t\t\t\t<Adherance>14</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>24.93</Speed>\n\t\t\t\t<Heading>
169
+ 9</Heading>\n\t\t\t\t<Routeid>15866</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>17</Route>\n\t\t\t\t<Direction>W</Direction>\n\t\t\t\t<Updatetime>01:53
170
+ PM</Updatetime>\n\t\t\t\t<Vehicleid>5047</Vehicleid>\n\t\t\t\t<Block>2031</Block>\n\t\t\t\t<Adherance>4</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>7.65</Speed>\n\t\t\t\t<Heading>27</Heading>\n\t\t\t\t<Routeid>15879</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>17</Route>\n\t\t\t\t<Direction>E</Direction>\n\t\t\t\t<Updatetime>01:52
171
+ PM</Updatetime>\n\t\t\t\t<Vehicleid>6525</Vehicleid>\n\t\t\t\t<Block>2032</Block>\n\t\t\t\t<Adherance>0</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>13.51</Speed>\n\t\t\t\t<Heading>
172
+ 9</Heading>\n\t\t\t\t<Routeid>15865</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route></Route>\n\t\t\t\t<Direction>
173
+ </Direction>\n\t\t\t\t<Updatetime>01:53 PM</Updatetime>\n\t\t\t\t<Vehicleid>8023</Vehicleid>\n\t\t\t\t<Block>2033</Block>\n\t\t\t\t<Adherance>0</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>N</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>N</Inservice>\n\t\t\t\t<Speed>0.00</Speed>\n\t\t\t\t<Heading>
174
+ 0</Heading>\n\t\t\t\t<Routeid>0</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>17</Route>\n\t\t\t\t<Direction>W</Direction>\n\t\t\t\t<Updatetime>01:53
175
+ PM</Updatetime>\n\t\t\t\t<Vehicleid>5049</Vehicleid>\n\t\t\t\t<Block>2034</Block>\n\t\t\t\t<Adherance>0</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>19.91</Speed>\n\t\t\t\t<Heading>27</Heading>\n\t\t\t\t<Routeid>15880</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>17</Route>\n\t\t\t\t<Direction>E</Direction>\n\t\t\t\t<Updatetime>01:53
176
+ PM</Updatetime>\n\t\t\t\t<Vehicleid>8044</Vehicleid>\n\t\t\t\t<Block>2036</Block>\n\t\t\t\t<Adherance>3</Adherance>\n\t\t\t\t<Adhchange>I</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>11.23</Speed>\n\t\t\t\t<Heading>
177
+ 9</Heading>\n\t\t\t\t<Routeid>15865</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>17</Route>\n\t\t\t\t<Direction>E</Direction>\n\t\t\t\t<Updatetime>01:53
178
+ PM</Updatetime>\n\t\t\t\t<Vehicleid>6518</Vehicleid>\n\t\t\t\t<Block>2037</Block>\n\t\t\t\t<Adherance>3</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>3.14</Speed>\n\t\t\t\t<Heading>
179
+ 9</Heading>\n\t\t\t\t<Routeid>15866</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>17</Route>\n\t\t\t\t<Direction>E</Direction>\n\t\t\t\t<Updatetime>01:54
180
+ PM</Updatetime>\n\t\t\t\t<Vehicleid>6517</Vehicleid>\n\t\t\t\t<Block>2038</Block>\n\t\t\t\t<Adherance>4</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>14.75</Speed>\n\t\t\t\t<Heading>
181
+ 9</Heading>\n\t\t\t\t<Routeid>15866</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>17</Route>\n\t\t\t\t<Direction>W</Direction>\n\t\t\t\t<Updatetime>01:54
182
+ PM</Updatetime>\n\t\t\t\t<Vehicleid>8036</Vehicleid>\n\t\t\t\t<Block>2040</Block>\n\t\t\t\t<Adherance>7</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>Y</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>0.16</Speed>\n\t\t\t\t<Heading>27</Heading>\n\t\t\t\t<Routeid>15880</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>17</Route>\n\t\t\t\t<Direction>E</Direction>\n\t\t\t\t<Updatetime>01:54
183
+ PM</Updatetime>\n\t\t\t\t<Vehicleid>5032</Vehicleid>\n\t\t\t\t<Block>2041</Block>\n\t\t\t\t<Adherance>6</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>15.56</Speed>\n\t\t\t\t<Heading>
184
+ 9</Heading>\n\t\t\t\t<Routeid>15865</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>17</Route>\n\t\t\t\t<Direction>W</Direction>\n\t\t\t\t<Updatetime>01:53
185
+ PM</Updatetime>\n\t\t\t\t<Vehicleid>6510</Vehicleid>\n\t\t\t\t<Block>2042</Block>\n\t\t\t\t<Adherance>5</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>9.52</Speed>\n\t\t\t\t<Heading>27</Heading>\n\t\t\t\t<Routeid>15879</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route></Route>\n\t\t\t\t<Direction>
186
+ </Direction>\n\t\t\t\t<Updatetime>01:52 PM</Updatetime>\n\t\t\t\t<Vehicleid>8022</Vehicleid>\n\t\t\t\t<Block>2048</Block>\n\t\t\t\t<Adherance>-5</Adherance>\n\t\t\t\t<Adhchange>N</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>N</Inservice>\n\t\t\t\t<Speed>0.00</Speed>\n\t\t\t\t<Heading>
187
+ 0</Heading>\n\t\t\t\t<Routeid>0</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>29</Route>\n\t\t\t\t<Direction>E</Direction>\n\t\t\t\t<Updatetime>01:53
188
+ PM</Updatetime>\n\t\t\t\t<Vehicleid>5035</Vehicleid>\n\t\t\t\t<Block>2049</Block>\n\t\t\t\t<Adherance>0</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>10.78</Speed>\n\t\t\t\t<Heading>
189
+ 9</Heading>\n\t\t\t\t<Routeid>15931</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>27</Route>\n\t\t\t\t<Direction>N</Direction>\n\t\t\t\t<Updatetime>01:53
190
+ PM</Updatetime>\n\t\t\t\t<Vehicleid>6377</Vehicleid>\n\t\t\t\t<Block>205</Block>\n\t\t\t\t<Adherance>0</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>9.33</Speed>\n\t\t\t\t<Heading>36</Heading>\n\t\t\t\t<Routeid>15909</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>29</Route>\n\t\t\t\t<Direction>W</Direction>\n\t\t\t\t<Updatetime>01:52
191
+ PM</Updatetime>\n\t\t\t\t<Vehicleid>8039</Vehicleid>\n\t\t\t\t<Block>2050</Block>\n\t\t\t\t<Adherance>3</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>2.52</Speed>\n\t\t\t\t<Heading>27</Heading>\n\t\t\t\t<Routeid>15942</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>29</Route>\n\t\t\t\t<Direction>E</Direction>\n\t\t\t\t<Updatetime>01:53
192
+ PM</Updatetime>\n\t\t\t\t<Vehicleid>6516</Vehicleid>\n\t\t\t\t<Block>2051</Block>\n\t\t\t\t<Adherance>3</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>13.10</Speed>\n\t\t\t\t<Heading>
193
+ 9</Heading>\n\t\t\t\t<Routeid>15930</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>29</Route>\n\t\t\t\t<Direction>W</Direction>\n\t\t\t\t<Updatetime>01:54
194
+ PM</Updatetime>\n\t\t\t\t<Vehicleid>5013</Vehicleid>\n\t\t\t\t<Block>2052</Block>\n\t\t\t\t<Adherance>-11</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>15.48</Speed>\n\t\t\t\t<Heading>27</Heading>\n\t\t\t\t<Routeid>15941</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>29</Route>\n\t\t\t\t<Direction>E</Direction>\n\t\t\t\t<Updatetime>01:53
195
+ PM</Updatetime>\n\t\t\t\t<Vehicleid>5048</Vehicleid>\n\t\t\t\t<Block>2053</Block>\n\t\t\t\t<Adherance>2</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>17.11</Speed>\n\t\t\t\t<Heading>
196
+ 9</Heading>\n\t\t\t\t<Routeid>15932</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>29</Route>\n\t\t\t\t<Direction>W</Direction>\n\t\t\t\t<Updatetime>01:53
197
+ PM</Updatetime>\n\t\t\t\t<Vehicleid>5003</Vehicleid>\n\t\t\t\t<Block>2059</Block>\n\t\t\t\t<Adherance>8</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>18.35</Speed>\n\t\t\t\t<Heading>27</Heading>\n\t\t\t\t<Routeid>15944</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route></Route>\n\t\t\t\t<Direction>
198
+ </Direction>\n\t\t\t\t<Updatetime>01:53 PM</Updatetime>\n\t\t\t\t<Vehicleid>8031</Vehicleid>\n\t\t\t\t<Block>2060</Block>\n\t\t\t\t<Adherance>-2</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>Y</Stopped>\n\t\t\t\t<Inservice>N</Inservice>\n\t\t\t\t<Speed>0.00</Speed>\n\t\t\t\t<Heading>
199
+ 0</Heading>\n\t\t\t\t<Routeid>0</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>29</Route>\n\t\t\t\t<Direction>E</Direction>\n\t\t\t\t<Updatetime>01:53
200
+ PM</Updatetime>\n\t\t\t\t<Vehicleid>5008</Vehicleid>\n\t\t\t\t<Block>2062</Block>\n\t\t\t\t<Adherance>6</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>11.42</Speed>\n\t\t\t\t<Heading>
201
+ 9</Heading>\n\t\t\t\t<Routeid>15931</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>29</Route>\n\t\t\t\t<Direction>E</Direction>\n\t\t\t\t<Updatetime>01:53
202
+ PM</Updatetime>\n\t\t\t\t<Vehicleid>8037</Vehicleid>\n\t\t\t\t<Block>2064</Block>\n\t\t\t\t<Adherance>0</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>19.32</Speed>\n\t\t\t\t<Heading>22</Heading>\n\t\t\t\t<Routeid>15933</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>29</Route>\n\t\t\t\t<Direction>W</Direction>\n\t\t\t\t<Updatetime>01:54
203
+ PM</Updatetime>\n\t\t\t\t<Vehicleid>5011</Vehicleid>\n\t\t\t\t<Block>2066</Block>\n\t\t\t\t<Adherance>2</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>18.23</Speed>\n\t\t\t\t<Heading>27</Heading>\n\t\t\t\t<Routeid>15944</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>29</Route>\n\t\t\t\t<Direction>W</Direction>\n\t\t\t\t<Updatetime>01:54
204
+ PM</Updatetime>\n\t\t\t\t<Vehicleid>5024</Vehicleid>\n\t\t\t\t<Block>2068</Block>\n\t\t\t\t<Adherance>-1</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>10.11</Speed>\n\t\t\t\t<Heading>27</Heading>\n\t\t\t\t<Routeid>15944</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>27</Route>\n\t\t\t\t<Direction>N</Direction>\n\t\t\t\t<Updatetime>01:54
205
+ PM</Updatetime>\n\t\t\t\t<Vehicleid>6339</Vehicleid>\n\t\t\t\t<Block>207</Block>\n\t\t\t\t<Adherance>-2</Adherance>\n\t\t\t\t<Adhchange>I</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>7.24</Speed>\n\t\t\t\t<Heading>32</Heading>\n\t\t\t\t<Routeid>15908</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>29</Route>\n\t\t\t\t<Direction>W</Direction>\n\t\t\t\t<Updatetime>01:53
206
+ PM</Updatetime>\n\t\t\t\t<Vehicleid>5007</Vehicleid>\n\t\t\t\t<Block>2070</Block>\n\t\t\t\t<Adherance>-6</Adherance>\n\t\t\t\t<Adhchange>I</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>30.69</Speed>\n\t\t\t\t<Heading>27</Heading>\n\t\t\t\t<Routeid>15944</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>29</Route>\n\t\t\t\t<Direction>E</Direction>\n\t\t\t\t<Updatetime>01:53
207
+ PM</Updatetime>\n\t\t\t\t<Vehicleid>8034</Vehicleid>\n\t\t\t\t<Block>2072</Block>\n\t\t\t\t<Adherance>4</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>11.30</Speed>\n\t\t\t\t<Heading>
208
+ 9</Heading>\n\t\t\t\t<Routeid>15931</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>29</Route>\n\t\t\t\t<Direction>W</Direction>\n\t\t\t\t<Updatetime>01:54
209
+ PM</Updatetime>\n\t\t\t\t<Vehicleid>5038</Vehicleid>\n\t\t\t\t<Block>2074</Block>\n\t\t\t\t<Adherance>2</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>3.28</Speed>\n\t\t\t\t<Heading>27</Heading>\n\t\t\t\t<Routeid>15944</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>29</Route>\n\t\t\t\t<Direction>W</Direction>\n\t\t\t\t<Updatetime>01:54
210
+ PM</Updatetime>\n\t\t\t\t<Vehicleid>5054</Vehicleid>\n\t\t\t\t<Block>2075</Block>\n\t\t\t\t<Adherance>0</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>13.26</Speed>\n\t\t\t\t<Heading>27</Heading>\n\t\t\t\t<Routeid>15944</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>29</Route>\n\t\t\t\t<Direction>E</Direction>\n\t\t\t\t<Updatetime>01:53
211
+ PM</Updatetime>\n\t\t\t\t<Vehicleid>6568</Vehicleid>\n\t\t\t\t<Block>2077</Block>\n\t\t\t\t<Adherance>0</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>22.38</Speed>\n\t\t\t\t<Heading>23</Heading>\n\t\t\t\t<Routeid>15931</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>44</Route>\n\t\t\t\t<Direction>N</Direction>\n\t\t\t\t<Updatetime>01:53
212
+ PM</Updatetime>\n\t\t\t\t<Vehicleid>6366</Vehicleid>\n\t\t\t\t<Block>208</Block>\n\t\t\t\t<Adherance>-4</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>2.85</Speed>\n\t\t\t\t<Heading>36</Heading>\n\t\t\t\t<Routeid>16035</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>29</Route>\n\t\t\t\t<Direction>E</Direction>\n\t\t\t\t<Updatetime>01:54
213
+ PM</Updatetime>\n\t\t\t\t<Vehicleid>6529</Vehicleid>\n\t\t\t\t<Block>2080</Block>\n\t\t\t\t<Adherance>1</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>19.25</Speed>\n\t\t\t\t<Heading>
214
+ 9</Heading>\n\t\t\t\t<Routeid>15933</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>41</Route>\n\t\t\t\t<Direction>W</Direction>\n\t\t\t\t<Updatetime>01:54
215
+ PM</Updatetime>\n\t\t\t\t<Vehicleid>5021</Vehicleid>\n\t\t\t\t<Block>2081</Block>\n\t\t\t\t<Adherance>-8</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>16.60</Speed>\n\t\t\t\t<Heading>27</Heading>\n\t\t\t\t<Routeid>16020</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>41</Route>\n\t\t\t\t<Direction>W</Direction>\n\t\t\t\t<Updatetime>01:53
216
+ PM</Updatetime>\n\t\t\t\t<Vehicleid>8026</Vehicleid>\n\t\t\t\t<Block>2082</Block>\n\t\t\t\t<Adherance>4</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>5.42</Speed>\n\t\t\t\t<Heading>27</Heading>\n\t\t\t\t<Routeid>16022</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route></Route>\n\t\t\t\t<Direction>
217
+ </Direction>\n\t\t\t\t<Updatetime>01:52 PM</Updatetime>\n\t\t\t\t<Vehicleid>6530</Vehicleid>\n\t\t\t\t<Block>2083</Block>\n\t\t\t\t<Adherance>0</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>N</Inservice>\n\t\t\t\t<Speed>1.74</Speed>\n\t\t\t\t<Heading>
218
+ 0</Heading>\n\t\t\t\t<Routeid>0</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>41</Route>\n\t\t\t\t<Direction>E</Direction>\n\t\t\t\t<Updatetime>01:54
219
+ PM</Updatetime>\n\t\t\t\t<Vehicleid>8028</Vehicleid>\n\t\t\t\t<Block>2084</Block>\n\t\t\t\t<Adherance>2</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>21.36</Speed>\n\t\t\t\t<Heading>18</Heading>\n\t\t\t\t<Routeid>16009</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>41</Route>\n\t\t\t\t<Direction>W</Direction>\n\t\t\t\t<Updatetime>01:53
220
+ PM</Updatetime>\n\t\t\t\t<Vehicleid>5012</Vehicleid>\n\t\t\t\t<Block>2085</Block>\n\t\t\t\t<Adherance>0</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>Y</Stopped>\n\t\t\t\t<Inservice>L</Inservice>\n\t\t\t\t<Speed>0.00</Speed>\n\t\t\t\t<Heading>
221
+ 0</Heading>\n\t\t\t\t<Routeid>16023</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>41</Route>\n\t\t\t\t<Direction>E</Direction>\n\t\t\t\t<Updatetime>01:54
222
+ PM</Updatetime>\n\t\t\t\t<Vehicleid>6564</Vehicleid>\n\t\t\t\t<Block>2086</Block>\n\t\t\t\t<Adherance>2</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>15.92</Speed>\n\t\t\t\t<Heading>
223
+ 9</Heading>\n\t\t\t\t<Routeid>16007</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>41</Route>\n\t\t\t\t<Direction>E</Direction>\n\t\t\t\t<Updatetime>01:53
224
+ PM</Updatetime>\n\t\t\t\t<Vehicleid>8040</Vehicleid>\n\t\t\t\t<Block>2087</Block>\n\t\t\t\t<Adherance>11</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>7.61</Speed>\n\t\t\t\t<Heading>
225
+ 0</Heading>\n\t\t\t\t<Routeid>16008</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>41</Route>\n\t\t\t\t<Direction>E</Direction>\n\t\t\t\t<Updatetime>01:54
226
+ PM</Updatetime>\n\t\t\t\t<Vehicleid>5020</Vehicleid>\n\t\t\t\t<Block>2088</Block>\n\t\t\t\t<Adherance>3</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>7.65</Speed>\n\t\t\t\t<Heading>
227
+ 9</Heading>\n\t\t\t\t<Routeid>16007</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>41</Route>\n\t\t\t\t<Direction>E</Direction>\n\t\t\t\t<Updatetime>01:53
228
+ PM</Updatetime>\n\t\t\t\t<Vehicleid>5042</Vehicleid>\n\t\t\t\t<Block>2089</Block>\n\t\t\t\t<Adherance>3</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>19.53</Speed>\n\t\t\t\t<Heading>
229
+ 9</Heading>\n\t\t\t\t<Routeid>16009</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>44</Route>\n\t\t\t\t<Direction>N</Direction>\n\t\t\t\t<Updatetime>01:53
230
+ PM</Updatetime>\n\t\t\t\t<Vehicleid>6338</Vehicleid>\n\t\t\t\t<Block>209</Block>\n\t\t\t\t<Adherance>-2</Adherance>\n\t\t\t\t<Adhchange>I</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>14.43</Speed>\n\t\t\t\t<Heading>36</Heading>\n\t\t\t\t<Routeid>16035</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>41</Route>\n\t\t\t\t<Direction>W</Direction>\n\t\t\t\t<Updatetime>01:53
231
+ PM</Updatetime>\n\t\t\t\t<Vehicleid>5046</Vehicleid>\n\t\t\t\t<Block>2091</Block>\n\t\t\t\t<Adherance>1</Adherance>\n\t\t\t\t<Adhchange>D</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>2.99</Speed>\n\t\t\t\t<Heading>27</Heading>\n\t\t\t\t<Routeid>16020</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>41</Route>\n\t\t\t\t<Direction>W</Direction>\n\t\t\t\t<Updatetime>01:54
232
+ PM</Updatetime>\n\t\t\t\t<Vehicleid>5039</Vehicleid>\n\t\t\t\t<Block>2092</Block>\n\t\t\t\t<Adherance>3</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>21.03</Speed>\n\t\t\t\t<Heading>27</Heading>\n\t\t\t\t<Routeid>16020</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>41</Route>\n\t\t\t\t<Direction>E</Direction>\n\t\t\t\t<Updatetime>01:54
233
+ PM</Updatetime>\n\t\t\t\t<Vehicleid>5037</Vehicleid>\n\t\t\t\t<Block>2093</Block>\n\t\t\t\t<Adherance>6</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>0.00</Speed>\n\t\t\t\t<Heading>
234
+ 9</Heading>\n\t\t\t\t<Routeid>16007</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>41</Route>\n\t\t\t\t<Direction>E</Direction>\n\t\t\t\t<Updatetime>01:53
235
+ PM</Updatetime>\n\t\t\t\t<Vehicleid>5034</Vehicleid>\n\t\t\t\t<Block>2094</Block>\n\t\t\t\t<Adherance>4</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>12.92</Speed>\n\t\t\t\t<Heading>
236
+ 9</Heading>\n\t\t\t\t<Routeid>16008</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>41</Route>\n\t\t\t\t<Direction>W</Direction>\n\t\t\t\t<Updatetime>01:54
237
+ PM</Updatetime>\n\t\t\t\t<Vehicleid>8033</Vehicleid>\n\t\t\t\t<Block>2095</Block>\n\t\t\t\t<Adherance>-4</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>17.83</Speed>\n\t\t\t\t<Heading>27</Heading>\n\t\t\t\t<Routeid>16020</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>41</Route>\n\t\t\t\t<Direction>W</Direction>\n\t\t\t\t<Updatetime>01:51
238
+ PM</Updatetime>\n\t\t\t\t<Vehicleid>6511</Vehicleid>\n\t\t\t\t<Block>2096</Block>\n\t\t\t\t<Adherance>-7</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>21.19</Speed>\n\t\t\t\t<Heading>27</Heading>\n\t\t\t\t<Routeid>16022</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>41</Route>\n\t\t\t\t<Direction>W</Direction>\n\t\t\t\t<Updatetime>01:52
239
+ PM</Updatetime>\n\t\t\t\t<Vehicleid>8024</Vehicleid>\n\t\t\t\t<Block>2097</Block>\n\t\t\t\t<Adherance>0</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>N</Reliable>\n\t\t\t\t<Offroute>Y</Offroute>\n\t\t\t\t<Stopped>Y</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>0.00</Speed>\n\t\t\t\t<Heading>27</Heading>\n\t\t\t\t<Routeid>16023</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>43</Route>\n\t\t\t\t<Direction>N</Direction>\n\t\t\t\t<Updatetime>01:49
240
+ PM</Updatetime>\n\t\t\t\t<Vehicleid>6503</Vehicleid>\n\t\t\t\t<Block>2098</Block>\n\t\t\t\t<Adherance>0</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>L</Inservice>\n\t\t\t\t<Speed>0.00</Speed>\n\t\t\t\t<Heading>
241
+ 0</Heading>\n\t\t\t\t<Routeid>16027</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>43</Route>\n\t\t\t\t<Direction>S</Direction>\n\t\t\t\t<Updatetime>01:54
242
+ PM</Updatetime>\n\t\t\t\t<Vehicleid>6521</Vehicleid>\n\t\t\t\t<Block>2100</Block>\n\t\t\t\t<Adherance>4</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>14.27</Speed>\n\t\t\t\t<Heading>18</Heading>\n\t\t\t\t<Routeid>16031</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>43</Route>\n\t\t\t\t<Direction>N</Direction>\n\t\t\t\t<Updatetime>01:53
243
+ PM</Updatetime>\n\t\t\t\t<Vehicleid>5018</Vehicleid>\n\t\t\t\t<Block>2101</Block>\n\t\t\t\t<Adherance>5</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>14.84</Speed>\n\t\t\t\t<Heading>36</Heading>\n\t\t\t\t<Routeid>16027</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>43</Route>\n\t\t\t\t<Direction>N</Direction>\n\t\t\t\t<Updatetime>01:54
244
+ PM</Updatetime>\n\t\t\t\t<Vehicleid>5052</Vehicleid>\n\t\t\t\t<Block>2102</Block>\n\t\t\t\t<Adherance>3</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>Y</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>0.34</Speed>\n\t\t\t\t<Heading>
245
+ 0</Heading>\n\t\t\t\t<Routeid>16027</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>51</Route>\n\t\t\t\t<Direction>S</Direction>\n\t\t\t\t<Updatetime>01:53
246
+ PM</Updatetime>\n\t\t\t\t<Vehicleid>6512</Vehicleid>\n\t\t\t\t<Block>2103</Block>\n\t\t\t\t<Adherance>-3</Adherance>\n\t\t\t\t<Adhchange>D</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>6.65</Speed>\n\t\t\t\t<Heading>
247
+ 1</Heading>\n\t\t\t\t<Routeid>16122</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>51</Route>\n\t\t\t\t<Direction>N</Direction>\n\t\t\t\t<Updatetime>01:53
248
+ PM</Updatetime>\n\t\t\t\t<Vehicleid>5060</Vehicleid>\n\t\t\t\t<Block>2104</Block>\n\t\t\t\t<Adherance>2</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>5.75</Speed>\n\t\t\t\t<Heading>36</Heading>\n\t\t\t\t<Routeid>16118</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>51</Route>\n\t\t\t\t<Direction>S</Direction>\n\t\t\t\t<Updatetime>01:53
249
+ PM</Updatetime>\n\t\t\t\t<Vehicleid>5027</Vehicleid>\n\t\t\t\t<Block>2105</Block>\n\t\t\t\t<Adherance>3</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>12.65</Speed>\n\t\t\t\t<Heading>18</Heading>\n\t\t\t\t<Routeid>16122</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>51</Route>\n\t\t\t\t<Direction>N</Direction>\n\t\t\t\t<Updatetime>01:53
250
+ PM</Updatetime>\n\t\t\t\t<Vehicleid>6528</Vehicleid>\n\t\t\t\t<Block>2106</Block>\n\t\t\t\t<Adherance>-1</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>19.31</Speed>\n\t\t\t\t<Heading>36</Heading>\n\t\t\t\t<Routeid>16118</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>59</Route>\n\t\t\t\t<Direction>S</Direction>\n\t\t\t\t<Updatetime>01:53
251
+ PM</Updatetime>\n\t\t\t\t<Vehicleid>5033</Vehicleid>\n\t\t\t\t<Block>2107</Block>\n\t\t\t\t<Adherance>0</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>5.17</Speed>\n\t\t\t\t<Heading>18</Heading>\n\t\t\t\t<Routeid>16182</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>59</Route>\n\t\t\t\t<Direction>N</Direction>\n\t\t\t\t<Updatetime>01:53
252
+ PM</Updatetime>\n\t\t\t\t<Vehicleid>5029</Vehicleid>\n\t\t\t\t<Block>2108</Block>\n\t\t\t\t<Adherance>0</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>5.82</Speed>\n\t\t\t\t<Heading>35</Heading>\n\t\t\t\t<Routeid>16176</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>59</Route>\n\t\t\t\t<Direction>N</Direction>\n\t\t\t\t<Updatetime>01:54
253
+ PM</Updatetime>\n\t\t\t\t<Vehicleid>6532</Vehicleid>\n\t\t\t\t<Block>2109</Block>\n\t\t\t\t<Adherance>4</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>13.62</Speed>\n\t\t\t\t<Heading>36</Heading>\n\t\t\t\t<Routeid>16176</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>59</Route>\n\t\t\t\t<Direction>S</Direction>\n\t\t\t\t<Updatetime>01:53
254
+ PM</Updatetime>\n\t\t\t\t<Vehicleid>6519</Vehicleid>\n\t\t\t\t<Block>2110</Block>\n\t\t\t\t<Adherance>3</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>12.02</Speed>\n\t\t\t\t<Heading>18</Heading>\n\t\t\t\t<Routeid>16182</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>59</Route>\n\t\t\t\t<Direction>S</Direction>\n\t\t\t\t<Updatetime>01:53
255
+ PM</Updatetime>\n\t\t\t\t<Vehicleid>6502</Vehicleid>\n\t\t\t\t<Block>2112</Block>\n\t\t\t\t<Adherance>3</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>13.17</Speed>\n\t\t\t\t<Heading>18</Heading>\n\t\t\t\t<Routeid>16182</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>67</Route>\n\t\t\t\t<Direction>N</Direction>\n\t\t\t\t<Updatetime>01:51
256
+ PM</Updatetime>\n\t\t\t\t<Vehicleid>5028</Vehicleid>\n\t\t\t\t<Block>2115</Block>\n\t\t\t\t<Adherance>2</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>11.90</Speed>\n\t\t\t\t<Heading>36</Heading>\n\t\t\t\t<Routeid>16263</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>67</Route>\n\t\t\t\t<Direction>S</Direction>\n\t\t\t\t<Updatetime>01:53
257
+ PM</Updatetime>\n\t\t\t\t<Vehicleid>5051</Vehicleid>\n\t\t\t\t<Block>2116</Block>\n\t\t\t\t<Adherance>3</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>10.50</Speed>\n\t\t\t\t<Heading>18</Heading>\n\t\t\t\t<Routeid>16270</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>67</Route>\n\t\t\t\t<Direction>N</Direction>\n\t\t\t\t<Updatetime>01:54
258
+ PM</Updatetime>\n\t\t\t\t<Vehicleid>5050</Vehicleid>\n\t\t\t\t<Block>2117</Block>\n\t\t\t\t<Adherance>0</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>22.25</Speed>\n\t\t\t\t<Heading>36</Heading>\n\t\t\t\t<Routeid>16263</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>67</Route>\n\t\t\t\t<Direction>S</Direction>\n\t\t\t\t<Updatetime>01:53
259
+ PM</Updatetime>\n\t\t\t\t<Vehicleid>6514</Vehicleid>\n\t\t\t\t<Block>2118</Block>\n\t\t\t\t<Adherance>-2</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>14.35</Speed>\n\t\t\t\t<Heading>14</Heading>\n\t\t\t\t<Routeid>16270</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>67</Route>\n\t\t\t\t<Direction>S</Direction>\n\t\t\t\t<Updatetime>01:53
260
+ PM</Updatetime>\n\t\t\t\t<Vehicleid>6563</Vehicleid>\n\t\t\t\t<Block>2119</Block>\n\t\t\t\t<Adherance>0</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>23.60</Speed>\n\t\t\t\t<Heading>18</Heading>\n\t\t\t\t<Routeid>16270</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>16</Route>\n\t\t\t\t<Direction>S</Direction>\n\t\t\t\t<Updatetime>01:51
261
+ PM</Updatetime>\n\t\t\t\t<Vehicleid>6307</Vehicleid>\n\t\t\t\t<Block>212</Block>\n\t\t\t\t<Adherance>-1</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>19.80</Speed>\n\t\t\t\t<Heading>18</Heading>\n\t\t\t\t<Routeid>15854</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>67</Route>\n\t\t\t\t<Direction>N</Direction>\n\t\t\t\t<Updatetime>01:54
262
+ PM</Updatetime>\n\t\t\t\t<Vehicleid>6562</Vehicleid>\n\t\t\t\t<Block>2120</Block>\n\t\t\t\t<Adherance>3</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>20.42</Speed>\n\t\t\t\t<Heading>36</Heading>\n\t\t\t\t<Routeid>16263</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>MARY</Route>\n\t\t\t\t<Direction>K</Direction>\n\t\t\t\t<Updatetime>01:54
263
+ PM</Updatetime>\n\t\t\t\t<Vehicleid>3765</Vehicleid>\n\t\t\t\t<Block>2126</Block>\n\t\t\t\t<Adherance>3</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>7.12</Speed>\n\t\t\t\t<Heading>
264
+ 9</Heading>\n\t\t\t\t<Routeid>16820</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>MARY</Route>\n\t\t\t\t<Direction>K</Direction>\n\t\t\t\t<Updatetime>01:53
265
+ PM</Updatetime>\n\t\t\t\t<Vehicleid>3002</Vehicleid>\n\t\t\t\t<Block>2128</Block>\n\t\t\t\t<Adherance>5</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>8.86</Speed>\n\t\t\t\t<Heading>24</Heading>\n\t\t\t\t<Routeid>16820</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>52</Route>\n\t\t\t\t<Direction>E</Direction>\n\t\t\t\t<Updatetime>01:53
266
+ PM</Updatetime>\n\t\t\t\t<Vehicleid>6363</Vehicleid>\n\t\t\t\t<Block>213</Block>\n\t\t\t\t<Adherance>5</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>Y</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>0.05</Speed>\n\t\t\t\t<Heading>
267
+ 4</Heading>\n\t\t\t\t<Routeid>16127</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>METS</Route>\n\t\t\t\t<Direction>N</Direction>\n\t\t\t\t<Updatetime>01:53
268
+ PM</Updatetime>\n\t\t\t\t<Vehicleid>6506</Vehicleid>\n\t\t\t\t<Block>2133</Block>\n\t\t\t\t<Adherance>-3</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>8.41</Speed>\n\t\t\t\t<Heading>36</Heading>\n\t\t\t\t<Routeid>16832</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>METS</Route>\n\t\t\t\t<Direction>N</Direction>\n\t\t\t\t<Updatetime>01:51
269
+ PM</Updatetime>\n\t\t\t\t<Vehicleid>6515</Vehicleid>\n\t\t\t\t<Block>2134</Block>\n\t\t\t\t<Adherance>-1</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>17.25</Speed>\n\t\t\t\t<Heading>36</Heading>\n\t\t\t\t<Routeid>16832</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>METS</Route>\n\t\t\t\t<Direction>S</Direction>\n\t\t\t\t<Updatetime>01:54
270
+ PM</Updatetime>\n\t\t\t\t<Vehicleid>6508</Vehicleid>\n\t\t\t\t<Block>2135</Block>\n\t\t\t\t<Adherance>1</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>14.92</Speed>\n\t\t\t\t<Heading>18</Heading>\n\t\t\t\t<Routeid>16836</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>52</Route>\n\t\t\t\t<Direction>W</Direction>\n\t\t\t\t<Updatetime>01:53
271
+ PM</Updatetime>\n\t\t\t\t<Vehicleid>6369</Vehicleid>\n\t\t\t\t<Block>214</Block>\n\t\t\t\t<Adherance>0</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>15.80</Speed>\n\t\t\t\t<Heading>27</Heading>\n\t\t\t\t<Routeid>16132</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>16</Route>\n\t\t\t\t<Direction>N</Direction>\n\t\t\t\t<Updatetime>01:54
272
+ PM</Updatetime>\n\t\t\t\t<Vehicleid>6284</Vehicleid>\n\t\t\t\t<Block>216</Block>\n\t\t\t\t<Adherance>0</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>13.45</Speed>\n\t\t\t\t<Heading>36</Heading>\n\t\t\t\t<Routeid>15842</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>10</Route>\n\t\t\t\t<Direction>E</Direction>\n\t\t\t\t<Updatetime>01:54
273
+ PM</Updatetime>\n\t\t\t\t<Vehicleid>6355</Vehicleid>\n\t\t\t\t<Block>22</Block>\n\t\t\t\t<Adherance>1</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>13.77</Speed>\n\t\t\t\t<Heading>
274
+ 9</Heading>\n\t\t\t\t<Routeid>15799</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>10</Route>\n\t\t\t\t<Direction>W</Direction>\n\t\t\t\t<Updatetime>01:53
275
+ PM</Updatetime>\n\t\t\t\t<Vehicleid>6364</Vehicleid>\n\t\t\t\t<Block>23</Block>\n\t\t\t\t<Adherance>0</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>14.26</Speed>\n\t\t\t\t<Heading>18</Heading>\n\t\t\t\t<Routeid>15807</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>10</Route>\n\t\t\t\t<Direction>E</Direction>\n\t\t\t\t<Updatetime>01:54
276
+ PM</Updatetime>\n\t\t\t\t<Vehicleid>6593</Vehicleid>\n\t\t\t\t<Block>25</Block>\n\t\t\t\t<Adherance>-2</Adherance>\n\t\t\t\t<Adhchange>N</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>0.00</Speed>\n\t\t\t\t<Heading>
277
+ 0</Heading>\n\t\t\t\t<Routeid>15799</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>10</Route>\n\t\t\t\t<Direction>W</Direction>\n\t\t\t\t<Updatetime>01:54
278
+ PM</Updatetime>\n\t\t\t\t<Vehicleid>6328</Vehicleid>\n\t\t\t\t<Block>26</Block>\n\t\t\t\t<Adherance>-6</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>39.53</Speed>\n\t\t\t\t<Heading>27</Heading>\n\t\t\t\t<Routeid>15807</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>12</Route>\n\t\t\t\t<Direction>S</Direction>\n\t\t\t\t<Updatetime>01:54
279
+ PM</Updatetime>\n\t\t\t\t<Vehicleid>8016</Vehicleid>\n\t\t\t\t<Block>27</Block>\n\t\t\t\t<Adherance>0</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>13.33</Speed>\n\t\t\t\t<Heading>20</Heading>\n\t\t\t\t<Routeid>15817</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>7</Route>\n\t\t\t\t<Direction>S</Direction>\n\t\t\t\t<Updatetime>01:53
280
+ PM</Updatetime>\n\t\t\t\t<Vehicleid>6558</Vehicleid>\n\t\t\t\t<Block>3</Block>\n\t\t\t\t<Adherance>-1</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>20.30</Speed>\n\t\t\t\t<Heading>18</Heading>\n\t\t\t\t<Routeid>15785</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>15</Route>\n\t\t\t\t<Direction>S</Direction>\n\t\t\t\t<Updatetime>01:53
281
+ PM</Updatetime>\n\t\t\t\t<Vehicleid>6022</Vehicleid>\n\t\t\t\t<Block>31</Block>\n\t\t\t\t<Adherance>2</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>18.85</Speed>\n\t\t\t\t<Heading>18</Heading>\n\t\t\t\t<Routeid>15833</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>15</Route>\n\t\t\t\t<Direction>N</Direction>\n\t\t\t\t<Updatetime>01:54
282
+ PM</Updatetime>\n\t\t\t\t<Vehicleid>6025</Vehicleid>\n\t\t\t\t<Block>32</Block>\n\t\t\t\t<Adherance>-3</Adherance>\n\t\t\t\t<Adhchange>N</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>Y</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>0.00</Speed>\n\t\t\t\t<Heading>
283
+ 0</Heading>\n\t\t\t\t<Routeid>15829</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>15</Route>\n\t\t\t\t<Direction>N</Direction>\n\t\t\t\t<Updatetime>01:52
284
+ PM</Updatetime>\n\t\t\t\t<Vehicleid>6030</Vehicleid>\n\t\t\t\t<Block>33</Block>\n\t\t\t\t<Adherance>1</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>8.14</Speed>\n\t\t\t\t<Heading>36</Heading>\n\t\t\t\t<Routeid>15829</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>16</Route>\n\t\t\t\t<Direction>S</Direction>\n\t\t\t\t<Updatetime>01:54
285
+ PM</Updatetime>\n\t\t\t\t<Vehicleid>6556</Vehicleid>\n\t\t\t\t<Block>34</Block>\n\t\t\t\t<Adherance>0</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>21.76</Speed>\n\t\t\t\t<Heading>18</Heading>\n\t\t\t\t<Routeid>15854</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>16</Route>\n\t\t\t\t<Direction>S</Direction>\n\t\t\t\t<Updatetime>01:52
286
+ PM</Updatetime>\n\t\t\t\t<Vehicleid>6557</Vehicleid>\n\t\t\t\t<Block>35</Block>\n\t\t\t\t<Adherance>0</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>Y</Stopped>\n\t\t\t\t<Inservice>L</Inservice>\n\t\t\t\t<Speed>0.00</Speed>\n\t\t\t\t<Heading>
287
+ 0</Heading>\n\t\t\t\t<Routeid>15854</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>16</Route>\n\t\t\t\t<Direction>S</Direction>\n\t\t\t\t<Updatetime>01:53
288
+ PM</Updatetime>\n\t\t\t\t<Vehicleid>6596</Vehicleid>\n\t\t\t\t<Block>36</Block>\n\t\t\t\t<Adherance>0</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>16.78</Speed>\n\t\t\t\t<Heading>18</Heading>\n\t\t\t\t<Routeid>15854</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>16</Route>\n\t\t\t\t<Direction>N</Direction>\n\t\t\t\t<Updatetime>01:53
289
+ PM</Updatetime>\n\t\t\t\t<Vehicleid>6348</Vehicleid>\n\t\t\t\t<Block>37</Block>\n\t\t\t\t<Adherance>-9</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>33.76</Speed>\n\t\t\t\t<Heading>
290
+ 0</Heading>\n\t\t\t\t<Routeid>15842</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>7</Route>\n\t\t\t\t<Direction>S</Direction>\n\t\t\t\t<Updatetime>01:52
291
+ PM</Updatetime>\n\t\t\t\t<Vehicleid>6559</Vehicleid>\n\t\t\t\t<Block>4</Block>\n\t\t\t\t<Adherance>2</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>10.25</Speed>\n\t\t\t\t<Heading>18</Heading>\n\t\t\t\t<Routeid>15785</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>MTCC</Route>\n\t\t\t\t<Direction>L</Direction>\n\t\t\t\t<Updatetime>01:53
292
+ PM</Updatetime>\n\t\t\t\t<Vehicleid>1586</Vehicleid>\n\t\t\t\t<Block>4001</Block>\n\t\t\t\t<Adherance>5</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>Y</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>0.06</Speed>\n\t\t\t\t<Heading>18</Heading>\n\t\t\t\t<Routeid>16841</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>MTCC</Route>\n\t\t\t\t<Direction>L</Direction>\n\t\t\t\t<Updatetime>01:51
293
+ PM</Updatetime>\n\t\t\t\t<Vehicleid>1585</Vehicleid>\n\t\t\t\t<Block>4002</Block>\n\t\t\t\t<Adherance>0</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>21.60</Speed>\n\t\t\t\t<Heading>13</Heading>\n\t\t\t\t<Routeid>16841</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>FSHB</Route>\n\t\t\t\t<Direction>K</Direction>\n\t\t\t\t<Updatetime>01:54
294
+ PM</Updatetime>\n\t\t\t\t<Vehicleid>6455</Vehicleid>\n\t\t\t\t<Block>4004</Block>\n\t\t\t\t<Adherance>-3</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>N</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>10.39</Speed>\n\t\t\t\t<Heading>19</Heading>\n\t\t\t\t<Routeid>16782</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>FSHB</Route>\n\t\t\t\t<Direction>K</Direction>\n\t\t\t\t<Updatetime>01:53
295
+ PM</Updatetime>\n\t\t\t\t<Vehicleid>6631</Vehicleid>\n\t\t\t\t<Block>4005</Block>\n\t\t\t\t<Adherance>-1</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>8.76</Speed>\n\t\t\t\t<Heading>
296
+ 5</Heading>\n\t\t\t\t<Routeid>16782</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>FSHB</Route>\n\t\t\t\t<Direction>K</Direction>\n\t\t\t\t<Updatetime>01:54
297
+ PM</Updatetime>\n\t\t\t\t<Vehicleid>6648</Vehicleid>\n\t\t\t\t<Block>4006</Block>\n\t\t\t\t<Adherance>0</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>N</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>4.77</Speed>\n\t\t\t\t<Heading>10</Heading>\n\t\t\t\t<Routeid>16782</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>FSHF</Route>\n\t\t\t\t<Direction>C</Direction>\n\t\t\t\t<Updatetime>01:54
298
+ PM</Updatetime>\n\t\t\t\t<Vehicleid>6454</Vehicleid>\n\t\t\t\t<Block>4007</Block>\n\t\t\t\t<Adherance>2</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>10.28</Speed>\n\t\t\t\t<Heading>25</Heading>\n\t\t\t\t<Routeid>16784</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route></Route>\n\t\t\t\t<Direction>
299
+ </Direction>\n\t\t\t\t<Updatetime>01:52 PM</Updatetime>\n\t\t\t\t<Vehicleid>6634</Vehicleid>\n\t\t\t\t<Block>4008</Block>\n\t\t\t\t<Adherance>0</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>Y</Stopped>\n\t\t\t\t<Inservice>N</Inservice>\n\t\t\t\t<Speed>0.00</Speed>\n\t\t\t\t<Heading>
300
+ 0</Heading>\n\t\t\t\t<Routeid>0</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>FSHF</Route>\n\t\t\t\t<Direction>C</Direction>\n\t\t\t\t<Updatetime>01:54
301
+ PM</Updatetime>\n\t\t\t\t<Vehicleid>6635</Vehicleid>\n\t\t\t\t<Block>4009</Block>\n\t\t\t\t<Adherance>-9</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>N</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>8.33</Speed>\n\t\t\t\t<Heading>27</Heading>\n\t\t\t\t<Routeid>16784</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>7</Route>\n\t\t\t\t<Direction>N</Direction>\n\t\t\t\t<Updatetime>01:52
302
+ PM</Updatetime>\n\t\t\t\t<Vehicleid>5102</Vehicleid>\n\t\t\t\t<Block>402</Block>\n\t\t\t\t<Adherance>1</Adherance>\n\t\t\t\t<Adhchange>D</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>2.10</Speed>\n\t\t\t\t<Heading>36</Heading>\n\t\t\t\t<Routeid>15781</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>7</Route>\n\t\t\t\t<Direction>N</Direction>\n\t\t\t\t<Updatetime>01:53
303
+ PM</Updatetime>\n\t\t\t\t<Vehicleid>6243</Vehicleid>\n\t\t\t\t<Block>403</Block>\n\t\t\t\t<Adherance>-8</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>7.53</Speed>\n\t\t\t\t<Heading>36</Heading>\n\t\t\t\t<Routeid>15781</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>7</Route>\n\t\t\t\t<Direction>N</Direction>\n\t\t\t\t<Updatetime>01:53
304
+ PM</Updatetime>\n\t\t\t\t<Vehicleid>6586</Vehicleid>\n\t\t\t\t<Block>404</Block>\n\t\t\t\t<Adherance>3</Adherance>\n\t\t\t\t<Adhchange>I</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>18.35</Speed>\n\t\t\t\t<Heading>36</Heading>\n\t\t\t\t<Routeid>15781</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>7</Route>\n\t\t\t\t<Direction>S</Direction>\n\t\t\t\t<Updatetime>01:50
305
+ PM</Updatetime>\n\t\t\t\t<Vehicleid>6227</Vehicleid>\n\t\t\t\t<Block>405</Block>\n\t\t\t\t<Adherance>0</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>0.00</Speed>\n\t\t\t\t<Heading>
306
+ 0</Heading>\n\t\t\t\t<Routeid>15785</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>30</Route>\n\t\t\t\t<Direction>W</Direction>\n\t\t\t\t<Updatetime>01:54
307
+ PM</Updatetime>\n\t\t\t\t<Vehicleid>6669</Vehicleid>\n\t\t\t\t<Block>4063</Block>\n\t\t\t\t<Adherance>-4</Adherance>\n\t\t\t\t<Adhchange>I</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>18.32</Speed>\n\t\t\t\t<Heading>27</Heading>\n\t\t\t\t<Routeid>15966</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>30</Route>\n\t\t\t\t<Direction>E</Direction>\n\t\t\t\t<Updatetime>01:53
308
+ PM</Updatetime>\n\t\t\t\t<Vehicleid>6680</Vehicleid>\n\t\t\t\t<Block>4065</Block>\n\t\t\t\t<Adherance>-1</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>13.67</Speed>\n\t\t\t\t<Heading>
309
+ 9</Heading>\n\t\t\t\t<Routeid>15954</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>30</Route>\n\t\t\t\t<Direction>W</Direction>\n\t\t\t\t<Updatetime>01:54
310
+ PM</Updatetime>\n\t\t\t\t<Vehicleid>6744</Vehicleid>\n\t\t\t\t<Block>4066</Block>\n\t\t\t\t<Adherance>2</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>18.78</Speed>\n\t\t\t\t<Heading>36</Heading>\n\t\t\t\t<Routeid>15966</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>45</Route>\n\t\t\t\t<Direction>W</Direction>\n\t\t\t\t<Updatetime>01:51
311
+ PM</Updatetime>\n\t\t\t\t<Vehicleid>6639</Vehicleid>\n\t\t\t\t<Block>4068</Block>\n\t\t\t\t<Adherance>-4</Adherance>\n\t\t\t\t<Adhchange>I</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>8.56</Speed>\n\t\t\t\t<Heading>27</Heading>\n\t\t\t\t<Routeid>16069</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>45</Route>\n\t\t\t\t<Direction>W</Direction>\n\t\t\t\t<Updatetime>01:54
312
+ PM</Updatetime>\n\t\t\t\t<Vehicleid>6630</Vehicleid>\n\t\t\t\t<Block>4069</Block>\n\t\t\t\t<Adherance>2</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>2.67</Speed>\n\t\t\t\t<Heading>27</Heading>\n\t\t\t\t<Routeid>16069</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>12</Route>\n\t\t\t\t<Direction>N</Direction>\n\t\t\t\t<Updatetime>01:53
313
+ PM</Updatetime>\n\t\t\t\t<Vehicleid>6245</Vehicleid>\n\t\t\t\t<Block>407</Block>\n\t\t\t\t<Adherance>0</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>24.10</Speed>\n\t\t\t\t<Heading>36</Heading>\n\t\t\t\t<Routeid>15813</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>45</Route>\n\t\t\t\t<Direction>W</Direction>\n\t\t\t\t<Updatetime>01:53
314
+ PM</Updatetime>\n\t\t\t\t<Vehicleid>6608</Vehicleid>\n\t\t\t\t<Block>4070</Block>\n\t\t\t\t<Adherance>4</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>13.20</Speed>\n\t\t\t\t<Heading>27</Heading>\n\t\t\t\t<Routeid>16069</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>45</Route>\n\t\t\t\t<Direction>E</Direction>\n\t\t\t\t<Updatetime>01:54
315
+ PM</Updatetime>\n\t\t\t\t<Vehicleid>6620</Vehicleid>\n\t\t\t\t<Block>4071</Block>\n\t\t\t\t<Adherance>0</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>6.68</Speed>\n\t\t\t\t<Heading>
316
+ 9</Heading>\n\t\t\t\t<Routeid>16050</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>45</Route>\n\t\t\t\t<Direction>E</Direction>\n\t\t\t\t<Updatetime>01:54
317
+ PM</Updatetime>\n\t\t\t\t<Vehicleid>6457</Vehicleid>\n\t\t\t\t<Block>4073</Block>\n\t\t\t\t<Adherance>-1</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>8.89</Speed>\n\t\t\t\t<Heading>18</Heading>\n\t\t\t\t<Routeid>16050</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>45</Route>\n\t\t\t\t<Direction>E</Direction>\n\t\t\t\t<Updatetime>01:52
318
+ PM</Updatetime>\n\t\t\t\t<Vehicleid>6612</Vehicleid>\n\t\t\t\t<Block>4074</Block>\n\t\t\t\t<Adherance>-4</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>8.09</Speed>\n\t\t\t\t<Heading>
319
+ 9</Heading>\n\t\t\t\t<Routeid>16050</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>45</Route>\n\t\t\t\t<Direction>W</Direction>\n\t\t\t\t<Updatetime>01:49
320
+ PM</Updatetime>\n\t\t\t\t<Vehicleid>6644</Vehicleid>\n\t\t\t\t<Block>4075</Block>\n\t\t\t\t<Adherance>0</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>Y</Stopped>\n\t\t\t\t<Inservice>L</Inservice>\n\t\t\t\t<Speed>0.00</Speed>\n\t\t\t\t<Heading>
321
+ 0</Heading>\n\t\t\t\t<Routeid>16069</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>45</Route>\n\t\t\t\t<Direction>W</Direction>\n\t\t\t\t<Updatetime>01:53
322
+ PM</Updatetime>\n\t\t\t\t<Vehicleid>6646</Vehicleid>\n\t\t\t\t<Block>4077</Block>\n\t\t\t\t<Adherance>5</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>24.47</Speed>\n\t\t\t\t<Heading>27</Heading>\n\t\t\t\t<Routeid>16069</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>45</Route>\n\t\t\t\t<Direction>E</Direction>\n\t\t\t\t<Updatetime>01:51
323
+ PM</Updatetime>\n\t\t\t\t<Vehicleid>6650</Vehicleid>\n\t\t\t\t<Block>4079</Block>\n\t\t\t\t<Adherance>-1</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>17.52</Speed>\n\t\t\t\t<Heading>
324
+ 9</Heading>\n\t\t\t\t<Routeid>16050</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>12</Route>\n\t\t\t\t<Direction>S</Direction>\n\t\t\t\t<Updatetime>01:53
325
+ PM</Updatetime>\n\t\t\t\t<Vehicleid>6239</Vehicleid>\n\t\t\t\t<Block>408</Block>\n\t\t\t\t<Adherance>-2</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>17.02</Speed>\n\t\t\t\t<Heading>
326
+ 9</Heading>\n\t\t\t\t<Routeid>15817</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>61</Route>\n\t\t\t\t<Direction>W</Direction>\n\t\t\t\t<Updatetime>01:53
327
+ PM</Updatetime>\n\t\t\t\t<Vehicleid>6611</Vehicleid>\n\t\t\t\t<Block>4080</Block>\n\t\t\t\t<Adherance>2</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>Y</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>0.07</Speed>\n\t\t\t\t<Heading>25</Heading>\n\t\t\t\t<Routeid>16227</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>48</Route>\n\t\t\t\t<Direction>N</Direction>\n\t\t\t\t<Updatetime>01:54
328
+ PM</Updatetime>\n\t\t\t\t<Vehicleid>6683</Vehicleid>\n\t\t\t\t<Block>4083</Block>\n\t\t\t\t<Adherance>-2</Adherance>\n\t\t\t\t<Adhchange>D</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>9.91</Speed>\n\t\t\t\t<Heading>31</Heading>\n\t\t\t\t<Routeid>16078</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>66</Route>\n\t\t\t\t<Direction>S</Direction>\n\t\t\t\t<Updatetime>01:54
329
+ PM</Updatetime>\n\t\t\t\t<Vehicleid>6743</Vehicleid>\n\t\t\t\t<Block>4084</Block>\n\t\t\t\t<Adherance>0</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>9.31</Speed>\n\t\t\t\t<Heading>18</Heading>\n\t\t\t\t<Routeid>16256</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>66</Route>\n\t\t\t\t<Direction>N</Direction>\n\t\t\t\t<Updatetime>01:54
330
+ PM</Updatetime>\n\t\t\t\t<Vehicleid>6672</Vehicleid>\n\t\t\t\t<Block>4085</Block>\n\t\t\t\t<Adherance>0</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>10.12</Speed>\n\t\t\t\t<Heading>36</Heading>\n\t\t\t\t<Routeid>16249</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>48</Route>\n\t\t\t\t<Direction>S</Direction>\n\t\t\t\t<Updatetime>01:54
331
+ PM</Updatetime>\n\t\t\t\t<Vehicleid>6706</Vehicleid>\n\t\t\t\t<Block>4086</Block>\n\t\t\t\t<Adherance>0</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>14.10</Speed>\n\t\t\t\t<Heading>18</Heading>\n\t\t\t\t<Routeid>16085</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>66</Route>\n\t\t\t\t<Direction>N</Direction>\n\t\t\t\t<Updatetime>01:53
332
+ PM</Updatetime>\n\t\t\t\t<Vehicleid>6643</Vehicleid>\n\t\t\t\t<Block>4087</Block>\n\t\t\t\t<Adherance>2</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>1.26</Speed>\n\t\t\t\t<Heading>
333
+ 9</Heading>\n\t\t\t\t<Routeid>16249</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>56</Route>\n\t\t\t\t<Direction>N</Direction>\n\t\t\t\t<Updatetime>01:53
334
+ PM</Updatetime>\n\t\t\t\t<Vehicleid>6703</Vehicleid>\n\t\t\t\t<Block>4088</Block>\n\t\t\t\t<Adherance>0</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>25.51</Speed>\n\t\t\t\t<Heading>36</Heading>\n\t\t\t\t<Routeid>16152</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>56</Route>\n\t\t\t\t<Direction>S</Direction>\n\t\t\t\t<Updatetime>01:54
335
+ PM</Updatetime>\n\t\t\t\t<Vehicleid>6616</Vehicleid>\n\t\t\t\t<Block>4089</Block>\n\t\t\t\t<Adherance>4</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>7.55</Speed>\n\t\t\t\t<Heading>
336
+ 7</Heading>\n\t\t\t\t<Routeid>16170</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>19</Route>\n\t\t\t\t<Direction>S</Direction>\n\t\t\t\t<Updatetime>01:53
337
+ PM</Updatetime>\n\t\t\t\t<Vehicleid>5087</Vehicleid>\n\t\t\t\t<Block>409</Block>\n\t\t\t\t<Adherance>0</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>14.18</Speed>\n\t\t\t\t<Heading>18</Heading>\n\t\t\t\t<Routeid>15899</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>56</Route>\n\t\t\t\t<Direction>N</Direction>\n\t\t\t\t<Updatetime>01:54
338
+ PM</Updatetime>\n\t\t\t\t<Vehicleid>6686</Vehicleid>\n\t\t\t\t<Block>4091</Block>\n\t\t\t\t<Adherance>0</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>24.73</Speed>\n\t\t\t\t<Heading>36</Heading>\n\t\t\t\t<Routeid>16152</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>56</Route>\n\t\t\t\t<Direction>S</Direction>\n\t\t\t\t<Updatetime>01:54
339
+ PM</Updatetime>\n\t\t\t\t<Vehicleid>6637</Vehicleid>\n\t\t\t\t<Block>4094</Block>\n\t\t\t\t<Adherance>0</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>9.28</Speed>\n\t\t\t\t<Heading>18</Heading>\n\t\t\t\t<Routeid>16170</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route></Route>\n\t\t\t\t<Direction>
340
+ </Direction>\n\t\t\t\t<Updatetime>01:52 PM</Updatetime>\n\t\t\t\t<Vehicleid>6736</Vehicleid>\n\t\t\t\t<Block>4095</Block>\n\t\t\t\t<Adherance>0</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>N</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>N</Inservice>\n\t\t\t\t<Speed>7.78</Speed>\n\t\t\t\t<Heading>
341
+ 0</Heading>\n\t\t\t\t<Routeid>0</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>81</Route>\n\t\t\t\t<Direction>N</Direction>\n\t\t\t\t<Updatetime>01:54
342
+ PM</Updatetime>\n\t\t\t\t<Vehicleid>6614</Vehicleid>\n\t\t\t\t<Block>4096</Block>\n\t\t\t\t<Adherance>-3</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>10.49</Speed>\n\t\t\t\t<Heading>36</Heading>\n\t\t\t\t<Routeid>16394</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>16</Route>\n\t\t\t\t<Direction>N</Direction>\n\t\t\t\t<Updatetime>01:53
343
+ PM</Updatetime>\n\t\t\t\t<Vehicleid>6333</Vehicleid>\n\t\t\t\t<Block>41</Block>\n\t\t\t\t<Adherance>0</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>31.70</Speed>\n\t\t\t\t<Heading>
344
+ 1</Heading>\n\t\t\t\t<Routeid>15842</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>19</Route>\n\t\t\t\t<Direction>S</Direction>\n\t\t\t\t<Updatetime>01:53
345
+ PM</Updatetime>\n\t\t\t\t<Vehicleid>5086</Vehicleid>\n\t\t\t\t<Block>410</Block>\n\t\t\t\t<Adherance>0</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>9.62</Speed>\n\t\t\t\t<Heading>18</Heading>\n\t\t\t\t<Routeid>15899</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>61</Route>\n\t\t\t\t<Direction>E</Direction>\n\t\t\t\t<Updatetime>01:52
346
+ PM</Updatetime>\n\t\t\t\t<Vehicleid>8074</Vehicleid>\n\t\t\t\t<Block>4101</Block>\n\t\t\t\t<Adherance>0</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>Y</Stopped>\n\t\t\t\t<Inservice>L</Inservice>\n\t\t\t\t<Speed>0.00</Speed>\n\t\t\t\t<Heading>
347
+ 0</Heading>\n\t\t\t\t<Routeid>16205</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>61</Route>\n\t\t\t\t<Direction>E</Direction>\n\t\t\t\t<Updatetime>01:53
348
+ PM</Updatetime>\n\t\t\t\t<Vehicleid>6627</Vehicleid>\n\t\t\t\t<Block>4103</Block>\n\t\t\t\t<Adherance>-1</Adherance>\n\t\t\t\t<Adhchange>I</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>7.19</Speed>\n\t\t\t\t<Heading>15</Heading>\n\t\t\t\t<Routeid>16205</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>61</Route>\n\t\t\t\t<Direction>W</Direction>\n\t\t\t\t<Updatetime>01:54
349
+ PM</Updatetime>\n\t\t\t\t<Vehicleid>6704</Vehicleid>\n\t\t\t\t<Block>4104</Block>\n\t\t\t\t<Adherance>-6</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>11.34</Speed>\n\t\t\t\t<Heading>27</Heading>\n\t\t\t\t<Routeid>16224</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>61</Route>\n\t\t\t\t<Direction>W</Direction>\n\t\t\t\t<Updatetime>01:53
350
+ PM</Updatetime>\n\t\t\t\t<Vehicleid>6628</Vehicleid>\n\t\t\t\t<Block>4106</Block>\n\t\t\t\t<Adherance>0</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>12.55</Speed>\n\t\t\t\t<Heading>27</Heading>\n\t\t\t\t<Routeid>16224</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>61</Route>\n\t\t\t\t<Direction>W</Direction>\n\t\t\t\t<Updatetime>01:54
351
+ PM</Updatetime>\n\t\t\t\t<Vehicleid>6746</Vehicleid>\n\t\t\t\t<Block>4109</Block>\n\t\t\t\t<Adherance>1</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>10.59</Speed>\n\t\t\t\t<Heading>27</Heading>\n\t\t\t\t<Routeid>16224</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>19</Route>\n\t\t\t\t<Direction>S</Direction>\n\t\t\t\t<Updatetime>01:54
352
+ PM</Updatetime>\n\t\t\t\t<Vehicleid>5062</Vehicleid>\n\t\t\t\t<Block>411</Block>\n\t\t\t\t<Adherance>0</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>Y</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>0.00</Speed>\n\t\t\t\t<Heading>
353
+ 0</Heading>\n\t\t\t\t<Routeid>15899</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>61</Route>\n\t\t\t\t<Direction>E</Direction>\n\t\t\t\t<Updatetime>01:53
354
+ PM</Updatetime>\n\t\t\t\t<Vehicleid>6675</Vehicleid>\n\t\t\t\t<Block>4110</Block>\n\t\t\t\t<Adherance>4</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>1.81</Speed>\n\t\t\t\t<Heading>
355
+ 9</Heading>\n\t\t\t\t<Routeid>16205</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>62</Route>\n\t\t\t\t<Direction>S</Direction>\n\t\t\t\t<Updatetime>01:52
356
+ PM</Updatetime>\n\t\t\t\t<Vehicleid>6697</Vehicleid>\n\t\t\t\t<Block>4116</Block>\n\t\t\t\t<Adherance>0</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>Y</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>0.00</Speed>\n\t\t\t\t<Heading>11</Heading>\n\t\t\t\t<Routeid>16237</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>62</Route>\n\t\t\t\t<Direction>N</Direction>\n\t\t\t\t<Updatetime>01:53
357
+ PM</Updatetime>\n\t\t\t\t<Vehicleid>6700</Vehicleid>\n\t\t\t\t<Block>4117</Block>\n\t\t\t\t<Adherance>2</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>14.15</Speed>\n\t\t\t\t<Heading>36</Heading>\n\t\t\t\t<Routeid>16232</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>62</Route>\n\t\t\t\t<Direction>S</Direction>\n\t\t\t\t<Updatetime>01:52
358
+ PM</Updatetime>\n\t\t\t\t<Vehicleid>6695</Vehicleid>\n\t\t\t\t<Block>4118</Block>\n\t\t\t\t<Adherance>0</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>15.56</Speed>\n\t\t\t\t<Heading>33</Heading>\n\t\t\t\t<Routeid>16237</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route></Route>\n\t\t\t\t<Direction>
359
+ </Direction>\n\t\t\t\t<Updatetime>01:53 PM</Updatetime>\n\t\t\t\t<Vehicleid>6711</Vehicleid>\n\t\t\t\t<Block>4119</Block>\n\t\t\t\t<Adherance>0</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>N</Inservice>\n\t\t\t\t<Speed>2.58</Speed>\n\t\t\t\t<Heading>
360
+ 0</Heading>\n\t\t\t\t<Routeid>0</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>65</Route>\n\t\t\t\t<Direction>S</Direction>\n\t\t\t\t<Updatetime>01:53
361
+ PM</Updatetime>\n\t\t\t\t<Vehicleid>6713</Vehicleid>\n\t\t\t\t<Block>4120</Block>\n\t\t\t\t<Adherance>2</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>7.43</Speed>\n\t\t\t\t<Heading>18</Heading>\n\t\t\t\t<Routeid>16245</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>65</Route>\n\t\t\t\t<Direction>N</Direction>\n\t\t\t\t<Updatetime>01:53
362
+ PM</Updatetime>\n\t\t\t\t<Vehicleid>6598</Vehicleid>\n\t\t\t\t<Block>4121</Block>\n\t\t\t\t<Adherance>1</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>26.26</Speed>\n\t\t\t\t<Heading>
363
+ 3</Heading>\n\t\t\t\t<Routeid>16241</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>66</Route>\n\t\t\t\t<Direction>S</Direction>\n\t\t\t\t<Updatetime>01:54
364
+ PM</Updatetime>\n\t\t\t\t<Vehicleid>6739</Vehicleid>\n\t\t\t\t<Block>4123</Block>\n\t\t\t\t<Adherance>0</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>Y</Stopped>\n\t\t\t\t<Inservice>L</Inservice>\n\t\t\t\t<Speed>0.00</Speed>\n\t\t\t\t<Heading>
365
+ 0</Heading>\n\t\t\t\t<Routeid>16256</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>72</Route>\n\t\t\t\t<Direction>S</Direction>\n\t\t\t\t<Updatetime>01:53
366
+ PM</Updatetime>\n\t\t\t\t<Vehicleid>6737</Vehicleid>\n\t\t\t\t<Block>4124</Block>\n\t\t\t\t<Adherance>1</Adherance>\n\t\t\t\t<Adhchange>D</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>12.23</Speed>\n\t\t\t\t<Heading>18</Heading>\n\t\t\t\t<Routeid>16321</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>72</Route>\n\t\t\t\t<Direction>N</Direction>\n\t\t\t\t<Updatetime>01:52
367
+ PM</Updatetime>\n\t\t\t\t<Vehicleid>8072</Vehicleid>\n\t\t\t\t<Block>4125</Block>\n\t\t\t\t<Adherance>-5</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>8.69</Speed>\n\t\t\t\t<Heading>36</Heading>\n\t\t\t\t<Routeid>16305</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>72</Route>\n\t\t\t\t<Direction>N</Direction>\n\t\t\t\t<Updatetime>01:54
368
+ PM</Updatetime>\n\t\t\t\t<Vehicleid>8073</Vehicleid>\n\t\t\t\t<Block>4126</Block>\n\t\t\t\t<Adherance>0</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>11.73</Speed>\n\t\t\t\t<Heading>33</Heading>\n\t\t\t\t<Routeid>16305</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>72</Route>\n\t\t\t\t<Direction>S</Direction>\n\t\t\t\t<Updatetime>01:53
369
+ PM</Updatetime>\n\t\t\t\t<Vehicleid>8077</Vehicleid>\n\t\t\t\t<Block>4127</Block>\n\t\t\t\t<Adherance>0</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>26.95</Speed>\n\t\t\t\t<Heading>24</Heading>\n\t\t\t\t<Routeid>16321</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>72</Route>\n\t\t\t\t<Direction>N</Direction>\n\t\t\t\t<Updatetime>01:53
370
+ PM</Updatetime>\n\t\t\t\t<Vehicleid>6670</Vehicleid>\n\t\t\t\t<Block>4128</Block>\n\t\t\t\t<Adherance>0</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>L</Inservice>\n\t\t\t\t<Speed>0.00</Speed>\n\t\t\t\t<Heading>
371
+ 0</Heading>\n\t\t\t\t<Routeid>16305</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>72</Route>\n\t\t\t\t<Direction>N</Direction>\n\t\t\t\t<Updatetime>01:53
372
+ PM</Updatetime>\n\t\t\t\t<Vehicleid>6707</Vehicleid>\n\t\t\t\t<Block>4129</Block>\n\t\t\t\t<Adherance>-2</Adherance>\n\t\t\t\t<Adhchange>I</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>14.49</Speed>\n\t\t\t\t<Heading>
373
+ 0</Heading>\n\t\t\t\t<Routeid>16305</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>19</Route>\n\t\t\t\t<Direction>N</Direction>\n\t\t\t\t<Updatetime>01:54
374
+ PM</Updatetime>\n\t\t\t\t<Vehicleid>8062</Vehicleid>\n\t\t\t\t<Block>413</Block>\n\t\t\t\t<Adherance>-1</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>16.20</Speed>\n\t\t\t\t<Heading>36</Heading>\n\t\t\t\t<Routeid>15889</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>72</Route>\n\t\t\t\t<Direction>S</Direction>\n\t\t\t\t<Updatetime>01:54
375
+ PM</Updatetime>\n\t\t\t\t<Vehicleid>8075</Vehicleid>\n\t\t\t\t<Block>4130</Block>\n\t\t\t\t<Adherance>5</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>3.30</Speed>\n\t\t\t\t<Heading>30</Heading>\n\t\t\t\t<Routeid>16321</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>72</Route>\n\t\t\t\t<Direction>S</Direction>\n\t\t\t\t<Updatetime>01:53
376
+ PM</Updatetime>\n\t\t\t\t<Vehicleid>8076</Vehicleid>\n\t\t\t\t<Block>4131</Block>\n\t\t\t\t<Adherance>-4</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>23.94</Speed>\n\t\t\t\t<Heading>18</Heading>\n\t\t\t\t<Routeid>16321</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>72</Route>\n\t\t\t\t<Direction>N</Direction>\n\t\t\t\t<Updatetime>01:54
377
+ PM</Updatetime>\n\t\t\t\t<Vehicleid>6742</Vehicleid>\n\t\t\t\t<Block>4132</Block>\n\t\t\t\t<Adherance>2</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>26.95</Speed>\n\t\t\t\t<Heading>36</Heading>\n\t\t\t\t<Routeid>16305</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>72</Route>\n\t\t\t\t<Direction>S</Direction>\n\t\t\t\t<Updatetime>01:53
378
+ PM</Updatetime>\n\t\t\t\t<Vehicleid>6673</Vehicleid>\n\t\t\t\t<Block>4133</Block>\n\t\t\t\t<Adherance>-7</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>29.45</Speed>\n\t\t\t\t<Heading>18</Heading>\n\t\t\t\t<Routeid>16321</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>72</Route>\n\t\t\t\t<Direction>S</Direction>\n\t\t\t\t<Updatetime>01:54
379
+ PM</Updatetime>\n\t\t\t\t<Vehicleid>8078</Vehicleid>\n\t\t\t\t<Block>4134</Block>\n\t\t\t\t<Adherance>0</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>7.34</Speed>\n\t\t\t\t<Heading>14</Heading>\n\t\t\t\t<Routeid>16321</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>72</Route>\n\t\t\t\t<Direction>N</Direction>\n\t\t\t\t<Updatetime>01:51
380
+ PM</Updatetime>\n\t\t\t\t<Vehicleid>6684</Vehicleid>\n\t\t\t\t<Block>4135</Block>\n\t\t\t\t<Adherance>1</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>5.57</Speed>\n\t\t\t\t<Heading>36</Heading>\n\t\t\t\t<Routeid>16305</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>72</Route>\n\t\t\t\t<Direction>N</Direction>\n\t\t\t\t<Updatetime>01:53
381
+ PM</Updatetime>\n\t\t\t\t<Vehicleid>6610</Vehicleid>\n\t\t\t\t<Block>4136</Block>\n\t\t\t\t<Adherance>3</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>1.38</Speed>\n\t\t\t\t<Heading>29</Heading>\n\t\t\t\t<Routeid>16305</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>77</Route>\n\t\t\t\t<Direction>W</Direction>\n\t\t\t\t<Updatetime>01:53
382
+ PM</Updatetime>\n\t\t\t\t<Vehicleid>6681</Vehicleid>\n\t\t\t\t<Block>4141</Block>\n\t\t\t\t<Adherance>0</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>7.19</Speed>\n\t\t\t\t<Heading>27</Heading>\n\t\t\t\t<Routeid>16357</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>77</Route>\n\t\t\t\t<Direction>E</Direction>\n\t\t\t\t<Updatetime>01:54
383
+ PM</Updatetime>\n\t\t\t\t<Vehicleid>8069</Vehicleid>\n\t\t\t\t<Block>4144</Block>\n\t\t\t\t<Adherance>-2</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>12.48</Speed>\n\t\t\t\t<Heading>
384
+ 9</Heading>\n\t\t\t\t<Routeid>16342</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>77</Route>\n\t\t\t\t<Direction>W</Direction>\n\t\t\t\t<Updatetime>01:54
385
+ PM</Updatetime>\n\t\t\t\t<Vehicleid>6748</Vehicleid>\n\t\t\t\t<Block>4145</Block>\n\t\t\t\t<Adherance>0</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>Y</Stopped>\n\t\t\t\t<Inservice>L</Inservice>\n\t\t\t\t<Speed>0.00</Speed>\n\t\t\t\t<Heading>
386
+ 0</Heading>\n\t\t\t\t<Routeid>16357</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>77</Route>\n\t\t\t\t<Direction>W</Direction>\n\t\t\t\t<Updatetime>01:52
387
+ PM</Updatetime>\n\t\t\t\t<Vehicleid>6677</Vehicleid>\n\t\t\t\t<Block>4146</Block>\n\t\t\t\t<Adherance>3</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>1.11</Speed>\n\t\t\t\t<Heading>34</Heading>\n\t\t\t\t<Routeid>16357</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>77</Route>\n\t\t\t\t<Direction>E</Direction>\n\t\t\t\t<Updatetime>01:54
388
+ PM</Updatetime>\n\t\t\t\t<Vehicleid>8081</Vehicleid>\n\t\t\t\t<Block>4147</Block>\n\t\t\t\t<Adherance>0</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>9.39</Speed>\n\t\t\t\t<Heading>
389
+ 9</Heading>\n\t\t\t\t<Routeid>16342</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>19</Route>\n\t\t\t\t<Direction>N</Direction>\n\t\t\t\t<Updatetime>01:54
390
+ PM</Updatetime>\n\t\t\t\t<Vehicleid>6578</Vehicleid>\n\t\t\t\t<Block>415</Block>\n\t\t\t\t<Adherance>0</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>21.77</Speed>\n\t\t\t\t<Heading>36</Heading>\n\t\t\t\t<Routeid>15889</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>81</Route>\n\t\t\t\t<Direction>S</Direction>\n\t\t\t\t<Updatetime>01:53
391
+ PM</Updatetime>\n\t\t\t\t<Vehicleid>6701</Vehicleid>\n\t\t\t\t<Block>4150</Block>\n\t\t\t\t<Adherance>0</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>20.34</Speed>\n\t\t\t\t<Heading>18</Heading>\n\t\t\t\t<Routeid>16406</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>81</Route>\n\t\t\t\t<Direction>N</Direction>\n\t\t\t\t<Updatetime>01:53
392
+ PM</Updatetime>\n\t\t\t\t<Vehicleid>6678</Vehicleid>\n\t\t\t\t<Block>4151</Block>\n\t\t\t\t<Adherance>-3</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>38.12</Speed>\n\t\t\t\t<Heading>
393
+ 0</Heading>\n\t\t\t\t<Routeid>16393</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>81</Route>\n\t\t\t\t<Direction>S</Direction>\n\t\t\t\t<Updatetime>01:54
394
+ PM</Updatetime>\n\t\t\t\t<Vehicleid>6691</Vehicleid>\n\t\t\t\t<Block>4153</Block>\n\t\t\t\t<Adherance>0</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>13.38</Speed>\n\t\t\t\t<Heading>18</Heading>\n\t\t\t\t<Routeid>16406</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>81</Route>\n\t\t\t\t<Direction>N</Direction>\n\t\t\t\t<Updatetime>01:53
395
+ PM</Updatetime>\n\t\t\t\t<Vehicleid>6647</Vehicleid>\n\t\t\t\t<Block>4154</Block>\n\t\t\t\t<Adherance>-6</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>12.10</Speed>\n\t\t\t\t<Heading>36</Heading>\n\t\t\t\t<Routeid>16393</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>81</Route>\n\t\t\t\t<Direction>N</Direction>\n\t\t\t\t<Updatetime>01:53
396
+ PM</Updatetime>\n\t\t\t\t<Vehicleid>6705</Vehicleid>\n\t\t\t\t<Block>4155</Block>\n\t\t\t\t<Adherance>1</Adherance>\n\t\t\t\t<Adhchange>I</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>23.39</Speed>\n\t\t\t\t<Heading>36</Heading>\n\t\t\t\t<Routeid>16393</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>81</Route>\n\t\t\t\t<Direction>S</Direction>\n\t\t\t\t<Updatetime>01:53
397
+ PM</Updatetime>\n\t\t\t\t<Vehicleid>6694</Vehicleid>\n\t\t\t\t<Block>4156</Block>\n\t\t\t\t<Adherance>0</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>10.08</Speed>\n\t\t\t\t<Heading>18</Heading>\n\t\t\t\t<Routeid>16406</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>81</Route>\n\t\t\t\t<Direction>S</Direction>\n\t\t\t\t<Updatetime>01:51
398
+ PM</Updatetime>\n\t\t\t\t<Vehicleid>6747</Vehicleid>\n\t\t\t\t<Block>4157</Block>\n\t\t\t\t<Adherance>0</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>Y</Stopped>\n\t\t\t\t<Inservice>L</Inservice>\n\t\t\t\t<Speed>0.00</Speed>\n\t\t\t\t<Heading>
399
+ 0</Heading>\n\t\t\t\t<Routeid>16406</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>81</Route>\n\t\t\t\t<Direction>N</Direction>\n\t\t\t\t<Updatetime>01:54
400
+ PM</Updatetime>\n\t\t\t\t<Vehicleid>6702</Vehicleid>\n\t\t\t\t<Block>4159</Block>\n\t\t\t\t<Adherance>0</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>L</Inservice>\n\t\t\t\t<Speed>0.00</Speed>\n\t\t\t\t<Heading>
401
+ 0</Heading>\n\t\t\t\t<Routeid>16393</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>96</Route>\n\t\t\t\t<Direction>N</Direction>\n\t\t\t\t<Updatetime>01:53
402
+ PM</Updatetime>\n\t\t\t\t<Vehicleid>6601</Vehicleid>\n\t\t\t\t<Block>4164</Block>\n\t\t\t\t<Adherance>0</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>L</Inservice>\n\t\t\t\t<Speed>0.00</Speed>\n\t\t\t\t<Heading>
403
+ 0</Heading>\n\t\t\t\t<Routeid>16429</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>96</Route>\n\t\t\t\t<Direction>N</Direction>\n\t\t\t\t<Updatetime>01:53
404
+ PM</Updatetime>\n\t\t\t\t<Vehicleid>6645</Vehicleid>\n\t\t\t\t<Block>4165</Block>\n\t\t\t\t<Adherance>1</Adherance>\n\t\t\t\t<Adhchange>D</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>14.92</Speed>\n\t\t\t\t<Heading>34</Heading>\n\t\t\t\t<Routeid>16429</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>96</Route>\n\t\t\t\t<Direction>S</Direction>\n\t\t\t\t<Updatetime>01:53
405
+ PM</Updatetime>\n\t\t\t\t<Vehicleid>6642</Vehicleid>\n\t\t\t\t<Block>4166</Block>\n\t\t\t\t<Adherance>0</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>13.39</Speed>\n\t\t\t\t<Heading>18</Heading>\n\t\t\t\t<Routeid>16437</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>108</Route>\n\t\t\t\t<Direction>W</Direction>\n\t\t\t\t<Updatetime>01:54
406
+ PM</Updatetime>\n\t\t\t\t<Vehicleid>6735</Vehicleid>\n\t\t\t\t<Block>4174</Block>\n\t\t\t\t<Adherance>-3</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>20.16</Speed>\n\t\t\t\t<Heading>27</Heading>\n\t\t\t\t<Routeid>16503</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>104</Route>\n\t\t\t\t<Direction>N</Direction>\n\t\t\t\t<Updatetime>01:53
407
+ PM</Updatetime>\n\t\t\t\t<Vehicleid>6625</Vehicleid>\n\t\t\t\t<Block>4176</Block>\n\t\t\t\t<Adherance>-6</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>28.65</Speed>\n\t\t\t\t<Heading>36</Heading>\n\t\t\t\t<Routeid>16444</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>184</Route>\n\t\t\t\t<Direction>S</Direction>\n\t\t\t\t<Updatetime>01:54
408
+ PM</Updatetime>\n\t\t\t\t<Vehicleid>6641</Vehicleid>\n\t\t\t\t<Block>4178</Block>\n\t\t\t\t<Adherance>0</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>Y</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>0.03</Speed>\n\t\t\t\t<Heading>10</Heading>\n\t\t\t\t<Routeid>16623</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>184</Route>\n\t\t\t\t<Direction>N</Direction>\n\t\t\t\t<Updatetime>01:53
409
+ PM</Updatetime>\n\t\t\t\t<Vehicleid>6693</Vehicleid>\n\t\t\t\t<Block>4180</Block>\n\t\t\t\t<Adherance>10</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>3.48</Speed>\n\t\t\t\t<Heading>
410
+ 5</Heading>\n\t\t\t\t<Routeid>16617</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>16</Route>\n\t\t\t\t<Direction>N</Direction>\n\t\t\t\t<Updatetime>01:53
411
+ PM</Updatetime>\n\t\t\t\t<Vehicleid>6346</Vehicleid>\n\t\t\t\t<Block>42</Block>\n\t\t\t\t<Adherance>0</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>19.57</Speed>\n\t\t\t\t<Heading>36</Heading>\n\t\t\t\t<Routeid>15843</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>156</Route>\n\t\t\t\t<Direction>E</Direction>\n\t\t\t\t<Updatetime>01:53
412
+ PM</Updatetime>\n\t\t\t\t<Vehicleid>6712</Vehicleid>\n\t\t\t\t<Block>4231</Block>\n\t\t\t\t<Adherance>2</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>9.16</Speed>\n\t\t\t\t<Heading>18</Heading>\n\t\t\t\t<Routeid>16590</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>27</Route>\n\t\t\t\t<Direction>S</Direction>\n\t\t\t\t<Updatetime>01:53
413
+ PM</Updatetime>\n\t\t\t\t<Vehicleid>5088</Vehicleid>\n\t\t\t\t<Block>424</Block>\n\t\t\t\t<Adherance>2</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>9.39</Speed>\n\t\t\t\t<Heading>18</Heading>\n\t\t\t\t<Routeid>15919</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>27</Route>\n\t\t\t\t<Direction>S</Direction>\n\t\t\t\t<Updatetime>01:54
414
+ PM</Updatetime>\n\t\t\t\t<Vehicleid>5064</Vehicleid>\n\t\t\t\t<Block>425</Block>\n\t\t\t\t<Adherance>0</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>N</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>13.26</Speed>\n\t\t\t\t<Heading>19</Heading>\n\t\t\t\t<Routeid>15920</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>27</Route>\n\t\t\t\t<Direction>N</Direction>\n\t\t\t\t<Updatetime>01:54
415
+ PM</Updatetime>\n\t\t\t\t<Vehicleid>5089</Vehicleid>\n\t\t\t\t<Block>426</Block>\n\t\t\t\t<Adherance>0</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>6.94</Speed>\n\t\t\t\t<Heading>27</Heading>\n\t\t\t\t<Routeid>15909</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>35</Route>\n\t\t\t\t<Direction>S</Direction>\n\t\t\t\t<Updatetime>01:54
416
+ PM</Updatetime>\n\t\t\t\t<Vehicleid>5068</Vehicleid>\n\t\t\t\t<Block>428</Block>\n\t\t\t\t<Adherance>-1</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>23.66</Speed>\n\t\t\t\t<Heading>18</Heading>\n\t\t\t\t<Routeid>15981</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route></Route>\n\t\t\t\t<Direction>
417
+ </Direction>\n\t\t\t\t<Updatetime>01:49 PM</Updatetime>\n\t\t\t\t<Vehicleid>6238</Vehicleid>\n\t\t\t\t<Block>429</Block>\n\t\t\t\t<Adherance>0</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>N</Inservice>\n\t\t\t\t<Speed>10.32</Speed>\n\t\t\t\t<Heading>
418
+ 0</Heading>\n\t\t\t\t<Routeid>0</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>16</Route>\n\t\t\t\t<Direction>N</Direction>\n\t\t\t\t<Updatetime>01:54
419
+ PM</Updatetime>\n\t\t\t\t<Vehicleid>6320</Vehicleid>\n\t\t\t\t<Block>43</Block>\n\t\t\t\t<Adherance>-2</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>16.97</Speed>\n\t\t\t\t<Heading>36</Heading>\n\t\t\t\t<Routeid>15843</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>35</Route>\n\t\t\t\t<Direction>N</Direction>\n\t\t\t\t<Updatetime>01:53
420
+ PM</Updatetime>\n\t\t\t\t<Vehicleid>6577</Vehicleid>\n\t\t\t\t<Block>431</Block>\n\t\t\t\t<Adherance>3</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>14.45</Speed>\n\t\t\t\t<Heading>
421
+ 0</Heading>\n\t\t\t\t<Routeid>15975</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>35</Route>\n\t\t\t\t<Direction>N</Direction>\n\t\t\t\t<Updatetime>01:53
422
+ PM</Updatetime>\n\t\t\t\t<Vehicleid>6241</Vehicleid>\n\t\t\t\t<Block>432</Block>\n\t\t\t\t<Adherance>1</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>7.12</Speed>\n\t\t\t\t<Heading>36</Heading>\n\t\t\t\t<Routeid>15975</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>39</Route>\n\t\t\t\t<Direction>N</Direction>\n\t\t\t\t<Updatetime>01:53
423
+ PM</Updatetime>\n\t\t\t\t<Vehicleid>5090</Vehicleid>\n\t\t\t\t<Block>435</Block>\n\t\t\t\t<Adherance>3</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>17.60</Speed>\n\t\t\t\t<Heading>36</Heading>\n\t\t\t\t<Routeid>15986</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>39</Route>\n\t\t\t\t<Direction>S</Direction>\n\t\t\t\t<Updatetime>01:53
424
+ PM</Updatetime>\n\t\t\t\t<Vehicleid>5084</Vehicleid>\n\t\t\t\t<Block>436</Block>\n\t\t\t\t<Adherance>0</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>22.26</Speed>\n\t\t\t\t<Heading>17</Heading>\n\t\t\t\t<Routeid>15990</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>80</Route>\n\t\t\t\t<Direction>W</Direction>\n\t\t\t\t<Updatetime>01:47
425
+ PM</Updatetime>\n\t\t\t\t<Vehicleid>5085</Vehicleid>\n\t\t\t\t<Block>439</Block>\n\t\t\t\t<Adherance>0</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>N</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>Y</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>0.33</Speed>\n\t\t\t\t<Heading>27</Heading>\n\t\t\t\t<Routeid>16384</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>80</Route>\n\t\t\t\t<Direction>W</Direction>\n\t\t\t\t<Updatetime>01:53
426
+ PM</Updatetime>\n\t\t\t\t<Vehicleid>6242</Vehicleid>\n\t\t\t\t<Block>441</Block>\n\t\t\t\t<Adherance>-4</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>32.77</Speed>\n\t\t\t\t<Heading>26</Heading>\n\t\t\t\t<Routeid>16384</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>80</Route>\n\t\t\t\t<Direction>E</Direction>\n\t\t\t\t<Updatetime>01:53
427
+ PM</Updatetime>\n\t\t\t\t<Vehicleid>6226</Vehicleid>\n\t\t\t\t<Block>442</Block>\n\t\t\t\t<Adherance>0</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>N</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>7.82</Speed>\n\t\t\t\t<Heading>
428
+ 6</Heading>\n\t\t\t\t<Routeid>16369</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>80</Route>\n\t\t\t\t<Direction>W</Direction>\n\t\t\t\t<Updatetime>01:52
429
+ PM</Updatetime>\n\t\t\t\t<Vehicleid>6587</Vehicleid>\n\t\t\t\t<Block>443</Block>\n\t\t\t\t<Adherance>0</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>Y</Stopped>\n\t\t\t\t<Inservice>L</Inservice>\n\t\t\t\t<Speed>0.00</Speed>\n\t\t\t\t<Heading>
430
+ 0</Heading>\n\t\t\t\t<Routeid>16384</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>80</Route>\n\t\t\t\t<Direction>W</Direction>\n\t\t\t\t<Updatetime>01:50
431
+ PM</Updatetime>\n\t\t\t\t<Vehicleid>6590</Vehicleid>\n\t\t\t\t<Block>445</Block>\n\t\t\t\t<Adherance>1</Adherance>\n\t\t\t\t<Adhchange>D</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>8.22</Speed>\n\t\t\t\t<Heading>27</Heading>\n\t\t\t\t<Routeid>16384</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>90</Route>\n\t\t\t\t<Direction>E</Direction>\n\t\t\t\t<Updatetime>01:53
432
+ PM</Updatetime>\n\t\t\t\t<Vehicleid>5091</Vehicleid>\n\t\t\t\t<Block>448</Block>\n\t\t\t\t<Adherance>3</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>Y</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>0.06</Speed>\n\t\t\t\t<Heading>36</Heading>\n\t\t\t\t<Routeid>16415</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>90</Route>\n\t\t\t\t<Direction>W</Direction>\n\t\t\t\t<Updatetime>01:53
433
+ PM</Updatetime>\n\t\t\t\t<Vehicleid>5066</Vehicleid>\n\t\t\t\t<Block>449</Block>\n\t\t\t\t<Adherance>2</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>12.44</Speed>\n\t\t\t\t<Heading>19</Heading>\n\t\t\t\t<Routeid>16421</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>19</Route>\n\t\t\t\t<Direction>N</Direction>\n\t\t\t\t<Updatetime>01:51
434
+ PM</Updatetime>\n\t\t\t\t<Vehicleid>8055</Vehicleid>\n\t\t\t\t<Block>45</Block>\n\t\t\t\t<Adherance>0</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>N</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>22.53</Speed>\n\t\t\t\t<Heading>36</Heading>\n\t\t\t\t<Routeid>15889</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>90</Route>\n\t\t\t\t<Direction>E</Direction>\n\t\t\t\t<Updatetime>01:54
435
+ PM</Updatetime>\n\t\t\t\t<Vehicleid>5092</Vehicleid>\n\t\t\t\t<Block>450</Block>\n\t\t\t\t<Adherance>0</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>Y</Stopped>\n\t\t\t\t<Inservice>L</Inservice>\n\t\t\t\t<Speed>0.00</Speed>\n\t\t\t\t<Heading>
436
+ 0</Heading>\n\t\t\t\t<Routeid>16415</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>90</Route>\n\t\t\t\t<Direction>W</Direction>\n\t\t\t\t<Updatetime>01:54
437
+ PM</Updatetime>\n\t\t\t\t<Vehicleid>5104</Vehicleid>\n\t\t\t\t<Block>451</Block>\n\t\t\t\t<Adherance>0</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>10.23</Speed>\n\t\t\t\t<Heading>27</Heading>\n\t\t\t\t<Routeid>16421</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>90</Route>\n\t\t\t\t<Direction>E</Direction>\n\t\t\t\t<Updatetime>01:53
438
+ PM</Updatetime>\n\t\t\t\t<Vehicleid>5069</Vehicleid>\n\t\t\t\t<Block>452</Block>\n\t\t\t\t<Adherance>2</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>9.86</Speed>\n\t\t\t\t<Heading>
439
+ 9</Heading>\n\t\t\t\t<Routeid>16415</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>90</Route>\n\t\t\t\t<Direction>E</Direction>\n\t\t\t\t<Updatetime>01:53
440
+ PM</Updatetime>\n\t\t\t\t<Vehicleid>6582</Vehicleid>\n\t\t\t\t<Block>453</Block>\n\t\t\t\t<Adherance>0</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>30.49</Speed>\n\t\t\t\t<Heading>
441
+ 9</Heading>\n\t\t\t\t<Routeid>16415</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>106</Route>\n\t\t\t\t<Direction>W</Direction>\n\t\t\t\t<Updatetime>01:54
442
+ PM</Updatetime>\n\t\t\t\t<Vehicleid>5082</Vehicleid>\n\t\t\t\t<Block>454</Block>\n\t\t\t\t<Adherance>0</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>Y</Stopped>\n\t\t\t\t<Inservice>L</Inservice>\n\t\t\t\t<Speed>0.00</Speed>\n\t\t\t\t<Heading>
443
+ 0</Heading>\n\t\t\t\t<Routeid>16470</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>138</Route>\n\t\t\t\t<Direction>W</Direction>\n\t\t\t\t<Updatetime>01:53
444
+ PM</Updatetime>\n\t\t\t\t<Vehicleid>5081</Vehicleid>\n\t\t\t\t<Block>455</Block>\n\t\t\t\t<Adherance>0</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>Y</Stopped>\n\t\t\t\t<Inservice>L</Inservice>\n\t\t\t\t<Speed>0.00</Speed>\n\t\t\t\t<Heading>
445
+ 0</Heading>\n\t\t\t\t<Routeid>16578</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>138</Route>\n\t\t\t\t<Direction>W</Direction>\n\t\t\t\t<Updatetime>01:53
446
+ PM</Updatetime>\n\t\t\t\t<Vehicleid>5099</Vehicleid>\n\t\t\t\t<Block>456</Block>\n\t\t\t\t<Adherance>0</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>19.52</Speed>\n\t\t\t\t<Heading>35</Heading>\n\t\t\t\t<Routeid>16578</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>106</Route>\n\t\t\t\t<Direction>E</Direction>\n\t\t\t\t<Updatetime>01:54
447
+ PM</Updatetime>\n\t\t\t\t<Vehicleid>5071</Vehicleid>\n\t\t\t\t<Block>457</Block>\n\t\t\t\t<Adherance>0</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>6.11</Speed>\n\t\t\t\t<Heading>
448
+ 8</Heading>\n\t\t\t\t<Routeid>16460</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>106</Route>\n\t\t\t\t<Direction>W</Direction>\n\t\t\t\t<Updatetime>01:51
449
+ PM</Updatetime>\n\t\t\t\t<Vehicleid>6221</Vehicleid>\n\t\t\t\t<Block>458</Block>\n\t\t\t\t<Adherance>1</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>19.92</Speed>\n\t\t\t\t<Heading>27</Heading>\n\t\t\t\t<Routeid>16469</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>19</Route>\n\t\t\t\t<Direction>N</Direction>\n\t\t\t\t<Updatetime>01:53
450
+ PM</Updatetime>\n\t\t\t\t<Vehicleid>8015</Vehicleid>\n\t\t\t\t<Block>46</Block>\n\t\t\t\t<Adherance>0</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>Y</Stopped>\n\t\t\t\t<Inservice>L</Inservice>\n\t\t\t\t<Speed>0.00</Speed>\n\t\t\t\t<Heading>
451
+ 0</Heading>\n\t\t\t\t<Routeid>15889</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>106</Route>\n\t\t\t\t<Direction>E</Direction>\n\t\t\t\t<Updatetime>01:54
452
+ PM</Updatetime>\n\t\t\t\t<Vehicleid>6231</Vehicleid>\n\t\t\t\t<Block>461</Block>\n\t\t\t\t<Adherance>4</Adherance>\n\t\t\t\t<Adhchange>I</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>15.86</Speed>\n\t\t\t\t<Heading>
453
+ 7</Heading>\n\t\t\t\t<Routeid>16459</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>106</Route>\n\t\t\t\t<Direction>E</Direction>\n\t\t\t\t<Updatetime>01:52
454
+ PM</Updatetime>\n\t\t\t\t<Vehicleid>6584</Vehicleid>\n\t\t\t\t<Block>462</Block>\n\t\t\t\t<Adherance>0</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>Y</Stopped>\n\t\t\t\t<Inservice>L</Inservice>\n\t\t\t\t<Speed>0.00</Speed>\n\t\t\t\t<Heading>
455
+ 0</Heading>\n\t\t\t\t<Routeid>16459</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>106</Route>\n\t\t\t\t<Direction>E</Direction>\n\t\t\t\t<Updatetime>01:54
456
+ PM</Updatetime>\n\t\t\t\t<Vehicleid>5073</Vehicleid>\n\t\t\t\t<Block>463</Block>\n\t\t\t\t<Adherance>0</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>Y</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>0.00</Speed>\n\t\t\t\t<Heading>15</Heading>\n\t\t\t\t<Routeid>16460</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>106</Route>\n\t\t\t\t<Direction>W</Direction>\n\t\t\t\t<Updatetime>01:53
457
+ PM</Updatetime>\n\t\t\t\t<Vehicleid>5070</Vehicleid>\n\t\t\t\t<Block>464</Block>\n\t\t\t\t<Adherance>2</Adherance>\n\t\t\t\t<Adhchange>I</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>5.89</Speed>\n\t\t\t\t<Heading>33</Heading>\n\t\t\t\t<Routeid>16470</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route></Route>\n\t\t\t\t<Direction>
458
+ </Direction>\n\t\t\t\t<Updatetime>01:54 PM</Updatetime>\n\t\t\t\t<Vehicleid>5094</Vehicleid>\n\t\t\t\t<Block>465</Block>\n\t\t\t\t<Adherance>0</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>N</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>Y</Stopped>\n\t\t\t\t<Inservice>N</Inservice>\n\t\t\t\t<Speed>0.06</Speed>\n\t\t\t\t<Heading>
459
+ 0</Heading>\n\t\t\t\t<Routeid>0</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>122</Route>\n\t\t\t\t<Direction>E</Direction>\n\t\t\t\t<Updatetime>01:52
460
+ PM</Updatetime>\n\t\t\t\t<Vehicleid>6224</Vehicleid>\n\t\t\t\t<Block>466</Block>\n\t\t\t\t<Adherance>2</Adherance>\n\t\t\t\t<Adhchange>D</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>15.75</Speed>\n\t\t\t\t<Heading>
461
+ 9</Heading>\n\t\t\t\t<Routeid>16537</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>106</Route>\n\t\t\t\t<Direction>E</Direction>\n\t\t\t\t<Updatetime>01:54
462
+ PM</Updatetime>\n\t\t\t\t<Vehicleid>5063</Vehicleid>\n\t\t\t\t<Block>467</Block>\n\t\t\t\t<Adherance>-1</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>9.50</Speed>\n\t\t\t\t<Heading>12</Heading>\n\t\t\t\t<Routeid>16459</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>138</Route>\n\t\t\t\t<Direction>W</Direction>\n\t\t\t\t<Updatetime>01:48
463
+ PM</Updatetime>\n\t\t\t\t<Vehicleid>5101</Vehicleid>\n\t\t\t\t<Block>468</Block>\n\t\t\t\t<Adherance>1</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>15.51</Speed>\n\t\t\t\t<Heading>27</Heading>\n\t\t\t\t<Routeid>16578</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>154</Route>\n\t\t\t\t<Direction>E</Direction>\n\t\t\t\t<Updatetime>01:51
464
+ PM</Updatetime>\n\t\t\t\t<Vehicleid>5075</Vehicleid>\n\t\t\t\t<Block>469</Block>\n\t\t\t\t<Adherance>0</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>12.76</Speed>\n\t\t\t\t<Heading>
465
+ 9</Heading>\n\t\t\t\t<Routeid>16582</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>19</Route>\n\t\t\t\t<Direction>S</Direction>\n\t\t\t\t<Updatetime>01:53
466
+ PM</Updatetime>\n\t\t\t\t<Vehicleid>8011</Vehicleid>\n\t\t\t\t<Block>47</Block>\n\t\t\t\t<Adherance>8</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>Y</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>0.48</Speed>\n\t\t\t\t<Heading>27</Heading>\n\t\t\t\t<Routeid>15899</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>154</Route>\n\t\t\t\t<Direction>W</Direction>\n\t\t\t\t<Updatetime>01:54
467
+ PM</Updatetime>\n\t\t\t\t<Vehicleid>6574</Vehicleid>\n\t\t\t\t<Block>471</Block>\n\t\t\t\t<Adherance>0</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>18.91</Speed>\n\t\t\t\t<Heading>34</Heading>\n\t\t\t\t<Routeid>16586</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>154</Route>\n\t\t\t\t<Direction>W</Direction>\n\t\t\t\t<Updatetime>01:54
468
+ PM</Updatetime>\n\t\t\t\t<Vehicleid>6592</Vehicleid>\n\t\t\t\t<Block>472</Block>\n\t\t\t\t<Adherance>2</Adherance>\n\t\t\t\t<Adhchange>D</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>4.30</Speed>\n\t\t\t\t<Heading>28</Heading>\n\t\t\t\t<Routeid>16586</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>154</Route>\n\t\t\t\t<Direction>E</Direction>\n\t\t\t\t<Updatetime>01:49
469
+ PM</Updatetime>\n\t\t\t\t<Vehicleid>6583</Vehicleid>\n\t\t\t\t<Block>473</Block>\n\t\t\t\t<Adherance>1</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>24.59</Speed>\n\t\t\t\t<Heading>
470
+ 9</Heading>\n\t\t\t\t<Routeid>16582</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route></Route>\n\t\t\t\t<Direction>
471
+ </Direction>\n\t\t\t\t<Updatetime>01:51 PM</Updatetime>\n\t\t\t\t<Vehicleid>6591</Vehicleid>\n\t\t\t\t<Block>474</Block>\n\t\t\t\t<Adherance>0</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>N</Inservice>\n\t\t\t\t<Speed>10.84</Speed>\n\t\t\t\t<Heading>
472
+ 0</Heading>\n\t\t\t\t<Routeid>0</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>170</Route>\n\t\t\t\t<Direction>E</Direction>\n\t\t\t\t<Updatetime>01:53
473
+ PM</Updatetime>\n\t\t\t\t<Vehicleid>5067</Vehicleid>\n\t\t\t\t<Block>476</Block>\n\t\t\t\t<Adherance>-2</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>2.85</Speed>\n\t\t\t\t<Heading>20</Heading>\n\t\t\t\t<Routeid>16604</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>170</Route>\n\t\t\t\t<Direction>W</Direction>\n\t\t\t\t<Updatetime>01:51
474
+ PM</Updatetime>\n\t\t\t\t<Vehicleid>6575</Vehicleid>\n\t\t\t\t<Block>477</Block>\n\t\t\t\t<Adherance>-1</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>25.45</Speed>\n\t\t\t\t<Heading>27</Heading>\n\t\t\t\t<Routeid>16611</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>170</Route>\n\t\t\t\t<Direction>W</Direction>\n\t\t\t\t<Updatetime>01:54
475
+ PM</Updatetime>\n\t\t\t\t<Vehicleid>6576</Vehicleid>\n\t\t\t\t<Block>478</Block>\n\t\t\t\t<Adherance>4</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>21.45</Speed>\n\t\t\t\t<Heading>27</Heading>\n\t\t\t\t<Routeid>16611</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route></Route>\n\t\t\t\t<Direction>
476
+ </Direction>\n\t\t\t\t<Updatetime>01:51 PM</Updatetime>\n\t\t\t\t<Vehicleid>6571</Vehicleid>\n\t\t\t\t<Block>479</Block>\n\t\t\t\t<Adherance>-2</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>Y</Stopped>\n\t\t\t\t<Inservice>N</Inservice>\n\t\t\t\t<Speed>0.09</Speed>\n\t\t\t\t<Heading>
477
+ 0</Heading>\n\t\t\t\t<Routeid>0</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>170</Route>\n\t\t\t\t<Direction>E</Direction>\n\t\t\t\t<Updatetime>01:52
478
+ PM</Updatetime>\n\t\t\t\t<Vehicleid>6572</Vehicleid>\n\t\t\t\t<Block>480</Block>\n\t\t\t\t<Adherance>1</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>21.60</Speed>\n\t\t\t\t<Heading>
479
+ 9</Heading>\n\t\t\t\t<Routeid>16604</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>170</Route>\n\t\t\t\t<Direction>E</Direction>\n\t\t\t\t<Updatetime>01:48
480
+ PM</Updatetime>\n\t\t\t\t<Vehicleid>5074</Vehicleid>\n\t\t\t\t<Block>481</Block>\n\t\t\t\t<Adherance>4</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>10.81</Speed>\n\t\t\t\t<Heading>
481
+ 9</Heading>\n\t\t\t\t<Routeid>16604</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>186</Route>\n\t\t\t\t<Direction>W</Direction>\n\t\t\t\t<Updatetime>01:53
482
+ PM</Updatetime>\n\t\t\t\t<Vehicleid>5065</Vehicleid>\n\t\t\t\t<Block>482</Block>\n\t\t\t\t<Adherance>3</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>24.40</Speed>\n\t\t\t\t<Heading>27</Heading>\n\t\t\t\t<Routeid>16638</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>186</Route>\n\t\t\t\t<Direction>E</Direction>\n\t\t\t\t<Updatetime>01:54
483
+ PM</Updatetime>\n\t\t\t\t<Vehicleid>6581</Vehicleid>\n\t\t\t\t<Block>484</Block>\n\t\t\t\t<Adherance>1</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>36.01</Speed>\n\t\t\t\t<Heading>
484
+ 6</Heading>\n\t\t\t\t<Routeid>16629</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>186</Route>\n\t\t\t\t<Direction>E</Direction>\n\t\t\t\t<Updatetime>01:53
485
+ PM</Updatetime>\n\t\t\t\t<Vehicleid>5096</Vehicleid>\n\t\t\t\t<Block>485</Block>\n\t\t\t\t<Adherance>1</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>25.20</Speed>\n\t\t\t\t<Heading>
486
+ 9</Heading>\n\t\t\t\t<Routeid>16630</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>186</Route>\n\t\t\t\t<Direction>W</Direction>\n\t\t\t\t<Updatetime>01:53
487
+ PM</Updatetime>\n\t\t\t\t<Vehicleid>5098</Vehicleid>\n\t\t\t\t<Block>486</Block>\n\t\t\t\t<Adherance>2</Adherance>\n\t\t\t\t<Adhchange>I</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>15.01</Speed>\n\t\t\t\t<Heading>27</Heading>\n\t\t\t\t<Routeid>16637</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>186</Route>\n\t\t\t\t<Direction>E</Direction>\n\t\t\t\t<Updatetime>01:53
488
+ PM</Updatetime>\n\t\t\t\t<Vehicleid>6589</Vehicleid>\n\t\t\t\t<Block>487</Block>\n\t\t\t\t<Adherance>-3</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>8.77</Speed>\n\t\t\t\t<Heading>31</Heading>\n\t\t\t\t<Routeid>16629</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>19</Route>\n\t\t\t\t<Direction>S</Direction>\n\t\t\t\t<Updatetime>01:51
489
+ PM</Updatetime>\n\t\t\t\t<Vehicleid>8009</Vehicleid>\n\t\t\t\t<Block>49</Block>\n\t\t\t\t<Adherance>0</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>18.91</Speed>\n\t\t\t\t<Heading>18</Heading>\n\t\t\t\t<Routeid>15899</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>MAIN</Route>\n\t\t\t\t<Direction>W</Direction>\n\t\t\t\t<Updatetime>01:54
490
+ PM</Updatetime>\n\t\t\t\t<Vehicleid>7002</Vehicleid>\n\t\t\t\t<Block>5001</Block>\n\t\t\t\t<Adherance>-1</Adherance>\n\t\t\t\t<Adhchange>N</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>0.00</Speed>\n\t\t\t\t<Heading>
491
+ 0</Heading>\n\t\t\t\t<Routeid>16804</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>MAIN</Route>\n\t\t\t\t<Direction>E</Direction>\n\t\t\t\t<Updatetime>01:53
492
+ PM</Updatetime>\n\t\t\t\t<Vehicleid>7004</Vehicleid>\n\t\t\t\t<Block>5003</Block>\n\t\t\t\t<Adherance>0</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>22.59</Speed>\n\t\t\t\t<Heading>
493
+ 9</Heading>\n\t\t\t\t<Routeid>16802</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>MAIN</Route>\n\t\t\t\t<Direction>W</Direction>\n\t\t\t\t<Updatetime>01:53
494
+ PM</Updatetime>\n\t\t\t\t<Vehicleid>7001</Vehicleid>\n\t\t\t\t<Block>5004</Block>\n\t\t\t\t<Adherance>0</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>30.49</Speed>\n\t\t\t\t<Heading>27</Heading>\n\t\t\t\t<Routeid>16804</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>AZAV</Route>\n\t\t\t\t<Direction>N</Direction>\n\t\t\t\t<Updatetime>01:51
495
+ PM</Updatetime>\n\t\t\t\t<Vehicleid>7007</Vehicleid>\n\t\t\t\t<Block>5006</Block>\n\t\t\t\t<Adherance>0</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>28.06</Speed>\n\t\t\t\t<Heading>36</Heading>\n\t\t\t\t<Routeid>16762</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>AZAV</Route>\n\t\t\t\t<Direction>S</Direction>\n\t\t\t\t<Updatetime>01:53
496
+ PM</Updatetime>\n\t\t\t\t<Vehicleid>7009</Vehicleid>\n\t\t\t\t<Block>5007</Block>\n\t\t\t\t<Adherance>-5</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>14.07</Speed>\n\t\t\t\t<Heading>11</Heading>\n\t\t\t\t<Routeid>16766</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>AZAV</Route>\n\t\t\t\t<Direction>S</Direction>\n\t\t\t\t<Updatetime>01:53
497
+ PM</Updatetime>\n\t\t\t\t<Vehicleid>7003</Vehicleid>\n\t\t\t\t<Block>5009</Block>\n\t\t\t\t<Adherance>0</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>14.69</Speed>\n\t\t\t\t<Heading>18</Heading>\n\t\t\t\t<Routeid>16766</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>30</Route>\n\t\t\t\t<Direction>E</Direction>\n\t\t\t\t<Updatetime>01:51
498
+ PM</Updatetime>\n\t\t\t\t<Vehicleid>6413</Vehicleid>\n\t\t\t\t<Block>5014</Block>\n\t\t\t\t<Adherance>0</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>Y</Stopped>\n\t\t\t\t<Inservice>L</Inservice>\n\t\t\t\t<Speed>0.00</Speed>\n\t\t\t\t<Heading>
499
+ 0</Heading>\n\t\t\t\t<Routeid>15954</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>30</Route>\n\t\t\t\t<Direction>W</Direction>\n\t\t\t\t<Updatetime>01:54
500
+ PM</Updatetime>\n\t\t\t\t<Vehicleid>6668</Vehicleid>\n\t\t\t\t<Block>5015</Block>\n\t\t\t\t<Adherance>2</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>12.47</Speed>\n\t\t\t\t<Heading>27</Heading>\n\t\t\t\t<Routeid>15966</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>30</Route>\n\t\t\t\t<Direction>E</Direction>\n\t\t\t\t<Updatetime>01:51
501
+ PM</Updatetime>\n\t\t\t\t<Vehicleid>6657</Vehicleid>\n\t\t\t\t<Block>5016</Block>\n\t\t\t\t<Adherance>3</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>Y</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>0.00</Speed>\n\t\t\t\t<Heading>
502
+ 8</Heading>\n\t\t\t\t<Routeid>15954</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>30</Route>\n\t\t\t\t<Direction>E</Direction>\n\t\t\t\t<Updatetime>01:53
503
+ PM</Updatetime>\n\t\t\t\t<Vehicleid>6661</Vehicleid>\n\t\t\t\t<Block>5018</Block>\n\t\t\t\t<Adherance>3</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>15.19</Speed>\n\t\t\t\t<Heading>
504
+ 9</Heading>\n\t\t\t\t<Routeid>15954</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>40</Route>\n\t\t\t\t<Direction>E</Direction>\n\t\t\t\t<Updatetime>01:54
505
+ PM</Updatetime>\n\t\t\t\t<Vehicleid>6408</Vehicleid>\n\t\t\t\t<Block>5019</Block>\n\t\t\t\t<Adherance>0</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>19.06</Speed>\n\t\t\t\t<Heading>
506
+ 9</Heading>\n\t\t\t\t<Routeid>15994</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>40</Route>\n\t\t\t\t<Direction>E</Direction>\n\t\t\t\t<Updatetime>01:53
507
+ PM</Updatetime>\n\t\t\t\t<Vehicleid>6424</Vehicleid>\n\t\t\t\t<Block>5020</Block>\n\t\t\t\t<Adherance>-7</Adherance>\n\t\t\t\t<Adhchange>N</Adhchange>\n\t\t\t\t<Reliable>N</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>Y</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>0.00</Speed>\n\t\t\t\t<Heading>
508
+ 0</Heading>\n\t\t\t\t<Routeid>15994</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>40</Route>\n\t\t\t\t<Direction>W</Direction>\n\t\t\t\t<Updatetime>01:54
509
+ PM</Updatetime>\n\t\t\t\t<Vehicleid>6656</Vehicleid>\n\t\t\t\t<Block>5021</Block>\n\t\t\t\t<Adherance>2</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>15.69</Speed>\n\t\t\t\t<Heading>27</Heading>\n\t\t\t\t<Routeid>15998</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>40</Route>\n\t\t\t\t<Direction>W</Direction>\n\t\t\t\t<Updatetime>01:51
510
+ PM</Updatetime>\n\t\t\t\t<Vehicleid>6422</Vehicleid>\n\t\t\t\t<Block>5022</Block>\n\t\t\t\t<Adherance>0</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>12.69</Speed>\n\t\t\t\t<Heading>27</Heading>\n\t\t\t\t<Routeid>15998</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>40</Route>\n\t\t\t\t<Direction>E</Direction>\n\t\t\t\t<Updatetime>01:54
511
+ PM</Updatetime>\n\t\t\t\t<Vehicleid>6414</Vehicleid>\n\t\t\t\t<Block>5023</Block>\n\t\t\t\t<Adherance>-5</Adherance>\n\t\t\t\t<Adhchange>I</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>9.00</Speed>\n\t\t\t\t<Heading>
512
+ 9</Heading>\n\t\t\t\t<Routeid>15994</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>61</Route>\n\t\t\t\t<Direction>W</Direction>\n\t\t\t\t<Updatetime>01:54
513
+ PM</Updatetime>\n\t\t\t\t<Vehicleid>6448</Vehicleid>\n\t\t\t\t<Block>5026</Block>\n\t\t\t\t<Adherance>2</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>Y</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>0.06</Speed>\n\t\t\t\t<Heading>27</Heading>\n\t\t\t\t<Routeid>16222</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>61</Route>\n\t\t\t\t<Direction>E</Direction>\n\t\t\t\t<Updatetime>01:53
514
+ PM</Updatetime>\n\t\t\t\t<Vehicleid>6653</Vehicleid>\n\t\t\t\t<Block>5029</Block>\n\t\t\t\t<Adherance>-2</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>24.65</Speed>\n\t\t\t\t<Heading>
515
+ 9</Heading>\n\t\t\t\t<Routeid>16205</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>61</Route>\n\t\t\t\t<Direction>E</Direction>\n\t\t\t\t<Updatetime>01:54
516
+ PM</Updatetime>\n\t\t\t\t<Vehicleid>6426</Vehicleid>\n\t\t\t\t<Block>5031</Block>\n\t\t\t\t<Adherance>3</Adherance>\n\t\t\t\t<Adhchange>D</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>14.93</Speed>\n\t\t\t\t<Heading>
517
+ 9</Heading>\n\t\t\t\t<Routeid>16205</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>61</Route>\n\t\t\t\t<Direction>E</Direction>\n\t\t\t\t<Updatetime>01:54
518
+ PM</Updatetime>\n\t\t\t\t<Vehicleid>6651</Vehicleid>\n\t\t\t\t<Block>5032</Block>\n\t\t\t\t<Adherance>-1</Adherance>\n\t\t\t\t<Adhchange>D</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>13.66</Speed>\n\t\t\t\t<Heading>
519
+ 9</Heading>\n\t\t\t\t<Routeid>16205</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>61</Route>\n\t\t\t\t<Direction>W</Direction>\n\t\t\t\t<Updatetime>01:53
520
+ PM</Updatetime>\n\t\t\t\t<Vehicleid>6432</Vehicleid>\n\t\t\t\t<Block>5033</Block>\n\t\t\t\t<Adherance>1</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>15.08</Speed>\n\t\t\t\t<Heading>27</Heading>\n\t\t\t\t<Routeid>16224</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>112</Route>\n\t\t\t\t<Direction>S</Direction>\n\t\t\t\t<Updatetime>01:53
521
+ PM</Updatetime>\n\t\t\t\t<Vehicleid>6438</Vehicleid>\n\t\t\t\t<Block>5041</Block>\n\t\t\t\t<Adherance>0</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>28.86</Speed>\n\t\t\t\t<Heading>18</Heading>\n\t\t\t\t<Routeid>16527</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>112</Route>\n\t\t\t\t<Direction>S</Direction>\n\t\t\t\t<Updatetime>01:54
522
+ PM</Updatetime>\n\t\t\t\t<Vehicleid>6658</Vehicleid>\n\t\t\t\t<Block>5042</Block>\n\t\t\t\t<Adherance>-1</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>10.80</Speed>\n\t\t\t\t<Heading>20</Heading>\n\t\t\t\t<Routeid>16527</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>108</Route>\n\t\t\t\t<Direction>E</Direction>\n\t\t\t\t<Updatetime>01:54
523
+ PM</Updatetime>\n\t\t\t\t<Vehicleid>6415</Vehicleid>\n\t\t\t\t<Block>5044</Block>\n\t\t\t\t<Adherance>0</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>15.49</Speed>\n\t\t\t\t<Heading>
524
+ 6</Heading>\n\t\t\t\t<Routeid>16488</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>108</Route>\n\t\t\t\t<Direction>W</Direction>\n\t\t\t\t<Updatetime>01:54
525
+ PM</Updatetime>\n\t\t\t\t<Vehicleid>6665</Vehicleid>\n\t\t\t\t<Block>5045</Block>\n\t\t\t\t<Adherance>-3</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>23.23</Speed>\n\t\t\t\t<Heading>
526
+ 9</Heading>\n\t\t\t\t<Routeid>16505</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>156</Route>\n\t\t\t\t<Direction>W</Direction>\n\t\t\t\t<Updatetime>01:54
527
+ PM</Updatetime>\n\t\t\t\t<Vehicleid>6446</Vehicleid>\n\t\t\t\t<Block>5046</Block>\n\t\t\t\t<Adherance>5</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>Y</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>0.00</Speed>\n\t\t\t\t<Heading>
528
+ 0</Heading>\n\t\t\t\t<Routeid>16597</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>108</Route>\n\t\t\t\t<Direction>E</Direction>\n\t\t\t\t<Updatetime>01:53
529
+ PM</Updatetime>\n\t\t\t\t<Vehicleid>6655</Vehicleid>\n\t\t\t\t<Block>5047</Block>\n\t\t\t\t<Adherance>0</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>22.90</Speed>\n\t\t\t\t<Heading>36</Heading>\n\t\t\t\t<Routeid>16488</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>108</Route>\n\t\t\t\t<Direction>W</Direction>\n\t\t\t\t<Updatetime>01:53
530
+ PM</Updatetime>\n\t\t\t\t<Vehicleid>6423</Vehicleid>\n\t\t\t\t<Block>5048</Block>\n\t\t\t\t<Adherance>-2</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>23.73</Speed>\n\t\t\t\t<Heading>27</Heading>\n\t\t\t\t<Routeid>16503</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>112</Route>\n\t\t\t\t<Direction>N</Direction>\n\t\t\t\t<Updatetime>01:54
531
+ PM</Updatetime>\n\t\t\t\t<Vehicleid>6433</Vehicleid>\n\t\t\t\t<Block>5049</Block>\n\t\t\t\t<Adherance>1</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>17.25</Speed>\n\t\t\t\t<Heading>36</Heading>\n\t\t\t\t<Routeid>16517</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>104</Route>\n\t\t\t\t<Direction>S</Direction>\n\t\t\t\t<Updatetime>01:54
532
+ PM</Updatetime>\n\t\t\t\t<Vehicleid>6428</Vehicleid>\n\t\t\t\t<Block>5050</Block>\n\t\t\t\t<Adherance>1</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>9.32</Speed>\n\t\t\t\t<Heading>
533
+ 9</Heading>\n\t\t\t\t<Routeid>16448</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>112</Route>\n\t\t\t\t<Direction>N</Direction>\n\t\t\t\t<Updatetime>01:53
534
+ PM</Updatetime>\n\t\t\t\t<Vehicleid>6667</Vehicleid>\n\t\t\t\t<Block>5051</Block>\n\t\t\t\t<Adherance>0</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>13.06</Speed>\n\t\t\t\t<Heading>36</Heading>\n\t\t\t\t<Routeid>16517</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>104</Route>\n\t\t\t\t<Direction>N</Direction>\n\t\t\t\t<Updatetime>01:50
535
+ PM</Updatetime>\n\t\t\t\t<Vehicleid>6425</Vehicleid>\n\t\t\t\t<Block>5052</Block>\n\t\t\t\t<Adherance>4</Adherance>\n\t\t\t\t<Adhchange>I</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>4.34</Speed>\n\t\t\t\t<Heading>
536
+ 6</Heading>\n\t\t\t\t<Routeid>16444</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>104</Route>\n\t\t\t\t<Direction>S</Direction>\n\t\t\t\t<Updatetime>01:53
537
+ PM</Updatetime>\n\t\t\t\t<Vehicleid>6441</Vehicleid>\n\t\t\t\t<Block>5053</Block>\n\t\t\t\t<Adherance>0</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>27.49</Speed>\n\t\t\t\t<Heading>18</Heading>\n\t\t\t\t<Routeid>16448</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>120</Route>\n\t\t\t\t<Direction>S</Direction>\n\t\t\t\t<Updatetime>01:54
538
+ PM</Updatetime>\n\t\t\t\t<Vehicleid>6401</Vehicleid>\n\t\t\t\t<Block>5054</Block>\n\t\t\t\t<Adherance>0</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>8.36</Speed>\n\t\t\t\t<Heading>18</Heading>\n\t\t\t\t<Routeid>16533</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>120</Route>\n\t\t\t\t<Direction>N</Direction>\n\t\t\t\t<Updatetime>01:54
539
+ PM</Updatetime>\n\t\t\t\t<Vehicleid>6652</Vehicleid>\n\t\t\t\t<Block>5055</Block>\n\t\t\t\t<Adherance>-1</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>14.16</Speed>\n\t\t\t\t<Heading>12</Heading>\n\t\t\t\t<Routeid>16530</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>128</Route>\n\t\t\t\t<Direction>N</Direction>\n\t\t\t\t<Updatetime>01:53
540
+ PM</Updatetime>\n\t\t\t\t<Vehicleid>6439</Vehicleid>\n\t\t\t\t<Block>5056</Block>\n\t\t\t\t<Adherance>-1</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>12.40</Speed>\n\t\t\t\t<Heading>
541
+ 4</Heading>\n\t\t\t\t<Routeid>16544</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>128</Route>\n\t\t\t\t<Direction>S</Direction>\n\t\t\t\t<Updatetime>01:54
542
+ PM</Updatetime>\n\t\t\t\t<Vehicleid>6419</Vehicleid>\n\t\t\t\t<Block>5057</Block>\n\t\t\t\t<Adherance>9</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>19.55</Speed>\n\t\t\t\t<Heading>25</Heading>\n\t\t\t\t<Routeid>16547</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>136</Route>\n\t\t\t\t<Direction>S</Direction>\n\t\t\t\t<Updatetime>01:53
543
+ PM</Updatetime>\n\t\t\t\t<Vehicleid>6406</Vehicleid>\n\t\t\t\t<Block>5058</Block>\n\t\t\t\t<Adherance>-1</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>13.95</Speed>\n\t\t\t\t<Heading>18</Heading>\n\t\t\t\t<Routeid>16568</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>136</Route>\n\t\t\t\t<Direction>S</Direction>\n\t\t\t\t<Updatetime>01:54
544
+ PM</Updatetime>\n\t\t\t\t<Vehicleid>6417</Vehicleid>\n\t\t\t\t<Block>5060</Block>\n\t\t\t\t<Adherance>-2</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>Y</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>0.05</Speed>\n\t\t\t\t<Heading>
545
+ 0</Heading>\n\t\t\t\t<Routeid>16568</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>136</Route>\n\t\t\t\t<Direction>N</Direction>\n\t\t\t\t<Updatetime>01:51
546
+ PM</Updatetime>\n\t\t\t\t<Vehicleid>6407</Vehicleid>\n\t\t\t\t<Block>5061</Block>\n\t\t\t\t<Adherance>0</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>Y</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>0.05</Speed>\n\t\t\t\t<Heading>
547
+ 0</Heading>\n\t\t\t\t<Routeid>16556</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>156</Route>\n\t\t\t\t<Direction>E</Direction>\n\t\t\t\t<Updatetime>01:54
548
+ PM</Updatetime>\n\t\t\t\t<Vehicleid>6663</Vehicleid>\n\t\t\t\t<Block>5067</Block>\n\t\t\t\t<Adherance>0</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>16.11</Speed>\n\t\t\t\t<Heading>
549
+ 9</Heading>\n\t\t\t\t<Routeid>16590</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>156</Route>\n\t\t\t\t<Direction>W</Direction>\n\t\t\t\t<Updatetime>01:51
550
+ PM</Updatetime>\n\t\t\t\t<Vehicleid>6404</Vehicleid>\n\t\t\t\t<Block>5068</Block>\n\t\t\t\t<Adherance>-2</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>17.86</Speed>\n\t\t\t\t<Heading>36</Heading>\n\t\t\t\t<Routeid>16597</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>156</Route>\n\t\t\t\t<Direction>W</Direction>\n\t\t\t\t<Updatetime>01:54
551
+ PM</Updatetime>\n\t\t\t\t<Vehicleid>6410</Vehicleid>\n\t\t\t\t<Block>5069</Block>\n\t\t\t\t<Adherance>2</Adherance>\n\t\t\t\t<Adhchange>D</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>7.43</Speed>\n\t\t\t\t<Heading>27</Heading>\n\t\t\t\t<Routeid>16597</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>156</Route>\n\t\t\t\t<Direction>E</Direction>\n\t\t\t\t<Updatetime>01:54
552
+ PM</Updatetime>\n\t\t\t\t<Vehicleid>6416</Vehicleid>\n\t\t\t\t<Block>5070</Block>\n\t\t\t\t<Adherance>0</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>15.18</Speed>\n\t\t\t\t<Heading>
553
+ 5</Heading>\n\t\t\t\t<Routeid>16590</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>184</Route>\n\t\t\t\t<Direction>N</Direction>\n\t\t\t\t<Updatetime>01:54
554
+ PM</Updatetime>\n\t\t\t\t<Vehicleid>6666</Vehicleid>\n\t\t\t\t<Block>5071</Block>\n\t\t\t\t<Adherance>1</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>6.03</Speed>\n\t\t\t\t<Heading>36</Heading>\n\t\t\t\t<Routeid>16617</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>108</Route>\n\t\t\t\t<Direction>E</Direction>\n\t\t\t\t<Updatetime>01:54
555
+ PM</Updatetime>\n\t\t\t\t<Vehicleid>6654</Vehicleid>\n\t\t\t\t<Block>5072</Block>\n\t\t\t\t<Adherance>0</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>16.72</Speed>\n\t\t\t\t<Heading>
556
+ 9</Heading>\n\t\t\t\t<Routeid>16488</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>184</Route>\n\t\t\t\t<Direction>S</Direction>\n\t\t\t\t<Updatetime>01:49
557
+ PM</Updatetime>\n\t\t\t\t<Vehicleid>6449</Vehicleid>\n\t\t\t\t<Block>5073</Block>\n\t\t\t\t<Adherance>3</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>12.97</Speed>\n\t\t\t\t<Heading>18</Heading>\n\t\t\t\t<Routeid>16623</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>19</Route>\n\t\t\t\t<Direction>N</Direction>\n\t\t\t\t<Updatetime>01:54
558
+ PM</Updatetime>\n\t\t\t\t<Vehicleid>6308</Vehicleid>\n\t\t\t\t<Block>51</Block>\n\t\t\t\t<Adherance>-3</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>16.15</Speed>\n\t\t\t\t<Heading>36</Heading>\n\t\t\t\t<Routeid>15889</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>19</Route>\n\t\t\t\t<Direction>S</Direction>\n\t\t\t\t<Updatetime>01:53
559
+ PM</Updatetime>\n\t\t\t\t<Vehicleid>8051</Vehicleid>\n\t\t\t\t<Block>52</Block>\n\t\t\t\t<Adherance>-1</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>3.70</Speed>\n\t\t\t\t<Heading>25</Heading>\n\t\t\t\t<Routeid>15899</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>SSCR</Route>\n\t\t\t\t<Direction>E</Direction>\n\t\t\t\t<Updatetime>01:54
560
+ PM</Updatetime>\n\t\t\t\t<Vehicleid>1491</Vehicleid>\n\t\t\t\t<Block>528</Block>\n\t\t\t\t<Adherance>0</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>7.15</Speed>\n\t\t\t\t<Heading>
561
+ 7</Heading>\n\t\t\t\t<Routeid>16876</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>SSCR</Route>\n\t\t\t\t<Direction>W</Direction>\n\t\t\t\t<Updatetime>01:52
562
+ PM</Updatetime>\n\t\t\t\t<Vehicleid>1488</Vehicleid>\n\t\t\t\t<Block>529</Block>\n\t\t\t\t<Adherance>0</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>Y</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>0.00</Speed>\n\t\t\t\t<Heading>
563
+ 2</Heading>\n\t\t\t\t<Routeid>16880</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>19</Route>\n\t\t\t\t<Direction>S</Direction>\n\t\t\t\t<Updatetime>01:54
564
+ PM</Updatetime>\n\t\t\t\t<Vehicleid>6342</Vehicleid>\n\t\t\t\t<Block>53</Block>\n\t\t\t\t<Adherance>2</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>15.10</Speed>\n\t\t\t\t<Heading>18</Heading>\n\t\t\t\t<Routeid>15900</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>106</Route>\n\t\t\t\t<Direction>W</Direction>\n\t\t\t\t<Updatetime>01:51
565
+ PM</Updatetime>\n\t\t\t\t<Vehicleid>5079</Vehicleid>\n\t\t\t\t<Block>530</Block>\n\t\t\t\t<Adherance>0</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>9.52</Speed>\n\t\t\t\t<Heading>27</Heading>\n\t\t\t\t<Routeid>16469</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>138</Route>\n\t\t\t\t<Direction>E</Direction>\n\t\t\t\t<Updatetime>01:54
566
+ PM</Updatetime>\n\t\t\t\t<Vehicleid>5072</Vehicleid>\n\t\t\t\t<Block>531</Block>\n\t\t\t\t<Adherance>0</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>17.09</Speed>\n\t\t\t\t<Heading>
567
+ 9</Heading>\n\t\t\t\t<Routeid>16574</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>19</Route>\n\t\t\t\t<Direction>S</Direction>\n\t\t\t\t<Updatetime>01:53
568
+ PM</Updatetime>\n\t\t\t\t<Vehicleid>6376</Vehicleid>\n\t\t\t\t<Block>54</Block>\n\t\t\t\t<Adherance>0</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>9.44</Speed>\n\t\t\t\t<Heading>18</Heading>\n\t\t\t\t<Routeid>15900</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>7</Route>\n\t\t\t\t<Direction>N</Direction>\n\t\t\t\t<Updatetime>01:53
569
+ PM</Updatetime>\n\t\t\t\t<Vehicleid>6561</Vehicleid>\n\t\t\t\t<Block>6</Block>\n\t\t\t\t<Adherance>0</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>11.07</Speed>\n\t\t\t\t<Heading>36</Heading>\n\t\t\t\t<Routeid>15781</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>251</Route>\n\t\t\t\t<Direction>E</Direction>\n\t\t\t\t<Updatetime>01:54
570
+ PM</Updatetime>\n\t\t\t\t<Vehicleid>6499</Vehicleid>\n\t\t\t\t<Block>6030</Block>\n\t\t\t\t<Adherance>0</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>21.72</Speed>\n\t\t\t\t<Heading>
571
+ 9</Heading>\n\t\t\t\t<Routeid>16642</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>251</Route>\n\t\t\t\t<Direction>W</Direction>\n\t\t\t\t<Updatetime>01:54
572
+ PM</Updatetime>\n\t\t\t\t<Vehicleid>6500</Vehicleid>\n\t\t\t\t<Block>6031</Block>\n\t\t\t\t<Adherance>-13</Adherance>\n\t\t\t\t<Adhchange>I</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>9.85</Speed>\n\t\t\t\t<Heading>27</Heading>\n\t\t\t\t<Routeid>16646</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route></Route>\n\t\t\t\t<Direction>
573
+ </Direction>\n\t\t\t\t<Updatetime>01:51 PM</Updatetime>\n\t\t\t\t<Vehicleid>8057</Vehicleid>\n\t\t\t\t<Block>62</Block>\n\t\t\t\t<Adherance>-11</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>Y</Stopped>\n\t\t\t\t<Inservice>N</Inservice>\n\t\t\t\t<Speed>0.06</Speed>\n\t\t\t\t<Heading>
574
+ 0</Heading>\n\t\t\t\t<Routeid>0</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>35</Route>\n\t\t\t\t<Direction>S</Direction>\n\t\t\t\t<Updatetime>01:47
575
+ PM</Updatetime>\n\t\t\t\t<Vehicleid>6319</Vehicleid>\n\t\t\t\t<Block>64</Block>\n\t\t\t\t<Adherance>3</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>16.44</Speed>\n\t\t\t\t<Heading>18</Heading>\n\t\t\t\t<Routeid>15981</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>35</Route>\n\t\t\t\t<Direction>S</Direction>\n\t\t\t\t<Updatetime>01:53
576
+ PM</Updatetime>\n\t\t\t\t<Vehicleid>6317</Vehicleid>\n\t\t\t\t<Block>65</Block>\n\t\t\t\t<Adherance>-2</Adherance>\n\t\t\t\t<Adhchange>I</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>13.97</Speed>\n\t\t\t\t<Heading>18</Heading>\n\t\t\t\t<Routeid>15981</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>35</Route>\n\t\t\t\t<Direction>N</Direction>\n\t\t\t\t<Updatetime>01:52
577
+ PM</Updatetime>\n\t\t\t\t<Vehicleid>6099</Vehicleid>\n\t\t\t\t<Block>66</Block>\n\t\t\t\t<Adherance>4</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>17.07</Speed>\n\t\t\t\t<Heading>36</Heading>\n\t\t\t\t<Routeid>15975</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>35</Route>\n\t\t\t\t<Direction>S</Direction>\n\t\t\t\t<Updatetime>01:53
578
+ PM</Updatetime>\n\t\t\t\t<Vehicleid>6329</Vehicleid>\n\t\t\t\t<Block>67</Block>\n\t\t\t\t<Adherance>4</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>Y</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>0.00</Speed>\n\t\t\t\t<Heading>11</Heading>\n\t\t\t\t<Routeid>15981</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>35</Route>\n\t\t\t\t<Direction>N</Direction>\n\t\t\t\t<Updatetime>01:54
579
+ PM</Updatetime>\n\t\t\t\t<Vehicleid>6340</Vehicleid>\n\t\t\t\t<Block>68</Block>\n\t\t\t\t<Adherance>-5</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>17.02</Speed>\n\t\t\t\t<Heading>36</Heading>\n\t\t\t\t<Routeid>15976</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>35</Route>\n\t\t\t\t<Direction>S</Direction>\n\t\t\t\t<Updatetime>01:54
580
+ PM</Updatetime>\n\t\t\t\t<Vehicleid>8006</Vehicleid>\n\t\t\t\t<Block>69</Block>\n\t\t\t\t<Adherance>1</Adherance>\n\t\t\t\t<Adhchange>D</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>13.74</Speed>\n\t\t\t\t<Heading>18</Heading>\n\t\t\t\t<Routeid>15982</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>35</Route>\n\t\t\t\t<Direction>N</Direction>\n\t\t\t\t<Updatetime>01:54
581
+ PM</Updatetime>\n\t\t\t\t<Vehicleid>6289</Vehicleid>\n\t\t\t\t<Block>70</Block>\n\t\t\t\t<Adherance>-4</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>15.07</Speed>\n\t\t\t\t<Heading>36</Heading>\n\t\t\t\t<Routeid>15976</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>ALEX</Route>\n\t\t\t\t<Direction>W</Direction>\n\t\t\t\t<Updatetime>01:53
582
+ PM</Updatetime>\n\t\t\t\t<Vehicleid>1506</Vehicleid>\n\t\t\t\t<Block>7002</Block>\n\t\t\t\t<Adherance>-1</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>15.30</Speed>\n\t\t\t\t<Heading>19</Heading>\n\t\t\t\t<Routeid>16752</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>1</Route>\n\t\t\t\t<Direction>E</Direction>\n\t\t\t\t<Updatetime>01:53
583
+ PM</Updatetime>\n\t\t\t\t<Vehicleid>6595</Vehicleid>\n\t\t\t\t<Block>73</Block>\n\t\t\t\t<Adherance>10</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>Y</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>0.00</Speed>\n\t\t\t\t<Heading>
584
+ 9</Heading>\n\t\t\t\t<Routeid>15718</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>44</Route>\n\t\t\t\t<Direction>S</Direction>\n\t\t\t\t<Updatetime>01:53
585
+ PM</Updatetime>\n\t\t\t\t<Vehicleid>6321</Vehicleid>\n\t\t\t\t<Block>74</Block>\n\t\t\t\t<Adherance>1</Adherance>\n\t\t\t\t<Adhchange>D</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>5.33</Speed>\n\t\t\t\t<Heading>18</Heading>\n\t\t\t\t<Routeid>16039</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>44</Route>\n\t\t\t\t<Direction>S</Direction>\n\t\t\t\t<Updatetime>01:54
586
+ PM</Updatetime>\n\t\t\t\t<Vehicleid>6292</Vehicleid>\n\t\t\t\t<Block>75</Block>\n\t\t\t\t<Adherance>0</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>21.08</Speed>\n\t\t\t\t<Heading>19</Heading>\n\t\t\t\t<Routeid>16039</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>44</Route>\n\t\t\t\t<Direction>S</Direction>\n\t\t\t\t<Updatetime>01:51
587
+ PM</Updatetime>\n\t\t\t\t<Vehicleid>6554</Vehicleid>\n\t\t\t\t<Block>77</Block>\n\t\t\t\t<Adherance>2</Adherance>\n\t\t\t\t<Adhchange>D</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>Y</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>0.00</Speed>\n\t\t\t\t<Heading>
588
+ 0</Heading>\n\t\t\t\t<Routeid>16039</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route></Route>\n\t\t\t\t<Direction>
589
+ </Direction>\n\t\t\t\t<Updatetime>01:52 PM</Updatetime>\n\t\t\t\t<Vehicleid>8052</Vehicleid>\n\t\t\t\t<Block>79</Block>\n\t\t\t\t<Adherance>0</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>N</Inservice>\n\t\t\t\t<Speed>1.50</Speed>\n\t\t\t\t<Heading>
590
+ 0</Heading>\n\t\t\t\t<Routeid>0</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>7</Route>\n\t\t\t\t<Direction>S</Direction>\n\t\t\t\t<Updatetime>01:51
591
+ PM</Updatetime>\n\t\t\t\t<Vehicleid>6560</Vehicleid>\n\t\t\t\t<Block>8</Block>\n\t\t\t\t<Adherance>2</Adherance>\n\t\t\t\t<Adhchange>D</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>20.31</Speed>\n\t\t\t\t<Heading>18</Heading>\n\t\t\t\t<Routeid>15785</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>50</Route>\n\t\t\t\t<Direction>E</Direction>\n\t\t\t\t<Updatetime>01:50
592
+ PM</Updatetime>\n\t\t\t\t<Vehicleid>8008</Vehicleid>\n\t\t\t\t<Block>83</Block>\n\t\t\t\t<Adherance>2</Adherance>\n\t\t\t\t<Adhchange>I</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>7.08</Speed>\n\t\t\t\t<Heading>
593
+ 9</Heading>\n\t\t\t\t<Routeid>16098</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>50</Route>\n\t\t\t\t<Direction>W</Direction>\n\t\t\t\t<Updatetime>01:53
594
+ PM</Updatetime>\n\t\t\t\t<Vehicleid>8007</Vehicleid>\n\t\t\t\t<Block>85</Block>\n\t\t\t\t<Adherance>7</Adherance>\n\t\t\t\t<Adhchange>I</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>13.72</Speed>\n\t\t\t\t<Heading>27</Heading>\n\t\t\t\t<Routeid>16113</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>50</Route>\n\t\t\t\t<Direction>E</Direction>\n\t\t\t\t<Updatetime>01:54
595
+ PM</Updatetime>\n\t\t\t\t<Vehicleid>6533</Vehicleid>\n\t\t\t\t<Block>87</Block>\n\t\t\t\t<Adherance>0</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>11.93</Speed>\n\t\t\t\t<Heading>
596
+ 9</Heading>\n\t\t\t\t<Routeid>16098</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>7</Route>\n\t\t\t\t<Direction>N</Direction>\n\t\t\t\t<Updatetime>01:54
597
+ PM</Updatetime>\n\t\t\t\t<Vehicleid>6569</Vehicleid>\n\t\t\t\t<Block>9</Block>\n\t\t\t\t<Adherance>-1</Adherance>\n\t\t\t\t<Adhchange>D</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>Y</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>0.26</Speed>\n\t\t\t\t<Heading>36</Heading>\n\t\t\t\t<Routeid>15781</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>50</Route>\n\t\t\t\t<Direction>W</Direction>\n\t\t\t\t<Updatetime>01:53
598
+ PM</Updatetime>\n\t\t\t\t<Vehicleid>6027</Vehicleid>\n\t\t\t\t<Block>90</Block>\n\t\t\t\t<Adherance>3</Adherance>\n\t\t\t\t<Adhchange>D</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>16.82</Speed>\n\t\t\t\t<Heading>27</Heading>\n\t\t\t\t<Routeid>16114</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>50</Route>\n\t\t\t\t<Direction>E</Direction>\n\t\t\t\t<Updatetime>01:54
599
+ PM</Updatetime>\n\t\t\t\t<Vehicleid>6316</Vehicleid>\n\t\t\t\t<Block>93</Block>\n\t\t\t\t<Adherance>-3</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>15.86</Speed>\n\t\t\t\t<Heading>
600
+ 9</Heading>\n\t\t\t\t<Routeid>16098</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>50</Route>\n\t\t\t\t<Direction>W</Direction>\n\t\t\t\t<Updatetime>01:52
601
+ PM</Updatetime>\n\t\t\t\t<Vehicleid>6039</Vehicleid>\n\t\t\t\t<Block>94</Block>\n\t\t\t\t<Adherance>6</Adherance>\n\t\t\t\t<Adhchange>I</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>3.85</Speed>\n\t\t\t\t<Heading>27</Heading>\n\t\t\t\t<Routeid>16113</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>50</Route>\n\t\t\t\t<Direction>W</Direction>\n\t\t\t\t<Updatetime>01:50
602
+ PM</Updatetime>\n\t\t\t\t<Vehicleid>6290</Vehicleid>\n\t\t\t\t<Block>98</Block>\n\t\t\t\t<Adherance>0</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>0.00</Speed>\n\t\t\t\t<Heading>
603
+ 0</Heading>\n\t\t\t\t<Routeid>16112</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>50</Route>\n\t\t\t\t<Direction>W</Direction>\n\t\t\t\t<Updatetime>01:54
604
+ PM</Updatetime>\n\t\t\t\t<Vehicleid>6357</Vehicleid>\n\t\t\t\t<Block>99</Block>\n\t\t\t\t<Adherance>9</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>N</Offroute>\n\t\t\t\t<Stopped>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>35.30</Speed>\n\t\t\t\t<Heading>27</Heading>\n\t\t\t\t<Routeid>16111</Routeid>\n\t\t\t</Vehicle>\n\t\t</Vehicles>\n\t<Mapextents>0.000000,-112.362747,33.712769,0.000000</Mapextents>\n\t<Appid>WEB</Appid>\n\t<Requestor>68.226.126.17</Requestor>\n\t<Host>s-rpta-soap</Host>\n\t<Copyright>XML
605
+ schema Copyright (c) 2003-2014 Trapeze Software ULC, its subsidiaries and
606
+ affiliates. All rights reserved.</Copyright>\n\t<Soapversion>2.7.1a - 05/14/14</Soapversion>\n</namesp1:FleetlocationResponse></SOAP-ENV:Body></SOAP-ENV:Envelope>"
607
+ http_version:
608
+ recorded_at: Wed, 14 May 2014 20:55:30 GMT
609
+ recorded_with: VCR 2.8.0