ratis 3.4.3 → 3.5.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
 - data/.ruby-gemset +1 -0
 - data/.ruby-version +1 -0
 - data/CHANGELOG +40 -39
 - data/README.md +1 -15
 - data/lib/ratis/area.rb +1 -1
 - data/lib/ratis/config.rb +2 -4
 - data/lib/ratis/fleet_location.rb +2 -7
 - data/lib/ratis/landmark.rb +1 -4
 - data/lib/ratis/location.rb +1 -3
 - data/lib/ratis/location_type_ahead.rb +1 -4
 - data/lib/ratis/next_bus.rb +0 -2
 - data/lib/ratis/next_bus2.rb +1 -3
 - data/lib/ratis/plantrip.rb +1 -3
 - data/lib/ratis/request.rb +5 -2
 - data/lib/ratis/schedule_nearby.rb +1 -3
 - data/lib/ratis/timetable.rb +1 -5
 - data/lib/ratis/version.rb +1 -1
 - data/lib/ratis/walkstop.rb +1 -3
 - data/ratis.gemspec +15 -15
 - data/spec/ratis/area_spec.rb +1 -10
 - data/spec/ratis/closest_stop_spec.rb +0 -14
 - data/spec/ratis/config_spec.rb +21 -30
 - data/spec/ratis/core_ext_spec.rb +0 -11
 - data/spec/ratis/fleet_location_spec.rb +8 -25
 - data/spec/ratis/itinerary_spec.rb +0 -10
 - data/spec/ratis/landmark_category_spec.rb +1 -12
 - data/spec/ratis/landmark_spec.rb +12 -25
 - data/spec/ratis/location_spec.rb +5 -16
 - data/spec/ratis/location_type_ahead_item_spec.rb +11 -9
 - data/spec/ratis/location_type_ahead_spec.rb +7 -21
 - data/spec/ratis/next_bus2_spec.rb +67 -81
 - data/spec/ratis/next_bus_spec.rb +20 -37
 - data/spec/ratis/pattern_spec.rb +2 -10
 - data/spec/ratis/plantrip_spec.rb +19 -18
 - data/spec/ratis/point_2_point_spec.rb +3 -11
 - data/spec/ratis/request_spec.rb +1 -20
 - data/spec/ratis/route_pattern_spec.rb +2 -14
 - data/spec/ratis/route_spec.rb +1 -10
 - data/spec/ratis/route_stops_spec.rb +1 -10
 - data/spec/ratis/routes_spec.rb +1 -9
 - data/spec/ratis/schedule_nearby_spec.rb +1 -11
 - data/spec/ratis/timetable_spec.rb +24 -44
 - data/spec/ratis/walkstop_spec.rb +22 -47
 - data/spec/spec_helper.rb +4 -3
 - data/spec/support/vcr_cassettes/Nextbus2_running_LATE.yml +141 -1
 - data/spec/support/vcr_cassettes/Nextbus_running_LATE.yml +2 -2
 - data/spec/support/vcr_cassettes/Point2Point.yml +2 -2
 - data/spec/support/vcr_cassettes/Ratis_Area/_all/only_makes_one_request.yml +19 -9
 - data/spec/support/vcr_cassettes/Ratis_ClosestStop/_where/only_makes_one_request.yml +9 -9
 - data/spec/support/vcr_cassettes/Ratis_ClosestStop/_where/parses_out_the_stop_fields_correctly.yml +9 -9
 - data/spec/support/vcr_cassettes/Ratis_ClosestStop/_where/returns_multiple_locations.yml +9 -9
 - data/spec/support/vcr_cassettes/Ratis_ClosestStop/_where/should_return_a_collection_of_Ratis_Stop_s_.yml +9 -9
 - data/spec/support/vcr_cassettes/Ratis_FleetLocation/_current/only_makes_one_request.yml +661 -563
 - data/spec/support/vcr_cassettes/Ratis_FleetLocation/_current/parses_out_the_vehicle_fields_correctly.yml +661 -584
 - data/spec/support/vcr_cassettes/Ratis_FleetLocation/_current/returns_multiple_vehicles.yml +661 -575
 - data/spec/support/vcr_cassettes/Ratis_FleetLocation/_current/should_return_a_collection_of_Ratis_Vehicle_s_.yml +661 -575
 - data/spec/support/vcr_cassettes/Ratis_Landmark/_where/only_makes_one_request.yml +67 -1444
 - data/spec/support/vcr_cassettes/Ratis_Landmark/_where/parses_out_the_landmark_fields_correctly.yml +67 -1444
 - data/spec/support/vcr_cassettes/Ratis_Landmark/_where/returns_multiple_landmarks.yml +67 -1444
 - data/spec/support/vcr_cassettes/Ratis_Landmark/_where/should_return_a_collection_of_Ratis_Landmark_s_.yml +67 -1444
 - data/spec/support/vcr_cassettes/Ratis_LandmarkCategory/_all/only_makes_one_request.yml +9 -9
 - data/spec/support/vcr_cassettes/Ratis_LandmarkCategory/_all/should_return_a_collection_of_Ratis_LandmarkCategory_s_.yml +9 -9
 - data/spec/support/vcr_cassettes/Ratis_LandmarkCategory/_all/should_return_all_landmark_categories.yml +9 -9
 - data/spec/support/vcr_cassettes/Ratis_LandmarkCategory/_web_categories/does_something.yml +9 -9
 - data/spec/support/vcr_cassettes/Ratis_Location/_where/only_makes_one_request.yml +11 -11
 - data/spec/support/vcr_cassettes/Ratis_Location/_where/parses_out_fields_correctly.yml +11 -11
 - data/spec/support/vcr_cassettes/Ratis_Location/_where/should_return_a_collection_of_Ratis_Location_s_.yml +11 -11
 - data/spec/support/vcr_cassettes/Ratis_LocationTypeAhead/_where/only_makes_one_request.yml +10 -10
 - data/spec/support/vcr_cassettes/Ratis_LocationTypeAhead/_where/parses_out_fields_correctly.yml +10 -10
 - data/spec/support/vcr_cassettes/Ratis_LocationTypeAhead/_where/should_return_a_collection_of_Ratis_LocationTypeAheadItem_s_.yml +10 -10
 - data/spec/support/vcr_cassettes/Ratis_NextBus/_where/multiple_services_returned/only_makes_one_request.yml +29 -28
 - data/spec/support/vcr_cassettes/Ratis_NextBus/_where/multiple_services_returned/returns_the_next_4_bus_times.yml +29 -28
 - data/spec/support/vcr_cassettes/Ratis_NextBus/_where/multiple_services_returned/should_map_all_the_services_to_service_openstruct_objects.yml +29 -28
 - data/spec/support/vcr_cassettes/Ratis_NextBus/_where/multiple_services_returned/should_raise_error_if_datetime_condition_is_not_a_DateTime_or_Time.yml +62 -80
 - data/spec/support/vcr_cassettes/Ratis_NextBus/_where/single_service_return/only_makes_one_request.yml +18 -17
 - data/spec/support/vcr_cassettes/Ratis_NextBus/_where/single_service_return/returns_the_next_bus_times.yml +18 -17
 - data/spec/support/vcr_cassettes/Ratis_NextBus/_where/single_service_return/should_raise_error_if_datetime_condition_is_not_a_DateTime_or_Time.yml +52 -52
 - data/spec/support/vcr_cassettes/Ratis_NextBus/_where/single_service_return/should_set_all_the_service_values_to_instance_vars.yml +18 -17
 - data/spec/support/vcr_cassettes/Ratis_NextBus2/_where/runs/should_set_the_run_values_to_instance_vars.yml +125 -0
 - data/spec/support/vcr_cassettes/Ratis_NextBus2/_where/single_next_bus/only_makes_one_request.yml +125 -0
 - data/spec/support/vcr_cassettes/Ratis_NextBus2/_where/single_next_bus/requests_the_correct_SOAP_action.yml +125 -0
 - data/spec/support/vcr_cassettes/Ratis_NextBus2/_where/stops/should_set_the_stop_values_to_instance_vars.yml +125 -0
 - data/spec/support/vcr_cassettes/Ratis_Pattern/_all/only_makes_one_request.yml +12 -12
 - data/spec/support/vcr_cassettes/Ratis_Pattern/_all/should_parse_the_route_info_fields.yml +12 -12
 - data/spec/support/vcr_cassettes/Ratis_Pattern/_all/should_return_a_collection_Pattern_RouteInfo_s_.yml +12 -12
 - data/spec/support/vcr_cassettes/Ratis_Pattern/_all/should_return_no_data_error_when_date_is_in_the_past.yml +5 -5
 - data/spec/support/vcr_cassettes/Ratis_Plantrip/_where/creates_Ratis_Itineraries_for_each_trip_itinerary.yml +30 -30
 - data/spec/support/vcr_cassettes/Ratis_Plantrip/_where/only_makes_one_request.yml +30 -30
 - data/spec/support/vcr_cassettes/Ratis_Plantrip/_where/returns_a_Plantrip_object.yml +30 -30
 - data/spec/support/vcr_cassettes/Ratis_Plantrip/_where/should_set_all_the_Plantrip_values_to_instance_vars.yml +30 -30
 - data/spec/support/vcr_cassettes/Ratis_Point2Point/Routesonly_N/_where/gets_the_groups.yml +68 -74
 - data/spec/support/vcr_cassettes/Ratis_Point2Point/Routesonly_N/_where/gets_the_trips_within_each_group.yml +68 -74
 - data/spec/support/vcr_cassettes/Ratis_Point2Point/Routesonly_N/_where/only_makes_one_request.yml +68 -74
 - data/spec/support/vcr_cassettes/Ratis_Point2Point/Routesonly_N/_where/parses_out_the_off_stop_fields.yml +68 -74
 - data/spec/support/vcr_cassettes/Ratis_Point2Point/Routesonly_N/_where/parses_out_the_on_stop_fields.yml +68 -74
 - data/spec/support/vcr_cassettes/Ratis_Point2Point/Routesonly_N/_where/parses_out_the_service.yml +68 -74
 - data/spec/support/vcr_cassettes/Ratis_Point2Point/Routesonly_N/_where/parses_out_the_trip.yml +68 -74
 - data/spec/support/vcr_cassettes/Ratis_Point2Point/Routesonly_N/_where/should_only_return_result_groups_for_filtered_route.yml +15 -17
 - data/spec/support/vcr_cassettes/Ratis_Point2Point/Routesonly_N/_where/should_only_return_result_groups_for_filtered_routes.yml +19 -21
 - data/spec/support/vcr_cassettes/Ratis_Point2Point/Routesonly_N/_where/should_raise_error_if_the_trip_is_NOT_possible_for_a_route_being_attempted_to_filter_on.yml +5 -5
 - data/spec/support/vcr_cassettes/Ratis_Point2Point/Routesonly_Y/_where/services_from_origin_to_destination/only_makes_one_request.yml +29 -29
 - data/spec/support/vcr_cassettes/Ratis_Point2Point/Routesonly_Y/_where/services_from_origin_to_destination/parses_out_service_fields.yml +29 -29
 - data/spec/support/vcr_cassettes/Ratis_Point2Point/Routesonly_Y/_where/services_from_origin_to_destination/returns_a_routes_only_response_for_each_matched_service.yml +29 -29
 - data/spec/support/vcr_cassettes/Ratis_Point2Point/Routesonly_Y/_where/services_from_origin_to_destination/returns_all_matching_services_that_fit_the_origin/destination_for_a_given_time_frame.yml +29 -29
 - data/spec/support/vcr_cassettes/Ratis_Point2Point/Routesonly_Y/_where/services_from_origin_to_destination/should_NOT_filter_by_passed_in_routes.yml +29 -29
 - data/spec/support/vcr_cassettes/Ratis_RoutePattern/_where/only_makes_one_request.yml +133 -70
 - data/spec/support/vcr_cassettes/Ratis_RoutePattern/_where/should_parse_the_stop_fields.yml +133 -70
 - data/spec/support/vcr_cassettes/Ratis_RoutePattern/_where/should_return_a_collection_Ratis_RoutePattern_Point_s_.yml +132 -69
 - data/spec/support/vcr_cassettes/Ratis_RoutePattern/_where/should_return_a_collection_Ratis_RoutePattern_Stop_s_.yml +133 -70
 - data/spec/support/vcr_cassettes/Ratis_RouteStops/_all/only_makes_one_request.yml +50 -50
 - data/spec/support/vcr_cassettes/Ratis_RouteStops/_all/parses_out_the_stop_fields_correctly.yml +50 -50
 - data/spec/support/vcr_cassettes/Ratis_RouteStops/_all/should_return_a_collection_of_Ratis_RouteStops_Stop_s_.yml +50 -50
 - data/spec/support/vcr_cassettes/Ratis_Routes/_all/only_makes_one_request.yml +346 -370
 - data/spec/support/vcr_cassettes/Ratis_Routes/_all/returns_all_routes.yml +346 -370
 - data/spec/support/vcr_cassettes/Ratis_Routes/_all/should_set_directions_and_short_name_to_variables.yml +346 -370
 - data/spec/support/vcr_cassettes/Ratis_ScheduleNearby/_where/only_makes_one_request.yml +42 -41
 - data/spec/support/vcr_cassettes/Ratis_ScheduleNearby/_where/returns_a_non_nil_ScheduleNearby.yml +42 -41
 - data/spec/support/vcr_cassettes/Ratis_ScheduleNearby/_where/returns_a_single_service_at_the_stop.yml +42 -41
 - data/spec/support/vcr_cassettes/Ratis_ScheduleNearby/_where/returns_all_the_stops.yml +42 -41
 - data/spec/support/vcr_cassettes/Ratis_ScheduleNearby/_where/should_return_no_data_error_when_date_is_in_the_past.yml +5 -5
 - data/spec/support/vcr_cassettes/Ratis_Timetable/_where/ATIS_call/should_not_throw_a_500.yml +719 -0
 - data/spec/support/vcr_cassettes/Ratis_Timetable/_where/only_makes_one_request.yml +315 -315
 - data/spec/support/vcr_cassettes/Ratis_Timetable/_where/should_parse_the_timetable/stop/trip_fields.yml +315 -315
 - data/spec/support/vcr_cassettes/Ratis_Timetable/_where/should_return_a_collection_Timetable_Stop_s_.yml +315 -315
 - data/spec/support/vcr_cassettes/Ratis_Walkstop/_where/only_makes_one_request.yml +9 -9
 - data/spec/support/vcr_cassettes/Ratis_Walkstop/_where/should_set_all_the_walkstop_values_to_instance_vars.yml +9 -9
 - metadata +9 -9
 - data/.rvmrc +0 -1
 - data/spec/support/vcr_cassettes/Ratis_LocationTypeAhead/_where/should_return_a_collection_of_Ratis_Location_s_.yml +0 -54
 - data/spec/support/vcr_cassettes/Ratis_NextBus2/_where/Developer_can_find_a_late_bus_to_a_stop/runs/should_set_the_run_values_to_instance_vars.yml +0 -180
 - data/spec/support/vcr_cassettes/Ratis_NextBus2/_where/Developer_can_find_a_late_bus_to_a_stop/single_next_bus/only_makes_one_request.yml +0 -180
 - data/spec/support/vcr_cassettes/Ratis_NextBus2/_where/Developer_can_find_a_late_bus_to_a_stop/single_next_bus/requests_the_correct_SOAP_action.yml +0 -180
 - data/spec/support/vcr_cassettes/Ratis_NextBus2/_where/Developer_can_find_a_late_bus_to_a_stop/stops/should_set_the_stop_values_to_instance_vars.yml +0 -180
 
| 
         @@ -8,14 +8,14 @@ http_interactions: 
     | 
|
| 
       8 
8 
     | 
    
         
             
                  string: <?xml version="1.0" encoding="UTF-8"?><env:Envelope xmlns:xsd="http://www.w3.org/2001/XMLSchema"
         
     | 
| 
       9 
9 
     | 
    
         
             
                    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:wsdl="PX_WEB"
         
     | 
| 
       10 
10 
     | 
    
         
             
                    xmlns:env="http://schemas.xmlsoap.org/soap/envelope/"><env:Body><Fleetlocation
         
     | 
| 
       11 
     | 
    
         
            -
                    xmlns="PX_WEB"><Appid> 
     | 
| 
      
 11 
     | 
    
         
            +
                    xmlns="PX_WEB"><Appid>ratis-specs</Appid></Fleetlocation></env:Body></env:Envelope>
         
     | 
| 
       12 
12 
     | 
    
         
             
                headers:
         
     | 
| 
       13 
13 
     | 
    
         
             
                  Soapaction:
         
     | 
| 
       14 
14 
     | 
    
         
             
                  - '"PX_WEB#Fleetlocation"'
         
     | 
| 
       15 
15 
     | 
    
         
             
                  Content-Type:
         
     | 
| 
       16 
16 
     | 
    
         
             
                  - text/xml;charset=UTF-8
         
     | 
| 
       17 
17 
     | 
    
         
             
                  Content-Length:
         
     | 
| 
       18 
     | 
    
         
            -
                  - ' 
     | 
| 
      
 18 
     | 
    
         
            +
                  - '333'
         
     | 
| 
       19 
19 
     | 
    
         
             
                  Accept-Encoding:
         
     | 
| 
       20 
20 
     | 
    
         
             
                  - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
         
     | 
| 
       21 
21 
     | 
    
         
             
                  Accept:
         
     | 
| 
         @@ -28,13 +28,13 @@ http_interactions: 
     | 
|
| 
       28 
28 
     | 
    
         
             
                  message: OK
         
     | 
| 
       29 
29 
     | 
    
         
             
                headers:
         
     | 
| 
       30 
30 
     | 
    
         
             
                  Date:
         
     | 
| 
       31 
     | 
    
         
            -
                  -  
     | 
| 
      
 31 
     | 
    
         
            +
                  - Sat, 14 Jun 2014 00:39:20 GMT
         
     | 
| 
       32 
32 
     | 
    
         
             
                  Server:
         
     | 
| 
       33 
33 
     | 
    
         
             
                  - Apache/2.2.3 (CentOS)
         
     | 
| 
       34 
34 
     | 
    
         
             
                  Soapserver:
         
     | 
| 
       35 
35 
     | 
    
         
             
                  - SOAP::Lite/Perl/0.55
         
     | 
| 
       36 
36 
     | 
    
         
             
                  Content-Length:
         
     | 
| 
       37 
     | 
    
         
            -
                  - ' 
     | 
| 
      
 37 
     | 
    
         
            +
                  - '196695'
         
     | 
| 
       38 
38 
     | 
    
         
             
                  Connection:
         
     | 
| 
       39 
39 
     | 
    
         
             
                  - close
         
     | 
| 
       40 
40 
     | 
    
         
             
                  Content-Type:
         
     | 
| 
         @@ -44,587 +44,664 @@ http_interactions: 
     | 
|
| 
       44 
44 
     | 
    
         
             
                  string: "<?xml version=\"1.0\" encoding=\"UTF-8\"?><SOAP-ENV:Envelope xmlns:xsi=\"http://www.w3.org/1999/XMLSchema-instance\"
         
     | 
| 
       45 
45 
     | 
    
         
             
                    xmlns:SOAP-ENC=\"http://schemas.xmlsoap.org/soap/encoding/\" xmlns:SOAP-ENV=\"http://schemas.xmlsoap.org/soap/envelope/\"
         
     | 
| 
       46 
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>E</Direction>\n\t\t\t\t<Updatetime> 
     | 
| 
       48 
     | 
    
         
            -
                    PM</Updatetime>\n\t\t\t\t<Vehicleid> 
     | 
| 
       49 
     | 
    
         
            -
                    9</Heading>\n\t\t\t\t<Routeid> 
     | 
| 
       50 
     | 
    
         
            -
                    PM</Updatetime>\n\t\t\t\t<Vehicleid> 
     | 
| 
       51 
     | 
    
         
            -
                    0</Heading>\n\t\t\t\t<Routeid> 
     | 
| 
       52 
     | 
    
         
            -
                    PM</Updatetime>\n\t\t\t\t<Vehicleid> 
     | 
| 
       53 
     | 
    
         
            -
                    9</Heading>\n\t\t\t\t<Routeid> 
     | 
| 
       54 
     | 
    
         
            -
                    PM</Updatetime>\n\t\t\t\t<Vehicleid> 
     | 
| 
       55 
     | 
    
         
            -
                    9</Heading>\n\t\t\t\t<Routeid> 
     | 
| 
       56 
     | 
    
         
            -
                    PM</Updatetime>\n\t\t\t\t<Vehicleid> 
     | 
| 
       57 
     | 
    
         
            -
                    PM</Updatetime>\n\t\t\t\t<Vehicleid> 
     | 
| 
       58 
     | 
    
         
            -
                     
     | 
| 
       59 
     | 
    
         
            -
                     
     | 
| 
       60 
     | 
    
         
            -
                    PM</Updatetime>\n\t\t\t\t<Vehicleid> 
     | 
| 
       61 
     | 
    
         
            -
                     
     | 
| 
       62 
     | 
    
         
            -
                     
     | 
| 
       63 
     | 
    
         
            -
                    PM</Updatetime>\n\t\t\t\t<Vehicleid> 
     | 
| 
       64 
     | 
    
         
            -
                     
     | 
| 
       65 
     | 
    
         
            -
                     
     | 
| 
       66 
     | 
    
         
            -
                     
     | 
| 
       67 
     | 
    
         
            -
                    PM</Updatetime>\n\t\t\t\t<Vehicleid> 
     | 
| 
       68 
     | 
    
         
            -
                    PM</Updatetime>\n\t\t\t\t<Vehicleid> 
     | 
| 
       69 
     | 
    
         
            -
                    PM</Updatetime>\n\t\t\t\t<Vehicleid> 
     | 
| 
       70 
     | 
    
         
            -
                     
     | 
| 
       71 
     | 
    
         
            -
                    PM</Updatetime>\n\t\t\t\t<Vehicleid> 
     | 
| 
       72 
     | 
    
         
            -
                     
     | 
| 
       73 
     | 
    
         
            -
                     
     | 
| 
       74 
     | 
    
         
            -
                    PM</Updatetime>\n\t\t\t\t<Vehicleid> 
     | 
| 
       75 
     | 
    
         
            -
                     
     | 
| 
       76 
     | 
    
         
            -
                    PM</Updatetime>\n\t\t\t\t<Vehicleid> 
     | 
| 
       77 
     | 
    
         
            -
                     
     | 
| 
       78 
     | 
    
         
            -
                     
     | 
| 
       79 
     | 
    
         
            -
                     
     | 
| 
       80 
     | 
    
         
            -
                     
     | 
| 
       81 
     | 
    
         
            -
                    PM</Updatetime>\n\t\t\t\t<Vehicleid> 
     | 
| 
       82 
     | 
    
         
            -
                    PM</Updatetime>\n\t\t\t\t<Vehicleid> 
     | 
| 
       83 
     | 
    
         
            -
                     
     | 
| 
       84 
     | 
    
         
            -
                     
     | 
| 
       85 
     | 
    
         
            -
                    PM</Updatetime>\n\t\t\t\t<Vehicleid> 
     | 
| 
       86 
     | 
    
         
            -
                     
     | 
| 
       87 
     | 
    
         
            -
                    PM</Updatetime>\n\t\t\t\t<Vehicleid> 
     | 
| 
       88 
     | 
    
         
            -
                    PM</Updatetime>\n\t\t\t\t<Vehicleid> 
     | 
| 
       89 
     | 
    
         
            -
                     
     | 
| 
       90 
     | 
    
         
            -
                     
     | 
| 
       91 
     | 
    
         
            -
                    PM</Updatetime>\n\t\t\t\t<Vehicleid> 
     | 
| 
       92 
     | 
    
         
            -
                    0</Heading>\n\t\t\t\t<Routeid> 
     | 
| 
       93 
     | 
    
         
            -
                    PM</Updatetime>\n\t\t\t\t<Vehicleid> 
     | 
| 
       94 
     | 
    
         
            -
                    PM</Updatetime>\n\t\t\t\t<Vehicleid> 
     | 
| 
       95 
     | 
    
         
            -
                     
     | 
| 
       96 
     | 
    
         
            -
                    PM</Updatetime>\n\t\t\t\t<Vehicleid> 
     | 
| 
       97 
     | 
    
         
            -
                     
     | 
| 
       98 
     | 
    
         
            -
                    PM</Updatetime>\n\t\t\t\t<Vehicleid> 
     | 
| 
       99 
     | 
    
         
            -
                     
     | 
| 
       100 
     | 
    
         
            -
                    PM</Updatetime>\n\t\t\t\t<Vehicleid> 
     | 
| 
       101 
     | 
    
         
            -
                     
     | 
| 
       102 
     | 
    
         
            -
                     
     | 
| 
       103 
     | 
    
         
            -
                    PM</Updatetime>\n\t\t\t\t<Vehicleid> 
     | 
| 
       104 
     | 
    
         
            -
                    0</Heading>\n\t\t\t\t<Routeid> 
     | 
| 
       105 
     | 
    
         
            -
                    PM</Updatetime>\n\t\t\t\t<Vehicleid> 
     | 
| 
       106 
     | 
    
         
            -
                    PM</Updatetime>\n\t\t\t\t<Vehicleid> 
     | 
| 
       107 
     | 
    
         
            -
                     
     | 
| 
       108 
     | 
    
         
            -
                    PM</Updatetime>\n\t\t\t\t<Vehicleid> 
     | 
| 
       109 
     | 
    
         
            -
                     
     | 
| 
       110 
     | 
    
         
            -
                    PM</Updatetime>\n\t\t\t\t<Vehicleid> 
     | 
| 
       111 
     | 
    
         
            -
                    0</ 
     | 
| 
       112 
     | 
    
         
            -
                     
     | 
| 
       113 
     | 
    
         
            -
                    PM</Updatetime>\n\t\t\t\t<Vehicleid> 
     | 
| 
       114 
     | 
    
         
            -
                     
     | 
| 
       115 
     | 
    
         
            -
                     
     | 
| 
       116 
     | 
    
         
            -
                    PM</Updatetime>\n\t\t\t\t<Vehicleid> 
     | 
| 
       117 
     | 
    
         
            -
                     
     | 
| 
       118 
     | 
    
         
            -
                    PM</Updatetime>\n\t\t\t\t<Vehicleid> 
     | 
| 
       119 
     | 
    
         
            -
                     
     | 
| 
       120 
     | 
    
         
            -
                    PM</Updatetime>\n\t\t\t\t<Vehicleid> 
     | 
| 
       121 
     | 
    
         
            -
                     
     | 
| 
       122 
     | 
    
         
            -
                    PM</Updatetime>\n\t\t\t\t<Vehicleid> 
     | 
| 
       123 
     | 
    
         
            -
                    PM</Updatetime>\n\t\t\t\t<Vehicleid> 
     | 
| 
       124 
     | 
    
         
            -
                     
     | 
| 
       125 
     | 
    
         
            -
                    PM</Updatetime>\n\t\t\t\t<Vehicleid> 
     | 
| 
       126 
     | 
    
         
            -
                     
     | 
| 
       127 
     | 
    
         
            -
                     
     | 
| 
       128 
     | 
    
         
            -
                     
     | 
| 
       129 
     | 
    
         
            -
                     
     | 
| 
       130 
     | 
    
         
            -
                    0</Heading>\n\t\t\t\t<Routeid> 
     | 
| 
       131 
     | 
    
         
            -
                    PM</Updatetime>\n\t\t\t\t<Vehicleid> 
     | 
| 
       132 
     | 
    
         
            -
                    PM</Updatetime>\n\t\t\t\t<Vehicleid> 
     | 
| 
       133 
     | 
    
         
            -
                    PM</Updatetime>\n\t\t\t\t<Vehicleid> 
     | 
| 
       134 
     | 
    
         
            -
                     
     | 
| 
       135 
     | 
    
         
            -
                    PM</Updatetime>\n\t\t\t\t<Vehicleid> 
     | 
| 
       136 
     | 
    
         
            -
                     
     | 
| 
       137 
     | 
    
         
            -
                    PM</Updatetime>\n\t\t\t\t<Vehicleid> 
     | 
| 
       138 
     | 
    
         
            -
                    PM</Updatetime>\n\t\t\t\t<Vehicleid> 
     | 
| 
       139 
     | 
    
         
            -
                    PM</Updatetime>\n\t\t\t\t<Vehicleid> 
     | 
| 
       140 
     | 
    
         
            -
                     
     | 
| 
       141 
     | 
    
         
            -
                    PM</Updatetime>\n\t\t\t\t<Vehicleid> 
     | 
| 
       142 
     | 
    
         
            -
                     
     | 
| 
       143 
     | 
    
         
            -
                    PM</Updatetime>\n\t\t\t\t<Vehicleid> 
     | 
| 
       144 
     | 
    
         
            -
                     
     | 
| 
       145 
     | 
    
         
            -
                     
     | 
| 
       146 
     | 
    
         
            -
                    PM</Updatetime>\n\t\t\t\t<Vehicleid> 
     | 
| 
       147 
     | 
    
         
            -
                    9</Heading>\n\t\t\t\t<Routeid> 
     | 
| 
       148 
     | 
    
         
            -
                    PM</Updatetime>\n\t\t\t\t<Vehicleid> 
     | 
| 
       149 
     | 
    
         
            -
                     
     | 
| 
       150 
     | 
    
         
            -
                    PM</Updatetime>\n\t\t\t\t<Vehicleid> 
     | 
| 
       151 
     | 
    
         
            -
                     
     | 
| 
       152 
     | 
    
         
            -
                    </ 
     | 
| 
       153 
     | 
    
         
            -
                     
     | 
| 
       154 
     | 
    
         
            -
                     
     | 
| 
       155 
     | 
    
         
            -
                     
     | 
| 
       156 
     | 
    
         
            -
                     
     | 
| 
       157 
     | 
    
         
            -
                     
     | 
| 
       158 
     | 
    
         
            -
                    0</Heading>\n\t\t\t\t<Routeid> 
     | 
| 
       159 
     | 
    
         
            -
                    PM</Updatetime>\n\t\t\t\t<Vehicleid> 
     | 
| 
       160 
     | 
    
         
            -
                    PM</Updatetime>\n\t\t\t\t<Vehicleid> 
     | 
| 
       161 
     | 
    
         
            -
                     
     | 
| 
       162 
     | 
    
         
            -
                     
     | 
| 
       163 
     | 
    
         
            -
                     
     | 
| 
       164 
     | 
    
         
            -
                     
     | 
| 
       165 
     | 
    
         
            -
                    PM</Updatetime>\n\t\t\t\t<Vehicleid> 
     | 
| 
       166 
     | 
    
         
            -
                     
     | 
| 
       167 
     | 
    
         
            -
                    PM</Updatetime>\n\t\t\t\t<Vehicleid> 
     | 
| 
       168 
     | 
    
         
            -
                    PM</Updatetime>\n\t\t\t\t<Vehicleid> 
     | 
| 
       169 
     | 
    
         
            -
                     
     | 
| 
       170 
     | 
    
         
            -
                    PM</Updatetime>\n\t\t\t\t<Vehicleid> 
     | 
| 
       171 
     | 
    
         
            -
                     
     | 
| 
       172 
     | 
    
         
            -
                     
     | 
| 
       173 
     | 
    
         
            -
                    PM</Updatetime>\n\t\t\t\t<Vehicleid> 
     | 
| 
       174 
     | 
    
         
            -
                     
     | 
| 
       175 
     | 
    
         
            -
                    PM</Updatetime>\n\t\t\t\t<Vehicleid> 
     | 
| 
       176 
     | 
    
         
            -
                     
     | 
| 
       177 
     | 
    
         
            -
                     
     | 
| 
       178 
     | 
    
         
            -
                     
     | 
| 
       179 
     | 
    
         
            -
                     
     | 
| 
       180 
     | 
    
         
            -
                     
     | 
| 
       181 
     | 
    
         
            -
                     
     | 
| 
       182 
     | 
    
         
            -
                    PM</Updatetime>\n\t\t\t\t<Vehicleid> 
     | 
| 
       183 
     | 
    
         
            -
                     
     | 
| 
       184 
     | 
    
         
            -
                    PM</Updatetime>\n\t\t\t\t<Vehicleid> 
     | 
| 
       185 
     | 
    
         
            -
                     
     | 
| 
       186 
     | 
    
         
            -
                    PM</Updatetime>\n\t\t\t\t<Vehicleid> 
     | 
| 
       187 
     | 
    
         
            -
                    9</Heading>\n\t\t\t\t<Routeid> 
     | 
| 
       188 
     | 
    
         
            -
                    PM</Updatetime>\n\t\t\t\t<Vehicleid> 
     | 
| 
       189 
     | 
    
         
            -
                     
     | 
| 
       190 
     | 
    
         
            -
                     
     | 
| 
       191 
     | 
    
         
            -
                     
     | 
| 
       192 
     | 
    
         
            -
                     
     | 
| 
       193 
     | 
    
         
            -
                    PM</Updatetime>\n\t\t\t\t<Vehicleid> 
     | 
| 
       194 
     | 
    
         
            -
                     
     | 
| 
       195 
     | 
    
         
            -
                     
     | 
| 
       196 
     | 
    
         
            -
                    PM</Updatetime>\n\t\t\t\t<Vehicleid> 
     | 
| 
       197 
     | 
    
         
            -
                    PM</Updatetime>\n\t\t\t\t<Vehicleid> 
     | 
| 
       198 
     | 
    
         
            -
                    9</Heading>\n\t\t\t\t<Routeid> 
     | 
| 
       199 
     | 
    
         
            -
                    PM</Updatetime>\n\t\t\t\t<Vehicleid> 
     | 
| 
       200 
     | 
    
         
            -
                     
     | 
| 
       201 
     | 
    
         
            -
                    PM</Updatetime>\n\t\t\t\t<Vehicleid> 
     | 
| 
       202 
     | 
    
         
            -
                    9</Heading>\n\t\t\t\t<Routeid> 
     | 
| 
       203 
     | 
    
         
            -
                    PM</Updatetime>\n\t\t\t\t<Vehicleid> 
     | 
| 
       204 
     | 
    
         
            -
                     
     | 
| 
       205 
     | 
    
         
            -
                    PM</Updatetime>\n\t\t\t\t<Vehicleid> 
     | 
| 
       206 
     | 
    
         
            -
                     
     | 
| 
       207 
     | 
    
         
            -
                    PM</Updatetime>\n\t\t\t\t<Vehicleid> 
     | 
| 
       208 
     | 
    
         
            -
                    0</Heading>\n\t\t\t\t<Routeid> 
     | 
| 
       209 
     | 
    
         
            -
                    PM</Updatetime>\n\t\t\t\t<Vehicleid> 
     | 
| 
       210 
     | 
    
         
            -
                     
     | 
| 
       211 
     | 
    
         
            -
                    PM</Updatetime>\n\t\t\t\t<Vehicleid> 
     | 
| 
       212 
     | 
    
         
            -
                     
     | 
| 
       213 
     | 
    
         
            -
                     
     | 
| 
       214 
     | 
    
         
            -
                     
     | 
| 
       215 
     | 
    
         
            -
                     
     | 
| 
       216 
     | 
    
         
            -
                    PM</Updatetime>\n\t\t\t\t<Vehicleid> 
     | 
| 
       217 
     | 
    
         
            -
                    PM</Updatetime>\n\t\t\t\t<Vehicleid> 
     | 
| 
       218 
     | 
    
         
            -
                     
     | 
| 
       219 
     | 
    
         
            -
                     
     | 
| 
       220 
     | 
    
         
            -
                     
     | 
| 
       221 
     | 
    
         
            -
                    PM</Updatetime>\n\t\t\t\t<Vehicleid> 
     | 
| 
       222 
     | 
    
         
            -
                     
     | 
| 
       223 
     | 
    
         
            -
                     
     | 
| 
       224 
     | 
    
         
            -
                     
     | 
| 
       225 
     | 
    
         
            -
                     
     | 
| 
       226 
     | 
    
         
            -
                    PM</Updatetime>\n\t\t\t\t<Vehicleid> 
     | 
| 
       227 
     | 
    
         
            -
                    PM</Updatetime>\n\t\t\t\t<Vehicleid> 
     | 
| 
       228 
     | 
    
         
            -
                     
     | 
| 
       229 
     | 
    
         
            -
                     
     | 
| 
       230 
     | 
    
         
            -
                    PM</Updatetime>\n\t\t\t\t<Vehicleid> 
     | 
| 
       231 
     | 
    
         
            -
                     
     | 
| 
       232 
     | 
    
         
            -
                     
     | 
| 
       233 
     | 
    
         
            -
                    PM</Updatetime>\n\t\t\t\t<Vehicleid> 
     | 
| 
       234 
     | 
    
         
            -
                     
     | 
| 
       235 
     | 
    
         
            -
                    PM</Updatetime>\n\t\t\t\t<Vehicleid> 
     | 
| 
       236 
     | 
    
         
            -
                     
     | 
| 
       237 
     | 
    
         
            -
                     
     | 
| 
       238 
     | 
    
         
            -
                    0</ 
     | 
| 
       239 
     | 
    
         
            -
                     
     | 
| 
       240 
     | 
    
         
            -
                     
     | 
| 
       241 
     | 
    
         
            -
                    </Direction>\n\t\t\t\t<Updatetime> 
     | 
| 
       242 
     | 
    
         
            -
                    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> 
     | 
| 
       243 
     | 
    
         
            -
                    PM</Updatetime>\n\t\t\t\t<Vehicleid> 
     | 
| 
       244 
     | 
    
         
            -
                     
     | 
| 
       245 
     | 
    
         
            -
                     
     | 
| 
       246 
     | 
    
         
            -
                     
     | 
| 
       247 
     | 
    
         
            -
                     
     | 
| 
       248 
     | 
    
         
            -
                     
     | 
| 
       249 
     | 
    
         
            -
                    PM</Updatetime>\n\t\t\t\t<Vehicleid> 
     | 
| 
       250 
     | 
    
         
            -
                    PM</Updatetime>\n\t\t\t\t<Vehicleid> 
     | 
| 
       251 
     | 
    
         
            -
                     
     | 
| 
       252 
     | 
    
         
            -
                    PM</Updatetime>\n\t\t\t\t<Vehicleid> 
     | 
| 
       253 
     | 
    
         
            -
                     
     | 
| 
       254 
     | 
    
         
            -
                    PM</Updatetime>\n\t\t\t\t<Vehicleid> 
     | 
| 
       255 
     | 
    
         
            -
                    PM</Updatetime>\n\t\t\t\t<Vehicleid> 
     | 
| 
       256 
     | 
    
         
            -
                     
     | 
| 
       257 
     | 
    
         
            -
                    PM</Updatetime>\n\t\t\t\t<Vehicleid> 
     | 
| 
       258 
     | 
    
         
            -
                     
     | 
| 
       259 
     | 
    
         
            -
                    PM</Updatetime>\n\t\t\t\t<Vehicleid> 
     | 
| 
       260 
     | 
    
         
            -
                     
     | 
| 
       261 
     | 
    
         
            -
                    PM</Updatetime>\n\t\t\t\t<Vehicleid> 
     | 
| 
       262 
     | 
    
         
            -
                    PM</Updatetime>\n\t\t\t\t<Vehicleid> 
     | 
| 
       263 
     | 
    
         
            -
                    PM</Updatetime>\n\t\t\t\t<Vehicleid> 
     | 
| 
       264 
     | 
    
         
            -
                     
     | 
| 
       265 
     | 
    
         
            -
                     
     | 
| 
       266 
     | 
    
         
            -
                     
     | 
| 
       267 
     | 
    
         
            -
                    PM</Updatetime>\n\t\t\t\t<Vehicleid> 
     | 
| 
       268 
     | 
    
         
            -
                    PM</Updatetime>\n\t\t\t\t<Vehicleid> 
     | 
| 
       269 
     | 
    
         
            -
                    PM</Updatetime>\n\t\t\t\t<Vehicleid> 
     | 
| 
       270 
     | 
    
         
            -
                     
     | 
| 
       271 
     | 
    
         
            -
                    PM</Updatetime>\n\t\t\t\t<Vehicleid> 
     | 
| 
       272 
     | 
    
         
            -
                    PM</Updatetime>\n\t\t\t\t<Vehicleid> 
     | 
| 
       273 
     | 
    
         
            -
                     
     | 
| 
       274 
     | 
    
         
            -
                    PM</Updatetime>\n\t\t\t\t<Vehicleid> 
     | 
| 
       275 
     | 
    
         
            -
                    PM</Updatetime>\n\t\t\t\t<Vehicleid> 
     | 
| 
       276 
     | 
    
         
            -
                    0</Heading>\n\t\t\t\t<Routeid> 
     | 
| 
       277 
     | 
    
         
            -
                    PM</Updatetime>\n\t\t\t\t<Vehicleid> 
     | 
| 
       278 
     | 
    
         
            -
                     
     | 
| 
       279 
     | 
    
         
            -
                    PM</Updatetime>\n\t\t\t\t<Vehicleid> 
     | 
| 
       280 
     | 
    
         
            -
                     
     | 
| 
       281 
     | 
    
         
            -
                     
     | 
| 
       282 
     | 
    
         
            -
                    PM</Updatetime>\n\t\t\t\t<Vehicleid> 
     | 
| 
       283 
     | 
    
         
            -
                     
     | 
| 
       284 
     | 
    
         
            -
                     
     | 
| 
       285 
     | 
    
         
            -
                    PM</Updatetime>\n\t\t\t\t<Vehicleid> 
     | 
| 
       286 
     | 
    
         
            -
                     
     | 
| 
       287 
     | 
    
         
            -
                     
     | 
| 
       288 
     | 
    
         
            -
                    PM</Updatetime>\n\t\t\t\t<Vehicleid> 
     | 
| 
       289 
     | 
    
         
            -
                     
     | 
| 
       290 
     | 
    
         
            -
                    PM</Updatetime>\n\t\t\t\t<Vehicleid> 
     | 
| 
       291 
     | 
    
         
            -
                     
     | 
| 
       292 
     | 
    
         
            -
                     
     | 
| 
       293 
     | 
    
         
            -
                    PM</Updatetime>\n\t\t\t\t<Vehicleid> 
     | 
| 
       294 
     | 
    
         
            -
                    PM</Updatetime>\n\t\t\t\t<Vehicleid> 
     | 
| 
       295 
     | 
    
         
            -
                    PM</Updatetime>\n\t\t\t\t<Vehicleid> 
     | 
| 
       296 
     | 
    
         
            -
                     
     | 
| 
       297 
     | 
    
         
            -
                     
     | 
| 
       298 
     | 
    
         
            -
                    PM</Updatetime>\n\t\t\t\t<Vehicleid> 
     | 
| 
       299 
     | 
    
         
            -
                     
     | 
| 
       300 
     | 
    
         
            -
                    PM</Updatetime>\n\t\t\t\t<Vehicleid> 
     | 
| 
       301 
     | 
    
         
            -
                     
     | 
| 
       302 
     | 
    
         
            -
                     
     | 
| 
       303 
     | 
    
         
            -
                     
     | 
| 
       304 
     | 
    
         
            -
                    PM</Updatetime>\n\t\t\t\t<Vehicleid> 
     | 
| 
       305 
     | 
    
         
            -
                     
     | 
| 
       306 
     | 
    
         
            -
                    PM</Updatetime>\n\t\t\t\t<Vehicleid> 
     | 
| 
       307 
     | 
    
         
            -
                    PM</Updatetime>\n\t\t\t\t<Vehicleid> 
     | 
| 
       308 
     | 
    
         
            -
                    0</ 
     | 
| 
       309 
     | 
    
         
            -
                     
     | 
| 
       310 
     | 
    
         
            -
                    PM</Updatetime>\n\t\t\t\t<Vehicleid> 
     | 
| 
       311 
     | 
    
         
            -
                    PM</Updatetime>\n\t\t\t\t<Vehicleid> 
     | 
| 
       312 
     | 
    
         
            -
                    PM</Updatetime>\n\t\t\t\t<Vehicleid> 
     | 
| 
       313 
     | 
    
         
            -
                    PM</Updatetime>\n\t\t\t\t<Vehicleid> 
     | 
| 
       314 
     | 
    
         
            -
                     
     | 
| 
       315 
     | 
    
         
            -
                    PM</Updatetime>\n\t\t\t\t<Vehicleid> 
     | 
| 
       316 
     | 
    
         
            -
                    PM</Updatetime>\n\t\t\t\t<Vehicleid> 
     | 
| 
       317 
     | 
    
         
            -
                    PM</Updatetime>\n\t\t\t\t<Vehicleid> 
     | 
| 
       318 
     | 
    
         
            -
                    0</Heading>\n\t\t\t\t<Routeid> 
     | 
| 
       319 
     | 
    
         
            -
                    PM</Updatetime>\n\t\t\t\t<Vehicleid> 
     | 
| 
       320 
     | 
    
         
            -
                    PM</Updatetime>\n\t\t\t\t<Vehicleid> 
     | 
| 
       321 
     | 
    
         
            -
                    PM</Updatetime>\n\t\t\t\t<Vehicleid> 
     | 
| 
       322 
     | 
    
         
            -
                     
     | 
| 
       323 
     | 
    
         
            -
                     
     | 
| 
       324 
     | 
    
         
            -
                    PM</Updatetime>\n\t\t\t\t<Vehicleid> 
     | 
| 
       325 
     | 
    
         
            -
                     
     | 
| 
       326 
     | 
    
         
            -
                     
     | 
| 
       327 
     | 
    
         
            -
                    PM</Updatetime>\n\t\t\t\t<Vehicleid> 
     | 
| 
       328 
     | 
    
         
            -
                    PM</Updatetime>\n\t\t\t\t<Vehicleid> 
     | 
| 
       329 
     | 
    
         
            -
                    PM</Updatetime>\n\t\t\t\t<Vehicleid> 
     | 
| 
       330 
     | 
    
         
            -
                    PM</Updatetime>\n\t\t\t\t<Vehicleid> 
     | 
| 
       331 
     | 
    
         
            -
                    0</Heading>\n\t\t\t\t<Routeid> 
     | 
| 
       332 
     | 
    
         
            -
                    PM</Updatetime>\n\t\t\t\t<Vehicleid> 
     | 
| 
       333 
     | 
    
         
            -
                    PM</Updatetime>\n\t\t\t\t<Vehicleid> 
     | 
| 
       334 
     | 
    
         
            -
                     
     | 
| 
       335 
     | 
    
         
            -
                    PM</Updatetime>\n\t\t\t\t<Vehicleid> 
     | 
| 
       336 
     | 
    
         
            -
                    9</Heading>\n\t\t\t\t<Routeid> 
     | 
| 
       337 
     | 
    
         
            -
                    PM</Updatetime>\n\t\t\t\t<Vehicleid> 
     | 
| 
       338 
     | 
    
         
            -
                     
     | 
| 
       339 
     | 
    
         
            -
                     
     | 
| 
       340 
     | 
    
         
            -
                     
     | 
| 
       341 
     | 
    
         
            -
                    PM</Updatetime>\n\t\t\t\t<Vehicleid> 
     | 
| 
       342 
     | 
    
         
            -
                     
     | 
| 
       343 
     | 
    
         
            -
                    PM</Updatetime>\n\t\t\t\t<Vehicleid> 
     | 
| 
       344 
     | 
    
         
            -
                    9</Heading>\n\t\t\t\t<Routeid> 
     | 
| 
       345 
     | 
    
         
            -
                    PM</Updatetime>\n\t\t\t\t<Vehicleid> 
     | 
| 
       346 
     | 
    
         
            -
                    PM</Updatetime>\n\t\t\t\t<Vehicleid> 
     | 
| 
       347 
     | 
    
         
            -
                    PM</Updatetime>\n\t\t\t\t<Vehicleid> 
     | 
| 
       348 
     | 
    
         
            -
                    PM</Updatetime>\n\t\t\t\t<Vehicleid> 
     | 
| 
       349 
     | 
    
         
            -
                     
     | 
| 
       350 
     | 
    
         
            -
                    0</Heading>\n\t\t\t\t<Routeid> 
     | 
| 
       351 
     | 
    
         
            -
                    PM</Updatetime>\n\t\t\t\t<Vehicleid> 
     | 
| 
       352 
     | 
    
         
            -
                     
     | 
| 
       353 
     | 
    
         
            -
                    PM</Updatetime>\n\t\t\t\t<Vehicleid> 
     | 
| 
       354 
     | 
    
         
            -
                     
     | 
| 
       355 
     | 
    
         
            -
                     
     | 
| 
       356 
     | 
    
         
            -
                    PM</Updatetime>\n\t\t\t\t<Vehicleid> 
     | 
| 
       357 
     | 
    
         
            -
                     
     | 
| 
       358 
     | 
    
         
            -
                    PM</Updatetime>\n\t\t\t\t<Vehicleid> 
     | 
| 
       359 
     | 
    
         
            -
                     
     | 
| 
       360 
     | 
    
         
            -
                    PM</Updatetime>\n\t\t\t\t<Vehicleid> 
     | 
| 
       361 
     | 
    
         
            -
                    PM</Updatetime>\n\t\t\t\t<Vehicleid> 
     | 
| 
       362 
     | 
    
         
            -
                     
     | 
| 
       363 
     | 
    
         
            -
                     
     | 
| 
       364 
     | 
    
         
            -
                    PM</Updatetime>\n\t\t\t\t<Vehicleid> 
     | 
| 
       365 
     | 
    
         
            -
                    PM</Updatetime>\n\t\t\t\t<Vehicleid> 
     | 
| 
       366 
     | 
    
         
            -
                    0</Heading>\n\t\t\t\t<Routeid> 
     | 
| 
       367 
     | 
    
         
            -
                    PM</Updatetime>\n\t\t\t\t<Vehicleid> 
     | 
| 
       368 
     | 
    
         
            -
                     
     | 
| 
       369 
     | 
    
         
            -
                    PM</Updatetime>\n\t\t\t\t<Vehicleid> 
     | 
| 
       370 
     | 
    
         
            -
                    PM</Updatetime>\n\t\t\t\t<Vehicleid> 
     | 
| 
       371 
     | 
    
         
            -
                    PM</Updatetime>\n\t\t\t\t<Vehicleid> 
     | 
| 
       372 
     | 
    
         
            -
                    PM</Updatetime>\n\t\t\t\t<Vehicleid> 
     | 
| 
       373 
     | 
    
         
            -
                    PM</Updatetime>\n\t\t\t\t<Vehicleid> 
     | 
| 
       374 
     | 
    
         
            -
                     
     | 
| 
       375 
     | 
    
         
            -
                    PM</Updatetime>\n\t\t\t\t<Vehicleid> 
     | 
| 
       376 
     | 
    
         
            -
                    PM</Updatetime>\n\t\t\t\t<Vehicleid> 
     | 
| 
       377 
     | 
    
         
            -
                    PM</Updatetime>\n\t\t\t\t<Vehicleid> 
     | 
| 
       378 
     | 
    
         
            -
                    PM</Updatetime>\n\t\t\t\t<Vehicleid> 
     | 
| 
       379 
     | 
    
         
            -
                     
     | 
| 
       380 
     | 
    
         
            -
                    PM</Updatetime>\n\t\t\t\t<Vehicleid> 
     | 
| 
       381 
     | 
    
         
            -
                     
     | 
| 
       382 
     | 
    
         
            -
                     
     | 
| 
       383 
     | 
    
         
            -
                    PM</Updatetime>\n\t\t\t\t<Vehicleid> 
     | 
| 
       384 
     | 
    
         
            -
                     
     | 
| 
       385 
     | 
    
         
            -
                    PM</Updatetime>\n\t\t\t\t<Vehicleid> 
     | 
| 
       386 
     | 
    
         
            -
                    PM</Updatetime>\n\t\t\t\t<Vehicleid> 
     | 
| 
       387 
     | 
    
         
            -
                    PM</Updatetime>\n\t\t\t\t<Vehicleid> 
     | 
| 
       388 
     | 
    
         
            -
                    0</Heading>\n\t\t\t\t<Routeid> 
     | 
| 
       389 
     | 
    
         
            -
                     
     | 
| 
       390 
     | 
    
         
            -
                    0</Heading>\n\t\t\t\t<Routeid> 
     | 
| 
       391 
     | 
    
         
            -
                    PM</Updatetime>\n\t\t\t\t<Vehicleid> 
     | 
| 
       392 
     | 
    
         
            -
                     
     | 
| 
       393 
     | 
    
         
            -
                     
     | 
| 
       394 
     | 
    
         
            -
                    0</Heading>\n\t\t\t\t<Routeid> 
     | 
| 
       395 
     | 
    
         
            -
                    PM</Updatetime>\n\t\t\t\t<Vehicleid> 
     | 
| 
       396 
     | 
    
         
            -
                    1</Heading>\n\t\t\t\t<Routeid> 
     | 
| 
       397 
     | 
    
         
            -
                    PM</Updatetime>\n\t\t\t\t<Vehicleid> 
     | 
| 
       398 
     | 
    
         
            -
                    PM</Updatetime>\n\t\t\t\t<Vehicleid> 
     | 
| 
       399 
     | 
    
         
            -
                    PM</Updatetime>\n\t\t\t\t<Vehicleid> 
     | 
| 
       400 
     | 
    
         
            -
                    PM</Updatetime>\n\t\t\t\t<Vehicleid> 
     | 
| 
       401 
     | 
    
         
            -
                    </ 
     | 
| 
       402 
     | 
    
         
            -
                    0</Heading>\n\t\t\t\t<Routeid> 
     | 
| 
       403 
     | 
    
         
            -
                    PM</Updatetime>\n\t\t\t\t<Vehicleid> 
     | 
| 
       404 
     | 
    
         
            -
                     
     | 
| 
       405 
     | 
    
         
            -
                    PM</Updatetime>\n\t\t\t\t<Vehicleid> 
     | 
| 
       406 
     | 
    
         
            -
                     
     | 
| 
       407 
     | 
    
         
            -
                    PM</Updatetime>\n\t\t\t\t<Vehicleid> 
     | 
| 
       408 
     | 
    
         
            -
                    PM</Updatetime>\n\t\t\t\t<Vehicleid> 
     | 
| 
       409 
     | 
    
         
            -
                    PM</Updatetime>\n\t\t\t\t<Vehicleid> 
     | 
| 
       410 
     | 
    
         
            -
                     
     | 
| 
       411 
     | 
    
         
            -
                    PM</Updatetime>\n\t\t\t\t<Vehicleid> 
     | 
| 
       412 
     | 
    
         
            -
                     
     | 
| 
       413 
     | 
    
         
            -
                    PM</Updatetime>\n\t\t\t\t<Vehicleid> 
     | 
| 
       414 
     | 
    
         
            -
                    0</ 
     | 
| 
       415 
     | 
    
         
            -
                     
     | 
| 
       416 
     | 
    
         
            -
                    PM</Updatetime>\n\t\t\t\t<Vehicleid> 
     | 
| 
       417 
     | 
    
         
            -
                    0</Heading>\n\t\t\t\t<Routeid> 
     | 
| 
       418 
     | 
    
         
            -
                    PM</Updatetime>\n\t\t\t\t<Vehicleid> 
     | 
| 
       419 
     | 
    
         
            -
                    PM</Updatetime>\n\t\t\t\t<Vehicleid> 
     | 
| 
       420 
     | 
    
         
            -
                     
     | 
| 
       421 
     | 
    
         
            -
                    PM</Updatetime>\n\t\t\t\t<Vehicleid> 
     | 
| 
       422 
     | 
    
         
            -
                     
     | 
| 
       423 
     | 
    
         
            -
                    PM</Updatetime>\n\t\t\t\t<Vehicleid> 
     | 
| 
       424 
     | 
    
         
            -
                     
     | 
| 
       425 
     | 
    
         
            -
                    PM</Updatetime>\n\t\t\t\t<Vehicleid> 
     | 
| 
       426 
     | 
    
         
            -
                    PM</Updatetime>\n\t\t\t\t<Vehicleid> 
     | 
| 
       427 
     | 
    
         
            -
                     
     | 
| 
       428 
     | 
    
         
            -
                    PM</Updatetime>\n\t\t\t\t<Vehicleid> 
     | 
| 
       429 
     | 
    
         
            -
                     
     | 
| 
       430 
     | 
    
         
            -
                    PM</Updatetime>\n\t\t\t\t<Vehicleid> 
     | 
| 
       431 
     | 
    
         
            -
                     
     | 
| 
       432 
     | 
    
         
            -
                    PM</Updatetime>\n\t\t\t\t<Vehicleid> 
     | 
| 
       433 
     | 
    
         
            -
                     
     | 
| 
       434 
     | 
    
         
            -
                    PM</Updatetime>\n\t\t\t\t<Vehicleid> 
     | 
| 
       435 
     | 
    
         
            -
                     
     | 
| 
       436 
     | 
    
         
            -
                    PM</Updatetime>\n\t\t\t\t<Vehicleid> 
     | 
| 
       437 
     | 
    
         
            -
                    PM</Updatetime>\n\t\t\t\t<Vehicleid> 
     | 
| 
       438 
     | 
    
         
            -
                    PM</Updatetime>\n\t\t\t\t<Vehicleid> 
     | 
| 
       439 
     | 
    
         
            -
                    PM</Updatetime>\n\t\t\t\t<Vehicleid> 
     | 
| 
       440 
     | 
    
         
            -
                     
     | 
| 
       441 
     | 
    
         
            -
                     
     | 
| 
       442 
     | 
    
         
            -
                    0</Heading>\n\t\t\t\t<Routeid> 
     | 
| 
       443 
     | 
    
         
            -
                    PM</Updatetime>\n\t\t\t\t<Vehicleid> 
     | 
| 
       444 
     | 
    
         
            -
                    PM</Updatetime>\n\t\t\t\t<Vehicleid> 
     | 
| 
       445 
     | 
    
         
            -
                     
     | 
| 
       446 
     | 
    
         
            -
                     
     | 
| 
       447 
     | 
    
         
            -
                     
     | 
| 
       448 
     | 
    
         
            -
                    PM</Updatetime>\n\t\t\t\t<Vehicleid> 
     | 
| 
       449 
     | 
    
         
            -
                     
     | 
| 
       450 
     | 
    
         
            -
                    PM</Updatetime>\n\t\t\t\t<Vehicleid> 
     | 
| 
       451 
     | 
    
         
            -
                    0</Heading>\n\t\t\t\t<Routeid> 
     | 
| 
       452 
     | 
    
         
            -
                    PM</Updatetime>\n\t\t\t\t<Vehicleid> 
     | 
| 
       453 
     | 
    
         
            -
                    PM</Updatetime>\n\t\t\t\t<Vehicleid> 
     | 
| 
       454 
     | 
    
         
            -
                     
     | 
| 
       455 
     | 
    
         
            -
                     
     | 
| 
       456 
     | 
    
         
            -
                     
     | 
| 
       457 
     | 
    
         
            -
                    PM</Updatetime>\n\t\t\t\t<Vehicleid> 
     | 
| 
       458 
     | 
    
         
            -
                    1</ 
     | 
| 
       459 
     | 
    
         
            -
                    PM</Updatetime>\n\t\t\t\t<Vehicleid> 
     | 
| 
       460 
     | 
    
         
            -
                     
     | 
| 
       461 
     | 
    
         
            -
                     
     | 
| 
       462 
     | 
    
         
            -
                    PM</Updatetime>\n\t\t\t\t<Vehicleid> 
     | 
| 
       463 
     | 
    
         
            -
                     
     | 
| 
       464 
     | 
    
         
            -
                    PM</Updatetime>\n\t\t\t\t<Vehicleid> 
     | 
| 
       465 
     | 
    
         
            -
                     
     | 
| 
       466 
     | 
    
         
            -
                     
     | 
| 
       467 
     | 
    
         
            -
                     
     | 
| 
       468 
     | 
    
         
            -
                    PM</Updatetime>\n\t\t\t\t<Vehicleid> 
     | 
| 
       469 
     | 
    
         
            -
                     
     | 
| 
       470 
     | 
    
         
            -
                     
     | 
| 
       471 
     | 
    
         
            -
                     
     | 
| 
       472 
     | 
    
         
            -
                    PM</Updatetime>\n\t\t\t\t<Vehicleid> 
     | 
| 
       473 
     | 
    
         
            -
                     
     | 
| 
       474 
     | 
    
         
            -
                     
     | 
| 
       475 
     | 
    
         
            -
                     
     | 
| 
       476 
     | 
    
         
            -
                     
     | 
| 
       477 
     | 
    
         
            -
                     
     | 
| 
       478 
     | 
    
         
            -
                     
     | 
| 
       479 
     | 
    
         
            -
                     
     | 
| 
       480 
     | 
    
         
            -
                     
     | 
| 
       481 
     | 
    
         
            -
                    PM</Updatetime>\n\t\t\t\t<Vehicleid> 
     | 
| 
       482 
     | 
    
         
            -
                    PM</Updatetime>\n\t\t\t\t<Vehicleid> 
     | 
| 
       483 
     | 
    
         
            -
                     
     | 
| 
       484 
     | 
    
         
            -
                    PM</Updatetime>\n\t\t\t\t<Vehicleid> 
     | 
| 
       485 
     | 
    
         
            -
                    PM</Updatetime>\n\t\t\t\t<Vehicleid> 
     | 
| 
       486 
     | 
    
         
            -
                    PM</Updatetime>\n\t\t\t\t<Vehicleid> 
     | 
| 
       487 
     | 
    
         
            -
                     
     | 
| 
       488 
     | 
    
         
            -
                     
     | 
| 
       489 
     | 
    
         
            -
                    PM</Updatetime>\n\t\t\t\t<Vehicleid> 
     | 
| 
       490 
     | 
    
         
            -
                     
     | 
| 
       491 
     | 
    
         
            -
                    PM</Updatetime>\n\t\t\t\t<Vehicleid> 
     | 
| 
       492 
     | 
    
         
            -
                     
     | 
| 
       493 
     | 
    
         
            -
                     
     | 
| 
       494 
     | 
    
         
            -
                    0</Heading>\n\t\t\t\t<Routeid> 
     | 
| 
       495 
     | 
    
         
            -
                    PM</Updatetime>\n\t\t\t\t<Vehicleid> 
     | 
| 
       496 
     | 
    
         
            -
                     
     | 
| 
       497 
     | 
    
         
            -
                    PM</Updatetime>\n\t\t\t\t<Vehicleid> 
     | 
| 
       498 
     | 
    
         
            -
                    PM</Updatetime>\n\t\t\t\t<Vehicleid> 
     | 
| 
       499 
     | 
    
         
            -
                    PM</Updatetime>\n\t\t\t\t<Vehicleid> 
     | 
| 
       500 
     | 
    
         
            -
                    </Direction>\n\t\t\t\t<Updatetime> 
     | 
| 
       501 
     | 
    
         
            -
                    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> 
     | 
| 
       502 
     | 
    
         
            -
                    PM</Updatetime>\n\t\t\t\t<Vehicleid>5096</Vehicleid>\n\t\t\t\t<Block> 
     | 
| 
       503 
     | 
    
         
            -
                    9</Heading>\n\t\t\t\t<Routeid> 
     | 
| 
       504 
     | 
    
         
            -
                     
     | 
| 
       505 
     | 
    
         
            -
                     
     | 
| 
       506 
     | 
    
         
            -
                    PM</Updatetime>\n\t\t\t\t<Vehicleid> 
     | 
| 
       507 
     | 
    
         
            -
                     
     | 
| 
       508 
     | 
    
         
            -
                    PM</Updatetime>\n\t\t\t\t<Vehicleid> 
     | 
| 
       509 
     | 
    
         
            -
                    PM</Updatetime>\n\t\t\t\t<Vehicleid> 
     | 
| 
       510 
     | 
    
         
            -
                    PM</Updatetime>\n\t\t\t\t<Vehicleid> 
     | 
| 
       511 
     | 
    
         
            -
                    0</Heading>\n\t\t\t\t<Routeid> 
     | 
| 
       512 
     | 
    
         
            -
                    PM</Updatetime>\n\t\t\t\t<Vehicleid> 
     | 
| 
       513 
     | 
    
         
            -
                     
     | 
| 
       514 
     | 
    
         
            -
                    PM</Updatetime>\n\t\t\t\t<Vehicleid> 
     | 
| 
       515 
     | 
    
         
            -
                     
     | 
| 
       516 
     | 
    
         
            -
                     
     | 
| 
       517 
     | 
    
         
            -
                    PM</Updatetime>\n\t\t\t\t<Vehicleid> 
     | 
| 
       518 
     | 
    
         
            -
                    PM</Updatetime>\n\t\t\t\t<Vehicleid> 
     | 
| 
       519 
     | 
    
         
            -
                    PM</Updatetime>\n\t\t\t\t<Vehicleid> 
     | 
| 
       520 
     | 
    
         
            -
                    PM</Updatetime>\n\t\t\t\t<Vehicleid> 
     | 
| 
       521 
     | 
    
         
            -
                     
     | 
| 
       522 
     | 
    
         
            -
                    PM</Updatetime>\n\t\t\t\t<Vehicleid> 
     | 
| 
       523 
     | 
    
         
            -
                    PM</Updatetime>\n\t\t\t\t<Vehicleid> 
     | 
| 
       524 
     | 
    
         
            -
                     
     | 
| 
       525 
     | 
    
         
            -
                    PM</Updatetime>\n\t\t\t\t<Vehicleid> 
     | 
| 
       526 
     | 
    
         
            -
                     
     | 
| 
       527 
     | 
    
         
            -
                    PM</Updatetime>\n\t\t\t\t<Vehicleid> 
     | 
| 
       528 
     | 
    
         
            -
                     
     | 
| 
       529 
     | 
    
         
            -
                     
     | 
| 
       530 
     | 
    
         
            -
                     
     | 
| 
       531 
     | 
    
         
            -
                     
     | 
| 
       532 
     | 
    
         
            -
                    PM</Updatetime>\n\t\t\t\t<Vehicleid> 
     | 
| 
       533 
     | 
    
         
            -
                     
     | 
| 
       534 
     | 
    
         
            -
                    PM</Updatetime>\n\t\t\t\t<Vehicleid> 
     | 
| 
       535 
     | 
    
         
            -
                     
     | 
| 
       536 
     | 
    
         
            -
                     
     | 
| 
       537 
     | 
    
         
            -
                    PM</Updatetime>\n\t\t\t\t<Vehicleid> 
     | 
| 
       538 
     | 
    
         
            -
                     
     | 
| 
       539 
     | 
    
         
            -
                     
     | 
| 
       540 
     | 
    
         
            -
                     
     | 
| 
       541 
     | 
    
         
            -
                     
     | 
| 
       542 
     | 
    
         
            -
                    PM</Updatetime>\n\t\t\t\t<Vehicleid> 
     | 
| 
       543 
     | 
    
         
            -
                     
     | 
| 
       544 
     | 
    
         
            -
                     
     | 
| 
       545 
     | 
    
         
            -
                    0</Heading>\n\t\t\t\t<Routeid> 
     | 
| 
       546 
     | 
    
         
            -
                    PM</Updatetime>\n\t\t\t\t<Vehicleid> 
     | 
| 
       547 
     | 
    
         
            -
                     
     | 
| 
       548 
     | 
    
         
            -
                    PM</Updatetime>\n\t\t\t\t<Vehicleid> 
     | 
| 
       549 
     | 
    
         
            -
                    9</Heading>\n\t\t\t\t<Routeid> 
     | 
| 
       550 
     | 
    
         
            -
                    PM</Updatetime>\n\t\t\t\t<Vehicleid> 
     | 
| 
       551 
     | 
    
         
            -
                     
     | 
| 
       552 
     | 
    
         
            -
                    PM</Updatetime>\n\t\t\t\t<Vehicleid> 
     | 
| 
       553 
     | 
    
         
            -
                     
     | 
| 
       554 
     | 
    
         
            -
                     
     | 
| 
       555 
     | 
    
         
            -
                    PM</Updatetime>\n\t\t\t\t<Vehicleid> 
     | 
| 
       556 
     | 
    
         
            -
                    PM</Updatetime>\n\t\t\t\t<Vehicleid> 
     | 
| 
       557 
     | 
    
         
            -
                    0</Heading>\n\t\t\t\t<Routeid> 
     | 
| 
       558 
     | 
    
         
            -
                    PM</Updatetime>\n\t\t\t\t<Vehicleid> 
     | 
| 
       559 
     | 
    
         
            -
                     
     | 
| 
       560 
     | 
    
         
            -
                    PM</Updatetime>\n\t\t\t\t<Vehicleid> 
     | 
| 
       561 
     | 
    
         
            -
                     
     | 
| 
       562 
     | 
    
         
            -
                    PM</Updatetime>\n\t\t\t\t<Vehicleid> 
     | 
| 
       563 
     | 
    
         
            -
                    PM</Updatetime>\n\t\t\t\t<Vehicleid> 
     | 
| 
       564 
     | 
    
         
            -
                     
     | 
| 
       565 
     | 
    
         
            -
                    PM</Updatetime>\n\t\t\t\t<Vehicleid> 
     | 
| 
       566 
     | 
    
         
            -
                    PM</Updatetime>\n\t\t\t\t<Vehicleid> 
     | 
| 
       567 
     | 
    
         
            -
                    9</Heading>\n\t\t\t\t<Routeid> 
     | 
| 
       568 
     | 
    
         
            -
                    PM</Updatetime>\n\t\t\t\t<Vehicleid> 
     | 
| 
       569 
     | 
    
         
            -
                     
     | 
| 
       570 
     | 
    
         
            -
                    PM</Updatetime>\n\t\t\t\t<Vehicleid> 
     | 
| 
       571 
     | 
    
         
            -
                    9</Heading>\n\t\t\t\t<Routeid> 
     | 
| 
       572 
     | 
    
         
            -
                    PM</Updatetime>\n\t\t\t\t<Vehicleid> 
     | 
| 
       573 
     | 
    
         
            -
                    PM</Updatetime>\n\t\t\t\t<Vehicleid> 
     | 
| 
       574 
     | 
    
         
            -
                     
     | 
| 
       575 
     | 
    
         
            -
                     
     | 
| 
       576 
     | 
    
         
            -
                    PM</Updatetime>\n\t\t\t\t<Vehicleid> 
     | 
| 
       577 
     | 
    
         
            -
                    PM</Updatetime>\n\t\t\t\t<Vehicleid> 
     | 
| 
       578 
     | 
    
         
            -
                     
     | 
| 
       579 
     | 
    
         
            -
                    PM</Updatetime>\n\t\t\t\t<Vehicleid> 
     | 
| 
       580 
     | 
    
         
            -
                     
     | 
| 
       581 
     | 
    
         
            -
                    PM</Updatetime>\n\t\t\t\t<Vehicleid> 
     | 
| 
       582 
     | 
    
         
            -
                    PM</Updatetime>\n\t\t\t\t<Vehicleid> 
     | 
| 
       583 
     | 
    
         
            -
                     
     | 
| 
       584 
     | 
    
         
            -
                    PM</Updatetime>\n\t\t\t\t<Vehicleid> 
     | 
| 
       585 
     | 
    
         
            -
                     
     | 
| 
       586 
     | 
    
         
            -
                     
     | 
| 
       587 
     | 
    
         
            -
                     
     | 
| 
       588 
     | 
    
         
            -
                     
     | 
| 
       589 
     | 
    
         
            -
                    PM</Updatetime>\n\t\t\t\t<Vehicleid> 
     | 
| 
       590 
     | 
    
         
            -
                    </ 
     | 
| 
       591 
     | 
    
         
            -
                     
     | 
| 
       592 
     | 
    
         
            -
                     
     | 
| 
       593 
     | 
    
         
            -
                    PM</Updatetime>\n\t\t\t\t<Vehicleid> 
     | 
| 
       594 
     | 
    
         
            -
                    0</ 
     | 
| 
       595 
     | 
    
         
            -
                     
     | 
| 
       596 
     | 
    
         
            -
                    PM</Updatetime>\n\t\t\t\t<Vehicleid> 
     | 
| 
       597 
     | 
    
         
            -
                    PM</Updatetime>\n\t\t\t\t<Vehicleid> 
     | 
| 
       598 
     | 
    
         
            -
                    PM</Updatetime>\n\t\t\t\t<Vehicleid> 
     | 
| 
       599 
     | 
    
         
            -
                    PM</Updatetime>\n\t\t\t\t<Vehicleid> 
     | 
| 
       600 
     | 
    
         
            -
                     
     | 
| 
       601 
     | 
    
         
            -
                    PM</Updatetime>\n\t\t\t\t<Vehicleid> 
     | 
| 
       602 
     | 
    
         
            -
                    0</ 
     | 
| 
       603 
     | 
    
         
            -
                     
     | 
| 
       604 
     | 
    
         
            -
                    PM</Updatetime>\n\t\t\t\t<Vehicleid> 
     | 
| 
       605 
     | 
    
         
            -
                     
     | 
| 
       606 
     | 
    
         
            -
                    PM</Updatetime>\n\t\t\t\t<Vehicleid> 
     | 
| 
       607 
     | 
    
         
            -
                     
     | 
| 
       608 
     | 
    
         
            -
                    PM</Updatetime>\n\t\t\t\t<Vehicleid> 
     | 
| 
       609 
     | 
    
         
            -
                    0</Heading>\n\t\t\t\t<Routeid> 
     | 
| 
       610 
     | 
    
         
            -
                    PM</Updatetime>\n\t\t\t\t<Vehicleid> 
     | 
| 
       611 
     | 
    
         
            -
                    PM</Updatetime>\n\t\t\t\t<Vehicleid> 
     | 
| 
       612 
     | 
    
         
            -
                     
     | 
| 
       613 
     | 
    
         
            -
                    PM</Updatetime>\n\t\t\t\t<Vehicleid> 
     | 
| 
       614 
     | 
    
         
            -
                     
     | 
| 
       615 
     | 
    
         
            -
                     
     | 
| 
       616 
     | 
    
         
            -
                    0</Heading>\n\t\t\t\t<Routeid> 
     | 
| 
       617 
     | 
    
         
            -
                    PM</Updatetime>\n\t\t\t\t<Vehicleid> 
     | 
| 
       618 
     | 
    
         
            -
                     
     | 
| 
       619 
     | 
    
         
            -
                    PM</Updatetime>\n\t\t\t\t<Vehicleid> 
     | 
| 
       620 
     | 
    
         
            -
                     
     | 
| 
       621 
     | 
    
         
            -
                    PM</Updatetime>\n\t\t\t\t<Vehicleid> 
     | 
| 
       622 
     | 
    
         
            -
                     
     | 
| 
       623 
     | 
    
         
            -
                     
     | 
| 
       624 
     | 
    
         
            -
                    PM</Updatetime>\n\t\t\t\t<Vehicleid> 
     | 
| 
       625 
     | 
    
         
            -
                    PM</Updatetime>\n\t\t\t\t<Vehicleid> 
     | 
| 
      
 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>E</Direction>\n\t\t\t\t<Updatetime>05:38
         
     | 
| 
      
 48 
     | 
    
         
            +
                    PM</Updatetime>\n\t\t\t\t<Vehicleid>6332</Vehicleid>\n\t\t\t\t<Block>1</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.84</Speed>\n\t\t\t\t<Heading>
         
     | 
| 
      
 49 
     | 
    
         
            +
                    9</Heading>\n\t\t\t\t<Routeid>15717</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>05:36
         
     | 
| 
      
 50 
     | 
    
         
            +
                    PM</Updatetime>\n\t\t\t\t<Vehicleid>6577</Vehicleid>\n\t\t\t\t<Block>10</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>37.23</Speed>\n\t\t\t\t<Heading>36</Heading>\n\t\t\t\t<Routeid>15780</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>05:37
         
     | 
| 
      
 51 
     | 
    
         
            +
                    PM</Updatetime>\n\t\t\t\t<Vehicleid>6557</Vehicleid>\n\t\t\t\t<Block>100</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.52</Speed>\n\t\t\t\t<Heading>27</Heading>\n\t\t\t\t<Routeid>16107</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>05:38
         
     | 
| 
      
 52 
     | 
    
         
            +
                    PM</Updatetime>\n\t\t\t\t<Vehicleid>6543</Vehicleid>\n\t\t\t\t<Block>101</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>6.22</Speed>\n\t\t\t\t<Heading>
         
     | 
| 
      
 53 
     | 
    
         
            +
                    9</Heading>\n\t\t\t\t<Routeid>16093</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>05:38
         
     | 
| 
      
 54 
     | 
    
         
            +
                    PM</Updatetime>\n\t\t\t\t<Vehicleid>6540</Vehicleid>\n\t\t\t\t<Block>102</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.40</Speed>\n\t\t\t\t<Heading>
         
     | 
| 
      
 55 
     | 
    
         
            +
                    9</Heading>\n\t\t\t\t<Routeid>16093</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>05:38
         
     | 
| 
      
 56 
     | 
    
         
            +
                    PM</Updatetime>\n\t\t\t\t<Vehicleid>6536</Vehicleid>\n\t\t\t\t<Block>103</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>16108</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>05:37
         
     | 
| 
      
 57 
     | 
    
         
            +
                    PM</Updatetime>\n\t\t\t\t<Vehicleid>6572</Vehicleid>\n\t\t\t\t<Block>106</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.03</Speed>\n\t\t\t\t<Heading>
         
     | 
| 
      
 58 
     | 
    
         
            +
                    9</Heading>\n\t\t\t\t<Routeid>16096</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>05:37
         
     | 
| 
      
 59 
     | 
    
         
            +
                    PM</Updatetime>\n\t\t\t\t<Vehicleid>6546</Vehicleid>\n\t\t\t\t<Block>107</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>3.07</Speed>\n\t\t\t\t<Heading>27</Heading>\n\t\t\t\t<Routeid>16096</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>05:37
         
     | 
| 
      
 60 
     | 
    
         
            +
                    PM</Updatetime>\n\t\t\t\t<Vehicleid>6027</Vehicleid>\n\t\t\t\t<Block>11</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>26.94</Speed>\n\t\t\t\t<Heading>18</Heading>\n\t\t\t\t<Routeid>15784</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route></Route>\n\t\t\t\t<Direction>
         
     | 
| 
      
 61 
     | 
    
         
            +
                    </Direction>\n\t\t\t\t<Updatetime>05:35 PM</Updatetime>\n\t\t\t\t<Vehicleid>6555</Vehicleid>\n\t\t\t\t<Block>110</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>N</Stopped>\n\t\t\t\t<Inservice>N</Inservice>\n\t\t\t\t<Speed>18.09</Speed>\n\t\t\t\t<Heading>
         
     | 
| 
      
 62 
     | 
    
         
            +
                    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>50</Route>\n\t\t\t\t<Direction>W</Direction>\n\t\t\t\t<Updatetime>05:38
         
     | 
| 
      
 63 
     | 
    
         
            +
                    PM</Updatetime>\n\t\t\t\t<Vehicleid>6596</Vehicleid>\n\t\t\t\t<Block>111</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.00</Speed>\n\t\t\t\t<Heading>27</Heading>\n\t\t\t\t<Routeid>16109</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>05:37
         
     | 
| 
      
 64 
     | 
    
         
            +
                    PM</Updatetime>\n\t\t\t\t<Vehicleid>6537</Vehicleid>\n\t\t\t\t<Block>117</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.52</Speed>\n\t\t\t\t<Heading>36</Heading>\n\t\t\t\t<Routeid>15841</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>05:32
         
     | 
| 
      
 65 
     | 
    
         
            +
                    PM</Updatetime>\n\t\t\t\t<Vehicleid>6545</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>L</Inservice>\n\t\t\t\t<Speed>0.00</Speed>\n\t\t\t\t<Heading>
         
     | 
| 
      
 66 
     | 
    
         
            +
                    0</Heading>\n\t\t\t\t<Routeid>16189</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>05:33
         
     | 
| 
      
 67 
     | 
    
         
            +
                    PM</Updatetime>\n\t\t\t\t<Vehicleid>6547</Vehicleid>\n\t\t\t\t<Block>121</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>10.34</Speed>\n\t\t\t\t<Heading>18</Heading>\n\t\t\t\t<Routeid>15852</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>05:37
         
     | 
| 
      
 68 
     | 
    
         
            +
                    PM</Updatetime>\n\t\t\t\t<Vehicleid>6559</Vehicleid>\n\t\t\t\t<Block>123</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.35</Speed>\n\t\t\t\t<Heading>32</Heading>\n\t\t\t\t<Routeid>16189</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>05:38
         
     | 
| 
      
 69 
     | 
    
         
            +
                    PM</Updatetime>\n\t\t\t\t<Vehicleid>6541</Vehicleid>\n\t\t\t\t<Block>125</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>20.10</Speed>\n\t\t\t\t<Heading>
         
     | 
| 
      
 70 
     | 
    
         
            +
                    9</Heading>\n\t\t\t\t<Routeid>16185</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>05:37
         
     | 
| 
      
 71 
     | 
    
         
            +
                    PM</Updatetime>\n\t\t\t\t<Vehicleid>6570</Vehicleid>\n\t\t\t\t<Block>126</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.67</Speed>\n\t\t\t\t<Heading>
         
     | 
| 
      
 72 
     | 
    
         
            +
                    9</Heading>\n\t\t\t\t<Routeid>16185</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>05:35
         
     | 
| 
      
 73 
     | 
    
         
            +
                    PM</Updatetime>\n\t\t\t\t<Vehicleid>6316</Vehicleid>\n\t\t\t\t<Block>13</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.17</Speed>\n\t\t\t\t<Heading>36</Heading>\n\t\t\t\t<Routeid>15780</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>05:38
         
     | 
| 
      
 74 
     | 
    
         
            +
                    PM</Updatetime>\n\t\t\t\t<Vehicleid>8016</Vehicleid>\n\t\t\t\t<Block>130</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>36.09</Speed>\n\t\t\t\t<Heading>17</Heading>\n\t\t\t\t<Routeid>16275</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>05:38
         
     | 
| 
      
 75 
     | 
    
         
            +
                    PM</Updatetime>\n\t\t\t\t<Vehicleid>6343</Vehicleid>\n\t\t\t\t<Block>135</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>5.70</Speed>\n\t\t\t\t<Heading>18</Heading>\n\t\t\t\t<Routeid>16278</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>05:38
         
     | 
| 
      
 76 
     | 
    
         
            +
                    PM</Updatetime>\n\t\t\t\t<Vehicleid>6300</Vehicleid>\n\t\t\t\t<Block>136</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>21.34</Speed>\n\t\t\t\t<Heading>27</Heading>\n\t\t\t\t<Routeid>16287</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>05:37
         
     | 
| 
      
 77 
     | 
    
         
            +
                    PM</Updatetime>\n\t\t\t\t<Vehicleid>6301</Vehicleid>\n\t\t\t\t<Block>137</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.33</Speed>\n\t\t\t\t<Heading>
         
     | 
| 
      
 78 
     | 
    
         
            +
                    9</Heading>\n\t\t\t\t<Routeid>16275</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>05:38
         
     | 
| 
      
 79 
     | 
    
         
            +
                    PM</Updatetime>\n\t\t\t\t<Vehicleid>6595</Vehicleid>\n\t\t\t\t<Block>14</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.06</Speed>\n\t\t\t\t<Heading>
         
     | 
| 
      
 80 
     | 
    
         
            +
                    7</Heading>\n\t\t\t\t<Routeid>15788</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>05:38
         
     | 
| 
      
 81 
     | 
    
         
            +
                    PM</Updatetime>\n\t\t\t\t<Vehicleid>6349</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>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>19.99</Speed>\n\t\t\t\t<Heading>27</Heading>\n\t\t\t\t<Routeid>16288</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>05:37
         
     | 
| 
      
 82 
     | 
    
         
            +
                    PM</Updatetime>\n\t\t\t\t<Vehicleid>6297</Vehicleid>\n\t\t\t\t<Block>142</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>
         
     | 
| 
      
 83 
     | 
    
         
            +
                    9</Heading>\n\t\t\t\t<Routeid>16277</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>05:38
         
     | 
| 
      
 84 
     | 
    
         
            +
                    PM</Updatetime>\n\t\t\t\t<Vehicleid>6593</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>11.99</Speed>\n\t\t\t\t<Heading>36</Heading>\n\t\t\t\t<Routeid>16287</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>05:38
         
     | 
| 
      
 85 
     | 
    
         
            +
                    PM</Updatetime>\n\t\t\t\t<Vehicleid>6144</Vehicleid>\n\t\t\t\t<Block>144</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>
         
     | 
| 
      
 86 
     | 
    
         
            +
                    0</Heading>\n\t\t\t\t<Routeid>16289</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>05:38
         
     | 
| 
      
 87 
     | 
    
         
            +
                    PM</Updatetime>\n\t\t\t\t<Vehicleid>6346</Vehicleid>\n\t\t\t\t<Block>145</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.73</Speed>\n\t\t\t\t<Heading>18</Heading>\n\t\t\t\t<Routeid>16277</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>05:38
         
     | 
| 
      
 88 
     | 
    
         
            +
                    PM</Updatetime>\n\t\t\t\t<Vehicleid>6373</Vehicleid>\n\t\t\t\t<Block>147</Block>\n\t\t\t\t<Adherance>-12</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>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.59</Speed>\n\t\t\t\t<Heading>36</Heading>\n\t\t\t\t<Routeid>16289</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>05:37
         
     | 
| 
      
 89 
     | 
    
         
            +
                    PM</Updatetime>\n\t\t\t\t<Vehicleid>6534</Vehicleid>\n\t\t\t\t<Block>148</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.26</Speed>\n\t\t\t\t<Heading>
         
     | 
| 
      
 90 
     | 
    
         
            +
                    0</Heading>\n\t\t\t\t<Routeid>16288</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>05:37
         
     | 
| 
      
 91 
     | 
    
         
            +
                    PM</Updatetime>\n\t\t\t\t<Vehicleid>6556</Vehicleid>\n\t\t\t\t<Block>149</Block>\n\t\t\t\t<Adherance>9</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.50</Speed>\n\t\t\t\t<Heading>19</Heading>\n\t\t\t\t<Routeid>16277</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>05:38
         
     | 
| 
      
 92 
     | 
    
         
            +
                    PM</Updatetime>\n\t\t\t\t<Vehicleid>6329</Vehicleid>\n\t\t\t\t<Block>15</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.66</Speed>\n\t\t\t\t<Heading>10</Heading>\n\t\t\t\t<Routeid>15788</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>05:36
         
     | 
| 
      
 93 
     | 
    
         
            +
                    PM</Updatetime>\n\t\t\t\t<Vehicleid>4166</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>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>8.92</Speed>\n\t\t\t\t<Heading>35</Heading>\n\t\t\t\t<Routeid>16767</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>05:37
         
     | 
| 
      
 94 
     | 
    
         
            +
                    PM</Updatetime>\n\t\t\t\t<Vehicleid>4167</Vehicleid>\n\t\t\t\t<Block>157</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.18</Speed>\n\t\t\t\t<Heading>
         
     | 
| 
      
 95 
     | 
    
         
            +
                    9</Heading>\n\t\t\t\t<Routeid>16767</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>05:33
         
     | 
| 
      
 96 
     | 
    
         
            +
                    PM</Updatetime>\n\t\t\t\t<Vehicleid>6344</Vehicleid>\n\t\t\t\t<Block>16</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>30.50</Speed>\n\t\t\t\t<Heading>18</Heading>\n\t\t\t\t<Routeid>15792</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>I10E</Route>\n\t\t\t\t<Direction>O</Direction>\n\t\t\t\t<Updatetime>05:35
         
     | 
| 
      
 97 
     | 
    
         
            +
                    PM</Updatetime>\n\t\t\t\t<Vehicleid>7156</Vehicleid>\n\t\t\t\t<Block>168</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>32</Heading>\n\t\t\t\t<Routeid>16787</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>I10E</Route>\n\t\t\t\t<Direction>O</Direction>\n\t\t\t\t<Updatetime>05:37
         
     | 
| 
      
 98 
     | 
    
         
            +
                    PM</Updatetime>\n\t\t\t\t<Vehicleid>7146</Vehicleid>\n\t\t\t\t<Block>169</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.06</Speed>\n\t\t\t\t<Heading>
         
     | 
| 
      
 99 
     | 
    
         
            +
                    3</Heading>\n\t\t\t\t<Routeid>16787</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>05:38
         
     | 
| 
      
 100 
     | 
    
         
            +
                    PM</Updatetime>\n\t\t\t\t<Vehicleid>6306</Vehicleid>\n\t\t\t\t<Block>17</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.91</Speed>\n\t\t\t\t<Heading>36</Heading>\n\t\t\t\t<Routeid>15788</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route></Route>\n\t\t\t\t<Direction>
         
     | 
| 
      
 101 
     | 
    
         
            +
                    </Direction>\n\t\t\t\t<Updatetime>05:39 PM</Updatetime>\n\t\t\t\t<Vehicleid>117</Vehicleid>\n\t\t\t\t<Block>17058</Block>\n\t\t\t\t<Adherance>-16</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>22.31</Speed>\n\t\t\t\t<Heading>
         
     | 
| 
      
 102 
     | 
    
         
            +
                    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>LTRL</Route>\n\t\t\t\t<Direction>E</Direction>\n\t\t\t\t<Updatetime>05:37
         
     | 
| 
      
 103 
     | 
    
         
            +
                    PM</Updatetime>\n\t\t\t\t<Vehicleid>127</Vehicleid>\n\t\t\t\t<Block>17064</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>
         
     | 
| 
      
 104 
     | 
    
         
            +
                    0</Heading>\n\t\t\t\t<Routeid>14476</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>05:39
         
     | 
| 
      
 105 
     | 
    
         
            +
                    PM</Updatetime>\n\t\t\t\t<Vehicleid>121</Vehicleid>\n\t\t\t\t<Block>17065</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.59</Speed>\n\t\t\t\t<Heading>12</Heading>\n\t\t\t\t<Routeid>14474</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>05:39
         
     | 
| 
      
 106 
     | 
    
         
            +
                    PM</Updatetime>\n\t\t\t\t<Vehicleid>105</Vehicleid>\n\t\t\t\t<Block>17066</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>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>
         
     | 
| 
      
 107 
     | 
    
         
            +
                    0</Heading>\n\t\t\t\t<Routeid>14476</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>05:39
         
     | 
| 
      
 108 
     | 
    
         
            +
                    PM</Updatetime>\n\t\t\t\t<Vehicleid>126</Vehicleid>\n\t\t\t\t<Block>17067</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.85</Speed>\n\t\t\t\t<Heading>
         
     | 
| 
      
 109 
     | 
    
         
            +
                    9</Heading>\n\t\t\t\t<Routeid>14474</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>05:39
         
     | 
| 
      
 110 
     | 
    
         
            +
                    PM</Updatetime>\n\t\t\t\t<Vehicleid>102</Vehicleid>\n\t\t\t\t<Block>17068</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.91</Speed>\n\t\t\t\t<Heading>18</Heading>\n\t\t\t\t<Routeid>14476</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>05:39
         
     | 
| 
      
 111 
     | 
    
         
            +
                    PM</Updatetime>\n\t\t\t\t<Vehicleid>149</Vehicleid>\n\t\t\t\t<Block>17069</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>
         
     | 
| 
      
 112 
     | 
    
         
            +
                    0</Heading>\n\t\t\t\t<Routeid>14474</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>05:39
         
     | 
| 
      
 113 
     | 
    
         
            +
                    PM</Updatetime>\n\t\t\t\t<Vehicleid>109</Vehicleid>\n\t\t\t\t<Block>17070</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>
         
     | 
| 
      
 114 
     | 
    
         
            +
                    0</Heading>\n\t\t\t\t<Routeid>14476</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>I10E</Route>\n\t\t\t\t<Direction>O</Direction>\n\t\t\t\t<Updatetime>05:37
         
     | 
| 
      
 115 
     | 
    
         
            +
                    PM</Updatetime>\n\t\t\t\t<Vehicleid>7107</Vehicleid>\n\t\t\t\t<Block>171</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>14.85</Speed>\n\t\t\t\t<Heading>25</Heading>\n\t\t\t\t<Routeid>16787</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>05:39
         
     | 
| 
      
 116 
     | 
    
         
            +
                    PM</Updatetime>\n\t\t\t\t<Vehicleid>122</Vehicleid>\n\t\t\t\t<Block>17156</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>14507</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>05:39
         
     | 
| 
      
 117 
     | 
    
         
            +
                    PM</Updatetime>\n\t\t\t\t<Vehicleid>147</Vehicleid>\n\t\t\t\t<Block>17158</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>1.18</Speed>\n\t\t\t\t<Heading>27</Heading>\n\t\t\t\t<Routeid>14507</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>05:39
         
     | 
| 
      
 118 
     | 
    
         
            +
                    PM</Updatetime>\n\t\t\t\t<Vehicleid>125</Vehicleid>\n\t\t\t\t<Block>17159</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>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>
         
     | 
| 
      
 119 
     | 
    
         
            +
                    0</Heading>\n\t\t\t\t<Routeid>14505</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>05:39
         
     | 
| 
      
 120 
     | 
    
         
            +
                    PM</Updatetime>\n\t\t\t\t<Vehicleid>128</Vehicleid>\n\t\t\t\t<Block>17160</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.00</Speed>\n\t\t\t\t<Heading>
         
     | 
| 
      
 121 
     | 
    
         
            +
                    0</Heading>\n\t\t\t\t<Routeid>14507</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>05:39
         
     | 
| 
      
 122 
     | 
    
         
            +
                    PM</Updatetime>\n\t\t\t\t<Vehicleid>113</Vehicleid>\n\t\t\t\t<Block>17161</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>14505</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>05:39
         
     | 
| 
      
 123 
     | 
    
         
            +
                    PM</Updatetime>\n\t\t\t\t<Vehicleid>107</Vehicleid>\n\t\t\t\t<Block>17162</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>
         
     | 
| 
      
 124 
     | 
    
         
            +
                    0</Heading>\n\t\t\t\t<Routeid>14507</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route></Route>\n\t\t\t\t<Direction>
         
     | 
| 
      
 125 
     | 
    
         
            +
                    </Direction>\n\t\t\t\t<Updatetime>05:39 PM</Updatetime>\n\t\t\t\t<Vehicleid>127</Vehicleid>\n\t\t\t\t<Block>17163</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>
         
     | 
| 
      
 126 
     | 
    
         
            +
                    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>8</Route>\n\t\t\t\t<Direction>S</Direction>\n\t\t\t\t<Updatetime>05:37
         
     | 
| 
      
 127 
     | 
    
         
            +
                    PM</Updatetime>\n\t\t\t\t<Vehicleid>6319</Vehicleid>\n\t\t\t\t<Block>18</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>4.05</Speed>\n\t\t\t\t<Heading>17</Heading>\n\t\t\t\t<Routeid>15792</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route></Route>\n\t\t\t\t<Direction>
         
     | 
| 
      
 128 
     | 
    
         
            +
                    </Direction>\n\t\t\t\t<Updatetime>05:36 PM</Updatetime>\n\t\t\t\t<Vehicleid>7109</Vehicleid>\n\t\t\t\t<Block>181</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>12.40</Speed>\n\t\t\t\t<Heading>
         
     | 
| 
      
 129 
     | 
    
         
            +
                    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>I10W</Route>\n\t\t\t\t<Direction>O</Direction>\n\t\t\t\t<Updatetime>05:37
         
     | 
| 
      
 130 
     | 
    
         
            +
                    PM</Updatetime>\n\t\t\t\t<Vehicleid>7148</Vehicleid>\n\t\t\t\t<Block>183</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.72</Speed>\n\t\t\t\t<Heading>29</Heading>\n\t\t\t\t<Routeid>16791</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>I10W</Route>\n\t\t\t\t<Direction>O</Direction>\n\t\t\t\t<Updatetime>05:37
         
     | 
| 
      
 131 
     | 
    
         
            +
                    PM</Updatetime>\n\t\t\t\t<Vehicleid>7145</Vehicleid>\n\t\t\t\t<Block>186</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>10.20</Speed>\n\t\t\t\t<Heading>27</Heading>\n\t\t\t\t<Routeid>16791</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>I17</Route>\n\t\t\t\t<Direction>O</Direction>\n\t\t\t\t<Updatetime>05:34
         
     | 
| 
      
 132 
     | 
    
         
            +
                    PM</Updatetime>\n\t\t\t\t<Vehicleid>7149</Vehicleid>\n\t\t\t\t<Block>188</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>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>31</Heading>\n\t\t\t\t<Routeid>16728</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>05:37
         
     | 
| 
      
 133 
     | 
    
         
            +
                    PM</Updatetime>\n\t\t\t\t<Vehicleid>6347</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>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>
         
     | 
| 
      
 134 
     | 
    
         
            +
                    0</Heading>\n\t\t\t\t<Routeid>16893</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>05:38
         
     | 
| 
      
 135 
     | 
    
         
            +
                    PM</Updatetime>\n\t\t\t\t<Vehicleid>8002</Vehicleid>\n\t\t\t\t<Block>19</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.30</Speed>\n\t\t\t\t<Heading>25</Heading>\n\t\t\t\t<Routeid>15804</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>05:38
         
     | 
| 
      
 136 
     | 
    
         
            +
                    PM</Updatetime>\n\t\t\t\t<Vehicleid>6362</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>13.90</Speed>\n\t\t\t\t<Heading>18</Heading>\n\t\t\t\t<Routeid>16901</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>05:37
         
     | 
| 
      
 137 
     | 
    
         
            +
                    PM</Updatetime>\n\t\t\t\t<Vehicleid>6366</Vehicleid>\n\t\t\t\t<Block>191</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.23</Speed>\n\t\t\t\t<Heading>36</Heading>\n\t\t\t\t<Routeid>16893</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>05:36
         
     | 
| 
      
 138 
     | 
    
         
            +
                    PM</Updatetime>\n\t\t\t\t<Vehicleid>6372</Vehicleid>\n\t\t\t\t<Block>192</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.81</Speed>\n\t\t\t\t<Heading>18</Heading>\n\t\t\t\t<Routeid>16901</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>05:38
         
     | 
| 
      
 139 
     | 
    
         
            +
                    PM</Updatetime>\n\t\t\t\t<Vehicleid>6326</Vehicleid>\n\t\t\t\t<Block>193</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>
         
     | 
| 
      
 140 
     | 
    
         
            +
                    0</Heading>\n\t\t\t\t<Routeid>16893</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>05:37
         
     | 
| 
      
 141 
     | 
    
         
            +
                    PM</Updatetime>\n\t\t\t\t<Vehicleid>6333</Vehicleid>\n\t\t\t\t<Block>194</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>
         
     | 
| 
      
 142 
     | 
    
         
            +
                    0</Heading>\n\t\t\t\t<Routeid>16901</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>05:38
         
     | 
| 
      
 143 
     | 
    
         
            +
                    PM</Updatetime>\n\t\t\t\t<Vehicleid>6337</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>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>18.19</Speed>\n\t\t\t\t<Heading>18</Heading>\n\t\t\t\t<Routeid>16901</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>05:38
         
     | 
| 
      
 144 
     | 
    
         
            +
                    PM</Updatetime>\n\t\t\t\t<Vehicleid>6288</Vehicleid>\n\t\t\t\t<Block>198</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>11.73</Speed>\n\t\t\t\t<Heading>36</Heading>\n\t\t\t\t<Routeid>16893</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>05:37
         
     | 
| 
      
 145 
     | 
    
         
            +
                    PM</Updatetime>\n\t\t\t\t<Vehicleid>6017</Vehicleid>\n\t\t\t\t<Block>2</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.12</Speed>\n\t\t\t\t<Heading>27</Heading>\n\t\t\t\t<Routeid>15784</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>05:37
         
     | 
| 
      
 146 
     | 
    
         
            +
                    PM</Updatetime>\n\t\t\t\t<Vehicleid>5048</Vehicleid>\n\t\t\t\t<Block>2001</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.26</Speed>\n\t\t\t\t<Heading>
         
     | 
| 
      
 147 
     | 
    
         
            +
                    9</Heading>\n\t\t\t\t<Routeid>15736</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>05:36 PM</Updatetime>\n\t\t\t\t<Vehicleid>8034</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>N</Inservice>\n\t\t\t\t<Speed>0.00</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>3</Route>\n\t\t\t\t<Direction>W</Direction>\n\t\t\t\t<Updatetime>05:36
         
     | 
| 
      
 150 
     | 
    
         
            +
                    PM</Updatetime>\n\t\t\t\t<Vehicleid>6563</Vehicleid>\n\t\t\t\t<Block>2003</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.38</Speed>\n\t\t\t\t<Heading>27</Heading>\n\t\t\t\t<Routeid>15765</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>05:37
         
     | 
| 
      
 151 
     | 
    
         
            +
                    PM</Updatetime>\n\t\t\t\t<Vehicleid>8043</Vehicleid>\n\t\t\t\t<Block>2005</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>18.49</Speed>\n\t\t\t\t<Heading>
         
     | 
| 
      
 152 
     | 
    
         
            +
                    9</Heading>\n\t\t\t\t<Routeid>15733</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route></Route>\n\t\t\t\t<Direction>
         
     | 
| 
      
 153 
     | 
    
         
            +
                    </Direction>\n\t\t\t\t<Updatetime>05:38 PM</Updatetime>\n\t\t\t\t<Vehicleid>5014</Vehicleid>\n\t\t\t\t<Block>2006</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.09</Speed>\n\t\t\t\t<Heading>
         
     | 
| 
      
 154 
     | 
    
         
            +
                    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>3</Route>\n\t\t\t\t<Direction>E</Direction>\n\t\t\t\t<Updatetime>05:38
         
     | 
| 
      
 155 
     | 
    
         
            +
                    PM</Updatetime>\n\t\t\t\t<Vehicleid>6519</Vehicleid>\n\t\t\t\t<Block>2008</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.06</Speed>\n\t\t\t\t<Heading>
         
     | 
| 
      
 156 
     | 
    
         
            +
                    9</Heading>\n\t\t\t\t<Routeid>15738</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>05:38
         
     | 
| 
      
 157 
     | 
    
         
            +
                    PM</Updatetime>\n\t\t\t\t<Vehicleid>5006</Vehicleid>\n\t\t\t\t<Block>2009</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.07</Speed>\n\t\t\t\t<Heading>
         
     | 
| 
      
 158 
     | 
    
         
            +
                    0</Heading>\n\t\t\t\t<Routeid>15765</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>05:37
         
     | 
| 
      
 159 
     | 
    
         
            +
                    PM</Updatetime>\n\t\t\t\t<Vehicleid>6152</Vehicleid>\n\t\t\t\t<Block>201</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.75</Speed>\n\t\t\t\t<Heading>36</Heading>\n\t\t\t\t<Routeid>16894</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>05:38
         
     | 
| 
      
 160 
     | 
    
         
            +
                    PM</Updatetime>\n\t\t\t\t<Vehicleid>5001</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>5.45</Speed>\n\t\t\t\t<Heading>27</Heading>\n\t\t\t\t<Routeid>15761</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>05:37
         
     | 
| 
      
 161 
     | 
    
         
            +
                    PM</Updatetime>\n\t\t\t\t<Vehicleid>5002</Vehicleid>\n\t\t\t\t<Block>2011</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.27</Speed>\n\t\t\t\t<Heading>
         
     | 
| 
      
 162 
     | 
    
         
            +
                    9</Heading>\n\t\t\t\t<Routeid>15733</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>05:37
         
     | 
| 
      
 163 
     | 
    
         
            +
                    PM</Updatetime>\n\t\t\t\t<Vehicleid>8026</Vehicleid>\n\t\t\t\t<Block>2012</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>6.27</Speed>\n\t\t\t\t<Heading>
         
     | 
| 
      
 164 
     | 
    
         
            +
                    9</Heading>\n\t\t\t\t<Routeid>15738</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>05:37
         
     | 
| 
      
 165 
     | 
    
         
            +
                    PM</Updatetime>\n\t\t\t\t<Vehicleid>6504</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>13.11</Speed>\n\t\t\t\t<Heading>
         
     | 
| 
      
 166 
     | 
    
         
            +
                    9</Heading>\n\t\t\t\t<Routeid>15733</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>05:38
         
     | 
| 
      
 167 
     | 
    
         
            +
                    PM</Updatetime>\n\t\t\t\t<Vehicleid>6564</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>Y</Reliable>\n\t\t\t\t<Offroute>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.35</Speed>\n\t\t\t\t<Heading>27</Heading>\n\t\t\t\t<Routeid>15761</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>05:37
         
     | 
| 
      
 168 
     | 
    
         
            +
                    PM</Updatetime>\n\t\t\t\t<Vehicleid>6529</Vehicleid>\n\t\t\t\t<Block>2015</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>11.05</Speed>\n\t\t\t\t<Heading>27</Heading>\n\t\t\t\t<Routeid>15765</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>05:37
         
     | 
| 
      
 169 
     | 
    
         
            +
                    PM</Updatetime>\n\t\t\t\t<Vehicleid>6150</Vehicleid>\n\t\t\t\t<Block>2016</Block>\n\t\t\t\t<Adherance>-12</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>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.82</Speed>\n\t\t\t\t<Heading>27</Heading>\n\t\t\t\t<Routeid>15763</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>05:35
         
     | 
| 
      
 170 
     | 
    
         
            +
                    PM</Updatetime>\n\t\t\t\t<Vehicleid>6506</Vehicleid>\n\t\t\t\t<Block>2017</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>
         
     | 
| 
      
 171 
     | 
    
         
            +
                    0</Heading>\n\t\t\t\t<Routeid>15763</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>05:37
         
     | 
| 
      
 172 
     | 
    
         
            +
                    PM</Updatetime>\n\t\t\t\t<Vehicleid>6520</Vehicleid>\n\t\t\t\t<Block>2018</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.02</Speed>\n\t\t\t\t<Heading>27</Heading>\n\t\t\t\t<Routeid>15824</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>05:38
         
     | 
| 
      
 173 
     | 
    
         
            +
                    PM</Updatetime>\n\t\t\t\t<Vehicleid>5053</Vehicleid>\n\t\t\t\t<Block>2019</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.93</Speed>\n\t\t\t\t<Heading>
         
     | 
| 
      
 174 
     | 
    
         
            +
                    9</Heading>\n\t\t\t\t<Routeid>15820</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>05:32
         
     | 
| 
      
 175 
     | 
    
         
            +
                    PM</Updatetime>\n\t\t\t\t<Vehicleid>6310</Vehicleid>\n\t\t\t\t<Block>202</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>
         
     | 
| 
      
 176 
     | 
    
         
            +
                    0</Heading>\n\t\t\t\t<Routeid>16894</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>05:37
         
     | 
| 
      
 177 
     | 
    
         
            +
                    PM</Updatetime>\n\t\t\t\t<Vehicleid>5023</Vehicleid>\n\t\t\t\t<Block>2020</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.09</Speed>\n\t\t\t\t<Heading>
         
     | 
| 
      
 178 
     | 
    
         
            +
                    9</Heading>\n\t\t\t\t<Routeid>15820</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>05:37
         
     | 
| 
      
 179 
     | 
    
         
            +
                    PM</Updatetime>\n\t\t\t\t<Vehicleid>5020</Vehicleid>\n\t\t\t\t<Block>2022</Block>\n\t\t\t\t<Adherance>11</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>
         
     | 
| 
      
 180 
     | 
    
         
            +
                    0</Heading>\n\t\t\t\t<Routeid>15824</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>05:37
         
     | 
| 
      
 181 
     | 
    
         
            +
                    PM</Updatetime>\n\t\t\t\t<Vehicleid>5004</Vehicleid>\n\t\t\t\t<Block>2024</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.57</Speed>\n\t\t\t\t<Heading>14</Heading>\n\t\t\t\t<Routeid>15875</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>05:38
         
     | 
| 
      
 182 
     | 
    
         
            +
                    PM</Updatetime>\n\t\t\t\t<Vehicleid>6507</Vehicleid>\n\t\t\t\t<Block>2025</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.97</Speed>\n\t\t\t\t<Heading>
         
     | 
| 
      
 183 
     | 
    
         
            +
                    9</Heading>\n\t\t\t\t<Routeid>15862</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>05:37
         
     | 
| 
      
 184 
     | 
    
         
            +
                    PM</Updatetime>\n\t\t\t\t<Vehicleid>6562</Vehicleid>\n\t\t\t\t<Block>2026</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.57</Speed>\n\t\t\t\t<Heading>27</Heading>\n\t\t\t\t<Routeid>15874</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>05:38
         
     | 
| 
      
 185 
     | 
    
         
            +
                    PM</Updatetime>\n\t\t\t\t<Vehicleid>8049</Vehicleid>\n\t\t\t\t<Block>2027</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.72</Speed>\n\t\t\t\t<Heading>27</Heading>\n\t\t\t\t<Routeid>15875</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>05:37
         
     | 
| 
      
 186 
     | 
    
         
            +
                    PM</Updatetime>\n\t\t\t\t<Vehicleid>5011</Vehicleid>\n\t\t\t\t<Block>2028</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.28</Speed>\n\t\t\t\t<Heading>
         
     | 
| 
      
 187 
     | 
    
         
            +
                    9</Heading>\n\t\t\t\t<Routeid>15862</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>05:38
         
     | 
| 
      
 188 
     | 
    
         
            +
                    PM</Updatetime>\n\t\t\t\t<Vehicleid>5024</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>6.30</Speed>\n\t\t\t\t<Heading>
         
     | 
| 
      
 189 
     | 
    
         
            +
                    9</Heading>\n\t\t\t\t<Routeid>15861</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>05:37
         
     | 
| 
      
 190 
     | 
    
         
            +
                    PM</Updatetime>\n\t\t\t\t<Vehicleid>6365</Vehicleid>\n\t\t\t\t<Block>203</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.68</Speed>\n\t\t\t\t<Heading>36</Heading>\n\t\t\t\t<Routeid>15905</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>05:37
         
     | 
| 
      
 191 
     | 
    
         
            +
                    PM</Updatetime>\n\t\t\t\t<Vehicleid>8025</Vehicleid>\n\t\t\t\t<Block>2030</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>2.94</Speed>\n\t\t\t\t<Heading>27</Heading>\n\t\t\t\t<Routeid>15875</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>05:38
         
     | 
| 
      
 192 
     | 
    
         
            +
                    PM</Updatetime>\n\t\t\t\t<Vehicleid>5007</Vehicleid>\n\t\t\t\t<Block>2031</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>5.39</Speed>\n\t\t\t\t<Heading>30</Heading>\n\t\t\t\t<Routeid>15874</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>05:37
         
     | 
| 
      
 193 
     | 
    
         
            +
                    PM</Updatetime>\n\t\t\t\t<Vehicleid>8037</Vehicleid>\n\t\t\t\t<Block>2032</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.48</Speed>\n\t\t\t\t<Heading>
         
     | 
| 
      
 194 
     | 
    
         
            +
                    9</Heading>\n\t\t\t\t<Routeid>15860</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>05:38
         
     | 
| 
      
 195 
     | 
    
         
            +
                    PM</Updatetime>\n\t\t\t\t<Vehicleid>5015</Vehicleid>\n\t\t\t\t<Block>2033</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.76</Speed>\n\t\t\t\t<Heading>14</Heading>\n\t\t\t\t<Routeid>15861</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>05:36
         
     | 
| 
      
 196 
     | 
    
         
            +
                    PM</Updatetime>\n\t\t\t\t<Vehicleid>6517</Vehicleid>\n\t\t\t\t<Block>2034</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.53</Speed>\n\t\t\t\t<Heading>27</Heading>\n\t\t\t\t<Routeid>15875</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>05:38
         
     | 
| 
      
 197 
     | 
    
         
            +
                    PM</Updatetime>\n\t\t\t\t<Vehicleid>5059</Vehicleid>\n\t\t\t\t<Block>2035</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>10.18</Speed>\n\t\t\t\t<Heading>
         
     | 
| 
      
 198 
     | 
    
         
            +
                    9</Heading>\n\t\t\t\t<Routeid>15860</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>05:38
         
     | 
| 
      
 199 
     | 
    
         
            +
                    PM</Updatetime>\n\t\t\t\t<Vehicleid>5050</Vehicleid>\n\t\t\t\t<Block>2037</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.09</Speed>\n\t\t\t\t<Heading>
         
     | 
| 
      
 200 
     | 
    
         
            +
                    0</Heading>\n\t\t\t\t<Routeid>15861</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>05:37
         
     | 
| 
      
 201 
     | 
    
         
            +
                    PM</Updatetime>\n\t\t\t\t<Vehicleid>8033</Vehicleid>\n\t\t\t\t<Block>2038</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>
         
     | 
| 
      
 202 
     | 
    
         
            +
                    9</Heading>\n\t\t\t\t<Routeid>15861</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>05:37
         
     | 
| 
      
 203 
     | 
    
         
            +
                    PM</Updatetime>\n\t\t\t\t<Vehicleid>6530</Vehicleid>\n\t\t\t\t<Block>2039</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>6.83</Speed>\n\t\t\t\t<Heading>
         
     | 
| 
      
 204 
     | 
    
         
            +
                    0</Heading>\n\t\t\t\t<Routeid>15874</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>05:36
         
     | 
| 
      
 205 
     | 
    
         
            +
                    PM</Updatetime>\n\t\t\t\t<Vehicleid>6313</Vehicleid>\n\t\t\t\t<Block>204</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>
         
     | 
| 
      
 206 
     | 
    
         
            +
                    0</Heading>\n\t\t\t\t<Routeid>15906</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route></Route>\n\t\t\t\t<Direction>
         
     | 
| 
      
 207 
     | 
    
         
            +
                    </Direction>\n\t\t\t\t<Updatetime>05:38 PM</Updatetime>\n\t\t\t\t<Vehicleid>6531</Vehicleid>\n\t\t\t\t<Block>2040</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>0.00</Speed>\n\t\t\t\t<Heading>
         
     | 
| 
      
 208 
     | 
    
         
            +
                    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>E</Direction>\n\t\t\t\t<Updatetime>05:36
         
     | 
| 
      
 209 
     | 
    
         
            +
                    PM</Updatetime>\n\t\t\t\t<Vehicleid>8035</Vehicleid>\n\t\t\t\t<Block>2041</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>
         
     | 
| 
      
 210 
     | 
    
         
            +
                    9</Heading>\n\t\t\t\t<Routeid>15859</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>05:37
         
     | 
| 
      
 211 
     | 
    
         
            +
                    PM</Updatetime>\n\t\t\t\t<Vehicleid>5036</Vehicleid>\n\t\t\t\t<Block>2042</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>27</Heading>\n\t\t\t\t<Routeid>15874</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>05:37
         
     | 
| 
      
 212 
     | 
    
         
            +
                    PM</Updatetime>\n\t\t\t\t<Vehicleid>5008</Vehicleid>\n\t\t\t\t<Block>2048</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.47</Speed>\n\t\t\t\t<Heading>
         
     | 
| 
      
 213 
     | 
    
         
            +
                    9</Heading>\n\t\t\t\t<Routeid>15929</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>05:37
         
     | 
| 
      
 214 
     | 
    
         
            +
                    PM</Updatetime>\n\t\t\t\t<Vehicleid>5028</Vehicleid>\n\t\t\t\t<Block>2049</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.17</Speed>\n\t\t\t\t<Heading>
         
     | 
| 
      
 215 
     | 
    
         
            +
                    9</Heading>\n\t\t\t\t<Routeid>15927</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>05:37
         
     | 
| 
      
 216 
     | 
    
         
            +
                    PM</Updatetime>\n\t\t\t\t<Vehicleid>8027</Vehicleid>\n\t\t\t\t<Block>2050</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>22.23</Speed>\n\t\t\t\t<Heading>27</Heading>\n\t\t\t\t<Routeid>15938</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>05:36
         
     | 
| 
      
 217 
     | 
    
         
            +
                    PM</Updatetime>\n\t\t\t\t<Vehicleid>8028</Vehicleid>\n\t\t\t\t<Block>2052</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.48</Speed>\n\t\t\t\t<Heading>10</Heading>\n\t\t\t\t<Routeid>16014</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>05:37
         
     | 
| 
      
 218 
     | 
    
         
            +
                    PM</Updatetime>\n\t\t\t\t<Vehicleid>6524</Vehicleid>\n\t\t\t\t<Block>2053</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.23</Speed>\n\t\t\t\t<Heading>
         
     | 
| 
      
 219 
     | 
    
         
            +
                    9</Heading>\n\t\t\t\t<Routeid>15928</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>05:38
         
     | 
| 
      
 220 
     | 
    
         
            +
                    PM</Updatetime>\n\t\t\t\t<Vehicleid>8046</Vehicleid>\n\t\t\t\t<Block>2059</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.25</Speed>\n\t\t\t\t<Heading>27</Heading>\n\t\t\t\t<Routeid>15937</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>05:38
         
     | 
| 
      
 221 
     | 
    
         
            +
                    PM</Updatetime>\n\t\t\t\t<Vehicleid>5027</Vehicleid>\n\t\t\t\t<Block>2060</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>14.24</Speed>\n\t\t\t\t<Heading>27</Heading>\n\t\t\t\t<Routeid>15940</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>05:38
         
     | 
| 
      
 222 
     | 
    
         
            +
                    PM</Updatetime>\n\t\t\t\t<Vehicleid>6509</Vehicleid>\n\t\t\t\t<Block>2062</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>
         
     | 
| 
      
 223 
     | 
    
         
            +
                    9</Heading>\n\t\t\t\t<Routeid>15927</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>05:37
         
     | 
| 
      
 224 
     | 
    
         
            +
                    PM</Updatetime>\n\t\t\t\t<Vehicleid>8041</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>0.00</Speed>\n\t\t\t\t<Heading>
         
     | 
| 
      
 225 
     | 
    
         
            +
                    0</Heading>\n\t\t\t\t<Routeid>15927</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>05:38
         
     | 
| 
      
 226 
     | 
    
         
            +
                    PM</Updatetime>\n\t\t\t\t<Vehicleid>8021</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>10.05</Speed>\n\t\t\t\t<Heading>27</Heading>\n\t\t\t\t<Routeid>15938</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>05:37
         
     | 
| 
      
 227 
     | 
    
         
            +
                    PM</Updatetime>\n\t\t\t\t<Vehicleid>6514</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>12.70</Speed>\n\t\t\t\t<Heading>27</Heading>\n\t\t\t\t<Routeid>15940</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>05:38
         
     | 
| 
      
 228 
     | 
    
         
            +
                    PM</Updatetime>\n\t\t\t\t<Vehicleid>8039</Vehicleid>\n\t\t\t\t<Block>2069</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>4.23</Speed>\n\t\t\t\t<Heading>
         
     | 
| 
      
 229 
     | 
    
         
            +
                    9</Heading>\n\t\t\t\t<Routeid>15929</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>05:37
         
     | 
| 
      
 230 
     | 
    
         
            +
                    PM</Updatetime>\n\t\t\t\t<Vehicleid>6549</Vehicleid>\n\t\t\t\t<Block>207</Block>\n\t\t\t\t<Adherance>-11</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.39</Speed>\n\t\t\t\t<Heading>18</Heading>\n\t\t\t\t<Routeid>15916</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>05:38
         
     | 
| 
      
 231 
     | 
    
         
            +
                    PM</Updatetime>\n\t\t\t\t<Vehicleid>6505</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>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>
         
     | 
| 
      
 232 
     | 
    
         
            +
                    9</Heading>\n\t\t\t\t<Routeid>15929</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>05:37
         
     | 
| 
      
 233 
     | 
    
         
            +
                    PM</Updatetime>\n\t\t\t\t<Vehicleid>8050</Vehicleid>\n\t\t\t\t<Block>2073</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>
         
     | 
| 
      
 234 
     | 
    
         
            +
                    0</Heading>\n\t\t\t\t<Routeid>15937</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>05:38
         
     | 
| 
      
 235 
     | 
    
         
            +
                    PM</Updatetime>\n\t\t\t\t<Vehicleid>5021</Vehicleid>\n\t\t\t\t<Block>2074</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.59</Speed>\n\t\t\t\t<Heading>27</Heading>\n\t\t\t\t<Routeid>15938</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route></Route>\n\t\t\t\t<Direction>
         
     | 
| 
      
 236 
     | 
    
         
            +
                    </Direction>\n\t\t\t\t<Updatetime>05:35 PM</Updatetime>\n\t\t\t\t<Vehicleid>6502</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>N</Inservice>\n\t\t\t\t<Speed>2.88</Speed>\n\t\t\t\t<Heading>
         
     | 
| 
      
 237 
     | 
    
         
            +
                    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>05:37
         
     | 
| 
      
 238 
     | 
    
         
            +
                    PM</Updatetime>\n\t\t\t\t<Vehicleid>8047</Vehicleid>\n\t\t\t\t<Block>2076</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.35</Speed>\n\t\t\t\t<Heading>
         
     | 
| 
      
 239 
     | 
    
         
            +
                    9</Heading>\n\t\t\t\t<Routeid>15926</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>05:37
         
     | 
| 
      
 240 
     | 
    
         
            +
                    PM</Updatetime>\n\t\t\t\t<Vehicleid>5026</Vehicleid>\n\t\t\t\t<Block>2078</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>6.85</Speed>\n\t\t\t\t<Heading>27</Heading>\n\t\t\t\t<Routeid>15937</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route></Route>\n\t\t\t\t<Direction>
         
     | 
| 
      
 241 
     | 
    
         
            +
                    </Direction>\n\t\t\t\t<Updatetime>05:37 PM</Updatetime>\n\t\t\t\t<Vehicleid>5012</Vehicleid>\n\t\t\t\t<Block>2079</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.00</Speed>\n\t\t\t\t<Heading>
         
     | 
| 
      
 242 
     | 
    
         
            +
                    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>05:38
         
     | 
| 
      
 243 
     | 
    
         
            +
                    PM</Updatetime>\n\t\t\t\t<Vehicleid>5018</Vehicleid>\n\t\t\t\t<Block>2080</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>
         
     | 
| 
      
 244 
     | 
    
         
            +
                    0</Heading>\n\t\t\t\t<Routeid>16002</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>05:33
         
     | 
| 
      
 245 
     | 
    
         
            +
                    PM</Updatetime>\n\t\t\t\t<Vehicleid>5057</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>9.11</Speed>\n\t\t\t\t<Heading>
         
     | 
| 
      
 246 
     | 
    
         
            +
                    9</Heading>\n\t\t\t\t<Routeid>16004</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>05:37
         
     | 
| 
      
 247 
     | 
    
         
            +
                    PM</Updatetime>\n\t\t\t\t<Vehicleid>5038</Vehicleid>\n\t\t\t\t<Block>2083</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>11.28</Speed>\n\t\t\t\t<Heading>
         
     | 
| 
      
 248 
     | 
    
         
            +
                    9</Heading>\n\t\t\t\t<Routeid>16003</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>05:34
         
     | 
| 
      
 249 
     | 
    
         
            +
                    PM</Updatetime>\n\t\t\t\t<Vehicleid>5043</Vehicleid>\n\t\t\t\t<Block>2084</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.17</Speed>\n\t\t\t\t<Heading>27</Heading>\n\t\t\t\t<Routeid>16017</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>05:37
         
     | 
| 
      
 250 
     | 
    
         
            +
                    PM</Updatetime>\n\t\t\t\t<Vehicleid>5033</Vehicleid>\n\t\t\t\t<Block>2085</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>6.74</Speed>\n\t\t\t\t<Heading>
         
     | 
| 
      
 251 
     | 
    
         
            +
                    9</Heading>\n\t\t\t\t<Routeid>16003</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>05:37
         
     | 
| 
      
 252 
     | 
    
         
            +
                    PM</Updatetime>\n\t\t\t\t<Vehicleid>8038</Vehicleid>\n\t\t\t\t<Block>2086</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>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>
         
     | 
| 
      
 253 
     | 
    
         
            +
                    0</Heading>\n\t\t\t\t<Routeid>16005</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>05:37
         
     | 
| 
      
 254 
     | 
    
         
            +
                    PM</Updatetime>\n\t\t\t\t<Vehicleid>6518</Vehicleid>\n\t\t\t\t<Block>2087</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.69</Speed>\n\t\t\t\t<Heading>18</Heading>\n\t\t\t\t<Routeid>16018</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>05:38
         
     | 
| 
      
 255 
     | 
    
         
            +
                    PM</Updatetime>\n\t\t\t\t<Vehicleid>6521</Vehicleid>\n\t\t\t\t<Block>2088</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.80</Speed>\n\t\t\t\t<Heading>
         
     | 
| 
      
 256 
     | 
    
         
            +
                    9</Heading>\n\t\t\t\t<Routeid>16005</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>05:37
         
     | 
| 
      
 257 
     | 
    
         
            +
                    PM</Updatetime>\n\t\t\t\t<Vehicleid>6527</Vehicleid>\n\t\t\t\t<Block>2089</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.75</Speed>\n\t\t\t\t<Heading>
         
     | 
| 
      
 258 
     | 
    
         
            +
                    9</Heading>\n\t\t\t\t<Routeid>16004</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>05:37
         
     | 
| 
      
 259 
     | 
    
         
            +
                    PM</Updatetime>\n\t\t\t\t<Vehicleid>6320</Vehicleid>\n\t\t\t\t<Block>209</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.20</Speed>\n\t\t\t\t<Heading>13</Heading>\n\t\t\t\t<Routeid>16131</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>05:38
         
     | 
| 
      
 260 
     | 
    
         
            +
                    PM</Updatetime>\n\t\t\t\t<Vehicleid>6528</Vehicleid>\n\t\t\t\t<Block>2090</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>27</Heading>\n\t\t\t\t<Routeid>16015</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>05:37
         
     | 
| 
      
 261 
     | 
    
         
            +
                    PM</Updatetime>\n\t\t\t\t<Vehicleid>5047</Vehicleid>\n\t\t\t\t<Block>2091</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>4.05</Speed>\n\t\t\t\t<Heading>27</Heading>\n\t\t\t\t<Routeid>16015</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>05:37
         
     | 
| 
      
 262 
     | 
    
         
            +
                    PM</Updatetime>\n\t\t\t\t<Vehicleid>5046</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>11.40</Speed>\n\t\t\t\t<Heading>27</Heading>\n\t\t\t\t<Routeid>16017</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>05:38
         
     | 
| 
      
 263 
     | 
    
         
            +
                    PM</Updatetime>\n\t\t\t\t<Vehicleid>5037</Vehicleid>\n\t\t\t\t<Block>2093</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.30</Speed>\n\t\t\t\t<Heading>
         
     | 
| 
      
 264 
     | 
    
         
            +
                    2</Heading>\n\t\t\t\t<Routeid>16003</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>05:37
         
     | 
| 
      
 265 
     | 
    
         
            +
                    PM</Updatetime>\n\t\t\t\t<Vehicleid>5039</Vehicleid>\n\t\t\t\t<Block>2094</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>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>
         
     | 
| 
      
 266 
     | 
    
         
            +
                    9</Heading>\n\t\t\t\t<Routeid>16003</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>05:38
         
     | 
| 
      
 267 
     | 
    
         
            +
                    PM</Updatetime>\n\t\t\t\t<Vehicleid>8044</Vehicleid>\n\t\t\t\t<Block>2096</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.45</Speed>\n\t\t\t\t<Heading>27</Heading>\n\t\t\t\t<Routeid>16018</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>05:38
         
     | 
| 
      
 268 
     | 
    
         
            +
                    PM</Updatetime>\n\t\t\t\t<Vehicleid>8023</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>Y</Reliable>\n\t\t\t\t<Offroute>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.66</Speed>\n\t\t\t\t<Heading>27</Heading>\n\t\t\t\t<Routeid>16015</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>05:37
         
     | 
| 
      
 269 
     | 
    
         
            +
                    PM</Updatetime>\n\t\t\t\t<Vehicleid>6532</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>
         
     | 
| 
      
 270 
     | 
    
         
            +
                    0</Heading>\n\t\t\t\t<Routeid>16030</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>05:38
         
     | 
| 
      
 271 
     | 
    
         
            +
                    PM</Updatetime>\n\t\t\t\t<Vehicleid>6370</Vehicleid>\n\t\t\t\t<Block>21</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>2.15</Speed>\n\t\t\t\t<Heading>35</Heading>\n\t\t\t\t<Routeid>15796</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>05:37
         
     | 
| 
      
 272 
     | 
    
         
            +
                    PM</Updatetime>\n\t\t\t\t<Vehicleid>6296</Vehicleid>\n\t\t\t\t<Block>210</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.94</Speed>\n\t\t\t\t<Heading>
         
     | 
| 
      
 273 
     | 
    
         
            +
                    9</Heading>\n\t\t\t\t<Routeid>16125</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>05:38
         
     | 
| 
      
 274 
     | 
    
         
            +
                    PM</Updatetime>\n\t\t\t\t<Vehicleid>5034</Vehicleid>\n\t\t\t\t<Block>2100</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.55</Speed>\n\t\t\t\t<Heading>36</Heading>\n\t\t\t\t<Routeid>16026</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>05:38
         
     | 
| 
      
 275 
     | 
    
         
            +
                    PM</Updatetime>\n\t\t\t\t<Vehicleid>6565</Vehicleid>\n\t\t\t\t<Block>2101</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.39</Speed>\n\t\t\t\t<Heading>18</Heading>\n\t\t\t\t<Routeid>16030</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>05:37
         
     | 
| 
      
 276 
     | 
    
         
            +
                    PM</Updatetime>\n\t\t\t\t<Vehicleid>5045</Vehicleid>\n\t\t\t\t<Block>2102</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.03</Speed>\n\t\t\t\t<Heading>18</Heading>\n\t\t\t\t<Routeid>16030</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>05:37
         
     | 
| 
      
 277 
     | 
    
         
            +
                    PM</Updatetime>\n\t\t\t\t<Vehicleid>5040</Vehicleid>\n\t\t\t\t<Block>2103</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.40</Speed>\n\t\t\t\t<Heading>36</Heading>\n\t\t\t\t<Routeid>16117</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>05:37
         
     | 
| 
      
 278 
     | 
    
         
            +
                    PM</Updatetime>\n\t\t\t\t<Vehicleid>5025</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>11.00</Speed>\n\t\t\t\t<Heading>18</Heading>\n\t\t\t\t<Routeid>16121</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>05:37
         
     | 
| 
      
 279 
     | 
    
         
            +
                    PM</Updatetime>\n\t\t\t\t<Vehicleid>6523</Vehicleid>\n\t\t\t\t<Block>2105</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.08</Speed>\n\t\t\t\t<Heading>36</Heading>\n\t\t\t\t<Routeid>16117</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>05:37
         
     | 
| 
      
 280 
     | 
    
         
            +
                    PM</Updatetime>\n\t\t\t\t<Vehicleid>5049</Vehicleid>\n\t\t\t\t<Block>2106</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.28</Speed>\n\t\t\t\t<Heading>18</Heading>\n\t\t\t\t<Routeid>16121</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>05:37
         
     | 
| 
      
 281 
     | 
    
         
            +
                    PM</Updatetime>\n\t\t\t\t<Vehicleid>5041</Vehicleid>\n\t\t\t\t<Block>2107</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>20.30</Speed>\n\t\t\t\t<Heading>18</Heading>\n\t\t\t\t<Routeid>16180</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>05:38
         
     | 
| 
      
 282 
     | 
    
         
            +
                    PM</Updatetime>\n\t\t\t\t<Vehicleid>5060</Vehicleid>\n\t\t\t\t<Block>2108</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.09</Speed>\n\t\t\t\t<Heading>18</Heading>\n\t\t\t\t<Routeid>16180</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>05:38
         
     | 
| 
      
 283 
     | 
    
         
            +
                    PM</Updatetime>\n\t\t\t\t<Vehicleid>6522</Vehicleid>\n\t\t\t\t<Block>2109</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>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>
         
     | 
| 
      
 284 
     | 
    
         
            +
                    0</Heading>\n\t\t\t\t<Routeid>16180</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>05:37
         
     | 
| 
      
 285 
     | 
    
         
            +
                    PM</Updatetime>\n\t\t\t\t<Vehicleid>6321</Vehicleid>\n\t\t\t\t<Block>211</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>35.38</Speed>\n\t\t\t\t<Heading>
         
     | 
| 
      
 286 
     | 
    
         
            +
                    1</Heading>\n\t\t\t\t<Routeid>16034</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>05:37
         
     | 
| 
      
 287 
     | 
    
         
            +
                    PM</Updatetime>\n\t\t\t\t<Vehicleid>6512</Vehicleid>\n\t\t\t\t<Block>2110</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.41</Speed>\n\t\t\t\t<Heading>36</Heading>\n\t\t\t\t<Routeid>16174</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>05:38
         
     | 
| 
      
 288 
     | 
    
         
            +
                    PM</Updatetime>\n\t\t\t\t<Vehicleid>5005</Vehicleid>\n\t\t\t\t<Block>2111</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>21.43</Speed>\n\t\t\t\t<Heading>36</Heading>\n\t\t\t\t<Routeid>16174</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>05:37
         
     | 
| 
      
 289 
     | 
    
         
            +
                    PM</Updatetime>\n\t\t\t\t<Vehicleid>5029</Vehicleid>\n\t\t\t\t<Block>2117</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>18.31</Speed>\n\t\t\t\t<Heading>36</Heading>\n\t\t\t\t<Routeid>16262</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>05:38
         
     | 
| 
      
 290 
     | 
    
         
            +
                    PM</Updatetime>\n\t\t\t\t<Vehicleid>5031</Vehicleid>\n\t\t\t\t<Block>2118</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>6.02</Speed>\n\t\t\t\t<Heading>18</Heading>\n\t\t\t\t<Routeid>16269</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>05:38
         
     | 
| 
      
 291 
     | 
    
         
            +
                    PM</Updatetime>\n\t\t\t\t<Vehicleid>5032</Vehicleid>\n\t\t\t\t<Block>2119</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.36</Speed>\n\t\t\t\t<Heading>
         
     | 
| 
      
 292 
     | 
    
         
            +
                    0</Heading>\n\t\t\t\t<Routeid>16262</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>05:36
         
     | 
| 
      
 293 
     | 
    
         
            +
                    PM</Updatetime>\n\t\t\t\t<Vehicleid>6286</Vehicleid>\n\t\t\t\t<Block>212</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>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>18</Heading>\n\t\t\t\t<Routeid>16275</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>05:37
         
     | 
| 
      
 294 
     | 
    
         
            +
                    PM</Updatetime>\n\t\t\t\t<Vehicleid>6510</Vehicleid>\n\t\t\t\t<Block>2120</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>32.65</Speed>\n\t\t\t\t<Heading>18</Heading>\n\t\t\t\t<Routeid>16269</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>GAL</Route>\n\t\t\t\t<Direction>W</Direction>\n\t\t\t\t<Updatetime>05:37
         
     | 
| 
      
 295 
     | 
    
         
            +
                    PM</Updatetime>\n\t\t\t\t<Vehicleid>6516</Vehicleid>\n\t\t\t\t<Block>2124</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.22</Speed>\n\t\t\t\t<Heading>32</Heading>\n\t\t\t\t<Routeid>16719</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>05:37
         
     | 
| 
      
 296 
     | 
    
         
            +
                    PM</Updatetime>\n\t\t\t\t<Vehicleid>3768</Vehicleid>\n\t\t\t\t<Block>2126</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.70</Speed>\n\t\t\t\t<Heading>
         
     | 
| 
      
 297 
     | 
    
         
            +
                    1</Heading>\n\t\t\t\t<Routeid>16819</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>05:36
         
     | 
| 
      
 298 
     | 
    
         
            +
                    PM</Updatetime>\n\t\t\t\t<Vehicleid>3002</Vehicleid>\n\t\t\t\t<Block>2128</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.11</Speed>\n\t\t\t\t<Heading>27</Heading>\n\t\t\t\t<Routeid>16819</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>05:38
         
     | 
| 
      
 299 
     | 
    
         
            +
                    PM</Updatetime>\n\t\t\t\t<Vehicleid>6369</Vehicleid>\n\t\t\t\t<Block>213</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>19.23</Speed>\n\t\t\t\t<Heading>18</Heading>\n\t\t\t\t<Routeid>16038</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>05:38
         
     | 
| 
      
 300 
     | 
    
         
            +
                    PM</Updatetime>\n\t\t\t\t<Vehicleid>6508</Vehicleid>\n\t\t\t\t<Block>2134</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>8.08</Speed>\n\t\t\t\t<Heading>
         
     | 
| 
      
 301 
     | 
    
         
            +
                    0</Heading>\n\t\t\t\t<Routeid>16835</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>05:38
         
     | 
| 
      
 302 
     | 
    
         
            +
                    PM</Updatetime>\n\t\t\t\t<Vehicleid>6566</Vehicleid>\n\t\t\t\t<Block>2136</Block>\n\t\t\t\t<Adherance>-13</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>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.65</Speed>\n\t\t\t\t<Heading>
         
     | 
| 
      
 303 
     | 
    
         
            +
                    0</Heading>\n\t\t\t\t<Routeid>16831</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>05:38
         
     | 
| 
      
 304 
     | 
    
         
            +
                    PM</Updatetime>\n\t\t\t\t<Vehicleid>6567</Vehicleid>\n\t\t\t\t<Block>2137</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.93</Speed>\n\t\t\t\t<Heading>
         
     | 
| 
      
 305 
     | 
    
         
            +
                    9</Heading>\n\t\t\t\t<Routeid>16835</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>05:38
         
     | 
| 
      
 306 
     | 
    
         
            +
                    PM</Updatetime>\n\t\t\t\t<Vehicleid>6015</Vehicleid>\n\t\t\t\t<Block>2138</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.43</Speed>\n\t\t\t\t<Heading>18</Heading>\n\t\t\t\t<Routeid>16831</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>W</Direction>\n\t\t\t\t<Updatetime>05:38
         
     | 
| 
      
 307 
     | 
    
         
            +
                    PM</Updatetime>\n\t\t\t\t<Vehicleid>6553</Vehicleid>\n\t\t\t\t<Block>214</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>4.01</Speed>\n\t\t\t\t<Heading>27</Heading>\n\t\t\t\t<Routeid>15721</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>05:35
         
     | 
| 
      
 308 
     | 
    
         
            +
                    PM</Updatetime>\n\t\t\t\t<Vehicleid>6331</Vehicleid>\n\t\t\t\t<Block>215</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>
         
     | 
| 
      
 309 
     | 
    
         
            +
                    0</Heading>\n\t\t\t\t<Routeid>16125</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>05:35
         
     | 
| 
      
 310 
     | 
    
         
            +
                    PM</Updatetime>\n\t\t\t\t<Vehicleid>6330</Vehicleid>\n\t\t\t\t<Block>22</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.98</Speed>\n\t\t\t\t<Heading>36</Heading>\n\t\t\t\t<Routeid>15796</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>05:37
         
     | 
| 
      
 311 
     | 
    
         
            +
                    PM</Updatetime>\n\t\t\t\t<Vehicleid>6335</Vehicleid>\n\t\t\t\t<Block>23</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>22.82</Speed>\n\t\t\t\t<Heading>27</Heading>\n\t\t\t\t<Routeid>15804</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>05:35
         
     | 
| 
      
 312 
     | 
    
         
            +
                    PM</Updatetime>\n\t\t\t\t<Vehicleid>6340</Vehicleid>\n\t\t\t\t<Block>25</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.00</Speed>\n\t\t\t\t<Heading>25</Heading>\n\t\t\t\t<Routeid>15796</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>05:38
         
     | 
| 
      
 313 
     | 
    
         
            +
                    PM</Updatetime>\n\t\t\t\t<Vehicleid>6594</Vehicleid>\n\t\t\t\t<Block>26</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>
         
     | 
| 
      
 314 
     | 
    
         
            +
                    0</Heading>\n\t\t\t\t<Routeid>15796</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>05:37
         
     | 
| 
      
 315 
     | 
    
         
            +
                    PM</Updatetime>\n\t\t\t\t<Vehicleid>8054</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.98</Speed>\n\t\t\t\t<Heading>18</Heading>\n\t\t\t\t<Routeid>15816</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>05:38
         
     | 
| 
      
 316 
     | 
    
         
            +
                    PM</Updatetime>\n\t\t\t\t<Vehicleid>6327</Vehicleid>\n\t\t\t\t<Block>3</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.35</Speed>\n\t\t\t\t<Heading>18</Heading>\n\t\t\t\t<Routeid>15784</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>05:38
         
     | 
| 
      
 317 
     | 
    
         
            +
                    PM</Updatetime>\n\t\t\t\t<Vehicleid>6041</Vehicleid>\n\t\t\t\t<Block>30</Block>\n\t\t\t\t<Adherance>-11</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>
         
     | 
| 
      
 318 
     | 
    
         
            +
                    0</Heading>\n\t\t\t\t<Routeid>15816</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>05:37
         
     | 
| 
      
 319 
     | 
    
         
            +
                    PM</Updatetime>\n\t\t\t\t<Vehicleid>6025</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>7.23</Speed>\n\t\t\t\t<Heading>27</Heading>\n\t\t\t\t<Routeid>15828</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>05:37
         
     | 
| 
      
 320 
     | 
    
         
            +
                    PM</Updatetime>\n\t\t\t\t<Vehicleid>6099</Vehicleid>\n\t\t\t\t<Block>32</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.74</Speed>\n\t\t\t\t<Heading>34</Heading>\n\t\t\t\t<Routeid>15832</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>05:35
         
     | 
| 
      
 321 
     | 
    
         
            +
                    PM</Updatetime>\n\t\t\t\t<Vehicleid>6364</Vehicleid>\n\t\t\t\t<Block>35</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.42</Speed>\n\t\t\t\t<Heading>
         
     | 
| 
      
 322 
     | 
    
         
            +
                    5</Heading>\n\t\t\t\t<Routeid>15851</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>05:38
         
     | 
| 
      
 323 
     | 
    
         
            +
                    PM</Updatetime>\n\t\t\t\t<Vehicleid>6377</Vehicleid>\n\t\t\t\t<Block>36</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>22.85</Speed>\n\t\t\t\t<Heading>18</Heading>\n\t\t\t\t<Routeid>15851</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route></Route>\n\t\t\t\t<Direction>
         
     | 
| 
      
 324 
     | 
    
         
            +
                    </Direction>\n\t\t\t\t<Updatetime>05:37 PM</Updatetime>\n\t\t\t\t<Vehicleid>6374</Vehicleid>\n\t\t\t\t<Block>37</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>
         
     | 
| 
      
 325 
     | 
    
         
            +
                    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>S</Direction>\n\t\t\t\t<Updatetime>05:38
         
     | 
| 
      
 326 
     | 
    
         
            +
                    PM</Updatetime>\n\t\t\t\t<Vehicleid>6350</Vehicleid>\n\t\t\t\t<Block>39</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>14.14</Speed>\n\t\t\t\t<Heading>18</Heading>\n\t\t\t\t<Routeid>15851</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>05:37
         
     | 
| 
      
 327 
     | 
    
         
            +
                    PM</Updatetime>\n\t\t\t\t<Vehicleid>6339</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>9.01</Speed>\n\t\t\t\t<Heading>18</Heading>\n\t\t\t\t<Routeid>15784</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>05:38
         
     | 
| 
      
 328 
     | 
    
         
            +
                    PM</Updatetime>\n\t\t\t\t<Vehicleid>6304</Vehicleid>\n\t\t\t\t<Block>40</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>18.84</Speed>\n\t\t\t\t<Heading>36</Heading>\n\t\t\t\t<Routeid>15840</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>05:37
         
     | 
| 
      
 329 
     | 
    
         
            +
                    PM</Updatetime>\n\t\t\t\t<Vehicleid>1585</Vehicleid>\n\t\t\t\t<Block>4001</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.30</Speed>\n\t\t\t\t<Heading>27</Heading>\n\t\t\t\t<Routeid>16839</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route></Route>\n\t\t\t\t<Direction>
         
     | 
| 
      
 330 
     | 
    
         
            +
                    </Direction>\n\t\t\t\t<Updatetime>05:36 PM</Updatetime>\n\t\t\t\t<Vehicleid>1587</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>Y</Stopped>\n\t\t\t\t<Inservice>N</Inservice>\n\t\t\t\t<Speed>0.11</Speed>\n\t\t\t\t<Heading>
         
     | 
| 
      
 331 
     | 
    
         
            +
                    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>N</Direction>\n\t\t\t\t<Updatetime>05:38
         
     | 
| 
      
 332 
     | 
    
         
            +
                    PM</Updatetime>\n\t\t\t\t<Vehicleid>5085</Vehicleid>\n\t\t\t\t<Block>402</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.61</Speed>\n\t\t\t\t<Heading>36</Heading>\n\t\t\t\t<Routeid>15780</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>05:34
         
     | 
| 
      
 333 
     | 
    
         
            +
                    PM</Updatetime>\n\t\t\t\t<Vehicleid>6581</Vehicleid>\n\t\t\t\t<Block>403</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.53</Speed>\n\t\t\t\t<Heading>36</Heading>\n\t\t\t\t<Routeid>15780</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>05:38
         
     | 
| 
      
 334 
     | 
    
         
            +
                    PM</Updatetime>\n\t\t\t\t<Vehicleid>5095</Vehicleid>\n\t\t\t\t<Block>404</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.02</Speed>\n\t\t\t\t<Heading>27</Heading>\n\t\t\t\t<Routeid>15780</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>05:36
         
     | 
| 
      
 335 
     | 
    
         
            +
                    PM</Updatetime>\n\t\t\t\t<Vehicleid>6243</Vehicleid>\n\t\t\t\t<Block>405</Block>\n\t\t\t\t<Adherance>12</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>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.80</Speed>\n\t\t\t\t<Heading>35</Heading>\n\t\t\t\t<Routeid>15780</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>05:38
         
     | 
| 
      
 336 
     | 
    
         
            +
                    PM</Updatetime>\n\t\t\t\t<Vehicleid>5090</Vehicleid>\n\t\t\t\t<Block>406</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.82</Speed>\n\t\t\t\t<Heading>18</Heading>\n\t\t\t\t<Routeid>15792</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>05:37
         
     | 
| 
      
 337 
     | 
    
         
            +
                    PM</Updatetime>\n\t\t\t\t<Vehicleid>6618</Vehicleid>\n\t\t\t\t<Block>4063</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>21.00</Speed>\n\t\t\t\t<Heading>27</Heading>\n\t\t\t\t<Routeid>15963</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route></Route>\n\t\t\t\t<Direction>
         
     | 
| 
      
 338 
     | 
    
         
            +
                    </Direction>\n\t\t\t\t<Updatetime>05:31 PM</Updatetime>\n\t\t\t\t<Vehicleid>6709</Vehicleid>\n\t\t\t\t<Block>4065</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.01</Speed>\n\t\t\t\t<Heading>
         
     | 
| 
      
 339 
     | 
    
         
            +
                    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>30</Route>\n\t\t\t\t<Direction>W</Direction>\n\t\t\t\t<Updatetime>05:37
         
     | 
| 
      
 340 
     | 
    
         
            +
                    PM</Updatetime>\n\t\t\t\t<Vehicleid>6612</Vehicleid>\n\t\t\t\t<Block>4066</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.86</Speed>\n\t\t\t\t<Heading>27</Heading>\n\t\t\t\t<Routeid>15963</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>05:37
         
     | 
| 
      
 341 
     | 
    
         
            +
                    PM</Updatetime>\n\t\t\t\t<Vehicleid>6747</Vehicleid>\n\t\t\t\t<Block>4067</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.17</Speed>\n\t\t\t\t<Heading>
         
     | 
| 
      
 342 
     | 
    
         
            +
                    9</Heading>\n\t\t\t\t<Routeid>15950</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>05:37
         
     | 
| 
      
 343 
     | 
    
         
            +
                    PM</Updatetime>\n\t\t\t\t<Vehicleid>6637</Vehicleid>\n\t\t\t\t<Block>4068</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>8.09</Speed>\n\t\t\t\t<Heading>29</Heading>\n\t\t\t\t<Routeid>16064</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>05:37
         
     | 
| 
      
 344 
     | 
    
         
            +
                    PM</Updatetime>\n\t\t\t\t<Vehicleid>6633</Vehicleid>\n\t\t\t\t<Block>4069</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.52</Speed>\n\t\t\t\t<Heading>27</Heading>\n\t\t\t\t<Routeid>16218</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>05:36
         
     | 
| 
      
 345 
     | 
    
         
            +
                    PM</Updatetime>\n\t\t\t\t<Vehicleid>5109</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>13.07</Speed>\n\t\t\t\t<Heading>36</Heading>\n\t\t\t\t<Routeid>15812</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>05:37
         
     | 
| 
      
 346 
     | 
    
         
            +
                    PM</Updatetime>\n\t\t\t\t<Vehicleid>6640</Vehicleid>\n\t\t\t\t<Block>4070</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.90</Speed>\n\t\t\t\t<Heading>18</Heading>\n\t\t\t\t<Routeid>16044</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>05:37
         
     | 
| 
      
 347 
     | 
    
         
            +
                    PM</Updatetime>\n\t\t\t\t<Vehicleid>6620</Vehicleid>\n\t\t\t\t<Block>4071</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.02</Speed>\n\t\t\t\t<Heading>28</Heading>\n\t\t\t\t<Routeid>16064</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>05:37
         
     | 
| 
      
 348 
     | 
    
         
            +
                    PM</Updatetime>\n\t\t\t\t<Vehicleid>6457</Vehicleid>\n\t\t\t\t<Block>4073</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>27.44</Speed>\n\t\t\t\t<Heading>
         
     | 
| 
      
 349 
     | 
    
         
            +
                    9</Heading>\n\t\t\t\t<Routeid>16046</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>05:37
         
     | 
| 
      
 350 
     | 
    
         
            +
                    PM</Updatetime>\n\t\t\t\t<Vehicleid>6646</Vehicleid>\n\t\t\t\t<Block>4074</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.31</Speed>\n\t\t\t\t<Heading>27</Heading>\n\t\t\t\t<Routeid>16064</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>05:37
         
     | 
| 
      
 351 
     | 
    
         
            +
                    PM</Updatetime>\n\t\t\t\t<Vehicleid>6636</Vehicleid>\n\t\t\t\t<Block>4075</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.49</Speed>\n\t\t\t\t<Heading>27</Heading>\n\t\t\t\t<Routeid>16065</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>05:37
         
     | 
| 
      
 352 
     | 
    
         
            +
                    PM</Updatetime>\n\t\t\t\t<Vehicleid>6677</Vehicleid>\n\t\t\t\t<Block>4077</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>27</Heading>\n\t\t\t\t<Routeid>16065</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>05:38
         
     | 
| 
      
 353 
     | 
    
         
            +
                    PM</Updatetime>\n\t\t\t\t<Vehicleid>6625</Vehicleid>\n\t\t\t\t<Block>4078</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.62</Speed>\n\t\t\t\t<Heading>19</Heading>\n\t\t\t\t<Routeid>16064</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>05:38
         
     | 
| 
      
 354 
     | 
    
         
            +
                    PM</Updatetime>\n\t\t\t\t<Vehicleid>6645</Vehicleid>\n\t\t\t\t<Block>4079</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>5.32</Speed>\n\t\t\t\t<Heading>
         
     | 
| 
      
 355 
     | 
    
         
            +
                    9</Heading>\n\t\t\t\t<Routeid>16046</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>05:36
         
     | 
| 
      
 356 
     | 
    
         
            +
                    PM</Updatetime>\n\t\t\t\t<Vehicleid>6623</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.09</Speed>\n\t\t\t\t<Heading>
         
     | 
| 
      
 357 
     | 
    
         
            +
                    9</Heading>\n\t\t\t\t<Routeid>16044</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>05:37
         
     | 
| 
      
 358 
     | 
    
         
            +
                    PM</Updatetime>\n\t\t\t\t<Vehicleid>6708</Vehicleid>\n\t\t\t\t<Block>4083</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.47</Speed>\n\t\t\t\t<Heading>27</Heading>\n\t\t\t\t<Routeid>16254</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>05:37
         
     | 
| 
      
 359 
     | 
    
         
            +
                    PM</Updatetime>\n\t\t\t\t<Vehicleid>6685</Vehicleid>\n\t\t\t\t<Block>4084</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>19.72</Speed>\n\t\t\t\t<Heading>36</Heading>\n\t\t\t\t<Routeid>16248</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>05:37
         
     | 
| 
      
 360 
     | 
    
         
            +
                    PM</Updatetime>\n\t\t\t\t<Vehicleid>6700</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>19.66</Speed>\n\t\t\t\t<Heading>18</Heading>\n\t\t\t\t<Routeid>16083</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>05:38
         
     | 
| 
      
 361 
     | 
    
         
            +
                    PM</Updatetime>\n\t\t\t\t<Vehicleid>6710</Vehicleid>\n\t\t\t\t<Block>4086</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.81</Speed>\n\t\t\t\t<Heading>36</Heading>\n\t\t\t\t<Routeid>16076</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>05:37
         
     | 
| 
      
 362 
     | 
    
         
            +
                    PM</Updatetime>\n\t\t\t\t<Vehicleid>6670</Vehicleid>\n\t\t\t\t<Block>4087</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>
         
     | 
| 
      
 363 
     | 
    
         
            +
                    0</Heading>\n\t\t\t\t<Routeid>16083</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>05:38
         
     | 
| 
      
 364 
     | 
    
         
            +
                    PM</Updatetime>\n\t\t\t\t<Vehicleid>6679</Vehicleid>\n\t\t\t\t<Block>4088</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.18</Speed>\n\t\t\t\t<Heading>18</Heading>\n\t\t\t\t<Routeid>16166</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>05:35
         
     | 
| 
      
 365 
     | 
    
         
            +
                    PM</Updatetime>\n\t\t\t\t<Vehicleid>6604</Vehicleid>\n\t\t\t\t<Block>4089</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>
         
     | 
| 
      
 366 
     | 
    
         
            +
                    0</Heading>\n\t\t\t\t<Routeid>16147</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>05:38
         
     | 
| 
      
 367 
     | 
    
         
            +
                    PM</Updatetime>\n\t\t\t\t<Vehicleid>5106</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>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>
         
     | 
| 
      
 368 
     | 
    
         
            +
                    0</Heading>\n\t\t\t\t<Routeid>15896</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>05:38
         
     | 
| 
      
 369 
     | 
    
         
            +
                    PM</Updatetime>\n\t\t\t\t<Vehicleid>6607</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>29.83</Speed>\n\t\t\t\t<Heading>18</Heading>\n\t\t\t\t<Routeid>16166</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>05:37
         
     | 
| 
      
 370 
     | 
    
         
            +
                    PM</Updatetime>\n\t\t\t\t<Vehicleid>6689</Vehicleid>\n\t\t\t\t<Block>4094</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>14.92</Speed>\n\t\t\t\t<Heading>36</Heading>\n\t\t\t\t<Routeid>16147</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>05:37
         
     | 
| 
      
 371 
     | 
    
         
            +
                    PM</Updatetime>\n\t\t\t\t<Vehicleid>6712</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>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>35</Heading>\n\t\t\t\t<Routeid>16147</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>05:38
         
     | 
| 
      
 372 
     | 
    
         
            +
                    PM</Updatetime>\n\t\t\t\t<Vehicleid>6631</Vehicleid>\n\t\t\t\t<Block>4096</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>22.44</Speed>\n\t\t\t\t<Heading>17</Heading>\n\t\t\t\t<Routeid>16163</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>05:37
         
     | 
| 
      
 373 
     | 
    
         
            +
                    PM</Updatetime>\n\t\t\t\t<Vehicleid>6641</Vehicleid>\n\t\t\t\t<Block>4097</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>23.33</Speed>\n\t\t\t\t<Heading>36</Heading>\n\t\t\t\t<Routeid>16143</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>05:37
         
     | 
| 
      
 374 
     | 
    
         
            +
                    PM</Updatetime>\n\t\t\t\t<Vehicleid>6627</Vehicleid>\n\t\t\t\t<Block>4098</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>34.60</Speed>\n\t\t\t\t<Heading>36</Heading>\n\t\t\t\t<Routeid>16143</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>05:38
         
     | 
| 
      
 375 
     | 
    
         
            +
                    PM</Updatetime>\n\t\t\t\t<Vehicleid>6571</Vehicleid>\n\t\t\t\t<Block>41</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.11</Speed>\n\t\t\t\t<Heading>36</Heading>\n\t\t\t\t<Routeid>15840</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>05:37
         
     | 
| 
      
 376 
     | 
    
         
            +
                    PM</Updatetime>\n\t\t\t\t<Vehicleid>8060</Vehicleid>\n\t\t\t\t<Block>410</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.75</Speed>\n\t\t\t\t<Heading>36</Heading>\n\t\t\t\t<Routeid>15887</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>05:38
         
     | 
| 
      
 377 
     | 
    
         
            +
                    PM</Updatetime>\n\t\t\t\t<Vehicleid>6681</Vehicleid>\n\t\t\t\t<Block>4101</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>12.22</Speed>\n\t\t\t\t<Heading>27</Heading>\n\t\t\t\t<Routeid>16218</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>05:38
         
     | 
| 
      
 378 
     | 
    
         
            +
                    PM</Updatetime>\n\t\t\t\t<Vehicleid>6647</Vehicleid>\n\t\t\t\t<Block>4103</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>13.34</Speed>\n\t\t\t\t<Heading>27</Heading>\n\t\t\t\t<Routeid>16218</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>05:38
         
     | 
| 
      
 379 
     | 
    
         
            +
                    PM</Updatetime>\n\t\t\t\t<Vehicleid>6639</Vehicleid>\n\t\t\t\t<Block>4104</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.49</Speed>\n\t\t\t\t<Heading>27</Heading>\n\t\t\t\t<Routeid>16217</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>05:37
         
     | 
| 
      
 380 
     | 
    
         
            +
                    PM</Updatetime>\n\t\t\t\t<Vehicleid>6634</Vehicleid>\n\t\t\t\t<Block>4106</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.41</Speed>\n\t\t\t\t<Heading>
         
     | 
| 
      
 381 
     | 
    
         
            +
                    5</Heading>\n\t\t\t\t<Routeid>15997</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>05:38
         
     | 
| 
      
 382 
     | 
    
         
            +
                    PM</Updatetime>\n\t\t\t\t<Vehicleid>5064</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>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>22.39</Speed>\n\t\t\t\t<Heading>36</Heading>\n\t\t\t\t<Routeid>15887</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>05:37
         
     | 
| 
      
 383 
     | 
    
         
            +
                    PM</Updatetime>\n\t\t\t\t<Vehicleid>6598</Vehicleid>\n\t\t\t\t<Block>4111</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.36</Speed>\n\t\t\t\t<Heading>
         
     | 
| 
      
 384 
     | 
    
         
            +
                    9</Heading>\n\t\t\t\t<Routeid>16200</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>05:38
         
     | 
| 
      
 385 
     | 
    
         
            +
                    PM</Updatetime>\n\t\t\t\t<Vehicleid>6638</Vehicleid>\n\t\t\t\t<Block>4112</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.98</Speed>\n\t\t\t\t<Heading>27</Heading>\n\t\t\t\t<Routeid>16218</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>05:37
         
     | 
| 
      
 386 
     | 
    
         
            +
                    PM</Updatetime>\n\t\t\t\t<Vehicleid>6608</Vehicleid>\n\t\t\t\t<Block>4113</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.26</Speed>\n\t\t\t\t<Heading>27</Heading>\n\t\t\t\t<Routeid>16218</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>05:31
         
     | 
| 
      
 387 
     | 
    
         
            +
                    PM</Updatetime>\n\t\t\t\t<Vehicleid>6609</Vehicleid>\n\t\t\t\t<Block>4114</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>
         
     | 
| 
      
 388 
     | 
    
         
            +
                    0</Heading>\n\t\t\t\t<Routeid>16218</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>05:35
         
     | 
| 
      
 389 
     | 
    
         
            +
                    PM</Updatetime>\n\t\t\t\t<Vehicleid>6643</Vehicleid>\n\t\t\t\t<Block>4115</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>
         
     | 
| 
      
 390 
     | 
    
         
            +
                    0</Heading>\n\t\t\t\t<Routeid>16200</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>05:38
         
     | 
| 
      
 391 
     | 
    
         
            +
                    PM</Updatetime>\n\t\t\t\t<Vehicleid>6711</Vehicleid>\n\t\t\t\t<Block>4116</Block>\n\t\t\t\t<Adherance>-2</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>26.53</Speed>\n\t\t\t\t<Heading>
         
     | 
| 
      
 392 
     | 
    
         
            +
                    9</Heading>\n\t\t\t\t<Routeid>16230</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>05:38
         
     | 
| 
      
 393 
     | 
    
         
            +
                    PM</Updatetime>\n\t\t\t\t<Vehicleid>6691</Vehicleid>\n\t\t\t\t<Block>4117</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>16.20</Speed>\n\t\t\t\t<Heading>27</Heading>\n\t\t\t\t<Routeid>16230</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>05:38
         
     | 
| 
      
 394 
     | 
    
         
            +
                    PM</Updatetime>\n\t\t\t\t<Vehicleid>6684</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>29.26</Speed>\n\t\t\t\t<Heading>27</Heading>\n\t\t\t\t<Routeid>16236</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>05:37
         
     | 
| 
      
 395 
     | 
    
         
            +
                    PM</Updatetime>\n\t\t\t\t<Vehicleid>6705</Vehicleid>\n\t\t\t\t<Block>4119</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>12.00</Speed>\n\t\t\t\t<Heading>18</Heading>\n\t\t\t\t<Routeid>16236</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>05:37
         
     | 
| 
      
 396 
     | 
    
         
            +
                    PM</Updatetime>\n\t\t\t\t<Vehicleid>6746</Vehicleid>\n\t\t\t\t<Block>4120</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.82</Speed>\n\t\t\t\t<Heading>36</Heading>\n\t\t\t\t<Routeid>16240</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>05:37
         
     | 
| 
      
 397 
     | 
    
         
            +
                    PM</Updatetime>\n\t\t\t\t<Vehicleid>6699</Vehicleid>\n\t\t\t\t<Block>4121</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.28</Speed>\n\t\t\t\t<Heading>18</Heading>\n\t\t\t\t<Routeid>16244</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>05:37
         
     | 
| 
      
 398 
     | 
    
         
            +
                    PM</Updatetime>\n\t\t\t\t<Vehicleid>6695</Vehicleid>\n\t\t\t\t<Block>4122</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>15.57</Speed>\n\t\t\t\t<Heading>26</Heading>\n\t\t\t\t<Routeid>16240</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>05:37
         
     | 
| 
      
 399 
     | 
    
         
            +
                    PM</Updatetime>\n\t\t\t\t<Vehicleid>6737</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>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>22.40</Speed>\n\t\t\t\t<Heading>18</Heading>\n\t\t\t\t<Routeid>16254</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>05:38
         
     | 
| 
      
 400 
     | 
    
         
            +
                    PM</Updatetime>\n\t\t\t\t<Vehicleid>6672</Vehicleid>\n\t\t\t\t<Block>4124</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>46.99</Speed>\n\t\t\t\t<Heading>
         
     | 
| 
      
 401 
     | 
    
         
            +
                    0</Heading>\n\t\t\t\t<Routeid>16301</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>05:37
         
     | 
| 
      
 402 
     | 
    
         
            +
                    PM</Updatetime>\n\t\t\t\t<Vehicleid>8065</Vehicleid>\n\t\t\t\t<Block>4125</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.02</Speed>\n\t\t\t\t<Heading>18</Heading>\n\t\t\t\t<Routeid>16317</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>05:32
         
     | 
| 
      
 403 
     | 
    
         
            +
                    PM</Updatetime>\n\t\t\t\t<Vehicleid>6454</Vehicleid>\n\t\t\t\t<Block>4126</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>13.31</Speed>\n\t\t\t\t<Heading>18</Heading>\n\t\t\t\t<Routeid>16317</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>05:36
         
     | 
| 
      
 404 
     | 
    
         
            +
                    PM</Updatetime>\n\t\t\t\t<Vehicleid>8070</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>25.14</Speed>\n\t\t\t\t<Heading>36</Heading>\n\t\t\t\t<Routeid>16301</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>05:37
         
     | 
| 
      
 405 
     | 
    
         
            +
                    PM</Updatetime>\n\t\t\t\t<Vehicleid>6694</Vehicleid>\n\t\t\t\t<Block>4128</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.40</Speed>\n\t\t\t\t<Heading>18</Heading>\n\t\t\t\t<Routeid>16317</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>05:37
         
     | 
| 
      
 406 
     | 
    
         
            +
                    PM</Updatetime>\n\t\t\t\t<Vehicleid>8076</Vehicleid>\n\t\t\t\t<Block>4129</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>20.91</Speed>\n\t\t\t\t<Heading>36</Heading>\n\t\t\t\t<Routeid>16301</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>05:36
         
     | 
| 
      
 407 
     | 
    
         
            +
                    PM</Updatetime>\n\t\t\t\t<Vehicleid>5086</Vehicleid>\n\t\t\t\t<Block>413</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.39</Speed>\n\t\t\t\t<Heading>36</Heading>\n\t\t\t\t<Routeid>15887</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>05:37
         
     | 
| 
      
 408 
     | 
    
         
            +
                    PM</Updatetime>\n\t\t\t\t<Vehicleid>8068</Vehicleid>\n\t\t\t\t<Block>4130</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.22</Speed>\n\t\t\t\t<Heading>18</Heading>\n\t\t\t\t<Routeid>16317</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>05:38
         
     | 
| 
      
 409 
     | 
    
         
            +
                    PM</Updatetime>\n\t\t\t\t<Vehicleid>6740</Vehicleid>\n\t\t\t\t<Block>4131</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.45</Speed>\n\t\t\t\t<Heading>18</Heading>\n\t\t\t\t<Routeid>16317</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>05:38
         
     | 
| 
      
 410 
     | 
    
         
            +
                    PM</Updatetime>\n\t\t\t\t<Vehicleid>6748</Vehicleid>\n\t\t\t\t<Block>4132</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.80</Speed>\n\t\t\t\t<Heading>36</Heading>\n\t\t\t\t<Routeid>16301</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>05:38
         
     | 
| 
      
 411 
     | 
    
         
            +
                    PM</Updatetime>\n\t\t\t\t<Vehicleid>6704</Vehicleid>\n\t\t\t\t<Block>4133</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>
         
     | 
| 
      
 412 
     | 
    
         
            +
                    0</Heading>\n\t\t\t\t<Routeid>16317</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>05:36
         
     | 
| 
      
 413 
     | 
    
         
            +
                    PM</Updatetime>\n\t\t\t\t<Vehicleid>8080</Vehicleid>\n\t\t\t\t<Block>4134</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>8.40</Speed>\n\t\t\t\t<Heading>18</Heading>\n\t\t\t\t<Routeid>16317</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>05:37
         
     | 
| 
      
 414 
     | 
    
         
            +
                    PM</Updatetime>\n\t\t\t\t<Vehicleid>6745</Vehicleid>\n\t\t\t\t<Block>4135</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.32</Speed>\n\t\t\t\t<Heading>
         
     | 
| 
      
 415 
     | 
    
         
            +
                    0</Heading>\n\t\t\t\t<Routeid>16301</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>05:35
         
     | 
| 
      
 416 
     | 
    
         
            +
                    PM</Updatetime>\n\t\t\t\t<Vehicleid>6619</Vehicleid>\n\t\t\t\t<Block>4137</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.11</Speed>\n\t\t\t\t<Heading>
         
     | 
| 
      
 417 
     | 
    
         
            +
                    0</Heading>\n\t\t\t\t<Routeid>16301</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>514</Route>\n\t\t\t\t<Direction>O</Direction>\n\t\t\t\t<Updatetime>05:37
         
     | 
| 
      
 418 
     | 
    
         
            +
                    PM</Updatetime>\n\t\t\t\t<Vehicleid>6744</Vehicleid>\n\t\t\t\t<Block>4139</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>11.47</Speed>\n\t\t\t\t<Heading>36</Heading>\n\t\t\t\t<Routeid>16653</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>514</Route>\n\t\t\t\t<Direction>O</Direction>\n\t\t\t\t<Updatetime>05:37
         
     | 
| 
      
 419 
     | 
    
         
            +
                    PM</Updatetime>\n\t\t\t\t<Vehicleid>8075</Vehicleid>\n\t\t\t\t<Block>4140</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>12.30</Speed>\n\t\t\t\t<Heading>
         
     | 
| 
      
 420 
     | 
    
         
            +
                    9</Heading>\n\t\t\t\t<Routeid>16653</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>05:37
         
     | 
| 
      
 421 
     | 
    
         
            +
                    PM</Updatetime>\n\t\t\t\t<Vehicleid>6736</Vehicleid>\n\t\t\t\t<Block>4141</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.64</Speed>\n\t\t\t\t<Heading>
         
     | 
| 
      
 422 
     | 
    
         
            +
                    8</Heading>\n\t\t\t\t<Routeid>16355</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route></Route>\n\t\t\t\t<Direction>
         
     | 
| 
      
 423 
     | 
    
         
            +
                    </Direction>\n\t\t\t\t<Updatetime>05:35 PM</Updatetime>\n\t\t\t\t<Vehicleid>8069</Vehicleid>\n\t\t\t\t<Block>4142</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>N</Inservice>\n\t\t\t\t<Speed>0.44</Speed>\n\t\t\t\t<Heading>
         
     | 
| 
      
 424 
     | 
    
         
            +
                    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>77</Route>\n\t\t\t\t<Direction>E</Direction>\n\t\t\t\t<Updatetime>05:37
         
     | 
| 
      
 425 
     | 
    
         
            +
                    PM</Updatetime>\n\t\t\t\t<Vehicleid>8071</Vehicleid>\n\t\t\t\t<Block>4143</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>19.67</Speed>\n\t\t\t\t<Heading>18</Heading>\n\t\t\t\t<Routeid>16336</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>05:38
         
     | 
| 
      
 426 
     | 
    
         
            +
                    PM</Updatetime>\n\t\t\t\t<Vehicleid>8072</Vehicleid>\n\t\t\t\t<Block>4144</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.55</Speed>\n\t\t\t\t<Heading>
         
     | 
| 
      
 427 
     | 
    
         
            +
                    9</Heading>\n\t\t\t\t<Routeid>16336</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>05:37
         
     | 
| 
      
 428 
     | 
    
         
            +
                    PM</Updatetime>\n\t\t\t\t<Vehicleid>8074</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>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>5.00</Speed>\n\t\t\t\t<Heading>29</Heading>\n\t\t\t\t<Routeid>16355</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>05:37
         
     | 
| 
      
 429 
     | 
    
         
            +
                    PM</Updatetime>\n\t\t\t\t<Vehicleid>8078</Vehicleid>\n\t\t\t\t<Block>4146</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.07</Speed>\n\t\t\t\t<Heading>27</Heading>\n\t\t\t\t<Routeid>16355</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>05:37
         
     | 
| 
      
 430 
     | 
    
         
            +
                    PM</Updatetime>\n\t\t\t\t<Vehicleid>6622</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>12.81</Speed>\n\t\t\t\t<Heading>
         
     | 
| 
      
 431 
     | 
    
         
            +
                    9</Heading>\n\t\t\t\t<Routeid>16336</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>05:37
         
     | 
| 
      
 432 
     | 
    
         
            +
                    PM</Updatetime>\n\t\t\t\t<Vehicleid>6626</Vehicleid>\n\t\t\t\t<Block>4148</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.80</Speed>\n\t\t\t\t<Heading>27</Heading>\n\t\t\t\t<Routeid>16218</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>522</Route>\n\t\t\t\t<Direction>O</Direction>\n\t\t\t\t<Updatetime>05:37
         
     | 
| 
      
 433 
     | 
    
         
            +
                    PM</Updatetime>\n\t\t\t\t<Vehicleid>6749</Vehicleid>\n\t\t\t\t<Block>4149</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>35.33</Speed>\n\t\t\t\t<Heading>12</Heading>\n\t\t\t\t<Routeid>16668</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>05:37
         
     | 
| 
      
 434 
     | 
    
         
            +
                    PM</Updatetime>\n\t\t\t\t<Vehicleid>5097</Vehicleid>\n\t\t\t\t<Block>415</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.57</Speed>\n\t\t\t\t<Heading>36</Heading>\n\t\t\t\t<Routeid>15887</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>05:37
         
     | 
| 
      
 435 
     | 
    
         
            +
                    PM</Updatetime>\n\t\t\t\t<Vehicleid>6680</Vehicleid>\n\t\t\t\t<Block>4150</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>29.11</Speed>\n\t\t\t\t<Heading>21</Heading>\n\t\t\t\t<Routeid>16402</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>05:37
         
     | 
| 
      
 436 
     | 
    
         
            +
                    PM</Updatetime>\n\t\t\t\t<Vehicleid>6735</Vehicleid>\n\t\t\t\t<Block>4151</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>16.70</Speed>\n\t\t\t\t<Heading>36</Heading>\n\t\t\t\t<Routeid>16389</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>05:38
         
     | 
| 
      
 437 
     | 
    
         
            +
                    PM</Updatetime>\n\t\t\t\t<Vehicleid>6696</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>6.33</Speed>\n\t\t\t\t<Heading>35</Heading>\n\t\t\t\t<Routeid>16402</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>05:37
         
     | 
| 
      
 438 
     | 
    
         
            +
                    PM</Updatetime>\n\t\t\t\t<Vehicleid>6706</Vehicleid>\n\t\t\t\t<Block>4154</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.85</Speed>\n\t\t\t\t<Heading>36</Heading>\n\t\t\t\t<Routeid>16389</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>05:38
         
     | 
| 
      
 439 
     | 
    
         
            +
                    PM</Updatetime>\n\t\t\t\t<Vehicleid>6707</Vehicleid>\n\t\t\t\t<Block>4156</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>22.61</Speed>\n\t\t\t\t<Heading>26</Heading>\n\t\t\t\t<Routeid>16402</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>05:37
         
     | 
| 
      
 440 
     | 
    
         
            +
                    PM</Updatetime>\n\t\t\t\t<Vehicleid>6693</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>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>19.84</Speed>\n\t\t\t\t<Heading>
         
     | 
| 
      
 441 
     | 
    
         
            +
                    2</Heading>\n\t\t\t\t<Routeid>16389</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>05:38
         
     | 
| 
      
 442 
     | 
    
         
            +
                    PM</Updatetime>\n\t\t\t\t<Vehicleid>6741</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>Y</Inservice>\n\t\t\t\t<Speed>15.24</Speed>\n\t\t\t\t<Heading>18</Heading>\n\t\t\t\t<Routeid>16402</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>05:36
         
     | 
| 
      
 443 
     | 
    
         
            +
                    PM</Updatetime>\n\t\t\t\t<Vehicleid>6703</Vehicleid>\n\t\t\t\t<Block>4161</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.47</Speed>\n\t\t\t\t<Heading>18</Heading>\n\t\t\t\t<Routeid>16405</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>05:37
         
     | 
| 
      
 444 
     | 
    
         
            +
                    PM</Updatetime>\n\t\t\t\t<Vehicleid>6734</Vehicleid>\n\t\t\t\t<Block>4162</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.02</Speed>\n\t\t\t\t<Heading>16</Heading>\n\t\t\t\t<Routeid>16392</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>05:37
         
     | 
| 
      
 445 
     | 
    
         
            +
                    PM</Updatetime>\n\t\t\t\t<Vehicleid>6702</Vehicleid>\n\t\t\t\t<Block>4163</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.41</Speed>\n\t\t\t\t<Heading>36</Heading>\n\t\t\t\t<Routeid>16392</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>05:38
         
     | 
| 
      
 446 
     | 
    
         
            +
                    PM</Updatetime>\n\t\t\t\t<Vehicleid>6629</Vehicleid>\n\t\t\t\t<Block>4164</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>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>18</Heading>\n\t\t\t\t<Routeid>16435</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>05:37
         
     | 
| 
      
 447 
     | 
    
         
            +
                    PM</Updatetime>\n\t\t\t\t<Vehicleid>6644</Vehicleid>\n\t\t\t\t<Block>4165</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.35</Speed>\n\t\t\t\t<Heading>17</Heading>\n\t\t\t\t<Routeid>16435</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>05:38
         
     | 
| 
      
 448 
     | 
    
         
            +
                    PM</Updatetime>\n\t\t\t\t<Vehicleid>6675</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>18.45</Speed>\n\t\t\t\t<Heading>36</Heading>\n\t\t\t\t<Routeid>16425</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>05:38
         
     | 
| 
      
 449 
     | 
    
         
            +
                    PM</Updatetime>\n\t\t\t\t<Vehicleid>6605</Vehicleid>\n\t\t\t\t<Block>4170</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.09</Speed>\n\t\t\t\t<Heading>36</Heading>\n\t\t\t\t<Routeid>16425</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route></Route>\n\t\t\t\t<Direction>
         
     | 
| 
      
 450 
     | 
    
         
            +
                    </Direction>\n\t\t\t\t<Updatetime>05:37 PM</Updatetime>\n\t\t\t\t<Vehicleid>6649</Vehicleid>\n\t\t\t\t<Block>4172</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.47</Speed>\n\t\t\t\t<Heading>
         
     | 
| 
      
 451 
     | 
    
         
            +
                    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>108</Route>\n\t\t\t\t<Direction>W</Direction>\n\t\t\t\t<Updatetime>05:34
         
     | 
| 
      
 452 
     | 
    
         
            +
                    PM</Updatetime>\n\t\t\t\t<Vehicleid>6642</Vehicleid>\n\t\t\t\t<Block>4174</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.83</Speed>\n\t\t\t\t<Heading>27</Heading>\n\t\t\t\t<Routeid>16496</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>05:38
         
     | 
| 
      
 453 
     | 
    
         
            +
                    PM</Updatetime>\n\t\t\t\t<Vehicleid>6682</Vehicleid>\n\t\t\t\t<Block>4175</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.14</Speed>\n\t\t\t\t<Heading>27</Heading>\n\t\t\t\t<Routeid>16496</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>05:37
         
     | 
| 
      
 454 
     | 
    
         
            +
                    PM</Updatetime>\n\t\t\t\t<Vehicleid>6617</Vehicleid>\n\t\t\t\t<Block>4176</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.78</Speed>\n\t\t\t\t<Heading>18</Heading>\n\t\t\t\t<Routeid>16522</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>05:38
         
     | 
| 
      
 455 
     | 
    
         
            +
                    PM</Updatetime>\n\t\t\t\t<Vehicleid>6673</Vehicleid>\n\t\t\t\t<Block>4178</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>17.18</Speed>\n\t\t\t\t<Heading>
         
     | 
| 
      
 456 
     | 
    
         
            +
                    9</Heading>\n\t\t\t\t<Routeid>16589</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>05:36
         
     | 
| 
      
 457 
     | 
    
         
            +
                    PM</Updatetime>\n\t\t\t\t<Vehicleid>6603</Vehicleid>\n\t\t\t\t<Block>4180</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.70</Speed>\n\t\t\t\t<Heading>36</Heading>\n\t\t\t\t<Routeid>16615</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>511</Route>\n\t\t\t\t<Direction>N</Direction>\n\t\t\t\t<Updatetime>05:37
         
     | 
| 
      
 458 
     | 
    
         
            +
                    PM</Updatetime>\n\t\t\t\t<Vehicleid>6726</Vehicleid>\n\t\t\t\t<Block>4184</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>29.64</Speed>\n\t\t\t\t<Heading>10</Heading>\n\t\t\t\t<Routeid>16647</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route></Route>\n\t\t\t\t<Direction>
         
     | 
| 
      
 459 
     | 
    
         
            +
                    </Direction>\n\t\t\t\t<Updatetime>05:34 PM</Updatetime>\n\t\t\t\t<Vehicleid>8077</Vehicleid>\n\t\t\t\t<Block>4185</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>N</Inservice>\n\t\t\t\t<Speed>16.23</Speed>\n\t\t\t\t<Heading>
         
     | 
| 
      
 460 
     | 
    
         
            +
                    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>511</Route>\n\t\t\t\t<Direction>S</Direction>\n\t\t\t\t<Updatetime>05:38
         
     | 
| 
      
 461 
     | 
    
         
            +
                    PM</Updatetime>\n\t\t\t\t<Vehicleid>6733</Vehicleid>\n\t\t\t\t<Block>4186</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>61.01</Speed>\n\t\t\t\t<Heading>13</Heading>\n\t\t\t\t<Routeid>16649</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>520</Route>\n\t\t\t\t<Direction>O</Direction>\n\t\t\t\t<Updatetime>05:37
         
     | 
| 
      
 462 
     | 
    
         
            +
                    PM</Updatetime>\n\t\t\t\t<Vehicleid>7162</Vehicleid>\n\t\t\t\t<Block>4192</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>34.99</Speed>\n\t\t\t\t<Heading>
         
     | 
| 
      
 463 
     | 
    
         
            +
                    9</Heading>\n\t\t\t\t<Routeid>16657</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>521</Route>\n\t\t\t\t<Direction>O</Direction>\n\t\t\t\t<Updatetime>05:34
         
     | 
| 
      
 464 
     | 
    
         
            +
                    PM</Updatetime>\n\t\t\t\t<Vehicleid>6727</Vehicleid>\n\t\t\t\t<Block>4198</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>18.47</Speed>\n\t\t\t\t<Heading>22</Heading>\n\t\t\t\t<Routeid>16661</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>521</Route>\n\t\t\t\t<Direction>O</Direction>\n\t\t\t\t<Updatetime>05:38
         
     | 
| 
      
 465 
     | 
    
         
            +
                    PM</Updatetime>\n\t\t\t\t<Vehicleid>7161</Vehicleid>\n\t\t\t\t<Block>4199</Block>\n\t\t\t\t<Adherance>8</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>19.52</Speed>\n\t\t\t\t<Heading>
         
     | 
| 
      
 466 
     | 
    
         
            +
                    8</Heading>\n\t\t\t\t<Routeid>16661</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>05:37
         
     | 
| 
      
 467 
     | 
    
         
            +
                    PM</Updatetime>\n\t\t\t\t<Vehicleid>6139</Vehicleid>\n\t\t\t\t<Block>42</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.41</Speed>\n\t\t\t\t<Heading>18</Heading>\n\t\t\t\t<Routeid>15852</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>521</Route>\n\t\t\t\t<Direction>O</Direction>\n\t\t\t\t<Updatetime>05:31
         
     | 
| 
      
 468 
     | 
    
         
            +
                    PM</Updatetime>\n\t\t\t\t<Vehicleid>7158</Vehicleid>\n\t\t\t\t<Block>4200</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>
         
     | 
| 
      
 469 
     | 
    
         
            +
                    0</Heading>\n\t\t\t\t<Routeid>16661</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>522</Route>\n\t\t\t\t<Direction>O</Direction>\n\t\t\t\t<Updatetime>05:35
         
     | 
| 
      
 470 
     | 
    
         
            +
                    PM</Updatetime>\n\t\t\t\t<Vehicleid>6728</Vehicleid>\n\t\t\t\t<Block>4207</Block>\n\t\t\t\t<Adherance>12</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.33</Speed>\n\t\t\t\t<Heading>
         
     | 
| 
      
 471 
     | 
    
         
            +
                    6</Heading>\n\t\t\t\t<Routeid>16667</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>05:38
         
     | 
| 
      
 472 
     | 
    
         
            +
                    PM</Updatetime>\n\t\t\t\t<Vehicleid>6240</Vehicleid>\n\t\t\t\t<Block>421</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>17.56</Speed>\n\t\t\t\t<Heading>36</Heading>\n\t\t\t\t<Routeid>15888</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>531</Route>\n\t\t\t\t<Direction>O</Direction>\n\t\t\t\t<Updatetime>05:38
         
     | 
| 
      
 473 
     | 
    
         
            +
                    PM</Updatetime>\n\t\t\t\t<Vehicleid>6729</Vehicleid>\n\t\t\t\t<Block>4212</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>62.43</Speed>\n\t\t\t\t<Heading>
         
     | 
| 
      
 474 
     | 
    
         
            +
                    9</Heading>\n\t\t\t\t<Routeid>16673</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>531</Route>\n\t\t\t\t<Direction>O</Direction>\n\t\t\t\t<Updatetime>05:33
         
     | 
| 
      
 475 
     | 
    
         
            +
                    PM</Updatetime>\n\t\t\t\t<Vehicleid>6690</Vehicleid>\n\t\t\t\t<Block>4215</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>14.56</Speed>\n\t\t\t\t<Heading>18</Heading>\n\t\t\t\t<Routeid>16673</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>05:32
         
     | 
| 
      
 476 
     | 
    
         
            +
                    PM</Updatetime>\n\t\t\t\t<Vehicleid>6224</Vehicleid>\n\t\t\t\t<Block>422</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.25</Speed>\n\t\t\t\t<Heading>
         
     | 
| 
      
 477 
     | 
    
         
            +
                    0</Heading>\n\t\t\t\t<Routeid>15888</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>541</Route>\n\t\t\t\t<Direction>O</Direction>\n\t\t\t\t<Updatetime>05:38
         
     | 
| 
      
 478 
     | 
    
         
            +
                    PM</Updatetime>\n\t\t\t\t<Vehicleid>6725</Vehicleid>\n\t\t\t\t<Block>4220</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.61</Speed>\n\t\t\t\t<Heading>
         
     | 
| 
      
 479 
     | 
    
         
            +
                    9</Heading>\n\t\t\t\t<Routeid>16685</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>541</Route>\n\t\t\t\t<Direction>O</Direction>\n\t\t\t\t<Updatetime>05:38
         
     | 
| 
      
 480 
     | 
    
         
            +
                    PM</Updatetime>\n\t\t\t\t<Vehicleid>6720</Vehicleid>\n\t\t\t\t<Block>4221</Block>\n\t\t\t\t<Adherance>8</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>27.09</Speed>\n\t\t\t\t<Heading>14</Heading>\n\t\t\t\t<Routeid>16685</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>542</Route>\n\t\t\t\t<Direction>O</Direction>\n\t\t\t\t<Updatetime>05:36
         
     | 
| 
      
 481 
     | 
    
         
            +
                    PM</Updatetime>\n\t\t\t\t<Vehicleid>6730</Vehicleid>\n\t\t\t\t<Block>4229</Block>\n\t\t\t\t<Adherance>15</Adherance>\n\t\t\t\t<Adhchange>S</Adhchange>\n\t\t\t\t<Reliable>Y</Reliable>\n\t\t\t\t<Offroute>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.24</Speed>\n\t\t\t\t<Heading>11</Heading>\n\t\t\t\t<Routeid>16689</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>542</Route>\n\t\t\t\t<Direction>O</Direction>\n\t\t\t\t<Updatetime>05:36
         
     | 
| 
      
 482 
     | 
    
         
            +
                    PM</Updatetime>\n\t\t\t\t<Vehicleid>8511</Vehicleid>\n\t\t\t\t<Block>4230</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.47</Speed>\n\t\t\t\t<Heading>
         
     | 
| 
      
 483 
     | 
    
         
            +
                    8</Heading>\n\t\t\t\t<Routeid>16689</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>05:36
         
     | 
| 
      
 484 
     | 
    
         
            +
                    PM</Updatetime>\n\t\t\t\t<Vehicleid>6686</Vehicleid>\n\t\t\t\t<Block>4231</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.42</Speed>\n\t\t\t\t<Heading>27</Heading>\n\t\t\t\t<Routeid>16595</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>05:38
         
     | 
| 
      
 485 
     | 
    
         
            +
                    PM</Updatetime>\n\t\t\t\t<Vehicleid>5103</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>12.08</Speed>\n\t\t\t\t<Heading>21</Heading>\n\t\t\t\t<Routeid>15915</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>05:37
         
     | 
| 
      
 486 
     | 
    
         
            +
                    PM</Updatetime>\n\t\t\t\t<Vehicleid>5093</Vehicleid>\n\t\t\t\t<Block>425</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>27</Heading>\n\t\t\t\t<Routeid>15916</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>05:38
         
     | 
| 
      
 487 
     | 
    
         
            +
                    PM</Updatetime>\n\t\t\t\t<Vehicleid>5092</Vehicleid>\n\t\t\t\t<Block>426</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>11.86</Speed>\n\t\t\t\t<Heading>
         
     | 
| 
      
 488 
     | 
    
         
            +
                    1</Heading>\n\t\t\t\t<Routeid>15906</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route></Route>\n\t\t\t\t<Direction>
         
     | 
| 
      
 489 
     | 
    
         
            +
                    </Direction>\n\t\t\t\t<Updatetime>05:36 PM</Updatetime>\n\t\t\t\t<Vehicleid>5073</Vehicleid>\n\t\t\t\t<Block>427</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.24</Speed>\n\t\t\t\t<Heading>
         
     | 
| 
      
 490 
     | 
    
         
            +
                    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>N</Direction>\n\t\t\t\t<Updatetime>05:37
         
     | 
| 
      
 491 
     | 
    
         
            +
                    PM</Updatetime>\n\t\t\t\t<Vehicleid>8061</Vehicleid>\n\t\t\t\t<Block>428</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.06</Speed>\n\t\t\t\t<Heading>
         
     | 
| 
      
 492 
     | 
    
         
            +
                    7</Heading>\n\t\t\t\t<Routeid>15972</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>05:38
         
     | 
| 
      
 493 
     | 
    
         
            +
                    PM</Updatetime>\n\t\t\t\t<Vehicleid>8063</Vehicleid>\n\t\t\t\t<Block>429</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.45</Speed>\n\t\t\t\t<Heading>14</Heading>\n\t\t\t\t<Routeid>15972</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>05:36
         
     | 
| 
      
 494 
     | 
    
         
            +
                    PM</Updatetime>\n\t\t\t\t<Vehicleid>6122</Vehicleid>\n\t\t\t\t<Block>43</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>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>29</Heading>\n\t\t\t\t<Routeid>15852</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>05:38
         
     | 
| 
      
 495 
     | 
    
         
            +
                    PM</Updatetime>\n\t\t\t\t<Vehicleid>5078</Vehicleid>\n\t\t\t\t<Block>431</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>4.91</Speed>\n\t\t\t\t<Heading>36</Heading>\n\t\t\t\t<Routeid>15972</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>05:38
         
     | 
| 
      
 496 
     | 
    
         
            +
                    PM</Updatetime>\n\t\t\t\t<Vehicleid>5100</Vehicleid>\n\t\t\t\t<Block>432</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.98</Speed>\n\t\t\t\t<Heading>36</Heading>\n\t\t\t\t<Routeid>15972</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>05:37
         
     | 
| 
      
 497 
     | 
    
         
            +
                    PM</Updatetime>\n\t\t\t\t<Vehicleid>5101</Vehicleid>\n\t\t\t\t<Block>434</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>36</Heading>\n\t\t\t\t<Routeid>15972</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>05:37
         
     | 
| 
      
 498 
     | 
    
         
            +
                    PM</Updatetime>\n\t\t\t\t<Vehicleid>5082</Vehicleid>\n\t\t\t\t<Block>439</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>7.38</Speed>\n\t\t\t\t<Heading>27</Heading>\n\t\t\t\t<Routeid>16378</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>05:37
         
     | 
| 
      
 499 
     | 
    
         
            +
                    PM</Updatetime>\n\t\t\t\t<Vehicleid>6535</Vehicleid>\n\t\t\t\t<Block>44</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.42</Speed>\n\t\t\t\t<Heading>27</Heading>\n\t\t\t\t<Routeid>16189</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route></Route>\n\t\t\t\t<Direction>
         
     | 
| 
      
 500 
     | 
    
         
            +
                    </Direction>\n\t\t\t\t<Updatetime>05:38 PM</Updatetime>\n\t\t\t\t<Vehicleid>5069</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>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.00</Speed>\n\t\t\t\t<Heading>
         
     | 
| 
      
 501 
     | 
    
         
            +
                    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>80</Route>\n\t\t\t\t<Direction>E</Direction>\n\t\t\t\t<Updatetime>05:38
         
     | 
| 
      
 502 
     | 
    
         
            +
                    PM</Updatetime>\n\t\t\t\t<Vehicleid>5096</Vehicleid>\n\t\t\t\t<Block>444</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>4.07</Speed>\n\t\t\t\t<Heading>
         
     | 
| 
      
 503 
     | 
    
         
            +
                    9</Heading>\n\t\t\t\t<Routeid>16366</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>05:37
         
     | 
| 
      
 504 
     | 
    
         
            +
                    PM</Updatetime>\n\t\t\t\t<Vehicleid>5112</Vehicleid>\n\t\t\t\t<Block>445</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>27.34</Speed>\n\t\t\t\t<Heading>25</Heading>\n\t\t\t\t<Routeid>16378</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>05:38
         
     | 
| 
      
 505 
     | 
    
         
            +
                    PM</Updatetime>\n\t\t\t\t<Vehicleid>6587</Vehicleid>\n\t\t\t\t<Block>446</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>8.86</Speed>\n\t\t\t\t<Heading>16</Heading>\n\t\t\t\t<Routeid>16375</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route></Route>\n\t\t\t\t<Direction>
         
     | 
| 
      
 506 
     | 
    
         
            +
                    </Direction>\n\t\t\t\t<Updatetime>05:35 PM</Updatetime>\n\t\t\t\t<Vehicleid>6583</Vehicleid>\n\t\t\t\t<Block>447</Block>\n\t\t\t\t<Adherance>-5</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>N</Inservice>\n\t\t\t\t<Speed>0.00</Speed>\n\t\t\t\t<Heading>
         
     | 
| 
      
 507 
     | 
    
         
            +
                    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>90</Route>\n\t\t\t\t<Direction>W</Direction>\n\t\t\t\t<Updatetime>05:37
         
     | 
| 
      
 508 
     | 
    
         
            +
                    PM</Updatetime>\n\t\t\t\t<Vehicleid>5108</Vehicleid>\n\t\t\t\t<Block>448</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.82</Speed>\n\t\t\t\t<Heading>21</Heading>\n\t\t\t\t<Routeid>16420</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>05:37
         
     | 
| 
      
 509 
     | 
    
         
            +
                    PM</Updatetime>\n\t\t\t\t<Vehicleid>5107</Vehicleid>\n\t\t\t\t<Block>449</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.26</Speed>\n\t\t\t\t<Heading>18</Heading>\n\t\t\t\t<Routeid>16420</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>05:38
         
     | 
| 
      
 510 
     | 
    
         
            +
                    PM</Updatetime>\n\t\t\t\t<Vehicleid>8005</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>Y</Reliable>\n\t\t\t\t<Offroute>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.07</Speed>\n\t\t\t\t<Heading>18</Heading>\n\t\t\t\t<Routeid>15896</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>05:37
         
     | 
| 
      
 511 
     | 
    
         
            +
                    PM</Updatetime>\n\t\t\t\t<Vehicleid>5102</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>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>11</Heading>\n\t\t\t\t<Routeid>16414</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>05:38
         
     | 
| 
      
 512 
     | 
    
         
            +
                    PM</Updatetime>\n\t\t\t\t<Vehicleid>5081</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>29.44</Speed>\n\t\t\t\t<Heading>
         
     | 
| 
      
 513 
     | 
    
         
            +
                    8</Heading>\n\t\t\t\t<Routeid>16414</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>05:37
         
     | 
| 
      
 514 
     | 
    
         
            +
                    PM</Updatetime>\n\t\t\t\t<Vehicleid>5077</Vehicleid>\n\t\t\t\t<Block>452</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>18.97</Speed>\n\t\t\t\t<Heading>36</Heading>\n\t\t\t\t<Routeid>16420</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>05:37
         
     | 
| 
      
 515 
     | 
    
         
            +
                    PM</Updatetime>\n\t\t\t\t<Vehicleid>5070</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>15.08</Speed>\n\t\t\t\t<Heading>
         
     | 
| 
      
 516 
     | 
    
         
            +
                    1</Heading>\n\t\t\t\t<Routeid>16414</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>05:37
         
     | 
| 
      
 517 
     | 
    
         
            +
                    PM</Updatetime>\n\t\t\t\t<Vehicleid>6585</Vehicleid>\n\t\t\t\t<Block>455</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>18.61</Speed>\n\t\t\t\t<Heading>27</Heading>\n\t\t\t\t<Routeid>16466</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>05:38
         
     | 
| 
      
 518 
     | 
    
         
            +
                    PM</Updatetime>\n\t\t\t\t<Vehicleid>5110</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>2.23</Speed>\n\t\t\t\t<Heading>18</Heading>\n\t\t\t\t<Routeid>16455</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>05:37
         
     | 
| 
      
 519 
     | 
    
         
            +
                    PM</Updatetime>\n\t\t\t\t<Vehicleid>5089</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>16.53</Speed>\n\t\t\t\t<Heading>10</Heading>\n\t\t\t\t<Routeid>16573</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>05:37
         
     | 
| 
      
 520 
     | 
    
         
            +
                    PM</Updatetime>\n\t\t\t\t<Vehicleid>6578</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>9.89</Speed>\n\t\t\t\t<Heading>
         
     | 
| 
      
 521 
     | 
    
         
            +
                    4</Heading>\n\t\t\t\t<Routeid>16455</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>05:37
         
     | 
| 
      
 522 
     | 
    
         
            +
                    PM</Updatetime>\n\t\t\t\t<Vehicleid>8057</Vehicleid>\n\t\t\t\t<Block>46</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.36</Speed>\n\t\t\t\t<Heading>18</Heading>\n\t\t\t\t<Routeid>15896</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>05:38
         
     | 
| 
      
 523 
     | 
    
         
            +
                    PM</Updatetime>\n\t\t\t\t<Vehicleid>5091</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>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>
         
     | 
| 
      
 524 
     | 
    
         
            +
                    0</Heading>\n\t\t\t\t<Routeid>16536</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>05:38
         
     | 
| 
      
 525 
     | 
    
         
            +
                    PM</Updatetime>\n\t\t\t\t<Vehicleid>6239</Vehicleid>\n\t\t\t\t<Block>463</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.11</Speed>\n\t\t\t\t<Heading>19</Heading>\n\t\t\t\t<Routeid>16466</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>05:38
         
     | 
| 
      
 526 
     | 
    
         
            +
                    PM</Updatetime>\n\t\t\t\t<Vehicleid>5076</Vehicleid>\n\t\t\t\t<Block>465</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>22.78</Speed>\n\t\t\t\t<Heading>27</Heading>\n\t\t\t\t<Routeid>16577</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>05:37
         
     | 
| 
      
 527 
     | 
    
         
            +
                    PM</Updatetime>\n\t\t\t\t<Vehicleid>5062</Vehicleid>\n\t\t\t\t<Block>467</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.75</Speed>\n\t\t\t\t<Heading>30</Heading>\n\t\t\t\t<Routeid>16573</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>05:37
         
     | 
| 
      
 528 
     | 
    
         
            +
                    PM</Updatetime>\n\t\t\t\t<Vehicleid>5063</Vehicleid>\n\t\t\t\t<Block>469</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.05</Speed>\n\t\t\t\t<Heading>27</Heading>\n\t\t\t\t<Routeid>16585</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>05:37
         
     | 
| 
      
 529 
     | 
    
         
            +
                    PM</Updatetime>\n\t\t\t\t<Vehicleid>8011</Vehicleid>\n\t\t\t\t<Block>47</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>19.05</Speed>\n\t\t\t\t<Heading>18</Heading>\n\t\t\t\t<Routeid>15896</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>05:37
         
     | 
| 
      
 530 
     | 
    
         
            +
                    PM</Updatetime>\n\t\t\t\t<Vehicleid>5071</Vehicleid>\n\t\t\t\t<Block>472</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>16.06</Speed>\n\t\t\t\t<Heading>
         
     | 
| 
      
 531 
     | 
    
         
            +
                    7</Heading>\n\t\t\t\t<Routeid>16581</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>05:38
         
     | 
| 
      
 532 
     | 
    
         
            +
                    PM</Updatetime>\n\t\t\t\t<Vehicleid>5074</Vehicleid>\n\t\t\t\t<Block>473</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>2.75</Speed>\n\t\t\t\t<Heading>18</Heading>\n\t\t\t\t<Routeid>16585</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>05:37
         
     | 
| 
      
 533 
     | 
    
         
            +
                    PM</Updatetime>\n\t\t\t\t<Vehicleid>5105</Vehicleid>\n\t\t\t\t<Block>475</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>31.61</Speed>\n\t\t\t\t<Heading>28</Heading>\n\t\t\t\t<Routeid>16609</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>05:38
         
     | 
| 
      
 534 
     | 
    
         
            +
                    PM</Updatetime>\n\t\t\t\t<Vehicleid>5111</Vehicleid>\n\t\t\t\t<Block>476</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.66</Speed>\n\t\t\t\t<Heading>
         
     | 
| 
      
 535 
     | 
    
         
            +
                    9</Heading>\n\t\t\t\t<Routeid>16603</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>05:37
         
     | 
| 
      
 536 
     | 
    
         
            +
                    PM</Updatetime>\n\t\t\t\t<Vehicleid>5099</Vehicleid>\n\t\t\t\t<Block>477</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>3.10</Speed>\n\t\t\t\t<Heading>27</Heading>\n\t\t\t\t<Routeid>16609</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>05:37
         
     | 
| 
      
 537 
     | 
    
         
            +
                    PM</Updatetime>\n\t\t\t\t<Vehicleid>5079</Vehicleid>\n\t\t\t\t<Block>478</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>22.31</Speed>\n\t\t\t\t<Heading>27</Heading>\n\t\t\t\t<Routeid>16609</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>05:38
         
     | 
| 
      
 538 
     | 
    
         
            +
                    PM</Updatetime>\n\t\t\t\t<Vehicleid>5087</Vehicleid>\n\t\t\t\t<Block>480</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.31</Speed>\n\t\t\t\t<Heading>
         
     | 
| 
      
 539 
     | 
    
         
            +
                    9</Heading>\n\t\t\t\t<Routeid>16603</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>05:38
         
     | 
| 
      
 540 
     | 
    
         
            +
                    PM</Updatetime>\n\t\t\t\t<Vehicleid>6582</Vehicleid>\n\t\t\t\t<Block>481</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>21.39</Speed>\n\t\t\t\t<Heading>
         
     | 
| 
      
 541 
     | 
    
         
            +
                    9</Heading>\n\t\t\t\t<Routeid>16603</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>05:34
         
     | 
| 
      
 542 
     | 
    
         
            +
                    PM</Updatetime>\n\t\t\t\t<Vehicleid>6580</Vehicleid>\n\t\t\t\t<Block>482</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>
         
     | 
| 
      
 543 
     | 
    
         
            +
                    0</Heading>\n\t\t\t\t<Routeid>16627</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>05:38
         
     | 
| 
      
 544 
     | 
    
         
            +
                    PM</Updatetime>\n\t\t\t\t<Vehicleid>6579</Vehicleid>\n\t\t\t\t<Block>483</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.36</Speed>\n\t\t\t\t<Heading>16</Heading>\n\t\t\t\t<Routeid>16635</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>05:38
         
     | 
| 
      
 545 
     | 
    
         
            +
                    PM</Updatetime>\n\t\t\t\t<Vehicleid>5068</Vehicleid>\n\t\t\t\t<Block>484</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.80</Speed>\n\t\t\t\t<Heading>27</Heading>\n\t\t\t\t<Routeid>16634</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>05:38
         
     | 
| 
      
 546 
     | 
    
         
            +
                    PM</Updatetime>\n\t\t\t\t<Vehicleid>5067</Vehicleid>\n\t\t\t\t<Block>485</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>
         
     | 
| 
      
 547 
     | 
    
         
            +
                    9</Heading>\n\t\t\t\t<Routeid>16627</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>05:38
         
     | 
| 
      
 548 
     | 
    
         
            +
                    PM</Updatetime>\n\t\t\t\t<Vehicleid>5066</Vehicleid>\n\t\t\t\t<Block>486</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>20.03</Speed>\n\t\t\t\t<Heading>
         
     | 
| 
      
 549 
     | 
    
         
            +
                    9</Heading>\n\t\t\t\t<Routeid>16628</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route></Route>\n\t\t\t\t<Direction>
         
     | 
| 
      
 550 
     | 
    
         
            +
                    </Direction>\n\t\t\t\t<Updatetime>05:37 PM</Updatetime>\n\t\t\t\t<Vehicleid>7004</Vehicleid>\n\t\t\t\t<Block>5001</Block>\n\t\t\t\t<Adherance>-5</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.00</Speed>\n\t\t\t\t<Heading>
         
     | 
| 
      
 551 
     | 
    
         
            +
                    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>AZAV</Route>\n\t\t\t\t<Direction>N</Direction>\n\t\t\t\t<Updatetime>05:37
         
     | 
| 
      
 552 
     | 
    
         
            +
                    PM</Updatetime>\n\t\t\t\t<Vehicleid>7006</Vehicleid>\n\t\t\t\t<Block>5002</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.18</Speed>\n\t\t\t\t<Heading>27</Heading>\n\t\t\t\t<Routeid>16761</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>05:38
         
     | 
| 
      
 553 
     | 
    
         
            +
                    PM</Updatetime>\n\t\t\t\t<Vehicleid>7001</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>0.00</Speed>\n\t\t\t\t<Heading>
         
     | 
| 
      
 554 
     | 
    
         
            +
                    0</Heading>\n\t\t\t\t<Routeid>16801</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>05:37
         
     | 
| 
      
 555 
     | 
    
         
            +
                    PM</Updatetime>\n\t\t\t\t<Vehicleid>8518</Vehicleid>\n\t\t\t\t<Block>5005</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>18</Heading>\n\t\t\t\t<Routeid>16765</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>05:37
         
     | 
| 
      
 556 
     | 
    
         
            +
                    PM</Updatetime>\n\t\t\t\t<Vehicleid>7009</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>21.00</Speed>\n\t\t\t\t<Heading>27</Heading>\n\t\t\t\t<Routeid>16761</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>05:37
         
     | 
| 
      
 557 
     | 
    
         
            +
                    PM</Updatetime>\n\t\t\t\t<Vehicleid>7008</Vehicleid>\n\t\t\t\t<Block>5007</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>29.70</Speed>\n\t\t\t\t<Heading>18</Heading>\n\t\t\t\t<Routeid>16801</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>05:38
         
     | 
| 
      
 558 
     | 
    
         
            +
                    PM</Updatetime>\n\t\t\t\t<Vehicleid>7002</Vehicleid>\n\t\t\t\t<Block>5009</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.44</Speed>\n\t\t\t\t<Heading>
         
     | 
| 
      
 559 
     | 
    
         
            +
                    9</Heading>\n\t\t\t\t<Routeid>16801</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>05:37
         
     | 
| 
      
 560 
     | 
    
         
            +
                    PM</Updatetime>\n\t\t\t\t<Vehicleid>8519</Vehicleid>\n\t\t\t\t<Block>5011</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.85</Speed>\n\t\t\t\t<Heading>
         
     | 
| 
      
 561 
     | 
    
         
            +
                    0</Heading>\n\t\t\t\t<Routeid>16803</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>05:38
         
     | 
| 
      
 562 
     | 
    
         
            +
                    PM</Updatetime>\n\t\t\t\t<Vehicleid>8517</Vehicleid>\n\t\t\t\t<Block>5012</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.44</Speed>\n\t\t\t\t<Heading>27</Heading>\n\t\t\t\t<Routeid>16803</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route></Route>\n\t\t\t\t<Direction>
         
     | 
| 
      
 563 
     | 
    
         
            +
                    </Direction>\n\t\t\t\t<Updatetime>05:38 PM</Updatetime>\n\t\t\t\t<Vehicleid>8520</Vehicleid>\n\t\t\t\t<Block>5013</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.05</Speed>\n\t\t\t\t<Heading>
         
     | 
| 
      
 564 
     | 
    
         
            +
                    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>30</Route>\n\t\t\t\t<Direction>W</Direction>\n\t\t\t\t<Updatetime>05:37
         
     | 
| 
      
 565 
     | 
    
         
            +
                    PM</Updatetime>\n\t\t\t\t<Vehicleid>6433</Vehicleid>\n\t\t\t\t<Block>5014</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.10</Speed>\n\t\t\t\t<Heading>24</Heading>\n\t\t\t\t<Routeid>15963</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>05:37
         
     | 
| 
      
 566 
     | 
    
         
            +
                    PM</Updatetime>\n\t\t\t\t<Vehicleid>6411</Vehicleid>\n\t\t\t\t<Block>5015</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.23</Speed>\n\t\t\t\t<Heading>27</Heading>\n\t\t\t\t<Routeid>15963</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>05:34
         
     | 
| 
      
 567 
     | 
    
         
            +
                    PM</Updatetime>\n\t\t\t\t<Vehicleid>6405</Vehicleid>\n\t\t\t\t<Block>5016</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.83</Speed>\n\t\t\t\t<Heading>36</Heading>\n\t\t\t\t<Routeid>15950</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>05:37
         
     | 
| 
      
 568 
     | 
    
         
            +
                    PM</Updatetime>\n\t\t\t\t<Vehicleid>6420</Vehicleid>\n\t\t\t\t<Block>5017</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.68</Speed>\n\t\t\t\t<Heading>
         
     | 
| 
      
 569 
     | 
    
         
            +
                    9</Heading>\n\t\t\t\t<Routeid>15950</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>05:32
         
     | 
| 
      
 570 
     | 
    
         
            +
                    PM</Updatetime>\n\t\t\t\t<Vehicleid>6443</Vehicleid>\n\t\t\t\t<Block>5018</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>8.27</Speed>\n\t\t\t\t<Heading>
         
     | 
| 
      
 571 
     | 
    
         
            +
                    9</Heading>\n\t\t\t\t<Routeid>15950</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>05:38
         
     | 
| 
      
 572 
     | 
    
         
            +
                    PM</Updatetime>\n\t\t\t\t<Vehicleid>6441</Vehicleid>\n\t\t\t\t<Block>5019</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>19.60</Speed>\n\t\t\t\t<Heading>27</Heading>\n\t\t\t\t<Routeid>15997</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>05:37
         
     | 
| 
      
 573 
     | 
    
         
            +
                    PM</Updatetime>\n\t\t\t\t<Vehicleid>6438</Vehicleid>\n\t\t\t\t<Block>5020</Block>\n\t\t\t\t<Adherance>-6</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>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>42.09</Speed>\n\t\t\t\t<Heading>36</Heading>\n\t\t\t\t<Routeid>15993</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>05:37
         
     | 
| 
      
 574 
     | 
    
         
            +
                    PM</Updatetime>\n\t\t\t\t<Vehicleid>6666</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>18.01</Speed>\n\t\t\t\t<Heading>
         
     | 
| 
      
 575 
     | 
    
         
            +
                    9</Heading>\n\t\t\t\t<Routeid>15993</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>05:38
         
     | 
| 
      
 576 
     | 
    
         
            +
                    PM</Updatetime>\n\t\t\t\t<Vehicleid>6452</Vehicleid>\n\t\t\t\t<Block>5022</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>17.51</Speed>\n\t\t\t\t<Heading>31</Heading>\n\t\t\t\t<Routeid>15993</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route></Route>\n\t\t\t\t<Direction>
         
     | 
| 
      
 577 
     | 
    
         
            +
                    </Direction>\n\t\t\t\t<Updatetime>05:38 PM</Updatetime>\n\t\t\t\t<Vehicleid>6422</Vehicleid>\n\t\t\t\t<Block>5023</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>N</Inservice>\n\t\t\t\t<Speed>5.08</Speed>\n\t\t\t\t<Heading>
         
     | 
| 
      
 578 
     | 
    
         
            +
                    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>45</Route>\n\t\t\t\t<Direction>E</Direction>\n\t\t\t\t<Updatetime>05:35
         
     | 
| 
      
 579 
     | 
    
         
            +
                    PM</Updatetime>\n\t\t\t\t<Vehicleid>6401</Vehicleid>\n\t\t\t\t<Block>5026</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>4.56</Speed>\n\t\t\t\t<Heading>
         
     | 
| 
      
 580 
     | 
    
         
            +
                    9</Heading>\n\t\t\t\t<Routeid>16044</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>05:37
         
     | 
| 
      
 581 
     | 
    
         
            +
                    PM</Updatetime>\n\t\t\t\t<Vehicleid>6661</Vehicleid>\n\t\t\t\t<Block>5027</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.66</Speed>\n\t\t\t\t<Heading>27</Heading>\n\t\t\t\t<Routeid>16064</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>05:38
         
     | 
| 
      
 582 
     | 
    
         
            +
                    PM</Updatetime>\n\t\t\t\t<Vehicleid>6655</Vehicleid>\n\t\t\t\t<Block>5029</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.38</Speed>\n\t\t\t\t<Heading>
         
     | 
| 
      
 583 
     | 
    
         
            +
                    9</Heading>\n\t\t\t\t<Routeid>16200</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>05:38
         
     | 
| 
      
 584 
     | 
    
         
            +
                    PM</Updatetime>\n\t\t\t\t<Vehicleid>6402</Vehicleid>\n\t\t\t\t<Block>5032</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.47</Speed>\n\t\t\t\t<Heading>27</Heading>\n\t\t\t\t<Routeid>16218</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>05:38
         
     | 
| 
      
 585 
     | 
    
         
            +
                    PM</Updatetime>\n\t\t\t\t<Vehicleid>6659</Vehicleid>\n\t\t\t\t<Block>5033</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.06</Speed>\n\t\t\t\t<Heading>
         
     | 
| 
      
 586 
     | 
    
         
            +
                    9</Heading>\n\t\t\t\t<Routeid>16200</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>05:37
         
     | 
| 
      
 587 
     | 
    
         
            +
                    PM</Updatetime>\n\t\t\t\t<Vehicleid>6424</Vehicleid>\n\t\t\t\t<Block>5034</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.66</Speed>\n\t\t\t\t<Heading>
         
     | 
| 
      
 588 
     | 
    
         
            +
                    9</Heading>\n\t\t\t\t<Routeid>16200</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>05:36
         
     | 
| 
      
 589 
     | 
    
         
            +
                    PM</Updatetime>\n\t\t\t\t<Vehicleid>6431</Vehicleid>\n\t\t\t\t<Block>5035</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>13.95</Speed>\n\t\t\t\t<Heading>
         
     | 
| 
      
 590 
     | 
    
         
            +
                    9</Heading>\n\t\t\t\t<Routeid>16200</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>05:38
         
     | 
| 
      
 591 
     | 
    
         
            +
                    PM</Updatetime>\n\t\t\t\t<Vehicleid>6437</Vehicleid>\n\t\t\t\t<Block>5037</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.45</Speed>\n\t\t\t\t<Heading>
         
     | 
| 
      
 592 
     | 
    
         
            +
                    9</Heading>\n\t\t\t\t<Routeid>16200</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>531</Route>\n\t\t\t\t<Direction>O</Direction>\n\t\t\t\t<Updatetime>05:37
         
     | 
| 
      
 593 
     | 
    
         
            +
                    PM</Updatetime>\n\t\t\t\t<Vehicleid>6714</Vehicleid>\n\t\t\t\t<Block>5038</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>4.14</Speed>\n\t\t\t\t<Heading>16</Heading>\n\t\t\t\t<Routeid>16673</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>05:36
         
     | 
| 
      
 594 
     | 
    
         
            +
                    PM</Updatetime>\n\t\t\t\t<Vehicleid>6664</Vehicleid>\n\t\t\t\t<Block>5040</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>
         
     | 
| 
      
 595 
     | 
    
         
            +
                    0</Heading>\n\t\t\t\t<Routeid>16425</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>05:37
         
     | 
| 
      
 596 
     | 
    
         
            +
                    PM</Updatetime>\n\t\t\t\t<Vehicleid>6410</Vehicleid>\n\t\t\t\t<Block>5041</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.27</Speed>\n\t\t\t\t<Heading>36</Heading>\n\t\t\t\t<Routeid>16512</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>05:38
         
     | 
| 
      
 597 
     | 
    
         
            +
                    PM</Updatetime>\n\t\t\t\t<Vehicleid>6409</Vehicleid>\n\t\t\t\t<Block>5042</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>32.35</Speed>\n\t\t\t\t<Heading>36</Heading>\n\t\t\t\t<Routeid>16512</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>05:38
         
     | 
| 
      
 598 
     | 
    
         
            +
                    PM</Updatetime>\n\t\t\t\t<Vehicleid>6656</Vehicleid>\n\t\t\t\t<Block>5043</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>18</Heading>\n\t\t\t\t<Routeid>16522</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>05:37
         
     | 
| 
      
 599 
     | 
    
         
            +
                    PM</Updatetime>\n\t\t\t\t<Vehicleid>6426</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>0.00</Speed>\n\t\t\t\t<Heading>
         
     | 
| 
      
 600 
     | 
    
         
            +
                    0</Heading>\n\t\t\t\t<Routeid>16499</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>05:38
         
     | 
| 
      
 601 
     | 
    
         
            +
                    PM</Updatetime>\n\t\t\t\t<Vehicleid>6412</Vehicleid>\n\t\t\t\t<Block>5045</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.32</Speed>\n\t\t\t\t<Heading>27</Heading>\n\t\t\t\t<Routeid>16496</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>05:36
         
     | 
| 
      
 602 
     | 
    
         
            +
                    PM</Updatetime>\n\t\t\t\t<Vehicleid>6417</Vehicleid>\n\t\t\t\t<Block>5046</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.93</Speed>\n\t\t\t\t<Heading>
         
     | 
| 
      
 603 
     | 
    
         
            +
                    1</Heading>\n\t\t\t\t<Routeid>16615</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>05:38
         
     | 
| 
      
 604 
     | 
    
         
            +
                    PM</Updatetime>\n\t\t\t\t<Vehicleid>6432</Vehicleid>\n\t\t\t\t<Block>5047</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.02</Speed>\n\t\t\t\t<Heading>
         
     | 
| 
      
 605 
     | 
    
         
            +
                    9</Heading>\n\t\t\t\t<Routeid>16481</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>05:38
         
     | 
| 
      
 606 
     | 
    
         
            +
                    PM</Updatetime>\n\t\t\t\t<Vehicleid>6663</Vehicleid>\n\t\t\t\t<Block>5048</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>
         
     | 
| 
      
 607 
     | 
    
         
            +
                    0</Heading>\n\t\t\t\t<Routeid>16481</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>05:36
         
     | 
| 
      
 608 
     | 
    
         
            +
                    PM</Updatetime>\n\t\t\t\t<Vehicleid>6428</Vehicleid>\n\t\t\t\t<Block>5049</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>
         
     | 
| 
      
 609 
     | 
    
         
            +
                    0</Heading>\n\t\t\t\t<Routeid>16512</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>05:35
         
     | 
| 
      
 610 
     | 
    
         
            +
                    PM</Updatetime>\n\t\t\t\t<Vehicleid>6442</Vehicleid>\n\t\t\t\t<Block>5051</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.83</Speed>\n\t\t\t\t<Heading>17</Heading>\n\t\t\t\t<Routeid>16446</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>05:36
         
     | 
| 
      
 611 
     | 
    
         
            +
                    PM</Updatetime>\n\t\t\t\t<Vehicleid>6668</Vehicleid>\n\t\t\t\t<Block>5052</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>8.05</Speed>\n\t\t\t\t<Heading>27</Heading>\n\t\t\t\t<Routeid>16442</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>05:37
         
     | 
| 
      
 612 
     | 
    
         
            +
                    PM</Updatetime>\n\t\t\t\t<Vehicleid>6665</Vehicleid>\n\t\t\t\t<Block>5053</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>4.75</Speed>\n\t\t\t\t<Heading>26</Heading>\n\t\t\t\t<Routeid>16446</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>05:38
         
     | 
| 
      
 613 
     | 
    
         
            +
                    PM</Updatetime>\n\t\t\t\t<Vehicleid>6416</Vehicleid>\n\t\t\t\t<Block>5054</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>29.67</Speed>\n\t\t\t\t<Heading>36</Heading>\n\t\t\t\t<Routeid>16529</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>05:36
         
     | 
| 
      
 614 
     | 
    
         
            +
                    PM</Updatetime>\n\t\t\t\t<Vehicleid>6660</Vehicleid>\n\t\t\t\t<Block>5055</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>
         
     | 
| 
      
 615 
     | 
    
         
            +
                    0</Heading>\n\t\t\t\t<Routeid>16529</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>05:37
         
     | 
| 
      
 616 
     | 
    
         
            +
                    PM</Updatetime>\n\t\t\t\t<Vehicleid>6419</Vehicleid>\n\t\t\t\t<Block>5056</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.58</Speed>\n\t\t\t\t<Heading>13</Heading>\n\t\t\t\t<Routeid>16546</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>05:37
         
     | 
| 
      
 617 
     | 
    
         
            +
                    PM</Updatetime>\n\t\t\t\t<Vehicleid>6653</Vehicleid>\n\t\t\t\t<Block>5057</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.40</Speed>\n\t\t\t\t<Heading>
         
     | 
| 
      
 618 
     | 
    
         
            +
                    0</Heading>\n\t\t\t\t<Routeid>16543</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>05:38
         
     | 
| 
      
 619 
     | 
    
         
            +
                    PM</Updatetime>\n\t\t\t\t<Vehicleid>6415</Vehicleid>\n\t\t\t\t<Block>5060</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.72</Speed>\n\t\t\t\t<Heading>36</Heading>\n\t\t\t\t<Routeid>16554</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>05:37
         
     | 
| 
      
 620 
     | 
    
         
            +
                    PM</Updatetime>\n\t\t\t\t<Vehicleid>6658</Vehicleid>\n\t\t\t\t<Block>5061</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>13.52</Speed>\n\t\t\t\t<Heading>18</Heading>\n\t\t\t\t<Routeid>16564</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>05:37
         
     | 
| 
      
 621 
     | 
    
         
            +
                    PM</Updatetime>\n\t\t\t\t<Vehicleid>6435</Vehicleid>\n\t\t\t\t<Block>5063</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.12</Speed>\n\t\t\t\t<Heading>36</Heading>\n\t\t\t\t<Routeid>16552</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>05:36
         
     | 
| 
      
 622 
     | 
    
         
            +
                    PM</Updatetime>\n\t\t\t\t<Vehicleid>8501</Vehicleid>\n\t\t\t\t<Block>5064</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>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>
         
     | 
| 
      
 623 
     | 
    
         
            +
                    0</Heading>\n\t\t\t\t<Routeid>16564</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>05:37
         
     | 
| 
      
 624 
     | 
    
         
            +
                    PM</Updatetime>\n\t\t\t\t<Vehicleid>6436</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>9.82</Speed>\n\t\t\t\t<Heading>27</Heading>\n\t\t\t\t<Routeid>16595</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>05:37
         
     | 
| 
      
 625 
     | 
    
         
            +
                    PM</Updatetime>\n\t\t\t\t<Vehicleid>6421</Vehicleid>\n\t\t\t\t<Block>5068</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>29.14</Speed>\n\t\t\t\t<Heading>26</Heading>\n\t\t\t\t<Routeid>16621</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>05:38
         
     | 
| 
      
 626 
     | 
    
         
            +
                    PM</Updatetime>\n\t\t\t\t<Vehicleid>6430</Vehicleid>\n\t\t\t\t<Block>5069</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>10.97</Speed>\n\t\t\t\t<Heading>
         
     | 
| 
      
 627 
     | 
    
         
            +
                    9</Heading>\n\t\t\t\t<Routeid>16589</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>05:38
         
     | 
| 
      
 628 
     | 
    
         
            +
                    PM</Updatetime>\n\t\t\t\t<Vehicleid>6404</Vehicleid>\n\t\t\t\t<Block>5070</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>34.02</Speed>\n\t\t\t\t<Heading>
         
     | 
| 
      
 629 
     | 
    
         
            +
                    9</Heading>\n\t\t\t\t<Routeid>16589</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>05:37
         
     | 
| 
      
 630 
     | 
    
         
            +
                    PM</Updatetime>\n\t\t\t\t<Vehicleid>6429</Vehicleid>\n\t\t\t\t<Block>5071</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>L</Inservice>\n\t\t\t\t<Speed>0.00</Speed>\n\t\t\t\t<Heading>
         
     | 
| 
      
 631 
     | 
    
         
            +
                    0</Heading>\n\t\t\t\t<Routeid>16615</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>05:37
         
     | 
| 
      
 632 
     | 
    
         
            +
                    PM</Updatetime>\n\t\t\t\t<Vehicleid>6425</Vehicleid>\n\t\t\t\t<Block>5072</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>29.53</Speed>\n\t\t\t\t<Heading>
         
     | 
| 
      
 633 
     | 
    
         
            +
                    9</Heading>\n\t\t\t\t<Routeid>16481</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>05:37
         
     | 
| 
      
 634 
     | 
    
         
            +
                    PM</Updatetime>\n\t\t\t\t<Vehicleid>6434</Vehicleid>\n\t\t\t\t<Block>5073</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.18</Speed>\n\t\t\t\t<Heading>27</Heading>\n\t\t\t\t<Routeid>16595</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>05:37
         
     | 
| 
      
 635 
     | 
    
         
            +
                    PM</Updatetime>\n\t\t\t\t<Vehicleid>6414</Vehicleid>\n\t\t\t\t<Block>5077</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>32.55</Speed>\n\t\t\t\t<Heading>18</Heading>\n\t\t\t\t<Routeid>16621</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>533</Route>\n\t\t\t\t<Direction>O</Direction>\n\t\t\t\t<Updatetime>05:38
         
     | 
| 
      
 636 
     | 
    
         
            +
                    PM</Updatetime>\n\t\t\t\t<Vehicleid>8505</Vehicleid>\n\t\t\t\t<Block>5087</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>
         
     | 
| 
      
 637 
     | 
    
         
            +
                    5</Heading>\n\t\t\t\t<Routeid>16677</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>533</Route>\n\t\t\t\t<Direction>O</Direction>\n\t\t\t\t<Updatetime>05:37
         
     | 
| 
      
 638 
     | 
    
         
            +
                    PM</Updatetime>\n\t\t\t\t<Vehicleid>8508</Vehicleid>\n\t\t\t\t<Block>5088</Block>\n\t\t\t\t<Adherance>1</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>27.38</Speed>\n\t\t\t\t<Heading>13</Heading>\n\t\t\t\t<Routeid>16677</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>535</Route>\n\t\t\t\t<Direction>O</Direction>\n\t\t\t\t<Updatetime>05:38
         
     | 
| 
      
 639 
     | 
    
         
            +
                    PM</Updatetime>\n\t\t\t\t<Vehicleid>8510</Vehicleid>\n\t\t\t\t<Block>5093</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.16</Speed>\n\t\t\t\t<Heading>34</Heading>\n\t\t\t\t<Routeid>16681</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>535</Route>\n\t\t\t\t<Direction>O</Direction>\n\t\t\t\t<Updatetime>05:38
         
     | 
| 
      
 640 
     | 
    
         
            +
                    PM</Updatetime>\n\t\t\t\t<Vehicleid>6717</Vehicleid>\n\t\t\t\t<Block>5095</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>11.02</Speed>\n\t\t\t\t<Heading>
         
     | 
| 
      
 641 
     | 
    
         
            +
                    9</Heading>\n\t\t\t\t<Routeid>16681</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route></Route>\n\t\t\t\t<Direction>
         
     | 
| 
      
 642 
     | 
    
         
            +
                    </Direction>\n\t\t\t\t<Updatetime>05:31 PM</Updatetime>\n\t\t\t\t<Vehicleid>8010</Vehicleid>\n\t\t\t\t<Block>51</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>
         
     | 
| 
      
 643 
     | 
    
         
            +
                    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>19</Route>\n\t\t\t\t<Direction>S</Direction>\n\t\t\t\t<Updatetime>05:34
         
     | 
| 
      
 644 
     | 
    
         
            +
                    PM</Updatetime>\n\t\t\t\t<Vehicleid>8013</Vehicleid>\n\t\t\t\t<Block>52</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.19</Speed>\n\t\t\t\t<Heading>18</Heading>\n\t\t\t\t<Routeid>15896</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>I17</Route>\n\t\t\t\t<Direction>O</Direction>\n\t\t\t\t<Updatetime>05:38
         
     | 
| 
      
 645 
     | 
    
         
            +
                    PM</Updatetime>\n\t\t\t\t<Vehicleid>7121</Vehicleid>\n\t\t\t\t<Block>523</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>50.99</Speed>\n\t\t\t\t<Heading>
         
     | 
| 
      
 646 
     | 
    
         
            +
                    0</Heading>\n\t\t\t\t<Routeid>16729</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>05:38
         
     | 
| 
      
 647 
     | 
    
         
            +
                    PM</Updatetime>\n\t\t\t\t<Vehicleid>1492</Vehicleid>\n\t\t\t\t<Block>527</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>7.86</Speed>\n\t\t\t\t<Heading>18</Heading>\n\t\t\t\t<Routeid>16875</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>05:31
         
     | 
| 
      
 648 
     | 
    
         
            +
                    PM</Updatetime>\n\t\t\t\t<Vehicleid>1489</Vehicleid>\n\t\t\t\t<Block>528</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>7.84</Speed>\n\t\t\t\t<Heading>
         
     | 
| 
      
 649 
     | 
    
         
            +
                    1</Heading>\n\t\t\t\t<Routeid>16875</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>05:35
         
     | 
| 
      
 650 
     | 
    
         
            +
                    PM</Updatetime>\n\t\t\t\t<Vehicleid>1491</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>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>16879</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>05:33
         
     | 
| 
      
 651 
     | 
    
         
            +
                    PM</Updatetime>\n\t\t\t\t<Vehicleid>6125</Vehicleid>\n\t\t\t\t<Block>53</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.91</Speed>\n\t\t\t\t<Heading>18</Heading>\n\t\t\t\t<Routeid>15897</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>05:36
         
     | 
| 
      
 652 
     | 
    
         
            +
                    PM</Updatetime>\n\t\t\t\t<Vehicleid>6233</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>L</Inservice>\n\t\t\t\t<Speed>0.00</Speed>\n\t\t\t\t<Heading>
         
     | 
| 
      
 653 
     | 
    
         
            +
                    0</Heading>\n\t\t\t\t<Routeid>15985</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>05:36
         
     | 
| 
      
 654 
     | 
    
         
            +
                    PM</Updatetime>\n\t\t\t\t<Vehicleid>6241</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>L</Inservice>\n\t\t\t\t<Speed>0.00</Speed>\n\t\t\t\t<Heading>
         
     | 
| 
      
 655 
     | 
    
         
            +
                    0</Heading>\n\t\t\t\t<Routeid>15989</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>05:38
         
     | 
| 
      
 656 
     | 
    
         
            +
                    PM</Updatetime>\n\t\t\t\t<Vehicleid>5104</Vehicleid>\n\t\t\t\t<Block>532</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>7.77</Speed>\n\t\t\t\t<Heading>
         
     | 
| 
      
 657 
     | 
    
         
            +
                    6</Heading>\n\t\t\t\t<Routeid>16577</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>05:38
         
     | 
| 
      
 658 
     | 
    
         
            +
                    PM</Updatetime>\n\t\t\t\t<Vehicleid>6238</Vehicleid>\n\t\t\t\t<Block>533</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>36.93</Speed>\n\t\t\t\t<Heading>
         
     | 
| 
      
 659 
     | 
    
         
            +
                    9</Heading>\n\t\t\t\t<Routeid>16455</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>05:38
         
     | 
| 
      
 660 
     | 
    
         
            +
                    PM</Updatetime>\n\t\t\t\t<Vehicleid>6586</Vehicleid>\n\t\t\t\t<Block>534</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>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>12</Heading>\n\t\t\t\t<Routeid>16466</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>05:36
         
     | 
| 
      
 661 
     | 
    
         
            +
                    PM</Updatetime>\n\t\t\t\t<Vehicleid>6244</Vehicleid>\n\t\t\t\t<Block>536</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>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>
         
     | 
| 
      
 662 
     | 
    
         
            +
                    0</Heading>\n\t\t\t\t<Routeid>16466</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>05:38
         
     | 
| 
      
 663 
     | 
    
         
            +
                    PM</Updatetime>\n\t\t\t\t<Vehicleid>6135</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>3.65</Speed>\n\t\t\t\t<Heading>18</Heading>\n\t\t\t\t<Routeid>15897</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>05:37
         
     | 
| 
      
 664 
     | 
    
         
            +
                    PM</Updatetime>\n\t\t\t\t<Vehicleid>6538</Vehicleid>\n\t\t\t\t<Block>55</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.47</Speed>\n\t\t\t\t<Heading>18</Heading>\n\t\t\t\t<Routeid>15897</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>05:37
         
     | 
| 
      
 665 
     | 
    
         
            +
                    PM</Updatetime>\n\t\t\t\t<Vehicleid>6558</Vehicleid>\n\t\t\t\t<Block>56</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>Y</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>0.47</Speed>\n\t\t\t\t<Heading>
         
     | 
| 
      
 666 
     | 
    
         
            +
                    0</Heading>\n\t\t\t\t<Routeid>15887</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>05:33
         
     | 
| 
      
 667 
     | 
    
         
            +
                    PM</Updatetime>\n\t\t\t\t<Vehicleid>6554</Vehicleid>\n\t\t\t\t<Block>6</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>19.78</Speed>\n\t\t\t\t<Heading>16</Heading>\n\t\t\t\t<Routeid>15784</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>562</Route>\n\t\t\t\t<Direction>O</Direction>\n\t\t\t\t<Updatetime>05:37
         
     | 
| 
      
 668 
     | 
    
         
            +
                    PM</Updatetime>\n\t\t\t\t<Vehicleid>6486</Vehicleid>\n\t\t\t\t<Block>6005</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.78</Speed>\n\t\t\t\t<Heading>26</Heading>\n\t\t\t\t<Routeid>16695</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>563</Route>\n\t\t\t\t<Direction>O</Direction>\n\t\t\t\t<Updatetime>05:37
         
     | 
| 
      
 669 
     | 
    
         
            +
                    PM</Updatetime>\n\t\t\t\t<Vehicleid>6496</Vehicleid>\n\t\t\t\t<Block>6009</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>32.62</Speed>\n\t\t\t\t<Heading>31</Heading>\n\t\t\t\t<Routeid>16699</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>571</Route>\n\t\t\t\t<Direction>O</Direction>\n\t\t\t\t<Updatetime>05:37
         
     | 
| 
      
 670 
     | 
    
         
            +
                    PM</Updatetime>\n\t\t\t\t<Vehicleid>6488</Vehicleid>\n\t\t\t\t<Block>6016</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>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>51.33</Speed>\n\t\t\t\t<Heading>27</Heading>\n\t\t\t\t<Routeid>16703</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>571</Route>\n\t\t\t\t<Direction>O</Direction>\n\t\t\t\t<Updatetime>05:38
         
     | 
| 
      
 671 
     | 
    
         
            +
                    PM</Updatetime>\n\t\t\t\t<Vehicleid>6491</Vehicleid>\n\t\t\t\t<Block>6017</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.81</Speed>\n\t\t\t\t<Heading>35</Heading>\n\t\t\t\t<Routeid>16703</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>573</Route>\n\t\t\t\t<Direction>O</Direction>\n\t\t\t\t<Updatetime>05:35
         
     | 
| 
      
 672 
     | 
    
         
            +
                    PM</Updatetime>\n\t\t\t\t<Vehicleid>6489</Vehicleid>\n\t\t\t\t<Block>6023</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.49</Speed>\n\t\t\t\t<Heading>
         
     | 
| 
      
 673 
     | 
    
         
            +
                    1</Heading>\n\t\t\t\t<Routeid>16707</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>573</Route>\n\t\t\t\t<Direction>O</Direction>\n\t\t\t\t<Updatetime>05:37
         
     | 
| 
      
 674 
     | 
    
         
            +
                    PM</Updatetime>\n\t\t\t\t<Vehicleid>6481</Vehicleid>\n\t\t\t\t<Block>6024</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>55.45</Speed>\n\t\t\t\t<Heading>27</Heading>\n\t\t\t\t<Routeid>16707</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>575</Route>\n\t\t\t\t<Direction>O</Direction>\n\t\t\t\t<Updatetime>05:38
         
     | 
| 
      
 675 
     | 
    
         
            +
                    PM</Updatetime>\n\t\t\t\t<Vehicleid>6490</Vehicleid>\n\t\t\t\t<Block>6028</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>N</Stopped>\n\t\t\t\t<Inservice>Y</Inservice>\n\t\t\t\t<Speed>1.69</Speed>\n\t\t\t\t<Heading>19</Heading>\n\t\t\t\t<Routeid>16711</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route>575</Route>\n\t\t\t\t<Direction>O</Direction>\n\t\t\t\t<Updatetime>05:36
         
     | 
| 
      
 676 
     | 
    
         
            +
                    PM</Updatetime>\n\t\t\t\t<Vehicleid>6495</Vehicleid>\n\t\t\t\t<Block>6029</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>58.18</Speed>\n\t\t\t\t<Heading>36</Heading>\n\t\t\t\t<Routeid>16711</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>05:36
         
     | 
| 
      
 677 
     | 
    
         
            +
                    PM</Updatetime>\n\t\t\t\t<Vehicleid>6499</Vehicleid>\n\t\t\t\t<Block>6030</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>8.28</Speed>\n\t\t\t\t<Heading>15</Heading>\n\t\t\t\t<Routeid>16641</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>05:37
         
     | 
| 
      
 678 
     | 
    
         
            +
                    PM</Updatetime>\n\t\t\t\t<Vehicleid>6500</Vehicleid>\n\t\t\t\t<Block>6031</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.60</Speed>\n\t\t\t\t<Heading>
         
     | 
| 
      
 679 
     | 
    
         
            +
                    9</Heading>\n\t\t\t\t<Routeid>16645</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>05:38
         
     | 
| 
      
 680 
     | 
    
         
            +
                    PM</Updatetime>\n\t\t\t\t<Vehicleid>8006</Vehicleid>\n\t\t\t\t<Block>62</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>13.36</Speed>\n\t\t\t\t<Heading>18</Heading>\n\t\t\t\t<Routeid>15979</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>05:36
         
     | 
| 
      
 681 
     | 
    
         
            +
                    PM</Updatetime>\n\t\t\t\t<Vehicleid>8007</Vehicleid>\n\t\t\t\t<Block>64</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>17.18</Speed>\n\t\t\t\t<Heading>18</Heading>\n\t\t\t\t<Routeid>15979</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>05:36
         
     | 
| 
      
 682 
     | 
    
         
            +
                    PM</Updatetime>\n\t\t\t\t<Vehicleid>8019</Vehicleid>\n\t\t\t\t<Block>65</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>12</Heading>\n\t\t\t\t<Routeid>15979</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>05:37
         
     | 
| 
      
 683 
     | 
    
         
            +
                    PM</Updatetime>\n\t\t\t\t<Vehicleid>6030</Vehicleid>\n\t\t\t\t<Block>68</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.11</Speed>\n\t\t\t\t<Heading>36</Heading>\n\t\t\t\t<Routeid>15972</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>05:38
         
     | 
| 
      
 684 
     | 
    
         
            +
                    PM</Updatetime>\n\t\t\t\t<Vehicleid>8058</Vehicleid>\n\t\t\t\t<Block>69</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>13.19</Speed>\n\t\t\t\t<Heading>18</Heading>\n\t\t\t\t<Routeid>15979</Routeid>\n\t\t\t</Vehicle>\n\t\t\t<Vehicle>\n\t\t\t\t<Route></Route>\n\t\t\t\t<Direction>
         
     | 
| 
      
 685 
     | 
    
         
            +
                    </Direction>\n\t\t\t\t<Updatetime>05:35 PM</Updatetime>\n\t\t\t\t<Vehicleid>6314</Vehicleid>\n\t\t\t\t<Block>70</Block>\n\t\t\t\t<Adherance>-1</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>N</Stopped>\n\t\t\t\t<Inservice>N</Inservice>\n\t\t\t\t<Speed>19.89</Speed>\n\t\t\t\t<Heading>
         
     | 
| 
      
 686 
     | 
    
         
            +
                    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>ALEX</Route>\n\t\t\t\t<Direction>W</Direction>\n\t\t\t\t<Updatetime>05:37
         
     | 
| 
      
 687 
     | 
    
         
            +
                    PM</Updatetime>\n\t\t\t\t<Vehicleid>1508</Vehicleid>\n\t\t\t\t<Block>7001</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.60</Speed>\n\t\t\t\t<Heading>18</Heading>\n\t\t\t\t<Routeid>16749</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>E</Direction>\n\t\t\t\t<Updatetime>05:36
         
     | 
| 
      
 688 
     | 
    
         
            +
                    PM</Updatetime>\n\t\t\t\t<Vehicleid>1509</Vehicleid>\n\t\t\t\t<Block>7002</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.03</Speed>\n\t\t\t\t<Heading>
         
     | 
| 
      
 689 
     | 
    
         
            +
                    0</Heading>\n\t\t\t\t<Routeid>16743</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>E</Direction>\n\t\t\t\t<Updatetime>05:37
         
     | 
| 
      
 690 
     | 
    
         
            +
                    PM</Updatetime>\n\t\t\t\t<Vehicleid>1506</Vehicleid>\n\t\t\t\t<Block>7003</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.58</Speed>\n\t\t\t\t<Heading>10</Heading>\n\t\t\t\t<Routeid>16743</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>05:37
         
     | 
| 
      
 691 
     | 
    
         
            +
                    PM</Updatetime>\n\t\t\t\t<Vehicleid>8014</Vehicleid>\n\t\t\t\t<Block>71</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.06</Speed>\n\t\t\t\t<Heading>18</Heading>\n\t\t\t\t<Routeid>15979</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>05:37
         
     | 
| 
      
 692 
     | 
    
         
            +
                    PM</Updatetime>\n\t\t\t\t<Vehicleid>6294</Vehicleid>\n\t\t\t\t<Block>73</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.72</Speed>\n\t\t\t\t<Heading>36</Heading>\n\t\t\t\t<Routeid>16034</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>05:37
         
     | 
| 
      
 693 
     | 
    
         
            +
                    PM</Updatetime>\n\t\t\t\t<Vehicleid>6354</Vehicleid>\n\t\t\t\t<Block>74</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.14</Speed>\n\t\t\t\t<Heading>19</Heading>\n\t\t\t\t<Routeid>16038</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>05:38
         
     | 
| 
      
 694 
     | 
    
         
            +
                    PM</Updatetime>\n\t\t\t\t<Vehicleid>6342</Vehicleid>\n\t\t\t\t<Block>77</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>
         
     | 
| 
      
 695 
     | 
    
         
            +
                    0</Heading>\n\t\t\t\t<Routeid>16034</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>05:38
         
     | 
| 
      
 696 
     | 
    
         
            +
                    PM</Updatetime>\n\t\t\t\t<Vehicleid>8009</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>Y</Inservice>\n\t\t\t\t<Speed>15.52</Speed>\n\t\t\t\t<Heading>
         
     | 
| 
      
 697 
     | 
    
         
            +
                    9</Heading>\n\t\t\t\t<Routeid>16096</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>05:36
         
     | 
| 
      
 698 
     | 
    
         
            +
                    PM</Updatetime>\n\t\t\t\t<Vehicleid>6539</Vehicleid>\n\t\t\t\t<Block>87</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.66</Speed>\n\t\t\t\t<Heading>11</Heading>\n\t\t\t\t<Routeid>16096</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>05:38
         
     | 
| 
      
 699 
     | 
    
         
            +
                    PM</Updatetime>\n\t\t\t\t<Vehicleid>6561</Vehicleid>\n\t\t\t\t<Block>9</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>13.40</Speed>\n\t\t\t\t<Heading>18</Heading>\n\t\t\t\t<Routeid>15784</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>05:38
         
     | 
| 
      
 700 
     | 
    
         
            +
                    PM</Updatetime>\n\t\t\t\t<Vehicleid>6550</Vehicleid>\n\t\t\t\t<Block>93</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.07</Speed>\n\t\t\t\t<Heading>
         
     | 
| 
      
 701 
     | 
    
         
            +
                    0</Heading>\n\t\t\t\t<Routeid>16110</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>05:36
         
     | 
| 
      
 702 
     | 
    
         
            +
                    PM</Updatetime>\n\t\t\t\t<Vehicleid>8018</Vehicleid>\n\t\t\t\t<Block>98</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>6.72</Speed>\n\t\t\t\t<Heading>29</Heading>\n\t\t\t\t<Routeid>16110</Routeid>\n\t\t\t</Vehicle>\n\t\t</Vehicles>\n\t<Mapextents>33.239410,-112.391678,33.712849,-111.678558</Mapextents>\n\t<Appid>ratis-specs</Appid>\n\t<Requestor>72.222.151.25</Requestor>\n\t<Host>s-rpta-soap</Host>\n\t<Copyright>XML
         
     | 
| 
       626 
703 
     | 
    
         
             
                    schema Copyright (c) 2003-2014 Trapeze Software ULC, its subsidiaries and
         
     | 
| 
       627 
704 
     | 
    
         
             
                    affiliates.  All rights reserved.</Copyright>\n\t<Soapversion>2.7.1a - 05/14/14</Soapversion>\n</namesp1:FleetlocationResponse></SOAP-ENV:Body></SOAP-ENV:Envelope>"
         
     | 
| 
       628 
705 
     | 
    
         
             
                http_version: 
         
     | 
| 
       629 
     | 
    
         
            -
              recorded_at:  
     | 
| 
      
 706 
     | 
    
         
            +
              recorded_at: Sat, 14 Jun 2014 00:39:21 GMT
         
     | 
| 
       630 
707 
     | 
    
         
             
            recorded_with: VCR 2.8.0
         
     |