solidus_active_shipping 1.0.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (155) hide show
  1. checksums.yaml +7 -0
  2. data/.gitignore +11 -0
  3. data/.rspec +1 -0
  4. data/.simplecov +5 -0
  5. data/.travis.yml +21 -0
  6. data/Gemfile +18 -0
  7. data/README.md +192 -0
  8. data/Rakefile +21 -0
  9. data/app/assets/javascripts/admin/product_packages/edit.js.coffee +4 -0
  10. data/app/assets/javascripts/admin/product_packages/index.js.coffee +28 -0
  11. data/app/assets/javascripts/admin/product_packages/new.js.coffee +7 -0
  12. data/app/assets/javascripts/spree/backend/solidus_active_shipping.js +0 -0
  13. data/app/assets/javascripts/spree/frontend/solidus_active_shipping.js +0 -0
  14. data/app/assets/stylesheets/spree/backend/solidus_active_shipping.css +0 -0
  15. data/app/assets/stylesheets/spree/frontend/solidus_active_shipping.css +0 -0
  16. data/app/controllers/spree/admin/active_shipping_settings_controller.rb +27 -0
  17. data/app/controllers/spree/admin/product_packages_controller.rb +17 -0
  18. data/app/controllers/spree/admin/products_controller_decorator.rb +12 -0
  19. data/app/controllers/spree/checkout_controller_decorator.rb +11 -0
  20. data/app/controllers/spree/orders_controller_decorator.rb +11 -0
  21. data/app/models/spree/calculator/shipping/active_shipping/base.rb +208 -0
  22. data/app/models/spree/calculator/shipping/canada_post/base.rb +17 -0
  23. data/app/models/spree/calculator/shipping/canada_post/expedited.rb +11 -0
  24. data/app/models/spree/calculator/shipping/canada_post/parcel_surface.rb +11 -0
  25. data/app/models/spree/calculator/shipping/canada_post/priority_worldwide_intl.rb +12 -0
  26. data/app/models/spree/calculator/shipping/canada_post/regular.rb +11 -0
  27. data/app/models/spree/calculator/shipping/canada_post/small_packets_air.rb +11 -0
  28. data/app/models/spree/calculator/shipping/canada_post/small_packets_surface.rb +11 -0
  29. data/app/models/spree/calculator/shipping/canada_post/xpresspost.rb +11 -0
  30. data/app/models/spree/calculator/shipping/canada_post/xpresspost_international.rb +11 -0
  31. data/app/models/spree/calculator/shipping/fedex/base.rb +21 -0
  32. data/app/models/spree/calculator/shipping/fedex/express_saver.rb +13 -0
  33. data/app/models/spree/calculator/shipping/fedex/first_overnight.rb +13 -0
  34. data/app/models/spree/calculator/shipping/fedex/ground.rb +13 -0
  35. data/app/models/spree/calculator/shipping/fedex/ground_home_delivery.rb +13 -0
  36. data/app/models/spree/calculator/shipping/fedex/international_economy.rb +13 -0
  37. data/app/models/spree/calculator/shipping/fedex/international_economy_freight.rb +13 -0
  38. data/app/models/spree/calculator/shipping/fedex/international_first.rb +13 -0
  39. data/app/models/spree/calculator/shipping/fedex/international_ground.rb +13 -0
  40. data/app/models/spree/calculator/shipping/fedex/international_priority.rb +13 -0
  41. data/app/models/spree/calculator/shipping/fedex/international_priority_freight.rb +13 -0
  42. data/app/models/spree/calculator/shipping/fedex/international_priority_saturday_delivery.rb +13 -0
  43. data/app/models/spree/calculator/shipping/fedex/one_day_freight.rb +13 -0
  44. data/app/models/spree/calculator/shipping/fedex/one_day_freight_saturday_delivery.rb +13 -0
  45. data/app/models/spree/calculator/shipping/fedex/priority_overnight.rb +13 -0
  46. data/app/models/spree/calculator/shipping/fedex/priority_overnight_saturday_delivery.rb +11 -0
  47. data/app/models/spree/calculator/shipping/fedex/saver.rb +11 -0
  48. data/app/models/spree/calculator/shipping/fedex/standard_overnight.rb +11 -0
  49. data/app/models/spree/calculator/shipping/fedex/three_day_freight.rb +11 -0
  50. data/app/models/spree/calculator/shipping/fedex/three_day_freight_saturday_delivery.rb +11 -0
  51. data/app/models/spree/calculator/shipping/fedex/two_day.rb +11 -0
  52. data/app/models/spree/calculator/shipping/fedex/two_day_freight.rb +11 -0
  53. data/app/models/spree/calculator/shipping/fedex/two_day_freight_saturday_delivery.rb +11 -0
  54. data/app/models/spree/calculator/shipping/fedex/two_day_saturday_delivery.rb +11 -0
  55. data/app/models/spree/calculator/shipping/ups/base.rb +30 -0
  56. data/app/models/spree/calculator/shipping/ups/express.rb +11 -0
  57. data/app/models/spree/calculator/shipping/ups/ground.rb +11 -0
  58. data/app/models/spree/calculator/shipping/ups/next_day_air.rb +11 -0
  59. data/app/models/spree/calculator/shipping/ups/next_day_air_early_am.rb +11 -0
  60. data/app/models/spree/calculator/shipping/ups/next_day_air_saver.rb +11 -0
  61. data/app/models/spree/calculator/shipping/ups/saver.rb +11 -0
  62. data/app/models/spree/calculator/shipping/ups/second_day_air.rb +11 -0
  63. data/app/models/spree/calculator/shipping/ups/standard.rb +11 -0
  64. data/app/models/spree/calculator/shipping/ups/three_day_select.rb +11 -0
  65. data/app/models/spree/calculator/shipping/ups/worldwide_expedited.rb +11 -0
  66. data/app/models/spree/calculator/shipping/usps/base.rb +84 -0
  67. data/app/models/spree/calculator/shipping/usps/express_mail.rb +19 -0
  68. data/app/models/spree/calculator/shipping/usps/express_mail_international.rb +46 -0
  69. data/app/models/spree/calculator/shipping/usps/first_class_mail_international.rb +31 -0
  70. data/app/models/spree/calculator/shipping/usps/first_class_mail_international_large_envelope.rb +31 -0
  71. data/app/models/spree/calculator/shipping/usps/first_class_mail_parcel.rb +28 -0
  72. data/app/models/spree/calculator/shipping/usps/first_class_package_international.rb +49 -0
  73. data/app/models/spree/calculator/shipping/usps/global_express_guaranteed.rb +48 -0
  74. data/app/models/spree/calculator/shipping/usps/media_mail.rb +19 -0
  75. data/app/models/spree/calculator/shipping/usps/priority_mail.rb +19 -0
  76. data/app/models/spree/calculator/shipping/usps/priority_mail_flat_rate_envelope.rb +19 -0
  77. data/app/models/spree/calculator/shipping/usps/priority_mail_international.rb +49 -0
  78. data/app/models/spree/calculator/shipping/usps/priority_mail_international_large_flat_rate_box.rb +43 -0
  79. data/app/models/spree/calculator/shipping/usps/priority_mail_international_medium_flat_rate_box.rb +43 -0
  80. data/app/models/spree/calculator/shipping/usps/priority_mail_international_small_flat_rate_box.rb +43 -0
  81. data/app/models/spree/calculator/shipping/usps/priority_mail_large_flat_rate_box.rb +19 -0
  82. data/app/models/spree/calculator/shipping/usps/priority_mail_medium_flat_rate_box.rb +19 -0
  83. data/app/models/spree/calculator/shipping/usps/priority_mail_small_flat_rate_box.rb +19 -0
  84. data/app/models/spree/calculator/shipping/usps/standard_post.rb +19 -0
  85. data/app/models/spree/content_item_decorator.rb +7 -0
  86. data/app/models/spree/line_item_decorator.rb +4 -0
  87. data/app/models/spree/package_builder.rb +114 -0
  88. data/app/models/spree/product_decorator.rb +10 -0
  89. data/app/models/spree/product_package.rb +10 -0
  90. data/app/models/spree/stock_location_decorator.rb +10 -0
  91. data/app/models/spree/variant_decorator.rb +3 -0
  92. data/app/overrides/spree/admin/shared/_configuration_menu/add_active_shipping_settings_tab.html.erb.deface +3 -0
  93. data/app/overrides/spree/admin/shared/_product_tabs/add_product_packages_tab.html.erb.deface +7 -0
  94. data/app/views/spree/admin/active_shipping_settings/edit.html.erb +92 -0
  95. data/app/views/spree/admin/product_packages/_form.html.erb +24 -0
  96. data/app/views/spree/admin/product_packages/edit.html.erb +15 -0
  97. data/app/views/spree/admin/product_packages/index.html.erb +46 -0
  98. data/app/views/spree/admin/product_packages/new.html.erb +15 -0
  99. data/config/locales/en.yml +93 -0
  100. data/config/locales/fr.yml +12 -0
  101. data/config/routes.rb +9 -0
  102. data/db/migrate/20130107030221_create_product_packages.rb +12 -0
  103. data/lib/solidus_active_shipping.rb +3 -0
  104. data/lib/solidus_active_shipping/engine.rb +44 -0
  105. data/lib/spree/active_shipping_configuration.rb +24 -0
  106. data/lib/spree/shipping_error.rb +3 -0
  107. data/solidus_active_shipping.gemspec +33 -0
  108. data/spec/cassettes/Checkout/with_valid_shipping_address/does_not_break_the_per-item_shipping_method_calculator.yml +134 -0
  109. data/spec/cassettes/FedEx_calculators/with_Canadian_origin_address/Spree_Calculator_Shipping_Fedex_Ground/1_1_1_1.yml +48 -0
  110. data/spec/cassettes/FedEx_calculators/with_Canadian_origin_address/Spree_Calculator_Shipping_Fedex_InternationalEconomy/1_1_2_1.yml +48 -0
  111. data/spec/cassettes/FedEx_calculators/with_Canadian_origin_address/Spree_Calculator_Shipping_Fedex_InternationalFirst/1_1_3_1.yml +48 -0
  112. data/spec/cassettes/FedEx_calculators/with_Canadian_origin_address/Spree_Calculator_Shipping_Fedex_InternationalPriority/1_1_4_1.yml +48 -0
  113. data/spec/cassettes/FedEx_calculators/with_US_origin_address/Spree_Calculator_Shipping_Fedex_ExpressSaver/1_2_5_1.yml +48 -0
  114. data/spec/cassettes/FedEx_calculators/with_US_origin_address/Spree_Calculator_Shipping_Fedex_FirstOvernight/1_2_1_1.yml +48 -0
  115. data/spec/cassettes/FedEx_calculators/with_US_origin_address/Spree_Calculator_Shipping_Fedex_GroundHomeDelivery/1_2_6_1.yml +48 -0
  116. data/spec/cassettes/FedEx_calculators/with_US_origin_address/Spree_Calculator_Shipping_Fedex_PriorityOvernight/1_2_2_1.yml +48 -0
  117. data/spec/cassettes/FedEx_calculators/with_US_origin_address/Spree_Calculator_Shipping_Fedex_StandardOvernight/1_2_3_1.yml +48 -0
  118. data/spec/cassettes/FedEx_calculators/with_US_origin_address/Spree_Calculator_Shipping_Fedex_TwoDay/1_2_4_1.yml +48 -0
  119. data/spec/cassettes/UPS_calculators/with_Canadian_origin_address/Spree_Calculator_Shipping_Ups_Express/1_1_1_1.yml +103 -0
  120. data/spec/cassettes/UPS_calculators/with_Canadian_origin_address/Spree_Calculator_Shipping_Ups_Saver/1_1_3_1.yml +103 -0
  121. data/spec/cassettes/UPS_calculators/with_Canadian_origin_address/Spree_Calculator_Shipping_Ups_Standard/1_1_4_1.yml +103 -0
  122. data/spec/cassettes/UPS_calculators/with_Canadian_origin_address/Spree_Calculator_Shipping_Ups_ThreeDaySelect/1_1_5_1.yml +103 -0
  123. data/spec/cassettes/UPS_calculators/with_Canadian_origin_address/Spree_Calculator_Shipping_Ups_WorldwideExpedited/1_1_2_1.yml +103 -0
  124. data/spec/cassettes/UPS_calculators/with_US_origin_address/Spree_Calculator_Shipping_Ups_Ground/1_2_1_1.yml +103 -0
  125. data/spec/cassettes/UPS_calculators/with_US_origin_address/Spree_Calculator_Shipping_Ups_NextDayAir/1_2_2_1.yml +103 -0
  126. data/spec/cassettes/UPS_calculators/with_US_origin_address/Spree_Calculator_Shipping_Ups_NextDayAirEarlyAm/1_2_3_1.yml +103 -0
  127. data/spec/cassettes/UPS_calculators/with_US_origin_address/Spree_Calculator_Shipping_Ups_NextDayAirSaver/1_2_4_1.yml +103 -0
  128. data/spec/cassettes/UPS_calculators/with_US_origin_address/Spree_Calculator_Shipping_Ups_SecondDayAir/1_2_5_1.yml +103 -0
  129. data/spec/controllers/admin/active_shipping_settings_controller_spec.rb +38 -0
  130. data/spec/controllers/admin/product_packages_controller_spec.rb +36 -0
  131. data/spec/factories/order_factory_override.rb +46 -0
  132. data/spec/factories/product_package_factory.rb +9 -0
  133. data/spec/factories/state_factory_override.rb +28 -0
  134. data/spec/features/checkout_spec.rb +37 -0
  135. data/spec/fixtures/normal_rates_request.xml +2 -0
  136. data/spec/integrations/calculators/fedex_spec.rb +56 -0
  137. data/spec/integrations/calculators/ups_spec.rb +56 -0
  138. data/spec/lib/spree/active_shipping/bogus_carrier.rb +18 -0
  139. data/spec/lib/spree/calculator/shipping/bogus_calculator.rb +17 -0
  140. data/spec/models/active_shipping_calculator_spec.rb +182 -0
  141. data/spec/models/carriers/usps_calculator_spec.rb +72 -0
  142. data/spec/models/package_builder_spec.rb +173 -0
  143. data/spec/spec.opts +6 -0
  144. data/spec/spec_helper.rb +80 -0
  145. data/spec/support/capybara.rb +24 -0
  146. data/spec/support/checkout_helper.rb +12 -0
  147. data/spec/support/feature_helper.rb +7 -0
  148. data/spec/support/package_helper.rb +9 -0
  149. data/spec/support/shared_contexts/checkout_setup.rb +12 -0
  150. data/spec/support/shared_contexts/package_setup.rb +34 -0
  151. data/spec/support/shared_contexts/shipping_carriers/fedex.rb +15 -0
  152. data/spec/support/shared_contexts/shipping_carriers/ups.rb +14 -0
  153. data/spec/support/shared_contexts/stock_location_setup.rb +26 -0
  154. data/spec/support/web_fixtures.rb +6 -0
  155. metadata +444 -0
@@ -0,0 +1,3 @@
1
+ module Spree
2
+ class ShippingError < RuntimeError; end
3
+ end
@@ -0,0 +1,33 @@
1
+ # -*- encoding: utf-8 -*-
2
+
3
+ Gem::Specification.new do |s|
4
+ s.platform = Gem::Platform::RUBY
5
+ s.name = 'solidus_active_shipping'
6
+ s.version = '1.0.0'
7
+ s.author = ['Solidus Team']
8
+ s.email = 'contact@solidus.io'
9
+ s.homepage = 'http://solidus.io'
10
+ s.summary = 'Solidus extension for the active_shipping plugin.'
11
+ s.description = 'Provide shipping rates and tracking for Active Merchant carriers'
12
+ s.required_ruby_version = '>= 1.9.3'
13
+ s.rubygems_version = '1.3.6'
14
+
15
+ s.files = `git ls-files`.split("\n")
16
+ s.test_files = `git ls-files -- {test,spec,features}/*`.split("\n")
17
+ s.require_paths = ["lib"]
18
+
19
+ s.add_dependency 'solidus', ['> 1.0', '<3']
20
+ s.add_dependency 'active_shipping', '~> 1.8.0'
21
+ s.add_development_dependency 'pry'
22
+ s.add_development_dependency 'webmock'
23
+ s.add_development_dependency 'simplecov'
24
+ s.add_development_dependency 'rspec-rails', '~> 3.5'
25
+ s.add_development_dependency 'rspec-activemodel-mocks'
26
+ s.add_development_dependency 'database_cleaner', '~> 1.2'
27
+ s.add_development_dependency 'capybara', '~> 2.7'
28
+ s.add_development_dependency 'poltergeist', '~> 1.9'
29
+ s.add_development_dependency 'vcr'
30
+ s.add_development_dependency 'factory_girl_rails'
31
+ s.add_development_dependency 'capybara-screenshot'
32
+ s.add_dependency 'carmen', '~> 1.0.0'
33
+ end
@@ -0,0 +1,134 @@
1
+ ---
2
+ http_interactions:
3
+ - request:
4
+ method: get
5
+ uri: http://127.0.0.1:50455/__identify__
6
+ body:
7
+ encoding: US-ASCII
8
+ string: ''
9
+ headers:
10
+ Accept-Encoding:
11
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
12
+ Accept:
13
+ - "*/*"
14
+ User-Agent:
15
+ - Ruby
16
+ response:
17
+ status:
18
+ code: 200
19
+ message: 'OK '
20
+ headers:
21
+ Server:
22
+ - WEBrick/1.3.1 (Ruby/2.1.2/2014-05-08)
23
+ Date:
24
+ - Thu, 02 Jun 2016 04:04:41 GMT
25
+ Content-Length:
26
+ - '14'
27
+ Connection:
28
+ - Keep-Alive
29
+ body:
30
+ encoding: UTF-8
31
+ string: '70361354367900'
32
+ http_version:
33
+ recorded_at: Thu, 02 Jun 2016 04:04:41 GMT
34
+ - request:
35
+ method: post
36
+ uri: https://wwwcie.ups.com/ups.app/xml/Rate
37
+ body:
38
+ encoding: UTF-8
39
+ string: |
40
+ <?xml version="1.0"?>
41
+ <AccessRequest>
42
+ <AccessLicenseNumber>9D0B1B1E0A6389A8</AccessLicenseNumber>
43
+ <UserId>solidusdev</UserId>
44
+ <Password>S0lidusdev</Password>
45
+ </AccessRequest>
46
+ <?xml version="1.0"?>
47
+ <RatingServiceSelectionRequest>
48
+ <Request>
49
+ <RequestAction>Rate</RequestAction>
50
+ <RequestOption>Shop</RequestOption>
51
+ </Request>
52
+ <PickupType>
53
+ <Code>01</Code>
54
+ </PickupType>
55
+ <CustomerClassification>
56
+ <Code>01</Code>
57
+ </CustomerClassification>
58
+ <Shipment>
59
+ <Shipper>
60
+ <Address>
61
+ <City>Washington</City>
62
+ <StateProvinceCode>DC</StateProvinceCode>
63
+ <PostalCode>20500</PostalCode>
64
+ <CountryCode>US</CountryCode>
65
+ <ResidentialAddressIndicator>true</ResidentialAddressIndicator>
66
+ </Address>
67
+ </Shipper>
68
+ <ShipTo>
69
+ <Address>
70
+ <City>Dallas</City>
71
+ <StateProvinceCode>TX</StateProvinceCode>
72
+ <PostalCode>75227</PostalCode>
73
+ <CountryCode>US</CountryCode>
74
+ <ResidentialAddressIndicator>true</ResidentialAddressIndicator>
75
+ </Address>
76
+ </ShipTo>
77
+ <Package>
78
+ <PackagingType>
79
+ <Code>02</Code>
80
+ </PackagingType>
81
+ <Dimensions>
82
+ <UnitOfMeasurement>
83
+ <Code>IN</Code>
84
+ </UnitOfMeasurement>
85
+ <Length>0.1</Length>
86
+ <Width>0.1</Width>
87
+ <Height>0.1</Height>
88
+ </Dimensions>
89
+ <PackageWeight>
90
+ <UnitOfMeasurement>
91
+ <Code>LBS</Code>
92
+ </UnitOfMeasurement>
93
+ <Weight>2.0</Weight>
94
+ </PackageWeight>
95
+ <PackageServiceOptions/>
96
+ </Package>
97
+ </Shipment>
98
+ </RatingServiceSelectionRequest>
99
+ headers:
100
+ Content-Type:
101
+ - application/x-www-form-urlencoded
102
+ Accept-Encoding:
103
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
104
+ Accept:
105
+ - "*/*"
106
+ User-Agent:
107
+ - Ruby
108
+ response:
109
+ status:
110
+ code: 200
111
+ message: OK
112
+ headers:
113
+ Date:
114
+ - Thu, 02 Jun 2016 04:04:47 GMT
115
+ Server:
116
+ - Apache
117
+ X-Frame-Options:
118
+ - SAMEORIGIN
119
+ Pragma:
120
+ - no-cache
121
+ Content-Length:
122
+ - '7192'
123
+ X-Content-Type-Options:
124
+ - nosniff
125
+ Content-Type:
126
+ - application/xml
127
+ body:
128
+ encoding: UTF-8
129
+ string: |-
130
+ <?xml version="1.0"?>
131
+ <RatingServiceSelectionResponse><Response><ResponseStatusCode>1</ResponseStatusCode><ResponseStatusDescription>Success</ResponseStatusDescription></Response><RatedShipment><Service><Code>03</Code></Service><RatedShipmentWarning>Your invoice may vary from the displayed reference rates</RatedShipmentWarning><BillingWeight><UnitOfMeasurement><Code>LBS</Code></UnitOfMeasurement><Weight>2.0</Weight></BillingWeight><TransportationCharges><CurrencyCode>USD</CurrencyCode><MonetaryValue>13.31</MonetaryValue></TransportationCharges><ServiceOptionsCharges><CurrencyCode>USD</CurrencyCode><MonetaryValue>0.00</MonetaryValue></ServiceOptionsCharges><TotalCharges><CurrencyCode>USD</CurrencyCode><MonetaryValue>13.31</MonetaryValue></TotalCharges><GuaranteedDaysToDelivery/><ScheduledDeliveryTime/><RatedPackage><TransportationCharges><CurrencyCode>USD</CurrencyCode><MonetaryValue>13.31</MonetaryValue></TransportationCharges><ServiceOptionsCharges><CurrencyCode>USD</CurrencyCode><MonetaryValue>0.00</MonetaryValue></ServiceOptionsCharges><TotalCharges><CurrencyCode>USD</CurrencyCode><MonetaryValue>13.31</MonetaryValue></TotalCharges><Weight>2.0</Weight><BillingWeight><UnitOfMeasurement><Code>LBS</Code></UnitOfMeasurement><Weight>2.0</Weight></BillingWeight></RatedPackage></RatedShipment><RatedShipment><Service><Code>12</Code></Service><RatedShipmentWarning>Your invoice may vary from the displayed reference rates</RatedShipmentWarning><BillingWeight><UnitOfMeasurement><Code>LBS</Code></UnitOfMeasurement><Weight>2.0</Weight></BillingWeight><TransportationCharges><CurrencyCode>USD</CurrencyCode><MonetaryValue>22.55</MonetaryValue></TransportationCharges><ServiceOptionsCharges><CurrencyCode>USD</CurrencyCode><MonetaryValue>0.00</MonetaryValue></ServiceOptionsCharges><TotalCharges><CurrencyCode>USD</CurrencyCode><MonetaryValue>22.55</MonetaryValue></TotalCharges><GuaranteedDaysToDelivery>3</GuaranteedDaysToDelivery><ScheduledDeliveryTime/><RatedPackage><TransportationCharges><CurrencyCode>USD</CurrencyCode><MonetaryValue>22.55</MonetaryValue></TransportationCharges><ServiceOptionsCharges><CurrencyCode>USD</CurrencyCode><MonetaryValue>0.00</MonetaryValue></ServiceOptionsCharges><TotalCharges><CurrencyCode>USD</CurrencyCode><MonetaryValue>22.55</MonetaryValue></TotalCharges><Weight>2.0</Weight><BillingWeight><UnitOfMeasurement><Code>LBS</Code></UnitOfMeasurement><Weight>2.0</Weight></BillingWeight></RatedPackage></RatedShipment><RatedShipment><Service><Code>02</Code></Service><RatedShipmentWarning>Your invoice may vary from the displayed reference rates</RatedShipmentWarning><BillingWeight><UnitOfMeasurement><Code>LBS</Code></UnitOfMeasurement><Weight>2.0</Weight></BillingWeight><TransportationCharges><CurrencyCode>USD</CurrencyCode><MonetaryValue>30.19</MonetaryValue></TransportationCharges><ServiceOptionsCharges><CurrencyCode>USD</CurrencyCode><MonetaryValue>0.00</MonetaryValue></ServiceOptionsCharges><TotalCharges><CurrencyCode>USD</CurrencyCode><MonetaryValue>30.19</MonetaryValue></TotalCharges><GuaranteedDaysToDelivery>2</GuaranteedDaysToDelivery><ScheduledDeliveryTime/><RatedPackage><TransportationCharges><CurrencyCode>USD</CurrencyCode><MonetaryValue>30.19</MonetaryValue></TransportationCharges><ServiceOptionsCharges><CurrencyCode>USD</CurrencyCode><MonetaryValue>0.00</MonetaryValue></ServiceOptionsCharges><TotalCharges><CurrencyCode>USD</CurrencyCode><MonetaryValue>30.19</MonetaryValue></TotalCharges><Weight>2.0</Weight><BillingWeight><UnitOfMeasurement><Code>LBS</Code></UnitOfMeasurement><Weight>2.0</Weight></BillingWeight></RatedPackage></RatedShipment><RatedShipment><Service><Code>13</Code></Service><RatedShipmentWarning>Your invoice may vary from the displayed reference rates</RatedShipmentWarning><BillingWeight><UnitOfMeasurement><Code>LBS</Code></UnitOfMeasurement><Weight>2.0</Weight></BillingWeight><TransportationCharges><CurrencyCode>USD</CurrencyCode><MonetaryValue>64.57</MonetaryValue></TransportationCharges><ServiceOptionsCharges><CurrencyCode>USD</CurrencyCode><MonetaryValue>0.00</MonetaryValue></ServiceOptionsCharges><TotalCharges><CurrencyCode>USD</CurrencyCode><MonetaryValue>64.57</MonetaryValue></TotalCharges><GuaranteedDaysToDelivery>1</GuaranteedDaysToDelivery><ScheduledDeliveryTime/><RatedPackage><TransportationCharges><CurrencyCode>USD</CurrencyCode><MonetaryValue>64.57</MonetaryValue></TransportationCharges><ServiceOptionsCharges><CurrencyCode>USD</CurrencyCode><MonetaryValue>0.00</MonetaryValue></ServiceOptionsCharges><TotalCharges><CurrencyCode>USD</CurrencyCode><MonetaryValue>64.57</MonetaryValue></TotalCharges><Weight>2.0</Weight><BillingWeight><UnitOfMeasurement><Code>LBS</Code></UnitOfMeasurement><Weight>2.0</Weight></BillingWeight></RatedPackage></RatedShipment><RatedShipment><Service><Code>14</Code></Service><RatedShipmentWarning>Your invoice may vary from the displayed reference rates</RatedShipmentWarning><BillingWeight><UnitOfMeasurement><Code>LBS</Code></UnitOfMeasurement><Weight>2.0</Weight></BillingWeight><TransportationCharges><CurrencyCode>USD</CurrencyCode><MonetaryValue>99.64</MonetaryValue></TransportationCharges><ServiceOptionsCharges><CurrencyCode>USD</CurrencyCode><MonetaryValue>0.00</MonetaryValue></ServiceOptionsCharges><TotalCharges><CurrencyCode>USD</CurrencyCode><MonetaryValue>99.64</MonetaryValue></TotalCharges><GuaranteedDaysToDelivery>1</GuaranteedDaysToDelivery><ScheduledDeliveryTime>8:00 A.M.</ScheduledDeliveryTime><RatedPackage><TransportationCharges><CurrencyCode>USD</CurrencyCode><MonetaryValue>99.64</MonetaryValue></TransportationCharges><ServiceOptionsCharges><CurrencyCode>USD</CurrencyCode><MonetaryValue>0.00</MonetaryValue></ServiceOptionsCharges><TotalCharges><CurrencyCode>USD</CurrencyCode><MonetaryValue>99.64</MonetaryValue></TotalCharges><Weight>2.0</Weight><BillingWeight><UnitOfMeasurement><Code>LBS</Code></UnitOfMeasurement><Weight>2.0</Weight></BillingWeight></RatedPackage></RatedShipment><RatedShipment><Service><Code>01</Code></Service><RatedShipmentWarning>Your invoice may vary from the displayed reference rates</RatedShipmentWarning><BillingWeight><UnitOfMeasurement><Code>LBS</Code></UnitOfMeasurement><Weight>2.0</Weight></BillingWeight><TransportationCharges><CurrencyCode>USD</CurrencyCode><MonetaryValue>68.81</MonetaryValue></TransportationCharges><ServiceOptionsCharges><CurrencyCode>USD</CurrencyCode><MonetaryValue>0.00</MonetaryValue></ServiceOptionsCharges><TotalCharges><CurrencyCode>USD</CurrencyCode><MonetaryValue>68.81</MonetaryValue></TotalCharges><GuaranteedDaysToDelivery>1</GuaranteedDaysToDelivery><ScheduledDeliveryTime>10:30 A.M.</ScheduledDeliveryTime><RatedPackage><TransportationCharges><CurrencyCode>USD</CurrencyCode><MonetaryValue>68.81</MonetaryValue></TransportationCharges><ServiceOptionsCharges><CurrencyCode>USD</CurrencyCode><MonetaryValue>0.00</MonetaryValue></ServiceOptionsCharges><TotalCharges><CurrencyCode>USD</CurrencyCode><MonetaryValue>68.81</MonetaryValue></TotalCharges><Weight>2.0</Weight><BillingWeight><UnitOfMeasurement><Code>LBS</Code></UnitOfMeasurement><Weight>2.0</Weight></BillingWeight></RatedPackage></RatedShipment></RatingServiceSelectionResponse>
132
+ http_version:
133
+ recorded_at: Thu, 02 Jun 2016 04:04:48 GMT
134
+ recorded_with: VCR 3.0.3
@@ -0,0 +1,48 @@
1
+ ---
2
+ http_interactions:
3
+ - request:
4
+ method: post
5
+ uri: https://gatewaybeta.fedex.com/xml
6
+ body:
7
+ encoding: UTF-8
8
+ string: <?xml version="1.0"?><RateRequest xmlns="http://fedex.com/ws/rate/v13"> <WebAuthenticationDetail> <UserCredential> <Key>xkBPuqiFmGrOU4jL</Key> <Password>UGu5boYODXZ2GEDyUN4Xi1v8E</Password> </UserCredential> </WebAuthenticationDetail> <ClientDetail> <AccountNumber>510087143</AccountNumber> <MeterNumber>118723830</MeterNumber> </ClientDetail> <TransactionDetail> <CustomerTransactionId>ActiveShipping</CustomerTransactionId> </TransactionDetail> <Version> <ServiceId>crs</ServiceId> <Major>13</Major> <Intermediate>0</Intermediate> <Minor>0</Minor> </Version> <ReturnTransitAndCommit>true</ReturnTransitAndCommit> <VariableOptions>SATURDAY_DELIVERY</VariableOptions> <RequestedShipment> <ShipTimestamp>2016-06-02T13:03:50-07:00</ShipTimestamp> <DropoffType>REGULAR_PICKUP</DropoffType> <PackagingType>YOUR_PACKAGING</PackagingType> <Shipper> <Address> <City>Ottawa</City> <PostalCode>K1P1J1</PostalCode> <CountryCode>CA</CountryCode> <Residential>true</Residential> </Address> </Shipper> <Recipient> <Address> <City>Chicago</City> <PostalCode>60601</PostalCode> <CountryCode>US</CountryCode> <Residential>true</Residential> </Address> </Recipient> <SmartPostDetail> <Indicia>PARCEL_SELECT</Indicia> <HubId>5902</HubId> </SmartPostDetail> <RateRequestTypes>ACCOUNT</RateRequestTypes> <PackageCount>1</PackageCount> <RequestedPackageLineItems> <GroupPackageCount>1</GroupPackageCount> <Weight> <Units>KG</Units> <Value>2.722</Value> </Weight> <Dimensions> <Length>0</Length> <Width>0</Width> <Height>0</Height> <Units>CM</Units> </Dimensions> </RequestedPackageLineItems> </RequestedShipment></RateRequest>
9
+ headers:
10
+ Content-Type:
11
+ - application/x-www-form-urlencoded
12
+ Accept-Encoding:
13
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
14
+ Accept:
15
+ - "*/*"
16
+ User-Agent:
17
+ - Ruby
18
+ response:
19
+ status:
20
+ code: 200
21
+ message: OK
22
+ headers:
23
+ Date:
24
+ - Thu, 02 Jun 2016 20:03:48 GMT
25
+ Server:
26
+ - Apache
27
+ Set-Cookie:
28
+ - siteDC=edc; path=/; domain=.fedex.com; expires=Fri, 03-Jun-2016 20:03:48 GMT
29
+ X-Wily-Servlet:
30
+ - Encrypt1 GaMcoOotgOSMyoYj73M4dsxJg8pg+egXqWxT0tlCBMozxB2FJoHW86iPptGsWeEMNrrhgg+c1uCrVTL453EE8LUyyZJ0ssHZDmgz/H0Xk331Sy1KEH2kUmXY7Mq3Tf+CyAmbXK8JjF6RZJWckE3OL5FQ0h4zD8tSL5zHKwxDEeTHZAvftt3chNV1nKLq8CSBhOs/iCVbRaazxX4Jrv8/nw==
31
+ X-Powered-By:
32
+ - Servlet/2.5 JSP/2.1
33
+ X-Wily-Info:
34
+ - Clear guid=12B6F7B9CC87128A0DFC1C13145F1E54
35
+ Vary:
36
+ - Accept-Encoding
37
+ Transfer-Encoding:
38
+ - chunked
39
+ Content-Type:
40
+ - text/xml; charset=utf-8
41
+ body:
42
+ encoding: ASCII-8BIT
43
+ string: |-
44
+ <?xml version="1.0" encoding="UTF-8"?>
45
+ <RateReply xmlns="http://fedex.com/ws/rate/v13" xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/"><HighestSeverity>NOTE</HighestSeverity><Notifications><Severity>NOTE</Severity><Source>crs</Source><Code>886</Code><Message>Money Back Guarantee is not eligible for this pick up/delivery postal/zip code. </Message><LocalizedMessage>Money Back Guarantee is not eligible for this pick up/delivery postal/zip code. </LocalizedMessage></Notifications><Notifications><Severity>NOTE</Severity><Source>crs</Source><Code>886</Code><Message>Money Back Guarantee is not eligible for this pick up/delivery postal/zip code. FDXG</Message><LocalizedMessage>Money Back Guarantee is not eligible for this pick up/delivery postal/zip code. FDXG</LocalizedMessage><MessageParameters><Id>OPERATING_COMPANY</Id><Value>FDXG</Value></MessageParameters></Notifications><Notifications><Severity>NOTE</Severity><Source>crs</Source><Code>819</Code><Message>The origin state/province code has been changed. </Message><LocalizedMessage>The origin state/province code has been changed. </LocalizedMessage></Notifications><Notifications><Severity>NOTE</Severity><Source>crs</Source><Code>820</Code><Message>The destination state/province code has been changed. </Message><LocalizedMessage>The destination state/province code has been changed. </LocalizedMessage></Notifications><TransactionDetail><CustomerTransactionId>ActiveShipping</CustomerTransactionId></TransactionDetail><Version><ServiceId>crs</ServiceId><Major>13</Major><Intermediate>0</Intermediate><Minor>0</Minor></Version><RateReplyDetails><ServiceType>INTERNATIONAL_FIRST</ServiceType><PackagingType>YOUR_PACKAGING</PackagingType><DeliveryStation>CHIA </DeliveryStation><DeliveryDayOfWeek>FRI</DeliveryDayOfWeek><DeliveryTimestamp>2016-06-03T08:00:00</DeliveryTimestamp><CommitDetails><CommodityName>DOCUMENTS</CommodityName><ServiceType>INTERNATIONAL_FIRST</ServiceType><CommitTimestamp>2016-06-03T08:00:00</CommitTimestamp><DayOfWeek>FRI</DayOfWeek><DestinationServiceArea>A1</DestinationServiceArea><BrokerToDestinationDays>0</BrokerToDestinationDays><CommitMessages><Code>134</Code><Message>REQUEST COMPLETED</Message></CommitMessages><DeliveryMessages> 8:00 A.M. IF NO CUSTOMS DELAY</DeliveryMessages><DocumentContent>DOCUMENTS_ONLY</DocumentContent><RequiredDocuments>INTERNATIONAL_AIRWAY_BILL</RequiredDocuments></CommitDetails><DestinationAirportId>ORD</DestinationAirportId><IneligibleForMoneyBackGuarantee>false</IneligibleForMoneyBackGuarantee><OriginServiceArea>AM</OriginServiceArea><DestinationServiceArea>A1</DestinationServiceArea><SignatureOption>INDIRECT</SignatureOption><ActualRateType>PAYOR_ACCOUNT_SHIPMENT</ActualRateType><RatedShipmentDetails><ShipmentRateDetail><RateType>PAYOR_ACCOUNT_SHIPMENT</RateType><RateScale>0000000</RateScale><RateZone>CA003O</RateZone><PricingCode>ACTUAL</PricingCode><RatedWeightMethod>ACTUAL</RatedWeightMethod><CurrencyExchangeRate><FromCurrency>CAD</FromCurrency><IntoCurrency>USD</IntoCurrency><Rate>0.7</Rate></CurrencyExchangeRate><DimDivisor>0</DimDivisor><FuelSurchargePercent>0.75</FuelSurchargePercent><TotalBillingWeight><Units>KG</Units><Value>2.72</Value></TotalBillingWeight><TotalBaseCharge><Currency>USD</Currency><Amount>164.72</Amount></TotalBaseCharge><TotalFreightDiscounts><Currency>USD</Currency><Amount>0.0</Amount></TotalFreightDiscounts><TotalNetFreight><Currency>USD</Currency><Amount>164.72</Amount></TotalNetFreight><TotalSurcharges><Currency>USD</Currency><Amount>3.71</Amount></TotalSurcharges><TotalNetFedExCharge><Currency>USD</Currency><Amount>168.43</Amount></TotalNetFedExCharge><TotalTaxes><Currency>USD</Currency><Amount>0.0</Amount></TotalTaxes><TotalNetCharge><Currency>USD</Currency><Amount>168.43</Amount></TotalNetCharge><TotalRebates><Currency>USD</Currency><Amount>0.0</Amount></TotalRebates><TotalDutiesAndTaxes><Currency>USD</Currency><Amount>0.0</Amount></TotalDutiesAndTaxes><TotalNetChargeWithDutiesAndTaxes><Currency>USD</Currency><Amount>168.43</Amount></TotalNetChargeWithDutiesAndTaxes><Surcharges><SurchargeType>RESIDENTIAL_DELIVERY</SurchargeType><Description>Residential delivery</Description><Amount><Currency>USD</Currency><Amount>2.45</Amount></Amount></Surcharges><Surcharges><SurchargeType>FUEL</SurchargeType><Description>Fuel</Description><Amount><Currency>USD</Currency><Amount>1.26</Amount></Amount></Surcharges></ShipmentRateDetail></RatedShipmentDetails><RatedShipmentDetails><ShipmentRateDetail><RateType>RATED_ACCOUNT_SHIPMENT</RateType><RateScale>0000000</RateScale><RateZone>CA003O</RateZone><PricingCode>ACTUAL</PricingCode><RatedWeightMethod>ACTUAL</RatedWeightMethod><CurrencyExchangeRate><FromCurrency>CAD</FromCurrency><IntoCurrency>CAD</IntoCurrency><Rate>1.0</Rate></CurrencyExchangeRate><DimDivisor>0</DimDivisor><FuelSurchargePercent>0.75</FuelSurchargePercent><TotalBillingWeight><Units>KG</Units><Value>2.72</Value></TotalBillingWeight><TotalBaseCharge><Currency>CAD</Currency><Amount>234.85</Amount></TotalBaseCharge><TotalFreightDiscounts><Currency>CAD</Currency><Amount>0.0</Amount></TotalFreightDiscounts><TotalNetFreight><Currency>CAD</Currency><Amount>234.85</Amount></TotalNetFreight><TotalSurcharges><Currency>CAD</Currency><Amount>5.29</Amount></TotalSurcharges><TotalNetFedExCharge><Currency>CAD</Currency><Amount>240.14</Amount></TotalNetFedExCharge><TotalTaxes><Currency>CAD</Currency><Amount>0.0</Amount></TotalTaxes><TotalNetCharge><Currency>CAD</Currency><Amount>240.14</Amount></TotalNetCharge><TotalRebates><Currency>CAD</Currency><Amount>0.0</Amount></TotalRebates><TotalDutiesAndTaxes><Currency>CAD</Currency><Amount>0.0</Amount></TotalDutiesAndTaxes><TotalNetChargeWithDutiesAndTaxes><Currency>CAD</Currency><Amount>240.14</Amount></TotalNetChargeWithDutiesAndTaxes><Surcharges><SurchargeType>RESIDENTIAL_DELIVERY</SurchargeType><Description>Residential delivery</Description><Amount><Currency>CAD</Currency><Amount>3.5</Amount></Amount></Surcharges><Surcharges><SurchargeType>FUEL</SurchargeType><Description>Fuel</Description><Amount><Currency>CAD</Currency><Amount>1.79</Amount></Amount></Surcharges></ShipmentRateDetail></RatedShipmentDetails></RateReplyDetails><RateReplyDetails><ServiceType>INTERNATIONAL_PRIORITY</ServiceType><PackagingType>YOUR_PACKAGING</PackagingType><DeliveryStation>CHIA </DeliveryStation><DeliveryDayOfWeek>FRI</DeliveryDayOfWeek><DeliveryTimestamp>2016-06-03T10:30:00</DeliveryTimestamp><CommitDetails><CommodityName>DOCUMENTS</CommodityName><ServiceType>INTERNATIONAL_PRIORITY</ServiceType><CommitTimestamp>2016-06-03T10:30:00</CommitTimestamp><DayOfWeek>FRI</DayOfWeek><DestinationServiceArea>A1</DestinationServiceArea><BrokerToDestinationDays>0</BrokerToDestinationDays><CommitMessages><Code>134</Code><Message>REQUEST COMPLETED</Message></CommitMessages><DeliveryMessages>10:30 A.M. IF NO CUSTOMS DELAY</DeliveryMessages><DocumentContent>DOCUMENTS_ONLY</DocumentContent><RequiredDocuments>INTERNATIONAL_AIRWAY_BILL</RequiredDocuments></CommitDetails><DestinationAirportId>ORD</DestinationAirportId><IneligibleForMoneyBackGuarantee>false</IneligibleForMoneyBackGuarantee><OriginServiceArea>AM</OriginServiceArea><DestinationServiceArea>A1</DestinationServiceArea><SignatureOption>INDIRECT</SignatureOption><ActualRateType>PAYOR_ACCOUNT_SHIPMENT</ActualRateType><RatedShipmentDetails><ShipmentRateDetail><RateType>PAYOR_ACCOUNT_SHIPMENT</RateType><RateScale>0000000</RateScale><RateZone>CA003O</RateZone><PricingCode>ACTUAL</PricingCode><RatedWeightMethod>ACTUAL</RatedWeightMethod><CurrencyExchangeRate><FromCurrency>CAD</FromCurrency><IntoCurrency>USD</IntoCurrency><Rate>0.7</Rate></CurrencyExchangeRate><DimDivisor>0</DimDivisor><FuelSurchargePercent>0.75</FuelSurchargePercent><TotalBillingWeight><Units>KG</Units><Value>2.72</Value></TotalBillingWeight><TotalBaseCharge><Currency>USD</Currency><Amount>101.95</Amount></TotalBaseCharge><TotalFreightDiscounts><Currency>USD</Currency><Amount>0.0</Amount></TotalFreightDiscounts><TotalNetFreight><Currency>USD</Currency><Amount>101.95</Amount></TotalNetFreight><TotalSurcharges><Currency>USD</Currency><Amount>3.24</Amount></TotalSurcharges><TotalNetFedExCharge><Currency>USD</Currency><Amount>105.19</Amount></TotalNetFedExCharge><TotalTaxes><Currency>USD</Currency><Amount>0.0</Amount></TotalTaxes><TotalNetCharge><Currency>USD</Currency><Amount>105.19</Amount></TotalNetCharge><TotalRebates><Currency>USD</Currency><Amount>0.0</Amount></TotalRebates><TotalDutiesAndTaxes><Currency>USD</Currency><Amount>0.0</Amount></TotalDutiesAndTaxes><TotalNetChargeWithDutiesAndTaxes><Currency>USD</Currency><Amount>105.19</Amount></TotalNetChargeWithDutiesAndTaxes><Surcharges><SurchargeType>RESIDENTIAL_DELIVERY</SurchargeType><Description>Residential delivery</Description><Amount><Currency>USD</Currency><Amount>2.45</Amount></Amount></Surcharges><Surcharges><SurchargeType>FUEL</SurchargeType><Description>Fuel</Description><Amount><Currency>USD</Currency><Amount>0.79</Amount></Amount></Surcharges></ShipmentRateDetail></RatedShipmentDetails><RatedShipmentDetails><ShipmentRateDetail><RateType>RATED_ACCOUNT_SHIPMENT</RateType><RateScale>0000000</RateScale><RateZone>CA003O</RateZone><PricingCode>ACTUAL</PricingCode><RatedWeightMethod>ACTUAL</RatedWeightMethod><CurrencyExchangeRate><FromCurrency>CAD</FromCurrency><IntoCurrency>CAD</IntoCurrency><Rate>1.0</Rate></CurrencyExchangeRate><DimDivisor>0</DimDivisor><FuelSurchargePercent>0.75</FuelSurchargePercent><TotalBillingWeight><Units>KG</Units><Value>2.72</Value></TotalBillingWeight><TotalBaseCharge><Currency>CAD</Currency><Amount>145.35</Amount></TotalBaseCharge><TotalFreightDiscounts><Currency>CAD</Currency><Amount>0.0</Amount></TotalFreightDiscounts><TotalNetFreight><Currency>CAD</Currency><Amount>145.35</Amount></TotalNetFreight><TotalSurcharges><Currency>CAD</Currency><Amount>4.62</Amount></TotalSurcharges><TotalNetFedExCharge><Currency>CAD</Currency><Amount>149.97</Amount></TotalNetFedExCharge><TotalTaxes><Currency>CAD</Currency><Amount>0.0</Amount></TotalTaxes><TotalNetCharge><Currency>CAD</Currency><Amount>149.97</Amount></TotalNetCharge><TotalRebates><Currency>CAD</Currency><Amount>0.0</Amount></TotalRebates><TotalDutiesAndTaxes><Currency>CAD</Currency><Amount>0.0</Amount></TotalDutiesAndTaxes><TotalNetChargeWithDutiesAndTaxes><Currency>CAD</Currency><Amount>149.97</Amount></TotalNetChargeWithDutiesAndTaxes><Surcharges><SurchargeType>RESIDENTIAL_DELIVERY</SurchargeType><Description>Residential delivery</Description><Amount><Currency>CAD</Currency><Amount>3.5</Amount></Amount></Surcharges><Surcharges><SurchargeType>FUEL</SurchargeType><Description>Fuel</Description><Amount><Currency>CAD</Currency><Amount>1.12</Amount></Amount></Surcharges></ShipmentRateDetail></RatedShipmentDetails></RateReplyDetails><RateReplyDetails><ServiceType>INTERNATIONAL_ECONOMY</ServiceType><PackagingType>YOUR_PACKAGING</PackagingType><DeliveryStation>CHIA </DeliveryStation><DeliveryDayOfWeek>MON</DeliveryDayOfWeek><DeliveryTimestamp>2016-06-06T20:00:00</DeliveryTimestamp><CommitDetails><CommodityName>DOCUMENTS</CommodityName><ServiceType>INTERNATIONAL_ECONOMY</ServiceType><CommitTimestamp>2016-06-06T20:00:00</CommitTimestamp><DayOfWeek>MON</DayOfWeek><DestinationServiceArea>A1</DestinationServiceArea><BrokerToDestinationDays>0</BrokerToDestinationDays><CommitMessages><Code>134</Code><Message>REQUEST COMPLETED</Message></CommitMessages><DeliveryMessages> 8:00 P.M. IF NO CUSTOMS DELAY</DeliveryMessages><DelayDetails><Date>2016-06-04</Date><DayOfWeek>SAT</DayOfWeek><Level>COUNTRY</Level><Point>DESTINATION</Point><Type>NO_SERVICE_AREA_DELIVERY</Type><Description>NO SVC AREA DELIVERY</Description></DelayDetails><DelayDetails><Date>2016-06-05</Date><DayOfWeek>SUN</DayOfWeek><Level>COUNTRY</Level><Point>DESTINATION</Point><Type>NO_SERVICE_AREA_DELIVERY</Type><Description>NO SVC AREA DELIVERY</Description></DelayDetails><DocumentContent>DOCUMENTS_ONLY</DocumentContent><RequiredDocuments>INTERNATIONAL_AIRWAY_BILL</RequiredDocuments></CommitDetails><DestinationAirportId>ORD</DestinationAirportId><IneligibleForMoneyBackGuarantee>false</IneligibleForMoneyBackGuarantee><OriginServiceArea>AM</OriginServiceArea><DestinationServiceArea>A1</DestinationServiceArea><SignatureOption>INDIRECT</SignatureOption><ActualRateType>PAYOR_ACCOUNT_SHIPMENT</ActualRateType><RatedShipmentDetails><ShipmentRateDetail><RateType>PAYOR_ACCOUNT_SHIPMENT</RateType><RateScale>0000000</RateScale><RateZone>CA003O</RateZone><PricingCode>ACTUAL</PricingCode><RatedWeightMethod>ACTUAL</RatedWeightMethod><CurrencyExchangeRate><FromCurrency>CAD</FromCurrency><IntoCurrency>USD</IntoCurrency><Rate>0.7</Rate></CurrencyExchangeRate><DimDivisor>0</DimDivisor><FuelSurchargePercent>0.75</FuelSurchargePercent><TotalBillingWeight><Units>KG</Units><Value>2.72</Value></TotalBillingWeight><TotalBaseCharge><Currency>USD</Currency><Amount>68.56</Amount></TotalBaseCharge><TotalFreightDiscounts><Currency>USD</Currency><Amount>0.0</Amount></TotalFreightDiscounts><TotalNetFreight><Currency>USD</Currency><Amount>68.56</Amount></TotalNetFreight><TotalSurcharges><Currency>USD</Currency><Amount>2.98</Amount></TotalSurcharges><TotalNetFedExCharge><Currency>USD</Currency><Amount>71.54</Amount></TotalNetFedExCharge><TotalTaxes><Currency>USD</Currency><Amount>0.0</Amount></TotalTaxes><TotalNetCharge><Currency>USD</Currency><Amount>71.54</Amount></TotalNetCharge><TotalRebates><Currency>USD</Currency><Amount>0.0</Amount></TotalRebates><TotalDutiesAndTaxes><Currency>USD</Currency><Amount>0.0</Amount></TotalDutiesAndTaxes><TotalNetChargeWithDutiesAndTaxes><Currency>USD</Currency><Amount>71.54</Amount></TotalNetChargeWithDutiesAndTaxes><Surcharges><SurchargeType>RESIDENTIAL_DELIVERY</SurchargeType><Description>Residential delivery</Description><Amount><Currency>USD</Currency><Amount>2.45</Amount></Amount></Surcharges><Surcharges><SurchargeType>FUEL</SurchargeType><Description>Fuel</Description><Amount><Currency>USD</Currency><Amount>0.53</Amount></Amount></Surcharges></ShipmentRateDetail></RatedShipmentDetails><RatedShipmentDetails><ShipmentRateDetail><RateType>RATED_ACCOUNT_SHIPMENT</RateType><RateScale>0000000</RateScale><RateZone>CA003O</RateZone><PricingCode>ACTUAL</PricingCode><RatedWeightMethod>ACTUAL</RatedWeightMethod><CurrencyExchangeRate><FromCurrency>CAD</FromCurrency><IntoCurrency>CAD</IntoCurrency><Rate>1.0</Rate></CurrencyExchangeRate><DimDivisor>0</DimDivisor><FuelSurchargePercent>0.75</FuelSurchargePercent><TotalBillingWeight><Units>KG</Units><Value>2.72</Value></TotalBillingWeight><TotalBaseCharge><Currency>CAD</Currency><Amount>97.75</Amount></TotalBaseCharge><TotalFreightDiscounts><Currency>CAD</Currency><Amount>0.0</Amount></TotalFreightDiscounts><TotalNetFreight><Currency>CAD</Currency><Amount>97.75</Amount></TotalNetFreight><TotalSurcharges><Currency>CAD</Currency><Amount>4.26</Amount></TotalSurcharges><TotalNetFedExCharge><Currency>CAD</Currency><Amount>102.01</Amount></TotalNetFedExCharge><TotalTaxes><Currency>CAD</Currency><Amount>0.0</Amount></TotalTaxes><TotalNetCharge><Currency>CAD</Currency><Amount>102.01</Amount></TotalNetCharge><TotalRebates><Currency>CAD</Currency><Amount>0.0</Amount></TotalRebates><TotalDutiesAndTaxes><Currency>CAD</Currency><Amount>0.0</Amount></TotalDutiesAndTaxes><TotalNetChargeWithDutiesAndTaxes><Currency>CAD</Currency><Amount>102.01</Amount></TotalNetChargeWithDutiesAndTaxes><Surcharges><SurchargeType>RESIDENTIAL_DELIVERY</SurchargeType><Description>Residential delivery</Description><Amount><Currency>CAD</Currency><Amount>3.5</Amount></Amount></Surcharges><Surcharges><SurchargeType>FUEL</SurchargeType><Description>Fuel</Description><Amount><Currency>CAD</Currency><Amount>0.76</Amount></Amount></Surcharges></ShipmentRateDetail></RatedShipmentDetails></RateReplyDetails><RateReplyDetails><ServiceType>FEDEX_GROUND</ServiceType><PackagingType>YOUR_PACKAGING</PackagingType><CommitDetails><ServiceType>FEDEX_GROUND</ServiceType><TransitTime>TWO_DAYS</TransitTime><BrokerToDestinationDays>0</BrokerToDestinationDays></CommitDetails><DestinationAirportId>ORD</DestinationAirportId><IneligibleForMoneyBackGuarantee>true</IneligibleForMoneyBackGuarantee><TransitTime>TWO_DAYS</TransitTime><SignatureOption>SERVICE_DEFAULT</SignatureOption><ActualRateType>PAYOR_ACCOUNT_PACKAGE</ActualRateType><RatedShipmentDetails><ShipmentRateDetail><RateType>PAYOR_ACCOUNT_PACKAGE</RateType><RateZone>52</RateZone><RatedWeightMethod>ACTUAL</RatedWeightMethod><DimDivisor>0</DimDivisor><FuelSurchargePercent>3.0</FuelSurchargePercent><TotalBillingWeight><Units>LB</Units><Value>7.0</Value></TotalBillingWeight><TotalBaseCharge><Currency>CAD</Currency><Amount>24.55</Amount></TotalBaseCharge><TotalFreightDiscounts><Currency>CAD</Currency><Amount>0.0</Amount></TotalFreightDiscounts><TotalNetFreight><Currency>CAD</Currency><Amount>24.55</Amount></TotalNetFreight><TotalSurcharges><Currency>CAD</Currency><Amount>4.35</Amount></TotalSurcharges><TotalNetFedExCharge><Currency>CAD</Currency><Amount>28.9</Amount></TotalNetFedExCharge><TotalTaxes><Currency>CAD</Currency><Amount>0.0</Amount></TotalTaxes><TotalNetCharge><Currency>CAD</Currency><Amount>28.9</Amount></TotalNetCharge><TotalRebates><Currency>CAD</Currency><Amount>0.0</Amount></TotalRebates><TotalDutiesAndTaxes><Currency>CAD</Currency><Amount>0.0</Amount></TotalDutiesAndTaxes><TotalNetChargeWithDutiesAndTaxes><Currency>CAD</Currency><Amount>28.9</Amount></TotalNetChargeWithDutiesAndTaxes><Surcharges><SurchargeType>RESIDENTIAL_DELIVERY</SurchargeType><Level>PACKAGE</Level><Description>Residential delivery</Description><Amount><Currency>CAD</Currency><Amount>3.5</Amount></Amount></Surcharges><Surcharges><SurchargeType>FUEL</SurchargeType><Level>PACKAGE</Level><Description>FedEx Ground Fuel</Description><Amount><Currency>CAD</Currency><Amount>0.85</Amount></Amount></Surcharges></ShipmentRateDetail><RatedPackages><GroupNumber>0</GroupNumber><PackageRateDetail><RateType>PAYOR_ACCOUNT_PACKAGE</RateType><RatedWeightMethod>ACTUAL</RatedWeightMethod><BillingWeight><Units>KG</Units><Value>3.18</Value></BillingWeight><BaseCharge><Currency>CAD</Currency><Amount>24.55</Amount></BaseCharge><TotalFreightDiscounts><Currency>CAD</Currency><Amount>0.0</Amount></TotalFreightDiscounts><NetFreight><Currency>CAD</Currency><Amount>24.55</Amount></NetFreight><TotalSurcharges><Currency>CAD</Currency><Amount>4.35</Amount></TotalSurcharges><NetFedExCharge><Currency>CAD</Currency><Amount>28.9</Amount></NetFedExCharge><TotalTaxes><Currency>CAD</Currency><Amount>0.0</Amount></TotalTaxes><NetCharge><Currency>CAD</Currency><Amount>28.9</Amount></NetCharge><TotalRebates><Currency>CAD</Currency><Amount>0.0</Amount></TotalRebates><Surcharges><SurchargeType>RESIDENTIAL_DELIVERY</SurchargeType><Level>PACKAGE</Level><Description>Residential delivery</Description><Amount><Currency>CAD</Currency><Amount>3.5</Amount></Amount></Surcharges><Surcharges><SurchargeType>FUEL</SurchargeType><Level>PACKAGE</Level><Description>FedEx Ground Fuel</Description><Amount><Currency>CAD</Currency><Amount>0.85</Amount></Amount></Surcharges></PackageRateDetail></RatedPackages></RatedShipmentDetails></RateReplyDetails></RateReply>
46
+ http_version:
47
+ recorded_at: Thu, 02 Jun 2016 20:03:51 GMT
48
+ recorded_with: VCR 3.0.3
@@ -0,0 +1,48 @@
1
+ ---
2
+ http_interactions:
3
+ - request:
4
+ method: post
5
+ uri: https://gatewaybeta.fedex.com/xml
6
+ body:
7
+ encoding: UTF-8
8
+ string: <?xml version="1.0"?><RateRequest xmlns="http://fedex.com/ws/rate/v13"> <WebAuthenticationDetail> <UserCredential> <Key>xkBPuqiFmGrOU4jL</Key> <Password>UGu5boYODXZ2GEDyUN4Xi1v8E</Password> </UserCredential> </WebAuthenticationDetail> <ClientDetail> <AccountNumber>510087143</AccountNumber> <MeterNumber>118723830</MeterNumber> </ClientDetail> <TransactionDetail> <CustomerTransactionId>ActiveShipping</CustomerTransactionId> </TransactionDetail> <Version> <ServiceId>crs</ServiceId> <Major>13</Major> <Intermediate>0</Intermediate> <Minor>0</Minor> </Version> <ReturnTransitAndCommit>true</ReturnTransitAndCommit> <VariableOptions>SATURDAY_DELIVERY</VariableOptions> <RequestedShipment> <ShipTimestamp>2016-06-02T13:03:52-07:00</ShipTimestamp> <DropoffType>REGULAR_PICKUP</DropoffType> <PackagingType>YOUR_PACKAGING</PackagingType> <Shipper> <Address> <City>Ottawa</City> <PostalCode>K1P1J1</PostalCode> <CountryCode>CA</CountryCode> <Residential>true</Residential> </Address> </Shipper> <Recipient> <Address> <City>Chicago</City> <PostalCode>60601</PostalCode> <CountryCode>US</CountryCode> <Residential>true</Residential> </Address> </Recipient> <SmartPostDetail> <Indicia>PARCEL_SELECT</Indicia> <HubId>5902</HubId> </SmartPostDetail> <RateRequestTypes>ACCOUNT</RateRequestTypes> <PackageCount>1</PackageCount> <RequestedPackageLineItems> <GroupPackageCount>1</GroupPackageCount> <Weight> <Units>KG</Units> <Value>2.722</Value> </Weight> <Dimensions> <Length>0</Length> <Width>0</Width> <Height>0</Height> <Units>CM</Units> </Dimensions> </RequestedPackageLineItems> </RequestedShipment></RateRequest>
9
+ headers:
10
+ Content-Type:
11
+ - application/x-www-form-urlencoded
12
+ Accept-Encoding:
13
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
14
+ Accept:
15
+ - "*/*"
16
+ User-Agent:
17
+ - Ruby
18
+ response:
19
+ status:
20
+ code: 200
21
+ message: OK
22
+ headers:
23
+ Date:
24
+ - Thu, 02 Jun 2016 20:03:50 GMT
25
+ Server:
26
+ - Apache
27
+ Set-Cookie:
28
+ - siteDC=edc; path=/; domain=.fedex.com; expires=Fri, 03-Jun-2016 20:03:50 GMT
29
+ X-Wily-Servlet:
30
+ - Encrypt1 GaMcoOotgOSMyoYj73M4djxB/BFdu6Bd7dK9l2vKcsLoBxuCEbM12kwUffT0WqzWwhNfXxOuv1xkOK5NUzCbP46u7vtBQL8InqrXYgHsCoR6RU11Zne5eRfVnPz2s4Qov9eunV7woSgEPfqNlSuUohTUBgIk8jwlMuKFUnJ6R3MJKzKhlmXl/t6C7llj+3eeX/EayI63tUt9ajuzmAAu4A==
31
+ X-Powered-By:
32
+ - Servlet/2.5 JSP/2.1
33
+ X-Wily-Info:
34
+ - Clear guid=12B6FE92CC87128E0F000C2D89D859CE
35
+ Vary:
36
+ - Accept-Encoding
37
+ Transfer-Encoding:
38
+ - chunked
39
+ Content-Type:
40
+ - text/xml; charset=utf-8
41
+ body:
42
+ encoding: ASCII-8BIT
43
+ string: |-
44
+ <?xml version="1.0" encoding="UTF-8"?>
45
+ <RateReply xmlns="http://fedex.com/ws/rate/v13" xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/"><HighestSeverity>NOTE</HighestSeverity><Notifications><Severity>NOTE</Severity><Source>crs</Source><Code>886</Code><Message>Money Back Guarantee is not eligible for this pick up/delivery postal/zip code. </Message><LocalizedMessage>Money Back Guarantee is not eligible for this pick up/delivery postal/zip code. </LocalizedMessage></Notifications><Notifications><Severity>NOTE</Severity><Source>crs</Source><Code>886</Code><Message>Money Back Guarantee is not eligible for this pick up/delivery postal/zip code. FDXG</Message><LocalizedMessage>Money Back Guarantee is not eligible for this pick up/delivery postal/zip code. FDXG</LocalizedMessage><MessageParameters><Id>OPERATING_COMPANY</Id><Value>FDXG</Value></MessageParameters></Notifications><Notifications><Severity>NOTE</Severity><Source>crs</Source><Code>819</Code><Message>The origin state/province code has been changed. </Message><LocalizedMessage>The origin state/province code has been changed. </LocalizedMessage></Notifications><Notifications><Severity>NOTE</Severity><Source>crs</Source><Code>820</Code><Message>The destination state/province code has been changed. </Message><LocalizedMessage>The destination state/province code has been changed. </LocalizedMessage></Notifications><TransactionDetail><CustomerTransactionId>ActiveShipping</CustomerTransactionId></TransactionDetail><Version><ServiceId>crs</ServiceId><Major>13</Major><Intermediate>0</Intermediate><Minor>0</Minor></Version><RateReplyDetails><ServiceType>INTERNATIONAL_FIRST</ServiceType><PackagingType>YOUR_PACKAGING</PackagingType><DeliveryStation>CHIA </DeliveryStation><DeliveryDayOfWeek>FRI</DeliveryDayOfWeek><DeliveryTimestamp>2016-06-03T08:00:00</DeliveryTimestamp><CommitDetails><CommodityName>DOCUMENTS</CommodityName><ServiceType>INTERNATIONAL_FIRST</ServiceType><CommitTimestamp>2016-06-03T08:00:00</CommitTimestamp><DayOfWeek>FRI</DayOfWeek><DestinationServiceArea>A1</DestinationServiceArea><BrokerToDestinationDays>0</BrokerToDestinationDays><CommitMessages><Code>134</Code><Message>REQUEST COMPLETED</Message></CommitMessages><DeliveryMessages> 8:00 A.M. IF NO CUSTOMS DELAY</DeliveryMessages><DocumentContent>DOCUMENTS_ONLY</DocumentContent><RequiredDocuments>INTERNATIONAL_AIRWAY_BILL</RequiredDocuments></CommitDetails><DestinationAirportId>ORD</DestinationAirportId><IneligibleForMoneyBackGuarantee>false</IneligibleForMoneyBackGuarantee><OriginServiceArea>AM</OriginServiceArea><DestinationServiceArea>A1</DestinationServiceArea><SignatureOption>INDIRECT</SignatureOption><ActualRateType>PAYOR_ACCOUNT_SHIPMENT</ActualRateType><RatedShipmentDetails><ShipmentRateDetail><RateType>PAYOR_ACCOUNT_SHIPMENT</RateType><RateScale>0000000</RateScale><RateZone>CA003O</RateZone><PricingCode>ACTUAL</PricingCode><RatedWeightMethod>ACTUAL</RatedWeightMethod><CurrencyExchangeRate><FromCurrency>CAD</FromCurrency><IntoCurrency>USD</IntoCurrency><Rate>0.7</Rate></CurrencyExchangeRate><DimDivisor>0</DimDivisor><FuelSurchargePercent>0.75</FuelSurchargePercent><TotalBillingWeight><Units>KG</Units><Value>2.72</Value></TotalBillingWeight><TotalBaseCharge><Currency>USD</Currency><Amount>164.72</Amount></TotalBaseCharge><TotalFreightDiscounts><Currency>USD</Currency><Amount>0.0</Amount></TotalFreightDiscounts><TotalNetFreight><Currency>USD</Currency><Amount>164.72</Amount></TotalNetFreight><TotalSurcharges><Currency>USD</Currency><Amount>3.71</Amount></TotalSurcharges><TotalNetFedExCharge><Currency>USD</Currency><Amount>168.43</Amount></TotalNetFedExCharge><TotalTaxes><Currency>USD</Currency><Amount>0.0</Amount></TotalTaxes><TotalNetCharge><Currency>USD</Currency><Amount>168.43</Amount></TotalNetCharge><TotalRebates><Currency>USD</Currency><Amount>0.0</Amount></TotalRebates><TotalDutiesAndTaxes><Currency>USD</Currency><Amount>0.0</Amount></TotalDutiesAndTaxes><TotalNetChargeWithDutiesAndTaxes><Currency>USD</Currency><Amount>168.43</Amount></TotalNetChargeWithDutiesAndTaxes><Surcharges><SurchargeType>RESIDENTIAL_DELIVERY</SurchargeType><Description>Residential delivery</Description><Amount><Currency>USD</Currency><Amount>2.45</Amount></Amount></Surcharges><Surcharges><SurchargeType>FUEL</SurchargeType><Description>Fuel</Description><Amount><Currency>USD</Currency><Amount>1.26</Amount></Amount></Surcharges></ShipmentRateDetail></RatedShipmentDetails><RatedShipmentDetails><ShipmentRateDetail><RateType>RATED_ACCOUNT_SHIPMENT</RateType><RateScale>0000000</RateScale><RateZone>CA003O</RateZone><PricingCode>ACTUAL</PricingCode><RatedWeightMethod>ACTUAL</RatedWeightMethod><CurrencyExchangeRate><FromCurrency>CAD</FromCurrency><IntoCurrency>CAD</IntoCurrency><Rate>1.0</Rate></CurrencyExchangeRate><DimDivisor>0</DimDivisor><FuelSurchargePercent>0.75</FuelSurchargePercent><TotalBillingWeight><Units>KG</Units><Value>2.72</Value></TotalBillingWeight><TotalBaseCharge><Currency>CAD</Currency><Amount>234.85</Amount></TotalBaseCharge><TotalFreightDiscounts><Currency>CAD</Currency><Amount>0.0</Amount></TotalFreightDiscounts><TotalNetFreight><Currency>CAD</Currency><Amount>234.85</Amount></TotalNetFreight><TotalSurcharges><Currency>CAD</Currency><Amount>5.29</Amount></TotalSurcharges><TotalNetFedExCharge><Currency>CAD</Currency><Amount>240.14</Amount></TotalNetFedExCharge><TotalTaxes><Currency>CAD</Currency><Amount>0.0</Amount></TotalTaxes><TotalNetCharge><Currency>CAD</Currency><Amount>240.14</Amount></TotalNetCharge><TotalRebates><Currency>CAD</Currency><Amount>0.0</Amount></TotalRebates><TotalDutiesAndTaxes><Currency>CAD</Currency><Amount>0.0</Amount></TotalDutiesAndTaxes><TotalNetChargeWithDutiesAndTaxes><Currency>CAD</Currency><Amount>240.14</Amount></TotalNetChargeWithDutiesAndTaxes><Surcharges><SurchargeType>RESIDENTIAL_DELIVERY</SurchargeType><Description>Residential delivery</Description><Amount><Currency>CAD</Currency><Amount>3.5</Amount></Amount></Surcharges><Surcharges><SurchargeType>FUEL</SurchargeType><Description>Fuel</Description><Amount><Currency>CAD</Currency><Amount>1.79</Amount></Amount></Surcharges></ShipmentRateDetail></RatedShipmentDetails></RateReplyDetails><RateReplyDetails><ServiceType>INTERNATIONAL_PRIORITY</ServiceType><PackagingType>YOUR_PACKAGING</PackagingType><DeliveryStation>CHIA </DeliveryStation><DeliveryDayOfWeek>FRI</DeliveryDayOfWeek><DeliveryTimestamp>2016-06-03T10:30:00</DeliveryTimestamp><CommitDetails><CommodityName>DOCUMENTS</CommodityName><ServiceType>INTERNATIONAL_PRIORITY</ServiceType><CommitTimestamp>2016-06-03T10:30:00</CommitTimestamp><DayOfWeek>FRI</DayOfWeek><DestinationServiceArea>A1</DestinationServiceArea><BrokerToDestinationDays>0</BrokerToDestinationDays><CommitMessages><Code>134</Code><Message>REQUEST COMPLETED</Message></CommitMessages><DeliveryMessages>10:30 A.M. IF NO CUSTOMS DELAY</DeliveryMessages><DocumentContent>DOCUMENTS_ONLY</DocumentContent><RequiredDocuments>INTERNATIONAL_AIRWAY_BILL</RequiredDocuments></CommitDetails><DestinationAirportId>ORD</DestinationAirportId><IneligibleForMoneyBackGuarantee>false</IneligibleForMoneyBackGuarantee><OriginServiceArea>AM</OriginServiceArea><DestinationServiceArea>A1</DestinationServiceArea><SignatureOption>INDIRECT</SignatureOption><ActualRateType>PAYOR_ACCOUNT_SHIPMENT</ActualRateType><RatedShipmentDetails><ShipmentRateDetail><RateType>PAYOR_ACCOUNT_SHIPMENT</RateType><RateScale>0000000</RateScale><RateZone>CA003O</RateZone><PricingCode>ACTUAL</PricingCode><RatedWeightMethod>ACTUAL</RatedWeightMethod><CurrencyExchangeRate><FromCurrency>CAD</FromCurrency><IntoCurrency>USD</IntoCurrency><Rate>0.7</Rate></CurrencyExchangeRate><DimDivisor>0</DimDivisor><FuelSurchargePercent>0.75</FuelSurchargePercent><TotalBillingWeight><Units>KG</Units><Value>2.72</Value></TotalBillingWeight><TotalBaseCharge><Currency>USD</Currency><Amount>101.95</Amount></TotalBaseCharge><TotalFreightDiscounts><Currency>USD</Currency><Amount>0.0</Amount></TotalFreightDiscounts><TotalNetFreight><Currency>USD</Currency><Amount>101.95</Amount></TotalNetFreight><TotalSurcharges><Currency>USD</Currency><Amount>3.24</Amount></TotalSurcharges><TotalNetFedExCharge><Currency>USD</Currency><Amount>105.19</Amount></TotalNetFedExCharge><TotalTaxes><Currency>USD</Currency><Amount>0.0</Amount></TotalTaxes><TotalNetCharge><Currency>USD</Currency><Amount>105.19</Amount></TotalNetCharge><TotalRebates><Currency>USD</Currency><Amount>0.0</Amount></TotalRebates><TotalDutiesAndTaxes><Currency>USD</Currency><Amount>0.0</Amount></TotalDutiesAndTaxes><TotalNetChargeWithDutiesAndTaxes><Currency>USD</Currency><Amount>105.19</Amount></TotalNetChargeWithDutiesAndTaxes><Surcharges><SurchargeType>RESIDENTIAL_DELIVERY</SurchargeType><Description>Residential delivery</Description><Amount><Currency>USD</Currency><Amount>2.45</Amount></Amount></Surcharges><Surcharges><SurchargeType>FUEL</SurchargeType><Description>Fuel</Description><Amount><Currency>USD</Currency><Amount>0.79</Amount></Amount></Surcharges></ShipmentRateDetail></RatedShipmentDetails><RatedShipmentDetails><ShipmentRateDetail><RateType>RATED_ACCOUNT_SHIPMENT</RateType><RateScale>0000000</RateScale><RateZone>CA003O</RateZone><PricingCode>ACTUAL</PricingCode><RatedWeightMethod>ACTUAL</RatedWeightMethod><CurrencyExchangeRate><FromCurrency>CAD</FromCurrency><IntoCurrency>CAD</IntoCurrency><Rate>1.0</Rate></CurrencyExchangeRate><DimDivisor>0</DimDivisor><FuelSurchargePercent>0.75</FuelSurchargePercent><TotalBillingWeight><Units>KG</Units><Value>2.72</Value></TotalBillingWeight><TotalBaseCharge><Currency>CAD</Currency><Amount>145.35</Amount></TotalBaseCharge><TotalFreightDiscounts><Currency>CAD</Currency><Amount>0.0</Amount></TotalFreightDiscounts><TotalNetFreight><Currency>CAD</Currency><Amount>145.35</Amount></TotalNetFreight><TotalSurcharges><Currency>CAD</Currency><Amount>4.62</Amount></TotalSurcharges><TotalNetFedExCharge><Currency>CAD</Currency><Amount>149.97</Amount></TotalNetFedExCharge><TotalTaxes><Currency>CAD</Currency><Amount>0.0</Amount></TotalTaxes><TotalNetCharge><Currency>CAD</Currency><Amount>149.97</Amount></TotalNetCharge><TotalRebates><Currency>CAD</Currency><Amount>0.0</Amount></TotalRebates><TotalDutiesAndTaxes><Currency>CAD</Currency><Amount>0.0</Amount></TotalDutiesAndTaxes><TotalNetChargeWithDutiesAndTaxes><Currency>CAD</Currency><Amount>149.97</Amount></TotalNetChargeWithDutiesAndTaxes><Surcharges><SurchargeType>RESIDENTIAL_DELIVERY</SurchargeType><Description>Residential delivery</Description><Amount><Currency>CAD</Currency><Amount>3.5</Amount></Amount></Surcharges><Surcharges><SurchargeType>FUEL</SurchargeType><Description>Fuel</Description><Amount><Currency>CAD</Currency><Amount>1.12</Amount></Amount></Surcharges></ShipmentRateDetail></RatedShipmentDetails></RateReplyDetails><RateReplyDetails><ServiceType>INTERNATIONAL_ECONOMY</ServiceType><PackagingType>YOUR_PACKAGING</PackagingType><DeliveryStation>CHIA </DeliveryStation><DeliveryDayOfWeek>MON</DeliveryDayOfWeek><DeliveryTimestamp>2016-06-06T20:00:00</DeliveryTimestamp><CommitDetails><CommodityName>DOCUMENTS</CommodityName><ServiceType>INTERNATIONAL_ECONOMY</ServiceType><CommitTimestamp>2016-06-06T20:00:00</CommitTimestamp><DayOfWeek>MON</DayOfWeek><DestinationServiceArea>A1</DestinationServiceArea><BrokerToDestinationDays>0</BrokerToDestinationDays><CommitMessages><Code>134</Code><Message>REQUEST COMPLETED</Message></CommitMessages><DeliveryMessages> 8:00 P.M. IF NO CUSTOMS DELAY</DeliveryMessages><DelayDetails><Date>2016-06-04</Date><DayOfWeek>SAT</DayOfWeek><Level>COUNTRY</Level><Point>DESTINATION</Point><Type>NO_SERVICE_AREA_DELIVERY</Type><Description>NO SVC AREA DELIVERY</Description></DelayDetails><DelayDetails><Date>2016-06-05</Date><DayOfWeek>SUN</DayOfWeek><Level>COUNTRY</Level><Point>DESTINATION</Point><Type>NO_SERVICE_AREA_DELIVERY</Type><Description>NO SVC AREA DELIVERY</Description></DelayDetails><DocumentContent>DOCUMENTS_ONLY</DocumentContent><RequiredDocuments>INTERNATIONAL_AIRWAY_BILL</RequiredDocuments></CommitDetails><DestinationAirportId>ORD</DestinationAirportId><IneligibleForMoneyBackGuarantee>false</IneligibleForMoneyBackGuarantee><OriginServiceArea>AM</OriginServiceArea><DestinationServiceArea>A1</DestinationServiceArea><SignatureOption>INDIRECT</SignatureOption><ActualRateType>PAYOR_ACCOUNT_SHIPMENT</ActualRateType><RatedShipmentDetails><ShipmentRateDetail><RateType>PAYOR_ACCOUNT_SHIPMENT</RateType><RateScale>0000000</RateScale><RateZone>CA003O</RateZone><PricingCode>ACTUAL</PricingCode><RatedWeightMethod>ACTUAL</RatedWeightMethod><CurrencyExchangeRate><FromCurrency>CAD</FromCurrency><IntoCurrency>USD</IntoCurrency><Rate>0.7</Rate></CurrencyExchangeRate><DimDivisor>0</DimDivisor><FuelSurchargePercent>0.75</FuelSurchargePercent><TotalBillingWeight><Units>KG</Units><Value>2.72</Value></TotalBillingWeight><TotalBaseCharge><Currency>USD</Currency><Amount>68.56</Amount></TotalBaseCharge><TotalFreightDiscounts><Currency>USD</Currency><Amount>0.0</Amount></TotalFreightDiscounts><TotalNetFreight><Currency>USD</Currency><Amount>68.56</Amount></TotalNetFreight><TotalSurcharges><Currency>USD</Currency><Amount>2.98</Amount></TotalSurcharges><TotalNetFedExCharge><Currency>USD</Currency><Amount>71.54</Amount></TotalNetFedExCharge><TotalTaxes><Currency>USD</Currency><Amount>0.0</Amount></TotalTaxes><TotalNetCharge><Currency>USD</Currency><Amount>71.54</Amount></TotalNetCharge><TotalRebates><Currency>USD</Currency><Amount>0.0</Amount></TotalRebates><TotalDutiesAndTaxes><Currency>USD</Currency><Amount>0.0</Amount></TotalDutiesAndTaxes><TotalNetChargeWithDutiesAndTaxes><Currency>USD</Currency><Amount>71.54</Amount></TotalNetChargeWithDutiesAndTaxes><Surcharges><SurchargeType>RESIDENTIAL_DELIVERY</SurchargeType><Description>Residential delivery</Description><Amount><Currency>USD</Currency><Amount>2.45</Amount></Amount></Surcharges><Surcharges><SurchargeType>FUEL</SurchargeType><Description>Fuel</Description><Amount><Currency>USD</Currency><Amount>0.53</Amount></Amount></Surcharges></ShipmentRateDetail></RatedShipmentDetails><RatedShipmentDetails><ShipmentRateDetail><RateType>RATED_ACCOUNT_SHIPMENT</RateType><RateScale>0000000</RateScale><RateZone>CA003O</RateZone><PricingCode>ACTUAL</PricingCode><RatedWeightMethod>ACTUAL</RatedWeightMethod><CurrencyExchangeRate><FromCurrency>CAD</FromCurrency><IntoCurrency>CAD</IntoCurrency><Rate>1.0</Rate></CurrencyExchangeRate><DimDivisor>0</DimDivisor><FuelSurchargePercent>0.75</FuelSurchargePercent><TotalBillingWeight><Units>KG</Units><Value>2.72</Value></TotalBillingWeight><TotalBaseCharge><Currency>CAD</Currency><Amount>97.75</Amount></TotalBaseCharge><TotalFreightDiscounts><Currency>CAD</Currency><Amount>0.0</Amount></TotalFreightDiscounts><TotalNetFreight><Currency>CAD</Currency><Amount>97.75</Amount></TotalNetFreight><TotalSurcharges><Currency>CAD</Currency><Amount>4.26</Amount></TotalSurcharges><TotalNetFedExCharge><Currency>CAD</Currency><Amount>102.01</Amount></TotalNetFedExCharge><TotalTaxes><Currency>CAD</Currency><Amount>0.0</Amount></TotalTaxes><TotalNetCharge><Currency>CAD</Currency><Amount>102.01</Amount></TotalNetCharge><TotalRebates><Currency>CAD</Currency><Amount>0.0</Amount></TotalRebates><TotalDutiesAndTaxes><Currency>CAD</Currency><Amount>0.0</Amount></TotalDutiesAndTaxes><TotalNetChargeWithDutiesAndTaxes><Currency>CAD</Currency><Amount>102.01</Amount></TotalNetChargeWithDutiesAndTaxes><Surcharges><SurchargeType>RESIDENTIAL_DELIVERY</SurchargeType><Description>Residential delivery</Description><Amount><Currency>CAD</Currency><Amount>3.5</Amount></Amount></Surcharges><Surcharges><SurchargeType>FUEL</SurchargeType><Description>Fuel</Description><Amount><Currency>CAD</Currency><Amount>0.76</Amount></Amount></Surcharges></ShipmentRateDetail></RatedShipmentDetails></RateReplyDetails><RateReplyDetails><ServiceType>FEDEX_GROUND</ServiceType><PackagingType>YOUR_PACKAGING</PackagingType><CommitDetails><ServiceType>FEDEX_GROUND</ServiceType><TransitTime>TWO_DAYS</TransitTime><BrokerToDestinationDays>0</BrokerToDestinationDays></CommitDetails><DestinationAirportId>ORD</DestinationAirportId><IneligibleForMoneyBackGuarantee>true</IneligibleForMoneyBackGuarantee><TransitTime>TWO_DAYS</TransitTime><SignatureOption>SERVICE_DEFAULT</SignatureOption><ActualRateType>PAYOR_ACCOUNT_PACKAGE</ActualRateType><RatedShipmentDetails><ShipmentRateDetail><RateType>PAYOR_ACCOUNT_PACKAGE</RateType><RateZone>52</RateZone><RatedWeightMethod>ACTUAL</RatedWeightMethod><DimDivisor>0</DimDivisor><FuelSurchargePercent>3.0</FuelSurchargePercent><TotalBillingWeight><Units>LB</Units><Value>7.0</Value></TotalBillingWeight><TotalBaseCharge><Currency>CAD</Currency><Amount>24.55</Amount></TotalBaseCharge><TotalFreightDiscounts><Currency>CAD</Currency><Amount>0.0</Amount></TotalFreightDiscounts><TotalNetFreight><Currency>CAD</Currency><Amount>24.55</Amount></TotalNetFreight><TotalSurcharges><Currency>CAD</Currency><Amount>4.35</Amount></TotalSurcharges><TotalNetFedExCharge><Currency>CAD</Currency><Amount>28.9</Amount></TotalNetFedExCharge><TotalTaxes><Currency>CAD</Currency><Amount>0.0</Amount></TotalTaxes><TotalNetCharge><Currency>CAD</Currency><Amount>28.9</Amount></TotalNetCharge><TotalRebates><Currency>CAD</Currency><Amount>0.0</Amount></TotalRebates><TotalDutiesAndTaxes><Currency>CAD</Currency><Amount>0.0</Amount></TotalDutiesAndTaxes><TotalNetChargeWithDutiesAndTaxes><Currency>CAD</Currency><Amount>28.9</Amount></TotalNetChargeWithDutiesAndTaxes><Surcharges><SurchargeType>RESIDENTIAL_DELIVERY</SurchargeType><Level>PACKAGE</Level><Description>Residential delivery</Description><Amount><Currency>CAD</Currency><Amount>3.5</Amount></Amount></Surcharges><Surcharges><SurchargeType>FUEL</SurchargeType><Level>PACKAGE</Level><Description>FedEx Ground Fuel</Description><Amount><Currency>CAD</Currency><Amount>0.85</Amount></Amount></Surcharges></ShipmentRateDetail><RatedPackages><GroupNumber>0</GroupNumber><PackageRateDetail><RateType>PAYOR_ACCOUNT_PACKAGE</RateType><RatedWeightMethod>ACTUAL</RatedWeightMethod><BillingWeight><Units>KG</Units><Value>3.18</Value></BillingWeight><BaseCharge><Currency>CAD</Currency><Amount>24.55</Amount></BaseCharge><TotalFreightDiscounts><Currency>CAD</Currency><Amount>0.0</Amount></TotalFreightDiscounts><NetFreight><Currency>CAD</Currency><Amount>24.55</Amount></NetFreight><TotalSurcharges><Currency>CAD</Currency><Amount>4.35</Amount></TotalSurcharges><NetFedExCharge><Currency>CAD</Currency><Amount>28.9</Amount></NetFedExCharge><TotalTaxes><Currency>CAD</Currency><Amount>0.0</Amount></TotalTaxes><NetCharge><Currency>CAD</Currency><Amount>28.9</Amount></NetCharge><TotalRebates><Currency>CAD</Currency><Amount>0.0</Amount></TotalRebates><Surcharges><SurchargeType>RESIDENTIAL_DELIVERY</SurchargeType><Level>PACKAGE</Level><Description>Residential delivery</Description><Amount><Currency>CAD</Currency><Amount>3.5</Amount></Amount></Surcharges><Surcharges><SurchargeType>FUEL</SurchargeType><Level>PACKAGE</Level><Description>FedEx Ground Fuel</Description><Amount><Currency>CAD</Currency><Amount>0.85</Amount></Amount></Surcharges></PackageRateDetail></RatedPackages></RatedShipmentDetails></RateReplyDetails></RateReply>
46
+ http_version:
47
+ recorded_at: Thu, 02 Jun 2016 20:03:53 GMT
48
+ recorded_with: VCR 3.0.3
@@ -0,0 +1,48 @@
1
+ ---
2
+ http_interactions:
3
+ - request:
4
+ method: post
5
+ uri: https://gatewaybeta.fedex.com/xml
6
+ body:
7
+ encoding: UTF-8
8
+ string: <?xml version="1.0"?><RateRequest xmlns="http://fedex.com/ws/rate/v13"> <WebAuthenticationDetail> <UserCredential> <Key>xkBPuqiFmGrOU4jL</Key> <Password>UGu5boYODXZ2GEDyUN4Xi1v8E</Password> </UserCredential> </WebAuthenticationDetail> <ClientDetail> <AccountNumber>510087143</AccountNumber> <MeterNumber>118723830</MeterNumber> </ClientDetail> <TransactionDetail> <CustomerTransactionId>ActiveShipping</CustomerTransactionId> </TransactionDetail> <Version> <ServiceId>crs</ServiceId> <Major>13</Major> <Intermediate>0</Intermediate> <Minor>0</Minor> </Version> <ReturnTransitAndCommit>true</ReturnTransitAndCommit> <VariableOptions>SATURDAY_DELIVERY</VariableOptions> <RequestedShipment> <ShipTimestamp>2016-06-02T13:03:53-07:00</ShipTimestamp> <DropoffType>REGULAR_PICKUP</DropoffType> <PackagingType>YOUR_PACKAGING</PackagingType> <Shipper> <Address> <City>Ottawa</City> <PostalCode>K1P1J1</PostalCode> <CountryCode>CA</CountryCode> <Residential>true</Residential> </Address> </Shipper> <Recipient> <Address> <City>Chicago</City> <PostalCode>60601</PostalCode> <CountryCode>US</CountryCode> <Residential>true</Residential> </Address> </Recipient> <SmartPostDetail> <Indicia>PARCEL_SELECT</Indicia> <HubId>5902</HubId> </SmartPostDetail> <RateRequestTypes>ACCOUNT</RateRequestTypes> <PackageCount>1</PackageCount> <RequestedPackageLineItems> <GroupPackageCount>1</GroupPackageCount> <Weight> <Units>KG</Units> <Value>2.722</Value> </Weight> <Dimensions> <Length>0</Length> <Width>0</Width> <Height>0</Height> <Units>CM</Units> </Dimensions> </RequestedPackageLineItems> </RequestedShipment></RateRequest>
9
+ headers:
10
+ Content-Type:
11
+ - application/x-www-form-urlencoded
12
+ Accept-Encoding:
13
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
14
+ Accept:
15
+ - "*/*"
16
+ User-Agent:
17
+ - Ruby
18
+ response:
19
+ status:
20
+ code: 200
21
+ message: OK
22
+ headers:
23
+ Date:
24
+ - Thu, 02 Jun 2016 20:03:52 GMT
25
+ Server:
26
+ - Apache
27
+ Set-Cookie:
28
+ - siteDC=edc; path=/; domain=.fedex.com; expires=Fri, 03-Jun-2016 20:03:52 GMT
29
+ X-Wily-Servlet:
30
+ - Encrypt1 GaMcoOotgOSMyoYj73M4djxB/BFdu6Bd7dK9l2vKcsLoBxuCEbM12kwUffT0WqzWwhNfXxOuv1xkOK5NUzCbP46u7vtBQL8InqrXYgHsCoR6RU11Zne5eRfVnPz2s4Qov9eunV7woSgEPfqNlSuUohTUBgIk8jwlMuKFUnJ6R3MJKzKhlmXl/t6C7llj+3eeX/EayI63tUt9ajuzmAAu4A==
31
+ X-Powered-By:
32
+ - Servlet/2.5 JSP/2.1
33
+ X-Wily-Info:
34
+ - Clear guid=12B705E4CC87128E0F000C2D5959B2A0
35
+ Vary:
36
+ - Accept-Encoding
37
+ Transfer-Encoding:
38
+ - chunked
39
+ Content-Type:
40
+ - text/xml; charset=utf-8
41
+ body:
42
+ encoding: ASCII-8BIT
43
+ string: |-
44
+ <?xml version="1.0" encoding="UTF-8"?>
45
+ <RateReply xmlns="http://fedex.com/ws/rate/v13" xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/"><HighestSeverity>NOTE</HighestSeverity><Notifications><Severity>NOTE</Severity><Source>crs</Source><Code>886</Code><Message>Money Back Guarantee is not eligible for this pick up/delivery postal/zip code. </Message><LocalizedMessage>Money Back Guarantee is not eligible for this pick up/delivery postal/zip code. </LocalizedMessage></Notifications><Notifications><Severity>NOTE</Severity><Source>crs</Source><Code>886</Code><Message>Money Back Guarantee is not eligible for this pick up/delivery postal/zip code. FDXG</Message><LocalizedMessage>Money Back Guarantee is not eligible for this pick up/delivery postal/zip code. FDXG</LocalizedMessage><MessageParameters><Id>OPERATING_COMPANY</Id><Value>FDXG</Value></MessageParameters></Notifications><Notifications><Severity>NOTE</Severity><Source>crs</Source><Code>819</Code><Message>The origin state/province code has been changed. </Message><LocalizedMessage>The origin state/province code has been changed. </LocalizedMessage></Notifications><Notifications><Severity>NOTE</Severity><Source>crs</Source><Code>820</Code><Message>The destination state/province code has been changed. </Message><LocalizedMessage>The destination state/province code has been changed. </LocalizedMessage></Notifications><TransactionDetail><CustomerTransactionId>ActiveShipping</CustomerTransactionId></TransactionDetail><Version><ServiceId>crs</ServiceId><Major>13</Major><Intermediate>0</Intermediate><Minor>0</Minor></Version><RateReplyDetails><ServiceType>INTERNATIONAL_FIRST</ServiceType><PackagingType>YOUR_PACKAGING</PackagingType><DeliveryStation>CHIA </DeliveryStation><DeliveryDayOfWeek>FRI</DeliveryDayOfWeek><DeliveryTimestamp>2016-06-03T08:00:00</DeliveryTimestamp><CommitDetails><CommodityName>DOCUMENTS</CommodityName><ServiceType>INTERNATIONAL_FIRST</ServiceType><CommitTimestamp>2016-06-03T08:00:00</CommitTimestamp><DayOfWeek>FRI</DayOfWeek><DestinationServiceArea>A1</DestinationServiceArea><BrokerToDestinationDays>0</BrokerToDestinationDays><CommitMessages><Code>134</Code><Message>REQUEST COMPLETED</Message></CommitMessages><DeliveryMessages> 8:00 A.M. IF NO CUSTOMS DELAY</DeliveryMessages><DocumentContent>DOCUMENTS_ONLY</DocumentContent><RequiredDocuments>INTERNATIONAL_AIRWAY_BILL</RequiredDocuments></CommitDetails><DestinationAirportId>ORD</DestinationAirportId><IneligibleForMoneyBackGuarantee>false</IneligibleForMoneyBackGuarantee><OriginServiceArea>AM</OriginServiceArea><DestinationServiceArea>A1</DestinationServiceArea><SignatureOption>INDIRECT</SignatureOption><ActualRateType>PAYOR_ACCOUNT_SHIPMENT</ActualRateType><RatedShipmentDetails><ShipmentRateDetail><RateType>PAYOR_ACCOUNT_SHIPMENT</RateType><RateScale>0000000</RateScale><RateZone>CA003O</RateZone><PricingCode>ACTUAL</PricingCode><RatedWeightMethod>ACTUAL</RatedWeightMethod><CurrencyExchangeRate><FromCurrency>CAD</FromCurrency><IntoCurrency>USD</IntoCurrency><Rate>0.7</Rate></CurrencyExchangeRate><DimDivisor>0</DimDivisor><FuelSurchargePercent>0.75</FuelSurchargePercent><TotalBillingWeight><Units>KG</Units><Value>2.72</Value></TotalBillingWeight><TotalBaseCharge><Currency>USD</Currency><Amount>164.72</Amount></TotalBaseCharge><TotalFreightDiscounts><Currency>USD</Currency><Amount>0.0</Amount></TotalFreightDiscounts><TotalNetFreight><Currency>USD</Currency><Amount>164.72</Amount></TotalNetFreight><TotalSurcharges><Currency>USD</Currency><Amount>3.71</Amount></TotalSurcharges><TotalNetFedExCharge><Currency>USD</Currency><Amount>168.43</Amount></TotalNetFedExCharge><TotalTaxes><Currency>USD</Currency><Amount>0.0</Amount></TotalTaxes><TotalNetCharge><Currency>USD</Currency><Amount>168.43</Amount></TotalNetCharge><TotalRebates><Currency>USD</Currency><Amount>0.0</Amount></TotalRebates><TotalDutiesAndTaxes><Currency>USD</Currency><Amount>0.0</Amount></TotalDutiesAndTaxes><TotalNetChargeWithDutiesAndTaxes><Currency>USD</Currency><Amount>168.43</Amount></TotalNetChargeWithDutiesAndTaxes><Surcharges><SurchargeType>RESIDENTIAL_DELIVERY</SurchargeType><Description>Residential delivery</Description><Amount><Currency>USD</Currency><Amount>2.45</Amount></Amount></Surcharges><Surcharges><SurchargeType>FUEL</SurchargeType><Description>Fuel</Description><Amount><Currency>USD</Currency><Amount>1.26</Amount></Amount></Surcharges></ShipmentRateDetail></RatedShipmentDetails><RatedShipmentDetails><ShipmentRateDetail><RateType>RATED_ACCOUNT_SHIPMENT</RateType><RateScale>0000000</RateScale><RateZone>CA003O</RateZone><PricingCode>ACTUAL</PricingCode><RatedWeightMethod>ACTUAL</RatedWeightMethod><CurrencyExchangeRate><FromCurrency>CAD</FromCurrency><IntoCurrency>CAD</IntoCurrency><Rate>1.0</Rate></CurrencyExchangeRate><DimDivisor>0</DimDivisor><FuelSurchargePercent>0.75</FuelSurchargePercent><TotalBillingWeight><Units>KG</Units><Value>2.72</Value></TotalBillingWeight><TotalBaseCharge><Currency>CAD</Currency><Amount>234.85</Amount></TotalBaseCharge><TotalFreightDiscounts><Currency>CAD</Currency><Amount>0.0</Amount></TotalFreightDiscounts><TotalNetFreight><Currency>CAD</Currency><Amount>234.85</Amount></TotalNetFreight><TotalSurcharges><Currency>CAD</Currency><Amount>5.29</Amount></TotalSurcharges><TotalNetFedExCharge><Currency>CAD</Currency><Amount>240.14</Amount></TotalNetFedExCharge><TotalTaxes><Currency>CAD</Currency><Amount>0.0</Amount></TotalTaxes><TotalNetCharge><Currency>CAD</Currency><Amount>240.14</Amount></TotalNetCharge><TotalRebates><Currency>CAD</Currency><Amount>0.0</Amount></TotalRebates><TotalDutiesAndTaxes><Currency>CAD</Currency><Amount>0.0</Amount></TotalDutiesAndTaxes><TotalNetChargeWithDutiesAndTaxes><Currency>CAD</Currency><Amount>240.14</Amount></TotalNetChargeWithDutiesAndTaxes><Surcharges><SurchargeType>RESIDENTIAL_DELIVERY</SurchargeType><Description>Residential delivery</Description><Amount><Currency>CAD</Currency><Amount>3.5</Amount></Amount></Surcharges><Surcharges><SurchargeType>FUEL</SurchargeType><Description>Fuel</Description><Amount><Currency>CAD</Currency><Amount>1.79</Amount></Amount></Surcharges></ShipmentRateDetail></RatedShipmentDetails></RateReplyDetails><RateReplyDetails><ServiceType>INTERNATIONAL_PRIORITY</ServiceType><PackagingType>YOUR_PACKAGING</PackagingType><DeliveryStation>CHIA </DeliveryStation><DeliveryDayOfWeek>FRI</DeliveryDayOfWeek><DeliveryTimestamp>2016-06-03T10:30:00</DeliveryTimestamp><CommitDetails><CommodityName>DOCUMENTS</CommodityName><ServiceType>INTERNATIONAL_PRIORITY</ServiceType><CommitTimestamp>2016-06-03T10:30:00</CommitTimestamp><DayOfWeek>FRI</DayOfWeek><DestinationServiceArea>A1</DestinationServiceArea><BrokerToDestinationDays>0</BrokerToDestinationDays><CommitMessages><Code>134</Code><Message>REQUEST COMPLETED</Message></CommitMessages><DeliveryMessages>10:30 A.M. IF NO CUSTOMS DELAY</DeliveryMessages><DocumentContent>DOCUMENTS_ONLY</DocumentContent><RequiredDocuments>INTERNATIONAL_AIRWAY_BILL</RequiredDocuments></CommitDetails><DestinationAirportId>ORD</DestinationAirportId><IneligibleForMoneyBackGuarantee>false</IneligibleForMoneyBackGuarantee><OriginServiceArea>AM</OriginServiceArea><DestinationServiceArea>A1</DestinationServiceArea><SignatureOption>INDIRECT</SignatureOption><ActualRateType>PAYOR_ACCOUNT_SHIPMENT</ActualRateType><RatedShipmentDetails><ShipmentRateDetail><RateType>PAYOR_ACCOUNT_SHIPMENT</RateType><RateScale>0000000</RateScale><RateZone>CA003O</RateZone><PricingCode>ACTUAL</PricingCode><RatedWeightMethod>ACTUAL</RatedWeightMethod><CurrencyExchangeRate><FromCurrency>CAD</FromCurrency><IntoCurrency>USD</IntoCurrency><Rate>0.7</Rate></CurrencyExchangeRate><DimDivisor>0</DimDivisor><FuelSurchargePercent>0.75</FuelSurchargePercent><TotalBillingWeight><Units>KG</Units><Value>2.72</Value></TotalBillingWeight><TotalBaseCharge><Currency>USD</Currency><Amount>101.95</Amount></TotalBaseCharge><TotalFreightDiscounts><Currency>USD</Currency><Amount>0.0</Amount></TotalFreightDiscounts><TotalNetFreight><Currency>USD</Currency><Amount>101.95</Amount></TotalNetFreight><TotalSurcharges><Currency>USD</Currency><Amount>3.24</Amount></TotalSurcharges><TotalNetFedExCharge><Currency>USD</Currency><Amount>105.19</Amount></TotalNetFedExCharge><TotalTaxes><Currency>USD</Currency><Amount>0.0</Amount></TotalTaxes><TotalNetCharge><Currency>USD</Currency><Amount>105.19</Amount></TotalNetCharge><TotalRebates><Currency>USD</Currency><Amount>0.0</Amount></TotalRebates><TotalDutiesAndTaxes><Currency>USD</Currency><Amount>0.0</Amount></TotalDutiesAndTaxes><TotalNetChargeWithDutiesAndTaxes><Currency>USD</Currency><Amount>105.19</Amount></TotalNetChargeWithDutiesAndTaxes><Surcharges><SurchargeType>RESIDENTIAL_DELIVERY</SurchargeType><Description>Residential delivery</Description><Amount><Currency>USD</Currency><Amount>2.45</Amount></Amount></Surcharges><Surcharges><SurchargeType>FUEL</SurchargeType><Description>Fuel</Description><Amount><Currency>USD</Currency><Amount>0.79</Amount></Amount></Surcharges></ShipmentRateDetail></RatedShipmentDetails><RatedShipmentDetails><ShipmentRateDetail><RateType>RATED_ACCOUNT_SHIPMENT</RateType><RateScale>0000000</RateScale><RateZone>CA003O</RateZone><PricingCode>ACTUAL</PricingCode><RatedWeightMethod>ACTUAL</RatedWeightMethod><CurrencyExchangeRate><FromCurrency>CAD</FromCurrency><IntoCurrency>CAD</IntoCurrency><Rate>1.0</Rate></CurrencyExchangeRate><DimDivisor>0</DimDivisor><FuelSurchargePercent>0.75</FuelSurchargePercent><TotalBillingWeight><Units>KG</Units><Value>2.72</Value></TotalBillingWeight><TotalBaseCharge><Currency>CAD</Currency><Amount>145.35</Amount></TotalBaseCharge><TotalFreightDiscounts><Currency>CAD</Currency><Amount>0.0</Amount></TotalFreightDiscounts><TotalNetFreight><Currency>CAD</Currency><Amount>145.35</Amount></TotalNetFreight><TotalSurcharges><Currency>CAD</Currency><Amount>4.62</Amount></TotalSurcharges><TotalNetFedExCharge><Currency>CAD</Currency><Amount>149.97</Amount></TotalNetFedExCharge><TotalTaxes><Currency>CAD</Currency><Amount>0.0</Amount></TotalTaxes><TotalNetCharge><Currency>CAD</Currency><Amount>149.97</Amount></TotalNetCharge><TotalRebates><Currency>CAD</Currency><Amount>0.0</Amount></TotalRebates><TotalDutiesAndTaxes><Currency>CAD</Currency><Amount>0.0</Amount></TotalDutiesAndTaxes><TotalNetChargeWithDutiesAndTaxes><Currency>CAD</Currency><Amount>149.97</Amount></TotalNetChargeWithDutiesAndTaxes><Surcharges><SurchargeType>RESIDENTIAL_DELIVERY</SurchargeType><Description>Residential delivery</Description><Amount><Currency>CAD</Currency><Amount>3.5</Amount></Amount></Surcharges><Surcharges><SurchargeType>FUEL</SurchargeType><Description>Fuel</Description><Amount><Currency>CAD</Currency><Amount>1.12</Amount></Amount></Surcharges></ShipmentRateDetail></RatedShipmentDetails></RateReplyDetails><RateReplyDetails><ServiceType>INTERNATIONAL_ECONOMY</ServiceType><PackagingType>YOUR_PACKAGING</PackagingType><DeliveryStation>CHIA </DeliveryStation><DeliveryDayOfWeek>MON</DeliveryDayOfWeek><DeliveryTimestamp>2016-06-06T20:00:00</DeliveryTimestamp><CommitDetails><CommodityName>DOCUMENTS</CommodityName><ServiceType>INTERNATIONAL_ECONOMY</ServiceType><CommitTimestamp>2016-06-06T20:00:00</CommitTimestamp><DayOfWeek>MON</DayOfWeek><DestinationServiceArea>A1</DestinationServiceArea><BrokerToDestinationDays>0</BrokerToDestinationDays><CommitMessages><Code>134</Code><Message>REQUEST COMPLETED</Message></CommitMessages><DeliveryMessages> 8:00 P.M. IF NO CUSTOMS DELAY</DeliveryMessages><DelayDetails><Date>2016-06-04</Date><DayOfWeek>SAT</DayOfWeek><Level>COUNTRY</Level><Point>DESTINATION</Point><Type>NO_SERVICE_AREA_DELIVERY</Type><Description>NO SVC AREA DELIVERY</Description></DelayDetails><DelayDetails><Date>2016-06-05</Date><DayOfWeek>SUN</DayOfWeek><Level>COUNTRY</Level><Point>DESTINATION</Point><Type>NO_SERVICE_AREA_DELIVERY</Type><Description>NO SVC AREA DELIVERY</Description></DelayDetails><DocumentContent>DOCUMENTS_ONLY</DocumentContent><RequiredDocuments>INTERNATIONAL_AIRWAY_BILL</RequiredDocuments></CommitDetails><DestinationAirportId>ORD</DestinationAirportId><IneligibleForMoneyBackGuarantee>false</IneligibleForMoneyBackGuarantee><OriginServiceArea>AM</OriginServiceArea><DestinationServiceArea>A1</DestinationServiceArea><SignatureOption>INDIRECT</SignatureOption><ActualRateType>PAYOR_ACCOUNT_SHIPMENT</ActualRateType><RatedShipmentDetails><ShipmentRateDetail><RateType>PAYOR_ACCOUNT_SHIPMENT</RateType><RateScale>0000000</RateScale><RateZone>CA003O</RateZone><PricingCode>ACTUAL</PricingCode><RatedWeightMethod>ACTUAL</RatedWeightMethod><CurrencyExchangeRate><FromCurrency>CAD</FromCurrency><IntoCurrency>USD</IntoCurrency><Rate>0.7</Rate></CurrencyExchangeRate><DimDivisor>0</DimDivisor><FuelSurchargePercent>0.75</FuelSurchargePercent><TotalBillingWeight><Units>KG</Units><Value>2.72</Value></TotalBillingWeight><TotalBaseCharge><Currency>USD</Currency><Amount>68.56</Amount></TotalBaseCharge><TotalFreightDiscounts><Currency>USD</Currency><Amount>0.0</Amount></TotalFreightDiscounts><TotalNetFreight><Currency>USD</Currency><Amount>68.56</Amount></TotalNetFreight><TotalSurcharges><Currency>USD</Currency><Amount>2.98</Amount></TotalSurcharges><TotalNetFedExCharge><Currency>USD</Currency><Amount>71.54</Amount></TotalNetFedExCharge><TotalTaxes><Currency>USD</Currency><Amount>0.0</Amount></TotalTaxes><TotalNetCharge><Currency>USD</Currency><Amount>71.54</Amount></TotalNetCharge><TotalRebates><Currency>USD</Currency><Amount>0.0</Amount></TotalRebates><TotalDutiesAndTaxes><Currency>USD</Currency><Amount>0.0</Amount></TotalDutiesAndTaxes><TotalNetChargeWithDutiesAndTaxes><Currency>USD</Currency><Amount>71.54</Amount></TotalNetChargeWithDutiesAndTaxes><Surcharges><SurchargeType>RESIDENTIAL_DELIVERY</SurchargeType><Description>Residential delivery</Description><Amount><Currency>USD</Currency><Amount>2.45</Amount></Amount></Surcharges><Surcharges><SurchargeType>FUEL</SurchargeType><Description>Fuel</Description><Amount><Currency>USD</Currency><Amount>0.53</Amount></Amount></Surcharges></ShipmentRateDetail></RatedShipmentDetails><RatedShipmentDetails><ShipmentRateDetail><RateType>RATED_ACCOUNT_SHIPMENT</RateType><RateScale>0000000</RateScale><RateZone>CA003O</RateZone><PricingCode>ACTUAL</PricingCode><RatedWeightMethod>ACTUAL</RatedWeightMethod><CurrencyExchangeRate><FromCurrency>CAD</FromCurrency><IntoCurrency>CAD</IntoCurrency><Rate>1.0</Rate></CurrencyExchangeRate><DimDivisor>0</DimDivisor><FuelSurchargePercent>0.75</FuelSurchargePercent><TotalBillingWeight><Units>KG</Units><Value>2.72</Value></TotalBillingWeight><TotalBaseCharge><Currency>CAD</Currency><Amount>97.75</Amount></TotalBaseCharge><TotalFreightDiscounts><Currency>CAD</Currency><Amount>0.0</Amount></TotalFreightDiscounts><TotalNetFreight><Currency>CAD</Currency><Amount>97.75</Amount></TotalNetFreight><TotalSurcharges><Currency>CAD</Currency><Amount>4.26</Amount></TotalSurcharges><TotalNetFedExCharge><Currency>CAD</Currency><Amount>102.01</Amount></TotalNetFedExCharge><TotalTaxes><Currency>CAD</Currency><Amount>0.0</Amount></TotalTaxes><TotalNetCharge><Currency>CAD</Currency><Amount>102.01</Amount></TotalNetCharge><TotalRebates><Currency>CAD</Currency><Amount>0.0</Amount></TotalRebates><TotalDutiesAndTaxes><Currency>CAD</Currency><Amount>0.0</Amount></TotalDutiesAndTaxes><TotalNetChargeWithDutiesAndTaxes><Currency>CAD</Currency><Amount>102.01</Amount></TotalNetChargeWithDutiesAndTaxes><Surcharges><SurchargeType>RESIDENTIAL_DELIVERY</SurchargeType><Description>Residential delivery</Description><Amount><Currency>CAD</Currency><Amount>3.5</Amount></Amount></Surcharges><Surcharges><SurchargeType>FUEL</SurchargeType><Description>Fuel</Description><Amount><Currency>CAD</Currency><Amount>0.76</Amount></Amount></Surcharges></ShipmentRateDetail></RatedShipmentDetails></RateReplyDetails><RateReplyDetails><ServiceType>FEDEX_GROUND</ServiceType><PackagingType>YOUR_PACKAGING</PackagingType><CommitDetails><ServiceType>FEDEX_GROUND</ServiceType><TransitTime>TWO_DAYS</TransitTime><BrokerToDestinationDays>0</BrokerToDestinationDays></CommitDetails><DestinationAirportId>ORD</DestinationAirportId><IneligibleForMoneyBackGuarantee>true</IneligibleForMoneyBackGuarantee><TransitTime>TWO_DAYS</TransitTime><SignatureOption>SERVICE_DEFAULT</SignatureOption><ActualRateType>PAYOR_ACCOUNT_PACKAGE</ActualRateType><RatedShipmentDetails><ShipmentRateDetail><RateType>PAYOR_ACCOUNT_PACKAGE</RateType><RateZone>52</RateZone><RatedWeightMethod>ACTUAL</RatedWeightMethod><DimDivisor>0</DimDivisor><FuelSurchargePercent>3.0</FuelSurchargePercent><TotalBillingWeight><Units>LB</Units><Value>7.0</Value></TotalBillingWeight><TotalBaseCharge><Currency>CAD</Currency><Amount>24.55</Amount></TotalBaseCharge><TotalFreightDiscounts><Currency>CAD</Currency><Amount>0.0</Amount></TotalFreightDiscounts><TotalNetFreight><Currency>CAD</Currency><Amount>24.55</Amount></TotalNetFreight><TotalSurcharges><Currency>CAD</Currency><Amount>4.35</Amount></TotalSurcharges><TotalNetFedExCharge><Currency>CAD</Currency><Amount>28.9</Amount></TotalNetFedExCharge><TotalTaxes><Currency>CAD</Currency><Amount>0.0</Amount></TotalTaxes><TotalNetCharge><Currency>CAD</Currency><Amount>28.9</Amount></TotalNetCharge><TotalRebates><Currency>CAD</Currency><Amount>0.0</Amount></TotalRebates><TotalDutiesAndTaxes><Currency>CAD</Currency><Amount>0.0</Amount></TotalDutiesAndTaxes><TotalNetChargeWithDutiesAndTaxes><Currency>CAD</Currency><Amount>28.9</Amount></TotalNetChargeWithDutiesAndTaxes><Surcharges><SurchargeType>RESIDENTIAL_DELIVERY</SurchargeType><Level>PACKAGE</Level><Description>Residential delivery</Description><Amount><Currency>CAD</Currency><Amount>3.5</Amount></Amount></Surcharges><Surcharges><SurchargeType>FUEL</SurchargeType><Level>PACKAGE</Level><Description>FedEx Ground Fuel</Description><Amount><Currency>CAD</Currency><Amount>0.85</Amount></Amount></Surcharges></ShipmentRateDetail><RatedPackages><GroupNumber>0</GroupNumber><PackageRateDetail><RateType>PAYOR_ACCOUNT_PACKAGE</RateType><RatedWeightMethod>ACTUAL</RatedWeightMethod><BillingWeight><Units>KG</Units><Value>3.18</Value></BillingWeight><BaseCharge><Currency>CAD</Currency><Amount>24.55</Amount></BaseCharge><TotalFreightDiscounts><Currency>CAD</Currency><Amount>0.0</Amount></TotalFreightDiscounts><NetFreight><Currency>CAD</Currency><Amount>24.55</Amount></NetFreight><TotalSurcharges><Currency>CAD</Currency><Amount>4.35</Amount></TotalSurcharges><NetFedExCharge><Currency>CAD</Currency><Amount>28.9</Amount></NetFedExCharge><TotalTaxes><Currency>CAD</Currency><Amount>0.0</Amount></TotalTaxes><NetCharge><Currency>CAD</Currency><Amount>28.9</Amount></NetCharge><TotalRebates><Currency>CAD</Currency><Amount>0.0</Amount></TotalRebates><Surcharges><SurchargeType>RESIDENTIAL_DELIVERY</SurchargeType><Level>PACKAGE</Level><Description>Residential delivery</Description><Amount><Currency>CAD</Currency><Amount>3.5</Amount></Amount></Surcharges><Surcharges><SurchargeType>FUEL</SurchargeType><Level>PACKAGE</Level><Description>FedEx Ground Fuel</Description><Amount><Currency>CAD</Currency><Amount>0.85</Amount></Amount></Surcharges></PackageRateDetail></RatedPackages></RatedShipmentDetails></RateReplyDetails></RateReply>
46
+ http_version:
47
+ recorded_at: Thu, 02 Jun 2016 20:03:55 GMT
48
+ recorded_with: VCR 3.0.3
@@ -0,0 +1,48 @@
1
+ ---
2
+ http_interactions:
3
+ - request:
4
+ method: post
5
+ uri: https://gatewaybeta.fedex.com/xml
6
+ body:
7
+ encoding: UTF-8
8
+ string: <?xml version="1.0"?><RateRequest xmlns="http://fedex.com/ws/rate/v13"> <WebAuthenticationDetail> <UserCredential> <Key>xkBPuqiFmGrOU4jL</Key> <Password>UGu5boYODXZ2GEDyUN4Xi1v8E</Password> </UserCredential> </WebAuthenticationDetail> <ClientDetail> <AccountNumber>510087143</AccountNumber> <MeterNumber>118723830</MeterNumber> </ClientDetail> <TransactionDetail> <CustomerTransactionId>ActiveShipping</CustomerTransactionId> </TransactionDetail> <Version> <ServiceId>crs</ServiceId> <Major>13</Major> <Intermediate>0</Intermediate> <Minor>0</Minor> </Version> <ReturnTransitAndCommit>true</ReturnTransitAndCommit> <VariableOptions>SATURDAY_DELIVERY</VariableOptions> <RequestedShipment> <ShipTimestamp>2016-06-02T13:03:55-07:00</ShipTimestamp> <DropoffType>REGULAR_PICKUP</DropoffType> <PackagingType>YOUR_PACKAGING</PackagingType> <Shipper> <Address> <City>Ottawa</City> <PostalCode>K1P1J1</PostalCode> <CountryCode>CA</CountryCode> <Residential>true</Residential> </Address> </Shipper> <Recipient> <Address> <City>Chicago</City> <PostalCode>60601</PostalCode> <CountryCode>US</CountryCode> <Residential>true</Residential> </Address> </Recipient> <SmartPostDetail> <Indicia>PARCEL_SELECT</Indicia> <HubId>5902</HubId> </SmartPostDetail> <RateRequestTypes>ACCOUNT</RateRequestTypes> <PackageCount>1</PackageCount> <RequestedPackageLineItems> <GroupPackageCount>1</GroupPackageCount> <Weight> <Units>KG</Units> <Value>2.722</Value> </Weight> <Dimensions> <Length>0</Length> <Width>0</Width> <Height>0</Height> <Units>CM</Units> </Dimensions> </RequestedPackageLineItems> </RequestedShipment></RateRequest>
9
+ headers:
10
+ Content-Type:
11
+ - application/x-www-form-urlencoded
12
+ Accept-Encoding:
13
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
14
+ Accept:
15
+ - "*/*"
16
+ User-Agent:
17
+ - Ruby
18
+ response:
19
+ status:
20
+ code: 200
21
+ message: OK
22
+ headers:
23
+ Date:
24
+ - Thu, 02 Jun 2016 20:03:54 GMT
25
+ Server:
26
+ - Apache
27
+ Set-Cookie:
28
+ - siteDC=edc; path=/; domain=.fedex.com; expires=Fri, 03-Jun-2016 20:03:54 GMT
29
+ X-Wily-Servlet:
30
+ - Encrypt1 GaMcoOotgOSMyoYj73M4dsxJg8pg+egXqWxT0tlCBMozxB2FJoHW86iPptGsWeEMNrrhgg+c1uCrVTL453EE8LUyyZJ0ssHZDmgz/H0Xk331Sy1KEH2kUmXY7Mq3Tf+C2x1dy1Pfusrm9cQUmfaYGUuEozstA5P1NfcGry6IDn85XOqBBonxSdvvC8rf6NI64vf7VP9qCy53EqGXt++8UQ==
31
+ X-Powered-By:
32
+ - Servlet/2.5 JSP/2.1
33
+ X-Wily-Info:
34
+ - Clear guid=12B70D62CC87128A0DFC1C13F888F6E9
35
+ Vary:
36
+ - Accept-Encoding
37
+ Transfer-Encoding:
38
+ - chunked
39
+ Content-Type:
40
+ - text/xml; charset=utf-8
41
+ body:
42
+ encoding: ASCII-8BIT
43
+ string: |-
44
+ <?xml version="1.0" encoding="UTF-8"?>
45
+ <RateReply xmlns="http://fedex.com/ws/rate/v13" xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/"><HighestSeverity>NOTE</HighestSeverity><Notifications><Severity>NOTE</Severity><Source>crs</Source><Code>886</Code><Message>Money Back Guarantee is not eligible for this pick up/delivery postal/zip code. </Message><LocalizedMessage>Money Back Guarantee is not eligible for this pick up/delivery postal/zip code. </LocalizedMessage></Notifications><Notifications><Severity>NOTE</Severity><Source>crs</Source><Code>886</Code><Message>Money Back Guarantee is not eligible for this pick up/delivery postal/zip code. FDXG</Message><LocalizedMessage>Money Back Guarantee is not eligible for this pick up/delivery postal/zip code. FDXG</LocalizedMessage><MessageParameters><Id>OPERATING_COMPANY</Id><Value>FDXG</Value></MessageParameters></Notifications><Notifications><Severity>NOTE</Severity><Source>crs</Source><Code>819</Code><Message>The origin state/province code has been changed. </Message><LocalizedMessage>The origin state/province code has been changed. </LocalizedMessage></Notifications><Notifications><Severity>NOTE</Severity><Source>crs</Source><Code>820</Code><Message>The destination state/province code has been changed. </Message><LocalizedMessage>The destination state/province code has been changed. </LocalizedMessage></Notifications><TransactionDetail><CustomerTransactionId>ActiveShipping</CustomerTransactionId></TransactionDetail><Version><ServiceId>crs</ServiceId><Major>13</Major><Intermediate>0</Intermediate><Minor>0</Minor></Version><RateReplyDetails><ServiceType>INTERNATIONAL_FIRST</ServiceType><PackagingType>YOUR_PACKAGING</PackagingType><DeliveryStation>CHIA </DeliveryStation><DeliveryDayOfWeek>FRI</DeliveryDayOfWeek><DeliveryTimestamp>2016-06-03T08:00:00</DeliveryTimestamp><CommitDetails><CommodityName>DOCUMENTS</CommodityName><ServiceType>INTERNATIONAL_FIRST</ServiceType><CommitTimestamp>2016-06-03T08:00:00</CommitTimestamp><DayOfWeek>FRI</DayOfWeek><DestinationServiceArea>A1</DestinationServiceArea><BrokerToDestinationDays>0</BrokerToDestinationDays><CommitMessages><Code>134</Code><Message>REQUEST COMPLETED</Message></CommitMessages><DeliveryMessages> 8:00 A.M. IF NO CUSTOMS DELAY</DeliveryMessages><DocumentContent>DOCUMENTS_ONLY</DocumentContent><RequiredDocuments>INTERNATIONAL_AIRWAY_BILL</RequiredDocuments></CommitDetails><DestinationAirportId>ORD</DestinationAirportId><IneligibleForMoneyBackGuarantee>false</IneligibleForMoneyBackGuarantee><OriginServiceArea>AM</OriginServiceArea><DestinationServiceArea>A1</DestinationServiceArea><SignatureOption>INDIRECT</SignatureOption><ActualRateType>PAYOR_ACCOUNT_SHIPMENT</ActualRateType><RatedShipmentDetails><ShipmentRateDetail><RateType>PAYOR_ACCOUNT_SHIPMENT</RateType><RateScale>0000000</RateScale><RateZone>CA003O</RateZone><PricingCode>ACTUAL</PricingCode><RatedWeightMethod>ACTUAL</RatedWeightMethod><CurrencyExchangeRate><FromCurrency>CAD</FromCurrency><IntoCurrency>USD</IntoCurrency><Rate>0.7</Rate></CurrencyExchangeRate><DimDivisor>0</DimDivisor><FuelSurchargePercent>0.75</FuelSurchargePercent><TotalBillingWeight><Units>KG</Units><Value>2.72</Value></TotalBillingWeight><TotalBaseCharge><Currency>USD</Currency><Amount>164.72</Amount></TotalBaseCharge><TotalFreightDiscounts><Currency>USD</Currency><Amount>0.0</Amount></TotalFreightDiscounts><TotalNetFreight><Currency>USD</Currency><Amount>164.72</Amount></TotalNetFreight><TotalSurcharges><Currency>USD</Currency><Amount>3.71</Amount></TotalSurcharges><TotalNetFedExCharge><Currency>USD</Currency><Amount>168.43</Amount></TotalNetFedExCharge><TotalTaxes><Currency>USD</Currency><Amount>0.0</Amount></TotalTaxes><TotalNetCharge><Currency>USD</Currency><Amount>168.43</Amount></TotalNetCharge><TotalRebates><Currency>USD</Currency><Amount>0.0</Amount></TotalRebates><TotalDutiesAndTaxes><Currency>USD</Currency><Amount>0.0</Amount></TotalDutiesAndTaxes><TotalNetChargeWithDutiesAndTaxes><Currency>USD</Currency><Amount>168.43</Amount></TotalNetChargeWithDutiesAndTaxes><Surcharges><SurchargeType>RESIDENTIAL_DELIVERY</SurchargeType><Description>Residential delivery</Description><Amount><Currency>USD</Currency><Amount>2.45</Amount></Amount></Surcharges><Surcharges><SurchargeType>FUEL</SurchargeType><Description>Fuel</Description><Amount><Currency>USD</Currency><Amount>1.26</Amount></Amount></Surcharges></ShipmentRateDetail></RatedShipmentDetails><RatedShipmentDetails><ShipmentRateDetail><RateType>RATED_ACCOUNT_SHIPMENT</RateType><RateScale>0000000</RateScale><RateZone>CA003O</RateZone><PricingCode>ACTUAL</PricingCode><RatedWeightMethod>ACTUAL</RatedWeightMethod><CurrencyExchangeRate><FromCurrency>CAD</FromCurrency><IntoCurrency>CAD</IntoCurrency><Rate>1.0</Rate></CurrencyExchangeRate><DimDivisor>0</DimDivisor><FuelSurchargePercent>0.75</FuelSurchargePercent><TotalBillingWeight><Units>KG</Units><Value>2.72</Value></TotalBillingWeight><TotalBaseCharge><Currency>CAD</Currency><Amount>234.85</Amount></TotalBaseCharge><TotalFreightDiscounts><Currency>CAD</Currency><Amount>0.0</Amount></TotalFreightDiscounts><TotalNetFreight><Currency>CAD</Currency><Amount>234.85</Amount></TotalNetFreight><TotalSurcharges><Currency>CAD</Currency><Amount>5.29</Amount></TotalSurcharges><TotalNetFedExCharge><Currency>CAD</Currency><Amount>240.14</Amount></TotalNetFedExCharge><TotalTaxes><Currency>CAD</Currency><Amount>0.0</Amount></TotalTaxes><TotalNetCharge><Currency>CAD</Currency><Amount>240.14</Amount></TotalNetCharge><TotalRebates><Currency>CAD</Currency><Amount>0.0</Amount></TotalRebates><TotalDutiesAndTaxes><Currency>CAD</Currency><Amount>0.0</Amount></TotalDutiesAndTaxes><TotalNetChargeWithDutiesAndTaxes><Currency>CAD</Currency><Amount>240.14</Amount></TotalNetChargeWithDutiesAndTaxes><Surcharges><SurchargeType>RESIDENTIAL_DELIVERY</SurchargeType><Description>Residential delivery</Description><Amount><Currency>CAD</Currency><Amount>3.5</Amount></Amount></Surcharges><Surcharges><SurchargeType>FUEL</SurchargeType><Description>Fuel</Description><Amount><Currency>CAD</Currency><Amount>1.79</Amount></Amount></Surcharges></ShipmentRateDetail></RatedShipmentDetails></RateReplyDetails><RateReplyDetails><ServiceType>INTERNATIONAL_PRIORITY</ServiceType><PackagingType>YOUR_PACKAGING</PackagingType><DeliveryStation>CHIA </DeliveryStation><DeliveryDayOfWeek>FRI</DeliveryDayOfWeek><DeliveryTimestamp>2016-06-03T10:30:00</DeliveryTimestamp><CommitDetails><CommodityName>DOCUMENTS</CommodityName><ServiceType>INTERNATIONAL_PRIORITY</ServiceType><CommitTimestamp>2016-06-03T10:30:00</CommitTimestamp><DayOfWeek>FRI</DayOfWeek><DestinationServiceArea>A1</DestinationServiceArea><BrokerToDestinationDays>0</BrokerToDestinationDays><CommitMessages><Code>134</Code><Message>REQUEST COMPLETED</Message></CommitMessages><DeliveryMessages>10:30 A.M. IF NO CUSTOMS DELAY</DeliveryMessages><DocumentContent>DOCUMENTS_ONLY</DocumentContent><RequiredDocuments>INTERNATIONAL_AIRWAY_BILL</RequiredDocuments></CommitDetails><DestinationAirportId>ORD</DestinationAirportId><IneligibleForMoneyBackGuarantee>false</IneligibleForMoneyBackGuarantee><OriginServiceArea>AM</OriginServiceArea><DestinationServiceArea>A1</DestinationServiceArea><SignatureOption>INDIRECT</SignatureOption><ActualRateType>PAYOR_ACCOUNT_SHIPMENT</ActualRateType><RatedShipmentDetails><ShipmentRateDetail><RateType>PAYOR_ACCOUNT_SHIPMENT</RateType><RateScale>0000000</RateScale><RateZone>CA003O</RateZone><PricingCode>ACTUAL</PricingCode><RatedWeightMethod>ACTUAL</RatedWeightMethod><CurrencyExchangeRate><FromCurrency>CAD</FromCurrency><IntoCurrency>USD</IntoCurrency><Rate>0.7</Rate></CurrencyExchangeRate><DimDivisor>0</DimDivisor><FuelSurchargePercent>0.75</FuelSurchargePercent><TotalBillingWeight><Units>KG</Units><Value>2.72</Value></TotalBillingWeight><TotalBaseCharge><Currency>USD</Currency><Amount>101.95</Amount></TotalBaseCharge><TotalFreightDiscounts><Currency>USD</Currency><Amount>0.0</Amount></TotalFreightDiscounts><TotalNetFreight><Currency>USD</Currency><Amount>101.95</Amount></TotalNetFreight><TotalSurcharges><Currency>USD</Currency><Amount>3.24</Amount></TotalSurcharges><TotalNetFedExCharge><Currency>USD</Currency><Amount>105.19</Amount></TotalNetFedExCharge><TotalTaxes><Currency>USD</Currency><Amount>0.0</Amount></TotalTaxes><TotalNetCharge><Currency>USD</Currency><Amount>105.19</Amount></TotalNetCharge><TotalRebates><Currency>USD</Currency><Amount>0.0</Amount></TotalRebates><TotalDutiesAndTaxes><Currency>USD</Currency><Amount>0.0</Amount></TotalDutiesAndTaxes><TotalNetChargeWithDutiesAndTaxes><Currency>USD</Currency><Amount>105.19</Amount></TotalNetChargeWithDutiesAndTaxes><Surcharges><SurchargeType>RESIDENTIAL_DELIVERY</SurchargeType><Description>Residential delivery</Description><Amount><Currency>USD</Currency><Amount>2.45</Amount></Amount></Surcharges><Surcharges><SurchargeType>FUEL</SurchargeType><Description>Fuel</Description><Amount><Currency>USD</Currency><Amount>0.79</Amount></Amount></Surcharges></ShipmentRateDetail></RatedShipmentDetails><RatedShipmentDetails><ShipmentRateDetail><RateType>RATED_ACCOUNT_SHIPMENT</RateType><RateScale>0000000</RateScale><RateZone>CA003O</RateZone><PricingCode>ACTUAL</PricingCode><RatedWeightMethod>ACTUAL</RatedWeightMethod><CurrencyExchangeRate><FromCurrency>CAD</FromCurrency><IntoCurrency>CAD</IntoCurrency><Rate>1.0</Rate></CurrencyExchangeRate><DimDivisor>0</DimDivisor><FuelSurchargePercent>0.75</FuelSurchargePercent><TotalBillingWeight><Units>KG</Units><Value>2.72</Value></TotalBillingWeight><TotalBaseCharge><Currency>CAD</Currency><Amount>145.35</Amount></TotalBaseCharge><TotalFreightDiscounts><Currency>CAD</Currency><Amount>0.0</Amount></TotalFreightDiscounts><TotalNetFreight><Currency>CAD</Currency><Amount>145.35</Amount></TotalNetFreight><TotalSurcharges><Currency>CAD</Currency><Amount>4.62</Amount></TotalSurcharges><TotalNetFedExCharge><Currency>CAD</Currency><Amount>149.97</Amount></TotalNetFedExCharge><TotalTaxes><Currency>CAD</Currency><Amount>0.0</Amount></TotalTaxes><TotalNetCharge><Currency>CAD</Currency><Amount>149.97</Amount></TotalNetCharge><TotalRebates><Currency>CAD</Currency><Amount>0.0</Amount></TotalRebates><TotalDutiesAndTaxes><Currency>CAD</Currency><Amount>0.0</Amount></TotalDutiesAndTaxes><TotalNetChargeWithDutiesAndTaxes><Currency>CAD</Currency><Amount>149.97</Amount></TotalNetChargeWithDutiesAndTaxes><Surcharges><SurchargeType>RESIDENTIAL_DELIVERY</SurchargeType><Description>Residential delivery</Description><Amount><Currency>CAD</Currency><Amount>3.5</Amount></Amount></Surcharges><Surcharges><SurchargeType>FUEL</SurchargeType><Description>Fuel</Description><Amount><Currency>CAD</Currency><Amount>1.12</Amount></Amount></Surcharges></ShipmentRateDetail></RatedShipmentDetails></RateReplyDetails><RateReplyDetails><ServiceType>INTERNATIONAL_ECONOMY</ServiceType><PackagingType>YOUR_PACKAGING</PackagingType><DeliveryStation>CHIA </DeliveryStation><DeliveryDayOfWeek>MON</DeliveryDayOfWeek><DeliveryTimestamp>2016-06-06T20:00:00</DeliveryTimestamp><CommitDetails><CommodityName>DOCUMENTS</CommodityName><ServiceType>INTERNATIONAL_ECONOMY</ServiceType><CommitTimestamp>2016-06-06T20:00:00</CommitTimestamp><DayOfWeek>MON</DayOfWeek><DestinationServiceArea>A1</DestinationServiceArea><BrokerToDestinationDays>0</BrokerToDestinationDays><CommitMessages><Code>134</Code><Message>REQUEST COMPLETED</Message></CommitMessages><DeliveryMessages> 8:00 P.M. IF NO CUSTOMS DELAY</DeliveryMessages><DelayDetails><Date>2016-06-04</Date><DayOfWeek>SAT</DayOfWeek><Level>COUNTRY</Level><Point>DESTINATION</Point><Type>NO_SERVICE_AREA_DELIVERY</Type><Description>NO SVC AREA DELIVERY</Description></DelayDetails><DelayDetails><Date>2016-06-05</Date><DayOfWeek>SUN</DayOfWeek><Level>COUNTRY</Level><Point>DESTINATION</Point><Type>NO_SERVICE_AREA_DELIVERY</Type><Description>NO SVC AREA DELIVERY</Description></DelayDetails><DocumentContent>DOCUMENTS_ONLY</DocumentContent><RequiredDocuments>INTERNATIONAL_AIRWAY_BILL</RequiredDocuments></CommitDetails><DestinationAirportId>ORD</DestinationAirportId><IneligibleForMoneyBackGuarantee>false</IneligibleForMoneyBackGuarantee><OriginServiceArea>AM</OriginServiceArea><DestinationServiceArea>A1</DestinationServiceArea><SignatureOption>INDIRECT</SignatureOption><ActualRateType>PAYOR_ACCOUNT_SHIPMENT</ActualRateType><RatedShipmentDetails><ShipmentRateDetail><RateType>PAYOR_ACCOUNT_SHIPMENT</RateType><RateScale>0000000</RateScale><RateZone>CA003O</RateZone><PricingCode>ACTUAL</PricingCode><RatedWeightMethod>ACTUAL</RatedWeightMethod><CurrencyExchangeRate><FromCurrency>CAD</FromCurrency><IntoCurrency>USD</IntoCurrency><Rate>0.7</Rate></CurrencyExchangeRate><DimDivisor>0</DimDivisor><FuelSurchargePercent>0.75</FuelSurchargePercent><TotalBillingWeight><Units>KG</Units><Value>2.72</Value></TotalBillingWeight><TotalBaseCharge><Currency>USD</Currency><Amount>68.56</Amount></TotalBaseCharge><TotalFreightDiscounts><Currency>USD</Currency><Amount>0.0</Amount></TotalFreightDiscounts><TotalNetFreight><Currency>USD</Currency><Amount>68.56</Amount></TotalNetFreight><TotalSurcharges><Currency>USD</Currency><Amount>2.98</Amount></TotalSurcharges><TotalNetFedExCharge><Currency>USD</Currency><Amount>71.54</Amount></TotalNetFedExCharge><TotalTaxes><Currency>USD</Currency><Amount>0.0</Amount></TotalTaxes><TotalNetCharge><Currency>USD</Currency><Amount>71.54</Amount></TotalNetCharge><TotalRebates><Currency>USD</Currency><Amount>0.0</Amount></TotalRebates><TotalDutiesAndTaxes><Currency>USD</Currency><Amount>0.0</Amount></TotalDutiesAndTaxes><TotalNetChargeWithDutiesAndTaxes><Currency>USD</Currency><Amount>71.54</Amount></TotalNetChargeWithDutiesAndTaxes><Surcharges><SurchargeType>RESIDENTIAL_DELIVERY</SurchargeType><Description>Residential delivery</Description><Amount><Currency>USD</Currency><Amount>2.45</Amount></Amount></Surcharges><Surcharges><SurchargeType>FUEL</SurchargeType><Description>Fuel</Description><Amount><Currency>USD</Currency><Amount>0.53</Amount></Amount></Surcharges></ShipmentRateDetail></RatedShipmentDetails><RatedShipmentDetails><ShipmentRateDetail><RateType>RATED_ACCOUNT_SHIPMENT</RateType><RateScale>0000000</RateScale><RateZone>CA003O</RateZone><PricingCode>ACTUAL</PricingCode><RatedWeightMethod>ACTUAL</RatedWeightMethod><CurrencyExchangeRate><FromCurrency>CAD</FromCurrency><IntoCurrency>CAD</IntoCurrency><Rate>1.0</Rate></CurrencyExchangeRate><DimDivisor>0</DimDivisor><FuelSurchargePercent>0.75</FuelSurchargePercent><TotalBillingWeight><Units>KG</Units><Value>2.72</Value></TotalBillingWeight><TotalBaseCharge><Currency>CAD</Currency><Amount>97.75</Amount></TotalBaseCharge><TotalFreightDiscounts><Currency>CAD</Currency><Amount>0.0</Amount></TotalFreightDiscounts><TotalNetFreight><Currency>CAD</Currency><Amount>97.75</Amount></TotalNetFreight><TotalSurcharges><Currency>CAD</Currency><Amount>4.26</Amount></TotalSurcharges><TotalNetFedExCharge><Currency>CAD</Currency><Amount>102.01</Amount></TotalNetFedExCharge><TotalTaxes><Currency>CAD</Currency><Amount>0.0</Amount></TotalTaxes><TotalNetCharge><Currency>CAD</Currency><Amount>102.01</Amount></TotalNetCharge><TotalRebates><Currency>CAD</Currency><Amount>0.0</Amount></TotalRebates><TotalDutiesAndTaxes><Currency>CAD</Currency><Amount>0.0</Amount></TotalDutiesAndTaxes><TotalNetChargeWithDutiesAndTaxes><Currency>CAD</Currency><Amount>102.01</Amount></TotalNetChargeWithDutiesAndTaxes><Surcharges><SurchargeType>RESIDENTIAL_DELIVERY</SurchargeType><Description>Residential delivery</Description><Amount><Currency>CAD</Currency><Amount>3.5</Amount></Amount></Surcharges><Surcharges><SurchargeType>FUEL</SurchargeType><Description>Fuel</Description><Amount><Currency>CAD</Currency><Amount>0.76</Amount></Amount></Surcharges></ShipmentRateDetail></RatedShipmentDetails></RateReplyDetails><RateReplyDetails><ServiceType>FEDEX_GROUND</ServiceType><PackagingType>YOUR_PACKAGING</PackagingType><CommitDetails><ServiceType>FEDEX_GROUND</ServiceType><TransitTime>TWO_DAYS</TransitTime><BrokerToDestinationDays>0</BrokerToDestinationDays></CommitDetails><DestinationAirportId>ORD</DestinationAirportId><IneligibleForMoneyBackGuarantee>true</IneligibleForMoneyBackGuarantee><TransitTime>TWO_DAYS</TransitTime><SignatureOption>SERVICE_DEFAULT</SignatureOption><ActualRateType>PAYOR_ACCOUNT_PACKAGE</ActualRateType><RatedShipmentDetails><ShipmentRateDetail><RateType>PAYOR_ACCOUNT_PACKAGE</RateType><RateZone>52</RateZone><RatedWeightMethod>ACTUAL</RatedWeightMethod><DimDivisor>0</DimDivisor><FuelSurchargePercent>3.0</FuelSurchargePercent><TotalBillingWeight><Units>LB</Units><Value>7.0</Value></TotalBillingWeight><TotalBaseCharge><Currency>CAD</Currency><Amount>24.55</Amount></TotalBaseCharge><TotalFreightDiscounts><Currency>CAD</Currency><Amount>0.0</Amount></TotalFreightDiscounts><TotalNetFreight><Currency>CAD</Currency><Amount>24.55</Amount></TotalNetFreight><TotalSurcharges><Currency>CAD</Currency><Amount>4.35</Amount></TotalSurcharges><TotalNetFedExCharge><Currency>CAD</Currency><Amount>28.9</Amount></TotalNetFedExCharge><TotalTaxes><Currency>CAD</Currency><Amount>0.0</Amount></TotalTaxes><TotalNetCharge><Currency>CAD</Currency><Amount>28.9</Amount></TotalNetCharge><TotalRebates><Currency>CAD</Currency><Amount>0.0</Amount></TotalRebates><TotalDutiesAndTaxes><Currency>CAD</Currency><Amount>0.0</Amount></TotalDutiesAndTaxes><TotalNetChargeWithDutiesAndTaxes><Currency>CAD</Currency><Amount>28.9</Amount></TotalNetChargeWithDutiesAndTaxes><Surcharges><SurchargeType>RESIDENTIAL_DELIVERY</SurchargeType><Level>PACKAGE</Level><Description>Residential delivery</Description><Amount><Currency>CAD</Currency><Amount>3.5</Amount></Amount></Surcharges><Surcharges><SurchargeType>FUEL</SurchargeType><Level>PACKAGE</Level><Description>FedEx Ground Fuel</Description><Amount><Currency>CAD</Currency><Amount>0.85</Amount></Amount></Surcharges></ShipmentRateDetail><RatedPackages><GroupNumber>0</GroupNumber><PackageRateDetail><RateType>PAYOR_ACCOUNT_PACKAGE</RateType><RatedWeightMethod>ACTUAL</RatedWeightMethod><BillingWeight><Units>KG</Units><Value>3.18</Value></BillingWeight><BaseCharge><Currency>CAD</Currency><Amount>24.55</Amount></BaseCharge><TotalFreightDiscounts><Currency>CAD</Currency><Amount>0.0</Amount></TotalFreightDiscounts><NetFreight><Currency>CAD</Currency><Amount>24.55</Amount></NetFreight><TotalSurcharges><Currency>CAD</Currency><Amount>4.35</Amount></TotalSurcharges><NetFedExCharge><Currency>CAD</Currency><Amount>28.9</Amount></NetFedExCharge><TotalTaxes><Currency>CAD</Currency><Amount>0.0</Amount></TotalTaxes><NetCharge><Currency>CAD</Currency><Amount>28.9</Amount></NetCharge><TotalRebates><Currency>CAD</Currency><Amount>0.0</Amount></TotalRebates><Surcharges><SurchargeType>RESIDENTIAL_DELIVERY</SurchargeType><Level>PACKAGE</Level><Description>Residential delivery</Description><Amount><Currency>CAD</Currency><Amount>3.5</Amount></Amount></Surcharges><Surcharges><SurchargeType>FUEL</SurchargeType><Level>PACKAGE</Level><Description>FedEx Ground Fuel</Description><Amount><Currency>CAD</Currency><Amount>0.85</Amount></Amount></Surcharges></PackageRateDetail></RatedPackages></RatedShipmentDetails></RateReplyDetails></RateReply>
46
+ http_version:
47
+ recorded_at: Thu, 02 Jun 2016 20:03:57 GMT
48
+ recorded_with: VCR 3.0.3
@@ -0,0 +1,48 @@
1
+ ---
2
+ http_interactions:
3
+ - request:
4
+ method: post
5
+ uri: https://gatewaybeta.fedex.com/xml
6
+ body:
7
+ encoding: UTF-8
8
+ string: <?xml version="1.0"?><RateRequest xmlns="http://fedex.com/ws/rate/v13"> <WebAuthenticationDetail> <UserCredential> <Key>xkBPuqiFmGrOU4jL</Key> <Password>UGu5boYODXZ2GEDyUN4Xi1v8E</Password> </UserCredential> </WebAuthenticationDetail> <ClientDetail> <AccountNumber>510087143</AccountNumber> <MeterNumber>118723830</MeterNumber> </ClientDetail> <TransactionDetail> <CustomerTransactionId>ActiveShipping</CustomerTransactionId> </TransactionDetail> <Version> <ServiceId>crs</ServiceId> <Major>13</Major> <Intermediate>0</Intermediate> <Minor>0</Minor> </Version> <ReturnTransitAndCommit>true</ReturnTransitAndCommit> <VariableOptions>SATURDAY_DELIVERY</VariableOptions> <RequestedShipment> <ShipTimestamp>2016-06-02T13:04:05-07:00</ShipTimestamp> <DropoffType>REGULAR_PICKUP</DropoffType> <PackagingType>YOUR_PACKAGING</PackagingType> <Shipper> <Address> <City>Washington</City> <PostalCode>20500</PostalCode> <CountryCode>US</CountryCode> <Residential>true</Residential> </Address> </Shipper> <Recipient> <Address> <City>Chicago</City> <PostalCode>60601</PostalCode> <CountryCode>US</CountryCode> <Residential>true</Residential> </Address> </Recipient> <SmartPostDetail> <Indicia>PARCEL_SELECT</Indicia> <HubId>5902</HubId> </SmartPostDetail> <RateRequestTypes>ACCOUNT</RateRequestTypes> <PackageCount>1</PackageCount> <RequestedPackageLineItems> <GroupPackageCount>1</GroupPackageCount> <Weight> <Units>LB</Units> <Value>6.0</Value> </Weight> <Dimensions> <Length>0</Length> <Width>0</Width> <Height>0</Height> <Units>IN</Units> </Dimensions> </RequestedPackageLineItems> </RequestedShipment></RateRequest>
9
+ headers:
10
+ Content-Type:
11
+ - application/x-www-form-urlencoded
12
+ Accept-Encoding:
13
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
14
+ Accept:
15
+ - "*/*"
16
+ User-Agent:
17
+ - Ruby
18
+ response:
19
+ status:
20
+ code: 200
21
+ message: OK
22
+ headers:
23
+ Date:
24
+ - Thu, 02 Jun 2016 20:04:03 GMT
25
+ Server:
26
+ - Apache
27
+ Set-Cookie:
28
+ - siteDC=edc; path=/; domain=.fedex.com; expires=Fri, 03-Jun-2016 20:04:03 GMT
29
+ X-Wily-Servlet:
30
+ - Encrypt1 GaMcoOotgOSMyoYj73M4djxB/BFdu6Bd7dK9l2vKcsLoBxuCEbM12kwUffT0WqzWwhNfXxOuv1xkOK5NUzCbP46u7vtBQL8InqrXYgHsCoR6RU11Zne5eRfVnPz2s4QorsTJGp6CmyYymgSUI+wxBxsf5OU5gsdEA72cMkRv/fgqELt9eafqj4Lrwr4CAfmKraE28AJvbqJTb+A/db2E4A==
31
+ X-Powered-By:
32
+ - Servlet/2.5 JSP/2.1
33
+ X-Wily-Info:
34
+ - Clear guid=12B73231CC87128E0F000C2DA4B24207
35
+ Vary:
36
+ - Accept-Encoding
37
+ Transfer-Encoding:
38
+ - chunked
39
+ Content-Type:
40
+ - text/xml; charset=utf-8
41
+ body:
42
+ encoding: ASCII-8BIT
43
+ string: |-
44
+ <?xml version="1.0" encoding="UTF-8"?>
45
+ <RateReply xmlns="http://fedex.com/ws/rate/v13" xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/"><HighestSeverity>NOTE</HighestSeverity><Notifications><Severity>NOTE</Severity><Source>crs</Source><Code>765</Code><Message>FedEx Home Delivery Saturday service is not available to destination zip code. </Message><LocalizedMessage>FedEx Home Delivery Saturday service is not available to destination zip code. </LocalizedMessage></Notifications><Notifications><Severity>NOTE</Severity><Source>crs</Source><Code>767</Code><Message>FedEx Home Delivery premium services are not available to this destination. </Message><LocalizedMessage>FedEx Home Delivery premium services are not available to this destination. </LocalizedMessage></Notifications><Notifications><Severity>NOTE</Severity><Source>crs</Source><Code>819</Code><Message>The origin state/province code has been changed. </Message><LocalizedMessage>The origin state/province code has been changed. </LocalizedMessage></Notifications><Notifications><Severity>NOTE</Severity><Source>crs</Source><Code>820</Code><Message>The destination state/province code has been changed. </Message><LocalizedMessage>The destination state/province code has been changed. </LocalizedMessage></Notifications><TransactionDetail><CustomerTransactionId>ActiveShipping</CustomerTransactionId></TransactionDetail><Version><ServiceId>crs</ServiceId><Major>13</Major><Intermediate>0</Intermediate><Minor>0</Minor></Version><RateReplyDetails><ServiceType>FIRST_OVERNIGHT</ServiceType><PackagingType>YOUR_PACKAGING</PackagingType><DeliveryStation>CHIA </DeliveryStation><DeliveryDayOfWeek>FRI</DeliveryDayOfWeek><DeliveryTimestamp>2016-06-03T08:00:00</DeliveryTimestamp><CommitDetails><ServiceType>FIRST_OVERNIGHT</ServiceType><CommitTimestamp>2016-06-03T08:00:00</CommitTimestamp><DayOfWeek>FRI</DayOfWeek><DestinationServiceArea>A1</DestinationServiceArea><BrokerToDestinationDays>0</BrokerToDestinationDays><DocumentContent>NON_DOCUMENTS</DocumentContent></CommitDetails><DestinationAirportId>ORD</DestinationAirportId><IneligibleForMoneyBackGuarantee>false</IneligibleForMoneyBackGuarantee><OriginServiceArea>A2</OriginServiceArea><DestinationServiceArea>A1</DestinationServiceArea><SignatureOption>SERVICE_DEFAULT</SignatureOption><ActualRateType>PAYOR_ACCOUNT_PACKAGE</ActualRateType><RatedShipmentDetails><ShipmentRateDetail><RateType>PAYOR_ACCOUNT_PACKAGE</RateType><RateScale>10</RateScale><RateZone>4</RateZone><PricingCode>PACKAGE</PricingCode><RatedWeightMethod>ACTUAL</RatedWeightMethod><DimDivisor>0</DimDivisor><FuelSurchargePercent>0.75</FuelSurchargePercent><TotalBillingWeight><Units>LB</Units><Value>6.0</Value></TotalBillingWeight><TotalBaseCharge><Currency>USD</Currency><Amount>101.69</Amount></TotalBaseCharge><TotalFreightDiscounts><Currency>USD</Currency><Amount>0.0</Amount></TotalFreightDiscounts><TotalNetFreight><Currency>USD</Currency><Amount>101.69</Amount></TotalNetFreight><TotalSurcharges><Currency>USD</Currency><Amount>4.44</Amount></TotalSurcharges><TotalNetFedExCharge><Currency>USD</Currency><Amount>106.13</Amount></TotalNetFedExCharge><TotalTaxes><Currency>USD</Currency><Amount>0.0</Amount></TotalTaxes><TotalNetCharge><Currency>USD</Currency><Amount>106.13</Amount></TotalNetCharge><TotalRebates><Currency>USD</Currency><Amount>0.0</Amount></TotalRebates><TotalDutiesAndTaxes><Currency>USD</Currency><Amount>0.0</Amount></TotalDutiesAndTaxes><TotalNetChargeWithDutiesAndTaxes><Currency>USD</Currency><Amount>106.13</Amount></TotalNetChargeWithDutiesAndTaxes><Surcharges><SurchargeType>RESIDENTIAL_DELIVERY</SurchargeType><Description>Residential delivery</Description><Amount><Currency>USD</Currency><Amount>3.65</Amount></Amount></Surcharges><Surcharges><SurchargeType>FUEL</SurchargeType><Description>Fuel</Description><Amount><Currency>USD</Currency><Amount>0.79</Amount></Amount></Surcharges></ShipmentRateDetail><RatedPackages><GroupNumber>0</GroupNumber><PackageRateDetail><RateType>PAYOR_ACCOUNT_PACKAGE</RateType><RatedWeightMethod>ACTUAL</RatedWeightMethod><BillingWeight><Units>LB</Units><Value>6.0</Value></BillingWeight><BaseCharge><Currency>USD</Currency><Amount>101.69</Amount></BaseCharge><TotalFreightDiscounts><Currency>USD</Currency><Amount>0.0</Amount></TotalFreightDiscounts><NetFreight><Currency>USD</Currency><Amount>101.69</Amount></NetFreight><TotalSurcharges><Currency>USD</Currency><Amount>4.44</Amount></TotalSurcharges><NetFedExCharge><Currency>USD</Currency><Amount>106.13</Amount></NetFedExCharge><TotalTaxes><Currency>USD</Currency><Amount>0.0</Amount></TotalTaxes><NetCharge><Currency>USD</Currency><Amount>106.13</Amount></NetCharge><TotalRebates><Currency>USD</Currency><Amount>0.0</Amount></TotalRebates><Surcharges><SurchargeType>RESIDENTIAL_DELIVERY</SurchargeType><Description>Residential delivery</Description><Amount><Currency>USD</Currency><Amount>3.65</Amount></Amount></Surcharges><Surcharges><SurchargeType>FUEL</SurchargeType><Description>Fuel</Description><Amount><Currency>USD</Currency><Amount>0.79</Amount></Amount></Surcharges></PackageRateDetail></RatedPackages></RatedShipmentDetails><RatedShipmentDetails><ShipmentRateDetail><RateType>RATED_ACCOUNT_PACKAGE</RateType><RateScale>10</RateScale><RateZone>4</RateZone><PricingCode>PACKAGE</PricingCode><RatedWeightMethod>ACTUAL</RatedWeightMethod><DimDivisor>0</DimDivisor><FuelSurchargePercent>0.75</FuelSurchargePercent><TotalBillingWeight><Units>LB</Units><Value>6.0</Value></TotalBillingWeight><TotalBaseCharge><Currency>USD</Currency><Amount>101.69</Amount></TotalBaseCharge><TotalFreightDiscounts><Currency>USD</Currency><Amount>0.0</Amount></TotalFreightDiscounts><TotalNetFreight><Currency>USD</Currency><Amount>101.69</Amount></TotalNetFreight><TotalSurcharges><Currency>USD</Currency><Amount>4.44</Amount></TotalSurcharges><TotalNetFedExCharge><Currency>USD</Currency><Amount>106.13</Amount></TotalNetFedExCharge><TotalTaxes><Currency>USD</Currency><Amount>0.0</Amount></TotalTaxes><TotalNetCharge><Currency>USD</Currency><Amount>106.13</Amount></TotalNetCharge><TotalRebates><Currency>USD</Currency><Amount>0.0</Amount></TotalRebates><TotalDutiesAndTaxes><Currency>USD</Currency><Amount>0.0</Amount></TotalDutiesAndTaxes><TotalNetChargeWithDutiesAndTaxes><Currency>USD</Currency><Amount>106.13</Amount></TotalNetChargeWithDutiesAndTaxes><Surcharges><SurchargeType>RESIDENTIAL_DELIVERY</SurchargeType><Description>Residential delivery</Description><Amount><Currency>USD</Currency><Amount>3.65</Amount></Amount></Surcharges><Surcharges><SurchargeType>FUEL</SurchargeType><Description>Fuel</Description><Amount><Currency>USD</Currency><Amount>0.79</Amount></Amount></Surcharges></ShipmentRateDetail><RatedPackages><GroupNumber>0</GroupNumber><PackageRateDetail><RateType>RATED_ACCOUNT_PACKAGE</RateType><RatedWeightMethod>ACTUAL</RatedWeightMethod><BillingWeight><Units>LB</Units><Value>6.0</Value></BillingWeight><BaseCharge><Currency>USD</Currency><Amount>101.69</Amount></BaseCharge><TotalFreightDiscounts><Currency>USD</Currency><Amount>0.0</Amount></TotalFreightDiscounts><NetFreight><Currency>USD</Currency><Amount>101.69</Amount></NetFreight><TotalSurcharges><Currency>USD</Currency><Amount>4.44</Amount></TotalSurcharges><NetFedExCharge><Currency>USD</Currency><Amount>106.13</Amount></NetFedExCharge><TotalTaxes><Currency>USD</Currency><Amount>0.0</Amount></TotalTaxes><NetCharge><Currency>USD</Currency><Amount>106.13</Amount></NetCharge><TotalRebates><Currency>USD</Currency><Amount>0.0</Amount></TotalRebates><Surcharges><SurchargeType>RESIDENTIAL_DELIVERY</SurchargeType><Description>Residential delivery</Description><Amount><Currency>USD</Currency><Amount>3.65</Amount></Amount></Surcharges><Surcharges><SurchargeType>FUEL</SurchargeType><Description>Fuel</Description><Amount><Currency>USD</Currency><Amount>0.79</Amount></Amount></Surcharges></PackageRateDetail></RatedPackages></RatedShipmentDetails></RateReplyDetails><RateReplyDetails><ServiceType>PRIORITY_OVERNIGHT</ServiceType><PackagingType>YOUR_PACKAGING</PackagingType><DeliveryStation>CHIA </DeliveryStation><DeliveryDayOfWeek>FRI</DeliveryDayOfWeek><DeliveryTimestamp>2016-06-03T10:30:00</DeliveryTimestamp><CommitDetails><ServiceType>PRIORITY_OVERNIGHT</ServiceType><CommitTimestamp>2016-06-03T10:30:00</CommitTimestamp><DayOfWeek>FRI</DayOfWeek><DestinationServiceArea>A1</DestinationServiceArea><BrokerToDestinationDays>0</BrokerToDestinationDays><DocumentContent>NON_DOCUMENTS</DocumentContent></CommitDetails><DestinationAirportId>ORD</DestinationAirportId><IneligibleForMoneyBackGuarantee>false</IneligibleForMoneyBackGuarantee><OriginServiceArea>A2</OriginServiceArea><DestinationServiceArea>A1</DestinationServiceArea><SignatureOption>SERVICE_DEFAULT</SignatureOption><ActualRateType>PAYOR_ACCOUNT_PACKAGE</ActualRateType><RatedShipmentDetails><ShipmentRateDetail><RateType>PAYOR_ACCOUNT_PACKAGE</RateType><RateScale>1</RateScale><PricingCode>PACKAGE</PricingCode><RatedWeightMethod>ACTUAL</RatedWeightMethod><DimDivisor>0</DimDivisor><FuelSurchargePercent>0.75</FuelSurchargePercent><TotalBillingWeight><Units>LB</Units><Value>6.0</Value></TotalBillingWeight><TotalBaseCharge><Currency>USD</Currency><Amount>37.0</Amount></TotalBaseCharge><TotalFreightDiscounts><Currency>USD</Currency><Amount>0.0</Amount></TotalFreightDiscounts><TotalNetFreight><Currency>USD</Currency><Amount>37.0</Amount></TotalNetFreight><TotalSurcharges><Currency>USD</Currency><Amount>3.95</Amount></TotalSurcharges><TotalNetFedExCharge><Currency>USD</Currency><Amount>40.95</Amount></TotalNetFedExCharge><TotalTaxes><Currency>USD</Currency><Amount>0.0</Amount></TotalTaxes><TotalNetCharge><Currency>USD</Currency><Amount>40.95</Amount></TotalNetCharge><TotalRebates><Currency>USD</Currency><Amount>0.0</Amount></TotalRebates><TotalDutiesAndTaxes><Currency>USD</Currency><Amount>0.0</Amount></TotalDutiesAndTaxes><TotalNetChargeWithDutiesAndTaxes><Currency>USD</Currency><Amount>40.95</Amount></TotalNetChargeWithDutiesAndTaxes><Surcharges><SurchargeType>RESIDENTIAL_DELIVERY</SurchargeType><Description>Residential delivery</Description><Amount><Currency>USD</Currency><Amount>3.65</Amount></Amount></Surcharges><Surcharges><SurchargeType>FUEL</SurchargeType><Description>Fuel</Description><Amount><Currency>USD</Currency><Amount>0.3</Amount></Amount></Surcharges></ShipmentRateDetail><RatedPackages><GroupNumber>0</GroupNumber><PackageRateDetail><RateType>PAYOR_ACCOUNT_PACKAGE</RateType><RatedWeightMethod>ACTUAL</RatedWeightMethod><BillingWeight><Units>LB</Units><Value>6.0</Value></BillingWeight><BaseCharge><Currency>USD</Currency><Amount>37.0</Amount></BaseCharge><TotalFreightDiscounts><Currency>USD</Currency><Amount>0.0</Amount></TotalFreightDiscounts><NetFreight><Currency>USD</Currency><Amount>37.0</Amount></NetFreight><TotalSurcharges><Currency>USD</Currency><Amount>3.95</Amount></TotalSurcharges><NetFedExCharge><Currency>USD</Currency><Amount>40.95</Amount></NetFedExCharge><TotalTaxes><Currency>USD</Currency><Amount>0.0</Amount></TotalTaxes><NetCharge><Currency>USD</Currency><Amount>40.95</Amount></NetCharge><TotalRebates><Currency>USD</Currency><Amount>0.0</Amount></TotalRebates><Surcharges><SurchargeType>RESIDENTIAL_DELIVERY</SurchargeType><Description>Residential delivery</Description><Amount><Currency>USD</Currency><Amount>3.65</Amount></Amount></Surcharges><Surcharges><SurchargeType>FUEL</SurchargeType><Description>Fuel</Description><Amount><Currency>USD</Currency><Amount>0.3</Amount></Amount></Surcharges></PackageRateDetail></RatedPackages></RatedShipmentDetails><RatedShipmentDetails><ShipmentRateDetail><RateType>RATED_ACCOUNT_PACKAGE</RateType><RateScale>1</RateScale><PricingCode>PACKAGE</PricingCode><RatedWeightMethod>ACTUAL</RatedWeightMethod><DimDivisor>0</DimDivisor><FuelSurchargePercent>0.75</FuelSurchargePercent><TotalBillingWeight><Units>LB</Units><Value>6.0</Value></TotalBillingWeight><TotalBaseCharge><Currency>USD</Currency><Amount>37.0</Amount></TotalBaseCharge><TotalFreightDiscounts><Currency>USD</Currency><Amount>0.0</Amount></TotalFreightDiscounts><TotalNetFreight><Currency>USD</Currency><Amount>37.0</Amount></TotalNetFreight><TotalSurcharges><Currency>USD</Currency><Amount>3.95</Amount></TotalSurcharges><TotalNetFedExCharge><Currency>USD</Currency><Amount>40.95</Amount></TotalNetFedExCharge><TotalTaxes><Currency>USD</Currency><Amount>0.0</Amount></TotalTaxes><TotalNetCharge><Currency>USD</Currency><Amount>40.95</Amount></TotalNetCharge><TotalRebates><Currency>USD</Currency><Amount>0.0</Amount></TotalRebates><TotalDutiesAndTaxes><Currency>USD</Currency><Amount>0.0</Amount></TotalDutiesAndTaxes><TotalNetChargeWithDutiesAndTaxes><Currency>USD</Currency><Amount>40.95</Amount></TotalNetChargeWithDutiesAndTaxes><Surcharges><SurchargeType>RESIDENTIAL_DELIVERY</SurchargeType><Description>Residential delivery</Description><Amount><Currency>USD</Currency><Amount>3.65</Amount></Amount></Surcharges><Surcharges><SurchargeType>FUEL</SurchargeType><Description>Fuel</Description><Amount><Currency>USD</Currency><Amount>0.3</Amount></Amount></Surcharges></ShipmentRateDetail><RatedPackages><GroupNumber>0</GroupNumber><PackageRateDetail><RateType>RATED_ACCOUNT_PACKAGE</RateType><RatedWeightMethod>ACTUAL</RatedWeightMethod><BillingWeight><Units>LB</Units><Value>6.0</Value></BillingWeight><BaseCharge><Currency>USD</Currency><Amount>37.0</Amount></BaseCharge><TotalFreightDiscounts><Currency>USD</Currency><Amount>0.0</Amount></TotalFreightDiscounts><NetFreight><Currency>USD</Currency><Amount>37.0</Amount></NetFreight><TotalSurcharges><Currency>USD</Currency><Amount>3.95</Amount></TotalSurcharges><NetFedExCharge><Currency>USD</Currency><Amount>40.95</Amount></NetFedExCharge><TotalTaxes><Currency>USD</Currency><Amount>0.0</Amount></TotalTaxes><NetCharge><Currency>USD</Currency><Amount>40.95</Amount></NetCharge><TotalRebates><Currency>USD</Currency><Amount>0.0</Amount></TotalRebates><Surcharges><SurchargeType>RESIDENTIAL_DELIVERY</SurchargeType><Description>Residential delivery</Description><Amount><Currency>USD</Currency><Amount>3.65</Amount></Amount></Surcharges><Surcharges><SurchargeType>FUEL</SurchargeType><Description>Fuel</Description><Amount><Currency>USD</Currency><Amount>0.3</Amount></Amount></Surcharges></PackageRateDetail></RatedPackages></RatedShipmentDetails></RateReplyDetails><RateReplyDetails><ServiceType>STANDARD_OVERNIGHT</ServiceType><PackagingType>YOUR_PACKAGING</PackagingType><DeliveryStation>CHIA </DeliveryStation><DeliveryDayOfWeek>FRI</DeliveryDayOfWeek><DeliveryTimestamp>2016-06-03T20:00:00</DeliveryTimestamp><CommitDetails><ServiceType>STANDARD_OVERNIGHT</ServiceType><CommitTimestamp>2016-06-03T20:00:00</CommitTimestamp><DayOfWeek>FRI</DayOfWeek><DestinationServiceArea>A1</DestinationServiceArea><BrokerToDestinationDays>0</BrokerToDestinationDays><DocumentContent>NON_DOCUMENTS</DocumentContent></CommitDetails><DestinationAirportId>ORD</DestinationAirportId><IneligibleForMoneyBackGuarantee>false</IneligibleForMoneyBackGuarantee><OriginServiceArea>A2</OriginServiceArea><DestinationServiceArea>A1</DestinationServiceArea><SignatureOption>SERVICE_DEFAULT</SignatureOption><ActualRateType>PAYOR_ACCOUNT_PACKAGE</ActualRateType><RatedShipmentDetails><ShipmentRateDetail><RateType>PAYOR_ACCOUNT_PACKAGE</RateType><RateScale>1327</RateScale><RateZone>4</RateZone><PricingCode>PACKAGE</PricingCode><RatedWeightMethod>ACTUAL</RatedWeightMethod><DimDivisor>0</DimDivisor><FuelSurchargePercent>0.75</FuelSurchargePercent><TotalBillingWeight><Units>LB</Units><Value>6.0</Value></TotalBillingWeight><TotalBaseCharge><Currency>USD</Currency><Amount>71.74</Amount></TotalBaseCharge><TotalFreightDiscounts><Currency>USD</Currency><Amount>0.0</Amount></TotalFreightDiscounts><TotalNetFreight><Currency>USD</Currency><Amount>71.74</Amount></TotalNetFreight><TotalSurcharges><Currency>USD</Currency><Amount>4.22</Amount></TotalSurcharges><TotalNetFedExCharge><Currency>USD</Currency><Amount>75.96</Amount></TotalNetFedExCharge><TotalTaxes><Currency>USD</Currency><Amount>0.0</Amount></TotalTaxes><TotalNetCharge><Currency>USD</Currency><Amount>75.96</Amount></TotalNetCharge><TotalRebates><Currency>USD</Currency><Amount>0.0</Amount></TotalRebates><TotalDutiesAndTaxes><Currency>USD</Currency><Amount>0.0</Amount></TotalDutiesAndTaxes><TotalNetChargeWithDutiesAndTaxes><Currency>USD</Currency><Amount>75.96</Amount></TotalNetChargeWithDutiesAndTaxes><Surcharges><SurchargeType>RESIDENTIAL_DELIVERY</SurchargeType><Description>Residential delivery</Description><Amount><Currency>USD</Currency><Amount>3.65</Amount></Amount></Surcharges><Surcharges><SurchargeType>FUEL</SurchargeType><Description>Fuel</Description><Amount><Currency>USD</Currency><Amount>0.57</Amount></Amount></Surcharges></ShipmentRateDetail><RatedPackages><GroupNumber>0</GroupNumber><PackageRateDetail><RateType>PAYOR_ACCOUNT_PACKAGE</RateType><RatedWeightMethod>ACTUAL</RatedWeightMethod><BillingWeight><Units>LB</Units><Value>6.0</Value></BillingWeight><BaseCharge><Currency>USD</Currency><Amount>71.74</Amount></BaseCharge><TotalFreightDiscounts><Currency>USD</Currency><Amount>0.0</Amount></TotalFreightDiscounts><NetFreight><Currency>USD</Currency><Amount>71.74</Amount></NetFreight><TotalSurcharges><Currency>USD</Currency><Amount>4.22</Amount></TotalSurcharges><NetFedExCharge><Currency>USD</Currency><Amount>75.96</Amount></NetFedExCharge><TotalTaxes><Currency>USD</Currency><Amount>0.0</Amount></TotalTaxes><NetCharge><Currency>USD</Currency><Amount>75.96</Amount></NetCharge><TotalRebates><Currency>USD</Currency><Amount>0.0</Amount></TotalRebates><Surcharges><SurchargeType>RESIDENTIAL_DELIVERY</SurchargeType><Description>Residential delivery</Description><Amount><Currency>USD</Currency><Amount>3.65</Amount></Amount></Surcharges><Surcharges><SurchargeType>FUEL</SurchargeType><Description>Fuel</Description><Amount><Currency>USD</Currency><Amount>0.57</Amount></Amount></Surcharges></PackageRateDetail></RatedPackages></RatedShipmentDetails><RatedShipmentDetails><ShipmentRateDetail><RateType>RATED_ACCOUNT_PACKAGE</RateType><RateScale>1327</RateScale><RateZone>4</RateZone><PricingCode>PACKAGE</PricingCode><RatedWeightMethod>ACTUAL</RatedWeightMethod><DimDivisor>0</DimDivisor><FuelSurchargePercent>0.75</FuelSurchargePercent><TotalBillingWeight><Units>LB</Units><Value>6.0</Value></TotalBillingWeight><TotalBaseCharge><Currency>USD</Currency><Amount>71.74</Amount></TotalBaseCharge><TotalFreightDiscounts><Currency>USD</Currency><Amount>0.0</Amount></TotalFreightDiscounts><TotalNetFreight><Currency>USD</Currency><Amount>71.74</Amount></TotalNetFreight><TotalSurcharges><Currency>USD</Currency><Amount>4.22</Amount></TotalSurcharges><TotalNetFedExCharge><Currency>USD</Currency><Amount>75.96</Amount></TotalNetFedExCharge><TotalTaxes><Currency>USD</Currency><Amount>0.0</Amount></TotalTaxes><TotalNetCharge><Currency>USD</Currency><Amount>75.96</Amount></TotalNetCharge><TotalRebates><Currency>USD</Currency><Amount>0.0</Amount></TotalRebates><TotalDutiesAndTaxes><Currency>USD</Currency><Amount>0.0</Amount></TotalDutiesAndTaxes><TotalNetChargeWithDutiesAndTaxes><Currency>USD</Currency><Amount>75.96</Amount></TotalNetChargeWithDutiesAndTaxes><Surcharges><SurchargeType>RESIDENTIAL_DELIVERY</SurchargeType><Description>Residential delivery</Description><Amount><Currency>USD</Currency><Amount>3.65</Amount></Amount></Surcharges><Surcharges><SurchargeType>FUEL</SurchargeType><Description>Fuel</Description><Amount><Currency>USD</Currency><Amount>0.57</Amount></Amount></Surcharges></ShipmentRateDetail><RatedPackages><GroupNumber>0</GroupNumber><PackageRateDetail><RateType>RATED_ACCOUNT_PACKAGE</RateType><RatedWeightMethod>ACTUAL</RatedWeightMethod><BillingWeight><Units>LB</Units><Value>6.0</Value></BillingWeight><BaseCharge><Currency>USD</Currency><Amount>71.74</Amount></BaseCharge><TotalFreightDiscounts><Currency>USD</Currency><Amount>0.0</Amount></TotalFreightDiscounts><NetFreight><Currency>USD</Currency><Amount>71.74</Amount></NetFreight><TotalSurcharges><Currency>USD</Currency><Amount>4.22</Amount></TotalSurcharges><NetFedExCharge><Currency>USD</Currency><Amount>75.96</Amount></NetFedExCharge><TotalTaxes><Currency>USD</Currency><Amount>0.0</Amount></TotalTaxes><NetCharge><Currency>USD</Currency><Amount>75.96</Amount></NetCharge><TotalRebates><Currency>USD</Currency><Amount>0.0</Amount></TotalRebates><Surcharges><SurchargeType>RESIDENTIAL_DELIVERY</SurchargeType><Description>Residential delivery</Description><Amount><Currency>USD</Currency><Amount>3.65</Amount></Amount></Surcharges><Surcharges><SurchargeType>FUEL</SurchargeType><Description>Fuel</Description><Amount><Currency>USD</Currency><Amount>0.57</Amount></Amount></Surcharges></PackageRateDetail></RatedPackages></RatedShipmentDetails></RateReplyDetails><RateReplyDetails><ServiceType>FEDEX_2_DAY_AM</ServiceType><PackagingType>YOUR_PACKAGING</PackagingType><DeliveryStation>CHIA </DeliveryStation><DeliveryDayOfWeek>MON</DeliveryDayOfWeek><DeliveryTimestamp>2016-06-06T10:30:00</DeliveryTimestamp><CommitDetails><ServiceType>FEDEX_2_DAY_AM</ServiceType><CommitTimestamp>2016-06-06T10:30:00</CommitTimestamp><DayOfWeek>MON</DayOfWeek><DestinationServiceArea>A1</DestinationServiceArea><BrokerToDestinationDays>0</BrokerToDestinationDays><DocumentContent>NON_DOCUMENTS</DocumentContent></CommitDetails><DestinationAirportId>ORD</DestinationAirportId><IneligibleForMoneyBackGuarantee>false</IneligibleForMoneyBackGuarantee><OriginServiceArea>A2</OriginServiceArea><DestinationServiceArea>A1</DestinationServiceArea><SignatureOption>SERVICE_DEFAULT</SignatureOption><ActualRateType>PAYOR_ACCOUNT_PACKAGE</ActualRateType><RatedShipmentDetails><ShipmentRateDetail><RateType>PAYOR_ACCOUNT_PACKAGE</RateType><RateScale>8</RateScale><RateZone>4</RateZone><PricingCode>PACKAGE</PricingCode><RatedWeightMethod>ACTUAL</RatedWeightMethod><DimDivisor>0</DimDivisor><FuelSurchargePercent>0.75</FuelSurchargePercent><TotalBillingWeight><Units>LB</Units><Value>6.0</Value></TotalBillingWeight><TotalBaseCharge><Currency>USD</Currency><Amount>27.11</Amount></TotalBaseCharge><TotalFreightDiscounts><Currency>USD</Currency><Amount>0.0</Amount></TotalFreightDiscounts><TotalNetFreight><Currency>USD</Currency><Amount>27.11</Amount></TotalNetFreight><TotalSurcharges><Currency>USD</Currency><Amount>3.88</Amount></TotalSurcharges><TotalNetFedExCharge><Currency>USD</Currency><Amount>30.99</Amount></TotalNetFedExCharge><TotalTaxes><Currency>USD</Currency><Amount>0.0</Amount></TotalTaxes><TotalNetCharge><Currency>USD</Currency><Amount>30.99</Amount></TotalNetCharge><TotalRebates><Currency>USD</Currency><Amount>0.0</Amount></TotalRebates><TotalDutiesAndTaxes><Currency>USD</Currency><Amount>0.0</Amount></TotalDutiesAndTaxes><TotalNetChargeWithDutiesAndTaxes><Currency>USD</Currency><Amount>30.99</Amount></TotalNetChargeWithDutiesAndTaxes><Surcharges><SurchargeType>RESIDENTIAL_DELIVERY</SurchargeType><Description>Residential delivery</Description><Amount><Currency>USD</Currency><Amount>3.65</Amount></Amount></Surcharges><Surcharges><SurchargeType>FUEL</SurchargeType><Description>Fuel</Description><Amount><Currency>USD</Currency><Amount>0.23</Amount></Amount></Surcharges></ShipmentRateDetail><RatedPackages><GroupNumber>0</GroupNumber><PackageRateDetail><RateType>PAYOR_ACCOUNT_PACKAGE</RateType><RatedWeightMethod>ACTUAL</RatedWeightMethod><BillingWeight><Units>LB</Units><Value>6.0</Value></BillingWeight><BaseCharge><Currency>USD</Currency><Amount>27.11</Amount></BaseCharge><TotalFreightDiscounts><Currency>USD</Currency><Amount>0.0</Amount></TotalFreightDiscounts><NetFreight><Currency>USD</Currency><Amount>27.11</Amount></NetFreight><TotalSurcharges><Currency>USD</Currency><Amount>3.88</Amount></TotalSurcharges><NetFedExCharge><Currency>USD</Currency><Amount>30.99</Amount></NetFedExCharge><TotalTaxes><Currency>USD</Currency><Amount>0.0</Amount></TotalTaxes><NetCharge><Currency>USD</Currency><Amount>30.99</Amount></NetCharge><TotalRebates><Currency>USD</Currency><Amount>0.0</Amount></TotalRebates><Surcharges><SurchargeType>RESIDENTIAL_DELIVERY</SurchargeType><Description>Residential delivery</Description><Amount><Currency>USD</Currency><Amount>3.65</Amount></Amount></Surcharges><Surcharges><SurchargeType>FUEL</SurchargeType><Description>Fuel</Description><Amount><Currency>USD</Currency><Amount>0.23</Amount></Amount></Surcharges></PackageRateDetail></RatedPackages></RatedShipmentDetails><RatedShipmentDetails><ShipmentRateDetail><RateType>RATED_ACCOUNT_PACKAGE</RateType><RateScale>8</RateScale><RateZone>4</RateZone><PricingCode>PACKAGE</PricingCode><RatedWeightMethod>ACTUAL</RatedWeightMethod><DimDivisor>0</DimDivisor><FuelSurchargePercent>0.75</FuelSurchargePercent><TotalBillingWeight><Units>LB</Units><Value>6.0</Value></TotalBillingWeight><TotalBaseCharge><Currency>USD</Currency><Amount>27.11</Amount></TotalBaseCharge><TotalFreightDiscounts><Currency>USD</Currency><Amount>0.0</Amount></TotalFreightDiscounts><TotalNetFreight><Currency>USD</Currency><Amount>27.11</Amount></TotalNetFreight><TotalSurcharges><Currency>USD</Currency><Amount>3.88</Amount></TotalSurcharges><TotalNetFedExCharge><Currency>USD</Currency><Amount>30.99</Amount></TotalNetFedExCharge><TotalTaxes><Currency>USD</Currency><Amount>0.0</Amount></TotalTaxes><TotalNetCharge><Currency>USD</Currency><Amount>30.99</Amount></TotalNetCharge><TotalRebates><Currency>USD</Currency><Amount>0.0</Amount></TotalRebates><TotalDutiesAndTaxes><Currency>USD</Currency><Amount>0.0</Amount></TotalDutiesAndTaxes><TotalNetChargeWithDutiesAndTaxes><Currency>USD</Currency><Amount>30.99</Amount></TotalNetChargeWithDutiesAndTaxes><Surcharges><SurchargeType>RESIDENTIAL_DELIVERY</SurchargeType><Description>Residential delivery</Description><Amount><Currency>USD</Currency><Amount>3.65</Amount></Amount></Surcharges><Surcharges><SurchargeType>FUEL</SurchargeType><Description>Fuel</Description><Amount><Currency>USD</Currency><Amount>0.23</Amount></Amount></Surcharges></ShipmentRateDetail><RatedPackages><GroupNumber>0</GroupNumber><PackageRateDetail><RateType>RATED_ACCOUNT_PACKAGE</RateType><RatedWeightMethod>ACTUAL</RatedWeightMethod><BillingWeight><Units>LB</Units><Value>6.0</Value></BillingWeight><BaseCharge><Currency>USD</Currency><Amount>27.11</Amount></BaseCharge><TotalFreightDiscounts><Currency>USD</Currency><Amount>0.0</Amount></TotalFreightDiscounts><NetFreight><Currency>USD</Currency><Amount>27.11</Amount></NetFreight><TotalSurcharges><Currency>USD</Currency><Amount>3.88</Amount></TotalSurcharges><NetFedExCharge><Currency>USD</Currency><Amount>30.99</Amount></NetFedExCharge><TotalTaxes><Currency>USD</Currency><Amount>0.0</Amount></TotalTaxes><NetCharge><Currency>USD</Currency><Amount>30.99</Amount></NetCharge><TotalRebates><Currency>USD</Currency><Amount>0.0</Amount></TotalRebates><Surcharges><SurchargeType>RESIDENTIAL_DELIVERY</SurchargeType><Description>Residential delivery</Description><Amount><Currency>USD</Currency><Amount>3.65</Amount></Amount></Surcharges><Surcharges><SurchargeType>FUEL</SurchargeType><Description>Fuel</Description><Amount><Currency>USD</Currency><Amount>0.23</Amount></Amount></Surcharges></PackageRateDetail></RatedPackages></RatedShipmentDetails></RateReplyDetails><RateReplyDetails><ServiceType>FEDEX_2_DAY</ServiceType><PackagingType>YOUR_PACKAGING</PackagingType><DeliveryStation>CHIA </DeliveryStation><DeliveryDayOfWeek>MON</DeliveryDayOfWeek><DeliveryTimestamp>2016-06-06T20:00:00</DeliveryTimestamp><CommitDetails><ServiceType>FEDEX_2_DAY</ServiceType><CommitTimestamp>2016-06-06T20:00:00</CommitTimestamp><DayOfWeek>MON</DayOfWeek><DestinationServiceArea>A1</DestinationServiceArea><BrokerToDestinationDays>0</BrokerToDestinationDays><DocumentContent>NON_DOCUMENTS</DocumentContent></CommitDetails><DestinationAirportId>ORD</DestinationAirportId><IneligibleForMoneyBackGuarantee>false</IneligibleForMoneyBackGuarantee><OriginServiceArea>A2</OriginServiceArea><DestinationServiceArea>A1</DestinationServiceArea><SignatureOption>SERVICE_DEFAULT</SignatureOption><ActualRateType>PAYOR_ACCOUNT_PACKAGE</ActualRateType><RatedShipmentDetails><ShipmentRateDetail><RateType>PAYOR_ACCOUNT_PACKAGE</RateType><RateScale>6024</RateScale><RateZone>4</RateZone><PricingCode>PACKAGE</PricingCode><RatedWeightMethod>ACTUAL</RatedWeightMethod><DimDivisor>0</DimDivisor><FuelSurchargePercent>0.75</FuelSurchargePercent><TotalBillingWeight><Units>LB</Units><Value>6.0</Value></TotalBillingWeight><TotalBaseCharge><Currency>USD</Currency><Amount>23.57</Amount></TotalBaseCharge><TotalFreightDiscounts><Currency>USD</Currency><Amount>0.0</Amount></TotalFreightDiscounts><TotalNetFreight><Currency>USD</Currency><Amount>23.57</Amount></TotalNetFreight><TotalSurcharges><Currency>USD</Currency><Amount>3.85</Amount></TotalSurcharges><TotalNetFedExCharge><Currency>USD</Currency><Amount>27.42</Amount></TotalNetFedExCharge><TotalTaxes><Currency>USD</Currency><Amount>0.0</Amount></TotalTaxes><TotalNetCharge><Currency>USD</Currency><Amount>27.42</Amount></TotalNetCharge><TotalRebates><Currency>USD</Currency><Amount>0.0</Amount></TotalRebates><TotalDutiesAndTaxes><Currency>USD</Currency><Amount>0.0</Amount></TotalDutiesAndTaxes><TotalNetChargeWithDutiesAndTaxes><Currency>USD</Currency><Amount>27.42</Amount></TotalNetChargeWithDutiesAndTaxes><Surcharges><SurchargeType>RESIDENTIAL_DELIVERY</SurchargeType><Description>Residential delivery</Description><Amount><Currency>USD</Currency><Amount>3.65</Amount></Amount></Surcharges><Surcharges><SurchargeType>FUEL</SurchargeType><Description>Fuel</Description><Amount><Currency>USD</Currency><Amount>0.2</Amount></Amount></Surcharges></ShipmentRateDetail><RatedPackages><GroupNumber>0</GroupNumber><PackageRateDetail><RateType>PAYOR_ACCOUNT_PACKAGE</RateType><RatedWeightMethod>ACTUAL</RatedWeightMethod><BillingWeight><Units>LB</Units><Value>6.0</Value></BillingWeight><BaseCharge><Currency>USD</Currency><Amount>23.57</Amount></BaseCharge><TotalFreightDiscounts><Currency>USD</Currency><Amount>0.0</Amount></TotalFreightDiscounts><NetFreight><Currency>USD</Currency><Amount>23.57</Amount></NetFreight><TotalSurcharges><Currency>USD</Currency><Amount>3.85</Amount></TotalSurcharges><NetFedExCharge><Currency>USD</Currency><Amount>27.42</Amount></NetFedExCharge><TotalTaxes><Currency>USD</Currency><Amount>0.0</Amount></TotalTaxes><NetCharge><Currency>USD</Currency><Amount>27.42</Amount></NetCharge><TotalRebates><Currency>USD</Currency><Amount>0.0</Amount></TotalRebates><Surcharges><SurchargeType>RESIDENTIAL_DELIVERY</SurchargeType><Description>Residential delivery</Description><Amount><Currency>USD</Currency><Amount>3.65</Amount></Amount></Surcharges><Surcharges><SurchargeType>FUEL</SurchargeType><Description>Fuel</Description><Amount><Currency>USD</Currency><Amount>0.2</Amount></Amount></Surcharges></PackageRateDetail></RatedPackages></RatedShipmentDetails><RatedShipmentDetails><ShipmentRateDetail><RateType>RATED_ACCOUNT_PACKAGE</RateType><RateScale>6024</RateScale><RateZone>4</RateZone><PricingCode>PACKAGE</PricingCode><RatedWeightMethod>ACTUAL</RatedWeightMethod><DimDivisor>0</DimDivisor><FuelSurchargePercent>0.75</FuelSurchargePercent><TotalBillingWeight><Units>LB</Units><Value>6.0</Value></TotalBillingWeight><TotalBaseCharge><Currency>USD</Currency><Amount>23.57</Amount></TotalBaseCharge><TotalFreightDiscounts><Currency>USD</Currency><Amount>0.0</Amount></TotalFreightDiscounts><TotalNetFreight><Currency>USD</Currency><Amount>23.57</Amount></TotalNetFreight><TotalSurcharges><Currency>USD</Currency><Amount>3.85</Amount></TotalSurcharges><TotalNetFedExCharge><Currency>USD</Currency><Amount>27.42</Amount></TotalNetFedExCharge><TotalTaxes><Currency>USD</Currency><Amount>0.0</Amount></TotalTaxes><TotalNetCharge><Currency>USD</Currency><Amount>27.42</Amount></TotalNetCharge><TotalRebates><Currency>USD</Currency><Amount>0.0</Amount></TotalRebates><TotalDutiesAndTaxes><Currency>USD</Currency><Amount>0.0</Amount></TotalDutiesAndTaxes><TotalNetChargeWithDutiesAndTaxes><Currency>USD</Currency><Amount>27.42</Amount></TotalNetChargeWithDutiesAndTaxes><Surcharges><SurchargeType>RESIDENTIAL_DELIVERY</SurchargeType><Description>Residential delivery</Description><Amount><Currency>USD</Currency><Amount>3.65</Amount></Amount></Surcharges><Surcharges><SurchargeType>FUEL</SurchargeType><Description>Fuel</Description><Amount><Currency>USD</Currency><Amount>0.2</Amount></Amount></Surcharges></ShipmentRateDetail><RatedPackages><GroupNumber>0</GroupNumber><PackageRateDetail><RateType>RATED_ACCOUNT_PACKAGE</RateType><RatedWeightMethod>ACTUAL</RatedWeightMethod><BillingWeight><Units>LB</Units><Value>6.0</Value></BillingWeight><BaseCharge><Currency>USD</Currency><Amount>23.57</Amount></BaseCharge><TotalFreightDiscounts><Currency>USD</Currency><Amount>0.0</Amount></TotalFreightDiscounts><NetFreight><Currency>USD</Currency><Amount>23.57</Amount></NetFreight><TotalSurcharges><Currency>USD</Currency><Amount>3.85</Amount></TotalSurcharges><NetFedExCharge><Currency>USD</Currency><Amount>27.42</Amount></NetFedExCharge><TotalTaxes><Currency>USD</Currency><Amount>0.0</Amount></TotalTaxes><NetCharge><Currency>USD</Currency><Amount>27.42</Amount></NetCharge><TotalRebates><Currency>USD</Currency><Amount>0.0</Amount></TotalRebates><Surcharges><SurchargeType>RESIDENTIAL_DELIVERY</SurchargeType><Description>Residential delivery</Description><Amount><Currency>USD</Currency><Amount>3.65</Amount></Amount></Surcharges><Surcharges><SurchargeType>FUEL</SurchargeType><Description>Fuel</Description><Amount><Currency>USD</Currency><Amount>0.2</Amount></Amount></Surcharges></PackageRateDetail></RatedPackages></RatedShipmentDetails></RateReplyDetails><RateReplyDetails><ServiceType>FEDEX_EXPRESS_SAVER</ServiceType><PackagingType>YOUR_PACKAGING</PackagingType><DeliveryStation>CHIA </DeliveryStation><DeliveryDayOfWeek>TUE</DeliveryDayOfWeek><DeliveryTimestamp>2016-06-07T20:00:00</DeliveryTimestamp><CommitDetails><ServiceType>FEDEX_EXPRESS_SAVER</ServiceType><CommitTimestamp>2016-06-07T20:00:00</CommitTimestamp><DayOfWeek>TUE</DayOfWeek><DestinationServiceArea>A1</DestinationServiceArea><BrokerToDestinationDays>0</BrokerToDestinationDays><DocumentContent>NON_DOCUMENTS</DocumentContent></CommitDetails><DestinationAirportId>ORD</DestinationAirportId><IneligibleForMoneyBackGuarantee>false</IneligibleForMoneyBackGuarantee><OriginServiceArea>A2</OriginServiceArea><DestinationServiceArea>A1</DestinationServiceArea><SignatureOption>SERVICE_DEFAULT</SignatureOption><ActualRateType>PAYOR_ACCOUNT_PACKAGE</ActualRateType><RatedShipmentDetails><ShipmentRateDetail><RateType>PAYOR_ACCOUNT_PACKAGE</RateType><RateScale>7171</RateScale><RateZone>4</RateZone><PricingCode>PACKAGE</PricingCode><RatedWeightMethod>ACTUAL</RatedWeightMethod><DimDivisor>0</DimDivisor><FuelSurchargePercent>0.75</FuelSurchargePercent><TotalBillingWeight><Units>LB</Units><Value>6.0</Value></TotalBillingWeight><TotalBaseCharge><Currency>USD</Currency><Amount>22.11</Amount></TotalBaseCharge><TotalFreightDiscounts><Currency>USD</Currency><Amount>0.0</Amount></TotalFreightDiscounts><TotalNetFreight><Currency>USD</Currency><Amount>22.11</Amount></TotalNetFreight><TotalSurcharges><Currency>USD</Currency><Amount>3.84</Amount></TotalSurcharges><TotalNetFedExCharge><Currency>USD</Currency><Amount>25.95</Amount></TotalNetFedExCharge><TotalTaxes><Currency>USD</Currency><Amount>0.0</Amount></TotalTaxes><TotalNetCharge><Currency>USD</Currency><Amount>25.95</Amount></TotalNetCharge><TotalRebates><Currency>USD</Currency><Amount>0.0</Amount></TotalRebates><TotalDutiesAndTaxes><Currency>USD</Currency><Amount>0.0</Amount></TotalDutiesAndTaxes><TotalNetChargeWithDutiesAndTaxes><Currency>USD</Currency><Amount>25.95</Amount></TotalNetChargeWithDutiesAndTaxes><Surcharges><SurchargeType>RESIDENTIAL_DELIVERY</SurchargeType><Description>Residential delivery</Description><Amount><Currency>USD</Currency><Amount>3.65</Amount></Amount></Surcharges><Surcharges><SurchargeType>FUEL</SurchargeType><Description>Fuel</Description><Amount><Currency>USD</Currency><Amount>0.19</Amount></Amount></Surcharges></ShipmentRateDetail><RatedPackages><GroupNumber>0</GroupNumber><PackageRateDetail><RateType>PAYOR_ACCOUNT_PACKAGE</RateType><RatedWeightMethod>ACTUAL</RatedWeightMethod><BillingWeight><Units>LB</Units><Value>6.0</Value></BillingWeight><BaseCharge><Currency>USD</Currency><Amount>22.11</Amount></BaseCharge><TotalFreightDiscounts><Currency>USD</Currency><Amount>0.0</Amount></TotalFreightDiscounts><NetFreight><Currency>USD</Currency><Amount>22.11</Amount></NetFreight><TotalSurcharges><Currency>USD</Currency><Amount>3.84</Amount></TotalSurcharges><NetFedExCharge><Currency>USD</Currency><Amount>25.95</Amount></NetFedExCharge><TotalTaxes><Currency>USD</Currency><Amount>0.0</Amount></TotalTaxes><NetCharge><Currency>USD</Currency><Amount>25.95</Amount></NetCharge><TotalRebates><Currency>USD</Currency><Amount>0.0</Amount></TotalRebates><Surcharges><SurchargeType>RESIDENTIAL_DELIVERY</SurchargeType><Description>Residential delivery</Description><Amount><Currency>USD</Currency><Amount>3.65</Amount></Amount></Surcharges><Surcharges><SurchargeType>FUEL</SurchargeType><Description>Fuel</Description><Amount><Currency>USD</Currency><Amount>0.19</Amount></Amount></Surcharges></PackageRateDetail></RatedPackages></RatedShipmentDetails><RatedShipmentDetails><ShipmentRateDetail><RateType>RATED_ACCOUNT_PACKAGE</RateType><RateScale>7171</RateScale><RateZone>4</RateZone><PricingCode>PACKAGE</PricingCode><RatedWeightMethod>ACTUAL</RatedWeightMethod><DimDivisor>0</DimDivisor><FuelSurchargePercent>0.75</FuelSurchargePercent><TotalBillingWeight><Units>LB</Units><Value>6.0</Value></TotalBillingWeight><TotalBaseCharge><Currency>USD</Currency><Amount>22.11</Amount></TotalBaseCharge><TotalFreightDiscounts><Currency>USD</Currency><Amount>0.0</Amount></TotalFreightDiscounts><TotalNetFreight><Currency>USD</Currency><Amount>22.11</Amount></TotalNetFreight><TotalSurcharges><Currency>USD</Currency><Amount>3.84</Amount></TotalSurcharges><TotalNetFedExCharge><Currency>USD</Currency><Amount>25.95</Amount></TotalNetFedExCharge><TotalTaxes><Currency>USD</Currency><Amount>0.0</Amount></TotalTaxes><TotalNetCharge><Currency>USD</Currency><Amount>25.95</Amount></TotalNetCharge><TotalRebates><Currency>USD</Currency><Amount>0.0</Amount></TotalRebates><TotalDutiesAndTaxes><Currency>USD</Currency><Amount>0.0</Amount></TotalDutiesAndTaxes><TotalNetChargeWithDutiesAndTaxes><Currency>USD</Currency><Amount>25.95</Amount></TotalNetChargeWithDutiesAndTaxes><Surcharges><SurchargeType>RESIDENTIAL_DELIVERY</SurchargeType><Description>Residential delivery</Description><Amount><Currency>USD</Currency><Amount>3.65</Amount></Amount></Surcharges><Surcharges><SurchargeType>FUEL</SurchargeType><Description>Fuel</Description><Amount><Currency>USD</Currency><Amount>0.19</Amount></Amount></Surcharges></ShipmentRateDetail><RatedPackages><GroupNumber>0</GroupNumber><PackageRateDetail><RateType>RATED_ACCOUNT_PACKAGE</RateType><RatedWeightMethod>ACTUAL</RatedWeightMethod><BillingWeight><Units>LB</Units><Value>6.0</Value></BillingWeight><BaseCharge><Currency>USD</Currency><Amount>22.11</Amount></BaseCharge><TotalFreightDiscounts><Currency>USD</Currency><Amount>0.0</Amount></TotalFreightDiscounts><NetFreight><Currency>USD</Currency><Amount>22.11</Amount></NetFreight><TotalSurcharges><Currency>USD</Currency><Amount>3.84</Amount></TotalSurcharges><NetFedExCharge><Currency>USD</Currency><Amount>25.95</Amount></NetFedExCharge><TotalTaxes><Currency>USD</Currency><Amount>0.0</Amount></TotalTaxes><NetCharge><Currency>USD</Currency><Amount>25.95</Amount></NetCharge><TotalRebates><Currency>USD</Currency><Amount>0.0</Amount></TotalRebates><Surcharges><SurchargeType>RESIDENTIAL_DELIVERY</SurchargeType><Description>Residential delivery</Description><Amount><Currency>USD</Currency><Amount>3.65</Amount></Amount></Surcharges><Surcharges><SurchargeType>FUEL</SurchargeType><Description>Fuel</Description><Amount><Currency>USD</Currency><Amount>0.19</Amount></Amount></Surcharges></PackageRateDetail></RatedPackages></RatedShipmentDetails></RateReplyDetails><RateReplyDetails><ServiceType>FEDEX_2_DAY</ServiceType><PackagingType>YOUR_PACKAGING</PackagingType><AppliedOptions>SATURDAY_DELIVERY</AppliedOptions><DeliveryStation>CHIA </DeliveryStation><DeliveryDayOfWeek>SAT</DeliveryDayOfWeek><DeliveryTimestamp>2016-06-04T16:30:00</DeliveryTimestamp><CommitDetails><ServiceType>FEDEX_2_DAY</ServiceType><AppliedOptions>SATURDAY_DELIVERY</AppliedOptions><CommitTimestamp>2016-06-04T16:30:00</CommitTimestamp><DayOfWeek>SAT</DayOfWeek><DestinationServiceArea>A1</DestinationServiceArea><BrokerToDestinationDays>0</BrokerToDestinationDays><DocumentContent>NON_DOCUMENTS</DocumentContent></CommitDetails><DestinationAirportId>ORD</DestinationAirportId><IneligibleForMoneyBackGuarantee>false</IneligibleForMoneyBackGuarantee><OriginServiceArea>A2</OriginServiceArea><DestinationServiceArea>A1</DestinationServiceArea><SignatureOption>SERVICE_DEFAULT</SignatureOption><ActualRateType>PAYOR_ACCOUNT_PACKAGE</ActualRateType><RatedShipmentDetails><ShipmentRateDetail><RateType>PAYOR_ACCOUNT_PACKAGE</RateType><RateScale>6024</RateScale><RateZone>4</RateZone><PricingCode>PACKAGE</PricingCode><RatedWeightMethod>ACTUAL</RatedWeightMethod><DimDivisor>0</DimDivisor><FuelSurchargePercent>0.75</FuelSurchargePercent><TotalBillingWeight><Units>LB</Units><Value>6.0</Value></TotalBillingWeight><TotalBaseCharge><Currency>USD</Currency><Amount>23.57</Amount></TotalBaseCharge><TotalFreightDiscounts><Currency>USD</Currency><Amount>0.0</Amount></TotalFreightDiscounts><TotalNetFreight><Currency>USD</Currency><Amount>23.57</Amount></TotalNetFreight><TotalSurcharges><Currency>USD</Currency><Amount>19.97</Amount></TotalSurcharges><TotalNetFedExCharge><Currency>USD</Currency><Amount>43.54</Amount></TotalNetFedExCharge><TotalTaxes><Currency>USD</Currency><Amount>0.0</Amount></TotalTaxes><TotalNetCharge><Currency>USD</Currency><Amount>43.54</Amount></TotalNetCharge><TotalRebates><Currency>USD</Currency><Amount>0.0</Amount></TotalRebates><TotalDutiesAndTaxes><Currency>USD</Currency><Amount>0.0</Amount></TotalDutiesAndTaxes><TotalNetChargeWithDutiesAndTaxes><Currency>USD</Currency><Amount>43.54</Amount></TotalNetChargeWithDutiesAndTaxes><Surcharges><SurchargeType>SATURDAY_DELIVERY</SurchargeType><Description>Saturday delivery</Description><Amount><Currency>USD</Currency><Amount>16.0</Amount></Amount></Surcharges><Surcharges><SurchargeType>RESIDENTIAL_DELIVERY</SurchargeType><Description>Residential delivery</Description><Amount><Currency>USD</Currency><Amount>3.65</Amount></Amount></Surcharges><Surcharges><SurchargeType>FUEL</SurchargeType><Description>Fuel</Description><Amount><Currency>USD</Currency><Amount>0.32</Amount></Amount></Surcharges></ShipmentRateDetail><RatedPackages><GroupNumber>0</GroupNumber><PackageRateDetail><RateType>PAYOR_ACCOUNT_PACKAGE</RateType><RatedWeightMethod>ACTUAL</RatedWeightMethod><BillingWeight><Units>LB</Units><Value>6.0</Value></BillingWeight><BaseCharge><Currency>USD</Currency><Amount>23.57</Amount></BaseCharge><TotalFreightDiscounts><Currency>USD</Currency><Amount>0.0</Amount></TotalFreightDiscounts><NetFreight><Currency>USD</Currency><Amount>23.57</Amount></NetFreight><TotalSurcharges><Currency>USD</Currency><Amount>19.97</Amount></TotalSurcharges><NetFedExCharge><Currency>USD</Currency><Amount>43.54</Amount></NetFedExCharge><TotalTaxes><Currency>USD</Currency><Amount>0.0</Amount></TotalTaxes><NetCharge><Currency>USD</Currency><Amount>43.54</Amount></NetCharge><TotalRebates><Currency>USD</Currency><Amount>0.0</Amount></TotalRebates><Surcharges><SurchargeType>SATURDAY_DELIVERY</SurchargeType><Description>Saturday delivery</Description><Amount><Currency>USD</Currency><Amount>16.0</Amount></Amount></Surcharges><Surcharges><SurchargeType>RESIDENTIAL_DELIVERY</SurchargeType><Description>Residential delivery</Description><Amount><Currency>USD</Currency><Amount>3.65</Amount></Amount></Surcharges><Surcharges><SurchargeType>FUEL</SurchargeType><Description>Fuel</Description><Amount><Currency>USD</Currency><Amount>0.32</Amount></Amount></Surcharges></PackageRateDetail></RatedPackages></RatedShipmentDetails><RatedShipmentDetails><ShipmentRateDetail><RateType>RATED_ACCOUNT_PACKAGE</RateType><RateScale>6024</RateScale><RateZone>4</RateZone><PricingCode>PACKAGE</PricingCode><RatedWeightMethod>ACTUAL</RatedWeightMethod><DimDivisor>0</DimDivisor><FuelSurchargePercent>0.75</FuelSurchargePercent><TotalBillingWeight><Units>LB</Units><Value>6.0</Value></TotalBillingWeight><TotalBaseCharge><Currency>USD</Currency><Amount>23.57</Amount></TotalBaseCharge><TotalFreightDiscounts><Currency>USD</Currency><Amount>0.0</Amount></TotalFreightDiscounts><TotalNetFreight><Currency>USD</Currency><Amount>23.57</Amount></TotalNetFreight><TotalSurcharges><Currency>USD</Currency><Amount>19.97</Amount></TotalSurcharges><TotalNetFedExCharge><Currency>USD</Currency><Amount>43.54</Amount></TotalNetFedExCharge><TotalTaxes><Currency>USD</Currency><Amount>0.0</Amount></TotalTaxes><TotalNetCharge><Currency>USD</Currency><Amount>43.54</Amount></TotalNetCharge><TotalRebates><Currency>USD</Currency><Amount>0.0</Amount></TotalRebates><TotalDutiesAndTaxes><Currency>USD</Currency><Amount>0.0</Amount></TotalDutiesAndTaxes><TotalNetChargeWithDutiesAndTaxes><Currency>USD</Currency><Amount>43.54</Amount></TotalNetChargeWithDutiesAndTaxes><Surcharges><SurchargeType>SATURDAY_DELIVERY</SurchargeType><Description>Saturday delivery</Description><Amount><Currency>USD</Currency><Amount>16.0</Amount></Amount></Surcharges><Surcharges><SurchargeType>RESIDENTIAL_DELIVERY</SurchargeType><Description>Residential delivery</Description><Amount><Currency>USD</Currency><Amount>3.65</Amount></Amount></Surcharges><Surcharges><SurchargeType>FUEL</SurchargeType><Description>Fuel</Description><Amount><Currency>USD</Currency><Amount>0.32</Amount></Amount></Surcharges></ShipmentRateDetail><RatedPackages><GroupNumber>0</GroupNumber><PackageRateDetail><RateType>RATED_ACCOUNT_PACKAGE</RateType><RatedWeightMethod>ACTUAL</RatedWeightMethod><BillingWeight><Units>LB</Units><Value>6.0</Value></BillingWeight><BaseCharge><Currency>USD</Currency><Amount>23.57</Amount></BaseCharge><TotalFreightDiscounts><Currency>USD</Currency><Amount>0.0</Amount></TotalFreightDiscounts><NetFreight><Currency>USD</Currency><Amount>23.57</Amount></NetFreight><TotalSurcharges><Currency>USD</Currency><Amount>19.97</Amount></TotalSurcharges><NetFedExCharge><Currency>USD</Currency><Amount>43.54</Amount></NetFedExCharge><TotalTaxes><Currency>USD</Currency><Amount>0.0</Amount></TotalTaxes><NetCharge><Currency>USD</Currency><Amount>43.54</Amount></NetCharge><TotalRebates><Currency>USD</Currency><Amount>0.0</Amount></TotalRebates><Surcharges><SurchargeType>SATURDAY_DELIVERY</SurchargeType><Description>Saturday delivery</Description><Amount><Currency>USD</Currency><Amount>16.0</Amount></Amount></Surcharges><Surcharges><SurchargeType>RESIDENTIAL_DELIVERY</SurchargeType><Description>Residential delivery</Description><Amount><Currency>USD</Currency><Amount>3.65</Amount></Amount></Surcharges><Surcharges><SurchargeType>FUEL</SurchargeType><Description>Fuel</Description><Amount><Currency>USD</Currency><Amount>0.32</Amount></Amount></Surcharges></PackageRateDetail></RatedPackages></RatedShipmentDetails></RateReplyDetails><RateReplyDetails><ServiceType>GROUND_HOME_DELIVERY</ServiceType><PackagingType>YOUR_PACKAGING</PackagingType><CommitDetails><ServiceType>GROUND_HOME_DELIVERY</ServiceType><TransitTime>TWO_DAYS</TransitTime><BrokerToDestinationDays>0</BrokerToDestinationDays></CommitDetails><DestinationAirportId>ORD</DestinationAirportId><IneligibleForMoneyBackGuarantee>false</IneligibleForMoneyBackGuarantee><TransitTime>TWO_DAYS</TransitTime><SignatureOption>SERVICE_DEFAULT</SignatureOption><ActualRateType>PAYOR_ACCOUNT_PACKAGE</ActualRateType><RatedShipmentDetails><ShipmentRateDetail><RateType>PAYOR_ACCOUNT_PACKAGE</RateType><RateZone>4</RateZone><RatedWeightMethod>ACTUAL</RatedWeightMethod><DimDivisor>0</DimDivisor><FuelSurchargePercent>3.0</FuelSurchargePercent><TotalBillingWeight><Units>LB</Units><Value>6.0</Value></TotalBillingWeight><TotalBaseCharge><Currency>USD</Currency><Amount>10.34</Amount></TotalBaseCharge><TotalFreightDiscounts><Currency>USD</Currency><Amount>0.0</Amount></TotalFreightDiscounts><TotalNetFreight><Currency>USD</Currency><Amount>10.34</Amount></TotalNetFreight><TotalSurcharges><Currency>USD</Currency><Amount>3.66</Amount></TotalSurcharges><TotalNetFedExCharge><Currency>USD</Currency><Amount>14.0</Amount></TotalNetFedExCharge><TotalTaxes><Currency>USD</Currency><Amount>0.0</Amount></TotalTaxes><TotalNetCharge><Currency>USD</Currency><Amount>14.0</Amount></TotalNetCharge><TotalRebates><Currency>USD</Currency><Amount>0.0</Amount></TotalRebates><TotalDutiesAndTaxes><Currency>USD</Currency><Amount>0.0</Amount></TotalDutiesAndTaxes><TotalNetChargeWithDutiesAndTaxes><Currency>USD</Currency><Amount>14.0</Amount></TotalNetChargeWithDutiesAndTaxes><Surcharges><SurchargeType>RESIDENTIAL_DELIVERY</SurchargeType><Level>PACKAGE</Level><Description>FedEx Home Delivery Urban/Rural Charge</Description><Amount><Currency>USD</Currency><Amount>3.25</Amount></Amount></Surcharges><Surcharges><SurchargeType>FUEL</SurchargeType><Level>PACKAGE</Level><Description>FedEx Ground Fuel</Description><Amount><Currency>USD</Currency><Amount>0.41</Amount></Amount></Surcharges></ShipmentRateDetail><RatedPackages><GroupNumber>0</GroupNumber><PackageRateDetail><RateType>PAYOR_ACCOUNT_PACKAGE</RateType><RatedWeightMethod>ACTUAL</RatedWeightMethod><BillingWeight><Units>LB</Units><Value>6.0</Value></BillingWeight><BaseCharge><Currency>USD</Currency><Amount>10.34</Amount></BaseCharge><TotalFreightDiscounts><Currency>USD</Currency><Amount>0.0</Amount></TotalFreightDiscounts><NetFreight><Currency>USD</Currency><Amount>10.34</Amount></NetFreight><TotalSurcharges><Currency>USD</Currency><Amount>3.66</Amount></TotalSurcharges><NetFedExCharge><Currency>USD</Currency><Amount>14.0</Amount></NetFedExCharge><TotalTaxes><Currency>USD</Currency><Amount>0.0</Amount></TotalTaxes><NetCharge><Currency>USD</Currency><Amount>14.0</Amount></NetCharge><TotalRebates><Currency>USD</Currency><Amount>0.0</Amount></TotalRebates><Surcharges><SurchargeType>RESIDENTIAL_DELIVERY</SurchargeType><Level>PACKAGE</Level><Description>FedEx Home Delivery Urban/Rural Charge</Description><Amount><Currency>USD</Currency><Amount>3.25</Amount></Amount></Surcharges><Surcharges><SurchargeType>FUEL</SurchargeType><Level>PACKAGE</Level><Description>FedEx Ground Fuel</Description><Amount><Currency>USD</Currency><Amount>0.41</Amount></Amount></Surcharges></PackageRateDetail></RatedPackages></RatedShipmentDetails></RateReplyDetails></RateReply>
46
+ http_version:
47
+ recorded_at: Thu, 02 Jun 2016 20:04:07 GMT
48
+ recorded_with: VCR 3.0.3
@@ -0,0 +1,48 @@
1
+ ---
2
+ http_interactions:
3
+ - request:
4
+ method: post
5
+ uri: https://gatewaybeta.fedex.com/xml
6
+ body:
7
+ encoding: UTF-8
8
+ string: <?xml version="1.0"?><RateRequest xmlns="http://fedex.com/ws/rate/v13"> <WebAuthenticationDetail> <UserCredential> <Key>xkBPuqiFmGrOU4jL</Key> <Password>UGu5boYODXZ2GEDyUN4Xi1v8E</Password> </UserCredential> </WebAuthenticationDetail> <ClientDetail> <AccountNumber>510087143</AccountNumber> <MeterNumber>118723830</MeterNumber> </ClientDetail> <TransactionDetail> <CustomerTransactionId>ActiveShipping</CustomerTransactionId> </TransactionDetail> <Version> <ServiceId>crs</ServiceId> <Major>13</Major> <Intermediate>0</Intermediate> <Minor>0</Minor> </Version> <ReturnTransitAndCommit>true</ReturnTransitAndCommit> <VariableOptions>SATURDAY_DELIVERY</VariableOptions> <RequestedShipment> <ShipTimestamp>2016-06-02T13:03:57-07:00</ShipTimestamp> <DropoffType>REGULAR_PICKUP</DropoffType> <PackagingType>YOUR_PACKAGING</PackagingType> <Shipper> <Address> <City>Washington</City> <PostalCode>20500</PostalCode> <CountryCode>US</CountryCode> <Residential>true</Residential> </Address> </Shipper> <Recipient> <Address> <City>Chicago</City> <PostalCode>60601</PostalCode> <CountryCode>US</CountryCode> <Residential>true</Residential> </Address> </Recipient> <SmartPostDetail> <Indicia>PARCEL_SELECT</Indicia> <HubId>5902</HubId> </SmartPostDetail> <RateRequestTypes>ACCOUNT</RateRequestTypes> <PackageCount>1</PackageCount> <RequestedPackageLineItems> <GroupPackageCount>1</GroupPackageCount> <Weight> <Units>LB</Units> <Value>6.0</Value> </Weight> <Dimensions> <Length>0</Length> <Width>0</Width> <Height>0</Height> <Units>IN</Units> </Dimensions> </RequestedPackageLineItems> </RequestedShipment></RateRequest>
9
+ headers:
10
+ Content-Type:
11
+ - application/x-www-form-urlencoded
12
+ Accept-Encoding:
13
+ - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
14
+ Accept:
15
+ - "*/*"
16
+ User-Agent:
17
+ - Ruby
18
+ response:
19
+ status:
20
+ code: 200
21
+ message: OK
22
+ headers:
23
+ Date:
24
+ - Thu, 02 Jun 2016 20:03:55 GMT
25
+ Server:
26
+ - Apache
27
+ Set-Cookie:
28
+ - siteDC=edc; path=/; domain=.fedex.com; expires=Fri, 03-Jun-2016 20:03:55 GMT
29
+ X-Wily-Servlet:
30
+ - Encrypt1 GaMcoOotgOSMyoYj73M4dsxJg8pg+egXqWxT0tlCBMozxB2FJoHW86iPptGsWeEMNrrhgg+c1uCrVTL453EE8LUyyZJ0ssHZDmgz/H0Xk331Sy1KEH2kUmXY7Mq3Tf+CfqilOfvoO24JUs7Z6duDQzBDbr7hudkRV1vidonsMbUUBeIoWx/fKXVWWqtcEvhXJp/v93hA5q3ggWAPtS8Bww==
31
+ X-Powered-By:
32
+ - Servlet/2.5 JSP/2.1
33
+ X-Wily-Info:
34
+ - Clear guid=12B71366CC87128A0DFC1C1314F4EE3D
35
+ Vary:
36
+ - Accept-Encoding
37
+ Transfer-Encoding:
38
+ - chunked
39
+ Content-Type:
40
+ - text/xml; charset=utf-8
41
+ body:
42
+ encoding: ASCII-8BIT
43
+ string: |-
44
+ <?xml version="1.0" encoding="UTF-8"?>
45
+ <RateReply xmlns="http://fedex.com/ws/rate/v13" xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/"><HighestSeverity>NOTE</HighestSeverity><Notifications><Severity>NOTE</Severity><Source>crs</Source><Code>765</Code><Message>FedEx Home Delivery Saturday service is not available to destination zip code. </Message><LocalizedMessage>FedEx Home Delivery Saturday service is not available to destination zip code. </LocalizedMessage></Notifications><Notifications><Severity>NOTE</Severity><Source>crs</Source><Code>767</Code><Message>FedEx Home Delivery premium services are not available to this destination. </Message><LocalizedMessage>FedEx Home Delivery premium services are not available to this destination. </LocalizedMessage></Notifications><Notifications><Severity>NOTE</Severity><Source>crs</Source><Code>819</Code><Message>The origin state/province code has been changed. </Message><LocalizedMessage>The origin state/province code has been changed. </LocalizedMessage></Notifications><Notifications><Severity>NOTE</Severity><Source>crs</Source><Code>820</Code><Message>The destination state/province code has been changed. </Message><LocalizedMessage>The destination state/province code has been changed. </LocalizedMessage></Notifications><TransactionDetail><CustomerTransactionId>ActiveShipping</CustomerTransactionId></TransactionDetail><Version><ServiceId>crs</ServiceId><Major>13</Major><Intermediate>0</Intermediate><Minor>0</Minor></Version><RateReplyDetails><ServiceType>FIRST_OVERNIGHT</ServiceType><PackagingType>YOUR_PACKAGING</PackagingType><DeliveryStation>CHIA </DeliveryStation><DeliveryDayOfWeek>FRI</DeliveryDayOfWeek><DeliveryTimestamp>2016-06-03T08:00:00</DeliveryTimestamp><CommitDetails><ServiceType>FIRST_OVERNIGHT</ServiceType><CommitTimestamp>2016-06-03T08:00:00</CommitTimestamp><DayOfWeek>FRI</DayOfWeek><DestinationServiceArea>A1</DestinationServiceArea><BrokerToDestinationDays>0</BrokerToDestinationDays><DocumentContent>NON_DOCUMENTS</DocumentContent></CommitDetails><DestinationAirportId>ORD</DestinationAirportId><IneligibleForMoneyBackGuarantee>false</IneligibleForMoneyBackGuarantee><OriginServiceArea>A2</OriginServiceArea><DestinationServiceArea>A1</DestinationServiceArea><SignatureOption>SERVICE_DEFAULT</SignatureOption><ActualRateType>PAYOR_ACCOUNT_PACKAGE</ActualRateType><RatedShipmentDetails><ShipmentRateDetail><RateType>PAYOR_ACCOUNT_PACKAGE</RateType><RateScale>10</RateScale><RateZone>4</RateZone><PricingCode>PACKAGE</PricingCode><RatedWeightMethod>ACTUAL</RatedWeightMethod><DimDivisor>0</DimDivisor><FuelSurchargePercent>0.75</FuelSurchargePercent><TotalBillingWeight><Units>LB</Units><Value>6.0</Value></TotalBillingWeight><TotalBaseCharge><Currency>USD</Currency><Amount>101.69</Amount></TotalBaseCharge><TotalFreightDiscounts><Currency>USD</Currency><Amount>0.0</Amount></TotalFreightDiscounts><TotalNetFreight><Currency>USD</Currency><Amount>101.69</Amount></TotalNetFreight><TotalSurcharges><Currency>USD</Currency><Amount>4.44</Amount></TotalSurcharges><TotalNetFedExCharge><Currency>USD</Currency><Amount>106.13</Amount></TotalNetFedExCharge><TotalTaxes><Currency>USD</Currency><Amount>0.0</Amount></TotalTaxes><TotalNetCharge><Currency>USD</Currency><Amount>106.13</Amount></TotalNetCharge><TotalRebates><Currency>USD</Currency><Amount>0.0</Amount></TotalRebates><TotalDutiesAndTaxes><Currency>USD</Currency><Amount>0.0</Amount></TotalDutiesAndTaxes><TotalNetChargeWithDutiesAndTaxes><Currency>USD</Currency><Amount>106.13</Amount></TotalNetChargeWithDutiesAndTaxes><Surcharges><SurchargeType>RESIDENTIAL_DELIVERY</SurchargeType><Description>Residential delivery</Description><Amount><Currency>USD</Currency><Amount>3.65</Amount></Amount></Surcharges><Surcharges><SurchargeType>FUEL</SurchargeType><Description>Fuel</Description><Amount><Currency>USD</Currency><Amount>0.79</Amount></Amount></Surcharges></ShipmentRateDetail><RatedPackages><GroupNumber>0</GroupNumber><PackageRateDetail><RateType>PAYOR_ACCOUNT_PACKAGE</RateType><RatedWeightMethod>ACTUAL</RatedWeightMethod><BillingWeight><Units>LB</Units><Value>6.0</Value></BillingWeight><BaseCharge><Currency>USD</Currency><Amount>101.69</Amount></BaseCharge><TotalFreightDiscounts><Currency>USD</Currency><Amount>0.0</Amount></TotalFreightDiscounts><NetFreight><Currency>USD</Currency><Amount>101.69</Amount></NetFreight><TotalSurcharges><Currency>USD</Currency><Amount>4.44</Amount></TotalSurcharges><NetFedExCharge><Currency>USD</Currency><Amount>106.13</Amount></NetFedExCharge><TotalTaxes><Currency>USD</Currency><Amount>0.0</Amount></TotalTaxes><NetCharge><Currency>USD</Currency><Amount>106.13</Amount></NetCharge><TotalRebates><Currency>USD</Currency><Amount>0.0</Amount></TotalRebates><Surcharges><SurchargeType>RESIDENTIAL_DELIVERY</SurchargeType><Description>Residential delivery</Description><Amount><Currency>USD</Currency><Amount>3.65</Amount></Amount></Surcharges><Surcharges><SurchargeType>FUEL</SurchargeType><Description>Fuel</Description><Amount><Currency>USD</Currency><Amount>0.79</Amount></Amount></Surcharges></PackageRateDetail></RatedPackages></RatedShipmentDetails><RatedShipmentDetails><ShipmentRateDetail><RateType>RATED_ACCOUNT_PACKAGE</RateType><RateScale>10</RateScale><RateZone>4</RateZone><PricingCode>PACKAGE</PricingCode><RatedWeightMethod>ACTUAL</RatedWeightMethod><DimDivisor>0</DimDivisor><FuelSurchargePercent>0.75</FuelSurchargePercent><TotalBillingWeight><Units>LB</Units><Value>6.0</Value></TotalBillingWeight><TotalBaseCharge><Currency>USD</Currency><Amount>101.69</Amount></TotalBaseCharge><TotalFreightDiscounts><Currency>USD</Currency><Amount>0.0</Amount></TotalFreightDiscounts><TotalNetFreight><Currency>USD</Currency><Amount>101.69</Amount></TotalNetFreight><TotalSurcharges><Currency>USD</Currency><Amount>4.44</Amount></TotalSurcharges><TotalNetFedExCharge><Currency>USD</Currency><Amount>106.13</Amount></TotalNetFedExCharge><TotalTaxes><Currency>USD</Currency><Amount>0.0</Amount></TotalTaxes><TotalNetCharge><Currency>USD</Currency><Amount>106.13</Amount></TotalNetCharge><TotalRebates><Currency>USD</Currency><Amount>0.0</Amount></TotalRebates><TotalDutiesAndTaxes><Currency>USD</Currency><Amount>0.0</Amount></TotalDutiesAndTaxes><TotalNetChargeWithDutiesAndTaxes><Currency>USD</Currency><Amount>106.13</Amount></TotalNetChargeWithDutiesAndTaxes><Surcharges><SurchargeType>RESIDENTIAL_DELIVERY</SurchargeType><Description>Residential delivery</Description><Amount><Currency>USD</Currency><Amount>3.65</Amount></Amount></Surcharges><Surcharges><SurchargeType>FUEL</SurchargeType><Description>Fuel</Description><Amount><Currency>USD</Currency><Amount>0.79</Amount></Amount></Surcharges></ShipmentRateDetail><RatedPackages><GroupNumber>0</GroupNumber><PackageRateDetail><RateType>RATED_ACCOUNT_PACKAGE</RateType><RatedWeightMethod>ACTUAL</RatedWeightMethod><BillingWeight><Units>LB</Units><Value>6.0</Value></BillingWeight><BaseCharge><Currency>USD</Currency><Amount>101.69</Amount></BaseCharge><TotalFreightDiscounts><Currency>USD</Currency><Amount>0.0</Amount></TotalFreightDiscounts><NetFreight><Currency>USD</Currency><Amount>101.69</Amount></NetFreight><TotalSurcharges><Currency>USD</Currency><Amount>4.44</Amount></TotalSurcharges><NetFedExCharge><Currency>USD</Currency><Amount>106.13</Amount></NetFedExCharge><TotalTaxes><Currency>USD</Currency><Amount>0.0</Amount></TotalTaxes><NetCharge><Currency>USD</Currency><Amount>106.13</Amount></NetCharge><TotalRebates><Currency>USD</Currency><Amount>0.0</Amount></TotalRebates><Surcharges><SurchargeType>RESIDENTIAL_DELIVERY</SurchargeType><Description>Residential delivery</Description><Amount><Currency>USD</Currency><Amount>3.65</Amount></Amount></Surcharges><Surcharges><SurchargeType>FUEL</SurchargeType><Description>Fuel</Description><Amount><Currency>USD</Currency><Amount>0.79</Amount></Amount></Surcharges></PackageRateDetail></RatedPackages></RatedShipmentDetails></RateReplyDetails><RateReplyDetails><ServiceType>PRIORITY_OVERNIGHT</ServiceType><PackagingType>YOUR_PACKAGING</PackagingType><DeliveryStation>CHIA </DeliveryStation><DeliveryDayOfWeek>FRI</DeliveryDayOfWeek><DeliveryTimestamp>2016-06-03T10:30:00</DeliveryTimestamp><CommitDetails><ServiceType>PRIORITY_OVERNIGHT</ServiceType><CommitTimestamp>2016-06-03T10:30:00</CommitTimestamp><DayOfWeek>FRI</DayOfWeek><DestinationServiceArea>A1</DestinationServiceArea><BrokerToDestinationDays>0</BrokerToDestinationDays><DocumentContent>NON_DOCUMENTS</DocumentContent></CommitDetails><DestinationAirportId>ORD</DestinationAirportId><IneligibleForMoneyBackGuarantee>false</IneligibleForMoneyBackGuarantee><OriginServiceArea>A2</OriginServiceArea><DestinationServiceArea>A1</DestinationServiceArea><SignatureOption>SERVICE_DEFAULT</SignatureOption><ActualRateType>PAYOR_ACCOUNT_PACKAGE</ActualRateType><RatedShipmentDetails><ShipmentRateDetail><RateType>PAYOR_ACCOUNT_PACKAGE</RateType><RateScale>1</RateScale><PricingCode>PACKAGE</PricingCode><RatedWeightMethod>ACTUAL</RatedWeightMethod><DimDivisor>0</DimDivisor><FuelSurchargePercent>0.75</FuelSurchargePercent><TotalBillingWeight><Units>LB</Units><Value>6.0</Value></TotalBillingWeight><TotalBaseCharge><Currency>USD</Currency><Amount>37.0</Amount></TotalBaseCharge><TotalFreightDiscounts><Currency>USD</Currency><Amount>0.0</Amount></TotalFreightDiscounts><TotalNetFreight><Currency>USD</Currency><Amount>37.0</Amount></TotalNetFreight><TotalSurcharges><Currency>USD</Currency><Amount>3.95</Amount></TotalSurcharges><TotalNetFedExCharge><Currency>USD</Currency><Amount>40.95</Amount></TotalNetFedExCharge><TotalTaxes><Currency>USD</Currency><Amount>0.0</Amount></TotalTaxes><TotalNetCharge><Currency>USD</Currency><Amount>40.95</Amount></TotalNetCharge><TotalRebates><Currency>USD</Currency><Amount>0.0</Amount></TotalRebates><TotalDutiesAndTaxes><Currency>USD</Currency><Amount>0.0</Amount></TotalDutiesAndTaxes><TotalNetChargeWithDutiesAndTaxes><Currency>USD</Currency><Amount>40.95</Amount></TotalNetChargeWithDutiesAndTaxes><Surcharges><SurchargeType>RESIDENTIAL_DELIVERY</SurchargeType><Description>Residential delivery</Description><Amount><Currency>USD</Currency><Amount>3.65</Amount></Amount></Surcharges><Surcharges><SurchargeType>FUEL</SurchargeType><Description>Fuel</Description><Amount><Currency>USD</Currency><Amount>0.3</Amount></Amount></Surcharges></ShipmentRateDetail><RatedPackages><GroupNumber>0</GroupNumber><PackageRateDetail><RateType>PAYOR_ACCOUNT_PACKAGE</RateType><RatedWeightMethod>ACTUAL</RatedWeightMethod><BillingWeight><Units>LB</Units><Value>6.0</Value></BillingWeight><BaseCharge><Currency>USD</Currency><Amount>37.0</Amount></BaseCharge><TotalFreightDiscounts><Currency>USD</Currency><Amount>0.0</Amount></TotalFreightDiscounts><NetFreight><Currency>USD</Currency><Amount>37.0</Amount></NetFreight><TotalSurcharges><Currency>USD</Currency><Amount>3.95</Amount></TotalSurcharges><NetFedExCharge><Currency>USD</Currency><Amount>40.95</Amount></NetFedExCharge><TotalTaxes><Currency>USD</Currency><Amount>0.0</Amount></TotalTaxes><NetCharge><Currency>USD</Currency><Amount>40.95</Amount></NetCharge><TotalRebates><Currency>USD</Currency><Amount>0.0</Amount></TotalRebates><Surcharges><SurchargeType>RESIDENTIAL_DELIVERY</SurchargeType><Description>Residential delivery</Description><Amount><Currency>USD</Currency><Amount>3.65</Amount></Amount></Surcharges><Surcharges><SurchargeType>FUEL</SurchargeType><Description>Fuel</Description><Amount><Currency>USD</Currency><Amount>0.3</Amount></Amount></Surcharges></PackageRateDetail></RatedPackages></RatedShipmentDetails><RatedShipmentDetails><ShipmentRateDetail><RateType>RATED_ACCOUNT_PACKAGE</RateType><RateScale>1</RateScale><PricingCode>PACKAGE</PricingCode><RatedWeightMethod>ACTUAL</RatedWeightMethod><DimDivisor>0</DimDivisor><FuelSurchargePercent>0.75</FuelSurchargePercent><TotalBillingWeight><Units>LB</Units><Value>6.0</Value></TotalBillingWeight><TotalBaseCharge><Currency>USD</Currency><Amount>37.0</Amount></TotalBaseCharge><TotalFreightDiscounts><Currency>USD</Currency><Amount>0.0</Amount></TotalFreightDiscounts><TotalNetFreight><Currency>USD</Currency><Amount>37.0</Amount></TotalNetFreight><TotalSurcharges><Currency>USD</Currency><Amount>3.95</Amount></TotalSurcharges><TotalNetFedExCharge><Currency>USD</Currency><Amount>40.95</Amount></TotalNetFedExCharge><TotalTaxes><Currency>USD</Currency><Amount>0.0</Amount></TotalTaxes><TotalNetCharge><Currency>USD</Currency><Amount>40.95</Amount></TotalNetCharge><TotalRebates><Currency>USD</Currency><Amount>0.0</Amount></TotalRebates><TotalDutiesAndTaxes><Currency>USD</Currency><Amount>0.0</Amount></TotalDutiesAndTaxes><TotalNetChargeWithDutiesAndTaxes><Currency>USD</Currency><Amount>40.95</Amount></TotalNetChargeWithDutiesAndTaxes><Surcharges><SurchargeType>RESIDENTIAL_DELIVERY</SurchargeType><Description>Residential delivery</Description><Amount><Currency>USD</Currency><Amount>3.65</Amount></Amount></Surcharges><Surcharges><SurchargeType>FUEL</SurchargeType><Description>Fuel</Description><Amount><Currency>USD</Currency><Amount>0.3</Amount></Amount></Surcharges></ShipmentRateDetail><RatedPackages><GroupNumber>0</GroupNumber><PackageRateDetail><RateType>RATED_ACCOUNT_PACKAGE</RateType><RatedWeightMethod>ACTUAL</RatedWeightMethod><BillingWeight><Units>LB</Units><Value>6.0</Value></BillingWeight><BaseCharge><Currency>USD</Currency><Amount>37.0</Amount></BaseCharge><TotalFreightDiscounts><Currency>USD</Currency><Amount>0.0</Amount></TotalFreightDiscounts><NetFreight><Currency>USD</Currency><Amount>37.0</Amount></NetFreight><TotalSurcharges><Currency>USD</Currency><Amount>3.95</Amount></TotalSurcharges><NetFedExCharge><Currency>USD</Currency><Amount>40.95</Amount></NetFedExCharge><TotalTaxes><Currency>USD</Currency><Amount>0.0</Amount></TotalTaxes><NetCharge><Currency>USD</Currency><Amount>40.95</Amount></NetCharge><TotalRebates><Currency>USD</Currency><Amount>0.0</Amount></TotalRebates><Surcharges><SurchargeType>RESIDENTIAL_DELIVERY</SurchargeType><Description>Residential delivery</Description><Amount><Currency>USD</Currency><Amount>3.65</Amount></Amount></Surcharges><Surcharges><SurchargeType>FUEL</SurchargeType><Description>Fuel</Description><Amount><Currency>USD</Currency><Amount>0.3</Amount></Amount></Surcharges></PackageRateDetail></RatedPackages></RatedShipmentDetails></RateReplyDetails><RateReplyDetails><ServiceType>STANDARD_OVERNIGHT</ServiceType><PackagingType>YOUR_PACKAGING</PackagingType><DeliveryStation>CHIA </DeliveryStation><DeliveryDayOfWeek>FRI</DeliveryDayOfWeek><DeliveryTimestamp>2016-06-03T20:00:00</DeliveryTimestamp><CommitDetails><ServiceType>STANDARD_OVERNIGHT</ServiceType><CommitTimestamp>2016-06-03T20:00:00</CommitTimestamp><DayOfWeek>FRI</DayOfWeek><DestinationServiceArea>A1</DestinationServiceArea><BrokerToDestinationDays>0</BrokerToDestinationDays><DocumentContent>NON_DOCUMENTS</DocumentContent></CommitDetails><DestinationAirportId>ORD</DestinationAirportId><IneligibleForMoneyBackGuarantee>false</IneligibleForMoneyBackGuarantee><OriginServiceArea>A2</OriginServiceArea><DestinationServiceArea>A1</DestinationServiceArea><SignatureOption>SERVICE_DEFAULT</SignatureOption><ActualRateType>PAYOR_ACCOUNT_PACKAGE</ActualRateType><RatedShipmentDetails><ShipmentRateDetail><RateType>PAYOR_ACCOUNT_PACKAGE</RateType><RateScale>1327</RateScale><RateZone>4</RateZone><PricingCode>PACKAGE</PricingCode><RatedWeightMethod>ACTUAL</RatedWeightMethod><DimDivisor>0</DimDivisor><FuelSurchargePercent>0.75</FuelSurchargePercent><TotalBillingWeight><Units>LB</Units><Value>6.0</Value></TotalBillingWeight><TotalBaseCharge><Currency>USD</Currency><Amount>71.74</Amount></TotalBaseCharge><TotalFreightDiscounts><Currency>USD</Currency><Amount>0.0</Amount></TotalFreightDiscounts><TotalNetFreight><Currency>USD</Currency><Amount>71.74</Amount></TotalNetFreight><TotalSurcharges><Currency>USD</Currency><Amount>4.22</Amount></TotalSurcharges><TotalNetFedExCharge><Currency>USD</Currency><Amount>75.96</Amount></TotalNetFedExCharge><TotalTaxes><Currency>USD</Currency><Amount>0.0</Amount></TotalTaxes><TotalNetCharge><Currency>USD</Currency><Amount>75.96</Amount></TotalNetCharge><TotalRebates><Currency>USD</Currency><Amount>0.0</Amount></TotalRebates><TotalDutiesAndTaxes><Currency>USD</Currency><Amount>0.0</Amount></TotalDutiesAndTaxes><TotalNetChargeWithDutiesAndTaxes><Currency>USD</Currency><Amount>75.96</Amount></TotalNetChargeWithDutiesAndTaxes><Surcharges><SurchargeType>RESIDENTIAL_DELIVERY</SurchargeType><Description>Residential delivery</Description><Amount><Currency>USD</Currency><Amount>3.65</Amount></Amount></Surcharges><Surcharges><SurchargeType>FUEL</SurchargeType><Description>Fuel</Description><Amount><Currency>USD</Currency><Amount>0.57</Amount></Amount></Surcharges></ShipmentRateDetail><RatedPackages><GroupNumber>0</GroupNumber><PackageRateDetail><RateType>PAYOR_ACCOUNT_PACKAGE</RateType><RatedWeightMethod>ACTUAL</RatedWeightMethod><BillingWeight><Units>LB</Units><Value>6.0</Value></BillingWeight><BaseCharge><Currency>USD</Currency><Amount>71.74</Amount></BaseCharge><TotalFreightDiscounts><Currency>USD</Currency><Amount>0.0</Amount></TotalFreightDiscounts><NetFreight><Currency>USD</Currency><Amount>71.74</Amount></NetFreight><TotalSurcharges><Currency>USD</Currency><Amount>4.22</Amount></TotalSurcharges><NetFedExCharge><Currency>USD</Currency><Amount>75.96</Amount></NetFedExCharge><TotalTaxes><Currency>USD</Currency><Amount>0.0</Amount></TotalTaxes><NetCharge><Currency>USD</Currency><Amount>75.96</Amount></NetCharge><TotalRebates><Currency>USD</Currency><Amount>0.0</Amount></TotalRebates><Surcharges><SurchargeType>RESIDENTIAL_DELIVERY</SurchargeType><Description>Residential delivery</Description><Amount><Currency>USD</Currency><Amount>3.65</Amount></Amount></Surcharges><Surcharges><SurchargeType>FUEL</SurchargeType><Description>Fuel</Description><Amount><Currency>USD</Currency><Amount>0.57</Amount></Amount></Surcharges></PackageRateDetail></RatedPackages></RatedShipmentDetails><RatedShipmentDetails><ShipmentRateDetail><RateType>RATED_ACCOUNT_PACKAGE</RateType><RateScale>1327</RateScale><RateZone>4</RateZone><PricingCode>PACKAGE</PricingCode><RatedWeightMethod>ACTUAL</RatedWeightMethod><DimDivisor>0</DimDivisor><FuelSurchargePercent>0.75</FuelSurchargePercent><TotalBillingWeight><Units>LB</Units><Value>6.0</Value></TotalBillingWeight><TotalBaseCharge><Currency>USD</Currency><Amount>71.74</Amount></TotalBaseCharge><TotalFreightDiscounts><Currency>USD</Currency><Amount>0.0</Amount></TotalFreightDiscounts><TotalNetFreight><Currency>USD</Currency><Amount>71.74</Amount></TotalNetFreight><TotalSurcharges><Currency>USD</Currency><Amount>4.22</Amount></TotalSurcharges><TotalNetFedExCharge><Currency>USD</Currency><Amount>75.96</Amount></TotalNetFedExCharge><TotalTaxes><Currency>USD</Currency><Amount>0.0</Amount></TotalTaxes><TotalNetCharge><Currency>USD</Currency><Amount>75.96</Amount></TotalNetCharge><TotalRebates><Currency>USD</Currency><Amount>0.0</Amount></TotalRebates><TotalDutiesAndTaxes><Currency>USD</Currency><Amount>0.0</Amount></TotalDutiesAndTaxes><TotalNetChargeWithDutiesAndTaxes><Currency>USD</Currency><Amount>75.96</Amount></TotalNetChargeWithDutiesAndTaxes><Surcharges><SurchargeType>RESIDENTIAL_DELIVERY</SurchargeType><Description>Residential delivery</Description><Amount><Currency>USD</Currency><Amount>3.65</Amount></Amount></Surcharges><Surcharges><SurchargeType>FUEL</SurchargeType><Description>Fuel</Description><Amount><Currency>USD</Currency><Amount>0.57</Amount></Amount></Surcharges></ShipmentRateDetail><RatedPackages><GroupNumber>0</GroupNumber><PackageRateDetail><RateType>RATED_ACCOUNT_PACKAGE</RateType><RatedWeightMethod>ACTUAL</RatedWeightMethod><BillingWeight><Units>LB</Units><Value>6.0</Value></BillingWeight><BaseCharge><Currency>USD</Currency><Amount>71.74</Amount></BaseCharge><TotalFreightDiscounts><Currency>USD</Currency><Amount>0.0</Amount></TotalFreightDiscounts><NetFreight><Currency>USD</Currency><Amount>71.74</Amount></NetFreight><TotalSurcharges><Currency>USD</Currency><Amount>4.22</Amount></TotalSurcharges><NetFedExCharge><Currency>USD</Currency><Amount>75.96</Amount></NetFedExCharge><TotalTaxes><Currency>USD</Currency><Amount>0.0</Amount></TotalTaxes><NetCharge><Currency>USD</Currency><Amount>75.96</Amount></NetCharge><TotalRebates><Currency>USD</Currency><Amount>0.0</Amount></TotalRebates><Surcharges><SurchargeType>RESIDENTIAL_DELIVERY</SurchargeType><Description>Residential delivery</Description><Amount><Currency>USD</Currency><Amount>3.65</Amount></Amount></Surcharges><Surcharges><SurchargeType>FUEL</SurchargeType><Description>Fuel</Description><Amount><Currency>USD</Currency><Amount>0.57</Amount></Amount></Surcharges></PackageRateDetail></RatedPackages></RatedShipmentDetails></RateReplyDetails><RateReplyDetails><ServiceType>FEDEX_2_DAY_AM</ServiceType><PackagingType>YOUR_PACKAGING</PackagingType><DeliveryStation>CHIA </DeliveryStation><DeliveryDayOfWeek>MON</DeliveryDayOfWeek><DeliveryTimestamp>2016-06-06T10:30:00</DeliveryTimestamp><CommitDetails><ServiceType>FEDEX_2_DAY_AM</ServiceType><CommitTimestamp>2016-06-06T10:30:00</CommitTimestamp><DayOfWeek>MON</DayOfWeek><DestinationServiceArea>A1</DestinationServiceArea><BrokerToDestinationDays>0</BrokerToDestinationDays><DocumentContent>NON_DOCUMENTS</DocumentContent></CommitDetails><DestinationAirportId>ORD</DestinationAirportId><IneligibleForMoneyBackGuarantee>false</IneligibleForMoneyBackGuarantee><OriginServiceArea>A2</OriginServiceArea><DestinationServiceArea>A1</DestinationServiceArea><SignatureOption>SERVICE_DEFAULT</SignatureOption><ActualRateType>PAYOR_ACCOUNT_PACKAGE</ActualRateType><RatedShipmentDetails><ShipmentRateDetail><RateType>PAYOR_ACCOUNT_PACKAGE</RateType><RateScale>8</RateScale><RateZone>4</RateZone><PricingCode>PACKAGE</PricingCode><RatedWeightMethod>ACTUAL</RatedWeightMethod><DimDivisor>0</DimDivisor><FuelSurchargePercent>0.75</FuelSurchargePercent><TotalBillingWeight><Units>LB</Units><Value>6.0</Value></TotalBillingWeight><TotalBaseCharge><Currency>USD</Currency><Amount>27.11</Amount></TotalBaseCharge><TotalFreightDiscounts><Currency>USD</Currency><Amount>0.0</Amount></TotalFreightDiscounts><TotalNetFreight><Currency>USD</Currency><Amount>27.11</Amount></TotalNetFreight><TotalSurcharges><Currency>USD</Currency><Amount>3.88</Amount></TotalSurcharges><TotalNetFedExCharge><Currency>USD</Currency><Amount>30.99</Amount></TotalNetFedExCharge><TotalTaxes><Currency>USD</Currency><Amount>0.0</Amount></TotalTaxes><TotalNetCharge><Currency>USD</Currency><Amount>30.99</Amount></TotalNetCharge><TotalRebates><Currency>USD</Currency><Amount>0.0</Amount></TotalRebates><TotalDutiesAndTaxes><Currency>USD</Currency><Amount>0.0</Amount></TotalDutiesAndTaxes><TotalNetChargeWithDutiesAndTaxes><Currency>USD</Currency><Amount>30.99</Amount></TotalNetChargeWithDutiesAndTaxes><Surcharges><SurchargeType>RESIDENTIAL_DELIVERY</SurchargeType><Description>Residential delivery</Description><Amount><Currency>USD</Currency><Amount>3.65</Amount></Amount></Surcharges><Surcharges><SurchargeType>FUEL</SurchargeType><Description>Fuel</Description><Amount><Currency>USD</Currency><Amount>0.23</Amount></Amount></Surcharges></ShipmentRateDetail><RatedPackages><GroupNumber>0</GroupNumber><PackageRateDetail><RateType>PAYOR_ACCOUNT_PACKAGE</RateType><RatedWeightMethod>ACTUAL</RatedWeightMethod><BillingWeight><Units>LB</Units><Value>6.0</Value></BillingWeight><BaseCharge><Currency>USD</Currency><Amount>27.11</Amount></BaseCharge><TotalFreightDiscounts><Currency>USD</Currency><Amount>0.0</Amount></TotalFreightDiscounts><NetFreight><Currency>USD</Currency><Amount>27.11</Amount></NetFreight><TotalSurcharges><Currency>USD</Currency><Amount>3.88</Amount></TotalSurcharges><NetFedExCharge><Currency>USD</Currency><Amount>30.99</Amount></NetFedExCharge><TotalTaxes><Currency>USD</Currency><Amount>0.0</Amount></TotalTaxes><NetCharge><Currency>USD</Currency><Amount>30.99</Amount></NetCharge><TotalRebates><Currency>USD</Currency><Amount>0.0</Amount></TotalRebates><Surcharges><SurchargeType>RESIDENTIAL_DELIVERY</SurchargeType><Description>Residential delivery</Description><Amount><Currency>USD</Currency><Amount>3.65</Amount></Amount></Surcharges><Surcharges><SurchargeType>FUEL</SurchargeType><Description>Fuel</Description><Amount><Currency>USD</Currency><Amount>0.23</Amount></Amount></Surcharges></PackageRateDetail></RatedPackages></RatedShipmentDetails><RatedShipmentDetails><ShipmentRateDetail><RateType>RATED_ACCOUNT_PACKAGE</RateType><RateScale>8</RateScale><RateZone>4</RateZone><PricingCode>PACKAGE</PricingCode><RatedWeightMethod>ACTUAL</RatedWeightMethod><DimDivisor>0</DimDivisor><FuelSurchargePercent>0.75</FuelSurchargePercent><TotalBillingWeight><Units>LB</Units><Value>6.0</Value></TotalBillingWeight><TotalBaseCharge><Currency>USD</Currency><Amount>27.11</Amount></TotalBaseCharge><TotalFreightDiscounts><Currency>USD</Currency><Amount>0.0</Amount></TotalFreightDiscounts><TotalNetFreight><Currency>USD</Currency><Amount>27.11</Amount></TotalNetFreight><TotalSurcharges><Currency>USD</Currency><Amount>3.88</Amount></TotalSurcharges><TotalNetFedExCharge><Currency>USD</Currency><Amount>30.99</Amount></TotalNetFedExCharge><TotalTaxes><Currency>USD</Currency><Amount>0.0</Amount></TotalTaxes><TotalNetCharge><Currency>USD</Currency><Amount>30.99</Amount></TotalNetCharge><TotalRebates><Currency>USD</Currency><Amount>0.0</Amount></TotalRebates><TotalDutiesAndTaxes><Currency>USD</Currency><Amount>0.0</Amount></TotalDutiesAndTaxes><TotalNetChargeWithDutiesAndTaxes><Currency>USD</Currency><Amount>30.99</Amount></TotalNetChargeWithDutiesAndTaxes><Surcharges><SurchargeType>RESIDENTIAL_DELIVERY</SurchargeType><Description>Residential delivery</Description><Amount><Currency>USD</Currency><Amount>3.65</Amount></Amount></Surcharges><Surcharges><SurchargeType>FUEL</SurchargeType><Description>Fuel</Description><Amount><Currency>USD</Currency><Amount>0.23</Amount></Amount></Surcharges></ShipmentRateDetail><RatedPackages><GroupNumber>0</GroupNumber><PackageRateDetail><RateType>RATED_ACCOUNT_PACKAGE</RateType><RatedWeightMethod>ACTUAL</RatedWeightMethod><BillingWeight><Units>LB</Units><Value>6.0</Value></BillingWeight><BaseCharge><Currency>USD</Currency><Amount>27.11</Amount></BaseCharge><TotalFreightDiscounts><Currency>USD</Currency><Amount>0.0</Amount></TotalFreightDiscounts><NetFreight><Currency>USD</Currency><Amount>27.11</Amount></NetFreight><TotalSurcharges><Currency>USD</Currency><Amount>3.88</Amount></TotalSurcharges><NetFedExCharge><Currency>USD</Currency><Amount>30.99</Amount></NetFedExCharge><TotalTaxes><Currency>USD</Currency><Amount>0.0</Amount></TotalTaxes><NetCharge><Currency>USD</Currency><Amount>30.99</Amount></NetCharge><TotalRebates><Currency>USD</Currency><Amount>0.0</Amount></TotalRebates><Surcharges><SurchargeType>RESIDENTIAL_DELIVERY</SurchargeType><Description>Residential delivery</Description><Amount><Currency>USD</Currency><Amount>3.65</Amount></Amount></Surcharges><Surcharges><SurchargeType>FUEL</SurchargeType><Description>Fuel</Description><Amount><Currency>USD</Currency><Amount>0.23</Amount></Amount></Surcharges></PackageRateDetail></RatedPackages></RatedShipmentDetails></RateReplyDetails><RateReplyDetails><ServiceType>FEDEX_2_DAY</ServiceType><PackagingType>YOUR_PACKAGING</PackagingType><DeliveryStation>CHIA </DeliveryStation><DeliveryDayOfWeek>MON</DeliveryDayOfWeek><DeliveryTimestamp>2016-06-06T20:00:00</DeliveryTimestamp><CommitDetails><ServiceType>FEDEX_2_DAY</ServiceType><CommitTimestamp>2016-06-06T20:00:00</CommitTimestamp><DayOfWeek>MON</DayOfWeek><DestinationServiceArea>A1</DestinationServiceArea><BrokerToDestinationDays>0</BrokerToDestinationDays><DocumentContent>NON_DOCUMENTS</DocumentContent></CommitDetails><DestinationAirportId>ORD</DestinationAirportId><IneligibleForMoneyBackGuarantee>false</IneligibleForMoneyBackGuarantee><OriginServiceArea>A2</OriginServiceArea><DestinationServiceArea>A1</DestinationServiceArea><SignatureOption>SERVICE_DEFAULT</SignatureOption><ActualRateType>PAYOR_ACCOUNT_PACKAGE</ActualRateType><RatedShipmentDetails><ShipmentRateDetail><RateType>PAYOR_ACCOUNT_PACKAGE</RateType><RateScale>6024</RateScale><RateZone>4</RateZone><PricingCode>PACKAGE</PricingCode><RatedWeightMethod>ACTUAL</RatedWeightMethod><DimDivisor>0</DimDivisor><FuelSurchargePercent>0.75</FuelSurchargePercent><TotalBillingWeight><Units>LB</Units><Value>6.0</Value></TotalBillingWeight><TotalBaseCharge><Currency>USD</Currency><Amount>23.57</Amount></TotalBaseCharge><TotalFreightDiscounts><Currency>USD</Currency><Amount>0.0</Amount></TotalFreightDiscounts><TotalNetFreight><Currency>USD</Currency><Amount>23.57</Amount></TotalNetFreight><TotalSurcharges><Currency>USD</Currency><Amount>3.85</Amount></TotalSurcharges><TotalNetFedExCharge><Currency>USD</Currency><Amount>27.42</Amount></TotalNetFedExCharge><TotalTaxes><Currency>USD</Currency><Amount>0.0</Amount></TotalTaxes><TotalNetCharge><Currency>USD</Currency><Amount>27.42</Amount></TotalNetCharge><TotalRebates><Currency>USD</Currency><Amount>0.0</Amount></TotalRebates><TotalDutiesAndTaxes><Currency>USD</Currency><Amount>0.0</Amount></TotalDutiesAndTaxes><TotalNetChargeWithDutiesAndTaxes><Currency>USD</Currency><Amount>27.42</Amount></TotalNetChargeWithDutiesAndTaxes><Surcharges><SurchargeType>RESIDENTIAL_DELIVERY</SurchargeType><Description>Residential delivery</Description><Amount><Currency>USD</Currency><Amount>3.65</Amount></Amount></Surcharges><Surcharges><SurchargeType>FUEL</SurchargeType><Description>Fuel</Description><Amount><Currency>USD</Currency><Amount>0.2</Amount></Amount></Surcharges></ShipmentRateDetail><RatedPackages><GroupNumber>0</GroupNumber><PackageRateDetail><RateType>PAYOR_ACCOUNT_PACKAGE</RateType><RatedWeightMethod>ACTUAL</RatedWeightMethod><BillingWeight><Units>LB</Units><Value>6.0</Value></BillingWeight><BaseCharge><Currency>USD</Currency><Amount>23.57</Amount></BaseCharge><TotalFreightDiscounts><Currency>USD</Currency><Amount>0.0</Amount></TotalFreightDiscounts><NetFreight><Currency>USD</Currency><Amount>23.57</Amount></NetFreight><TotalSurcharges><Currency>USD</Currency><Amount>3.85</Amount></TotalSurcharges><NetFedExCharge><Currency>USD</Currency><Amount>27.42</Amount></NetFedExCharge><TotalTaxes><Currency>USD</Currency><Amount>0.0</Amount></TotalTaxes><NetCharge><Currency>USD</Currency><Amount>27.42</Amount></NetCharge><TotalRebates><Currency>USD</Currency><Amount>0.0</Amount></TotalRebates><Surcharges><SurchargeType>RESIDENTIAL_DELIVERY</SurchargeType><Description>Residential delivery</Description><Amount><Currency>USD</Currency><Amount>3.65</Amount></Amount></Surcharges><Surcharges><SurchargeType>FUEL</SurchargeType><Description>Fuel</Description><Amount><Currency>USD</Currency><Amount>0.2</Amount></Amount></Surcharges></PackageRateDetail></RatedPackages></RatedShipmentDetails><RatedShipmentDetails><ShipmentRateDetail><RateType>RATED_ACCOUNT_PACKAGE</RateType><RateScale>6024</RateScale><RateZone>4</RateZone><PricingCode>PACKAGE</PricingCode><RatedWeightMethod>ACTUAL</RatedWeightMethod><DimDivisor>0</DimDivisor><FuelSurchargePercent>0.75</FuelSurchargePercent><TotalBillingWeight><Units>LB</Units><Value>6.0</Value></TotalBillingWeight><TotalBaseCharge><Currency>USD</Currency><Amount>23.57</Amount></TotalBaseCharge><TotalFreightDiscounts><Currency>USD</Currency><Amount>0.0</Amount></TotalFreightDiscounts><TotalNetFreight><Currency>USD</Currency><Amount>23.57</Amount></TotalNetFreight><TotalSurcharges><Currency>USD</Currency><Amount>3.85</Amount></TotalSurcharges><TotalNetFedExCharge><Currency>USD</Currency><Amount>27.42</Amount></TotalNetFedExCharge><TotalTaxes><Currency>USD</Currency><Amount>0.0</Amount></TotalTaxes><TotalNetCharge><Currency>USD</Currency><Amount>27.42</Amount></TotalNetCharge><TotalRebates><Currency>USD</Currency><Amount>0.0</Amount></TotalRebates><TotalDutiesAndTaxes><Currency>USD</Currency><Amount>0.0</Amount></TotalDutiesAndTaxes><TotalNetChargeWithDutiesAndTaxes><Currency>USD</Currency><Amount>27.42</Amount></TotalNetChargeWithDutiesAndTaxes><Surcharges><SurchargeType>RESIDENTIAL_DELIVERY</SurchargeType><Description>Residential delivery</Description><Amount><Currency>USD</Currency><Amount>3.65</Amount></Amount></Surcharges><Surcharges><SurchargeType>FUEL</SurchargeType><Description>Fuel</Description><Amount><Currency>USD</Currency><Amount>0.2</Amount></Amount></Surcharges></ShipmentRateDetail><RatedPackages><GroupNumber>0</GroupNumber><PackageRateDetail><RateType>RATED_ACCOUNT_PACKAGE</RateType><RatedWeightMethod>ACTUAL</RatedWeightMethod><BillingWeight><Units>LB</Units><Value>6.0</Value></BillingWeight><BaseCharge><Currency>USD</Currency><Amount>23.57</Amount></BaseCharge><TotalFreightDiscounts><Currency>USD</Currency><Amount>0.0</Amount></TotalFreightDiscounts><NetFreight><Currency>USD</Currency><Amount>23.57</Amount></NetFreight><TotalSurcharges><Currency>USD</Currency><Amount>3.85</Amount></TotalSurcharges><NetFedExCharge><Currency>USD</Currency><Amount>27.42</Amount></NetFedExCharge><TotalTaxes><Currency>USD</Currency><Amount>0.0</Amount></TotalTaxes><NetCharge><Currency>USD</Currency><Amount>27.42</Amount></NetCharge><TotalRebates><Currency>USD</Currency><Amount>0.0</Amount></TotalRebates><Surcharges><SurchargeType>RESIDENTIAL_DELIVERY</SurchargeType><Description>Residential delivery</Description><Amount><Currency>USD</Currency><Amount>3.65</Amount></Amount></Surcharges><Surcharges><SurchargeType>FUEL</SurchargeType><Description>Fuel</Description><Amount><Currency>USD</Currency><Amount>0.2</Amount></Amount></Surcharges></PackageRateDetail></RatedPackages></RatedShipmentDetails></RateReplyDetails><RateReplyDetails><ServiceType>FEDEX_EXPRESS_SAVER</ServiceType><PackagingType>YOUR_PACKAGING</PackagingType><DeliveryStation>CHIA </DeliveryStation><DeliveryDayOfWeek>TUE</DeliveryDayOfWeek><DeliveryTimestamp>2016-06-07T20:00:00</DeliveryTimestamp><CommitDetails><ServiceType>FEDEX_EXPRESS_SAVER</ServiceType><CommitTimestamp>2016-06-07T20:00:00</CommitTimestamp><DayOfWeek>TUE</DayOfWeek><DestinationServiceArea>A1</DestinationServiceArea><BrokerToDestinationDays>0</BrokerToDestinationDays><DocumentContent>NON_DOCUMENTS</DocumentContent></CommitDetails><DestinationAirportId>ORD</DestinationAirportId><IneligibleForMoneyBackGuarantee>false</IneligibleForMoneyBackGuarantee><OriginServiceArea>A2</OriginServiceArea><DestinationServiceArea>A1</DestinationServiceArea><SignatureOption>SERVICE_DEFAULT</SignatureOption><ActualRateType>PAYOR_ACCOUNT_PACKAGE</ActualRateType><RatedShipmentDetails><ShipmentRateDetail><RateType>PAYOR_ACCOUNT_PACKAGE</RateType><RateScale>7171</RateScale><RateZone>4</RateZone><PricingCode>PACKAGE</PricingCode><RatedWeightMethod>ACTUAL</RatedWeightMethod><DimDivisor>0</DimDivisor><FuelSurchargePercent>0.75</FuelSurchargePercent><TotalBillingWeight><Units>LB</Units><Value>6.0</Value></TotalBillingWeight><TotalBaseCharge><Currency>USD</Currency><Amount>22.11</Amount></TotalBaseCharge><TotalFreightDiscounts><Currency>USD</Currency><Amount>0.0</Amount></TotalFreightDiscounts><TotalNetFreight><Currency>USD</Currency><Amount>22.11</Amount></TotalNetFreight><TotalSurcharges><Currency>USD</Currency><Amount>3.84</Amount></TotalSurcharges><TotalNetFedExCharge><Currency>USD</Currency><Amount>25.95</Amount></TotalNetFedExCharge><TotalTaxes><Currency>USD</Currency><Amount>0.0</Amount></TotalTaxes><TotalNetCharge><Currency>USD</Currency><Amount>25.95</Amount></TotalNetCharge><TotalRebates><Currency>USD</Currency><Amount>0.0</Amount></TotalRebates><TotalDutiesAndTaxes><Currency>USD</Currency><Amount>0.0</Amount></TotalDutiesAndTaxes><TotalNetChargeWithDutiesAndTaxes><Currency>USD</Currency><Amount>25.95</Amount></TotalNetChargeWithDutiesAndTaxes><Surcharges><SurchargeType>RESIDENTIAL_DELIVERY</SurchargeType><Description>Residential delivery</Description><Amount><Currency>USD</Currency><Amount>3.65</Amount></Amount></Surcharges><Surcharges><SurchargeType>FUEL</SurchargeType><Description>Fuel</Description><Amount><Currency>USD</Currency><Amount>0.19</Amount></Amount></Surcharges></ShipmentRateDetail><RatedPackages><GroupNumber>0</GroupNumber><PackageRateDetail><RateType>PAYOR_ACCOUNT_PACKAGE</RateType><RatedWeightMethod>ACTUAL</RatedWeightMethod><BillingWeight><Units>LB</Units><Value>6.0</Value></BillingWeight><BaseCharge><Currency>USD</Currency><Amount>22.11</Amount></BaseCharge><TotalFreightDiscounts><Currency>USD</Currency><Amount>0.0</Amount></TotalFreightDiscounts><NetFreight><Currency>USD</Currency><Amount>22.11</Amount></NetFreight><TotalSurcharges><Currency>USD</Currency><Amount>3.84</Amount></TotalSurcharges><NetFedExCharge><Currency>USD</Currency><Amount>25.95</Amount></NetFedExCharge><TotalTaxes><Currency>USD</Currency><Amount>0.0</Amount></TotalTaxes><NetCharge><Currency>USD</Currency><Amount>25.95</Amount></NetCharge><TotalRebates><Currency>USD</Currency><Amount>0.0</Amount></TotalRebates><Surcharges><SurchargeType>RESIDENTIAL_DELIVERY</SurchargeType><Description>Residential delivery</Description><Amount><Currency>USD</Currency><Amount>3.65</Amount></Amount></Surcharges><Surcharges><SurchargeType>FUEL</SurchargeType><Description>Fuel</Description><Amount><Currency>USD</Currency><Amount>0.19</Amount></Amount></Surcharges></PackageRateDetail></RatedPackages></RatedShipmentDetails><RatedShipmentDetails><ShipmentRateDetail><RateType>RATED_ACCOUNT_PACKAGE</RateType><RateScale>7171</RateScale><RateZone>4</RateZone><PricingCode>PACKAGE</PricingCode><RatedWeightMethod>ACTUAL</RatedWeightMethod><DimDivisor>0</DimDivisor><FuelSurchargePercent>0.75</FuelSurchargePercent><TotalBillingWeight><Units>LB</Units><Value>6.0</Value></TotalBillingWeight><TotalBaseCharge><Currency>USD</Currency><Amount>22.11</Amount></TotalBaseCharge><TotalFreightDiscounts><Currency>USD</Currency><Amount>0.0</Amount></TotalFreightDiscounts><TotalNetFreight><Currency>USD</Currency><Amount>22.11</Amount></TotalNetFreight><TotalSurcharges><Currency>USD</Currency><Amount>3.84</Amount></TotalSurcharges><TotalNetFedExCharge><Currency>USD</Currency><Amount>25.95</Amount></TotalNetFedExCharge><TotalTaxes><Currency>USD</Currency><Amount>0.0</Amount></TotalTaxes><TotalNetCharge><Currency>USD</Currency><Amount>25.95</Amount></TotalNetCharge><TotalRebates><Currency>USD</Currency><Amount>0.0</Amount></TotalRebates><TotalDutiesAndTaxes><Currency>USD</Currency><Amount>0.0</Amount></TotalDutiesAndTaxes><TotalNetChargeWithDutiesAndTaxes><Currency>USD</Currency><Amount>25.95</Amount></TotalNetChargeWithDutiesAndTaxes><Surcharges><SurchargeType>RESIDENTIAL_DELIVERY</SurchargeType><Description>Residential delivery</Description><Amount><Currency>USD</Currency><Amount>3.65</Amount></Amount></Surcharges><Surcharges><SurchargeType>FUEL</SurchargeType><Description>Fuel</Description><Amount><Currency>USD</Currency><Amount>0.19</Amount></Amount></Surcharges></ShipmentRateDetail><RatedPackages><GroupNumber>0</GroupNumber><PackageRateDetail><RateType>RATED_ACCOUNT_PACKAGE</RateType><RatedWeightMethod>ACTUAL</RatedWeightMethod><BillingWeight><Units>LB</Units><Value>6.0</Value></BillingWeight><BaseCharge><Currency>USD</Currency><Amount>22.11</Amount></BaseCharge><TotalFreightDiscounts><Currency>USD</Currency><Amount>0.0</Amount></TotalFreightDiscounts><NetFreight><Currency>USD</Currency><Amount>22.11</Amount></NetFreight><TotalSurcharges><Currency>USD</Currency><Amount>3.84</Amount></TotalSurcharges><NetFedExCharge><Currency>USD</Currency><Amount>25.95</Amount></NetFedExCharge><TotalTaxes><Currency>USD</Currency><Amount>0.0</Amount></TotalTaxes><NetCharge><Currency>USD</Currency><Amount>25.95</Amount></NetCharge><TotalRebates><Currency>USD</Currency><Amount>0.0</Amount></TotalRebates><Surcharges><SurchargeType>RESIDENTIAL_DELIVERY</SurchargeType><Description>Residential delivery</Description><Amount><Currency>USD</Currency><Amount>3.65</Amount></Amount></Surcharges><Surcharges><SurchargeType>FUEL</SurchargeType><Description>Fuel</Description><Amount><Currency>USD</Currency><Amount>0.19</Amount></Amount></Surcharges></PackageRateDetail></RatedPackages></RatedShipmentDetails></RateReplyDetails><RateReplyDetails><ServiceType>FEDEX_2_DAY</ServiceType><PackagingType>YOUR_PACKAGING</PackagingType><AppliedOptions>SATURDAY_DELIVERY</AppliedOptions><DeliveryStation>CHIA </DeliveryStation><DeliveryDayOfWeek>SAT</DeliveryDayOfWeek><DeliveryTimestamp>2016-06-04T16:30:00</DeliveryTimestamp><CommitDetails><ServiceType>FEDEX_2_DAY</ServiceType><AppliedOptions>SATURDAY_DELIVERY</AppliedOptions><CommitTimestamp>2016-06-04T16:30:00</CommitTimestamp><DayOfWeek>SAT</DayOfWeek><DestinationServiceArea>A1</DestinationServiceArea><BrokerToDestinationDays>0</BrokerToDestinationDays><DocumentContent>NON_DOCUMENTS</DocumentContent></CommitDetails><DestinationAirportId>ORD</DestinationAirportId><IneligibleForMoneyBackGuarantee>false</IneligibleForMoneyBackGuarantee><OriginServiceArea>A2</OriginServiceArea><DestinationServiceArea>A1</DestinationServiceArea><SignatureOption>SERVICE_DEFAULT</SignatureOption><ActualRateType>PAYOR_ACCOUNT_PACKAGE</ActualRateType><RatedShipmentDetails><ShipmentRateDetail><RateType>PAYOR_ACCOUNT_PACKAGE</RateType><RateScale>6024</RateScale><RateZone>4</RateZone><PricingCode>PACKAGE</PricingCode><RatedWeightMethod>ACTUAL</RatedWeightMethod><DimDivisor>0</DimDivisor><FuelSurchargePercent>0.75</FuelSurchargePercent><TotalBillingWeight><Units>LB</Units><Value>6.0</Value></TotalBillingWeight><TotalBaseCharge><Currency>USD</Currency><Amount>23.57</Amount></TotalBaseCharge><TotalFreightDiscounts><Currency>USD</Currency><Amount>0.0</Amount></TotalFreightDiscounts><TotalNetFreight><Currency>USD</Currency><Amount>23.57</Amount></TotalNetFreight><TotalSurcharges><Currency>USD</Currency><Amount>19.97</Amount></TotalSurcharges><TotalNetFedExCharge><Currency>USD</Currency><Amount>43.54</Amount></TotalNetFedExCharge><TotalTaxes><Currency>USD</Currency><Amount>0.0</Amount></TotalTaxes><TotalNetCharge><Currency>USD</Currency><Amount>43.54</Amount></TotalNetCharge><TotalRebates><Currency>USD</Currency><Amount>0.0</Amount></TotalRebates><TotalDutiesAndTaxes><Currency>USD</Currency><Amount>0.0</Amount></TotalDutiesAndTaxes><TotalNetChargeWithDutiesAndTaxes><Currency>USD</Currency><Amount>43.54</Amount></TotalNetChargeWithDutiesAndTaxes><Surcharges><SurchargeType>SATURDAY_DELIVERY</SurchargeType><Description>Saturday delivery</Description><Amount><Currency>USD</Currency><Amount>16.0</Amount></Amount></Surcharges><Surcharges><SurchargeType>RESIDENTIAL_DELIVERY</SurchargeType><Description>Residential delivery</Description><Amount><Currency>USD</Currency><Amount>3.65</Amount></Amount></Surcharges><Surcharges><SurchargeType>FUEL</SurchargeType><Description>Fuel</Description><Amount><Currency>USD</Currency><Amount>0.32</Amount></Amount></Surcharges></ShipmentRateDetail><RatedPackages><GroupNumber>0</GroupNumber><PackageRateDetail><RateType>PAYOR_ACCOUNT_PACKAGE</RateType><RatedWeightMethod>ACTUAL</RatedWeightMethod><BillingWeight><Units>LB</Units><Value>6.0</Value></BillingWeight><BaseCharge><Currency>USD</Currency><Amount>23.57</Amount></BaseCharge><TotalFreightDiscounts><Currency>USD</Currency><Amount>0.0</Amount></TotalFreightDiscounts><NetFreight><Currency>USD</Currency><Amount>23.57</Amount></NetFreight><TotalSurcharges><Currency>USD</Currency><Amount>19.97</Amount></TotalSurcharges><NetFedExCharge><Currency>USD</Currency><Amount>43.54</Amount></NetFedExCharge><TotalTaxes><Currency>USD</Currency><Amount>0.0</Amount></TotalTaxes><NetCharge><Currency>USD</Currency><Amount>43.54</Amount></NetCharge><TotalRebates><Currency>USD</Currency><Amount>0.0</Amount></TotalRebates><Surcharges><SurchargeType>SATURDAY_DELIVERY</SurchargeType><Description>Saturday delivery</Description><Amount><Currency>USD</Currency><Amount>16.0</Amount></Amount></Surcharges><Surcharges><SurchargeType>RESIDENTIAL_DELIVERY</SurchargeType><Description>Residential delivery</Description><Amount><Currency>USD</Currency><Amount>3.65</Amount></Amount></Surcharges><Surcharges><SurchargeType>FUEL</SurchargeType><Description>Fuel</Description><Amount><Currency>USD</Currency><Amount>0.32</Amount></Amount></Surcharges></PackageRateDetail></RatedPackages></RatedShipmentDetails><RatedShipmentDetails><ShipmentRateDetail><RateType>RATED_ACCOUNT_PACKAGE</RateType><RateScale>6024</RateScale><RateZone>4</RateZone><PricingCode>PACKAGE</PricingCode><RatedWeightMethod>ACTUAL</RatedWeightMethod><DimDivisor>0</DimDivisor><FuelSurchargePercent>0.75</FuelSurchargePercent><TotalBillingWeight><Units>LB</Units><Value>6.0</Value></TotalBillingWeight><TotalBaseCharge><Currency>USD</Currency><Amount>23.57</Amount></TotalBaseCharge><TotalFreightDiscounts><Currency>USD</Currency><Amount>0.0</Amount></TotalFreightDiscounts><TotalNetFreight><Currency>USD</Currency><Amount>23.57</Amount></TotalNetFreight><TotalSurcharges><Currency>USD</Currency><Amount>19.97</Amount></TotalSurcharges><TotalNetFedExCharge><Currency>USD</Currency><Amount>43.54</Amount></TotalNetFedExCharge><TotalTaxes><Currency>USD</Currency><Amount>0.0</Amount></TotalTaxes><TotalNetCharge><Currency>USD</Currency><Amount>43.54</Amount></TotalNetCharge><TotalRebates><Currency>USD</Currency><Amount>0.0</Amount></TotalRebates><TotalDutiesAndTaxes><Currency>USD</Currency><Amount>0.0</Amount></TotalDutiesAndTaxes><TotalNetChargeWithDutiesAndTaxes><Currency>USD</Currency><Amount>43.54</Amount></TotalNetChargeWithDutiesAndTaxes><Surcharges><SurchargeType>SATURDAY_DELIVERY</SurchargeType><Description>Saturday delivery</Description><Amount><Currency>USD</Currency><Amount>16.0</Amount></Amount></Surcharges><Surcharges><SurchargeType>RESIDENTIAL_DELIVERY</SurchargeType><Description>Residential delivery</Description><Amount><Currency>USD</Currency><Amount>3.65</Amount></Amount></Surcharges><Surcharges><SurchargeType>FUEL</SurchargeType><Description>Fuel</Description><Amount><Currency>USD</Currency><Amount>0.32</Amount></Amount></Surcharges></ShipmentRateDetail><RatedPackages><GroupNumber>0</GroupNumber><PackageRateDetail><RateType>RATED_ACCOUNT_PACKAGE</RateType><RatedWeightMethod>ACTUAL</RatedWeightMethod><BillingWeight><Units>LB</Units><Value>6.0</Value></BillingWeight><BaseCharge><Currency>USD</Currency><Amount>23.57</Amount></BaseCharge><TotalFreightDiscounts><Currency>USD</Currency><Amount>0.0</Amount></TotalFreightDiscounts><NetFreight><Currency>USD</Currency><Amount>23.57</Amount></NetFreight><TotalSurcharges><Currency>USD</Currency><Amount>19.97</Amount></TotalSurcharges><NetFedExCharge><Currency>USD</Currency><Amount>43.54</Amount></NetFedExCharge><TotalTaxes><Currency>USD</Currency><Amount>0.0</Amount></TotalTaxes><NetCharge><Currency>USD</Currency><Amount>43.54</Amount></NetCharge><TotalRebates><Currency>USD</Currency><Amount>0.0</Amount></TotalRebates><Surcharges><SurchargeType>SATURDAY_DELIVERY</SurchargeType><Description>Saturday delivery</Description><Amount><Currency>USD</Currency><Amount>16.0</Amount></Amount></Surcharges><Surcharges><SurchargeType>RESIDENTIAL_DELIVERY</SurchargeType><Description>Residential delivery</Description><Amount><Currency>USD</Currency><Amount>3.65</Amount></Amount></Surcharges><Surcharges><SurchargeType>FUEL</SurchargeType><Description>Fuel</Description><Amount><Currency>USD</Currency><Amount>0.32</Amount></Amount></Surcharges></PackageRateDetail></RatedPackages></RatedShipmentDetails></RateReplyDetails><RateReplyDetails><ServiceType>GROUND_HOME_DELIVERY</ServiceType><PackagingType>YOUR_PACKAGING</PackagingType><CommitDetails><ServiceType>GROUND_HOME_DELIVERY</ServiceType><TransitTime>TWO_DAYS</TransitTime><BrokerToDestinationDays>0</BrokerToDestinationDays></CommitDetails><DestinationAirportId>ORD</DestinationAirportId><IneligibleForMoneyBackGuarantee>false</IneligibleForMoneyBackGuarantee><TransitTime>TWO_DAYS</TransitTime><SignatureOption>SERVICE_DEFAULT</SignatureOption><ActualRateType>PAYOR_ACCOUNT_PACKAGE</ActualRateType><RatedShipmentDetails><ShipmentRateDetail><RateType>PAYOR_ACCOUNT_PACKAGE</RateType><RateZone>4</RateZone><RatedWeightMethod>ACTUAL</RatedWeightMethod><DimDivisor>0</DimDivisor><FuelSurchargePercent>3.0</FuelSurchargePercent><TotalBillingWeight><Units>LB</Units><Value>6.0</Value></TotalBillingWeight><TotalBaseCharge><Currency>USD</Currency><Amount>10.34</Amount></TotalBaseCharge><TotalFreightDiscounts><Currency>USD</Currency><Amount>0.0</Amount></TotalFreightDiscounts><TotalNetFreight><Currency>USD</Currency><Amount>10.34</Amount></TotalNetFreight><TotalSurcharges><Currency>USD</Currency><Amount>3.66</Amount></TotalSurcharges><TotalNetFedExCharge><Currency>USD</Currency><Amount>14.0</Amount></TotalNetFedExCharge><TotalTaxes><Currency>USD</Currency><Amount>0.0</Amount></TotalTaxes><TotalNetCharge><Currency>USD</Currency><Amount>14.0</Amount></TotalNetCharge><TotalRebates><Currency>USD</Currency><Amount>0.0</Amount></TotalRebates><TotalDutiesAndTaxes><Currency>USD</Currency><Amount>0.0</Amount></TotalDutiesAndTaxes><TotalNetChargeWithDutiesAndTaxes><Currency>USD</Currency><Amount>14.0</Amount></TotalNetChargeWithDutiesAndTaxes><Surcharges><SurchargeType>RESIDENTIAL_DELIVERY</SurchargeType><Level>PACKAGE</Level><Description>FedEx Home Delivery Urban/Rural Charge</Description><Amount><Currency>USD</Currency><Amount>3.25</Amount></Amount></Surcharges><Surcharges><SurchargeType>FUEL</SurchargeType><Level>PACKAGE</Level><Description>FedEx Ground Fuel</Description><Amount><Currency>USD</Currency><Amount>0.41</Amount></Amount></Surcharges></ShipmentRateDetail><RatedPackages><GroupNumber>0</GroupNumber><PackageRateDetail><RateType>PAYOR_ACCOUNT_PACKAGE</RateType><RatedWeightMethod>ACTUAL</RatedWeightMethod><BillingWeight><Units>LB</Units><Value>6.0</Value></BillingWeight><BaseCharge><Currency>USD</Currency><Amount>10.34</Amount></BaseCharge><TotalFreightDiscounts><Currency>USD</Currency><Amount>0.0</Amount></TotalFreightDiscounts><NetFreight><Currency>USD</Currency><Amount>10.34</Amount></NetFreight><TotalSurcharges><Currency>USD</Currency><Amount>3.66</Amount></TotalSurcharges><NetFedExCharge><Currency>USD</Currency><Amount>14.0</Amount></NetFedExCharge><TotalTaxes><Currency>USD</Currency><Amount>0.0</Amount></TotalTaxes><NetCharge><Currency>USD</Currency><Amount>14.0</Amount></NetCharge><TotalRebates><Currency>USD</Currency><Amount>0.0</Amount></TotalRebates><Surcharges><SurchargeType>RESIDENTIAL_DELIVERY</SurchargeType><Level>PACKAGE</Level><Description>FedEx Home Delivery Urban/Rural Charge</Description><Amount><Currency>USD</Currency><Amount>3.25</Amount></Amount></Surcharges><Surcharges><SurchargeType>FUEL</SurchargeType><Level>PACKAGE</Level><Description>FedEx Ground Fuel</Description><Amount><Currency>USD</Currency><Amount>0.41</Amount></Amount></Surcharges></PackageRateDetail></RatedPackages></RatedShipmentDetails></RateReplyDetails></RateReply>
46
+ http_version:
47
+ recorded_at: Thu, 02 Jun 2016 20:03:58 GMT
48
+ recorded_with: VCR 3.0.3