vinquery 0.1.0

Sign up to get free protection for your applications and to get access to all the features.
data/Gemfile ADDED
@@ -0,0 +1,3 @@
1
+ source 'http://rubygems.org'
2
+
3
+ gemspec
@@ -0,0 +1,32 @@
1
+ PATH
2
+ remote: .
3
+ specs:
4
+ vinquery (0.1.0)
5
+ nokogiri (>= 1.4.4)
6
+
7
+ GEM
8
+ remote: http://rubygems.org/
9
+ specs:
10
+ addressable (2.2.6)
11
+ crack (0.1.8)
12
+ diff-lcs (1.1.2)
13
+ nokogiri (1.4.4)
14
+ rspec (2.6.0)
15
+ rspec-core (~> 2.6.0)
16
+ rspec-expectations (~> 2.6.0)
17
+ rspec-mocks (~> 2.6.0)
18
+ rspec-core (2.6.3)
19
+ rspec-expectations (2.6.0)
20
+ diff-lcs (~> 1.1.2)
21
+ rspec-mocks (2.6.0)
22
+ webmock (1.6.4)
23
+ addressable (~> 2.2, > 2.2.5)
24
+ crack (>= 0.1.7)
25
+
26
+ PLATFORMS
27
+ ruby
28
+
29
+ DEPENDENCIES
30
+ rspec (>= 2.6.0)
31
+ vinquery!
32
+ webmock (>= 1.6.4)
@@ -0,0 +1,32 @@
1
+ h1. Vinquery
2
+
3
+ A ruby client for the "VinQuery":http//www.vinquery.com vin decoding web service.
4
+
5
+ h2. How to install
6
+
7
+ *Bundler*
8
+
9
+ <pre>
10
+ gem vinquery
11
+ </pre>
12
+
13
+ *Rubygems*
14
+
15
+ <pre>
16
+ gem install vinquery
17
+ </pre>
18
+
19
+ h2. How to use
20
+
21
+ Vinquery will provide you with a unique url and access_code which is needed for every request. In addition you will need to send the report type you desire. More info is available at the VinQuery "site":http://vinquery.com.
22
+
23
+ <pre>
24
+ require 'vinquery'
25
+ vin = Vinquery.get('1FTWX31R19EB18840', {
26
+ :url => 'VINQUERY_URL',
27
+ :access_code => 'ACCESS_CODE',
28
+ :report_type => 'REPORT_TYPE'})
29
+
30
+ vin.valid? # true
31
+ vin.attributes[:make] # Ford
32
+ </pre>
@@ -0,0 +1,10 @@
1
+ $LOAD_PATH.unshift File.expand_path("../lib", __FILE__)
2
+ require 'vinquery/version'
3
+
4
+ task :build do
5
+ system "gem build vinquery.gemspec"
6
+ end
7
+
8
+ task :release => :build do
9
+ system "gem push vinquery-#{Vinquery::VERSION}.gem"
10
+ end
@@ -0,0 +1,71 @@
1
+ require 'net/http'
2
+ require 'nokogiri'
3
+
4
+ class Vinquery
5
+ attr_reader :attributes, :vq_attrs, :errors
6
+
7
+ def self.get(vin, options={})
8
+ request = Vinquery.new options[:url], options[:access_code], options[:report_type]
9
+ doc = request.fetch vin
10
+ result = request.parse doc
11
+ request
12
+ end
13
+
14
+ def initialize(url, access_code, report_type)
15
+ @url = url
16
+ @access_code = access_code
17
+ @report_type = report_type
18
+ end
19
+
20
+ def fetch(vin)
21
+ # initialize http get with vin
22
+ url_s = "#{@url}?accessCode=#{@access_code}&vin=#{vin}&reportType=#{@report_type}"
23
+ url = URI.parse(URI.escape(url_s))
24
+ begin
25
+ res = Net::HTTP.get url
26
+ rescue Exception => e
27
+ xml = Nokogiri::XML::Builder.new do |doc|
28
+ doc.vin(:number => vin,:status => "FAILED") {
29
+ doc.message(:Key => "VinQuery unavailable", :Value => "Oops, it looks like our partner database isn't responding right now. Please try again later.")
30
+ }
31
+ end
32
+ res = xml.to_xml
33
+ end
34
+ @doc = Nokogiri::HTML(res)
35
+ end
36
+
37
+ def parse(doc)
38
+ set_attributes doc
39
+ set_errors_hash doc
40
+ # VinResult.new(valid?,
41
+ # @attributes[:make],
42
+ # @attributes[:model],
43
+ # @attributes[:year].to_i,
44
+ # @attributes[:body_style],
45
+ # @attributes[:driveline],
46
+ # @attributes[:engine_type],
47
+ # @vin_errors.values.first,
48
+ # @attributes)
49
+ end
50
+
51
+ def set_attributes(doc)
52
+ attributes = {}
53
+ doc.xpath('//vehicle[1]/item').each do |item|
54
+ attributes[item.attributes['key'].value.downcase.gsub(/ /, '_').intern] = item.attributes['value'].value
55
+ end
56
+
57
+ @attributes = attributes
58
+ end
59
+
60
+ def set_errors_hash(doc)
61
+ @errors = {}
62
+ @valid = doc.css('vin').first.attributes['status'].value == "SUCCESS"
63
+
64
+ @errors = {doc.css('message').first.attributes['key'].value => doc.css('message').first.attributes['value'].value} unless @valid
65
+ end
66
+
67
+ def valid?
68
+ @valid
69
+ end
70
+
71
+ end
@@ -0,0 +1,3 @@
1
+ class Vinquery
2
+ VERSION = '0.1.0'
3
+ end
@@ -0,0 +1,15 @@
1
+ require "rubygems"
2
+
3
+ require "bundler"
4
+ Bundler.setup
5
+
6
+
7
+ require 'rspec'
8
+ require 'webmock/rspec'
9
+
10
+ $:.unshift(File.dirname(__FILE__) + '/../lib')
11
+ require 'vinquery'
12
+
13
+ RSpec.configure do |config|
14
+
15
+ end
@@ -0,0 +1,91 @@
1
+ require 'spec_helper'
2
+ require 'net/http'
3
+ require 'vinquery'
4
+
5
+ describe Vinquery do
6
+
7
+ before(:each) do
8
+
9
+ @query = Vinquery.new 'http://www.vinlookupservice.com', 'access_code', 'report_type_2'
10
+
11
+ @test_xml_data ||= File.new("#{File.dirname(__FILE__)}/vinquery_test.xml", "r").read
12
+ stub_request(:any, /.*vinlookupservice.*/).to_return(:body => @test_xml_data, :status => 200, :headers => { 'Content-Length' => @test_xml_data.length})
13
+ end
14
+
15
+ after(:each) do
16
+ WebMock.reset!
17
+ end
18
+
19
+ describe 'set attributes' do
20
+ it 'should return a set of vehicle attributes given a Nokogiri document' do
21
+ doc = Nokogiri::HTML(@test_xml_data)
22
+ @query.set_attributes(doc)
23
+ @query.attributes[:body_style].should == "EXTENDED CAB PICKUP 4-DR"
24
+ @query.attributes.count.should == 168
25
+ end
26
+
27
+ it 'should recover from poorly or unexpected xml document' do
28
+ xml_s = '<?xml version="1.0"?>\\n<blah status="FAILED" number="vin"\\n'
29
+ doc = Nokogiri::HTML(xml_s)
30
+ @query.set_attributes(doc).should == {}
31
+ end
32
+ end
33
+
34
+ describe 'set errors hash' do
35
+ it 'should give the reason for failure within an errors hash' do
36
+ doc = Nokogiri::HTML '<?xml version="1.0" encoding="utf-8" standalone="yes"?>\r\n<VINquery Version="1.0.0" Report_Type="BASIC" Date="2/19/2011">\r\n <VIN Number="ABCDEFGHIJKLMNOPQ" Status="FAILED">\r\n <Message Key="5" Value="Invalid VIN number: This VIN number contains invalid letters: I,O or Q." />\r\n </VIN>\r\n</VINquery>'
37
+ @query.set_errors_hash(doc)
38
+ @query.valid?.should == false
39
+ @query.errors.should == {"5" => "Invalid VIN number: This VIN number contains invalid letters: I,O or Q."}
40
+ end
41
+ end
42
+
43
+ describe 'get_doc' do
44
+ it "should return valid xml parsed by nokogiri pulled from VinQuery.com" do
45
+ n_xml = @query.fetch('abcdefghijklmnopq')
46
+
47
+ n_xml.class.should equal(Nokogiri::HTML::Document)
48
+ !!n_xml.css('vin').should == true
49
+ end
50
+
51
+ it "should rescue from error if the request misfires" do
52
+ stub_request(:any, /.*bad\.service\.url.*/).to_timeout
53
+ @query.instance_variable_set(:@url,"http://bad.service.url")
54
+ doc = @query.fetch('')
55
+ doc.css('vin').first.attributes['status'].value.should == "FAILED"
56
+ doc.css('message').first.attributes['key'].value.should == "VinQuery unavailable"
57
+ doc.css('message').first.attributes['value'].value.should == "Oops, it looks like our partner database isn't responding right now. Please try again later."
58
+ end
59
+ end
60
+
61
+ describe 'parse_doc' do
62
+ it 'should take nokogiri document and separate to attributes and errors hash' do
63
+ doc = Nokogiri::HTML(@test_xml_data)
64
+ @query.should_receive(:set_attributes).with(an_instance_of(Nokogiri::HTML::Document))
65
+ @query.parse(doc)
66
+ end
67
+ end
68
+
69
+ describe 'request' do
70
+ before(:each) do
71
+
72
+ end
73
+
74
+ it 'should make the call to VinQuery.com and return attributes on valid number' do
75
+ stub_request(:any, /.*fakeurl.*/).to_return(:body => @test_xml_data, :status => 200, :headers => { 'Content-Length' => @test_xml_data.length})
76
+ query = Vinquery.get('1G1ND52F14M587843', {:url => 'http://www.fakeurl.com', :access_code => 'access_code', :report_type => 'report_type_2'})
77
+ query.valid?.should == true
78
+ query.errors.should == {}
79
+ query.attributes.class.should equal(Hash)
80
+ end
81
+
82
+ it 'should return an errors hash with an invalid vin number' do
83
+ res = '<?xml version="1.0" encoding="utf-8" standalone="yes"?>\r\n<VINquery Version="1.0.0" Report_Type="BASIC" Date="2/19/2011">\r\n <VIN Number="ABCDEFGHIJKLMNOPQ" Status="FAILED">\r\n <Message Key="5" Value="Invalid VIN number: This VIN number contains invalid letters: I,O or Q." />\r\n </VIN>\r\n</VINquery>'
84
+ stub_request(:any, /.*invalidvin.*/).to_return(:body => res, :status => 200, :headers => { 'Content-Length' => res.length})
85
+ results = Vinquery.get('BADVIN', {:url => 'http://www.invalidvin.com', :access_code => 'access_code', :report_type => 'report_type_2'})
86
+ results.valid?.should == false
87
+ end
88
+ end
89
+
90
+ end
91
+
@@ -0,0 +1,1365 @@
1
+ <?xml version="1.0" encoding="utf-8" standalone="yes"?>
2
+ <VINquery Version="1.0.0" Report_Type="EXTENDED" Date="6/8/2011">
3
+ <VIN Number="1FTWX31R19EB18840" Status="SUCCESS">
4
+ <Vehicle VINquery_Vehicle_ID="38246" Model_Year="2009" Make="Ford" Model="F-350 SD" Trim_Level="FX4 SuperCab 4WD">
5
+ <Item Key="VINquery_Vehicle_ID" Value="38246" Unit=""/>
6
+ <Item Key="Model Year" Value="2009" Unit=""/>
7
+ <Item Key="Make" Value="Ford" Unit=""/>
8
+ <Item Key="Model" Value="F-350 SD" Unit=""/>
9
+ <Item Key="Trim Level" Value="FX4 SuperCab 4WD" Unit=""/>
10
+ <Item Key="Manufactured in" Value="UNITED STATES" Unit=""/>
11
+ <Item Key="Production Seq. Number" Value="B18840" Unit=""/>
12
+ <Item Key="Body Style" Value="EXTENDED CAB PICKUP 4-DR" Unit=""/>
13
+ <Item Key="Engine Type" Value="6.4L V8 OHV 32V TURBO DIESEL" Unit=""/>
14
+ <Item Key="Transmission-short" Value="5A | 6M" Unit=""/>
15
+ <Item Key="Transmission-long" Value="5-Speed Automatic | 6-Speed Manual" Unit=""/>
16
+ <Item Key="Driveline" Value="4WD" Unit=""/>
17
+ <Item Key="Tank" Value="30.50" Unit="gallon"/>
18
+ <Item Key="Fuel Economy-city" Value="No data" Unit="miles/gallon"/>
19
+ <Item Key="Fuel Economy-highway" Value="No data" Unit="miles/gallon"/>
20
+ <Item Key="Anti-Brake System" Value="4-Wheel ABS" Unit=""/>
21
+ <Item Key="Steering Type" Value="Recirc" Unit=""/>
22
+ <Item Key="Front Brake Type" Value="Disc" Unit=""/>
23
+ <Item Key="Rear Brake Type" Value="Disc" Unit=""/>
24
+ <Item Key="Turning Diameter" Value="47.50" Unit="in."/>
25
+ <Item Key="Front Suspension" Value="Ind" Unit=""/>
26
+ <Item Key="Rear Suspension" Value="Live" Unit=""/>
27
+ <Item Key="Front Spring Type" Value="Leaf" Unit=""/>
28
+ <Item Key="Rear Spring Type" Value="Leaf" Unit=""/>
29
+ <Item Key="Tires" Value="275/70R18" Unit=""/>
30
+ <Item Key="Front Headroom" Value="41.40" Unit="in."/>
31
+ <Item Key="Rear Headroom" Value="38.40" Unit="in."/>
32
+ <Item Key="Front Legroom" Value="41.00" Unit="in."/>
33
+ <Item Key="Rear Legroom" Value="31.80" Unit="in."/>
34
+ <Item Key="Front Shoulder Room" Value="68.00" Unit="in."/>
35
+ <Item Key="Rear Shoulder Room" Value="68.10" Unit="in."/>
36
+ <Item Key="Front Hip Room" Value="67.60" Unit="in."/>
37
+ <Item Key="Rear Hip Room" Value="67.30" Unit="in."/>
38
+ <Item Key="Interior Trim" Value="Black/Black Cloth Interior | Black/Black Leather Interior | Medium Stone/Black Cloth Interior | Medium Stone/Black Leather Interior" Unit=""/>
39
+ <Item Key="Exterior Color" Value="Black | Black/Sterling Grey Metallic | Brilliant Silver Metallic | Brilliant Silver Metallic/Sterling Grey Metallic | Dark Blue Metallic/Sterling Grey Metallic | Dark Blue Pearl Metallic | Oxford White | Oxford White/Sterling Grey Metallic | Red | Red/Sterling Grey Metallic | Sterling Grey Metallic" Unit=""/>
40
+ <Item Key="Curb Weight-automatic" Value="No data" Unit="lbs"/>
41
+ <Item Key="Curb Weight-manual" Value="6523" Unit="lbs"/>
42
+ <Item Key="Overall Length" Value="231.80" Unit="in."/>
43
+ <Item Key="Overall Width" Value="79.90" Unit="in."/>
44
+ <Item Key="Overall Height" Value="80.60" Unit="in."/>
45
+ <Item Key="Wheelbase" Value="141.80" Unit="in."/>
46
+ <Item Key="Ground Clearance" Value="No data" Unit="in."/>
47
+ <Item Key="Track Front" Value="68.40" Unit="in."/>
48
+ <Item Key="Track Rear" Value="68.10" Unit="in."/>
49
+ <Item Key="Cargo Length" Value="81.80" Unit="in."/>
50
+ <Item Key="Width at Wheelwell" Value="50.90" Unit="in."/>
51
+ <Item Key="Width at Wall" Value="63.90" Unit="in."/>
52
+ <Item Key="Depth" Value="20.10" Unit="in."/>
53
+ <Item Key="Standard Seating" Value="6" Unit=""/>
54
+ <Item Key="Optional Seating" Value="5" Unit=""/>
55
+ <Item Key="Passenger Volume" Value="No data" Unit="cu.ft."/>
56
+ <Item Key="Cargo Volume" Value="No data" Unit="cu.ft."/>
57
+ <Item Key="Standard Towing" Value="5000" Unit="lbs"/>
58
+ <Item Key="Maximum Towing" Value="16800" Unit="lbs"/>
59
+ <Item Key="Standard Payload" Value="No data" Unit="lbs"/>
60
+ <Item Key="Maximum Payload" Value="4070" Unit="lbs"/>
61
+ <Item Key="Standard GVWR" Value="10600" Unit="lbs"/>
62
+ <Item Key="Maximum GVWR" Value="11200" Unit="lbs"/>
63
+ <Item Key="Basic-duration" Value="36" Unit="month"/>
64
+ <Item Key="Basic-distance" Value="36,000" Unit="mile"/>
65
+ <Item Key="Powertrain-duration" Value="60" Unit="month"/>
66
+ <Item Key="Powertrain-distance" Value="60,000" Unit="mile"/>
67
+ <Item Key="Rust-duration" Value="60" Unit="month"/>
68
+ <Item Key="Rust-distance" Value="Unlimited" Unit="mile"/>
69
+ <Item Key="MSRP" Value="$38,275" Unit="USD"/>
70
+ <Item Key="Dealer Invoice" Value="$35,157" Unit="USD"/>
71
+ <Item Key="Destination Charge" Value="$975" Unit="USD"/>
72
+ <Item Key="Child Safety Door Locks" Value="N/A" Unit=""/>
73
+ <Item Key="Locking Pickup Truck Tailgate" Value="Std." Unit=""/>
74
+ <Item Key="Power Door Locks" Value="Std." Unit=""/>
75
+ <Item Key="Vehicle Anti-Theft" Value="Std." Unit=""/>
76
+ <Item Key="4WD/AWD" Value="Std." Unit=""/>
77
+ <Item Key="ABS Brakes" Value="Std." Unit=""/>
78
+ <Item Key="Automatic Load-Leveling" Value="N/A" Unit=""/>
79
+ <Item Key="Electronic Brake Assistance" Value="N/A" Unit=""/>
80
+ <Item Key="Limited Slip Differential" Value="Std." Unit=""/>
81
+ <Item Key="Locking Differential" Value="N/A" Unit=""/>
82
+ <Item Key="Traction Control" Value="Opt." Unit=""/>
83
+ <Item Key="Vehicle Stability Control System" Value="N/A" Unit=""/>
84
+ <Item Key="Driver Airbag" Value="Std." Unit=""/>
85
+ <Item Key="Front Side Airbag" Value="N/A" Unit=""/>
86
+ <Item Key="Front Side Airbag with Head Protection" Value="N/A" Unit=""/>
87
+ <Item Key="Passenger Airbag" Value="Std." Unit=""/>
88
+ <Item Key="Side Head Curtain Airbag" Value="N/A" Unit=""/>
89
+ <Item Key="Second Row Side Airbag" Value="N/A" Unit=""/>
90
+ <Item Key="Second Row Side Airbag with Head Protection" Value="N/A" Unit=""/>
91
+ <Item Key="Electronic Parking Aid" Value="Opt." Unit=""/>
92
+ <Item Key="First Aid Kit" Value="N/A" Unit=""/>
93
+ <Item Key="Trunk Anti-Trap Device" Value="N/A" Unit=""/>
94
+ <Item Key="Keyless Entry" Value="Std." Unit=""/>
95
+ <Item Key="Remote Ignition" Value="Opt." Unit=""/>
96
+ <Item Key="Air Conditioning" Value="Std." Unit=""/>
97
+ <Item Key="Separate Driver/Front Passenger Climate Controls" Value="Opt." Unit=""/>
98
+ <Item Key="Cruise Control" Value="Std." Unit=""/>
99
+ <Item Key="Tachometer" Value="Std." Unit=""/>
100
+ <Item Key="Tilt Steering" Value="Std." Unit=""/>
101
+ <Item Key="Tilt Steering Column" Value="Std." Unit=""/>
102
+ <Item Key="Heated Steering Wheel" Value="N/A" Unit=""/>
103
+ <Item Key="Leather Steering Wheel" Value="Std." Unit=""/>
104
+ <Item Key="Steering Wheel Mounted Controls" Value="Std." Unit=""/>
105
+ <Item Key="Telescopic Steering Column" Value="N/A" Unit=""/>
106
+ <Item Key="Adjustable Foot Pedals" Value="Opt." Unit=""/>
107
+ <Item Key="Genuine Wood Trim" Value="N/A" Unit=""/>
108
+ <Item Key="Tire Pressure Monitor" Value="Std." Unit=""/>
109
+ <Item Key="Trip Computer" Value="Std." Unit=""/>
110
+ <Item Key="AM/FM Radio" Value="Std." Unit=""/>
111
+ <Item Key="Cassette Player" Value="N/A" Unit=""/>
112
+ <Item Key="CD Player" Value="Std." Unit=""/>
113
+ <Item Key="CD Changer" Value="Opt." Unit=""/>
114
+ <Item Key="DVD Player" Value="Opt." Unit=""/>
115
+ <Item Key="Voice Activated Telephone" Value="N/A" Unit=""/>
116
+ <Item Key="Navigation Aid" Value="Opt." Unit=""/>
117
+ <Item Key="Second Row Sound Controls" Value="N/A" Unit=""/>
118
+ <Item Key="Subwoofer" Value="Opt." Unit=""/>
119
+ <Item Key="Telematics System" Value="Opt." Unit=""/>
120
+ <Item Key="Driver Multi-Adjustable Power Seat" Value="Std." Unit=""/>
121
+ <Item Key="Front Cooled Seat" Value="N/A" Unit=""/>
122
+ <Item Key="Front Heated Seat" Value="Opt." Unit=""/>
123
+ <Item Key="Front Power Lumbar Support" Value="N/A" Unit=""/>
124
+ <Item Key="Front Power Memory Seat" Value="Opt." Unit=""/>
125
+ <Item Key="Front Split Bench Seat" Value="N/A" Unit=""/>
126
+ <Item Key="Leather Seat" Value="Opt." Unit=""/>
127
+ <Item Key="Passenger Multi-Adjustable Power Seat" Value="Std." Unit=""/>
128
+ <Item Key="Second Row Folding Seat" Value="Std." Unit=""/>
129
+ <Item Key="Second Row Heated Seat" Value="N/A" Unit=""/>
130
+ <Item Key="Second Row Multi-Adjustable Power Seat" Value="N/A" Unit=""/>
131
+ <Item Key="Second Row Removable Seat" Value="N/A" Unit=""/>
132
+ <Item Key="Third Row Removable Seat" Value="N/A" Unit=""/>
133
+ <Item Key="Cargo Area Cover" Value="Opt." Unit=""/>
134
+ <Item Key="Cargo Area Tiedowns" Value="Std." Unit=""/>
135
+ <Item Key="Cargo Net" Value="N/A" Unit=""/>
136
+ <Item Key="Load Bearing Exterior Rack" Value="N/A" Unit=""/>
137
+ <Item Key="Pickup Truck Bed Liner" Value="Opt." Unit=""/>
138
+ <Item Key="Power Sunroof" Value="N/A" Unit=""/>
139
+ <Item Key="Removable Top" Value="N/A" Unit=""/>
140
+ <Item Key="Manual Sunroof" Value="N/A" Unit=""/>
141
+ <Item Key="Automatic Headlights" Value="Std." Unit=""/>
142
+ <Item Key="Daytime Running Lights" Value="N/A" Unit=""/>
143
+ <Item Key="Fog Lights" Value="Std." Unit=""/>
144
+ <Item Key="High Intensity Discharge Headlights" Value="N/A" Unit=""/>
145
+ <Item Key="Pickup Truck Cargo Box Light" Value="Std." Unit=""/>
146
+ <Item Key="Running Boards" Value="Opt." Unit=""/>
147
+ <Item Key="Front Air Dam" Value="Std." Unit=""/>
148
+ <Item Key="Rear Spoiler" Value="N/A" Unit=""/>
149
+ <Item Key="Skid Plate" Value="Std." Unit=""/>
150
+ <Item Key="Splash Guards" Value="Opt." Unit=""/>
151
+ <Item Key="Wind Deflector for Convertibles" Value="N/A" Unit=""/>
152
+ <Item Key="Power Sliding Side Van Door" Value="N/A" Unit=""/>
153
+ <Item Key="Power Trunk Lid" Value="N/A" Unit=""/>
154
+ <Item Key="Alloy Wheels" Value="Opt." Unit=""/>
155
+ <Item Key="Chrome Wheels" Value="Std." Unit=""/>
156
+ <Item Key="Full Size Spare Tire" Value="Std." Unit=""/>
157
+ <Item Key="Run Flat Tires" Value="N/A" Unit=""/>
158
+ <Item Key="Steel Wheels" Value="Std." Unit=""/>
159
+ <Item Key="Power Windows" Value="Std." Unit=""/>
160
+ <Item Key="Electrochromic Exterior Rearview Mirror" Value="N/A" Unit=""/>
161
+ <Item Key="Glass Rear Window on Convertible" Value="N/A" Unit=""/>
162
+ <Item Key="Heated Exterior Mirror" Value="Std." Unit=""/>
163
+ <Item Key="Electrochromic Interior Rearview Mirror" Value="Opt." Unit=""/>
164
+ <Item Key="Power Adjustable Exterior Mirror" Value="Std." Unit=""/>
165
+ <Item Key="Deep Tinted Glass" Value="Std." Unit=""/>
166
+ <Item Key="Interval Wipers" Value="Std." Unit=""/>
167
+ <Item Key="Rain Sensing Wipers" Value="N/A" Unit=""/>
168
+ <Item Key="Rear Window Defogger" Value="N/A" Unit=""/>
169
+ <Item Key="Rear Wiper" Value="N/A" Unit=""/>
170
+ <Item Key="Sliding Rear Pickup Truck Window" Value="Opt." Unit=""/>
171
+ <Item Key="Tow Hitch Receiver" Value="Std." Unit=""/>
172
+ <Item Key="Towing Preparation Package" Value="Std." Unit=""/>
173
+ </Vehicle>
174
+ <Vehicle VINquery_Vehicle_ID="38247" Model_Year="2009" Make="Ford" Model="F-350 SD" Trim_Level="FX4 SuperCab Long Bed 4WD">
175
+ <Item Key="VINquery_Vehicle_ID" Value="38247" Unit=""/>
176
+ <Item Key="Model Year" Value="2009" Unit=""/>
177
+ <Item Key="Make" Value="Ford" Unit=""/>
178
+ <Item Key="Model" Value="F-350 SD" Unit=""/>
179
+ <Item Key="Trim Level" Value="FX4 SuperCab Long Bed 4WD" Unit=""/>
180
+ <Item Key="Manufactured in" Value="UNITED STATES" Unit=""/>
181
+ <Item Key="Production Seq. Number" Value="B18840" Unit=""/>
182
+ <Item Key="Body Style" Value="EXTENDED CAB PICKUP 4-DR" Unit=""/>
183
+ <Item Key="Engine Type" Value="6.4L V8 OHV 32V TURBO DIESEL" Unit=""/>
184
+ <Item Key="Transmission-short" Value="5A | 6M" Unit=""/>
185
+ <Item Key="Transmission-long" Value="5-Speed Automatic | 6-Speed Manual" Unit=""/>
186
+ <Item Key="Driveline" Value="4WD" Unit=""/>
187
+ <Item Key="Tank" Value="38.00" Unit="gallon"/>
188
+ <Item Key="Fuel Economy-city" Value="No data" Unit="miles/gallon"/>
189
+ <Item Key="Fuel Economy-highway" Value="No data" Unit="miles/gallon"/>
190
+ <Item Key="Anti-Brake System" Value="4-Wheel ABS" Unit=""/>
191
+ <Item Key="Steering Type" Value="Recirc" Unit=""/>
192
+ <Item Key="Front Brake Type" Value="Disc" Unit=""/>
193
+ <Item Key="Rear Brake Type" Value="Disc" Unit=""/>
194
+ <Item Key="Turning Diameter" Value="52.40" Unit="in."/>
195
+ <Item Key="Front Suspension" Value="Ind" Unit=""/>
196
+ <Item Key="Rear Suspension" Value="Live" Unit=""/>
197
+ <Item Key="Front Spring Type" Value="Leaf" Unit=""/>
198
+ <Item Key="Rear Spring Type" Value="Leaf" Unit=""/>
199
+ <Item Key="Tires" Value="275/70R18" Unit=""/>
200
+ <Item Key="Front Headroom" Value="41.40" Unit="in."/>
201
+ <Item Key="Rear Headroom" Value="38.40" Unit="in."/>
202
+ <Item Key="Front Legroom" Value="41.00" Unit="in."/>
203
+ <Item Key="Rear Legroom" Value="31.80" Unit="in."/>
204
+ <Item Key="Front Shoulder Room" Value="68.00" Unit="in."/>
205
+ <Item Key="Rear Shoulder Room" Value="68.10" Unit="in."/>
206
+ <Item Key="Front Hip Room" Value="67.60" Unit="in."/>
207
+ <Item Key="Rear Hip Room" Value="67.30" Unit="in."/>
208
+ <Item Key="Interior Trim" Value="Black/Black Cloth Interior | Black/Black Leather Interior | Medium Stone/Black Cloth Interior | Medium Stone/Black Leather Interior" Unit=""/>
209
+ <Item Key="Exterior Color" Value="Black | Black/Sterling Grey Metallic | Brilliant Silver Metallic | Brilliant Silver Metallic/Sterling Grey Metallic | Dark Blue Metallic/Sterling Grey Metallic | Dark Blue Pearl Metallic | Oxford White | Oxford White/Sterling Grey Metallic | Red | Red/Sterling Grey Metallic | Sterling Grey Metallic" Unit=""/>
210
+ <Item Key="Curb Weight-automatic" Value="No data" Unit="lbs"/>
211
+ <Item Key="Curb Weight-manual" Value="6648" Unit="lbs"/>
212
+ <Item Key="Overall Length" Value="248.00" Unit="in."/>
213
+ <Item Key="Overall Width" Value="79.90" Unit="in."/>
214
+ <Item Key="Overall Height" Value="80.40" Unit="in."/>
215
+ <Item Key="Wheelbase" Value="158.00" Unit="in."/>
216
+ <Item Key="Ground Clearance" Value="No data" Unit="in."/>
217
+ <Item Key="Track Front" Value="68.40" Unit="in."/>
218
+ <Item Key="Track Rear" Value="68.10" Unit="in."/>
219
+ <Item Key="Cargo Length" Value="98.00" Unit="in."/>
220
+ <Item Key="Width at Wheelwell" Value="50.90" Unit="in."/>
221
+ <Item Key="Width at Wall" Value="63.90" Unit="in."/>
222
+ <Item Key="Depth" Value="20.10" Unit="in."/>
223
+ <Item Key="Standard Seating" Value="6" Unit=""/>
224
+ <Item Key="Optional Seating" Value="5" Unit=""/>
225
+ <Item Key="Passenger Volume" Value="No data" Unit="cu.ft."/>
226
+ <Item Key="Cargo Volume" Value="No data" Unit="cu.ft."/>
227
+ <Item Key="Standard Towing" Value="5000" Unit="lbs"/>
228
+ <Item Key="Maximum Towing" Value="16800" Unit="lbs"/>
229
+ <Item Key="Standard Payload" Value="No data" Unit="lbs"/>
230
+ <Item Key="Maximum Payload" Value="4140" Unit="lbs"/>
231
+ <Item Key="Standard GVWR" Value="10800" Unit="lbs"/>
232
+ <Item Key="Maximum GVWR" Value="11400" Unit="lbs"/>
233
+ <Item Key="Basic-duration" Value="36" Unit="month"/>
234
+ <Item Key="Basic-distance" Value="36,000" Unit="mile"/>
235
+ <Item Key="Powertrain-duration" Value="60" Unit="month"/>
236
+ <Item Key="Powertrain-distance" Value="60,000" Unit="mile"/>
237
+ <Item Key="Rust-duration" Value="60" Unit="month"/>
238
+ <Item Key="Rust-distance" Value="Unlimited" Unit="mile"/>
239
+ <Item Key="MSRP" Value="$38,460" Unit="USD"/>
240
+ <Item Key="Dealer Invoice" Value="$35,324" Unit="USD"/>
241
+ <Item Key="Destination Charge" Value="$975" Unit="USD"/>
242
+ <Item Key="Child Safety Door Locks" Value="N/A" Unit=""/>
243
+ <Item Key="Locking Pickup Truck Tailgate" Value="Std." Unit=""/>
244
+ <Item Key="Power Door Locks" Value="Std." Unit=""/>
245
+ <Item Key="Vehicle Anti-Theft" Value="Std." Unit=""/>
246
+ <Item Key="4WD/AWD" Value="Std." Unit=""/>
247
+ <Item Key="ABS Brakes" Value="Std." Unit=""/>
248
+ <Item Key="Automatic Load-Leveling" Value="N/A" Unit=""/>
249
+ <Item Key="Electronic Brake Assistance" Value="N/A" Unit=""/>
250
+ <Item Key="Limited Slip Differential" Value="Std." Unit=""/>
251
+ <Item Key="Locking Differential" Value="N/A" Unit=""/>
252
+ <Item Key="Traction Control" Value="Opt." Unit=""/>
253
+ <Item Key="Vehicle Stability Control System" Value="N/A" Unit=""/>
254
+ <Item Key="Driver Airbag" Value="Std." Unit=""/>
255
+ <Item Key="Front Side Airbag" Value="N/A" Unit=""/>
256
+ <Item Key="Front Side Airbag with Head Protection" Value="N/A" Unit=""/>
257
+ <Item Key="Passenger Airbag" Value="Std." Unit=""/>
258
+ <Item Key="Side Head Curtain Airbag" Value="N/A" Unit=""/>
259
+ <Item Key="Second Row Side Airbag" Value="N/A" Unit=""/>
260
+ <Item Key="Second Row Side Airbag with Head Protection" Value="N/A" Unit=""/>
261
+ <Item Key="Electronic Parking Aid" Value="Opt." Unit=""/>
262
+ <Item Key="First Aid Kit" Value="N/A" Unit=""/>
263
+ <Item Key="Trunk Anti-Trap Device" Value="N/A" Unit=""/>
264
+ <Item Key="Keyless Entry" Value="Std." Unit=""/>
265
+ <Item Key="Remote Ignition" Value="Opt." Unit=""/>
266
+ <Item Key="Air Conditioning" Value="Std." Unit=""/>
267
+ <Item Key="Separate Driver/Front Passenger Climate Controls" Value="Opt." Unit=""/>
268
+ <Item Key="Cruise Control" Value="Std." Unit=""/>
269
+ <Item Key="Tachometer" Value="Std." Unit=""/>
270
+ <Item Key="Tilt Steering" Value="Std." Unit=""/>
271
+ <Item Key="Tilt Steering Column" Value="Std." Unit=""/>
272
+ <Item Key="Heated Steering Wheel" Value="N/A" Unit=""/>
273
+ <Item Key="Leather Steering Wheel" Value="Std." Unit=""/>
274
+ <Item Key="Steering Wheel Mounted Controls" Value="Std." Unit=""/>
275
+ <Item Key="Telescopic Steering Column" Value="N/A" Unit=""/>
276
+ <Item Key="Adjustable Foot Pedals" Value="Opt." Unit=""/>
277
+ <Item Key="Genuine Wood Trim" Value="N/A" Unit=""/>
278
+ <Item Key="Tire Pressure Monitor" Value="Std." Unit=""/>
279
+ <Item Key="Trip Computer" Value="Std." Unit=""/>
280
+ <Item Key="AM/FM Radio" Value="Std." Unit=""/>
281
+ <Item Key="Cassette Player" Value="N/A" Unit=""/>
282
+ <Item Key="CD Player" Value="Std." Unit=""/>
283
+ <Item Key="CD Changer" Value="Opt." Unit=""/>
284
+ <Item Key="DVD Player" Value="Opt." Unit=""/>
285
+ <Item Key="Voice Activated Telephone" Value="N/A" Unit=""/>
286
+ <Item Key="Navigation Aid" Value="Opt." Unit=""/>
287
+ <Item Key="Second Row Sound Controls" Value="N/A" Unit=""/>
288
+ <Item Key="Subwoofer" Value="Opt." Unit=""/>
289
+ <Item Key="Telematics System" Value="Opt." Unit=""/>
290
+ <Item Key="Driver Multi-Adjustable Power Seat" Value="Std." Unit=""/>
291
+ <Item Key="Front Cooled Seat" Value="N/A" Unit=""/>
292
+ <Item Key="Front Heated Seat" Value="Opt." Unit=""/>
293
+ <Item Key="Front Power Lumbar Support" Value="N/A" Unit=""/>
294
+ <Item Key="Front Power Memory Seat" Value="Opt." Unit=""/>
295
+ <Item Key="Front Split Bench Seat" Value="N/A" Unit=""/>
296
+ <Item Key="Leather Seat" Value="Opt." Unit=""/>
297
+ <Item Key="Passenger Multi-Adjustable Power Seat" Value="Std." Unit=""/>
298
+ <Item Key="Second Row Folding Seat" Value="Std." Unit=""/>
299
+ <Item Key="Second Row Heated Seat" Value="N/A" Unit=""/>
300
+ <Item Key="Second Row Multi-Adjustable Power Seat" Value="N/A" Unit=""/>
301
+ <Item Key="Second Row Removable Seat" Value="N/A" Unit=""/>
302
+ <Item Key="Third Row Removable Seat" Value="N/A" Unit=""/>
303
+ <Item Key="Cargo Area Cover" Value="Opt." Unit=""/>
304
+ <Item Key="Cargo Area Tiedowns" Value="Std." Unit=""/>
305
+ <Item Key="Cargo Net" Value="N/A" Unit=""/>
306
+ <Item Key="Load Bearing Exterior Rack" Value="N/A" Unit=""/>
307
+ <Item Key="Pickup Truck Bed Liner" Value="Opt." Unit=""/>
308
+ <Item Key="Power Sunroof" Value="N/A" Unit=""/>
309
+ <Item Key="Removable Top" Value="N/A" Unit=""/>
310
+ <Item Key="Manual Sunroof" Value="N/A" Unit=""/>
311
+ <Item Key="Automatic Headlights" Value="Std." Unit=""/>
312
+ <Item Key="Daytime Running Lights" Value="N/A" Unit=""/>
313
+ <Item Key="Fog Lights" Value="Std." Unit=""/>
314
+ <Item Key="High Intensity Discharge Headlights" Value="N/A" Unit=""/>
315
+ <Item Key="Pickup Truck Cargo Box Light" Value="Std." Unit=""/>
316
+ <Item Key="Running Boards" Value="Opt." Unit=""/>
317
+ <Item Key="Front Air Dam" Value="Std." Unit=""/>
318
+ <Item Key="Rear Spoiler" Value="N/A" Unit=""/>
319
+ <Item Key="Skid Plate" Value="Std." Unit=""/>
320
+ <Item Key="Splash Guards" Value="Opt." Unit=""/>
321
+ <Item Key="Wind Deflector for Convertibles" Value="N/A" Unit=""/>
322
+ <Item Key="Power Sliding Side Van Door" Value="N/A" Unit=""/>
323
+ <Item Key="Power Trunk Lid" Value="N/A" Unit=""/>
324
+ <Item Key="Alloy Wheels" Value="Opt." Unit=""/>
325
+ <Item Key="Chrome Wheels" Value="Std." Unit=""/>
326
+ <Item Key="Full Size Spare Tire" Value="Std." Unit=""/>
327
+ <Item Key="Run Flat Tires" Value="N/A" Unit=""/>
328
+ <Item Key="Steel Wheels" Value="Std." Unit=""/>
329
+ <Item Key="Power Windows" Value="Std." Unit=""/>
330
+ <Item Key="Electrochromic Exterior Rearview Mirror" Value="N/A" Unit=""/>
331
+ <Item Key="Glass Rear Window on Convertible" Value="N/A" Unit=""/>
332
+ <Item Key="Heated Exterior Mirror" Value="Std." Unit=""/>
333
+ <Item Key="Electrochromic Interior Rearview Mirror" Value="Opt." Unit=""/>
334
+ <Item Key="Power Adjustable Exterior Mirror" Value="Std." Unit=""/>
335
+ <Item Key="Deep Tinted Glass" Value="Std." Unit=""/>
336
+ <Item Key="Interval Wipers" Value="Std." Unit=""/>
337
+ <Item Key="Rain Sensing Wipers" Value="N/A" Unit=""/>
338
+ <Item Key="Rear Window Defogger" Value="N/A" Unit=""/>
339
+ <Item Key="Rear Wiper" Value="N/A" Unit=""/>
340
+ <Item Key="Sliding Rear Pickup Truck Window" Value="Opt." Unit=""/>
341
+ <Item Key="Tow Hitch Receiver" Value="Std." Unit=""/>
342
+ <Item Key="Towing Preparation Package" Value="Std." Unit=""/>
343
+ </Vehicle>
344
+ <Vehicle VINquery_Vehicle_ID="38256" Model_Year="2009" Make="Ford" Model="F-350 SD" Trim_Level="Lariat SuperCab 4WD">
345
+ <Item Key="VINquery_Vehicle_ID" Value="38256" Unit=""/>
346
+ <Item Key="Model Year" Value="2009" Unit=""/>
347
+ <Item Key="Make" Value="Ford" Unit=""/>
348
+ <Item Key="Model" Value="F-350 SD" Unit=""/>
349
+ <Item Key="Trim Level" Value="Lariat SuperCab 4WD" Unit=""/>
350
+ <Item Key="Manufactured in" Value="UNITED STATES" Unit=""/>
351
+ <Item Key="Production Seq. Number" Value="B18840" Unit=""/>
352
+ <Item Key="Body Style" Value="EXTENDED CAB PICKUP 4-DR" Unit=""/>
353
+ <Item Key="Engine Type" Value="6.4L V8 OHV 32V TURBO DIESEL" Unit=""/>
354
+ <Item Key="Transmission-short" Value="5A | 6M" Unit=""/>
355
+ <Item Key="Transmission-long" Value="5-Speed Automatic | 6-Speed Manual" Unit=""/>
356
+ <Item Key="Driveline" Value="4WD" Unit=""/>
357
+ <Item Key="Tank" Value="30.50" Unit="gallon"/>
358
+ <Item Key="Fuel Economy-city" Value="No data" Unit="miles/gallon"/>
359
+ <Item Key="Fuel Economy-highway" Value="No data" Unit="miles/gallon"/>
360
+ <Item Key="Anti-Brake System" Value="4-Wheel ABS" Unit=""/>
361
+ <Item Key="Steering Type" Value="Recirc" Unit=""/>
362
+ <Item Key="Front Brake Type" Value="Disc" Unit=""/>
363
+ <Item Key="Rear Brake Type" Value="Disc" Unit=""/>
364
+ <Item Key="Turning Diameter" Value="47.50" Unit="in."/>
365
+ <Item Key="Front Suspension" Value="Ind" Unit=""/>
366
+ <Item Key="Rear Suspension" Value="Live" Unit=""/>
367
+ <Item Key="Front Spring Type" Value="Leaf" Unit=""/>
368
+ <Item Key="Rear Spring Type" Value="Leaf" Unit=""/>
369
+ <Item Key="Tires" Value="275/70R18" Unit=""/>
370
+ <Item Key="Front Headroom" Value="41.40" Unit="in."/>
371
+ <Item Key="Rear Headroom" Value="38.40" Unit="in."/>
372
+ <Item Key="Front Legroom" Value="41.00" Unit="in."/>
373
+ <Item Key="Rear Legroom" Value="31.80" Unit="in."/>
374
+ <Item Key="Front Shoulder Room" Value="68.00" Unit="in."/>
375
+ <Item Key="Rear Shoulder Room" Value="68.10" Unit="in."/>
376
+ <Item Key="Front Hip Room" Value="67.60" Unit="in."/>
377
+ <Item Key="Rear Hip Room" Value="67.30" Unit="in."/>
378
+ <Item Key="Interior Trim" Value="Camel Leather Interior | Ebony Leather Interior | Medium Stone Leather Interior" Unit=""/>
379
+ <Item Key="Exterior Color" Value="Black | Black/Brilliant Silver Metallic | Black/Pueblo Gold Metallic | Brilliant Silver Metallic | Dark Blue Pearl Metallic | Dark Blue Pearl Metallic/Brilliant Silver Metallic | Dark Blue Pearl Metallic/Pueblo Gold Metallic | Dark Stone Metallic | Dark Stone Metallic/Pueblo Gold Metallic | Forest Green Metallic | Forest Green Metallic/Brilliant Silver Metallic | Forest Green Metallic/Pueblo Gold Metallic | Oxford White | Oxford White/Brilliant Silver Metallic | Oxford White/Pueblo Gold Metallic | Pueblo Gold Metallic | Pueblo Gold Metallic/Black | Red | Royal Red Metallic | Royal Red Metallic/Black | Royal Red Metallic/Brilliant Silver Metallic | Royal Red Metallic/Pueblo Gold Metallic | Sterling Grey Metallic | Sterling Grey Metallic/Black" Unit=""/>
380
+ <Item Key="Curb Weight-automatic" Value="No data" Unit="lbs"/>
381
+ <Item Key="Curb Weight-manual" Value="6523" Unit="lbs"/>
382
+ <Item Key="Overall Length" Value="231.80" Unit="in."/>
383
+ <Item Key="Overall Width" Value="79.90" Unit="in."/>
384
+ <Item Key="Overall Height" Value="80.60" Unit="in."/>
385
+ <Item Key="Wheelbase" Value="141.80" Unit="in."/>
386
+ <Item Key="Ground Clearance" Value="No data" Unit="in."/>
387
+ <Item Key="Track Front" Value="68.40" Unit="in."/>
388
+ <Item Key="Track Rear" Value="68.10" Unit="in."/>
389
+ <Item Key="Cargo Length" Value="81.80" Unit="in."/>
390
+ <Item Key="Width at Wheelwell" Value="50.90" Unit="in."/>
391
+ <Item Key="Width at Wall" Value="63.90" Unit="in."/>
392
+ <Item Key="Depth" Value="20.10" Unit="in."/>
393
+ <Item Key="Standard Seating" Value="6" Unit=""/>
394
+ <Item Key="Optional Seating" Value="5" Unit=""/>
395
+ <Item Key="Passenger Volume" Value="No data" Unit="cu.ft."/>
396
+ <Item Key="Cargo Volume" Value="No data" Unit="cu.ft."/>
397
+ <Item Key="Standard Towing" Value="5000" Unit="lbs"/>
398
+ <Item Key="Maximum Towing" Value="16800" Unit="lbs"/>
399
+ <Item Key="Standard Payload" Value="No data" Unit="lbs"/>
400
+ <Item Key="Maximum Payload" Value="4070" Unit="lbs"/>
401
+ <Item Key="Standard GVWR" Value="10600" Unit="lbs"/>
402
+ <Item Key="Maximum GVWR" Value="11200" Unit="lbs"/>
403
+ <Item Key="Basic-duration" Value="36" Unit="month"/>
404
+ <Item Key="Basic-distance" Value="36,000" Unit="mile"/>
405
+ <Item Key="Powertrain-duration" Value="60" Unit="month"/>
406
+ <Item Key="Powertrain-distance" Value="60,000" Unit="mile"/>
407
+ <Item Key="Rust-duration" Value="60" Unit="month"/>
408
+ <Item Key="Rust-distance" Value="Unlimited" Unit="mile"/>
409
+ <Item Key="MSRP" Value="$39,145" Unit="USD"/>
410
+ <Item Key="Dealer Invoice" Value="$35,940" Unit="USD"/>
411
+ <Item Key="Destination Charge" Value="$975" Unit="USD"/>
412
+ <Item Key="Child Safety Door Locks" Value="N/A" Unit=""/>
413
+ <Item Key="Locking Pickup Truck Tailgate" Value="Std." Unit=""/>
414
+ <Item Key="Power Door Locks" Value="Std." Unit=""/>
415
+ <Item Key="Vehicle Anti-Theft" Value="Std." Unit=""/>
416
+ <Item Key="4WD/AWD" Value="Std." Unit=""/>
417
+ <Item Key="ABS Brakes" Value="Std." Unit=""/>
418
+ <Item Key="Automatic Load-Leveling" Value="N/A" Unit=""/>
419
+ <Item Key="Electronic Brake Assistance" Value="N/A" Unit=""/>
420
+ <Item Key="Limited Slip Differential" Value="Opt." Unit=""/>
421
+ <Item Key="Locking Differential" Value="N/A" Unit=""/>
422
+ <Item Key="Traction Control" Value="Opt." Unit=""/>
423
+ <Item Key="Vehicle Stability Control System" Value="N/A" Unit=""/>
424
+ <Item Key="Driver Airbag" Value="Std." Unit=""/>
425
+ <Item Key="Front Side Airbag" Value="N/A" Unit=""/>
426
+ <Item Key="Front Side Airbag with Head Protection" Value="N/A" Unit=""/>
427
+ <Item Key="Passenger Airbag" Value="Std." Unit=""/>
428
+ <Item Key="Side Head Curtain Airbag" Value="N/A" Unit=""/>
429
+ <Item Key="Second Row Side Airbag" Value="N/A" Unit=""/>
430
+ <Item Key="Second Row Side Airbag with Head Protection" Value="N/A" Unit=""/>
431
+ <Item Key="Electronic Parking Aid" Value="Std." Unit=""/>
432
+ <Item Key="First Aid Kit" Value="N/A" Unit=""/>
433
+ <Item Key="Trunk Anti-Trap Device" Value="N/A" Unit=""/>
434
+ <Item Key="Keyless Entry" Value="Std." Unit=""/>
435
+ <Item Key="Remote Ignition" Value="Opt." Unit=""/>
436
+ <Item Key="Air Conditioning" Value="Std." Unit=""/>
437
+ <Item Key="Separate Driver/Front Passenger Climate Controls" Value="Std." Unit=""/>
438
+ <Item Key="Cruise Control" Value="Std." Unit=""/>
439
+ <Item Key="Tachometer" Value="Std." Unit=""/>
440
+ <Item Key="Tilt Steering" Value="Std." Unit=""/>
441
+ <Item Key="Tilt Steering Column" Value="Std." Unit=""/>
442
+ <Item Key="Heated Steering Wheel" Value="N/A" Unit=""/>
443
+ <Item Key="Leather Steering Wheel" Value="Std." Unit=""/>
444
+ <Item Key="Steering Wheel Mounted Controls" Value="Std." Unit=""/>
445
+ <Item Key="Telescopic Steering Column" Value="N/A" Unit=""/>
446
+ <Item Key="Adjustable Foot Pedals" Value="Opt." Unit=""/>
447
+ <Item Key="Genuine Wood Trim" Value="N/A" Unit=""/>
448
+ <Item Key="Tire Pressure Monitor" Value="Std." Unit=""/>
449
+ <Item Key="Trip Computer" Value="Std." Unit=""/>
450
+ <Item Key="AM/FM Radio" Value="Std." Unit=""/>
451
+ <Item Key="Cassette Player" Value="N/A" Unit=""/>
452
+ <Item Key="CD Player" Value="Std." Unit=""/>
453
+ <Item Key="CD Changer" Value="Opt." Unit=""/>
454
+ <Item Key="DVD Player" Value="Opt." Unit=""/>
455
+ <Item Key="Voice Activated Telephone" Value="N/A" Unit=""/>
456
+ <Item Key="Navigation Aid" Value="Opt." Unit=""/>
457
+ <Item Key="Second Row Sound Controls" Value="N/A" Unit=""/>
458
+ <Item Key="Subwoofer" Value="Opt." Unit=""/>
459
+ <Item Key="Telematics System" Value="Std." Unit=""/>
460
+ <Item Key="Driver Multi-Adjustable Power Seat" Value="Std." Unit=""/>
461
+ <Item Key="Front Cooled Seat" Value="N/A" Unit=""/>
462
+ <Item Key="Front Heated Seat" Value="Std." Unit=""/>
463
+ <Item Key="Front Power Lumbar Support" Value="N/A" Unit=""/>
464
+ <Item Key="Front Power Memory Seat" Value="Opt." Unit=""/>
465
+ <Item Key="Front Split Bench Seat" Value="Opt." Unit=""/>
466
+ <Item Key="Leather Seat" Value="Std." Unit=""/>
467
+ <Item Key="Passenger Multi-Adjustable Power Seat" Value="Std." Unit=""/>
468
+ <Item Key="Second Row Folding Seat" Value="Std." Unit=""/>
469
+ <Item Key="Second Row Heated Seat" Value="N/A" Unit=""/>
470
+ <Item Key="Second Row Multi-Adjustable Power Seat" Value="N/A" Unit=""/>
471
+ <Item Key="Second Row Removable Seat" Value="N/A" Unit=""/>
472
+ <Item Key="Third Row Removable Seat" Value="N/A" Unit=""/>
473
+ <Item Key="Cargo Area Cover" Value="Opt." Unit=""/>
474
+ <Item Key="Cargo Area Tiedowns" Value="Std." Unit=""/>
475
+ <Item Key="Cargo Net" Value="N/A" Unit=""/>
476
+ <Item Key="Load Bearing Exterior Rack" Value="N/A" Unit=""/>
477
+ <Item Key="Pickup Truck Bed Liner" Value="Opt." Unit=""/>
478
+ <Item Key="Power Sunroof" Value="N/A" Unit=""/>
479
+ <Item Key="Removable Top" Value="N/A" Unit=""/>
480
+ <Item Key="Manual Sunroof" Value="N/A" Unit=""/>
481
+ <Item Key="Automatic Headlights" Value="Std." Unit=""/>
482
+ <Item Key="Daytime Running Lights" Value="N/A" Unit=""/>
483
+ <Item Key="Fog Lights" Value="Std." Unit=""/>
484
+ <Item Key="High Intensity Discharge Headlights" Value="N/A" Unit=""/>
485
+ <Item Key="Pickup Truck Cargo Box Light" Value="Std." Unit=""/>
486
+ <Item Key="Running Boards" Value="Opt." Unit=""/>
487
+ <Item Key="Front Air Dam" Value="Std." Unit=""/>
488
+ <Item Key="Rear Spoiler" Value="N/A" Unit=""/>
489
+ <Item Key="Skid Plate" Value="Opt." Unit=""/>
490
+ <Item Key="Splash Guards" Value="Opt." Unit=""/>
491
+ <Item Key="Wind Deflector for Convertibles" Value="N/A" Unit=""/>
492
+ <Item Key="Power Sliding Side Van Door" Value="N/A" Unit=""/>
493
+ <Item Key="Power Trunk Lid" Value="N/A" Unit=""/>
494
+ <Item Key="Alloy Wheels" Value="Std." Unit=""/>
495
+ <Item Key="Chrome Wheels" Value="N/A" Unit=""/>
496
+ <Item Key="Full Size Spare Tire" Value="Std." Unit=""/>
497
+ <Item Key="Run Flat Tires" Value="N/A" Unit=""/>
498
+ <Item Key="Steel Wheels" Value="N/A" Unit=""/>
499
+ <Item Key="Power Windows" Value="Std." Unit=""/>
500
+ <Item Key="Electrochromic Exterior Rearview Mirror" Value="N/A" Unit=""/>
501
+ <Item Key="Glass Rear Window on Convertible" Value="N/A" Unit=""/>
502
+ <Item Key="Heated Exterior Mirror" Value="Std." Unit=""/>
503
+ <Item Key="Electrochromic Interior Rearview Mirror" Value="Std." Unit=""/>
504
+ <Item Key="Power Adjustable Exterior Mirror" Value="Std." Unit=""/>
505
+ <Item Key="Deep Tinted Glass" Value="Std." Unit=""/>
506
+ <Item Key="Interval Wipers" Value="Std." Unit=""/>
507
+ <Item Key="Rain Sensing Wipers" Value="N/A" Unit=""/>
508
+ <Item Key="Rear Window Defogger" Value="N/A" Unit=""/>
509
+ <Item Key="Rear Wiper" Value="N/A" Unit=""/>
510
+ <Item Key="Sliding Rear Pickup Truck Window" Value="Std." Unit=""/>
511
+ <Item Key="Tow Hitch Receiver" Value="Std." Unit=""/>
512
+ <Item Key="Towing Preparation Package" Value="Std." Unit=""/>
513
+ </Vehicle>
514
+ <Vehicle VINquery_Vehicle_ID="38258" Model_Year="2009" Make="Ford" Model="F-350 SD" Trim_Level="Lariat SuperCab Long Bed 4WD">
515
+ <Item Key="VINquery_Vehicle_ID" Value="38258" Unit=""/>
516
+ <Item Key="Model Year" Value="2009" Unit=""/>
517
+ <Item Key="Make" Value="Ford" Unit=""/>
518
+ <Item Key="Model" Value="F-350 SD" Unit=""/>
519
+ <Item Key="Trim Level" Value="Lariat SuperCab Long Bed 4WD" Unit=""/>
520
+ <Item Key="Manufactured in" Value="UNITED STATES" Unit=""/>
521
+ <Item Key="Production Seq. Number" Value="B18840" Unit=""/>
522
+ <Item Key="Body Style" Value="EXTENDED CAB PICKUP 4-DR" Unit=""/>
523
+ <Item Key="Engine Type" Value="6.4L V8 OHV 32V TURBO DIESEL" Unit=""/>
524
+ <Item Key="Transmission-short" Value="5A | 6M" Unit=""/>
525
+ <Item Key="Transmission-long" Value="5-Speed Automatic | 6-Speed Manual" Unit=""/>
526
+ <Item Key="Driveline" Value="4WD" Unit=""/>
527
+ <Item Key="Tank" Value="38.00" Unit="gallon"/>
528
+ <Item Key="Fuel Economy-city" Value="No data" Unit="miles/gallon"/>
529
+ <Item Key="Fuel Economy-highway" Value="No data" Unit="miles/gallon"/>
530
+ <Item Key="Anti-Brake System" Value="4-Wheel ABS" Unit=""/>
531
+ <Item Key="Steering Type" Value="Recirc" Unit=""/>
532
+ <Item Key="Front Brake Type" Value="Disc" Unit=""/>
533
+ <Item Key="Rear Brake Type" Value="Disc" Unit=""/>
534
+ <Item Key="Turning Diameter" Value="52.40" Unit="in."/>
535
+ <Item Key="Front Suspension" Value="Ind" Unit=""/>
536
+ <Item Key="Rear Suspension" Value="Live" Unit=""/>
537
+ <Item Key="Front Spring Type" Value="Leaf" Unit=""/>
538
+ <Item Key="Rear Spring Type" Value="Leaf" Unit=""/>
539
+ <Item Key="Tires" Value="275/65R18" Unit=""/>
540
+ <Item Key="Front Headroom" Value="41.40" Unit="in."/>
541
+ <Item Key="Rear Headroom" Value="38.40" Unit="in."/>
542
+ <Item Key="Front Legroom" Value="41.00" Unit="in."/>
543
+ <Item Key="Rear Legroom" Value="31.80" Unit="in."/>
544
+ <Item Key="Front Shoulder Room" Value="68.00" Unit="in."/>
545
+ <Item Key="Rear Shoulder Room" Value="68.10" Unit="in."/>
546
+ <Item Key="Front Hip Room" Value="67.60" Unit="in."/>
547
+ <Item Key="Rear Hip Room" Value="67.30" Unit="in."/>
548
+ <Item Key="Interior Trim" Value="Camel Leather Interior | Ebony Leather Interior | Medium Stone Leather Interior" Unit=""/>
549
+ <Item Key="Exterior Color" Value="Black | Black/Brilliant Silver Metallic | Black/Pueblo Gold Metallic | Brilliant Silver Metallic | Dark Blue Pearl Metallic | Dark Blue Pearl Metallic/Brilliant Silver Metallic | Dark Blue Pearl Metallic/Pueblo Gold Metallic | Dark Stone Metallic | Dark Stone Metallic/Pueblo Gold Metallic | Forest Green Metallic | Forest Green Metallic/Brilliant Silver Metallic | Forest Green Metallic/Pueblo Gold Metallic | Oxford White | Oxford White/Brilliant Silver Metallic | Oxford White/Pueblo Gold Metallic | Pueblo Gold Metallic | Pueblo Gold Metallic/Black | Red | Royal Red Metallic | Royal Red Metallic/Black | Royal Red Metallic/Brilliant Silver Metallic | Royal Red Metallic/Pueblo Gold Metallic | Sterling Grey Metallic | Sterling Grey Metallic/Black" Unit=""/>
550
+ <Item Key="Curb Weight-automatic" Value="No data" Unit="lbs"/>
551
+ <Item Key="Curb Weight-manual" Value="6648" Unit="lbs"/>
552
+ <Item Key="Overall Length" Value="248.00" Unit="in."/>
553
+ <Item Key="Overall Width" Value="79.90" Unit="in."/>
554
+ <Item Key="Overall Height" Value="80.40" Unit="in."/>
555
+ <Item Key="Wheelbase" Value="158.00" Unit="in."/>
556
+ <Item Key="Ground Clearance" Value="No data" Unit="in."/>
557
+ <Item Key="Track Front" Value="68.40" Unit="in."/>
558
+ <Item Key="Track Rear" Value="68.10" Unit="in."/>
559
+ <Item Key="Cargo Length" Value="98.00" Unit="in."/>
560
+ <Item Key="Width at Wheelwell" Value="50.90" Unit="in."/>
561
+ <Item Key="Width at Wall" Value="63.90" Unit="in."/>
562
+ <Item Key="Depth" Value="20.10" Unit="in."/>
563
+ <Item Key="Standard Seating" Value="6" Unit=""/>
564
+ <Item Key="Optional Seating" Value="5" Unit=""/>
565
+ <Item Key="Passenger Volume" Value="No data" Unit="cu.ft."/>
566
+ <Item Key="Cargo Volume" Value="No data" Unit="cu.ft."/>
567
+ <Item Key="Standard Towing" Value="5000" Unit="lbs"/>
568
+ <Item Key="Maximum Towing" Value="16800" Unit="lbs"/>
569
+ <Item Key="Standard Payload" Value="No data" Unit="lbs"/>
570
+ <Item Key="Maximum Payload" Value="4140" Unit="lbs"/>
571
+ <Item Key="Standard GVWR" Value="10800" Unit="lbs"/>
572
+ <Item Key="Maximum GVWR" Value="11400" Unit="lbs"/>
573
+ <Item Key="Basic-duration" Value="36" Unit="month"/>
574
+ <Item Key="Basic-distance" Value="36,000" Unit="mile"/>
575
+ <Item Key="Powertrain-duration" Value="60" Unit="month"/>
576
+ <Item Key="Powertrain-distance" Value="60,000" Unit="mile"/>
577
+ <Item Key="Rust-duration" Value="60" Unit="month"/>
578
+ <Item Key="Rust-distance" Value="Unlimited" Unit="mile"/>
579
+ <Item Key="MSRP" Value="$39,335" Unit="USD"/>
580
+ <Item Key="Dealer Invoice" Value="$36,111" Unit="USD"/>
581
+ <Item Key="Destination Charge" Value="$975" Unit="USD"/>
582
+ <Item Key="Child Safety Door Locks" Value="N/A" Unit=""/>
583
+ <Item Key="Locking Pickup Truck Tailgate" Value="Std." Unit=""/>
584
+ <Item Key="Power Door Locks" Value="Std." Unit=""/>
585
+ <Item Key="Vehicle Anti-Theft" Value="Std." Unit=""/>
586
+ <Item Key="4WD/AWD" Value="Std." Unit=""/>
587
+ <Item Key="ABS Brakes" Value="Std." Unit=""/>
588
+ <Item Key="Automatic Load-Leveling" Value="N/A" Unit=""/>
589
+ <Item Key="Electronic Brake Assistance" Value="N/A" Unit=""/>
590
+ <Item Key="Limited Slip Differential" Value="Opt." Unit=""/>
591
+ <Item Key="Locking Differential" Value="N/A" Unit=""/>
592
+ <Item Key="Traction Control" Value="Opt." Unit=""/>
593
+ <Item Key="Vehicle Stability Control System" Value="N/A" Unit=""/>
594
+ <Item Key="Driver Airbag" Value="Std." Unit=""/>
595
+ <Item Key="Front Side Airbag" Value="N/A" Unit=""/>
596
+ <Item Key="Front Side Airbag with Head Protection" Value="N/A" Unit=""/>
597
+ <Item Key="Passenger Airbag" Value="Std." Unit=""/>
598
+ <Item Key="Side Head Curtain Airbag" Value="N/A" Unit=""/>
599
+ <Item Key="Second Row Side Airbag" Value="N/A" Unit=""/>
600
+ <Item Key="Second Row Side Airbag with Head Protection" Value="N/A" Unit=""/>
601
+ <Item Key="Electronic Parking Aid" Value="Std." Unit=""/>
602
+ <Item Key="First Aid Kit" Value="N/A" Unit=""/>
603
+ <Item Key="Trunk Anti-Trap Device" Value="N/A" Unit=""/>
604
+ <Item Key="Keyless Entry" Value="Std." Unit=""/>
605
+ <Item Key="Remote Ignition" Value="Opt." Unit=""/>
606
+ <Item Key="Air Conditioning" Value="Std." Unit=""/>
607
+ <Item Key="Separate Driver/Front Passenger Climate Controls" Value="Std." Unit=""/>
608
+ <Item Key="Cruise Control" Value="Std." Unit=""/>
609
+ <Item Key="Tachometer" Value="Std." Unit=""/>
610
+ <Item Key="Tilt Steering" Value="Std." Unit=""/>
611
+ <Item Key="Tilt Steering Column" Value="Std." Unit=""/>
612
+ <Item Key="Heated Steering Wheel" Value="N/A" Unit=""/>
613
+ <Item Key="Leather Steering Wheel" Value="Std." Unit=""/>
614
+ <Item Key="Steering Wheel Mounted Controls" Value="Std." Unit=""/>
615
+ <Item Key="Telescopic Steering Column" Value="N/A" Unit=""/>
616
+ <Item Key="Adjustable Foot Pedals" Value="Opt." Unit=""/>
617
+ <Item Key="Genuine Wood Trim" Value="N/A" Unit=""/>
618
+ <Item Key="Tire Pressure Monitor" Value="Std." Unit=""/>
619
+ <Item Key="Trip Computer" Value="Std." Unit=""/>
620
+ <Item Key="AM/FM Radio" Value="Std." Unit=""/>
621
+ <Item Key="Cassette Player" Value="N/A" Unit=""/>
622
+ <Item Key="CD Player" Value="Std." Unit=""/>
623
+ <Item Key="CD Changer" Value="Opt." Unit=""/>
624
+ <Item Key="DVD Player" Value="Opt." Unit=""/>
625
+ <Item Key="Voice Activated Telephone" Value="N/A" Unit=""/>
626
+ <Item Key="Navigation Aid" Value="Opt." Unit=""/>
627
+ <Item Key="Second Row Sound Controls" Value="N/A" Unit=""/>
628
+ <Item Key="Subwoofer" Value="Opt." Unit=""/>
629
+ <Item Key="Telematics System" Value="Std." Unit=""/>
630
+ <Item Key="Driver Multi-Adjustable Power Seat" Value="Std." Unit=""/>
631
+ <Item Key="Front Cooled Seat" Value="N/A" Unit=""/>
632
+ <Item Key="Front Heated Seat" Value="Std." Unit=""/>
633
+ <Item Key="Front Power Lumbar Support" Value="N/A" Unit=""/>
634
+ <Item Key="Front Power Memory Seat" Value="Opt." Unit=""/>
635
+ <Item Key="Front Split Bench Seat" Value="Opt." Unit=""/>
636
+ <Item Key="Leather Seat" Value="Std." Unit=""/>
637
+ <Item Key="Passenger Multi-Adjustable Power Seat" Value="Std." Unit=""/>
638
+ <Item Key="Second Row Folding Seat" Value="Std." Unit=""/>
639
+ <Item Key="Second Row Heated Seat" Value="N/A" Unit=""/>
640
+ <Item Key="Second Row Multi-Adjustable Power Seat" Value="N/A" Unit=""/>
641
+ <Item Key="Second Row Removable Seat" Value="N/A" Unit=""/>
642
+ <Item Key="Third Row Removable Seat" Value="N/A" Unit=""/>
643
+ <Item Key="Cargo Area Cover" Value="Opt." Unit=""/>
644
+ <Item Key="Cargo Area Tiedowns" Value="Std." Unit=""/>
645
+ <Item Key="Cargo Net" Value="N/A" Unit=""/>
646
+ <Item Key="Load Bearing Exterior Rack" Value="N/A" Unit=""/>
647
+ <Item Key="Pickup Truck Bed Liner" Value="Opt." Unit=""/>
648
+ <Item Key="Power Sunroof" Value="N/A" Unit=""/>
649
+ <Item Key="Removable Top" Value="N/A" Unit=""/>
650
+ <Item Key="Manual Sunroof" Value="N/A" Unit=""/>
651
+ <Item Key="Automatic Headlights" Value="Std." Unit=""/>
652
+ <Item Key="Daytime Running Lights" Value="N/A" Unit=""/>
653
+ <Item Key="Fog Lights" Value="Std." Unit=""/>
654
+ <Item Key="High Intensity Discharge Headlights" Value="N/A" Unit=""/>
655
+ <Item Key="Pickup Truck Cargo Box Light" Value="Std." Unit=""/>
656
+ <Item Key="Running Boards" Value="Opt." Unit=""/>
657
+ <Item Key="Front Air Dam" Value="Std." Unit=""/>
658
+ <Item Key="Rear Spoiler" Value="N/A" Unit=""/>
659
+ <Item Key="Skid Plate" Value="Opt." Unit=""/>
660
+ <Item Key="Splash Guards" Value="Opt." Unit=""/>
661
+ <Item Key="Wind Deflector for Convertibles" Value="N/A" Unit=""/>
662
+ <Item Key="Power Sliding Side Van Door" Value="N/A" Unit=""/>
663
+ <Item Key="Power Trunk Lid" Value="N/A" Unit=""/>
664
+ <Item Key="Alloy Wheels" Value="Std." Unit=""/>
665
+ <Item Key="Chrome Wheels" Value="N/A" Unit=""/>
666
+ <Item Key="Full Size Spare Tire" Value="Std." Unit=""/>
667
+ <Item Key="Run Flat Tires" Value="N/A" Unit=""/>
668
+ <Item Key="Steel Wheels" Value="N/A" Unit=""/>
669
+ <Item Key="Power Windows" Value="Std." Unit=""/>
670
+ <Item Key="Electrochromic Exterior Rearview Mirror" Value="N/A" Unit=""/>
671
+ <Item Key="Glass Rear Window on Convertible" Value="N/A" Unit=""/>
672
+ <Item Key="Heated Exterior Mirror" Value="Std." Unit=""/>
673
+ <Item Key="Electrochromic Interior Rearview Mirror" Value="Std." Unit=""/>
674
+ <Item Key="Power Adjustable Exterior Mirror" Value="Std." Unit=""/>
675
+ <Item Key="Deep Tinted Glass" Value="Std." Unit=""/>
676
+ <Item Key="Interval Wipers" Value="Std." Unit=""/>
677
+ <Item Key="Rain Sensing Wipers" Value="N/A" Unit=""/>
678
+ <Item Key="Rear Window Defogger" Value="N/A" Unit=""/>
679
+ <Item Key="Rear Wiper" Value="N/A" Unit=""/>
680
+ <Item Key="Sliding Rear Pickup Truck Window" Value="Std." Unit=""/>
681
+ <Item Key="Tow Hitch Receiver" Value="Std." Unit=""/>
682
+ <Item Key="Towing Preparation Package" Value="Std." Unit=""/>
683
+ </Vehicle>
684
+ <Vehicle VINquery_Vehicle_ID="38272" Model_Year="2009" Make="Ford" Model="F-350 SD" Trim_Level="XL SuperCab 4WD">
685
+ <Item Key="VINquery_Vehicle_ID" Value="38272" Unit=""/>
686
+ <Item Key="Model Year" Value="2009" Unit=""/>
687
+ <Item Key="Make" Value="Ford" Unit=""/>
688
+ <Item Key="Model" Value="F-350 SD" Unit=""/>
689
+ <Item Key="Trim Level" Value="XL SuperCab 4WD" Unit=""/>
690
+ <Item Key="Manufactured in" Value="UNITED STATES" Unit=""/>
691
+ <Item Key="Production Seq. Number" Value="B18840" Unit=""/>
692
+ <Item Key="Body Style" Value="EXTENDED CAB PICKUP 4-DR" Unit=""/>
693
+ <Item Key="Engine Type" Value="6.4L V8 OHV 32V TURBO DIESEL" Unit=""/>
694
+ <Item Key="Transmission-short" Value="5A | 6M" Unit=""/>
695
+ <Item Key="Transmission-long" Value="5-Speed Automatic | 6-Speed Manual" Unit=""/>
696
+ <Item Key="Driveline" Value="4WD" Unit=""/>
697
+ <Item Key="Tank" Value="30.50" Unit="gallon"/>
698
+ <Item Key="Fuel Economy-city" Value="No data" Unit="miles/gallon"/>
699
+ <Item Key="Fuel Economy-highway" Value="No data" Unit="miles/gallon"/>
700
+ <Item Key="Anti-Brake System" Value="4-Wheel ABS" Unit=""/>
701
+ <Item Key="Steering Type" Value="Recirc" Unit=""/>
702
+ <Item Key="Front Brake Type" Value="Disc" Unit=""/>
703
+ <Item Key="Rear Brake Type" Value="Disc" Unit=""/>
704
+ <Item Key="Turning Diameter" Value="47.50" Unit="in."/>
705
+ <Item Key="Front Suspension" Value="Ind" Unit=""/>
706
+ <Item Key="Rear Suspension" Value="Live" Unit=""/>
707
+ <Item Key="Front Spring Type" Value="Leaf" Unit=""/>
708
+ <Item Key="Rear Spring Type" Value="Leaf" Unit=""/>
709
+ <Item Key="Tires" Value="245/75R17" Unit=""/>
710
+ <Item Key="Front Headroom" Value="41.40" Unit="in."/>
711
+ <Item Key="Rear Headroom" Value="38.40" Unit="in."/>
712
+ <Item Key="Front Legroom" Value="41.00" Unit="in."/>
713
+ <Item Key="Rear Legroom" Value="31.80" Unit="in."/>
714
+ <Item Key="Front Shoulder Room" Value="68.00" Unit="in."/>
715
+ <Item Key="Rear Shoulder Room" Value="68.10" Unit="in."/>
716
+ <Item Key="Front Hip Room" Value="67.60" Unit="in."/>
717
+ <Item Key="Rear Hip Room" Value="67.30" Unit="in."/>
718
+ <Item Key="Interior Trim" Value="Camel Cloth Interior | Camel Vinyl Interior | Medium Stone Cloth Interior | Medium Stone Vinyl Interior" Unit=""/>
719
+ <Item Key="Exterior Color" Value="Black | Brilliant Silver Metallic | Dark Blue Pearl Metallic | Dark Stone Metallic | Forest Green Metallic | Oxford White | Pueblo Gold Metallic | Red | Royal Red Metallic | Sterling Grey Metallic" Unit=""/>
720
+ <Item Key="Curb Weight-automatic" Value="No data" Unit="lbs"/>
721
+ <Item Key="Curb Weight-manual" Value="6523" Unit="lbs"/>
722
+ <Item Key="Overall Length" Value="231.80" Unit="in."/>
723
+ <Item Key="Overall Width" Value="79.90" Unit="in."/>
724
+ <Item Key="Overall Height" Value="80.60" Unit="in."/>
725
+ <Item Key="Wheelbase" Value="141.80" Unit="in."/>
726
+ <Item Key="Ground Clearance" Value="No data" Unit="in."/>
727
+ <Item Key="Track Front" Value="68.40" Unit="in."/>
728
+ <Item Key="Track Rear" Value="68.10" Unit="in."/>
729
+ <Item Key="Cargo Length" Value="81.80" Unit="in."/>
730
+ <Item Key="Width at Wheelwell" Value="50.90" Unit="in."/>
731
+ <Item Key="Width at Wall" Value="63.90" Unit="in."/>
732
+ <Item Key="Depth" Value="20.10" Unit="in."/>
733
+ <Item Key="Standard Seating" Value="6" Unit=""/>
734
+ <Item Key="Optional Seating" Value="5" Unit=""/>
735
+ <Item Key="Passenger Volume" Value="No data" Unit="cu.ft."/>
736
+ <Item Key="Cargo Volume" Value="No data" Unit="cu.ft."/>
737
+ <Item Key="Standard Towing" Value="5000" Unit="lbs"/>
738
+ <Item Key="Maximum Towing" Value="16800" Unit="lbs"/>
739
+ <Item Key="Standard Payload" Value="No data" Unit="lbs"/>
740
+ <Item Key="Maximum Payload" Value="4070" Unit="lbs"/>
741
+ <Item Key="Standard GVWR" Value="10200" Unit="lbs"/>
742
+ <Item Key="Maximum GVWR" Value="11200" Unit="lbs"/>
743
+ <Item Key="Basic-duration" Value="36" Unit="month"/>
744
+ <Item Key="Basic-distance" Value="36,000" Unit="mile"/>
745
+ <Item Key="Powertrain-duration" Value="60" Unit="month"/>
746
+ <Item Key="Powertrain-distance" Value="60,000" Unit="mile"/>
747
+ <Item Key="Rust-duration" Value="60" Unit="month"/>
748
+ <Item Key="Rust-distance" Value="Unlimited" Unit="mile"/>
749
+ <Item Key="MSRP" Value="$31,430" Unit="USD"/>
750
+ <Item Key="Dealer Invoice" Value="$28,997" Unit="USD"/>
751
+ <Item Key="Destination Charge" Value="$975" Unit="USD"/>
752
+ <Item Key="Child Safety Door Locks" Value="N/A" Unit=""/>
753
+ <Item Key="Locking Pickup Truck Tailgate" Value="Std." Unit=""/>
754
+ <Item Key="Power Door Locks" Value="Opt." Unit=""/>
755
+ <Item Key="Vehicle Anti-Theft" Value="Std." Unit=""/>
756
+ <Item Key="4WD/AWD" Value="Std." Unit=""/>
757
+ <Item Key="ABS Brakes" Value="Std." Unit=""/>
758
+ <Item Key="Automatic Load-Leveling" Value="N/A" Unit=""/>
759
+ <Item Key="Electronic Brake Assistance" Value="N/A" Unit=""/>
760
+ <Item Key="Limited Slip Differential" Value="Opt." Unit=""/>
761
+ <Item Key="Locking Differential" Value="N/A" Unit=""/>
762
+ <Item Key="Traction Control" Value="Opt." Unit=""/>
763
+ <Item Key="Vehicle Stability Control System" Value="N/A" Unit=""/>
764
+ <Item Key="Driver Airbag" Value="Std." Unit=""/>
765
+ <Item Key="Front Side Airbag" Value="N/A" Unit=""/>
766
+ <Item Key="Front Side Airbag with Head Protection" Value="N/A" Unit=""/>
767
+ <Item Key="Passenger Airbag" Value="Std." Unit=""/>
768
+ <Item Key="Side Head Curtain Airbag" Value="N/A" Unit=""/>
769
+ <Item Key="Second Row Side Airbag" Value="N/A" Unit=""/>
770
+ <Item Key="Second Row Side Airbag with Head Protection" Value="N/A" Unit=""/>
771
+ <Item Key="Electronic Parking Aid" Value="N/A" Unit=""/>
772
+ <Item Key="First Aid Kit" Value="N/A" Unit=""/>
773
+ <Item Key="Trunk Anti-Trap Device" Value="N/A" Unit=""/>
774
+ <Item Key="Keyless Entry" Value="Opt." Unit=""/>
775
+ <Item Key="Remote Ignition" Value="Opt." Unit=""/>
776
+ <Item Key="Air Conditioning" Value="Std." Unit=""/>
777
+ <Item Key="Separate Driver/Front Passenger Climate Controls" Value="N/A" Unit=""/>
778
+ <Item Key="Cruise Control" Value="Opt." Unit=""/>
779
+ <Item Key="Tachometer" Value="Std." Unit=""/>
780
+ <Item Key="Tilt Steering" Value="Opt." Unit=""/>
781
+ <Item Key="Tilt Steering Column" Value="Opt." Unit=""/>
782
+ <Item Key="Heated Steering Wheel" Value="N/A" Unit=""/>
783
+ <Item Key="Leather Steering Wheel" Value="N/A" Unit=""/>
784
+ <Item Key="Steering Wheel Mounted Controls" Value="Opt." Unit=""/>
785
+ <Item Key="Telescopic Steering Column" Value="N/A" Unit=""/>
786
+ <Item Key="Adjustable Foot Pedals" Value="N/A" Unit=""/>
787
+ <Item Key="Genuine Wood Trim" Value="N/A" Unit=""/>
788
+ <Item Key="Tire Pressure Monitor" Value="Std." Unit=""/>
789
+ <Item Key="Trip Computer" Value="Std." Unit=""/>
790
+ <Item Key="AM/FM Radio" Value="Std." Unit=""/>
791
+ <Item Key="Cassette Player" Value="N/A" Unit=""/>
792
+ <Item Key="CD Player" Value="Opt." Unit=""/>
793
+ <Item Key="CD Changer" Value="N/A" Unit=""/>
794
+ <Item Key="DVD Player" Value="N/A" Unit=""/>
795
+ <Item Key="Voice Activated Telephone" Value="N/A" Unit=""/>
796
+ <Item Key="Navigation Aid" Value="Opt." Unit=""/>
797
+ <Item Key="Second Row Sound Controls" Value="N/A" Unit=""/>
798
+ <Item Key="Subwoofer" Value="N/A" Unit=""/>
799
+ <Item Key="Telematics System" Value="Opt." Unit=""/>
800
+ <Item Key="Driver Multi-Adjustable Power Seat" Value="N/A" Unit=""/>
801
+ <Item Key="Front Cooled Seat" Value="N/A" Unit=""/>
802
+ <Item Key="Front Heated Seat" Value="N/A" Unit=""/>
803
+ <Item Key="Front Power Lumbar Support" Value="N/A" Unit=""/>
804
+ <Item Key="Front Power Memory Seat" Value="N/A" Unit=""/>
805
+ <Item Key="Front Split Bench Seat" Value="Opt." Unit=""/>
806
+ <Item Key="Leather Seat" Value="N/A" Unit=""/>
807
+ <Item Key="Passenger Multi-Adjustable Power Seat" Value="N/A" Unit=""/>
808
+ <Item Key="Second Row Folding Seat" Value="Std." Unit=""/>
809
+ <Item Key="Second Row Heated Seat" Value="N/A" Unit=""/>
810
+ <Item Key="Second Row Multi-Adjustable Power Seat" Value="N/A" Unit=""/>
811
+ <Item Key="Second Row Removable Seat" Value="N/A" Unit=""/>
812
+ <Item Key="Third Row Removable Seat" Value="N/A" Unit=""/>
813
+ <Item Key="Cargo Area Cover" Value="Opt." Unit=""/>
814
+ <Item Key="Cargo Area Tiedowns" Value="Std." Unit=""/>
815
+ <Item Key="Cargo Net" Value="N/A" Unit=""/>
816
+ <Item Key="Load Bearing Exterior Rack" Value="N/A" Unit=""/>
817
+ <Item Key="Pickup Truck Bed Liner" Value="Opt." Unit=""/>
818
+ <Item Key="Power Sunroof" Value="N/A" Unit=""/>
819
+ <Item Key="Removable Top" Value="N/A" Unit=""/>
820
+ <Item Key="Manual Sunroof" Value="N/A" Unit=""/>
821
+ <Item Key="Automatic Headlights" Value="N/A" Unit=""/>
822
+ <Item Key="Daytime Running Lights" Value="N/A" Unit=""/>
823
+ <Item Key="Fog Lights" Value="N/A" Unit=""/>
824
+ <Item Key="High Intensity Discharge Headlights" Value="N/A" Unit=""/>
825
+ <Item Key="Pickup Truck Cargo Box Light" Value="Std." Unit=""/>
826
+ <Item Key="Running Boards" Value="Opt." Unit=""/>
827
+ <Item Key="Front Air Dam" Value="Std." Unit=""/>
828
+ <Item Key="Rear Spoiler" Value="N/A" Unit=""/>
829
+ <Item Key="Skid Plate" Value="Opt." Unit=""/>
830
+ <Item Key="Splash Guards" Value="Opt." Unit=""/>
831
+ <Item Key="Wind Deflector for Convertibles" Value="N/A" Unit=""/>
832
+ <Item Key="Power Sliding Side Van Door" Value="N/A" Unit=""/>
833
+ <Item Key="Power Trunk Lid" Value="N/A" Unit=""/>
834
+ <Item Key="Alloy Wheels" Value="N/A" Unit=""/>
835
+ <Item Key="Chrome Wheels" Value="N/A" Unit=""/>
836
+ <Item Key="Full Size Spare Tire" Value="Std." Unit=""/>
837
+ <Item Key="Run Flat Tires" Value="N/A" Unit=""/>
838
+ <Item Key="Steel Wheels" Value="Std." Unit=""/>
839
+ <Item Key="Power Windows" Value="Opt." Unit=""/>
840
+ <Item Key="Electrochromic Exterior Rearview Mirror" Value="N/A" Unit=""/>
841
+ <Item Key="Glass Rear Window on Convertible" Value="N/A" Unit=""/>
842
+ <Item Key="Heated Exterior Mirror" Value="Opt." Unit=""/>
843
+ <Item Key="Electrochromic Interior Rearview Mirror" Value="N/A" Unit=""/>
844
+ <Item Key="Power Adjustable Exterior Mirror" Value="Opt." Unit=""/>
845
+ <Item Key="Deep Tinted Glass" Value="N/A" Unit=""/>
846
+ <Item Key="Interval Wipers" Value="Std." Unit=""/>
847
+ <Item Key="Rain Sensing Wipers" Value="N/A" Unit=""/>
848
+ <Item Key="Rear Window Defogger" Value="N/A" Unit=""/>
849
+ <Item Key="Rear Wiper" Value="N/A" Unit=""/>
850
+ <Item Key="Sliding Rear Pickup Truck Window" Value="N/A" Unit=""/>
851
+ <Item Key="Tow Hitch Receiver" Value="Std." Unit=""/>
852
+ <Item Key="Towing Preparation Package" Value="Std." Unit=""/>
853
+ </Vehicle>
854
+ <Vehicle VINquery_Vehicle_ID="38274" Model_Year="2009" Make="Ford" Model="F-350 SD" Trim_Level="XL SuperCab Long Bed 4WD">
855
+ <Item Key="VINquery_Vehicle_ID" Value="38274" Unit=""/>
856
+ <Item Key="Model Year" Value="2009" Unit=""/>
857
+ <Item Key="Make" Value="Ford" Unit=""/>
858
+ <Item Key="Model" Value="F-350 SD" Unit=""/>
859
+ <Item Key="Trim Level" Value="XL SuperCab Long Bed 4WD" Unit=""/>
860
+ <Item Key="Manufactured in" Value="UNITED STATES" Unit=""/>
861
+ <Item Key="Production Seq. Number" Value="B18840" Unit=""/>
862
+ <Item Key="Body Style" Value="EXTENDED CAB PICKUP 4-DR" Unit=""/>
863
+ <Item Key="Engine Type" Value="6.4L V8 OHV 32V TURBO DIESEL" Unit=""/>
864
+ <Item Key="Transmission-short" Value="5A | 6M" Unit=""/>
865
+ <Item Key="Transmission-long" Value="5-Speed Automatic | 6-Speed Manual" Unit=""/>
866
+ <Item Key="Driveline" Value="4WD" Unit=""/>
867
+ <Item Key="Tank" Value="38.00" Unit="gallon"/>
868
+ <Item Key="Fuel Economy-city" Value="No data" Unit="miles/gallon"/>
869
+ <Item Key="Fuel Economy-highway" Value="No data" Unit="miles/gallon"/>
870
+ <Item Key="Anti-Brake System" Value="4-Wheel ABS" Unit=""/>
871
+ <Item Key="Steering Type" Value="Recirc" Unit=""/>
872
+ <Item Key="Front Brake Type" Value="Disc" Unit=""/>
873
+ <Item Key="Rear Brake Type" Value="Disc" Unit=""/>
874
+ <Item Key="Turning Diameter" Value="52.40" Unit="in."/>
875
+ <Item Key="Front Suspension" Value="Ind" Unit=""/>
876
+ <Item Key="Rear Suspension" Value="Live" Unit=""/>
877
+ <Item Key="Front Spring Type" Value="Leaf" Unit=""/>
878
+ <Item Key="Rear Spring Type" Value="Leaf" Unit=""/>
879
+ <Item Key="Tires" Value="245/75R17" Unit=""/>
880
+ <Item Key="Front Headroom" Value="41.40" Unit="in."/>
881
+ <Item Key="Rear Headroom" Value="38.40" Unit="in."/>
882
+ <Item Key="Front Legroom" Value="41.00" Unit="in."/>
883
+ <Item Key="Rear Legroom" Value="31.80" Unit="in."/>
884
+ <Item Key="Front Shoulder Room" Value="68.00" Unit="in."/>
885
+ <Item Key="Rear Shoulder Room" Value="68.10" Unit="in."/>
886
+ <Item Key="Front Hip Room" Value="67.60" Unit="in."/>
887
+ <Item Key="Rear Hip Room" Value="67.30" Unit="in."/>
888
+ <Item Key="Interior Trim" Value="Camel Cloth Interior | Camel Vinyl Interior | Medium Stone Cloth Interior | Medium Stone Vinyl Interior" Unit=""/>
889
+ <Item Key="Exterior Color" Value="Black | Brilliant Silver Metallic | Dark Blue Pearl Metallic | Dark Stone Metallic | Forest Green Metallic | Oxford White | Pueblo Gold Metallic | Red | Royal Red Metallic | Sterling Grey Metallic" Unit=""/>
890
+ <Item Key="Curb Weight-automatic" Value="No data" Unit="lbs"/>
891
+ <Item Key="Curb Weight-manual" Value="6648" Unit="lbs"/>
892
+ <Item Key="Overall Length" Value="248.00" Unit="in."/>
893
+ <Item Key="Overall Width" Value="79.90" Unit="in."/>
894
+ <Item Key="Overall Height" Value="80.40" Unit="in."/>
895
+ <Item Key="Wheelbase" Value="158.00" Unit="in."/>
896
+ <Item Key="Ground Clearance" Value="No data" Unit="in."/>
897
+ <Item Key="Track Front" Value="68.40" Unit="in."/>
898
+ <Item Key="Track Rear" Value="68.10" Unit="in."/>
899
+ <Item Key="Cargo Length" Value="98.00" Unit="in."/>
900
+ <Item Key="Width at Wheelwell" Value="50.90" Unit="in."/>
901
+ <Item Key="Width at Wall" Value="63.90" Unit="in."/>
902
+ <Item Key="Depth" Value="20.10" Unit="in."/>
903
+ <Item Key="Standard Seating" Value="6" Unit=""/>
904
+ <Item Key="Optional Seating" Value="5" Unit=""/>
905
+ <Item Key="Passenger Volume" Value="No data" Unit="cu.ft."/>
906
+ <Item Key="Cargo Volume" Value="No data" Unit="cu.ft."/>
907
+ <Item Key="Standard Towing" Value="5000" Unit="lbs"/>
908
+ <Item Key="Maximum Towing" Value="16800" Unit="lbs"/>
909
+ <Item Key="Standard Payload" Value="No data" Unit="lbs"/>
910
+ <Item Key="Maximum Payload" Value="4140" Unit="lbs"/>
911
+ <Item Key="Standard GVWR" Value="10400" Unit="lbs"/>
912
+ <Item Key="Maximum GVWR" Value="11400" Unit="lbs"/>
913
+ <Item Key="Basic-duration" Value="36" Unit="month"/>
914
+ <Item Key="Basic-distance" Value="36,000" Unit="mile"/>
915
+ <Item Key="Powertrain-duration" Value="60" Unit="month"/>
916
+ <Item Key="Powertrain-distance" Value="60,000" Unit="mile"/>
917
+ <Item Key="Rust-duration" Value="60" Unit="month"/>
918
+ <Item Key="Rust-distance" Value="Unlimited" Unit="mile"/>
919
+ <Item Key="MSRP" Value="$31,625" Unit="USD"/>
920
+ <Item Key="Dealer Invoice" Value="$29,173" Unit="USD"/>
921
+ <Item Key="Destination Charge" Value="$975" Unit="USD"/>
922
+ <Item Key="Child Safety Door Locks" Value="N/A" Unit=""/>
923
+ <Item Key="Locking Pickup Truck Tailgate" Value="Std." Unit=""/>
924
+ <Item Key="Power Door Locks" Value="Opt." Unit=""/>
925
+ <Item Key="Vehicle Anti-Theft" Value="Std." Unit=""/>
926
+ <Item Key="4WD/AWD" Value="Std." Unit=""/>
927
+ <Item Key="ABS Brakes" Value="Std." Unit=""/>
928
+ <Item Key="Automatic Load-Leveling" Value="N/A" Unit=""/>
929
+ <Item Key="Electronic Brake Assistance" Value="N/A" Unit=""/>
930
+ <Item Key="Limited Slip Differential" Value="Opt." Unit=""/>
931
+ <Item Key="Locking Differential" Value="N/A" Unit=""/>
932
+ <Item Key="Traction Control" Value="Opt." Unit=""/>
933
+ <Item Key="Vehicle Stability Control System" Value="N/A" Unit=""/>
934
+ <Item Key="Driver Airbag" Value="Std." Unit=""/>
935
+ <Item Key="Front Side Airbag" Value="N/A" Unit=""/>
936
+ <Item Key="Front Side Airbag with Head Protection" Value="N/A" Unit=""/>
937
+ <Item Key="Passenger Airbag" Value="Std." Unit=""/>
938
+ <Item Key="Side Head Curtain Airbag" Value="N/A" Unit=""/>
939
+ <Item Key="Second Row Side Airbag" Value="N/A" Unit=""/>
940
+ <Item Key="Second Row Side Airbag with Head Protection" Value="N/A" Unit=""/>
941
+ <Item Key="Electronic Parking Aid" Value="N/A" Unit=""/>
942
+ <Item Key="First Aid Kit" Value="N/A" Unit=""/>
943
+ <Item Key="Trunk Anti-Trap Device" Value="N/A" Unit=""/>
944
+ <Item Key="Keyless Entry" Value="Opt." Unit=""/>
945
+ <Item Key="Remote Ignition" Value="Opt." Unit=""/>
946
+ <Item Key="Air Conditioning" Value="Std." Unit=""/>
947
+ <Item Key="Separate Driver/Front Passenger Climate Controls" Value="N/A" Unit=""/>
948
+ <Item Key="Cruise Control" Value="Opt." Unit=""/>
949
+ <Item Key="Tachometer" Value="Std." Unit=""/>
950
+ <Item Key="Tilt Steering" Value="Opt." Unit=""/>
951
+ <Item Key="Tilt Steering Column" Value="Opt." Unit=""/>
952
+ <Item Key="Heated Steering Wheel" Value="N/A" Unit=""/>
953
+ <Item Key="Leather Steering Wheel" Value="N/A" Unit=""/>
954
+ <Item Key="Steering Wheel Mounted Controls" Value="Opt." Unit=""/>
955
+ <Item Key="Telescopic Steering Column" Value="N/A" Unit=""/>
956
+ <Item Key="Adjustable Foot Pedals" Value="N/A" Unit=""/>
957
+ <Item Key="Genuine Wood Trim" Value="N/A" Unit=""/>
958
+ <Item Key="Tire Pressure Monitor" Value="Std." Unit=""/>
959
+ <Item Key="Trip Computer" Value="Std." Unit=""/>
960
+ <Item Key="AM/FM Radio" Value="Std." Unit=""/>
961
+ <Item Key="Cassette Player" Value="N/A" Unit=""/>
962
+ <Item Key="CD Player" Value="Opt." Unit=""/>
963
+ <Item Key="CD Changer" Value="N/A" Unit=""/>
964
+ <Item Key="DVD Player" Value="N/A" Unit=""/>
965
+ <Item Key="Voice Activated Telephone" Value="N/A" Unit=""/>
966
+ <Item Key="Navigation Aid" Value="Opt." Unit=""/>
967
+ <Item Key="Second Row Sound Controls" Value="N/A" Unit=""/>
968
+ <Item Key="Subwoofer" Value="N/A" Unit=""/>
969
+ <Item Key="Telematics System" Value="Opt." Unit=""/>
970
+ <Item Key="Driver Multi-Adjustable Power Seat" Value="N/A" Unit=""/>
971
+ <Item Key="Front Cooled Seat" Value="N/A" Unit=""/>
972
+ <Item Key="Front Heated Seat" Value="N/A" Unit=""/>
973
+ <Item Key="Front Power Lumbar Support" Value="N/A" Unit=""/>
974
+ <Item Key="Front Power Memory Seat" Value="N/A" Unit=""/>
975
+ <Item Key="Front Split Bench Seat" Value="Opt." Unit=""/>
976
+ <Item Key="Leather Seat" Value="N/A" Unit=""/>
977
+ <Item Key="Passenger Multi-Adjustable Power Seat" Value="N/A" Unit=""/>
978
+ <Item Key="Second Row Folding Seat" Value="Std." Unit=""/>
979
+ <Item Key="Second Row Heated Seat" Value="N/A" Unit=""/>
980
+ <Item Key="Second Row Multi-Adjustable Power Seat" Value="N/A" Unit=""/>
981
+ <Item Key="Second Row Removable Seat" Value="N/A" Unit=""/>
982
+ <Item Key="Third Row Removable Seat" Value="N/A" Unit=""/>
983
+ <Item Key="Cargo Area Cover" Value="Opt." Unit=""/>
984
+ <Item Key="Cargo Area Tiedowns" Value="Std." Unit=""/>
985
+ <Item Key="Cargo Net" Value="N/A" Unit=""/>
986
+ <Item Key="Load Bearing Exterior Rack" Value="N/A" Unit=""/>
987
+ <Item Key="Pickup Truck Bed Liner" Value="Opt." Unit=""/>
988
+ <Item Key="Power Sunroof" Value="N/A" Unit=""/>
989
+ <Item Key="Removable Top" Value="N/A" Unit=""/>
990
+ <Item Key="Manual Sunroof" Value="N/A" Unit=""/>
991
+ <Item Key="Automatic Headlights" Value="N/A" Unit=""/>
992
+ <Item Key="Daytime Running Lights" Value="N/A" Unit=""/>
993
+ <Item Key="Fog Lights" Value="N/A" Unit=""/>
994
+ <Item Key="High Intensity Discharge Headlights" Value="N/A" Unit=""/>
995
+ <Item Key="Pickup Truck Cargo Box Light" Value="Std." Unit=""/>
996
+ <Item Key="Running Boards" Value="Opt." Unit=""/>
997
+ <Item Key="Front Air Dam" Value="Std." Unit=""/>
998
+ <Item Key="Rear Spoiler" Value="N/A" Unit=""/>
999
+ <Item Key="Skid Plate" Value="Opt." Unit=""/>
1000
+ <Item Key="Splash Guards" Value="Opt." Unit=""/>
1001
+ <Item Key="Wind Deflector for Convertibles" Value="N/A" Unit=""/>
1002
+ <Item Key="Power Sliding Side Van Door" Value="N/A" Unit=""/>
1003
+ <Item Key="Power Trunk Lid" Value="N/A" Unit=""/>
1004
+ <Item Key="Alloy Wheels" Value="N/A" Unit=""/>
1005
+ <Item Key="Chrome Wheels" Value="N/A" Unit=""/>
1006
+ <Item Key="Full Size Spare Tire" Value="Std." Unit=""/>
1007
+ <Item Key="Run Flat Tires" Value="N/A" Unit=""/>
1008
+ <Item Key="Steel Wheels" Value="Std." Unit=""/>
1009
+ <Item Key="Power Windows" Value="Opt." Unit=""/>
1010
+ <Item Key="Electrochromic Exterior Rearview Mirror" Value="N/A" Unit=""/>
1011
+ <Item Key="Glass Rear Window on Convertible" Value="N/A" Unit=""/>
1012
+ <Item Key="Heated Exterior Mirror" Value="Opt." Unit=""/>
1013
+ <Item Key="Electrochromic Interior Rearview Mirror" Value="N/A" Unit=""/>
1014
+ <Item Key="Power Adjustable Exterior Mirror" Value="Opt." Unit=""/>
1015
+ <Item Key="Deep Tinted Glass" Value="N/A" Unit=""/>
1016
+ <Item Key="Interval Wipers" Value="Std." Unit=""/>
1017
+ <Item Key="Rain Sensing Wipers" Value="N/A" Unit=""/>
1018
+ <Item Key="Rear Window Defogger" Value="N/A" Unit=""/>
1019
+ <Item Key="Rear Wiper" Value="N/A" Unit=""/>
1020
+ <Item Key="Sliding Rear Pickup Truck Window" Value="N/A" Unit=""/>
1021
+ <Item Key="Tow Hitch Receiver" Value="Std." Unit=""/>
1022
+ <Item Key="Towing Preparation Package" Value="Std." Unit=""/>
1023
+ </Vehicle>
1024
+ <Vehicle VINquery_Vehicle_ID="38288" Model_Year="2009" Make="Ford" Model="F-350 SD" Trim_Level="XLT SuperCab 4WD">
1025
+ <Item Key="VINquery_Vehicle_ID" Value="38288" Unit=""/>
1026
+ <Item Key="Model Year" Value="2009" Unit=""/>
1027
+ <Item Key="Make" Value="Ford" Unit=""/>
1028
+ <Item Key="Model" Value="F-350 SD" Unit=""/>
1029
+ <Item Key="Trim Level" Value="XLT SuperCab 4WD" Unit=""/>
1030
+ <Item Key="Manufactured in" Value="UNITED STATES" Unit=""/>
1031
+ <Item Key="Production Seq. Number" Value="B18840" Unit=""/>
1032
+ <Item Key="Body Style" Value="EXTENDED CAB PICKUP 4-DR" Unit=""/>
1033
+ <Item Key="Engine Type" Value="6.4L V8 OHV 32V TURBO DIESEL" Unit=""/>
1034
+ <Item Key="Transmission-short" Value="5A | 6M" Unit=""/>
1035
+ <Item Key="Transmission-long" Value="5-Speed Automatic | 6-Speed Manual" Unit=""/>
1036
+ <Item Key="Driveline" Value="4WD" Unit=""/>
1037
+ <Item Key="Tank" Value="30.50" Unit="gallon"/>
1038
+ <Item Key="Fuel Economy-city" Value="No data" Unit="miles/gallon"/>
1039
+ <Item Key="Fuel Economy-highway" Value="No data" Unit="miles/gallon"/>
1040
+ <Item Key="Anti-Brake System" Value="4-Wheel ABS" Unit=""/>
1041
+ <Item Key="Steering Type" Value="Recirc" Unit=""/>
1042
+ <Item Key="Front Brake Type" Value="Disc" Unit=""/>
1043
+ <Item Key="Rear Brake Type" Value="Disc" Unit=""/>
1044
+ <Item Key="Turning Diameter" Value="47.50" Unit="in."/>
1045
+ <Item Key="Front Suspension" Value="Ind" Unit=""/>
1046
+ <Item Key="Rear Suspension" Value="Live" Unit=""/>
1047
+ <Item Key="Front Spring Type" Value="Leaf" Unit=""/>
1048
+ <Item Key="Rear Spring Type" Value="Leaf" Unit=""/>
1049
+ <Item Key="Tires" Value="275/70R18" Unit=""/>
1050
+ <Item Key="Front Headroom" Value="41.40" Unit="in."/>
1051
+ <Item Key="Rear Headroom" Value="38.40" Unit="in."/>
1052
+ <Item Key="Front Legroom" Value="41.00" Unit="in."/>
1053
+ <Item Key="Rear Legroom" Value="31.80" Unit="in."/>
1054
+ <Item Key="Front Shoulder Room" Value="68.00" Unit="in."/>
1055
+ <Item Key="Rear Shoulder Room" Value="68.10" Unit="in."/>
1056
+ <Item Key="Front Hip Room" Value="67.60" Unit="in."/>
1057
+ <Item Key="Rear Hip Room" Value="67.30" Unit="in."/>
1058
+ <Item Key="Interior Trim" Value="Camel Cloth Interior | Medium Stone Cloth Interior" Unit=""/>
1059
+ <Item Key="Exterior Color" Value="Black | Brilliant Silver Metallic | Dark Blue Pearl Metallic | Dark Stone Metallic | Forest Green Metallic | Oxford White | Pueblo Gold Metallic | Red | Royal Red Metallic | Sterling Grey Metallic" Unit=""/>
1060
+ <Item Key="Curb Weight-automatic" Value="No data" Unit="lbs"/>
1061
+ <Item Key="Curb Weight-manual" Value="6523" Unit="lbs"/>
1062
+ <Item Key="Overall Length" Value="231.80" Unit="in."/>
1063
+ <Item Key="Overall Width" Value="79.90" Unit="in."/>
1064
+ <Item Key="Overall Height" Value="80.60" Unit="in."/>
1065
+ <Item Key="Wheelbase" Value="141.80" Unit="in."/>
1066
+ <Item Key="Ground Clearance" Value="No data" Unit="in."/>
1067
+ <Item Key="Track Front" Value="68.40" Unit="in."/>
1068
+ <Item Key="Track Rear" Value="68.10" Unit="in."/>
1069
+ <Item Key="Cargo Length" Value="81.80" Unit="in."/>
1070
+ <Item Key="Width at Wheelwell" Value="50.90" Unit="in."/>
1071
+ <Item Key="Width at Wall" Value="63.90" Unit="in."/>
1072
+ <Item Key="Depth" Value="20.10" Unit="in."/>
1073
+ <Item Key="Standard Seating" Value="6" Unit=""/>
1074
+ <Item Key="Optional Seating" Value="5" Unit=""/>
1075
+ <Item Key="Passenger Volume" Value="No data" Unit="cu.ft."/>
1076
+ <Item Key="Cargo Volume" Value="No data" Unit="cu.ft."/>
1077
+ <Item Key="Standard Towing" Value="5000" Unit="lbs"/>
1078
+ <Item Key="Maximum Towing" Value="16800" Unit="lbs"/>
1079
+ <Item Key="Standard Payload" Value="No data" Unit="lbs"/>
1080
+ <Item Key="Maximum Payload" Value="4070" Unit="lbs"/>
1081
+ <Item Key="Standard GVWR" Value="10600" Unit="lbs"/>
1082
+ <Item Key="Maximum GVWR" Value="11200" Unit="lbs"/>
1083
+ <Item Key="Basic-duration" Value="36" Unit="month"/>
1084
+ <Item Key="Basic-distance" Value="36,000" Unit="mile"/>
1085
+ <Item Key="Powertrain-duration" Value="60" Unit="month"/>
1086
+ <Item Key="Powertrain-distance" Value="60,000" Unit="mile"/>
1087
+ <Item Key="Rust-duration" Value="60" Unit="month"/>
1088
+ <Item Key="Rust-distance" Value="Unlimited" Unit="mile"/>
1089
+ <Item Key="MSRP" Value="$36,100" Unit="USD"/>
1090
+ <Item Key="Dealer Invoice" Value="$33,200" Unit="USD"/>
1091
+ <Item Key="Destination Charge" Value="$975" Unit="USD"/>
1092
+ <Item Key="Child Safety Door Locks" Value="N/A" Unit=""/>
1093
+ <Item Key="Locking Pickup Truck Tailgate" Value="Std." Unit=""/>
1094
+ <Item Key="Power Door Locks" Value="Std." Unit=""/>
1095
+ <Item Key="Vehicle Anti-Theft" Value="Std." Unit=""/>
1096
+ <Item Key="4WD/AWD" Value="Std." Unit=""/>
1097
+ <Item Key="ABS Brakes" Value="Std." Unit=""/>
1098
+ <Item Key="Automatic Load-Leveling" Value="N/A" Unit=""/>
1099
+ <Item Key="Electronic Brake Assistance" Value="N/A" Unit=""/>
1100
+ <Item Key="Limited Slip Differential" Value="Opt." Unit=""/>
1101
+ <Item Key="Locking Differential" Value="N/A" Unit=""/>
1102
+ <Item Key="Traction Control" Value="Opt." Unit=""/>
1103
+ <Item Key="Vehicle Stability Control System" Value="N/A" Unit=""/>
1104
+ <Item Key="Driver Airbag" Value="Std." Unit=""/>
1105
+ <Item Key="Front Side Airbag" Value="N/A" Unit=""/>
1106
+ <Item Key="Front Side Airbag with Head Protection" Value="N/A" Unit=""/>
1107
+ <Item Key="Passenger Airbag" Value="Std." Unit=""/>
1108
+ <Item Key="Side Head Curtain Airbag" Value="N/A" Unit=""/>
1109
+ <Item Key="Second Row Side Airbag" Value="N/A" Unit=""/>
1110
+ <Item Key="Second Row Side Airbag with Head Protection" Value="N/A" Unit=""/>
1111
+ <Item Key="Electronic Parking Aid" Value="Opt." Unit=""/>
1112
+ <Item Key="First Aid Kit" Value="N/A" Unit=""/>
1113
+ <Item Key="Trunk Anti-Trap Device" Value="N/A" Unit=""/>
1114
+ <Item Key="Keyless Entry" Value="Std." Unit=""/>
1115
+ <Item Key="Remote Ignition" Value="Opt." Unit=""/>
1116
+ <Item Key="Air Conditioning" Value="Std." Unit=""/>
1117
+ <Item Key="Separate Driver/Front Passenger Climate Controls" Value="N/A" Unit=""/>
1118
+ <Item Key="Cruise Control" Value="Std." Unit=""/>
1119
+ <Item Key="Tachometer" Value="Std." Unit=""/>
1120
+ <Item Key="Tilt Steering" Value="Std." Unit=""/>
1121
+ <Item Key="Tilt Steering Column" Value="Std." Unit=""/>
1122
+ <Item Key="Heated Steering Wheel" Value="N/A" Unit=""/>
1123
+ <Item Key="Leather Steering Wheel" Value="Opt." Unit=""/>
1124
+ <Item Key="Steering Wheel Mounted Controls" Value="Std." Unit=""/>
1125
+ <Item Key="Telescopic Steering Column" Value="N/A" Unit=""/>
1126
+ <Item Key="Adjustable Foot Pedals" Value="Opt." Unit=""/>
1127
+ <Item Key="Genuine Wood Trim" Value="N/A" Unit=""/>
1128
+ <Item Key="Tire Pressure Monitor" Value="Std." Unit=""/>
1129
+ <Item Key="Trip Computer" Value="Std." Unit=""/>
1130
+ <Item Key="AM/FM Radio" Value="Std." Unit=""/>
1131
+ <Item Key="Cassette Player" Value="N/A" Unit=""/>
1132
+ <Item Key="CD Player" Value="Std." Unit=""/>
1133
+ <Item Key="CD Changer" Value="Opt." Unit=""/>
1134
+ <Item Key="DVD Player" Value="N/A" Unit=""/>
1135
+ <Item Key="Voice Activated Telephone" Value="N/A" Unit=""/>
1136
+ <Item Key="Navigation Aid" Value="Opt." Unit=""/>
1137
+ <Item Key="Second Row Sound Controls" Value="N/A" Unit=""/>
1138
+ <Item Key="Subwoofer" Value="N/A" Unit=""/>
1139
+ <Item Key="Telematics System" Value="Opt." Unit=""/>
1140
+ <Item Key="Driver Multi-Adjustable Power Seat" Value="Opt." Unit=""/>
1141
+ <Item Key="Front Cooled Seat" Value="N/A" Unit=""/>
1142
+ <Item Key="Front Heated Seat" Value="N/A" Unit=""/>
1143
+ <Item Key="Front Power Lumbar Support" Value="N/A" Unit=""/>
1144
+ <Item Key="Front Power Memory Seat" Value="N/A" Unit=""/>
1145
+ <Item Key="Front Split Bench Seat" Value="Std." Unit=""/>
1146
+ <Item Key="Leather Seat" Value="N/A" Unit=""/>
1147
+ <Item Key="Passenger Multi-Adjustable Power Seat" Value="N/A" Unit=""/>
1148
+ <Item Key="Second Row Folding Seat" Value="Std." Unit=""/>
1149
+ <Item Key="Second Row Heated Seat" Value="N/A" Unit=""/>
1150
+ <Item Key="Second Row Multi-Adjustable Power Seat" Value="N/A" Unit=""/>
1151
+ <Item Key="Second Row Removable Seat" Value="N/A" Unit=""/>
1152
+ <Item Key="Third Row Removable Seat" Value="N/A" Unit=""/>
1153
+ <Item Key="Cargo Area Cover" Value="Opt." Unit=""/>
1154
+ <Item Key="Cargo Area Tiedowns" Value="Std." Unit=""/>
1155
+ <Item Key="Cargo Net" Value="N/A" Unit=""/>
1156
+ <Item Key="Load Bearing Exterior Rack" Value="N/A" Unit=""/>
1157
+ <Item Key="Pickup Truck Bed Liner" Value="Opt." Unit=""/>
1158
+ <Item Key="Power Sunroof" Value="N/A" Unit=""/>
1159
+ <Item Key="Removable Top" Value="N/A" Unit=""/>
1160
+ <Item Key="Manual Sunroof" Value="N/A" Unit=""/>
1161
+ <Item Key="Automatic Headlights" Value="Opt." Unit=""/>
1162
+ <Item Key="Daytime Running Lights" Value="N/A" Unit=""/>
1163
+ <Item Key="Fog Lights" Value="Opt." Unit=""/>
1164
+ <Item Key="High Intensity Discharge Headlights" Value="N/A" Unit=""/>
1165
+ <Item Key="Pickup Truck Cargo Box Light" Value="Std." Unit=""/>
1166
+ <Item Key="Running Boards" Value="Opt." Unit=""/>
1167
+ <Item Key="Front Air Dam" Value="Std." Unit=""/>
1168
+ <Item Key="Rear Spoiler" Value="N/A" Unit=""/>
1169
+ <Item Key="Skid Plate" Value="Opt." Unit=""/>
1170
+ <Item Key="Splash Guards" Value="Opt." Unit=""/>
1171
+ <Item Key="Wind Deflector for Convertibles" Value="N/A" Unit=""/>
1172
+ <Item Key="Power Sliding Side Van Door" Value="N/A" Unit=""/>
1173
+ <Item Key="Power Trunk Lid" Value="N/A" Unit=""/>
1174
+ <Item Key="Alloy Wheels" Value="Opt." Unit=""/>
1175
+ <Item Key="Chrome Wheels" Value="Std." Unit=""/>
1176
+ <Item Key="Full Size Spare Tire" Value="Std." Unit=""/>
1177
+ <Item Key="Run Flat Tires" Value="N/A" Unit=""/>
1178
+ <Item Key="Steel Wheels" Value="Std." Unit=""/>
1179
+ <Item Key="Power Windows" Value="Std." Unit=""/>
1180
+ <Item Key="Electrochromic Exterior Rearview Mirror" Value="N/A" Unit=""/>
1181
+ <Item Key="Glass Rear Window on Convertible" Value="N/A" Unit=""/>
1182
+ <Item Key="Heated Exterior Mirror" Value="Std." Unit=""/>
1183
+ <Item Key="Electrochromic Interior Rearview Mirror" Value="Opt." Unit=""/>
1184
+ <Item Key="Power Adjustable Exterior Mirror" Value="Std." Unit=""/>
1185
+ <Item Key="Deep Tinted Glass" Value="Std." Unit=""/>
1186
+ <Item Key="Interval Wipers" Value="Std." Unit=""/>
1187
+ <Item Key="Rain Sensing Wipers" Value="N/A" Unit=""/>
1188
+ <Item Key="Rear Window Defogger" Value="N/A" Unit=""/>
1189
+ <Item Key="Rear Wiper" Value="N/A" Unit=""/>
1190
+ <Item Key="Sliding Rear Pickup Truck Window" Value="Opt." Unit=""/>
1191
+ <Item Key="Tow Hitch Receiver" Value="Std." Unit=""/>
1192
+ <Item Key="Towing Preparation Package" Value="Std." Unit=""/>
1193
+ </Vehicle>
1194
+ <Vehicle VINquery_Vehicle_ID="38290" Model_Year="2009" Make="Ford" Model="F-350 SD" Trim_Level="XLT SuperCab Long Bed 4WD">
1195
+ <Item Key="VINquery_Vehicle_ID" Value="38290" Unit=""/>
1196
+ <Item Key="Model Year" Value="2009" Unit=""/>
1197
+ <Item Key="Make" Value="Ford" Unit=""/>
1198
+ <Item Key="Model" Value="F-350 SD" Unit=""/>
1199
+ <Item Key="Trim Level" Value="XLT SuperCab Long Bed 4WD" Unit=""/>
1200
+ <Item Key="Manufactured in" Value="UNITED STATES" Unit=""/>
1201
+ <Item Key="Production Seq. Number" Value="B18840" Unit=""/>
1202
+ <Item Key="Body Style" Value="EXTENDED CAB PICKUP 4-DR" Unit=""/>
1203
+ <Item Key="Engine Type" Value="6.4L V8 OHV 32V TURBO DIESEL" Unit=""/>
1204
+ <Item Key="Transmission-short" Value="5A | 6M" Unit=""/>
1205
+ <Item Key="Transmission-long" Value="5-Speed Automatic | 6-Speed Manual" Unit=""/>
1206
+ <Item Key="Driveline" Value="4WD" Unit=""/>
1207
+ <Item Key="Tank" Value="38.00" Unit="gallon"/>
1208
+ <Item Key="Fuel Economy-city" Value="No data" Unit="miles/gallon"/>
1209
+ <Item Key="Fuel Economy-highway" Value="No data" Unit="miles/gallon"/>
1210
+ <Item Key="Anti-Brake System" Value="4-Wheel ABS" Unit=""/>
1211
+ <Item Key="Steering Type" Value="Recirc" Unit=""/>
1212
+ <Item Key="Front Brake Type" Value="Disc" Unit=""/>
1213
+ <Item Key="Rear Brake Type" Value="Disc" Unit=""/>
1214
+ <Item Key="Turning Diameter" Value="52.40" Unit="in."/>
1215
+ <Item Key="Front Suspension" Value="Ind" Unit=""/>
1216
+ <Item Key="Rear Suspension" Value="Live" Unit=""/>
1217
+ <Item Key="Front Spring Type" Value="Leaf" Unit=""/>
1218
+ <Item Key="Rear Spring Type" Value="Leaf" Unit=""/>
1219
+ <Item Key="Tires" Value="275/70R18" Unit=""/>
1220
+ <Item Key="Front Headroom" Value="41.40" Unit="in."/>
1221
+ <Item Key="Rear Headroom" Value="38.40" Unit="in."/>
1222
+ <Item Key="Front Legroom" Value="41.00" Unit="in."/>
1223
+ <Item Key="Rear Legroom" Value="31.80" Unit="in."/>
1224
+ <Item Key="Front Shoulder Room" Value="68.00" Unit="in."/>
1225
+ <Item Key="Rear Shoulder Room" Value="68.10" Unit="in."/>
1226
+ <Item Key="Front Hip Room" Value="67.60" Unit="in."/>
1227
+ <Item Key="Rear Hip Room" Value="67.30" Unit="in."/>
1228
+ <Item Key="Interior Trim" Value="Camel Cloth Interior | Medium Stone Cloth Interior" Unit=""/>
1229
+ <Item Key="Exterior Color" Value="Black | Brilliant Silver Metallic | Dark Blue Pearl Metallic | Dark Stone Metallic | Forest Green Metallic | Oxford White | Pueblo Gold Metallic | Red | Royal Red Metallic | Sterling Grey Metallic" Unit=""/>
1230
+ <Item Key="Curb Weight-automatic" Value="No data" Unit="lbs"/>
1231
+ <Item Key="Curb Weight-manual" Value="6648" Unit="lbs"/>
1232
+ <Item Key="Overall Length" Value="248.00" Unit="in."/>
1233
+ <Item Key="Overall Width" Value="79.90" Unit="in."/>
1234
+ <Item Key="Overall Height" Value="80.40" Unit="in."/>
1235
+ <Item Key="Wheelbase" Value="158.00" Unit="in."/>
1236
+ <Item Key="Ground Clearance" Value="No data" Unit="in."/>
1237
+ <Item Key="Track Front" Value="68.40" Unit="in."/>
1238
+ <Item Key="Track Rear" Value="68.10" Unit="in."/>
1239
+ <Item Key="Cargo Length" Value="98.00" Unit="in."/>
1240
+ <Item Key="Width at Wheelwell" Value="50.90" Unit="in."/>
1241
+ <Item Key="Width at Wall" Value="63.90" Unit="in."/>
1242
+ <Item Key="Depth" Value="20.10" Unit="in."/>
1243
+ <Item Key="Standard Seating" Value="6" Unit=""/>
1244
+ <Item Key="Optional Seating" Value="5" Unit=""/>
1245
+ <Item Key="Passenger Volume" Value="No data" Unit="cu.ft."/>
1246
+ <Item Key="Cargo Volume" Value="No data" Unit="cu.ft."/>
1247
+ <Item Key="Standard Towing" Value="5000" Unit="lbs"/>
1248
+ <Item Key="Maximum Towing" Value="16800" Unit="lbs"/>
1249
+ <Item Key="Standard Payload" Value="No data" Unit="lbs"/>
1250
+ <Item Key="Maximum Payload" Value="4140" Unit="lbs"/>
1251
+ <Item Key="Standard GVWR" Value="10800" Unit="lbs"/>
1252
+ <Item Key="Maximum GVWR" Value="11400" Unit="lbs"/>
1253
+ <Item Key="Basic-duration" Value="36" Unit="month"/>
1254
+ <Item Key="Basic-distance" Value="36,000" Unit="mile"/>
1255
+ <Item Key="Powertrain-duration" Value="60" Unit="month"/>
1256
+ <Item Key="Powertrain-distance" Value="60,000" Unit="mile"/>
1257
+ <Item Key="Rust-duration" Value="60" Unit="month"/>
1258
+ <Item Key="Rust-distance" Value="Unlimited" Unit="mile"/>
1259
+ <Item Key="MSRP" Value="$36,285" Unit="USD"/>
1260
+ <Item Key="Dealer Invoice" Value="$33,367" Unit="USD"/>
1261
+ <Item Key="Destination Charge" Value="$975" Unit="USD"/>
1262
+ <Item Key="Child Safety Door Locks" Value="N/A" Unit=""/>
1263
+ <Item Key="Locking Pickup Truck Tailgate" Value="Std." Unit=""/>
1264
+ <Item Key="Power Door Locks" Value="Std." Unit=""/>
1265
+ <Item Key="Vehicle Anti-Theft" Value="Std." Unit=""/>
1266
+ <Item Key="4WD/AWD" Value="Std." Unit=""/>
1267
+ <Item Key="ABS Brakes" Value="Std." Unit=""/>
1268
+ <Item Key="Automatic Load-Leveling" Value="N/A" Unit=""/>
1269
+ <Item Key="Electronic Brake Assistance" Value="N/A" Unit=""/>
1270
+ <Item Key="Limited Slip Differential" Value="Opt." Unit=""/>
1271
+ <Item Key="Locking Differential" Value="N/A" Unit=""/>
1272
+ <Item Key="Traction Control" Value="Opt." Unit=""/>
1273
+ <Item Key="Vehicle Stability Control System" Value="N/A" Unit=""/>
1274
+ <Item Key="Driver Airbag" Value="Std." Unit=""/>
1275
+ <Item Key="Front Side Airbag" Value="N/A" Unit=""/>
1276
+ <Item Key="Front Side Airbag with Head Protection" Value="N/A" Unit=""/>
1277
+ <Item Key="Passenger Airbag" Value="Std." Unit=""/>
1278
+ <Item Key="Side Head Curtain Airbag" Value="N/A" Unit=""/>
1279
+ <Item Key="Second Row Side Airbag" Value="N/A" Unit=""/>
1280
+ <Item Key="Second Row Side Airbag with Head Protection" Value="N/A" Unit=""/>
1281
+ <Item Key="Electronic Parking Aid" Value="Opt." Unit=""/>
1282
+ <Item Key="First Aid Kit" Value="N/A" Unit=""/>
1283
+ <Item Key="Trunk Anti-Trap Device" Value="N/A" Unit=""/>
1284
+ <Item Key="Keyless Entry" Value="Std." Unit=""/>
1285
+ <Item Key="Remote Ignition" Value="Opt." Unit=""/>
1286
+ <Item Key="Air Conditioning" Value="Std." Unit=""/>
1287
+ <Item Key="Separate Driver/Front Passenger Climate Controls" Value="N/A" Unit=""/>
1288
+ <Item Key="Cruise Control" Value="Std." Unit=""/>
1289
+ <Item Key="Tachometer" Value="Std." Unit=""/>
1290
+ <Item Key="Tilt Steering" Value="Std." Unit=""/>
1291
+ <Item Key="Tilt Steering Column" Value="Std." Unit=""/>
1292
+ <Item Key="Heated Steering Wheel" Value="N/A" Unit=""/>
1293
+ <Item Key="Leather Steering Wheel" Value="Opt." Unit=""/>
1294
+ <Item Key="Steering Wheel Mounted Controls" Value="Std." Unit=""/>
1295
+ <Item Key="Telescopic Steering Column" Value="N/A" Unit=""/>
1296
+ <Item Key="Adjustable Foot Pedals" Value="Opt." Unit=""/>
1297
+ <Item Key="Genuine Wood Trim" Value="N/A" Unit=""/>
1298
+ <Item Key="Tire Pressure Monitor" Value="Std." Unit=""/>
1299
+ <Item Key="Trip Computer" Value="Std." Unit=""/>
1300
+ <Item Key="AM/FM Radio" Value="Std." Unit=""/>
1301
+ <Item Key="Cassette Player" Value="N/A" Unit=""/>
1302
+ <Item Key="CD Player" Value="Std." Unit=""/>
1303
+ <Item Key="CD Changer" Value="Opt." Unit=""/>
1304
+ <Item Key="DVD Player" Value="N/A" Unit=""/>
1305
+ <Item Key="Voice Activated Telephone" Value="N/A" Unit=""/>
1306
+ <Item Key="Navigation Aid" Value="Opt." Unit=""/>
1307
+ <Item Key="Second Row Sound Controls" Value="N/A" Unit=""/>
1308
+ <Item Key="Subwoofer" Value="N/A" Unit=""/>
1309
+ <Item Key="Telematics System" Value="Opt." Unit=""/>
1310
+ <Item Key="Driver Multi-Adjustable Power Seat" Value="Opt." Unit=""/>
1311
+ <Item Key="Front Cooled Seat" Value="N/A" Unit=""/>
1312
+ <Item Key="Front Heated Seat" Value="N/A" Unit=""/>
1313
+ <Item Key="Front Power Lumbar Support" Value="N/A" Unit=""/>
1314
+ <Item Key="Front Power Memory Seat" Value="N/A" Unit=""/>
1315
+ <Item Key="Front Split Bench Seat" Value="Std." Unit=""/>
1316
+ <Item Key="Leather Seat" Value="N/A" Unit=""/>
1317
+ <Item Key="Passenger Multi-Adjustable Power Seat" Value="N/A" Unit=""/>
1318
+ <Item Key="Second Row Folding Seat" Value="Std." Unit=""/>
1319
+ <Item Key="Second Row Heated Seat" Value="N/A" Unit=""/>
1320
+ <Item Key="Second Row Multi-Adjustable Power Seat" Value="N/A" Unit=""/>
1321
+ <Item Key="Second Row Removable Seat" Value="N/A" Unit=""/>
1322
+ <Item Key="Third Row Removable Seat" Value="N/A" Unit=""/>
1323
+ <Item Key="Cargo Area Cover" Value="Opt." Unit=""/>
1324
+ <Item Key="Cargo Area Tiedowns" Value="Std." Unit=""/>
1325
+ <Item Key="Cargo Net" Value="N/A" Unit=""/>
1326
+ <Item Key="Load Bearing Exterior Rack" Value="N/A" Unit=""/>
1327
+ <Item Key="Pickup Truck Bed Liner" Value="Opt." Unit=""/>
1328
+ <Item Key="Power Sunroof" Value="N/A" Unit=""/>
1329
+ <Item Key="Removable Top" Value="N/A" Unit=""/>
1330
+ <Item Key="Manual Sunroof" Value="N/A" Unit=""/>
1331
+ <Item Key="Automatic Headlights" Value="Opt." Unit=""/>
1332
+ <Item Key="Daytime Running Lights" Value="N/A" Unit=""/>
1333
+ <Item Key="Fog Lights" Value="Opt." Unit=""/>
1334
+ <Item Key="High Intensity Discharge Headlights" Value="N/A" Unit=""/>
1335
+ <Item Key="Pickup Truck Cargo Box Light" Value="Std." Unit=""/>
1336
+ <Item Key="Running Boards" Value="Opt." Unit=""/>
1337
+ <Item Key="Front Air Dam" Value="Std." Unit=""/>
1338
+ <Item Key="Rear Spoiler" Value="N/A" Unit=""/>
1339
+ <Item Key="Skid Plate" Value="Opt." Unit=""/>
1340
+ <Item Key="Splash Guards" Value="Opt." Unit=""/>
1341
+ <Item Key="Wind Deflector for Convertibles" Value="N/A" Unit=""/>
1342
+ <Item Key="Power Sliding Side Van Door" Value="N/A" Unit=""/>
1343
+ <Item Key="Power Trunk Lid" Value="N/A" Unit=""/>
1344
+ <Item Key="Alloy Wheels" Value="Opt." Unit=""/>
1345
+ <Item Key="Chrome Wheels" Value="Std." Unit=""/>
1346
+ <Item Key="Full Size Spare Tire" Value="Std." Unit=""/>
1347
+ <Item Key="Run Flat Tires" Value="N/A" Unit=""/>
1348
+ <Item Key="Steel Wheels" Value="Std." Unit=""/>
1349
+ <Item Key="Power Windows" Value="Std." Unit=""/>
1350
+ <Item Key="Electrochromic Exterior Rearview Mirror" Value="N/A" Unit=""/>
1351
+ <Item Key="Glass Rear Window on Convertible" Value="N/A" Unit=""/>
1352
+ <Item Key="Heated Exterior Mirror" Value="Std." Unit=""/>
1353
+ <Item Key="Electrochromic Interior Rearview Mirror" Value="Opt." Unit=""/>
1354
+ <Item Key="Power Adjustable Exterior Mirror" Value="Std." Unit=""/>
1355
+ <Item Key="Deep Tinted Glass" Value="Std." Unit=""/>
1356
+ <Item Key="Interval Wipers" Value="Std." Unit=""/>
1357
+ <Item Key="Rain Sensing Wipers" Value="N/A" Unit=""/>
1358
+ <Item Key="Rear Window Defogger" Value="N/A" Unit=""/>
1359
+ <Item Key="Rear Wiper" Value="N/A" Unit=""/>
1360
+ <Item Key="Sliding Rear Pickup Truck Window" Value="Opt." Unit=""/>
1361
+ <Item Key="Tow Hitch Receiver" Value="Std." Unit=""/>
1362
+ <Item Key="Towing Preparation Package" Value="Std." Unit=""/>
1363
+ </Vehicle>
1364
+ </VIN>
1365
+ </VINquery>