sucker 1.0.0.beta.1 → 1.0.0.beta.2

Sign up to get free protection for your applications and to get access to all the features.
Files changed (34) hide show
  1. data/README.markdown +24 -29
  2. data/lib/sucker.rb +8 -1
  3. data/lib/sucker/request.rb +47 -28
  4. data/lib/sucker/response.rb +28 -2
  5. data/lib/sucker/version.rb +1 -2
  6. data/spec/integration/errors_spec.rb +0 -1
  7. data/spec/integration/images_spec.rb +0 -1
  8. data/spec/integration/item_lookup_spec.rb +0 -1
  9. data/spec/integration/item_search_spec.rb +0 -2
  10. data/spec/integration/multiple_locales_spec.rb +40 -0
  11. data/spec/integration/related_items_spec.rb +0 -1
  12. data/spec/integration/seller_listing_search_spec.rb +1 -2
  13. data/spec/integration/{twenty_items_in_one_request_spec.rb → twenty_items_spec.rb} +0 -1
  14. data/spec/spec_helper.rb +0 -1
  15. data/spec/support/amazon_credentials.rb +0 -1
  16. data/spec/support/asins.rb +0 -1
  17. data/spec/support/vcr.rb +0 -1
  18. data/spec/unit/sucker/request_spec.rb +3 -10
  19. data/spec/unit/sucker_spec.rb +0 -1
  20. metadata +8 -34
  21. data/spec/fixtures/cassette_library/integration/errors.yml +0 -27
  22. data/spec/fixtures/cassette_library/integration/france.yml +0 -27
  23. data/spec/fixtures/cassette_library/integration/images.yml +0 -27
  24. data/spec/fixtures/cassette_library/integration/item_lookup/multiple.yml +0 -27
  25. data/spec/fixtures/cassette_library/integration/item_lookup/single.yml +0 -27
  26. data/spec/fixtures/cassette_library/integration/item_search.yml +0 -27
  27. data/spec/fixtures/cassette_library/integration/japan.yml +0 -27
  28. data/spec/fixtures/cassette_library/integration/related_items/child.yml +0 -27
  29. data/spec/fixtures/cassette_library/integration/related_items/parent.yml +0 -27
  30. data/spec/fixtures/cassette_library/integration/seller_listings_search.yml +0 -27
  31. data/spec/fixtures/cassette_library/integration/twenty_items.yml +0 -27
  32. data/spec/fixtures/cassette_library/unit/sucker/request.yml +0 -32
  33. data/spec/fixtures/cassette_library/unit/sucker/response.yml +0 -27
  34. data/spec/support/amazon.yml +0 -2
@@ -1,4 +1,3 @@
1
- # encoding: utf-8
2
1
  require "spec_helper"
3
2
 
4
3
  describe Sucker do
metadata CHANGED
@@ -1,15 +1,15 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: sucker
3
3
  version: !ruby/object:Gem::Version
4
- hash: 62196353
4
+ hash: 62196359
5
5
  prerelease: true
6
6
  segments:
7
7
  - 1
8
8
  - 0
9
9
  - 0
10
10
  - beta
11
- - 1
12
- version: 1.0.0.beta.1
11
+ - 2
12
+ version: 1.0.0.beta.2
13
13
  platform: ruby
14
14
  authors:
15
15
  - Hakan Ensari
@@ -18,7 +18,7 @@ autorequire:
18
18
  bindir: bin
19
19
  cert_chain: []
20
20
 
21
- date: 2010-10-14 00:00:00 +01:00
21
+ date: 2010-10-22 00:00:00 +01:00
22
22
  default_executable:
23
23
  dependencies:
24
24
  - !ruby/object:Gem::Dependency
@@ -198,30 +198,17 @@ files:
198
198
  - LICENSE
199
199
  - README.markdown
200
200
  - spec/fixtures/asins.txt
201
- - spec/fixtures/cassette_library/integration/errors.yml
202
- - spec/fixtures/cassette_library/integration/france.yml
203
- - spec/fixtures/cassette_library/integration/images.yml
204
- - spec/fixtures/cassette_library/integration/item_lookup/multiple.yml
205
- - spec/fixtures/cassette_library/integration/item_lookup/single.yml
206
- - spec/fixtures/cassette_library/integration/item_search.yml
207
- - spec/fixtures/cassette_library/integration/japan.yml
208
- - spec/fixtures/cassette_library/integration/related_items/child.yml
209
- - spec/fixtures/cassette_library/integration/related_items/parent.yml
210
- - spec/fixtures/cassette_library/integration/seller_listings_search.yml
211
- - spec/fixtures/cassette_library/integration/twenty_items.yml
212
- - spec/fixtures/cassette_library/unit/sucker/request.yml
213
- - spec/fixtures/cassette_library/unit/sucker/response.yml
214
201
  - spec/integration/errors_spec.rb
215
202
  - spec/integration/france_spec.rb
216
203
  - spec/integration/images_spec.rb
217
204
  - spec/integration/item_lookup_spec.rb
218
205
  - spec/integration/item_search_spec.rb
219
206
  - spec/integration/japan_spec.rb
207
+ - spec/integration/multiple_locales_spec.rb
220
208
  - spec/integration/related_items_spec.rb
221
209
  - spec/integration/seller_listing_search_spec.rb
222
- - spec/integration/twenty_items_in_one_request_spec.rb
210
+ - spec/integration/twenty_items_spec.rb
223
211
  - spec/spec_helper.rb
224
- - spec/support/amazon.yml
225
212
  - spec/support/amazon.yml.example
226
213
  - spec/support/amazon_credentials.rb
227
214
  - spec/support/asins.rb
@@ -267,30 +254,17 @@ specification_version: 3
267
254
  summary: A Ruby wrapper to the Amazon Product Advertising API
268
255
  test_files:
269
256
  - spec/fixtures/asins.txt
270
- - spec/fixtures/cassette_library/integration/errors.yml
271
- - spec/fixtures/cassette_library/integration/france.yml
272
- - spec/fixtures/cassette_library/integration/images.yml
273
- - spec/fixtures/cassette_library/integration/item_lookup/multiple.yml
274
- - spec/fixtures/cassette_library/integration/item_lookup/single.yml
275
- - spec/fixtures/cassette_library/integration/item_search.yml
276
- - spec/fixtures/cassette_library/integration/japan.yml
277
- - spec/fixtures/cassette_library/integration/related_items/child.yml
278
- - spec/fixtures/cassette_library/integration/related_items/parent.yml
279
- - spec/fixtures/cassette_library/integration/seller_listings_search.yml
280
- - spec/fixtures/cassette_library/integration/twenty_items.yml
281
- - spec/fixtures/cassette_library/unit/sucker/request.yml
282
- - spec/fixtures/cassette_library/unit/sucker/response.yml
283
257
  - spec/integration/errors_spec.rb
284
258
  - spec/integration/france_spec.rb
285
259
  - spec/integration/images_spec.rb
286
260
  - spec/integration/item_lookup_spec.rb
287
261
  - spec/integration/item_search_spec.rb
288
262
  - spec/integration/japan_spec.rb
263
+ - spec/integration/multiple_locales_spec.rb
289
264
  - spec/integration/related_items_spec.rb
290
265
  - spec/integration/seller_listing_search_spec.rb
291
- - spec/integration/twenty_items_in_one_request_spec.rb
266
+ - spec/integration/twenty_items_spec.rb
292
267
  - spec/spec_helper.rb
293
- - spec/support/amazon.yml
294
268
  - spec/support/amazon.yml.example
295
269
  - spec/support/amazon_credentials.rb
296
270
  - spec/support/asins.rb
@@ -1,27 +0,0 @@
1
- ---
2
- - !ruby/struct:VCR::HTTPInteraction
3
- request: !ruby/struct:VCR::Request
4
- method: :get
5
- uri: http://ecs.amazonaws.com:80/onca/xml?AWSAccessKeyId=AKIAI66X5P3HPKX56PNQ&Condition=All&IdType=ASIN&ItemId=0816614024,0007218095,0007218176&MerchantId=All&Operation=ItemLookup&ResponseGroup=ItemAttributes&Service=AWSECommerceService&Signature=b5uZ7NJ/Hk7iR6Jpoboc1bO4Nn2ohpCzqeuF5A6s6eE=&Timestamp=2010-10-14T15:44:41Z&Version=2010-09-01
6
- body:
7
- headers: {}
8
-
9
- response: !ruby/struct:VCR::Response
10
- status: !ruby/struct:VCR::ResponseStatus
11
- code: 200
12
- message: OK
13
- headers:
14
- date:
15
- - Thu, 14 Oct 2010 15:44:42 GMT
16
- server:
17
- - Server
18
- content-type:
19
- - text/xml;charset=UTF-8
20
- vary:
21
- - Accept-Encoding,User-Agent
22
- nncoection:
23
- - close
24
- transfer-encoding:
25
- - chunked
26
- body: "<?xml version=\"1.0\" ?><ItemLookupResponse xmlns=\"http://webservices.amazon.com/AWSECommerceService/2010-09-01\"><OperationRequest><RequestId>2e1520d8-e6c0-496b-bb9c-3c7d64765fee</RequestId><Arguments><Argument Name=\"Condition\" Value=\"All\"></Argument><Argument Name=\"Operation\" Value=\"ItemLookup\"></Argument><Argument Name=\"Service\" Value=\"AWSECommerceService\"></Argument><Argument Name=\"Signature\" Value=\"b5uZ7NJ/Hk7iR6Jpoboc1bO4Nn2ohpCzqeuF5A6s6eE=\"></Argument><Argument Name=\"MerchantId\" Value=\"All\"></Argument><Argument Name=\"Version\" Value=\"2010-09-01\"></Argument><Argument Name=\"ItemId\" Value=\"0816614024,0007218095,0007218176\"></Argument><Argument Name=\"IdType\" Value=\"ASIN\"></Argument><Argument Name=\"AWSAccessKeyId\" Value=\"AKIAI66X5P3HPKX56PNQ\"></Argument><Argument Name=\"Timestamp\" Value=\"2010-10-14T15:44:41Z\"></Argument><Argument Name=\"ResponseGroup\" Value=\"ItemAttributes\"></Argument></Arguments><RequestProcessingTime>0.1107020000000000</RequestProcessingTime></OperationRequest><Items><Request><IsValid>True</IsValid><ItemLookupRequest><Condition>All</Condition><DeliveryMethod>Ship</DeliveryMethod><IdType>ASIN</IdType><MerchantId>All</MerchantId><OfferPage>1</OfferPage><ItemId>0816614024</ItemId><ItemId>0007218095</ItemId><ItemId>0007218176</ItemId><ResponseGroup>ItemAttributes</ResponseGroup><ReviewPage>1</ReviewPage><ReviewSort>-SubmissionDate</ReviewSort><VariationPage>All</VariationPage></ItemLookupRequest><Errors><Error><Code>AWS.InvalidParameterValue</Code><Message>0007218095 is not a valid value for ItemId. Please change this value and retry your request.</Message></Error><Error><Code>AWS.InvalidParameterValue</Code><Message>0007218176 is not a valid value for ItemId. Please change this value and retry your request.</Message></Error></Errors></Request><Item><ASIN>0816614024</ASIN><DetailPageURL>http://www.amazon.com/Thousand-Plateaus-Capitalism-Schizophrenia/dp/0816614024%3FSubscriptionId%3DAKIAI66X5P3HPKX56PNQ%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D165953%26creativeASIN%3D0816614024</DetailPageURL><ItemLinks><ItemLink><Description>Technical Details</Description><URL>http://www.amazon.com/Thousand-Plateaus-Capitalism-Schizophrenia/dp/tech-data/0816614024%3FSubscriptionId%3DAKIAI66X5P3HPKX56PNQ%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3D0816614024</URL></ItemLink><ItemLink><Description>Add To Baby Registry</Description><URL>http://www.amazon.com/gp/registry/baby/add-item.html%3Fasin.0%3D0816614024%26SubscriptionId%3DAKIAI66X5P3HPKX56PNQ%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3D0816614024</URL></ItemLink><ItemLink><Description>Add To Wedding Registry</Description><URL>http://www.amazon.com/gp/registry/wedding/add-item.html%3Fasin.0%3D0816614024%26SubscriptionId%3DAKIAI66X5P3HPKX56PNQ%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3D0816614024</URL></ItemLink><ItemLink><Description>Add To Wishlist</Description><URL>http://www.amazon.com/gp/registry/wishlist/add-item.html%3Fasin.0%3D0816614024%26SubscriptionId%3DAKIAI66X5P3HPKX56PNQ%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3D0816614024</URL></ItemLink><ItemLink><Description>Tell A Friend</Description><URL>http://www.amazon.com/gp/pdp/taf/0816614024%3FSubscriptionId%3DAKIAI66X5P3HPKX56PNQ%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3D0816614024</URL></ItemLink><ItemLink><Description>All Customer Reviews</Description><URL>http://www.amazon.com/review/product/0816614024%3FSubscriptionId%3DAKIAI66X5P3HPKX56PNQ%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3D0816614024</URL></ItemLink><ItemLink><Description>All Offers</Description><URL>http://www.amazon.com/gp/offer-listing/0816614024%3FSubscriptionId%3DAKIAI66X5P3HPKX56PNQ%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3D0816614024</URL></ItemLink></ItemLinks><ItemAttributes><Author>Gilles Deleuze</Author><Author>Felix Guattari</Author><Author>Brian Massumi</Author><Binding>Paperback</Binding><DeweyDecimalNumber>194</DeweyDecimalNumber><EAN>9780816614028</EAN><ISBN>0816614024</ISBN><IsEligibleForTradeIn>1</IsEligibleForTradeIn><Label>University of Minnesota Press</Label><Languages><Language><Name>English</Name><Type>Unknown</Type></Language><Language><Name>English</Name><Type>Original Language</Type></Language><Language><Name>English</Name><Type>Published</Type></Language></Languages><ListPrice><Amount>2500</Amount><CurrencyCode>USD</CurrencyCode><FormattedPrice>$25.00</FormattedPrice></ListPrice><Manufacturer>University of Minnesota Press</Manufacturer><NumberOfItems>1</NumberOfItems><NumberOfPages>610</NumberOfPages><PackageDimensions><Height Units=\"hundredths-inches\">135</Height><Length Units=\"hundredths-inches\">899</Length><Weight Units=\"hundredths-pounds\">183</Weight><Width Units=\"hundredths-inches\">608</Width></PackageDimensions><ProductGroup>Book</ProductGroup><ProductTypeName>ABIS_BOOK</ProductTypeName><PublicationDate>1987-12</PublicationDate><Publisher>University of Minnesota Press</Publisher><Studio>University of Minnesota Press</Studio><Title>A Thousand Plateaus: Capitalism and Schizophrenia</Title><TradeInValue><Amount>722</Amount><CurrencyCode>USD</CurrencyCode><FormattedPrice>$7.22</FormattedPrice></TradeInValue></ItemAttributes></Item></Items></ItemLookupResponse>"
27
- http_version: "1.1"
@@ -1,27 +0,0 @@
1
- ---
2
- - !ruby/struct:VCR::HTTPInteraction
3
- request: !ruby/struct:VCR::Request
4
- method: :get
5
- uri: http://ecs.amazonaws.fr:80/onca/xml?AWSAccessKeyId=AKIAI66X5P3HPKX56PNQ&Condition=All&IdType=ASIN&ItemId=2070119874&MerchantId=All&Operation=ItemLookup&ResponseGroup=ItemAttributes,OfferFull&Service=AWSECommerceService&Signature=BFLAXOCE7+yG286Q0N7+frZcUuxtV1cJe2CnXKj1oSI=&Timestamp=2010-10-14T15:44:42Z&Version=2010-09-01
6
- body:
7
- headers: {}
8
-
9
- response: !ruby/struct:VCR::Response
10
- status: !ruby/struct:VCR::ResponseStatus
11
- code: 200
12
- message: OK
13
- headers:
14
- date:
15
- - Thu, 14 Oct 2010 15:44:42 GMT
16
- server:
17
- - Server
18
- content-type:
19
- - text/xml;charset=UTF-8
20
- vary:
21
- - Accept-Encoding,User-Agent
22
- nncoection:
23
- - close
24
- transfer-encoding:
25
- - chunked
26
- body: "<?xml version=\"1.0\" ?><ItemLookupResponse xmlns=\"http://webservices.amazon.com/AWSECommerceService/2010-09-01\"><OperationRequest><RequestId>ba6e594f-8d01-4481-8dc4-d2c416a7b033</RequestId><Arguments><Argument Name=\"Condition\" Value=\"All\"></Argument><Argument Name=\"Operation\" Value=\"ItemLookup\"></Argument><Argument Name=\"Service\" Value=\"AWSECommerceService\"></Argument><Argument Name=\"ItemId\" Value=\"2070119874\"></Argument><Argument Name=\"IdType\" Value=\"ASIN\"></Argument><Argument Name=\"AWSAccessKeyId\" Value=\"AKIAI66X5P3HPKX56PNQ\"></Argument><Argument Name=\"Timestamp\" Value=\"2010-10-14T15:44:42Z\"></Argument><Argument Name=\"Signature\" Value=\"BFLAXOCE7+yG286Q0N7+frZcUuxtV1cJe2CnXKj1oSI=\"></Argument><Argument Name=\"ResponseGroup\" Value=\"ItemAttributes,OfferFull\"></Argument><Argument Name=\"MerchantId\" Value=\"All\"></Argument><Argument Name=\"Version\" Value=\"2010-09-01\"></Argument></Arguments><RequestProcessingTime>0.0969270000000000</RequestProcessingTime></OperationRequest><Items><Request><IsValid>True</IsValid><ItemLookupRequest><Condition>All</Condition><DeliveryMethod>Ship</DeliveryMethod><IdType>ASIN</IdType><MerchantId>All</MerchantId><OfferPage>1</OfferPage><ItemId>2070119874</ItemId><ResponseGroup>ItemAttributes</ResponseGroup><ResponseGroup>OfferFull</ResponseGroup><ReviewPage>1</ReviewPage><ReviewSort>-SubmissionDate</ReviewSort><VariationPage>All</VariationPage></ItemLookupRequest></Request><Item><ASIN>2070119874</ASIN><DetailPageURL>http://www.amazon.fr/Larch%C3%A9ologie-du-savoir-Michel-Foucault/dp/2070119874%3FSubscriptionId%3DAKIAI66X5P3HPKX56PNQ%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D165953%26creativeASIN%3D2070119874</DetailPageURL><ItemLinks><ItemLink><Description>Add To Wishlist</Description><URL>http://www.amazon.fr/gp/registry/wishlist/add-item.html%3Fasin.0%3D2070119874%26SubscriptionId%3DAKIAI66X5P3HPKX56PNQ%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D12742%26creativeASIN%3D2070119874</URL></ItemLink><ItemLink><Description>Tell A Friend</Description><URL>http://www.amazon.fr/gp/pdp/taf/2070119874%3FSubscriptionId%3DAKIAI66X5P3HPKX56PNQ%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D12742%26creativeASIN%3D2070119874</URL></ItemLink><ItemLink><Description>All Customer Reviews</Description><URL>http://www.amazon.fr/review/product/2070119874%3FSubscriptionId%3DAKIAI66X5P3HPKX56PNQ%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D12742%26creativeASIN%3D2070119874</URL></ItemLink><ItemLink><Description>All Offers</Description><URL>http://www.amazon.fr/gp/offer-listing/2070119874%3FSubscriptionId%3DAKIAI66X5P3HPKX56PNQ%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D12742%26creativeASIN%3D2070119874</URL></ItemLink></ItemLinks><ItemAttributes><Author>Michel Foucault</Author><Binding>Broch\xC3\xA9</Binding><EAN>9782070119875</EAN><ISBN>2070119874</ISBN><Label>Editions Gallimard</Label><Languages><Language><Name>Fran\xC3\xA7ais</Name><Type>Unknown</Type></Language><Language><Name>Fran\xC3\xA7ais</Name><Type>Original Language</Type></Language></Languages><ListPrice><Amount>1100</Amount><CurrencyCode>EUR</CurrencyCode><FormattedPrice>EUR 11,00</FormattedPrice></ListPrice><Manufacturer>Editions Gallimard</Manufacturer><NumberOfPages>288</NumberOfPages><PackageDimensions><Height Units=\"hundredths-inches\">79</Height><Length Units=\"hundredths-inches\">748</Length><Weight Units=\"hundredths-pounds\">62</Weight><Width Units=\"hundredths-inches\">488</Width></PackageDimensions><ProductGroup>Book</ProductGroup><ProductTypeName>ABIS_BOOK</ProductTypeName><PublicationDate>2008-02-07</PublicationDate><Publisher>Editions Gallimard</Publisher><Studio>Editions Gallimard</Studio><Title>L'arch\xC3\xA9ologie du savoir</Title></ItemAttributes><OfferSummary><LowestNewPrice><Amount>800</Amount><CurrencyCode>EUR</CurrencyCode><FormattedPrice>EUR 8,00</FormattedPrice></LowestNewPrice><LowestUsedPrice><Amount>900</Amount><CurrencyCode>EUR</CurrencyCode><FormattedPrice>EUR 9,00</FormattedPrice></LowestUsedPrice><TotalNew>8</TotalNew><TotalUsed>2</TotalUsed><TotalCollectible>0</TotalCollectible><TotalRefurbished>0</TotalRefurbished></OfferSummary><Offers><TotalOffers>10</TotalOffers><TotalOfferPages>1</TotalOfferPages><Offer><Merchant><MerchantId>A3V4L7IZ0Y01C9</MerchantId><Name>Folsca</Name><GlancePage>http://www.amazon.fr/gp/help/seller/home.html?seller=A3V4L7IZ0Y01C9</GlancePage><AverageFeedbackRating>4.8</AverageFeedbackRating><TotalFeedback>11</TotalFeedback></Merchant><OfferAttributes><Condition>New</Condition><SubCondition>new</SubCondition><ConditionNote>En stock. Envoi depuis la France.</ConditionNote></OfferAttributes><OfferListing><OfferListingId>6DA5HX8M5u8roMmQ9CVA5KjIQMawoXReWoNOJ3cEiYClbTJ7PjqF8L2XINnCHEHfeNeCJhHvjIBJwspD4igkYJcDIL6zwGDka0syqKCFOJxMRve3dofVuBFyRQkIeEEmewjxl8u%2B7m8%3D</OfferListingId><ExchangeId>Y17M0951601M2031236</ExchangeId><Price><Amount>800</Amount><CurrencyCode>EUR</CurrencyCode><FormattedPrice>EUR 8,00</FormattedPrice></Price><AmountSaved><Amount>300</Amount><CurrencyCode>EUR</CurrencyCode><FormattedPrice>EUR 3,00</FormattedPrice></AmountSaved><PercentageSaved>27</PercentageSaved><Availability>Exp\xC3\xA9dition sous 1 \xC3\xA0 2 jours ouvr\xC3\xA9s</Availability><AvailabilityAttributes><AvailabilityType>now</AvailabilityType><MinimumHours>24</MinimumHours><MaximumHours>48</MaximumHours></AvailabilityAttributes><Quantity>1</Quantity><IsEligibleForSuperSaverShipping>0</IsEligibleForSuperSaverShipping><IsFulfilledByAmazon>0</IsFulfilledByAmazon></OfferListing></Offer><Offer><Merchant><MerchantId>A2VWFG8UYGJ3UX</MerchantId><Name>francoisep20</Name><GlancePage>http://www.amazon.fr/gp/help/seller/home.html?seller=A2VWFG8UYGJ3UX</GlancePage><Location><CountryCode>FR</CountryCode></Location><AverageFeedbackRating>5.0</AverageFeedbackRating><TotalFeedback>121</TotalFeedback></Merchant><OfferAttributes><Condition>Used</Condition><SubCondition>mint</SubCondition></OfferAttributes><OfferListing><OfferListingId>ieX8nF2j0b5gcOBWlN%2BQd2ph%2BaMaXBaYDpZ3V5IYbup9F35G9mn5%2F1UW41odHNJYYbEj0qlZ7j5S7pW3r7cn0DbjJmihsI39F0jJpMIvbYepWGs7ZcfQgD7mEDsZCCWZner%2F7QEYdQs%3D</OfferListingId><ExchangeId>Y13M5239965M1914631</ExchangeId><Price><Amount>900</Amount><CurrencyCode>EUR</CurrencyCode><FormattedPrice>EUR 9,00</FormattedPrice></Price><AmountSaved><Amount>200</Amount><CurrencyCode>EUR</CurrencyCode><FormattedPrice>EUR 2,00</FormattedPrice></AmountSaved><PercentageSaved>18</PercentageSaved><Availability>Exp\xC3\xA9dition sous 1 \xC3\xA0 2 jours ouvr\xC3\xA9s</Availability><AvailabilityAttributes><AvailabilityType>now</AvailabilityType><MinimumHours>24</MinimumHours><MaximumHours>48</MaximumHours></AvailabilityAttributes><Quantity>1</Quantity><IsEligibleForSuperSaverShipping>0</IsEligibleForSuperSaverShipping><IsFulfilledByAmazon>0</IsFulfilledByAmazon></OfferListing></Offer><Offer><Merchant><MerchantId>A3G3PNXBCDB0DW</MerchantId><Name>chapitre_libraire</Name><GlancePage>http://www.amazon.fr/gp/help/seller/home.html?seller=A3G3PNXBCDB0DW</GlancePage><Location><CountryCode>FR</CountryCode></Location><AverageFeedbackRating>4.4</AverageFeedbackRating><TotalFeedback>19000</TotalFeedback></Merchant><OfferAttributes><Condition>Used</Condition><SubCondition>mint</SubCondition><ConditionNote>EXPEDITION COLIS SUIVI, SUIVI EN LIGNE ET PAR MAIL, PLUS DE 100 000 CLIENTS SATISFAITS</ConditionNote></OfferAttributes><OfferListing><OfferListingId>KdEPTqvYkgG7DHoh%2FOsBV%2BjoWPkSglx%2F%2FMNwCA78FKCzKlHmGwH83jE7rY%2BDGY3yXkJpPc4%2FR46JE7EkuxAkWAxrfa1r5G2Y7%2FRqEeZK8mk9XS5489ZpNpApd4VIgVd8lSTpu6KzAjM%3D</OfferListingId><ExchangeId>Y13M3877299M3863973</ExchangeId><Price><Amount>1045</Amount><CurrencyCode>EUR</CurrencyCode><FormattedPrice>EUR 10,45</FormattedPrice></Price><AmountSaved><Amount>55</Amount><CurrencyCode>EUR</CurrencyCode><FormattedPrice>EUR 0,55</FormattedPrice></AmountSaved><PercentageSaved>5</PercentageSaved><Availability>Exp\xC3\xA9dition sous 1 \xC3\xA0 2 jours ouvr\xC3\xA9s</Availability><AvailabilityAttributes><AvailabilityType>now</AvailabilityType><MinimumHours>24</MinimumHours><MaximumHours>48</MaximumHours></AvailabilityAttributes><Quantity>999</Quantity><IsEligibleForSuperSaverShipping>0</IsEligibleForSuperSaverShipping><IsFulfilledByAmazon>0</IsFulfilledByAmazon></OfferListing></Offer><Offer><Merchant><MerchantId>A1EOXQT1GBGF1E</MerchantId><Name>chapitre_librairie</Name><GlancePage>http://www.amazon.fr/gp/help/seller/home.html?seller=A1EOXQT1GBGF1E</GlancePage><Location><CountryCode>FR</CountryCode></Location><AverageFeedbackRating>4.4</AverageFeedbackRating><TotalFeedback>142275</TotalFeedback></Merchant><OfferAttributes><Condition>New</Condition><SubCondition>new</SubCondition><ConditionNote>EXPEDITION COLIS SUIVI, SUIVI EN LIGNE ET PAR MAIL, PLUS DE 100 000 CLIENTS SATISFAITS</ConditionNote></OfferAttributes><OfferListing><OfferListingId>4V5pv43tDnucGBjSNOAYfVgdwhSZ9bg6mYy2QN7dR3z5saBYgOQ8fBZOvcVPvcPaahHBHSg0O8QVYDjrUAFOoAiwft%2BFEvxuyIzznuG%2FnafgyHXbsHwwHCsVDZQa6AI8OA%2Be5ny2H9w%3D</OfferListingId><ExchangeId>Y14M5010332M5161003</ExchangeId><Price><Amount>1045</Amount><CurrencyCode>EUR</CurrencyCode><FormattedPrice>EUR 10,45</FormattedPrice></Price><AmountSaved><Amount>55</Amount><CurrencyCode>EUR</CurrencyCode><FormattedPrice>EUR 0,55</FormattedPrice></AmountSaved><PercentageSaved>5</PercentageSaved><Availability>Exp\xC3\xA9dition sous 1 \xC3\xA0 2 jours ouvr\xC3\xA9s</Availability><AvailabilityAttributes><AvailabilityType>now</AvailabilityType><MinimumHours>24</MinimumHours><MaximumHours>48</MaximumHours></AvailabilityAttributes><Quantity>999</Quantity><IsEligibleForSuperSaverShipping>0</IsEligibleForSuperSaverShipping><IsFulfilledByAmazon>0</IsFulfilledByAmazon></OfferListing></Offer><Offer><Merchant><MerchantId>A1X6FK5RDHNB96</MerchantId><Name>Amazon.fr</Name><GlancePage>http://www.amazon.fr/gp/help/seller/home.html?seller=A1X6FK5RDHNB96</GlancePage><AverageFeedbackRating>0.0</AverageFeedbackRating><TotalFeedback>0</TotalFeedback></Merchant><OfferAttributes><Condition>New</Condition><SubCondition>new</SubCondition></OfferAttributes><OfferListing><OfferListingId>Ll9qzytU%2FyAx%2BHdgUnbwL8zliXN8WYmUc%2BlPvC8VwrVH%2FXoBLxiKYbYsb0DWSD1CVNwrYqpYDlIxdrT6c9WtuQ%3D%3D</OfferListingId><Price><Amount>1046</Amount><CurrencyCode>EUR</CurrencyCode><FormattedPrice>EUR 10,46</FormattedPrice></Price><AmountSaved><Amount>54</Amount><CurrencyCode>EUR</CurrencyCode><FormattedPrice>EUR 0,54</FormattedPrice></AmountSaved><PercentageSaved>5</PercentageSaved><Availability>Habituellement exp\xC3\xA9di\xC3\xA9 sous 24 h</Availability><AvailabilityAttributes><AvailabilityType>now</AvailabilityType><MinimumHours>0</MinimumHours><MaximumHours>0</MaximumHours></AvailabilityAttributes><Quantity>-1</Quantity><IsEligibleForSuperSaverShipping>1</IsEligibleForSuperSaverShipping><IsFulfilledByAmazon>1</IsFulfilledByAmazon></OfferListing></Offer><Offer><Merchant><MerchantId>A2WDE0ZTZ0JHOQ</MerchantId><Name>librairiecontact</Name><GlancePage>http://www.amazon.fr/gp/help/seller/home.html?seller=A2WDE0ZTZ0JHOQ</GlancePage><Location><CountryCode>FR</CountryCode></Location><AverageFeedbackRating>4.7</AverageFeedbackRating><TotalFeedback>5675</TotalFeedback></Merchant><OfferAttributes><Condition>New</Condition><SubCondition>new</SubCondition></OfferAttributes><OfferListing><OfferListingId>fgjI%2B0YinoYifRc16Co7TyjL10wdcxB9vB7LrA9RN8h3FrcZxE6XvJR8Oum1V%2BAVg4u8rsCFGjfyTXNjCaLAho1xYWUZAeSCwpSxuWFJVdxxv%2BzwZZf0OCgzIr0sa4pEK%2Bqg2W3mAVs%3D</OfferListingId><ExchangeId>Y20M2343623M2916371</ExchangeId><Price><Amount>1100</Amount><CurrencyCode>EUR</CurrencyCode><FormattedPrice>EUR 11,00</FormattedPrice></Price><Availability>Exp\xC3\xA9dition sous 1 \xC3\xA0 2 jours ouvr\xC3\xA9s</Availability><AvailabilityAttributes><AvailabilityType>now</AvailabilityType><MinimumHours>24</MinimumHours><MaximumHours>48</MaximumHours></AvailabilityAttributes><Quantity>1</Quantity><IsEligibleForSuperSaverShipping>0</IsEligibleForSuperSaverShipping><IsFulfilledByAmazon>0</IsFulfilledByAmazon></OfferListing></Offer><Offer><Merchant><MerchantId>A3ERDFR0BEJ3HJ</MerchantId><Name>librairie_coiffard</Name><GlancePage>http://www.amazon.fr/gp/help/seller/home.html?seller=A3ERDFR0BEJ3HJ</GlancePage><Location><CountryCode>FR</CountryCode></Location><AverageFeedbackRating>4.8</AverageFeedbackRating><TotalFeedback>14111</TotalFeedback></Merchant><OfferAttributes><Condition>New</Condition><SubCondition>new</SubCondition></OfferAttributes><OfferListing><OfferListingId>ZFaucTYP1iM8Fx2T21iw7iAbUmtV48esK%2BuVnjEY4D3WBj4TB%2BMuRYBxDLT8%2B8PrW6vZ3klHq9W9vtvS%2F4BQafW0amoRzu8Xl0IrGUXp7hrCrlj4MR8p8GfWTJVwWgLVtJb03uviRZ0%3D</OfferListingId><ExchangeId>Y15M4375369M8794716</ExchangeId><Price><Amount>1100</Amount><CurrencyCode>EUR</CurrencyCode><FormattedPrice>EUR 11,00</FormattedPrice></Price><Availability>Exp\xC3\xA9dition sous 1 \xC3\xA0 2 jours ouvr\xC3\xA9s</Availability><AvailabilityAttributes><AvailabilityType>now</AvailabilityType><MinimumHours>24</MinimumHours><MaximumHours>48</MaximumHours></AvailabilityAttributes><Quantity>1</Quantity><IsEligibleForSuperSaverShipping>0</IsEligibleForSuperSaverShipping><IsFulfilledByAmazon>0</IsFulfilledByAmazon></OfferListing></Offer><Offer><Merchant><MerchantId>A1X6O0DTKBQ892</MerchantId><Name>livres_en_stocks</Name><GlancePage>http://www.amazon.fr/gp/help/seller/home.html?seller=A1X6O0DTKBQ892</GlancePage><Location><CountryCode>FR</CountryCode></Location><AverageFeedbackRating>4.8</AverageFeedbackRating><TotalFeedback>5426</TotalFeedback></Merchant><OfferAttributes><Condition>New</Condition><SubCondition>new</SubCondition></OfferAttributes><OfferListing><OfferListingId>W2F846e%2FTmgsK02fLO1I0zB7ufrWeEGfFvU7XFI%2FPVI6h3nsa%2BRGWNqGOrvcRRhWLDfJMUtaAExzuNsCBKFnvY21JzA9V%2FId7vew1NITYzDSKfwOg6mlslSO%2Bhi3CIHFZ4HHXrx1TL4%3D</OfferListingId><ExchangeId>Y16M6500383M0666961</ExchangeId><Price><Amount>1100</Amount><CurrencyCode>EUR</CurrencyCode><FormattedPrice>EUR 11,00</FormattedPrice></Price><Availability>Exp\xC3\xA9dition sous 1 \xC3\xA0 2 jours ouvr\xC3\xA9s</Availability><AvailabilityAttributes><AvailabilityType>now</AvailabilityType><MinimumHours>24</MinimumHours><MaximumHours>48</MaximumHours></AvailabilityAttributes><Quantity>8</Quantity><IsEligibleForSuperSaverShipping>0</IsEligibleForSuperSaverShipping><IsFulfilledByAmazon>0</IsFulfilledByAmazon></OfferListing></Offer><Offer><Merchant><MerchantId>ACXHY5958BU5U</MerchantId><Name>quartierlatinlibraire</Name><GlancePage>http://www.amazon.fr/gp/help/seller/home.html?seller=ACXHY5958BU5U</GlancePage><Location><CountryCode>FR</CountryCode></Location><AverageFeedbackRating>4.9</AverageFeedbackRating><TotalFeedback>2512</TotalFeedback></Merchant><OfferAttributes><Condition>New</Condition><SubCondition>new</SubCondition><ConditionNote>Quartier Latin. Libraire \xC3\xA0 Saint Etienne.... 40 000 r\xC3\xA9f\xC3\xA9rences en stock... Exp\xC3\xA9dition sous 24 \xC3\xA0 48 heures... Lettres anciennes et modernes. Histoire. D\xC3\xA9couvertes. Sciences humaines. Philosophie. Litt\xC3\xA9ratures polici\xC3\xA8res.</ConditionNote></OfferAttributes><OfferListing><OfferListingId>udEIS7L6Z8hQX3%2BLKhlCBNuxmpw8chSOfbjMwgJsUb%2FKoN2kxINzfxjeoykNATsPi%2F9G3gquyny4xw4nyc5ppB67vir9du8mKjMt0P%2BJRbt5Fnlx1V6dsFLWdaK5jy8fSVPx0SQ7FXQ%3D</OfferListingId><ExchangeId>Y19M2629467M6802798</ExchangeId><Price><Amount>1100</Amount><CurrencyCode>EUR</CurrencyCode><FormattedPrice>EUR 11,00</FormattedPrice></Price><Availability>Exp\xC3\xA9dition sous 1 \xC3\xA0 2 jours ouvr\xC3\xA9s</Availability><AvailabilityAttributes><AvailabilityType>now</AvailabilityType><MinimumHours>24</MinimumHours><MaximumHours>48</MaximumHours></AvailabilityAttributes><Quantity>1</Quantity><IsEligibleForSuperSaverShipping>0</IsEligibleForSuperSaverShipping><IsFulfilledByAmazon>0</IsFulfilledByAmazon></OfferListing></Offer><Offer><Merchant><MerchantId>A2NQCJQALMD64M</MerchantId><Name>librairie_ventdouest</Name><GlancePage>http://www.amazon.fr/gp/help/seller/home.html?seller=A2NQCJQALMD64M</GlancePage><Location><CountryCode>FR</CountryCode></Location><AverageFeedbackRating>4.9</AverageFeedbackRating><TotalFeedback>8211</TotalFeedback></Merchant><OfferAttributes><Condition>New</Condition><SubCondition>new</SubCondition></OfferAttributes><OfferListing><OfferListingId>VQz%2FVu2JA2x7s609zZaR%2B81%2F7ufrwSSOifHFrKzFTRRzndh4GJzzbCmMJ2DlzfWMPuGBBjv%2FD9U1zYv%2FzbllFi%2B7AKMrofXmxzbdxRtOOl8c1mA%2BoB0WdUmhG1OTWu5sY%2F74jQnM8bE%3D</OfferListingId><ExchangeId>Y20M0526421M6342630</ExchangeId><Price><Amount>1100</Amount><CurrencyCode>EUR</CurrencyCode><FormattedPrice>EUR 11,00</FormattedPrice></Price><Availability>Exp\xC3\xA9dition sous 1 \xC3\xA0 2 jours ouvr\xC3\xA9s</Availability><AvailabilityAttributes><AvailabilityType>now</AvailabilityType><MinimumHours>24</MinimumHours><MaximumHours>48</MaximumHours></AvailabilityAttributes><Quantity>1</Quantity><IsEligibleForSuperSaverShipping>0</IsEligibleForSuperSaverShipping><IsFulfilledByAmazon>0</IsFulfilledByAmazon></OfferListing></Offer></Offers></Item></Items></ItemLookupResponse>"
27
- http_version: "1.1"
@@ -1,27 +0,0 @@
1
- ---
2
- - !ruby/struct:VCR::HTTPInteraction
3
- request: !ruby/struct:VCR::Request
4
- method: :get
5
- uri: http://ecs.amazonaws.com:80/onca/xml?AWSAccessKeyId=AKIAI66X5P3HPKX56PNQ&IdType=ASIN&ItemId=0816614024&Operation=ItemLookup&ResponseGroup=Images&Service=AWSECommerceService&Signature=bKQKoyydv6QrcqDWpPP4YGkqElKkz1eu3MHnHX9yW5I=&Timestamp=2010-10-14T15:44:42Z&Version=2010-09-01
6
- body:
7
- headers: {}
8
-
9
- response: !ruby/struct:VCR::Response
10
- status: !ruby/struct:VCR::ResponseStatus
11
- code: 200
12
- message: OK
13
- headers:
14
- date:
15
- - Thu, 14 Oct 2010 15:44:42 GMT
16
- server:
17
- - Server
18
- content-type:
19
- - text/xml;charset=UTF-8
20
- vary:
21
- - Accept-Encoding,User-Agent
22
- nncoection:
23
- - close
24
- transfer-encoding:
25
- - chunked
26
- body: <?xml version="1.0" ?><ItemLookupResponse xmlns="http://webservices.amazon.com/AWSECommerceService/2010-09-01"><OperationRequest><RequestId>7d24fb62-85d1-4a47-8b96-ee5d26002074</RequestId><Arguments><Argument Name="Operation" Value="ItemLookup"></Argument><Argument Name="Service" Value="AWSECommerceService"></Argument><Argument Name="Signature" Value="bKQKoyydv6QrcqDWpPP4YGkqElKkz1eu3MHnHX9yW5I="></Argument><Argument Name="Version" Value="2010-09-01"></Argument><Argument Name="ItemId" Value="0816614024"></Argument><Argument Name="IdType" Value="ASIN"></Argument><Argument Name="AWSAccessKeyId" Value="AKIAI66X5P3HPKX56PNQ"></Argument><Argument Name="Timestamp" Value="2010-10-14T15:44:42Z"></Argument><Argument Name="ResponseGroup" Value="Images"></Argument></Arguments><RequestProcessingTime>0.0246020000000000</RequestProcessingTime></OperationRequest><Items><Request><IsValid>True</IsValid><ItemLookupRequest><Condition>New</Condition><DeliveryMethod>Ship</DeliveryMethod><IdType>ASIN</IdType><MerchantId>Amazon</MerchantId><OfferPage>1</OfferPage><ItemId>0816614024</ItemId><ResponseGroup>Images</ResponseGroup><ReviewPage>1</ReviewPage><ReviewSort>-SubmissionDate</ReviewSort><VariationPage>All</VariationPage></ItemLookupRequest></Request><Item><ASIN>0816614024</ASIN><SmallImage><URL>http://ecx.images-amazon.com/images/I/41S5Q3AE70L._SL75_.jpg</URL><Height Units="pixels">75</Height><Width Units="pixels">50</Width></SmallImage><MediumImage><URL>http://ecx.images-amazon.com/images/I/41S5Q3AE70L._SL160_.jpg</URL><Height Units="pixels">160</Height><Width Units="pixels">107</Width></MediumImage><LargeImage><URL>http://ecx.images-amazon.com/images/I/41S5Q3AE70L.jpg</URL><Height Units="pixels">475</Height><Width Units="pixels">318</Width></LargeImage><ImageSets><ImageSet Category="primary"><SwatchImage><URL>http://ecx.images-amazon.com/images/I/41S5Q3AE70L._SL30_.jpg</URL><Height Units="pixels">30</Height><Width Units="pixels">20</Width></SwatchImage><SmallImage><URL>http://ecx.images-amazon.com/images/I/41S5Q3AE70L._SL75_.jpg</URL><Height Units="pixels">75</Height><Width Units="pixels">50</Width></SmallImage><ThumbnailImage><URL>http://ecx.images-amazon.com/images/I/41S5Q3AE70L._SL75_.jpg</URL><Height Units="pixels">75</Height><Width Units="pixels">50</Width></ThumbnailImage><TinyImage><URL>http://ecx.images-amazon.com/images/I/41S5Q3AE70L._SL110_.jpg</URL><Height Units="pixels">110</Height><Width Units="pixels">74</Width></TinyImage><MediumImage><URL>http://ecx.images-amazon.com/images/I/41S5Q3AE70L._SL160_.jpg</URL><Height Units="pixels">160</Height><Width Units="pixels">107</Width></MediumImage><LargeImage><URL>http://ecx.images-amazon.com/images/I/41S5Q3AE70L.jpg</URL><Height Units="pixels">475</Height><Width Units="pixels">318</Width></LargeImage></ImageSet></ImageSets></Item></Items></ItemLookupResponse>
27
- http_version: "1.1"
@@ -1,27 +0,0 @@
1
- ---
2
- - !ruby/struct:VCR::HTTPInteraction
3
- request: !ruby/struct:VCR::Request
4
- method: :get
5
- uri: http://ecs.amazonaws.com:80/onca/xml?AWSAccessKeyId=AKIAI66X5P3HPKX56PNQ&Condition=All&IdType=ASIN&ItemId=0816614024,0143105825&MerchantId=All&Operation=ItemLookup&ResponseGroup=ItemAttributes,OfferFull&Service=AWSECommerceService&Signature=bdOO2pkrxXcOf/LUCCn4zfKKN39578HyqS9ZkDux4gY=&Timestamp=2010-10-14T15:44:43Z&Version=2010-09-01
6
- body:
7
- headers: {}
8
-
9
- response: !ruby/struct:VCR::Response
10
- status: !ruby/struct:VCR::ResponseStatus
11
- code: 200
12
- message: OK
13
- headers:
14
- date:
15
- - Thu, 14 Oct 2010 15:44:43 GMT
16
- server:
17
- - Server
18
- content-type:
19
- - text/xml;charset=UTF-8
20
- vary:
21
- - Accept-Encoding,User-Agent
22
- nncoection:
23
- - close
24
- transfer-encoding:
25
- - chunked
26
- body: "<?xml version=\"1.0\" ?><ItemLookupResponse xmlns=\"http://webservices.amazon.com/AWSECommerceService/2010-09-01\"><OperationRequest><RequestId>358083e3-d4e3-4c6f-bd86-470cf8816ee3</RequestId><Arguments><Argument Name=\"Condition\" Value=\"All\"></Argument><Argument Name=\"Operation\" Value=\"ItemLookup\"></Argument><Argument Name=\"Service\" Value=\"AWSECommerceService\"></Argument><Argument Name=\"ItemId\" Value=\"0816614024,0143105825\"></Argument><Argument Name=\"IdType\" Value=\"ASIN\"></Argument><Argument Name=\"AWSAccessKeyId\" Value=\"AKIAI66X5P3HPKX56PNQ\"></Argument><Argument Name=\"Timestamp\" Value=\"2010-10-14T15:44:43Z\"></Argument><Argument Name=\"Signature\" Value=\"bdOO2pkrxXcOf/LUCCn4zfKKN39578HyqS9ZkDux4gY=\"></Argument><Argument Name=\"ResponseGroup\" Value=\"ItemAttributes,OfferFull\"></Argument><Argument Name=\"MerchantId\" Value=\"All\"></Argument><Argument Name=\"Version\" Value=\"2010-09-01\"></Argument></Arguments><RequestProcessingTime>0.1216900000000000</RequestProcessingTime></OperationRequest><Items><Request><IsValid>True</IsValid><ItemLookupRequest><Condition>All</Condition><DeliveryMethod>Ship</DeliveryMethod><IdType>ASIN</IdType><MerchantId>All</MerchantId><OfferPage>1</OfferPage><ItemId>0816614024</ItemId><ItemId>0143105825</ItemId><ResponseGroup>ItemAttributes</ResponseGroup><ResponseGroup>OfferFull</ResponseGroup><ReviewPage>1</ReviewPage><ReviewSort>-SubmissionDate</ReviewSort><VariationPage>All</VariationPage></ItemLookupRequest></Request><Item><ASIN>0816614024</ASIN><DetailPageURL>http://www.amazon.com/Thousand-Plateaus-Capitalism-Schizophrenia/dp/0816614024%3FSubscriptionId%3DAKIAI66X5P3HPKX56PNQ%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D165953%26creativeASIN%3D0816614024</DetailPageURL><ItemLinks><ItemLink><Description>Technical Details</Description><URL>http://www.amazon.com/Thousand-Plateaus-Capitalism-Schizophrenia/dp/tech-data/0816614024%3FSubscriptionId%3DAKIAI66X5P3HPKX56PNQ%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3D0816614024</URL></ItemLink><ItemLink><Description>Add To Baby Registry</Description><URL>http://www.amazon.com/gp/registry/baby/add-item.html%3Fasin.0%3D0816614024%26SubscriptionId%3DAKIAI66X5P3HPKX56PNQ%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3D0816614024</URL></ItemLink><ItemLink><Description>Add To Wedding Registry</Description><URL>http://www.amazon.com/gp/registry/wedding/add-item.html%3Fasin.0%3D0816614024%26SubscriptionId%3DAKIAI66X5P3HPKX56PNQ%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3D0816614024</URL></ItemLink><ItemLink><Description>Add To Wishlist</Description><URL>http://www.amazon.com/gp/registry/wishlist/add-item.html%3Fasin.0%3D0816614024%26SubscriptionId%3DAKIAI66X5P3HPKX56PNQ%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3D0816614024</URL></ItemLink><ItemLink><Description>Tell A Friend</Description><URL>http://www.amazon.com/gp/pdp/taf/0816614024%3FSubscriptionId%3DAKIAI66X5P3HPKX56PNQ%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3D0816614024</URL></ItemLink><ItemLink><Description>All Customer Reviews</Description><URL>http://www.amazon.com/review/product/0816614024%3FSubscriptionId%3DAKIAI66X5P3HPKX56PNQ%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3D0816614024</URL></ItemLink><ItemLink><Description>All Offers</Description><URL>http://www.amazon.com/gp/offer-listing/0816614024%3FSubscriptionId%3DAKIAI66X5P3HPKX56PNQ%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3D0816614024</URL></ItemLink></ItemLinks><ItemAttributes><Author>Gilles Deleuze</Author><Author>Felix Guattari</Author><Author>Brian Massumi</Author><Binding>Paperback</Binding><DeweyDecimalNumber>194</DeweyDecimalNumber><EAN>9780816614028</EAN><ISBN>0816614024</ISBN><IsEligibleForTradeIn>1</IsEligibleForTradeIn><Label>University of Minnesota Press</Label><Languages><Language><Name>English</Name><Type>Unknown</Type></Language><Language><Name>English</Name><Type>Original Language</Type></Language><Language><Name>English</Name><Type>Published</Type></Language></Languages><ListPrice><Amount>2500</Amount><CurrencyCode>USD</CurrencyCode><FormattedPrice>$25.00</FormattedPrice></ListPrice><Manufacturer>University of Minnesota Press</Manufacturer><NumberOfItems>1</NumberOfItems><NumberOfPages>610</NumberOfPages><PackageDimensions><Height Units=\"hundredths-inches\">135</Height><Length Units=\"hundredths-inches\">899</Length><Weight Units=\"hundredths-pounds\">183</Weight><Width Units=\"hundredths-inches\">608</Width></PackageDimensions><ProductGroup>Book</ProductGroup><ProductTypeName>ABIS_BOOK</ProductTypeName><PublicationDate>1987-12</PublicationDate><Publisher>University of Minnesota Press</Publisher><Studio>University of Minnesota Press</Studio><Title>A Thousand Plateaus: Capitalism and Schizophrenia</Title><TradeInValue><Amount>722</Amount><CurrencyCode>USD</CurrencyCode><FormattedPrice>$7.22</FormattedPrice></TradeInValue></ItemAttributes><OfferSummary><LowestNewPrice><Amount>1800</Amount><CurrencyCode>USD</CurrencyCode><FormattedPrice>$18.00</FormattedPrice></LowestNewPrice><LowestUsedPrice><Amount>1625</Amount><CurrencyCode>USD</CurrencyCode><FormattedPrice>$16.25</FormattedPrice></LowestUsedPrice><LowestCollectiblePrice><Amount>5000</Amount><CurrencyCode>USD</CurrencyCode><FormattedPrice>$50.00</FormattedPrice></LowestCollectiblePrice><TotalNew>27</TotalNew><TotalUsed>21</TotalUsed><TotalCollectible>1</TotalCollectible><TotalRefurbished>0</TotalRefurbished></OfferSummary><Offers><TotalOffers>48</TotalOffers><TotalOfferPages>5</TotalOfferPages><Offer><Merchant><MerchantId>A2N40VVFF4HONE</MerchantId><Name>bookcircus_</Name><GlancePage>http://www.amazon.com/gp/help/seller/home.html?seller=A2N40VVFF4HONE</GlancePage><Location><CountryCode>US</CountryCode><StateCode>AR</StateCode></Location><AverageFeedbackRating>4.7</AverageFeedbackRating><TotalFeedback>6734</TotalFeedback></Merchant><OfferAttributes><Condition>Used</Condition><SubCondition>good</SubCondition><ConditionNote>All orders receive tracking information upon shipment (except expedited PO boxes). May not contain certain online supplements such as infotrac and web access codes. Used items likely contain highlighting and/or writing. Expedited shipping available.</ConditionNote></OfferAttributes><OfferListing><OfferListingId>xbibzFvnPX8WEOAfgRhacVycW8HOcshyhJIQtIT6hsfJuQ4r6zn4zDJ63Tb4PSBlys3dnUMPuYMnlE4GiBpp38SFdiwvrtqeSG5Sekyb9hgxjlG6NybB7jfrn39KbUj6KrIv0vGUfuE%3D</OfferListingId><ExchangeId>Y11M4392395M5450056</ExchangeId><Price><Amount>1625</Amount><CurrencyCode>USD</CurrencyCode><FormattedPrice>$16.25</FormattedPrice></Price><AmountSaved><Amount>875</Amount><CurrencyCode>USD</CurrencyCode><FormattedPrice>$8.75</FormattedPrice></AmountSaved><PercentageSaved>35</PercentageSaved><Availability>Usually ships in 1-2 business days</Availability><AvailabilityAttributes><AvailabilityType>now</AvailabilityType><MinimumHours>24</MinimumHours><MaximumHours>48</MaximumHours></AvailabilityAttributes><Quantity>1</Quantity><IsEligibleForSuperSaverShipping>0</IsEligibleForSuperSaverShipping><IsFulfilledByAmazon>0</IsFulfilledByAmazon></OfferListing></Offer><Offer><Merchant><MerchantId>A33YWJZK210TPI</MerchantId><Name>jimsesales</Name><GlancePage>http://www.amazon.com/gp/help/seller/home.html?seller=A33YWJZK210TPI</GlancePage><Location><CountryCode>US</CountryCode><StateCode>NM</StateCode></Location><AverageFeedbackRating>4.9</AverageFeedbackRating><TotalFeedback>303</TotalFeedback></Merchant><OfferAttributes><Condition>Used</Condition><SubCondition>good</SubCondition><ConditionNote>Great Book! good to very good condition. cover wear/bend. Fast Shipping! Thank You For Your Business!</ConditionNote></OfferAttributes><OfferListing><OfferListingId>92nnRqFTS0Z9WJtGgR5w%2F6TS0gvA93yE8FdianuKoukr%2BrSSbj1shjvnTDeMnkJxnVM4ScSltc%2FAax9eHJmZd34dR5cFBS9jqy6PdlJBslPy97t3SIjbwqw7IKbOVt0tp17T5Xxwz0I%3D</OfferListingId><ExchangeId>Y14M5617829M1312826</ExchangeId><Price><Amount>1748</Amount><CurrencyCode>USD</CurrencyCode><FormattedPrice>$17.48</FormattedPrice></Price><AmountSaved><Amount>752</Amount><CurrencyCode>USD</CurrencyCode><FormattedPrice>$7.52</FormattedPrice></AmountSaved><PercentageSaved>30</PercentageSaved><Availability>Usually ships in 1-2 business days</Availability><AvailabilityAttributes><AvailabilityType>now</AvailabilityType><MinimumHours>24</MinimumHours><MaximumHours>48</MaximumHours></AvailabilityAttributes><Quantity>1</Quantity><IsEligibleForSuperSaverShipping>0</IsEligibleForSuperSaverShipping><IsFulfilledByAmazon>0</IsFulfilledByAmazon></OfferListing></Offer><Offer><Merchant><MerchantId>ATVPDKIKX0DER</MerchantId><Name>Amazon.com</Name><GlancePage>http://www.amazon.com/gp/help/seller/home.html?seller=ATVPDKIKX0DER</GlancePage><AverageFeedbackRating>0.0</AverageFeedbackRating><TotalFeedback>0</TotalFeedback></Merchant><OfferAttributes><Condition>New</Condition><SubCondition>new</SubCondition></OfferAttributes><OfferListing><OfferListingId>5gn16RHKkOiZh2WDAINIOZMNVmY7pHWAiR43%2B85dGw9dZLDFsiC3XyypG7fWnlCAcpZQuk4Mu0ZnC3Cq0P0Hfw%3D%3D</OfferListingId><Price><Amount>1800</Amount><CurrencyCode>USD</CurrencyCode><FormattedPrice>$18.00</FormattedPrice></Price><AmountSaved><Amount>700</Amount><CurrencyCode>USD</CurrencyCode><FormattedPrice>$7.00</FormattedPrice></AmountSaved><PercentageSaved>28</PercentageSaved><Availability>Usually ships in 24 hours</Availability><AvailabilityAttributes><AvailabilityType>now</AvailabilityType><MinimumHours>0</MinimumHours><MaximumHours>0</MaximumHours></AvailabilityAttributes><Quantity>-1</Quantity><IsEligibleForSuperSaverShipping>1</IsEligibleForSuperSaverShipping><IsFulfilledByAmazon>1</IsFulfilledByAmazon></OfferListing></Offer><Offer><Merchant><MerchantId>A1QJ4UH6FW3UH1</MerchantId><Name>motor_city_books</Name><GlancePage>http://www.amazon.com/gp/help/seller/home.html?seller=A1QJ4UH6FW3UH1</GlancePage><Location><CountryCode>US</CountryCode><StateCode>MI</StateCode></Location><AverageFeedbackRating>4.8</AverageFeedbackRating><TotalFeedback>66311</TotalFeedback></Merchant><OfferAttributes><Condition>Used</Condition><SubCondition>good</SubCondition><ConditionNote>Minimal damage to cover and binding. Pages show light use. With pride from Motor City. All books guaranteed. Best Service, Best Prices.</ConditionNote></OfferAttributes><OfferListing><OfferListingId>uQd81LghDo0jVHKUKP8UV%2FwpYQzjoRG2XqYuCu%2F8Pv3eGFEdFPxAhk1fPOY6KDalT7KdVU%2BAP6VoGz6szv3JpBJQp8gUp3%2FhhxH1LVw1TSZhIdLZN7ehbSABmw6xU1jI</OfferListingId><ExchangeId>Y14M6034743M1466979</ExchangeId><Price><Amount>1939</Amount><CurrencyCode>USD</CurrencyCode><FormattedPrice>$19.39</FormattedPrice></Price><AmountSaved><Amount>561</Amount><CurrencyCode>USD</CurrencyCode><FormattedPrice>$5.61</FormattedPrice></AmountSaved><PercentageSaved>22</PercentageSaved><Availability>Usually ships in 1-2 business days</Availability><AvailabilityAttributes><AvailabilityType>now</AvailabilityType><MinimumHours>24</MinimumHours><MaximumHours>48</MaximumHours></AvailabilityAttributes><Quantity>1</Quantity><IsEligibleForSuperSaverShipping>0</IsEligibleForSuperSaverShipping><IsFulfilledByAmazon>0</IsFulfilledByAmazon></OfferListing></Offer><Offer><Merchant><MerchantId>A3IS4K0BDHACV8</MerchantId><Name>Apollo-Books90</Name><GlancePage>http://www.amazon.com/gp/help/seller/home.html?seller=A3IS4K0BDHACV8</GlancePage><Location><CountryCode>US</CountryCode><StateCode>NY</StateCode></Location><AverageFeedbackRating>4.9</AverageFeedbackRating><TotalFeedback>140</TotalFeedback></Merchant><OfferAttributes><Condition>Used</Condition><SubCondition>verygood</SubCondition><ConditionNote>Trade PB. 8vo. University of Minnesota Press. 1987. 610 pgs. Wrappers in excellent shape, with no wear present. Binding tight and solid. Book is free of ownership marks. Text is clean and free of marks. Photos sent upon request. 772</ConditionNote></OfferAttributes><OfferListing><OfferListingId>Idl5DU1VvdW%2Bdo0VVZTk1BuCWezOIO7H%2FJaCt%2BJkzgWrb4RVU278a8VxbCaJNGQtOKq4f%2FfLINjAWlMhqo8UiNIf8lqD%2BJp5%2F7hd1CR6D%2FQgOciZd8NsMI0j10MXLwMcuKLNVLaq9DM%3D</OfferListingId><ExchangeId>Y12M1273632M5652898</ExchangeId><Price><Amount>1995</Amount><CurrencyCode>USD</CurrencyCode><FormattedPrice>$19.95</FormattedPrice></Price><AmountSaved><Amount>505</Amount><CurrencyCode>USD</CurrencyCode><FormattedPrice>$5.05</FormattedPrice></AmountSaved><PercentageSaved>20</PercentageSaved><Availability>Usually ships in 1-2 business days</Availability><AvailabilityAttributes><AvailabilityType>now</AvailabilityType><MinimumHours>24</MinimumHours><MaximumHours>48</MaximumHours></AvailabilityAttributes><Quantity>1</Quantity><IsEligibleForSuperSaverShipping>0</IsEligibleForSuperSaverShipping><IsFulfilledByAmazon>0</IsFulfilledByAmazon></OfferListing></Offer><Offer><Merchant><MerchantId>A2SUF7Y73WB371</MerchantId><Name>Quick_N_Easy Marketplace</Name><GlancePage>http://www.amazon.com/gp/help/seller/home.html?seller=A2SUF7Y73WB371</GlancePage><Location><CountryCode>US</CountryCode><StateCode>GA</StateCode></Location><AverageFeedbackRating>4.9</AverageFeedbackRating><TotalFeedback>7284</TotalFeedback></Merchant><OfferAttributes><Condition>New</Condition><SubCondition>new</SubCondition><ConditionNote>Brand New Item. Multiple copies available. Expedited and Two Days Delivery options!</ConditionNote></OfferAttributes><OfferListing><OfferListingId>pwUbBxJ6dMw6QOZOgksfOjeWyan9KVmFnMeeHDWIECoDxPtBEbuUXM7eVWODYMmJIHIrif0%2B2xY3%2BjLqlwmD2h0UvY%2Bl2bjd1nwimdu8aDDzfrqG77eh1P08towM5iOQhLUDqtdlyr%2BwvERRn7CypQ%3D%3D</OfferListingId><ExchangeId>Y13M2255528M9001393</ExchangeId><Price><Amount>2170</Amount><CurrencyCode>USD</CurrencyCode><FormattedPrice>$21.70</FormattedPrice></Price><AmountSaved><Amount>330</Amount><CurrencyCode>USD</CurrencyCode><FormattedPrice>$3.30</FormattedPrice></AmountSaved><PercentageSaved>13</PercentageSaved><Availability>Usually ships in 1-2 business days</Availability><AvailabilityAttributes><AvailabilityType>now</AvailabilityType><MinimumHours>24</MinimumHours><MaximumHours>48</MaximumHours></AvailabilityAttributes><Quantity>2</Quantity><IsEligibleForSuperSaverShipping>0</IsEligibleForSuperSaverShipping><IsFulfilledByAmazon>0</IsFulfilledByAmazon></OfferListing></Offer><Offer><Merchant><MerchantId>A2SUF7Y73WB371</MerchantId><Name>Quick_N_Easy Marketplace</Name><GlancePage>http://www.amazon.com/gp/help/seller/home.html?seller=A2SUF7Y73WB371</GlancePage><Location><CountryCode>US</CountryCode><StateCode>GA</StateCode></Location><AverageFeedbackRating>4.9</AverageFeedbackRating><TotalFeedback>7284</TotalFeedback></Merchant><OfferAttributes><Condition>Used</Condition><SubCondition>mint</SubCondition><ConditionNote>Brand New Item. Multiple copies available. Expedited and Two Days Delivery options!</ConditionNote></OfferAttributes><OfferListing><OfferListingId>Xrheem9DyCS4oXttTce8dAlxqvbWcpYB4mH6ga08FkJwf8FNnCaB56PAsFxsQ%2FMwPfNSa1sgRJoQAh%2FllyG9S9jqwpTlxTKrXxztMu2UH6RV4b0%2BWLUrJVQA8%2BSC2%2FIqlrK5IfBiPBiw9vNjc8bIHw%3D%3D</OfferListingId><ExchangeId>Y13M2258623M4336772</ExchangeId><Price><Amount>2170</Amount><CurrencyCode>USD</CurrencyCode><FormattedPrice>$21.70</FormattedPrice></Price><AmountSaved><Amount>330</Amount><CurrencyCode>USD</CurrencyCode><FormattedPrice>$3.30</FormattedPrice></AmountSaved><PercentageSaved>13</PercentageSaved><Availability>Usually ships in 1-2 business days</Availability><AvailabilityAttributes><AvailabilityType>now</AvailabilityType><MinimumHours>24</MinimumHours><MaximumHours>48</MaximumHours></AvailabilityAttributes><Quantity>2</Quantity><IsEligibleForSuperSaverShipping>0</IsEligibleForSuperSaverShipping><IsFulfilledByAmazon>0</IsFulfilledByAmazon></OfferListing></Offer><Offer><Merchant><MerchantId>A2MU9ZILHNPP6L</MerchantId><Name>quality7</Name><GlancePage>http://www.amazon.com/gp/help/seller/home.html?seller=A2MU9ZILHNPP6L</GlancePage><Location><CountryCode>US</CountryCode><StateCode>GA</StateCode></Location><AverageFeedbackRating>4.8</AverageFeedbackRating><TotalFeedback>46347</TotalFeedback></Merchant><OfferAttributes><Condition>Used</Condition><SubCondition>good</SubCondition><ConditionNote>Excellent customer service. Order inquiries handled promptly.</ConditionNote></OfferAttributes><OfferListing><OfferListingId>tHQETFTjpJP1KEpaZ4bhdCHAAhVPyRjV4MwLDmZ%2B%2BBXisdgU4PjibFmRTEUAQH2IQuf4yGkD0nsyiybDK%2BugqBe4TVdsjk2B5QNZrfEe3BEdm18NHTSGLKfCHay0KVf4</OfferListingId><ExchangeId>Y17M0287288M5089461</ExchangeId><Price><Amount>2365</Amount><CurrencyCode>USD</CurrencyCode><FormattedPrice>$23.65</FormattedPrice></Price><AmountSaved><Amount>135</Amount><CurrencyCode>USD</CurrencyCode><FormattedPrice>$1.35</FormattedPrice></AmountSaved><PercentageSaved>5</PercentageSaved><Availability>Usually ships in 1-2 business days</Availability><AvailabilityAttributes><AvailabilityType>now</AvailabilityType><MinimumHours>24</MinimumHours><MaximumHours>48</MaximumHours></AvailabilityAttributes><Quantity>1</Quantity><IsEligibleForSuperSaverShipping>0</IsEligibleForSuperSaverShipping><IsFulfilledByAmazon>0</IsFulfilledByAmazon></OfferListing></Offer><Offer><Merchant><MerchantId>A2Z2CSK1PH6GOI</MerchantId><Name>bordeebook</Name><GlancePage>http://www.amazon.com/gp/help/seller/home.html?seller=A2Z2CSK1PH6GOI</GlancePage><Location><CountryCode>US</CountryCode></Location><AverageFeedbackRating>4.7</AverageFeedbackRating><TotalFeedback>21053</TotalFeedback></Merchant><OfferAttributes><Condition>Used</Condition><SubCondition>good</SubCondition><ConditionNote>Used but in nice shape with normal surface &amp; edge wear. Accessories may not be included. Fast shipping!</ConditionNote></OfferAttributes><OfferListing><OfferListingId>%2FBhIZMexM9UOnwYIdD9dyr7keyw3gWddfUYn1gMkQm%2Fdy%2B0%2Fj3BW%2FuzvO82j3UkUK9knhjD%2BJLZCOfpDhnkBxpguqWf3%2FtGfPAL8LNJkIpSmQcasZjKCJJf3ae360OQ5%2BKUcB%2FqxVVQ%3D</OfferListingId><ExchangeId>Y12M0105825M2752161</ExchangeId><Price><Amount>2374</Amount><CurrencyCode>USD</CurrencyCode><FormattedPrice>$23.74</FormattedPrice></Price><AmountSaved><Amount>126</Amount><CurrencyCode>USD</CurrencyCode><FormattedPrice>$1.26</FormattedPrice></AmountSaved><PercentageSaved>5</PercentageSaved><Availability>Usually ships in 1-2 business days</Availability><AvailabilityAttributes><AvailabilityType>now</AvailabilityType><MinimumHours>24</MinimumHours><MaximumHours>48</MaximumHours></AvailabilityAttributes><Quantity>1</Quantity><IsEligibleForSuperSaverShipping>0</IsEligibleForSuperSaverShipping><IsFulfilledByAmazon>0</IsFulfilledByAmazon></OfferListing></Offer><Offer><Merchant><MerchantId>A3YUX3T6VE9ZS</MerchantId><Name>qualitystar</Name><GlancePage>http://www.amazon.com/gp/help/seller/home.html?seller=A3YUX3T6VE9ZS</GlancePage><Location><CountryCode>US</CountryCode><StateCode>NY</StateCode></Location><AverageFeedbackRating>5.0</AverageFeedbackRating><TotalFeedback>3</TotalFeedback></Merchant><OfferAttributes><Condition>Used</Condition><SubCondition>good</SubCondition><ConditionNote>author's name on inside cover; otherwise pristine (slight crease in spine).</ConditionNote></OfferAttributes><OfferListing><OfferListingId>iklAw4yCSd6mdGqtcbx%2FkeUD%2FAr6C0WT5nTucuGewUzcsOnsLOCQPbB73BXv8YTDsUxeLpAk64e4eZe%2FG0o2ZwYtO0LjAqWKsLvZewXfIs89Pii40cLvQGAlIzzrs1P7uBy8eBcvMLY%3D</OfferListingId><ExchangeId>Y15M0358503M0767087</ExchangeId><Price><Amount>2399</Amount><CurrencyCode>USD</CurrencyCode><FormattedPrice>$23.99</FormattedPrice></Price><AmountSaved><Amount>101</Amount><CurrencyCode>USD</CurrencyCode><FormattedPrice>$1.01</FormattedPrice></AmountSaved><PercentageSaved>4</PercentageSaved><Availability>Usually ships in 1-2 business days</Availability><AvailabilityAttributes><AvailabilityType>now</AvailabilityType><MinimumHours>24</MinimumHours><MaximumHours>48</MaximumHours></AvailabilityAttributes><Quantity>1</Quantity><IsEligibleForSuperSaverShipping>0</IsEligibleForSuperSaverShipping><IsFulfilledByAmazon>0</IsFulfilledByAmazon></OfferListing></Offer></Offers></Item><Item><ASIN>0143105825</ASIN><DetailPageURL>http://www.amazon.com/Anti-Oedipus-Capitalism-Schizophrenia-Penguin-Classics/dp/0143105825%3FSubscriptionId%3DAKIAI66X5P3HPKX56PNQ%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D165953%26creativeASIN%3D0143105825</DetailPageURL><ItemLinks><ItemLink><Description>Technical Details</Description><URL>http://www.amazon.com/Anti-Oedipus-Capitalism-Schizophrenia-Penguin-Classics/dp/tech-data/0143105825%3FSubscriptionId%3DAKIAI66X5P3HPKX56PNQ%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3D0143105825</URL></ItemLink><ItemLink><Description>Add To Baby Registry</Description><URL>http://www.amazon.com/gp/registry/baby/add-item.html%3Fasin.0%3D0143105825%26SubscriptionId%3DAKIAI66X5P3HPKX56PNQ%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3D0143105825</URL></ItemLink><ItemLink><Description>Add To Wedding Registry</Description><URL>http://www.amazon.com/gp/registry/wedding/add-item.html%3Fasin.0%3D0143105825%26SubscriptionId%3DAKIAI66X5P3HPKX56PNQ%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3D0143105825</URL></ItemLink><ItemLink><Description>Add To Wishlist</Description><URL>http://www.amazon.com/gp/registry/wishlist/add-item.html%3Fasin.0%3D0143105825%26SubscriptionId%3DAKIAI66X5P3HPKX56PNQ%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3D0143105825</URL></ItemLink><ItemLink><Description>Tell A Friend</Description><URL>http://www.amazon.com/gp/pdp/taf/0143105825%3FSubscriptionId%3DAKIAI66X5P3HPKX56PNQ%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3D0143105825</URL></ItemLink><ItemLink><Description>All Customer Reviews</Description><URL>http://www.amazon.com/review/product/0143105825%3FSubscriptionId%3DAKIAI66X5P3HPKX56PNQ%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3D0143105825</URL></ItemLink><ItemLink><Description>All Offers</Description><URL>http://www.amazon.com/gp/offer-listing/0143105825%3FSubscriptionId%3DAKIAI66X5P3HPKX56PNQ%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3D0143105825</URL></ItemLink></ItemLinks><ItemAttributes><Author>Gilles Deleuze</Author><Author>Felix Guattari</Author><Binding>Paperback</Binding><Creator Role=\"Translator\">Robert Hurley</Creator><Creator Role=\"Translator\">Mark Seem</Creator><Creator Role=\"Introduction\">Mark Seem</Creator><Creator Role=\"Translator\">Helen Lane</Creator><Creator Role=\"Preface\">Michel Foucault</Creator><DeweyDecimalNumber>616</DeweyDecimalNumber><EAN>9780143105824</EAN><Feature>ISBN13: 9780143105824</Feature><Feature>Condition: New</Feature><Feature>Notes: BUY WITH CONFIDENCE, Over one million books sold! 98% Positive feedback. Compare our books, prices and service to the competition. 100% Satisfaction Guaranteed</Feature><ISBN>0143105825</ISBN><IsEligibleForTradeIn>1</IsEligibleForTradeIn><Label>Penguin Classics</Label><Languages><Language><Name>English</Name><Type>Unknown</Type></Language><Language><Name>English</Name><Type>Original Language</Type></Language><Language><Name>English</Name><Type>Published</Type></Language></Languages><ListPrice><Amount>2200</Amount><CurrencyCode>USD</CurrencyCode><FormattedPrice>$22.00</FormattedPrice></ListPrice><Manufacturer>Penguin Classics</Manufacturer><NumberOfItems>1</NumberOfItems><NumberOfPages>432</NumberOfPages><PackageDimensions><Height Units=\"hundredths-inches\">118</Height><Length Units=\"hundredths-inches\">819</Length><Weight Units=\"hundredths-pounds\">79</Weight><Width Units=\"hundredths-inches\">543</Width></PackageDimensions><ProductGroup>Book</ProductGroup><ProductTypeName>ABIS_BOOK</ProductTypeName><PublicationDate>2009-05-26</PublicationDate><Publisher>Penguin Classics</Publisher><Studio>Penguin Classics</Studio><Title>Anti-Oedipus: Capitalism and Schizophrenia (Penguin Classics)</Title><TradeInValue><Amount>425</Amount><CurrencyCode>USD</CurrencyCode><FormattedPrice>$4.25</FormattedPrice></TradeInValue></ItemAttributes><OfferSummary><LowestNewPrice><Amount>1191</Amount><CurrencyCode>USD</CurrencyCode><FormattedPrice>$11.91</FormattedPrice></LowestNewPrice><LowestUsedPrice><Amount>1192</Amount><CurrencyCode>USD</CurrencyCode><FormattedPrice>$11.92</FormattedPrice></LowestUsedPrice><LowestCollectiblePrice><Amount>15000</Amount><CurrencyCode>USD</CurrencyCode><FormattedPrice>$150.00</FormattedPrice></LowestCollectiblePrice><TotalNew>30</TotalNew><TotalUsed>12</TotalUsed><TotalCollectible>1</TotalCollectible><TotalRefurbished>0</TotalRefurbished></OfferSummary><Offers><TotalOffers>43</TotalOffers><TotalOfferPages>5</TotalOfferPages><Offer><Merchant><MerchantId>A3TJVJMBQL014A</MerchantId><Name>the_book_depository_</Name><GlancePage>http://www.amazon.com/gp/help/seller/home.html?seller=A3TJVJMBQL014A</GlancePage><Location><CountryCode>US</CountryCode><StateCode>DE</StateCode></Location><AverageFeedbackRating>4.8</AverageFeedbackRating><TotalFeedback>110753</TotalFeedback></Merchant><OfferAttributes><Condition>New</Condition><SubCondition>new</SubCondition><ConditionNote>Brand New. Delivery is usually 5 - 8 working days from order, International is by Royal Mail Airmail.</ConditionNote></OfferAttributes><OfferListing><OfferListingId>AcJT42F9RQu6h62mMc%2F6xaYe5ZweuYqvijVXs3YFNr%2FW%2FQ%2Br%2FOU67%2BX%2BkzrYQsgFZ3wZi7PeygBmVCC4mSzoM%2Bz27nYSGsQDFc4c32N2WNmlaYQINgSD89%2FjvV85N3Fq908P2dyQtRM%3D</OfferListingId><ExchangeId>Y19M2442033M8899457</ExchangeId><Price><Amount>1191</Amount><CurrencyCode>USD</CurrencyCode><FormattedPrice>$11.91</FormattedPrice></Price><AmountSaved><Amount>1009</Amount><CurrencyCode>USD</CurrencyCode><FormattedPrice>$10.09</FormattedPrice></AmountSaved><PercentageSaved>46</PercentageSaved><Availability>Usually ships in 1-2 business days</Availability><AvailabilityAttributes><AvailabilityType>now</AvailabilityType><MinimumHours>24</MinimumHours><MaximumHours>48</MaximumHours></AvailabilityAttributes><Quantity>1</Quantity><IsEligibleForSuperSaverShipping>0</IsEligibleForSuperSaverShipping><IsFulfilledByAmazon>0</IsFulfilledByAmazon></OfferListing></Offer><Offer><Merchant><MerchantId>A20EWB51R9YBPO</MerchantId><Name>---greatbookdeals</Name><GlancePage>http://www.amazon.com/gp/help/seller/home.html?seller=A20EWB51R9YBPO</GlancePage><Location><CountryCode>US</CountryCode><StateCode>FL</StateCode></Location><AverageFeedbackRating>4.7</AverageFeedbackRating><TotalFeedback>36286</TotalFeedback></Merchant><OfferAttributes><Condition>Used</Condition><SubCondition>mint</SubCondition><ConditionNote>Absolutely Brand New &amp; In Stock. 100% 30-Day Money Back. Direct from our warehouse. Ships by USPS. 1+ million customers served-In business since 1986. Happy Customers is Our #1 Goal. Toll Free Support</ConditionNote></OfferAttributes><OfferListing><OfferListingId>%2FNtiLWD%2FA7BgED%2FpfQp9Cs%2F3dlulFZojUaFJezHRgCyaGw0PyLdihOQiwVnEMMdcmxNqIAtbpsXs5mwxW%2BAtpP85kX4TwOC2b%2Bh8Ki572xTfRp1IbHNwie8jvpNQdCDefxVHskTH0Yw%3D</OfferListingId><ExchangeId>Y11M3848980M3444090</ExchangeId><Price><Amount>1192</Amount><CurrencyCode>USD</CurrencyCode><FormattedPrice>$11.92</FormattedPrice></Price><AmountSaved><Amount>1008</Amount><CurrencyCode>USD</CurrencyCode><FormattedPrice>$10.08</FormattedPrice></AmountSaved><PercentageSaved>46</PercentageSaved><Availability>Usually ships in 1-2 business days</Availability><AvailabilityAttributes><AvailabilityType>now</AvailabilityType><MinimumHours>24</MinimumHours><MaximumHours>48</MaximumHours></AvailabilityAttributes><Quantity>487</Quantity><IsEligibleForSuperSaverShipping>0</IsEligibleForSuperSaverShipping><IsFulfilledByAmazon>0</IsFulfilledByAmazon></OfferListing></Offer><Offer><Merchant><MerchantId>A20EWB51R9YBPO</MerchantId><Name>---greatbookdeals</Name><GlancePage>http://www.amazon.com/gp/help/seller/home.html?seller=A20EWB51R9YBPO</GlancePage><Location><CountryCode>US</CountryCode><StateCode>FL</StateCode></Location><AverageFeedbackRating>4.7</AverageFeedbackRating><TotalFeedback>36286</TotalFeedback></Merchant><OfferAttributes><Condition>New</Condition><SubCondition>new</SubCondition><ConditionNote>Absolutely Brand New &amp; In Stock. 100% 30-Day Money Back. Direct from our warehouse. Ships by USPS. 1+ million customers served-In business since 1986. Happy Customers is Our #1 Goal. Toll Free Support</ConditionNote></OfferAttributes><OfferListing><OfferListingId>WZnF3PzX%2FSwoiShZ5irplTA5oXZkvhAOMMa1R3LxmrowpHMz8ftoybxG2QSUmee8AZjKYXyA%2B0%2BAjyzozHZWvzxkcDqCkhtxKTYQoTmuw34AiEvrPVdJikBuDRggIaq2gZ7LJrYsvjA%3D</OfferListingId><ExchangeId>Y11M1567708M8523810</ExchangeId><Price><Amount>1192</Amount><CurrencyCode>USD</CurrencyCode><FormattedPrice>$11.92</FormattedPrice></Price><AmountSaved><Amount>1008</Amount><CurrencyCode>USD</CurrencyCode><FormattedPrice>$10.08</FormattedPrice></AmountSaved><PercentageSaved>46</PercentageSaved><Availability>Usually ships in 1-2 business days</Availability><AvailabilityAttributes><AvailabilityType>now</AvailabilityType><MinimumHours>24</MinimumHours><MaximumHours>48</MaximumHours></AvailabilityAttributes><Quantity>495</Quantity><IsEligibleForSuperSaverShipping>0</IsEligibleForSuperSaverShipping><IsFulfilledByAmazon>0</IsFulfilledByAmazon></OfferListing></Offer><Offer><Merchant><MerchantId>A2E9OWRCF7T08Y</MerchantId><Name>pbshopus</Name><GlancePage>http://www.amazon.com/gp/help/seller/home.html?seller=A2E9OWRCF7T08Y</GlancePage><Location><CountryCode>US</CountryCode><StateCode>NJ</StateCode></Location><AverageFeedbackRating>4.7</AverageFeedbackRating><TotalFeedback>24719</TotalFeedback></Merchant><OfferAttributes><Condition>New</Condition><SubCondition>new</SubCondition><ConditionNote>New American book. Shipped within the US in 4-7 days (expedited) or about 10-14 days (standard). Standard can occasionally be slower so we advise using expedited if quicker delivery is important!</ConditionNote></OfferAttributes><OfferListing><OfferListingId>1B3IPTx94ixKSQ7V75dcy14GIhkytU81M453p5iX43V63XTMi5WgFkGl3OfMdapG3u7XttkCLswIkNrg9Lmrm4Aq%2FcfEek9LSQFrlKYu2%2BNfyEVgSNjiVjJsPS94zNvLR1AUrV0x22dlkTnfQFd0Fw%3D%3D</OfferListingId><ExchangeId>Y11M3981673M7711499</ExchangeId><Price><Amount>1252</Amount><CurrencyCode>USD</CurrencyCode><FormattedPrice>$12.52</FormattedPrice></Price><AmountSaved><Amount>948</Amount><CurrencyCode>USD</CurrencyCode><FormattedPrice>$9.48</FormattedPrice></AmountSaved><PercentageSaved>43</PercentageSaved><Availability>Usually ships in 1-2 business days</Availability><AvailabilityAttributes><AvailabilityType>now</AvailabilityType><MinimumHours>24</MinimumHours><MaximumHours>48</MaximumHours></AvailabilityAttributes><Quantity>12</Quantity><IsEligibleForSuperSaverShipping>0</IsEligibleForSuperSaverShipping><IsFulfilledByAmazon>0</IsFulfilledByAmazon></OfferListing></Offer><Offer><Merchant><MerchantId>AGLPMRINU0Q3T</MerchantId><Name>pbshop</Name><GlancePage>http://www.amazon.com/gp/help/seller/home.html?seller=AGLPMRINU0Q3T</GlancePage><Location><CountryCode>GB</CountryCode></Location><AverageFeedbackRating>4.7</AverageFeedbackRating><TotalFeedback>30385</TotalFeedback></Merchant><OfferAttributes><Condition>New</Condition><SubCondition>new</SubCondition><ConditionNote>Brand new book! Delivered direct from our US warehouse by Expedited (4-7 days) or Standard (usually 10-14 days but can be longer). Expedited shipping recommended for speedier delivery. Over 1 million satisfied customers</ConditionNote></OfferAttributes><OfferListing><OfferListingId>DxzF1%2FuD8OjmACsZU%2BkXKbKFdrVgWNcgAZX12KZPokKnGYK4QHzMM7Kom1GQprDLxHjggw604MNOnTTcTKkDiL5BAV7o0KyqNm5DLL5ScVRL%2FWvb00YWA8Dea8YH9N092ZJPxctFnJM%3D</OfferListingId><ExchangeId>Y12M1181029M9303018</ExchangeId><Price><Amount>1252</Amount><CurrencyCode>USD</CurrencyCode><FormattedPrice>$12.52</FormattedPrice></Price><AmountSaved><Amount>948</Amount><CurrencyCode>USD</CurrencyCode><FormattedPrice>$9.48</FormattedPrice></AmountSaved><PercentageSaved>43</PercentageSaved><Availability>Usually ships in 1-2 business days</Availability><AvailabilityAttributes><AvailabilityType>now</AvailabilityType><MinimumHours>24</MinimumHours><MaximumHours>48</MaximumHours></AvailabilityAttributes><Quantity>12</Quantity><IsEligibleForSuperSaverShipping>0</IsEligibleForSuperSaverShipping><IsFulfilledByAmazon>0</IsFulfilledByAmazon></OfferListing></Offer><Offer><Merchant><MerchantId>A1KIF2Y9A1PQYE</MerchantId><Name>allnewbooks</Name><GlancePage>http://www.amazon.com/gp/help/seller/home.html?seller=A1KIF2Y9A1PQYE</GlancePage><Location><CountryCode>US</CountryCode><StateCode>NJ</StateCode></Location><AverageFeedbackRating>4.5</AverageFeedbackRating><TotalFeedback>17591</TotalFeedback></Merchant><OfferAttributes><Condition>New</Condition><SubCondition>new</SubCondition><ConditionNote>BRAND NEW</ConditionNote></OfferAttributes><OfferListing><OfferListingId>0tsTYSKSn3lvZ7dmhiMjrZPyUiOSQOckMSffGKdQYLnDPFyK8mNUIwCD1I6iCvbDDwwd9EpHLZ8CfWearWLXNVxqJrZShQVpo2SAW8SGrlwuPn89yPEjcte%2F8w9rnL0eWPLJgtMocig%3D</OfferListingId><ExchangeId>Y11M1470360M3110989</ExchangeId><Price><Amount>1280</Amount><CurrencyCode>USD</CurrencyCode><FormattedPrice>$12.80</FormattedPrice></Price><AmountSaved><Amount>920</Amount><CurrencyCode>USD</CurrencyCode><FormattedPrice>$9.20</FormattedPrice></AmountSaved><PercentageSaved>42</PercentageSaved><Availability>Usually ships in 1-2 business days</Availability><AvailabilityAttributes><AvailabilityType>now</AvailabilityType><MinimumHours>24</MinimumHours><MaximumHours>48</MaximumHours></AvailabilityAttributes><Quantity>100</Quantity><IsEligibleForSuperSaverShipping>0</IsEligibleForSuperSaverShipping><IsFulfilledByAmazon>0</IsFulfilledByAmazon></OfferListing></Offer><Offer><Merchant><MerchantId>A3HY4G4FBZK8H4</MerchantId><Name>BuriedintheSand</Name><GlancePage>http://www.amazon.com/gp/help/seller/home.html?seller=A3HY4G4FBZK8H4</GlancePage><Location><CountryCode>US</CountryCode><StateCode>CO</StateCode></Location><AverageFeedbackRating>0.0</AverageFeedbackRating><TotalFeedback>0</TotalFeedback></Merchant><OfferAttributes><Condition>New</Condition><SubCondition>new</SubCondition></OfferAttributes><OfferListing><OfferListingId>Jk%2F8TxVCgSSa1kQfV0JysMlh6mUSiwGbF9kR8ZCdUSUPGTAKXvq4dRQZCnqvku%2FK2NyEl8iBhbSgITnOSeQYaTCRBbS4htEBF8IOIx3CrvWUv6NZp2R58hUmO8MXdgA87gla5BLwWNvBrH%2FoJY%2BORA%3D%3D</OfferListingId><ExchangeId>Y19M6577051M0679616</ExchangeId><Price><Amount>1300</Amount><CurrencyCode>USD</CurrencyCode><FormattedPrice>$13.00</FormattedPrice></Price><AmountSaved><Amount>900</Amount><CurrencyCode>USD</CurrencyCode><FormattedPrice>$9.00</FormattedPrice></AmountSaved><PercentageSaved>41</PercentageSaved><Availability>Usually ships in 1-2 business days</Availability><AvailabilityAttributes><AvailabilityType>now</AvailabilityType><MinimumHours>24</MinimumHours><MaximumHours>48</MaximumHours></AvailabilityAttributes><Quantity>1</Quantity><IsEligibleForSuperSaverShipping>0</IsEligibleForSuperSaverShipping><IsFulfilledByAmazon>0</IsFulfilledByAmazon></OfferListing></Offer><Offer><Merchant><MerchantId>A1KIF2Y9A1PQYE</MerchantId><Name>allnewbooks</Name><GlancePage>http://www.amazon.com/gp/help/seller/home.html?seller=A1KIF2Y9A1PQYE</GlancePage><Location><CountryCode>US</CountryCode><StateCode>NJ</StateCode></Location><AverageFeedbackRating>4.5</AverageFeedbackRating><TotalFeedback>17591</TotalFeedback></Merchant><OfferAttributes><Condition>Used</Condition><SubCondition>mint</SubCondition><ConditionNote>BRAND NEW</ConditionNote></OfferAttributes><OfferListing><OfferListingId>VKeqSZZ5JE6t2aY3e6HWvRjxwC%2BpiGa79PvdCm9cs%2Bj3T54LPmc7%2FokvgqxmaW2PRQZ1HPGOmK%2BQv4LmBO17%2FyTDMjZ6WdQdfvvqyvZ9FtvAiFwWiClCO5GEdRXgScQFOD2PVJe6O%2Fc%3D</OfferListingId><ExchangeId>Y11M0209708M5718954</ExchangeId><Price><Amount>1329</Amount><CurrencyCode>USD</CurrencyCode><FormattedPrice>$13.29</FormattedPrice></Price><AmountSaved><Amount>871</Amount><CurrencyCode>USD</CurrencyCode><FormattedPrice>$8.71</FormattedPrice></AmountSaved><PercentageSaved>40</PercentageSaved><Availability>Usually ships in 1-2 business days</Availability><AvailabilityAttributes><AvailabilityType>now</AvailabilityType><MinimumHours>24</MinimumHours><MaximumHours>48</MaximumHours></AvailabilityAttributes><Quantity>100</Quantity><IsEligibleForSuperSaverShipping>0</IsEligibleForSuperSaverShipping><IsFulfilledByAmazon>0</IsFulfilledByAmazon></OfferListing></Offer><Offer><Merchant><MerchantId>A15AOQYSLLO2CF</MerchantId><Name>thermite-media</Name><GlancePage>http://www.amazon.com/gp/help/seller/home.html?seller=A15AOQYSLLO2CF</GlancePage><Location><CountryCode>US</CountryCode><StateCode>NC</StateCode></Location><AverageFeedbackRating>4.8</AverageFeedbackRating><TotalFeedback>55547</TotalFeedback></Merchant><OfferAttributes><Condition>New</Condition><SubCondition>new</SubCondition><ConditionNote>BRAND NEW. 30 Day Satisfaction Guarantee. Quick International Airmail!</ConditionNote></OfferAttributes><OfferListing><OfferListingId>OeaP2ZLl4N681gkiFekj01fWTM4aV8WSz7AkuTQJUVBHnpU1r9jKa9QWkx60Nwv9jeg%2B22S9XpnangDeH5n%2FKefa4L1CFjfT5NtYg1%2FfR7JO%2BeBJ9oa3O0gstTvKvGPxjeW8ThMHMKWKdPzSxJiyuA%3D%3D</OfferListingId><ExchangeId>Y11M4816761M6624986</ExchangeId><Price><Amount>1385</Amount><CurrencyCode>USD</CurrencyCode><FormattedPrice>$13.85</FormattedPrice></Price><AmountSaved><Amount>815</Amount><CurrencyCode>USD</CurrencyCode><FormattedPrice>$8.15</FormattedPrice></AmountSaved><PercentageSaved>37</PercentageSaved><Availability>Usually ships in 1-2 business days</Availability><AvailabilityAttributes><AvailabilityType>now</AvailabilityType><MinimumHours>24</MinimumHours><MaximumHours>48</MaximumHours></AvailabilityAttributes><Quantity>13</Quantity><IsEligibleForSuperSaverShipping>0</IsEligibleForSuperSaverShipping><IsFulfilledByAmazon>0</IsFulfilledByAmazon></OfferListing></Offer><Offer><Merchant><MerchantId>AHNEEZ9CVAP3Q</MerchantId><Name>---superbookdeals</Name><GlancePage>http://www.amazon.com/gp/help/seller/home.html?seller=AHNEEZ9CVAP3Q</GlancePage><Location><CountryCode>US</CountryCode><StateCode>IN</StateCode></Location><AverageFeedbackRating>4.6</AverageFeedbackRating><TotalFeedback>47021</TotalFeedback></Merchant><OfferAttributes><Condition>New</Condition><SubCondition>new</SubCondition><ConditionNote>Brand New, Perfect Condition, Please allow 4-14 business days for delivery. 100% Money Back Guarantee, Over 1,000,000 customers served.</ConditionNote></OfferAttributes><OfferListing><OfferListingId>HpxCD5WjRIs%2FrgGwjagwzkM6gQS5JSldk1Lquy9y4daYqUqT83X1yamjDhAJ8L1NC%2BHD9%2BoQSLeHNlZszWSU5IbVdfcL5qRF1aAIfthKJX%2F7MJKpXbasGTZohk54G7AWRTVUbIAgORw6uTMfINurAg%3D%3D</OfferListingId><ExchangeId>Y11M0530231M5949393</ExchangeId><Price><Amount>1386</Amount><CurrencyCode>USD</CurrencyCode><FormattedPrice>$13.86</FormattedPrice></Price><AmountSaved><Amount>814</Amount><CurrencyCode>USD</CurrencyCode><FormattedPrice>$8.14</FormattedPrice></AmountSaved><PercentageSaved>37</PercentageSaved><Availability>Usually ships in 1-2 business days</Availability><AvailabilityAttributes><AvailabilityType>now</AvailabilityType><MinimumHours>24</MinimumHours><MaximumHours>48</MaximumHours></AvailabilityAttributes><Quantity>999</Quantity><IsEligibleForSuperSaverShipping>0</IsEligibleForSuperSaverShipping><IsFulfilledByAmazon>0</IsFulfilledByAmazon></OfferListing></Offer></Offers></Item></Items></ItemLookupResponse>"
27
- http_version: "1.1"
@@ -1,27 +0,0 @@
1
- ---
2
- - !ruby/struct:VCR::HTTPInteraction
3
- request: !ruby/struct:VCR::Request
4
- method: :get
5
- uri: http://ecs.amazonaws.com:80/onca/xml?AWSAccessKeyId=AKIAI66X5P3HPKX56PNQ&Condition=All&IdType=ASIN&ItemId=0816614024&MerchantId=All&Operation=ItemLookup&ResponseGroup=ItemAttributes,OfferFull&Service=AWSECommerceService&Signature=h/9IMSyRmahIv+xO9OMhHJ+0kPtfbZ4HSzj9JiYLKWw=&Timestamp=2010-10-14T15:44:42Z&Version=2010-09-01
6
- body:
7
- headers: {}
8
-
9
- response: !ruby/struct:VCR::Response
10
- status: !ruby/struct:VCR::ResponseStatus
11
- code: 200
12
- message: OK
13
- headers:
14
- date:
15
- - Thu, 14 Oct 2010 15:44:43 GMT
16
- server:
17
- - Server
18
- content-type:
19
- - text/xml;charset=UTF-8
20
- vary:
21
- - Accept-Encoding,User-Agent
22
- nncoection:
23
- - close
24
- transfer-encoding:
25
- - chunked
26
- body: "<?xml version=\"1.0\" ?><ItemLookupResponse xmlns=\"http://webservices.amazon.com/AWSECommerceService/2010-09-01\"><OperationRequest><RequestId>f41d30fb-0510-4a26-a107-840c5835d651</RequestId><Arguments><Argument Name=\"Condition\" Value=\"All\"></Argument><Argument Name=\"Operation\" Value=\"ItemLookup\"></Argument><Argument Name=\"Service\" Value=\"AWSECommerceService\"></Argument><Argument Name=\"Signature\" Value=\"h/9IMSyRmahIv+xO9OMhHJ+0kPtfbZ4HSzj9JiYLKWw=\"></Argument><Argument Name=\"MerchantId\" Value=\"All\"></Argument><Argument Name=\"Version\" Value=\"2010-09-01\"></Argument><Argument Name=\"ItemId\" Value=\"0816614024\"></Argument><Argument Name=\"IdType\" Value=\"ASIN\"></Argument><Argument Name=\"AWSAccessKeyId\" Value=\"AKIAI66X5P3HPKX56PNQ\"></Argument><Argument Name=\"Timestamp\" Value=\"2010-10-14T15:44:42Z\"></Argument><Argument Name=\"ResponseGroup\" Value=\"ItemAttributes,OfferFull\"></Argument></Arguments><RequestProcessingTime>0.0839920000000000</RequestProcessingTime></OperationRequest><Items><Request><IsValid>True</IsValid><ItemLookupRequest><Condition>All</Condition><DeliveryMethod>Ship</DeliveryMethod><IdType>ASIN</IdType><MerchantId>All</MerchantId><OfferPage>1</OfferPage><ItemId>0816614024</ItemId><ResponseGroup>ItemAttributes</ResponseGroup><ResponseGroup>OfferFull</ResponseGroup><ReviewPage>1</ReviewPage><ReviewSort>-SubmissionDate</ReviewSort><VariationPage>All</VariationPage></ItemLookupRequest></Request><Item><ASIN>0816614024</ASIN><DetailPageURL>http://www.amazon.com/Thousand-Plateaus-Capitalism-Schizophrenia/dp/0816614024%3FSubscriptionId%3DAKIAI66X5P3HPKX56PNQ%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D165953%26creativeASIN%3D0816614024</DetailPageURL><ItemLinks><ItemLink><Description>Technical Details</Description><URL>http://www.amazon.com/Thousand-Plateaus-Capitalism-Schizophrenia/dp/tech-data/0816614024%3FSubscriptionId%3DAKIAI66X5P3HPKX56PNQ%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3D0816614024</URL></ItemLink><ItemLink><Description>Add To Baby Registry</Description><URL>http://www.amazon.com/gp/registry/baby/add-item.html%3Fasin.0%3D0816614024%26SubscriptionId%3DAKIAI66X5P3HPKX56PNQ%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3D0816614024</URL></ItemLink><ItemLink><Description>Add To Wedding Registry</Description><URL>http://www.amazon.com/gp/registry/wedding/add-item.html%3Fasin.0%3D0816614024%26SubscriptionId%3DAKIAI66X5P3HPKX56PNQ%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3D0816614024</URL></ItemLink><ItemLink><Description>Add To Wishlist</Description><URL>http://www.amazon.com/gp/registry/wishlist/add-item.html%3Fasin.0%3D0816614024%26SubscriptionId%3DAKIAI66X5P3HPKX56PNQ%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3D0816614024</URL></ItemLink><ItemLink><Description>Tell A Friend</Description><URL>http://www.amazon.com/gp/pdp/taf/0816614024%3FSubscriptionId%3DAKIAI66X5P3HPKX56PNQ%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3D0816614024</URL></ItemLink><ItemLink><Description>All Customer Reviews</Description><URL>http://www.amazon.com/review/product/0816614024%3FSubscriptionId%3DAKIAI66X5P3HPKX56PNQ%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3D0816614024</URL></ItemLink><ItemLink><Description>All Offers</Description><URL>http://www.amazon.com/gp/offer-listing/0816614024%3FSubscriptionId%3DAKIAI66X5P3HPKX56PNQ%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3D0816614024</URL></ItemLink></ItemLinks><ItemAttributes><Author>Gilles Deleuze</Author><Author>Felix Guattari</Author><Author>Brian Massumi</Author><Binding>Paperback</Binding><DeweyDecimalNumber>194</DeweyDecimalNumber><EAN>9780816614028</EAN><ISBN>0816614024</ISBN><IsEligibleForTradeIn>1</IsEligibleForTradeIn><Label>University of Minnesota Press</Label><Languages><Language><Name>English</Name><Type>Unknown</Type></Language><Language><Name>English</Name><Type>Original Language</Type></Language><Language><Name>English</Name><Type>Published</Type></Language></Languages><ListPrice><Amount>2500</Amount><CurrencyCode>USD</CurrencyCode><FormattedPrice>$25.00</FormattedPrice></ListPrice><Manufacturer>University of Minnesota Press</Manufacturer><NumberOfItems>1</NumberOfItems><NumberOfPages>610</NumberOfPages><PackageDimensions><Height Units=\"hundredths-inches\">135</Height><Length Units=\"hundredths-inches\">899</Length><Weight Units=\"hundredths-pounds\">183</Weight><Width Units=\"hundredths-inches\">608</Width></PackageDimensions><ProductGroup>Book</ProductGroup><ProductTypeName>ABIS_BOOK</ProductTypeName><PublicationDate>1987-12</PublicationDate><Publisher>University of Minnesota Press</Publisher><Studio>University of Minnesota Press</Studio><Title>A Thousand Plateaus: Capitalism and Schizophrenia</Title><TradeInValue><Amount>722</Amount><CurrencyCode>USD</CurrencyCode><FormattedPrice>$7.22</FormattedPrice></TradeInValue></ItemAttributes><OfferSummary><LowestNewPrice><Amount>1800</Amount><CurrencyCode>USD</CurrencyCode><FormattedPrice>$18.00</FormattedPrice></LowestNewPrice><LowestUsedPrice><Amount>1625</Amount><CurrencyCode>USD</CurrencyCode><FormattedPrice>$16.25</FormattedPrice></LowestUsedPrice><LowestCollectiblePrice><Amount>5000</Amount><CurrencyCode>USD</CurrencyCode><FormattedPrice>$50.00</FormattedPrice></LowestCollectiblePrice><TotalNew>27</TotalNew><TotalUsed>21</TotalUsed><TotalCollectible>1</TotalCollectible><TotalRefurbished>0</TotalRefurbished></OfferSummary><Offers><TotalOffers>48</TotalOffers><TotalOfferPages>5</TotalOfferPages><Offer><Merchant><MerchantId>A2N40VVFF4HONE</MerchantId><Name>bookcircus_</Name><GlancePage>http://www.amazon.com/gp/help/seller/home.html?seller=A2N40VVFF4HONE</GlancePage><Location><CountryCode>US</CountryCode><StateCode>AR</StateCode></Location><AverageFeedbackRating>4.7</AverageFeedbackRating><TotalFeedback>6734</TotalFeedback></Merchant><OfferAttributes><Condition>Used</Condition><SubCondition>good</SubCondition><ConditionNote>All orders receive tracking information upon shipment (except expedited PO boxes). May not contain certain online supplements such as infotrac and web access codes. Used items likely contain highlighting and/or writing. Expedited shipping available.</ConditionNote></OfferAttributes><OfferListing><OfferListingId>xbibzFvnPX8WEOAfgRhacVycW8HOcshyhJIQtIT6hsfJuQ4r6zn4zDJ63Tb4PSBlys3dnUMPuYMnlE4GiBpp38SFdiwvrtqeSG5Sekyb9hgxjlG6NybB7jfrn39KbUj6KrIv0vGUfuE%3D</OfferListingId><ExchangeId>Y11M4392395M5450056</ExchangeId><Price><Amount>1625</Amount><CurrencyCode>USD</CurrencyCode><FormattedPrice>$16.25</FormattedPrice></Price><AmountSaved><Amount>875</Amount><CurrencyCode>USD</CurrencyCode><FormattedPrice>$8.75</FormattedPrice></AmountSaved><PercentageSaved>35</PercentageSaved><Availability>Usually ships in 1-2 business days</Availability><AvailabilityAttributes><AvailabilityType>now</AvailabilityType><MinimumHours>24</MinimumHours><MaximumHours>48</MaximumHours></AvailabilityAttributes><Quantity>1</Quantity><IsEligibleForSuperSaverShipping>0</IsEligibleForSuperSaverShipping><IsFulfilledByAmazon>0</IsFulfilledByAmazon></OfferListing></Offer><Offer><Merchant><MerchantId>A33YWJZK210TPI</MerchantId><Name>jimsesales</Name><GlancePage>http://www.amazon.com/gp/help/seller/home.html?seller=A33YWJZK210TPI</GlancePage><Location><CountryCode>US</CountryCode><StateCode>NM</StateCode></Location><AverageFeedbackRating>4.9</AverageFeedbackRating><TotalFeedback>303</TotalFeedback></Merchant><OfferAttributes><Condition>Used</Condition><SubCondition>good</SubCondition><ConditionNote>Great Book! good to very good condition. cover wear/bend. Fast Shipping! Thank You For Your Business!</ConditionNote></OfferAttributes><OfferListing><OfferListingId>92nnRqFTS0Z9WJtGgR5w%2F6TS0gvA93yE8FdianuKoukr%2BrSSbj1shjvnTDeMnkJxnVM4ScSltc%2FAax9eHJmZd34dR5cFBS9jqy6PdlJBslPy97t3SIjbwqw7IKbOVt0tp17T5Xxwz0I%3D</OfferListingId><ExchangeId>Y14M5617829M1312826</ExchangeId><Price><Amount>1748</Amount><CurrencyCode>USD</CurrencyCode><FormattedPrice>$17.48</FormattedPrice></Price><AmountSaved><Amount>752</Amount><CurrencyCode>USD</CurrencyCode><FormattedPrice>$7.52</FormattedPrice></AmountSaved><PercentageSaved>30</PercentageSaved><Availability>Usually ships in 1-2 business days</Availability><AvailabilityAttributes><AvailabilityType>now</AvailabilityType><MinimumHours>24</MinimumHours><MaximumHours>48</MaximumHours></AvailabilityAttributes><Quantity>1</Quantity><IsEligibleForSuperSaverShipping>0</IsEligibleForSuperSaverShipping><IsFulfilledByAmazon>0</IsFulfilledByAmazon></OfferListing></Offer><Offer><Merchant><MerchantId>ATVPDKIKX0DER</MerchantId><Name>Amazon.com</Name><GlancePage>http://www.amazon.com/gp/help/seller/home.html?seller=ATVPDKIKX0DER</GlancePage><AverageFeedbackRating>0.0</AverageFeedbackRating><TotalFeedback>0</TotalFeedback></Merchant><OfferAttributes><Condition>New</Condition><SubCondition>new</SubCondition></OfferAttributes><OfferListing><OfferListingId>5gn16RHKkOiZh2WDAINIOZMNVmY7pHWAiR43%2B85dGw9dZLDFsiC3XyypG7fWnlCAcpZQuk4Mu0ZnC3Cq0P0Hfw%3D%3D</OfferListingId><Price><Amount>1800</Amount><CurrencyCode>USD</CurrencyCode><FormattedPrice>$18.00</FormattedPrice></Price><AmountSaved><Amount>700</Amount><CurrencyCode>USD</CurrencyCode><FormattedPrice>$7.00</FormattedPrice></AmountSaved><PercentageSaved>28</PercentageSaved><Availability>Usually ships in 24 hours</Availability><AvailabilityAttributes><AvailabilityType>now</AvailabilityType><MinimumHours>0</MinimumHours><MaximumHours>0</MaximumHours></AvailabilityAttributes><Quantity>-1</Quantity><IsEligibleForSuperSaverShipping>1</IsEligibleForSuperSaverShipping><IsFulfilledByAmazon>1</IsFulfilledByAmazon></OfferListing></Offer><Offer><Merchant><MerchantId>A1QJ4UH6FW3UH1</MerchantId><Name>motor_city_books</Name><GlancePage>http://www.amazon.com/gp/help/seller/home.html?seller=A1QJ4UH6FW3UH1</GlancePage><Location><CountryCode>US</CountryCode><StateCode>MI</StateCode></Location><AverageFeedbackRating>4.8</AverageFeedbackRating><TotalFeedback>66314</TotalFeedback></Merchant><OfferAttributes><Condition>Used</Condition><SubCondition>good</SubCondition><ConditionNote>Minimal damage to cover and binding. Pages show light use. With pride from Motor City. All books guaranteed. Best Service, Best Prices.</ConditionNote></OfferAttributes><OfferListing><OfferListingId>uQd81LghDo0jVHKUKP8UV%2FwpYQzjoRG2XqYuCu%2F8Pv3eGFEdFPxAhk1fPOY6KDalT7KdVU%2BAP6VoGz6szv3JpBJQp8gUp3%2FhhxH1LVw1TSZhIdLZN7ehbSABmw6xU1jI</OfferListingId><ExchangeId>Y14M6034743M1466979</ExchangeId><Price><Amount>1939</Amount><CurrencyCode>USD</CurrencyCode><FormattedPrice>$19.39</FormattedPrice></Price><AmountSaved><Amount>561</Amount><CurrencyCode>USD</CurrencyCode><FormattedPrice>$5.61</FormattedPrice></AmountSaved><PercentageSaved>22</PercentageSaved><Availability>Usually ships in 1-2 business days</Availability><AvailabilityAttributes><AvailabilityType>now</AvailabilityType><MinimumHours>24</MinimumHours><MaximumHours>48</MaximumHours></AvailabilityAttributes><Quantity>1</Quantity><IsEligibleForSuperSaverShipping>0</IsEligibleForSuperSaverShipping><IsFulfilledByAmazon>0</IsFulfilledByAmazon></OfferListing></Offer><Offer><Merchant><MerchantId>A3IS4K0BDHACV8</MerchantId><Name>Apollo-Books90</Name><GlancePage>http://www.amazon.com/gp/help/seller/home.html?seller=A3IS4K0BDHACV8</GlancePage><Location><CountryCode>US</CountryCode><StateCode>NY</StateCode></Location><AverageFeedbackRating>4.9</AverageFeedbackRating><TotalFeedback>140</TotalFeedback></Merchant><OfferAttributes><Condition>Used</Condition><SubCondition>verygood</SubCondition><ConditionNote>Trade PB. 8vo. University of Minnesota Press. 1987. 610 pgs. Wrappers in excellent shape, with no wear present. Binding tight and solid. Book is free of ownership marks. Text is clean and free of marks. Photos sent upon request. 772</ConditionNote></OfferAttributes><OfferListing><OfferListingId>Idl5DU1VvdW%2Bdo0VVZTk1BuCWezOIO7H%2FJaCt%2BJkzgWrb4RVU278a8VxbCaJNGQtOKq4f%2FfLINjAWlMhqo8UiNIf8lqD%2BJp5%2F7hd1CR6D%2FQgOciZd8NsMI0j10MXLwMcuKLNVLaq9DM%3D</OfferListingId><ExchangeId>Y12M1273632M5652898</ExchangeId><Price><Amount>1995</Amount><CurrencyCode>USD</CurrencyCode><FormattedPrice>$19.95</FormattedPrice></Price><AmountSaved><Amount>505</Amount><CurrencyCode>USD</CurrencyCode><FormattedPrice>$5.05</FormattedPrice></AmountSaved><PercentageSaved>20</PercentageSaved><Availability>Usually ships in 1-2 business days</Availability><AvailabilityAttributes><AvailabilityType>now</AvailabilityType><MinimumHours>24</MinimumHours><MaximumHours>48</MaximumHours></AvailabilityAttributes><Quantity>1</Quantity><IsEligibleForSuperSaverShipping>0</IsEligibleForSuperSaverShipping><IsFulfilledByAmazon>0</IsFulfilledByAmazon></OfferListing></Offer><Offer><Merchant><MerchantId>A2SUF7Y73WB371</MerchantId><Name>Quick_N_Easy Marketplace</Name><GlancePage>http://www.amazon.com/gp/help/seller/home.html?seller=A2SUF7Y73WB371</GlancePage><Location><CountryCode>US</CountryCode><StateCode>GA</StateCode></Location><AverageFeedbackRating>4.9</AverageFeedbackRating><TotalFeedback>7284</TotalFeedback></Merchant><OfferAttributes><Condition>New</Condition><SubCondition>new</SubCondition><ConditionNote>Brand New Item. Multiple copies available. Expedited and Two Days Delivery options!</ConditionNote></OfferAttributes><OfferListing><OfferListingId>pwUbBxJ6dMw6QOZOgksfOjeWyan9KVmFnMeeHDWIECoDxPtBEbuUXM7eVWODYMmJIHIrif0%2B2xY3%2BjLqlwmD2h0UvY%2Bl2bjd1nwimdu8aDDzfrqG77eh1P08towM5iOQhLUDqtdlyr%2BwvERRn7CypQ%3D%3D</OfferListingId><ExchangeId>Y13M2255528M9001393</ExchangeId><Price><Amount>2170</Amount><CurrencyCode>USD</CurrencyCode><FormattedPrice>$21.70</FormattedPrice></Price><AmountSaved><Amount>330</Amount><CurrencyCode>USD</CurrencyCode><FormattedPrice>$3.30</FormattedPrice></AmountSaved><PercentageSaved>13</PercentageSaved><Availability>Usually ships in 1-2 business days</Availability><AvailabilityAttributes><AvailabilityType>now</AvailabilityType><MinimumHours>24</MinimumHours><MaximumHours>48</MaximumHours></AvailabilityAttributes><Quantity>2</Quantity><IsEligibleForSuperSaverShipping>0</IsEligibleForSuperSaverShipping><IsFulfilledByAmazon>0</IsFulfilledByAmazon></OfferListing></Offer><Offer><Merchant><MerchantId>A2SUF7Y73WB371</MerchantId><Name>Quick_N_Easy Marketplace</Name><GlancePage>http://www.amazon.com/gp/help/seller/home.html?seller=A2SUF7Y73WB371</GlancePage><Location><CountryCode>US</CountryCode><StateCode>GA</StateCode></Location><AverageFeedbackRating>4.9</AverageFeedbackRating><TotalFeedback>7284</TotalFeedback></Merchant><OfferAttributes><Condition>Used</Condition><SubCondition>mint</SubCondition><ConditionNote>Brand New Item. Multiple copies available. Expedited and Two Days Delivery options!</ConditionNote></OfferAttributes><OfferListing><OfferListingId>Xrheem9DyCS4oXttTce8dAlxqvbWcpYB4mH6ga08FkJwf8FNnCaB56PAsFxsQ%2FMwPfNSa1sgRJoQAh%2FllyG9S9jqwpTlxTKrXxztMu2UH6RV4b0%2BWLUrJVQA8%2BSC2%2FIqlrK5IfBiPBiw9vNjc8bIHw%3D%3D</OfferListingId><ExchangeId>Y13M2258623M4336772</ExchangeId><Price><Amount>2170</Amount><CurrencyCode>USD</CurrencyCode><FormattedPrice>$21.70</FormattedPrice></Price><AmountSaved><Amount>330</Amount><CurrencyCode>USD</CurrencyCode><FormattedPrice>$3.30</FormattedPrice></AmountSaved><PercentageSaved>13</PercentageSaved><Availability>Usually ships in 1-2 business days</Availability><AvailabilityAttributes><AvailabilityType>now</AvailabilityType><MinimumHours>24</MinimumHours><MaximumHours>48</MaximumHours></AvailabilityAttributes><Quantity>2</Quantity><IsEligibleForSuperSaverShipping>0</IsEligibleForSuperSaverShipping><IsFulfilledByAmazon>0</IsFulfilledByAmazon></OfferListing></Offer><Offer><Merchant><MerchantId>A2MU9ZILHNPP6L</MerchantId><Name>quality7</Name><GlancePage>http://www.amazon.com/gp/help/seller/home.html?seller=A2MU9ZILHNPP6L</GlancePage><Location><CountryCode>US</CountryCode><StateCode>GA</StateCode></Location><AverageFeedbackRating>4.8</AverageFeedbackRating><TotalFeedback>46350</TotalFeedback></Merchant><OfferAttributes><Condition>Used</Condition><SubCondition>good</SubCondition><ConditionNote>Excellent customer service. Order inquiries handled promptly.</ConditionNote></OfferAttributes><OfferListing><OfferListingId>tHQETFTjpJP1KEpaZ4bhdCHAAhVPyRjV4MwLDmZ%2B%2BBXisdgU4PjibFmRTEUAQH2IQuf4yGkD0nsyiybDK%2BugqBe4TVdsjk2B5QNZrfEe3BEdm18NHTSGLKfCHay0KVf4</OfferListingId><ExchangeId>Y17M0287288M5089461</ExchangeId><Price><Amount>2365</Amount><CurrencyCode>USD</CurrencyCode><FormattedPrice>$23.65</FormattedPrice></Price><AmountSaved><Amount>135</Amount><CurrencyCode>USD</CurrencyCode><FormattedPrice>$1.35</FormattedPrice></AmountSaved><PercentageSaved>5</PercentageSaved><Availability>Usually ships in 1-2 business days</Availability><AvailabilityAttributes><AvailabilityType>now</AvailabilityType><MinimumHours>24</MinimumHours><MaximumHours>48</MaximumHours></AvailabilityAttributes><Quantity>1</Quantity><IsEligibleForSuperSaverShipping>0</IsEligibleForSuperSaverShipping><IsFulfilledByAmazon>0</IsFulfilledByAmazon></OfferListing></Offer><Offer><Merchant><MerchantId>A2Z2CSK1PH6GOI</MerchantId><Name>bordeebook</Name><GlancePage>http://www.amazon.com/gp/help/seller/home.html?seller=A2Z2CSK1PH6GOI</GlancePage><Location><CountryCode>US</CountryCode></Location><AverageFeedbackRating>4.7</AverageFeedbackRating><TotalFeedback>21056</TotalFeedback></Merchant><OfferAttributes><Condition>Used</Condition><SubCondition>good</SubCondition><ConditionNote>Used but in nice shape with normal surface &amp; edge wear. Accessories may not be included. Fast shipping!</ConditionNote></OfferAttributes><OfferListing><OfferListingId>%2FBhIZMexM9UOnwYIdD9dyr7keyw3gWddfUYn1gMkQm%2Fdy%2B0%2Fj3BW%2FuzvO82j3UkUK9knhjD%2BJLZCOfpDhnkBxpguqWf3%2FtGfPAL8LNJkIpSmQcasZjKCJJf3ae360OQ5%2BKUcB%2FqxVVQ%3D</OfferListingId><ExchangeId>Y12M0105825M2752161</ExchangeId><Price><Amount>2374</Amount><CurrencyCode>USD</CurrencyCode><FormattedPrice>$23.74</FormattedPrice></Price><AmountSaved><Amount>126</Amount><CurrencyCode>USD</CurrencyCode><FormattedPrice>$1.26</FormattedPrice></AmountSaved><PercentageSaved>5</PercentageSaved><Availability>Usually ships in 1-2 business days</Availability><AvailabilityAttributes><AvailabilityType>now</AvailabilityType><MinimumHours>24</MinimumHours><MaximumHours>48</MaximumHours></AvailabilityAttributes><Quantity>1</Quantity><IsEligibleForSuperSaverShipping>0</IsEligibleForSuperSaverShipping><IsFulfilledByAmazon>0</IsFulfilledByAmazon></OfferListing></Offer><Offer><Merchant><MerchantId>A3YUX3T6VE9ZS</MerchantId><Name>qualitystar</Name><GlancePage>http://www.amazon.com/gp/help/seller/home.html?seller=A3YUX3T6VE9ZS</GlancePage><Location><CountryCode>US</CountryCode><StateCode>NY</StateCode></Location><AverageFeedbackRating>5.0</AverageFeedbackRating><TotalFeedback>3</TotalFeedback></Merchant><OfferAttributes><Condition>Used</Condition><SubCondition>good</SubCondition><ConditionNote>author's name on inside cover; otherwise pristine (slight crease in spine).</ConditionNote></OfferAttributes><OfferListing><OfferListingId>iklAw4yCSd6mdGqtcbx%2FkeUD%2FAr6C0WT5nTucuGewUzcsOnsLOCQPbB73BXv8YTDsUxeLpAk64e4eZe%2FG0o2ZwYtO0LjAqWKsLvZewXfIs89Pii40cLvQGAlIzzrs1P7uBy8eBcvMLY%3D</OfferListingId><ExchangeId>Y15M0358503M0767087</ExchangeId><Price><Amount>2399</Amount><CurrencyCode>USD</CurrencyCode><FormattedPrice>$23.99</FormattedPrice></Price><AmountSaved><Amount>101</Amount><CurrencyCode>USD</CurrencyCode><FormattedPrice>$1.01</FormattedPrice></AmountSaved><PercentageSaved>4</PercentageSaved><Availability>Usually ships in 1-2 business days</Availability><AvailabilityAttributes><AvailabilityType>now</AvailabilityType><MinimumHours>24</MinimumHours><MaximumHours>48</MaximumHours></AvailabilityAttributes><Quantity>1</Quantity><IsEligibleForSuperSaverShipping>0</IsEligibleForSuperSaverShipping><IsFulfilledByAmazon>0</IsFulfilledByAmazon></OfferListing></Offer></Offers></Item></Items></ItemLookupResponse>"
27
- http_version: "1.1"
@@ -1,27 +0,0 @@
1
- ---
2
- - !ruby/struct:VCR::HTTPInteraction
3
- request: !ruby/struct:VCR::Request
4
- method: :get
5
- uri: http://ecs.amazonaws.com:80/onca/xml?AWSAccessKeyId=AKIAI66X5P3HPKX56PNQ&Author=Orwell&Operation=ItemSearch&SearchIndex=Books&Service=AWSECommerceService&Signature=I3WCu438h+9TFRFO//zUfQ69+bIPn5w0Zvk5RNy9LqI=&Timestamp=2010-10-14T15:44:44Z&Version=2010-09-01
6
- body:
7
- headers: {}
8
-
9
- response: !ruby/struct:VCR::Response
10
- status: !ruby/struct:VCR::ResponseStatus
11
- code: 200
12
- message: OK
13
- headers:
14
- date:
15
- - Thu, 14 Oct 2010 15:44:44 GMT
16
- server:
17
- - Server
18
- content-type:
19
- - text/xml;charset=UTF-8
20
- vary:
21
- - Accept-Encoding,User-Agent
22
- nncoection:
23
- - close
24
- transfer-encoding:
25
- - chunked
26
- body: "<?xml version=\"1.0\" ?><ItemSearchResponse xmlns=\"http://webservices.amazon.com/AWSECommerceService/2010-09-01\"><OperationRequest><RequestId>99b89337-0d27-4625-97a2-0a121b43507a</RequestId><Arguments><Argument Name=\"Operation\" Value=\"ItemSearch\"></Argument><Argument Name=\"Service\" Value=\"AWSECommerceService\"></Argument><Argument Name=\"Author\" Value=\"Orwell\"></Argument><Argument Name=\"AWSAccessKeyId\" Value=\"AKIAI66X5P3HPKX56PNQ\"></Argument><Argument Name=\"Timestamp\" Value=\"2010-10-14T15:44:44Z\"></Argument><Argument Name=\"Signature\" Value=\"I3WCu438h+9TFRFO//zUfQ69+bIPn5w0Zvk5RNy9LqI=\"></Argument><Argument Name=\"SearchIndex\" Value=\"Books\"></Argument><Argument Name=\"Version\" Value=\"2010-09-01\"></Argument></Arguments><RequestProcessingTime>0.5255040000000000</RequestProcessingTime></OperationRequest><Items><Request><IsValid>True</IsValid><ItemSearchRequest><Author>Orwell</Author><Condition>New</Condition><DeliveryMethod>Ship</DeliveryMethod><MerchantId>Amazon</MerchantId><ResponseGroup>Small</ResponseGroup><ReviewSort>-SubmissionDate</ReviewSort><SearchIndex>Books</SearchIndex></ItemSearchRequest></Request><TotalResults>1334</TotalResults><TotalPages>134</TotalPages><Item><ASIN>B002A9JO9W</ASIN><DetailPageURL>http://www.amazon.com/Nineteen-Eighty-Four-ebook/dp/B002A9JO9W%3FSubscriptionId%3DAKIAI66X5P3HPKX56PNQ%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D165953%26creativeASIN%3DB002A9JO9W</DetailPageURL><ItemLinks><ItemLink><Description>Technical Details</Description><URL>http://www.amazon.com/Nineteen-Eighty-Four-ebook/dp/tech-data/B002A9JO9W%3FSubscriptionId%3DAKIAI66X5P3HPKX56PNQ%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3DB002A9JO9W</URL></ItemLink><ItemLink><Description>Add To Baby Registry</Description><URL>http://www.amazon.com/gp/registry/baby/add-item.html%3Fasin.0%3DB002A9JO9W%26SubscriptionId%3DAKIAI66X5P3HPKX56PNQ%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3DB002A9JO9W</URL></ItemLink><ItemLink><Description>Add To Wedding Registry</Description><URL>http://www.amazon.com/gp/registry/wedding/add-item.html%3Fasin.0%3DB002A9JO9W%26SubscriptionId%3DAKIAI66X5P3HPKX56PNQ%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3DB002A9JO9W</URL></ItemLink><ItemLink><Description>Add To Wishlist</Description><URL>http://www.amazon.com/gp/registry/wishlist/add-item.html%3Fasin.0%3DB002A9JO9W%26SubscriptionId%3DAKIAI66X5P3HPKX56PNQ%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3DB002A9JO9W</URL></ItemLink><ItemLink><Description>Tell A Friend</Description><URL>http://www.amazon.com/gp/pdp/taf/B002A9JO9W%3FSubscriptionId%3DAKIAI66X5P3HPKX56PNQ%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3DB002A9JO9W</URL></ItemLink><ItemLink><Description>All Customer Reviews</Description><URL>http://www.amazon.com/review/product/B002A9JO9W%3FSubscriptionId%3DAKIAI66X5P3HPKX56PNQ%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3DB002A9JO9W</URL></ItemLink><ItemLink><Description>All Offers</Description><URL>http://www.amazon.com/gp/offer-listing/B002A9JO9W%3FSubscriptionId%3DAKIAI66X5P3HPKX56PNQ%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3DB002A9JO9W</URL></ItemLink></ItemLinks><ItemAttributes><Author>George Orwell</Author><Manufacturer>Houghton Mifflin Harcourt (HMH)</Manufacturer><ProductGroup>eBooks</ProductGroup><Title>Nineteen Eighty-Four (1984)</Title></ItemAttributes></Item><Item><ASIN>0452284244</ASIN><DetailPageURL>http://www.amazon.com/Animal-Farm-Centennial-George-Orwell/dp/0452284244%3FSubscriptionId%3DAKIAI66X5P3HPKX56PNQ%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D165953%26creativeASIN%3D0452284244</DetailPageURL><ItemLinks><ItemLink><Description>Technical Details</Description><URL>http://www.amazon.com/Animal-Farm-Centennial-George-Orwell/dp/tech-data/0452284244%3FSubscriptionId%3DAKIAI66X5P3HPKX56PNQ%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3D0452284244</URL></ItemLink><ItemLink><Description>Add To Baby Registry</Description><URL>http://www.amazon.com/gp/registry/baby/add-item.html%3Fasin.0%3D0452284244%26SubscriptionId%3DAKIAI66X5P3HPKX56PNQ%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3D0452284244</URL></ItemLink><ItemLink><Description>Add To Wedding Registry</Description><URL>http://www.amazon.com/gp/registry/wedding/add-item.html%3Fasin.0%3D0452284244%26SubscriptionId%3DAKIAI66X5P3HPKX56PNQ%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3D0452284244</URL></ItemLink><ItemLink><Description>Add To Wishlist</Description><URL>http://www.amazon.com/gp/registry/wishlist/add-item.html%3Fasin.0%3D0452284244%26SubscriptionId%3DAKIAI66X5P3HPKX56PNQ%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3D0452284244</URL></ItemLink><ItemLink><Description>Tell A Friend</Description><URL>http://www.amazon.com/gp/pdp/taf/0452284244%3FSubscriptionId%3DAKIAI66X5P3HPKX56PNQ%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3D0452284244</URL></ItemLink><ItemLink><Description>All Customer Reviews</Description><URL>http://www.amazon.com/review/product/0452284244%3FSubscriptionId%3DAKIAI66X5P3HPKX56PNQ%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3D0452284244</URL></ItemLink><ItemLink><Description>All Offers</Description><URL>http://www.amazon.com/gp/offer-listing/0452284244%3FSubscriptionId%3DAKIAI66X5P3HPKX56PNQ%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3D0452284244</URL></ItemLink></ItemLinks><ItemAttributes><Author>George Orwell</Author><Creator Role=\"Foreword\">Ann Patchett</Creator><Manufacturer>Plume</Manufacturer><ProductGroup>Book</ProductGroup><Title>Animal Farm: Centennial Edition</Title></ItemAttributes></Item><Item><ASIN>0151010269</ASIN><DetailPageURL>http://www.amazon.com/Animal-Farm-1984-George-Orwell/dp/0151010269%3FSubscriptionId%3DAKIAI66X5P3HPKX56PNQ%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D165953%26creativeASIN%3D0151010269</DetailPageURL><ItemLinks><ItemLink><Description>Technical Details</Description><URL>http://www.amazon.com/Animal-Farm-1984-George-Orwell/dp/tech-data/0151010269%3FSubscriptionId%3DAKIAI66X5P3HPKX56PNQ%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3D0151010269</URL></ItemLink><ItemLink><Description>Add To Baby Registry</Description><URL>http://www.amazon.com/gp/registry/baby/add-item.html%3Fasin.0%3D0151010269%26SubscriptionId%3DAKIAI66X5P3HPKX56PNQ%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3D0151010269</URL></ItemLink><ItemLink><Description>Add To Wedding Registry</Description><URL>http://www.amazon.com/gp/registry/wedding/add-item.html%3Fasin.0%3D0151010269%26SubscriptionId%3DAKIAI66X5P3HPKX56PNQ%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3D0151010269</URL></ItemLink><ItemLink><Description>Add To Wishlist</Description><URL>http://www.amazon.com/gp/registry/wishlist/add-item.html%3Fasin.0%3D0151010269%26SubscriptionId%3DAKIAI66X5P3HPKX56PNQ%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3D0151010269</URL></ItemLink><ItemLink><Description>Tell A Friend</Description><URL>http://www.amazon.com/gp/pdp/taf/0151010269%3FSubscriptionId%3DAKIAI66X5P3HPKX56PNQ%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3D0151010269</URL></ItemLink><ItemLink><Description>All Customer Reviews</Description><URL>http://www.amazon.com/review/product/0151010269%3FSubscriptionId%3DAKIAI66X5P3HPKX56PNQ%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3D0151010269</URL></ItemLink><ItemLink><Description>All Offers</Description><URL>http://www.amazon.com/gp/offer-listing/0151010269%3FSubscriptionId%3DAKIAI66X5P3HPKX56PNQ%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3D0151010269</URL></ItemLink></ItemLinks><ItemAttributes><Author>George Orwell</Author><Creator Role=\"Introduction\">Christopher Hitchens</Creator><Manufacturer>Houghton Mifflin Harcourt</Manufacturer><ProductGroup>Book</ProductGroup><Title>Animal Farm and 1984</Title></ItemAttributes></Item><Item><ASIN>0156421178</ASIN><DetailPageURL>http://www.amazon.com/Homage-Catalonia-George-Orwell/dp/0156421178%3FSubscriptionId%3DAKIAI66X5P3HPKX56PNQ%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D165953%26creativeASIN%3D0156421178</DetailPageURL><ItemLinks><ItemLink><Description>Technical Details</Description><URL>http://www.amazon.com/Homage-Catalonia-George-Orwell/dp/tech-data/0156421178%3FSubscriptionId%3DAKIAI66X5P3HPKX56PNQ%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3D0156421178</URL></ItemLink><ItemLink><Description>Add To Baby Registry</Description><URL>http://www.amazon.com/gp/registry/baby/add-item.html%3Fasin.0%3D0156421178%26SubscriptionId%3DAKIAI66X5P3HPKX56PNQ%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3D0156421178</URL></ItemLink><ItemLink><Description>Add To Wedding Registry</Description><URL>http://www.amazon.com/gp/registry/wedding/add-item.html%3Fasin.0%3D0156421178%26SubscriptionId%3DAKIAI66X5P3HPKX56PNQ%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3D0156421178</URL></ItemLink><ItemLink><Description>Add To Wishlist</Description><URL>http://www.amazon.com/gp/registry/wishlist/add-item.html%3Fasin.0%3D0156421178%26SubscriptionId%3DAKIAI66X5P3HPKX56PNQ%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3D0156421178</URL></ItemLink><ItemLink><Description>Tell A Friend</Description><URL>http://www.amazon.com/gp/pdp/taf/0156421178%3FSubscriptionId%3DAKIAI66X5P3HPKX56PNQ%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3D0156421178</URL></ItemLink><ItemLink><Description>All Customer Reviews</Description><URL>http://www.amazon.com/review/product/0156421178%3FSubscriptionId%3DAKIAI66X5P3HPKX56PNQ%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3D0156421178</URL></ItemLink><ItemLink><Description>All Offers</Description><URL>http://www.amazon.com/gp/offer-listing/0156421178%3FSubscriptionId%3DAKIAI66X5P3HPKX56PNQ%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3D0156421178</URL></ItemLink></ItemLinks><ItemAttributes><Author>George Orwell</Author><Manufacturer>Mariner Books</Manufacturer><ProductGroup>Book</ProductGroup><Title>Homage to Catalonia</Title></ItemAttributes></Item><Item><ASIN>B003K16PAU</ASIN><DetailPageURL>http://www.amazon.com/Down-Out-Paris-London-ebook/dp/B003K16PAU%3FSubscriptionId%3DAKIAI66X5P3HPKX56PNQ%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D165953%26creativeASIN%3DB003K16PAU</DetailPageURL><ItemLinks><ItemLink><Description>Technical Details</Description><URL>http://www.amazon.com/Down-Out-Paris-London-ebook/dp/tech-data/B003K16PAU%3FSubscriptionId%3DAKIAI66X5P3HPKX56PNQ%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3DB003K16PAU</URL></ItemLink><ItemLink><Description>Add To Baby Registry</Description><URL>http://www.amazon.com/gp/registry/baby/add-item.html%3Fasin.0%3DB003K16PAU%26SubscriptionId%3DAKIAI66X5P3HPKX56PNQ%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3DB003K16PAU</URL></ItemLink><ItemLink><Description>Add To Wedding Registry</Description><URL>http://www.amazon.com/gp/registry/wedding/add-item.html%3Fasin.0%3DB003K16PAU%26SubscriptionId%3DAKIAI66X5P3HPKX56PNQ%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3DB003K16PAU</URL></ItemLink><ItemLink><Description>Add To Wishlist</Description><URL>http://www.amazon.com/gp/registry/wishlist/add-item.html%3Fasin.0%3DB003K16PAU%26SubscriptionId%3DAKIAI66X5P3HPKX56PNQ%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3DB003K16PAU</URL></ItemLink><ItemLink><Description>Tell A Friend</Description><URL>http://www.amazon.com/gp/pdp/taf/B003K16PAU%3FSubscriptionId%3DAKIAI66X5P3HPKX56PNQ%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3DB003K16PAU</URL></ItemLink><ItemLink><Description>All Customer Reviews</Description><URL>http://www.amazon.com/review/product/B003K16PAU%3FSubscriptionId%3DAKIAI66X5P3HPKX56PNQ%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3DB003K16PAU</URL></ItemLink><ItemLink><Description>All Offers</Description><URL>http://www.amazon.com/gp/offer-listing/B003K16PAU%3FSubscriptionId%3DAKIAI66X5P3HPKX56PNQ%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3DB003K16PAU</URL></ItemLink></ItemLinks><ItemAttributes><Author>George Orwell</Author><Manufacturer>Mariner Books</Manufacturer><ProductGroup>eBooks</ProductGroup><Title>Down and Out in Paris and London</Title></ItemAttributes></Item><Item><ASIN>0141185376</ASIN><DetailPageURL>http://www.amazon.com/Burmese-Days-Penguin-Modern-Classics/dp/0141185376%3FSubscriptionId%3DAKIAI66X5P3HPKX56PNQ%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D165953%26creativeASIN%3D0141185376</DetailPageURL><ItemLinks><ItemLink><Description>Technical Details</Description><URL>http://www.amazon.com/Burmese-Days-Penguin-Modern-Classics/dp/tech-data/0141185376%3FSubscriptionId%3DAKIAI66X5P3HPKX56PNQ%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3D0141185376</URL></ItemLink><ItemLink><Description>Add To Baby Registry</Description><URL>http://www.amazon.com/gp/registry/baby/add-item.html%3Fasin.0%3D0141185376%26SubscriptionId%3DAKIAI66X5P3HPKX56PNQ%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3D0141185376</URL></ItemLink><ItemLink><Description>Add To Wedding Registry</Description><URL>http://www.amazon.com/gp/registry/wedding/add-item.html%3Fasin.0%3D0141185376%26SubscriptionId%3DAKIAI66X5P3HPKX56PNQ%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3D0141185376</URL></ItemLink><ItemLink><Description>Add To Wishlist</Description><URL>http://www.amazon.com/gp/registry/wishlist/add-item.html%3Fasin.0%3D0141185376%26SubscriptionId%3DAKIAI66X5P3HPKX56PNQ%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3D0141185376</URL></ItemLink><ItemLink><Description>Tell A Friend</Description><URL>http://www.amazon.com/gp/pdp/taf/0141185376%3FSubscriptionId%3DAKIAI66X5P3HPKX56PNQ%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3D0141185376</URL></ItemLink><ItemLink><Description>All Customer Reviews</Description><URL>http://www.amazon.com/review/product/0141185376%3FSubscriptionId%3DAKIAI66X5P3HPKX56PNQ%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3D0141185376</URL></ItemLink><ItemLink><Description>All Offers</Description><URL>http://www.amazon.com/gp/offer-listing/0141185376%3FSubscriptionId%3DAKIAI66X5P3HPKX56PNQ%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3D0141185376</URL></ItemLink></ItemLinks><ItemAttributes><Author>George Orwell</Author><Creator Role=\"Introduction\">Emma Larkin</Creator><Manufacturer>Penguin Classics</Manufacturer><ProductGroup>Book</ProductGroup><Title>Burmese Days (Penguin Modern Classics)</Title></ItemAttributes></Item><Item><ASIN>B002H5GTKG</ASIN><DetailPageURL>http://www.amazon.com/A-Collection-of-Essays-ebook/dp/B002H5GTKG%3FSubscriptionId%3DAKIAI66X5P3HPKX56PNQ%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D165953%26creativeASIN%3DB002H5GTKG</DetailPageURL><ItemLinks><ItemLink><Description>Technical Details</Description><URL>http://www.amazon.com/A-Collection-of-Essays-ebook/dp/tech-data/B002H5GTKG%3FSubscriptionId%3DAKIAI66X5P3HPKX56PNQ%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3DB002H5GTKG</URL></ItemLink><ItemLink><Description>Add To Baby Registry</Description><URL>http://www.amazon.com/gp/registry/baby/add-item.html%3Fasin.0%3DB002H5GTKG%26SubscriptionId%3DAKIAI66X5P3HPKX56PNQ%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3DB002H5GTKG</URL></ItemLink><ItemLink><Description>Add To Wedding Registry</Description><URL>http://www.amazon.com/gp/registry/wedding/add-item.html%3Fasin.0%3DB002H5GTKG%26SubscriptionId%3DAKIAI66X5P3HPKX56PNQ%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3DB002H5GTKG</URL></ItemLink><ItemLink><Description>Add To Wishlist</Description><URL>http://www.amazon.com/gp/registry/wishlist/add-item.html%3Fasin.0%3DB002H5GTKG%26SubscriptionId%3DAKIAI66X5P3HPKX56PNQ%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3DB002H5GTKG</URL></ItemLink><ItemLink><Description>Tell A Friend</Description><URL>http://www.amazon.com/gp/pdp/taf/B002H5GTKG%3FSubscriptionId%3DAKIAI66X5P3HPKX56PNQ%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3DB002H5GTKG</URL></ItemLink><ItemLink><Description>All Customer Reviews</Description><URL>http://www.amazon.com/review/product/B002H5GTKG%3FSubscriptionId%3DAKIAI66X5P3HPKX56PNQ%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3DB002H5GTKG</URL></ItemLink><ItemLink><Description>All Offers</Description><URL>http://www.amazon.com/gp/offer-listing/B002H5GTKG%3FSubscriptionId%3DAKIAI66X5P3HPKX56PNQ%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3DB002H5GTKG</URL></ItemLink></ItemLinks><ItemAttributes><Author>George Orwell</Author><Manufacturer>Mariner Books</Manufacturer><ProductGroup>eBooks</ProductGroup><Title>A Collection of Essays</Title></ItemAttributes></Item><Item><ASIN>0812034023</ASIN><DetailPageURL>http://www.amazon.com/Animal-Farm-Barrons-Book-Notes/dp/0812034023%3FSubscriptionId%3DAKIAI66X5P3HPKX56PNQ%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D165953%26creativeASIN%3D0812034023</DetailPageURL><ItemLinks><ItemLink><Description>Technical Details</Description><URL>http://www.amazon.com/Animal-Farm-Barrons-Book-Notes/dp/tech-data/0812034023%3FSubscriptionId%3DAKIAI66X5P3HPKX56PNQ%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3D0812034023</URL></ItemLink><ItemLink><Description>Add To Baby Registry</Description><URL>http://www.amazon.com/gp/registry/baby/add-item.html%3Fasin.0%3D0812034023%26SubscriptionId%3DAKIAI66X5P3HPKX56PNQ%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3D0812034023</URL></ItemLink><ItemLink><Description>Add To Wedding Registry</Description><URL>http://www.amazon.com/gp/registry/wedding/add-item.html%3Fasin.0%3D0812034023%26SubscriptionId%3DAKIAI66X5P3HPKX56PNQ%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3D0812034023</URL></ItemLink><ItemLink><Description>Add To Wishlist</Description><URL>http://www.amazon.com/gp/registry/wishlist/add-item.html%3Fasin.0%3D0812034023%26SubscriptionId%3DAKIAI66X5P3HPKX56PNQ%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3D0812034023</URL></ItemLink><ItemLink><Description>Tell A Friend</Description><URL>http://www.amazon.com/gp/pdp/taf/0812034023%3FSubscriptionId%3DAKIAI66X5P3HPKX56PNQ%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3D0812034023</URL></ItemLink><ItemLink><Description>All Customer Reviews</Description><URL>http://www.amazon.com/review/product/0812034023%3FSubscriptionId%3DAKIAI66X5P3HPKX56PNQ%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3D0812034023</URL></ItemLink><ItemLink><Description>All Offers</Description><URL>http://www.amazon.com/gp/offer-listing/0812034023%3FSubscriptionId%3DAKIAI66X5P3HPKX56PNQ%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3D0812034023</URL></ItemLink></ItemLinks><ItemAttributes><Author>George Orwell</Author><Manufacturer>Barron's Educational Series</Manufacturer><ProductGroup>Book</ProductGroup><Title>Animal Farm (Barron's Book Notes)</Title></ItemAttributes></Item><Item><ASIN>B001LF0PL2</ASIN><DetailPageURL>http://www.amazon.com/ANIMAL-FARM-George-Orwell/dp/B001LF0PL2%3FSubscriptionId%3DAKIAI66X5P3HPKX56PNQ%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D165953%26creativeASIN%3DB001LF0PL2</DetailPageURL><ItemLinks><ItemLink><Description>Technical Details</Description><URL>http://www.amazon.com/ANIMAL-FARM-George-Orwell/dp/tech-data/B001LF0PL2%3FSubscriptionId%3DAKIAI66X5P3HPKX56PNQ%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3DB001LF0PL2</URL></ItemLink><ItemLink><Description>Add To Baby Registry</Description><URL>http://www.amazon.com/gp/registry/baby/add-item.html%3Fasin.0%3DB001LF0PL2%26SubscriptionId%3DAKIAI66X5P3HPKX56PNQ%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3DB001LF0PL2</URL></ItemLink><ItemLink><Description>Add To Wedding Registry</Description><URL>http://www.amazon.com/gp/registry/wedding/add-item.html%3Fasin.0%3DB001LF0PL2%26SubscriptionId%3DAKIAI66X5P3HPKX56PNQ%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3DB001LF0PL2</URL></ItemLink><ItemLink><Description>Add To Wishlist</Description><URL>http://www.amazon.com/gp/registry/wishlist/add-item.html%3Fasin.0%3DB001LF0PL2%26SubscriptionId%3DAKIAI66X5P3HPKX56PNQ%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3DB001LF0PL2</URL></ItemLink><ItemLink><Description>Tell A Friend</Description><URL>http://www.amazon.com/gp/pdp/taf/B001LF0PL2%3FSubscriptionId%3DAKIAI66X5P3HPKX56PNQ%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3DB001LF0PL2</URL></ItemLink><ItemLink><Description>All Customer Reviews</Description><URL>http://www.amazon.com/review/product/B001LF0PL2%3FSubscriptionId%3DAKIAI66X5P3HPKX56PNQ%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3DB001LF0PL2</URL></ItemLink><ItemLink><Description>All Offers</Description><URL>http://www.amazon.com/gp/offer-listing/B001LF0PL2%3FSubscriptionId%3DAKIAI66X5P3HPKX56PNQ%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3DB001LF0PL2</URL></ItemLink></ItemLinks><ItemAttributes><Author>George Orwell</Author><Manufacturer>A Signet Classic</Manufacturer><ProductGroup>Book</ProductGroup><Title>ANIMAL FARM</Title></ItemAttributes></Item><Item><ASIN>0070093482</ASIN><DetailPageURL>http://www.amazon.com/75-Readings-Plus-Santi-Buscemi/dp/0070093482%3FSubscriptionId%3DAKIAI66X5P3HPKX56PNQ%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D165953%26creativeASIN%3D0070093482</DetailPageURL><ItemLinks><ItemLink><Description>Technical Details</Description><URL>http://www.amazon.com/75-Readings-Plus-Santi-Buscemi/dp/tech-data/0070093482%3FSubscriptionId%3DAKIAI66X5P3HPKX56PNQ%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3D0070093482</URL></ItemLink><ItemLink><Description>Add To Baby Registry</Description><URL>http://www.amazon.com/gp/registry/baby/add-item.html%3Fasin.0%3D0070093482%26SubscriptionId%3DAKIAI66X5P3HPKX56PNQ%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3D0070093482</URL></ItemLink><ItemLink><Description>Add To Wedding Registry</Description><URL>http://www.amazon.com/gp/registry/wedding/add-item.html%3Fasin.0%3D0070093482%26SubscriptionId%3DAKIAI66X5P3HPKX56PNQ%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3D0070093482</URL></ItemLink><ItemLink><Description>Add To Wishlist</Description><URL>http://www.amazon.com/gp/registry/wishlist/add-item.html%3Fasin.0%3D0070093482%26SubscriptionId%3DAKIAI66X5P3HPKX56PNQ%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3D0070093482</URL></ItemLink><ItemLink><Description>Tell A Friend</Description><URL>http://www.amazon.com/gp/pdp/taf/0070093482%3FSubscriptionId%3DAKIAI66X5P3HPKX56PNQ%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3D0070093482</URL></ItemLink><ItemLink><Description>All Customer Reviews</Description><URL>http://www.amazon.com/review/product/0070093482%3FSubscriptionId%3DAKIAI66X5P3HPKX56PNQ%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3D0070093482</URL></ItemLink><ItemLink><Description>All Offers</Description><URL>http://www.amazon.com/gp/offer-listing/0070093482%3FSubscriptionId%3DAKIAI66X5P3HPKX56PNQ%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3D0070093482</URL></ItemLink></ItemLinks><ItemAttributes><Author>Santi Buscemi</Author><Creator Role=\"Editor\">Santi V. Buscemi</Creator><Creator Role=\"Editor\">Charlotte Smith</Creator><Creator Role=\"Contributor\">George Orwell</Creator><Creator Role=\"Contributor\">Maya Angelou</Creator><Creator Role=\"Contributor\">Virginia Woolf</Creator><Creator Role=\"Contributor\">Euell Gibbons</Creator><Creator Role=\"Contributor\">Isaac Asimov</Creator><Creator Role=\"Contributor\">Jonathan Swift</Creator><Creator Role=\"Contributor\">Alan Paton</Creator><Manufacturer>Mcgraw-Hill College</Manufacturer><ProductGroup>Book</ProductGroup><Title>75 Readings Plus</Title></ItemAttributes></Item></Items></ItemSearchResponse>"
27
- http_version: "1.1"
@@ -1,27 +0,0 @@
1
- ---
2
- - !ruby/struct:VCR::HTTPInteraction
3
- request: !ruby/struct:VCR::Request
4
- method: :get
5
- uri: http://ecs.amazonaws.jp:80/onca/xml?AWSAccessKeyId=AKIAI66X5P3HPKX56PNQ&IdType=ASIN&ItemId=482224816X&Operation=ItemLookup&ResponseGroup=ItemAttributes,OfferFull&Service=AWSECommerceService&Signature=EqYjye2srWx/5qzpiLA7K97GiwQOKgAQGGC5WHhiEag=&Timestamp=2010-10-14T15:44:45Z&Version=2010-09-01
6
- body:
7
- headers: {}
8
-
9
- response: !ruby/struct:VCR::Response
10
- status: !ruby/struct:VCR::ResponseStatus
11
- code: 200
12
- message: OK
13
- headers:
14
- date:
15
- - Thu, 14 Oct 2010 15:44:45 GMT
16
- server:
17
- - Server
18
- content-type:
19
- - text/xml;charset=UTF-8
20
- vary:
21
- - Accept-Encoding,User-Agent
22
- nncoection:
23
- - close
24
- transfer-encoding:
25
- - chunked
26
- body: "<?xml version=\"1.0\" ?><ItemLookupResponse xmlns=\"http://webservices.amazon.com/AWSECommerceService/2010-09-01\"><OperationRequest><RequestId>06e2298f-fc0a-497c-9601-0890834b9ab7</RequestId><Arguments><Argument Name=\"Operation\" Value=\"ItemLookup\"></Argument><Argument Name=\"Service\" Value=\"AWSECommerceService\"></Argument><Argument Name=\"Signature\" Value=\"EqYjye2srWx/5qzpiLA7K97GiwQOKgAQGGC5WHhiEag=\"></Argument><Argument Name=\"Version\" Value=\"2010-09-01\"></Argument><Argument Name=\"ItemId\" Value=\"482224816X\"></Argument><Argument Name=\"IdType\" Value=\"ASIN\"></Argument><Argument Name=\"AWSAccessKeyId\" Value=\"AKIAI66X5P3HPKX56PNQ\"></Argument><Argument Name=\"Timestamp\" Value=\"2010-10-14T15:44:45Z\"></Argument><Argument Name=\"ResponseGroup\" Value=\"ItemAttributes,OfferFull\"></Argument></Arguments><RequestProcessingTime>0.0142950000000000</RequestProcessingTime></OperationRequest><Items><Request><IsValid>True</IsValid><ItemLookupRequest><Condition>New</Condition><DeliveryMethod>Ship</DeliveryMethod><IdType>ASIN</IdType><MerchantId>Amazon</MerchantId><OfferPage>1</OfferPage><ItemId>482224816X</ItemId><ResponseGroup>ItemAttributes</ResponseGroup><ResponseGroup>OfferFull</ResponseGroup><ReviewPage>1</ReviewPage><ReviewSort>-SubmissionDate</ReviewSort><VariationPage>All</VariationPage></ItemLookupRequest></Request><Item><ASIN>482224816X</ASIN><DetailPageURL>http://www.amazon.co.jp/%E3%82%B9%E3%83%86%E3%82%A3%E3%83%BC%E3%83%96%E3%83%BB%E3%82%B8%E3%83%A7%E3%83%96%E3%82%BA-%E9%A9%9A%E7%95%B0%E3%81%AE%E3%83%97%E3%83%AC%E3%82%BC%E3%83%B3%E2%80%95%E4%BA%BA%E3%80%85%E3%82%92%E6%83%B9%E3%81%8D%E3%81%A4%E3%81%91%E3%82%8B18%E3%81%AE%E6%B3%95%E5%89%87-%E3%82%AB%E3%83%BC%E3%83%9E%E3%82%A4%E3%83%B3%E3%83%BB%E3%82%AC%E3%83%AD/dp/482224816X%3FSubscriptionId%3DAKIAI66X5P3HPKX56PNQ%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D165953%26creativeASIN%3D482224816X</DetailPageURL><ItemLinks><ItemLink><Description>Add To Wishlist</Description><URL>http://www.amazon.co.jp/gp/registry/wishlist/add-item.html%3Fasin.0%3D482224816X%26SubscriptionId%3DAKIAI66X5P3HPKX56PNQ%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D5143%26creativeASIN%3D482224816X</URL></ItemLink><ItemLink><Description>Tell A Friend</Description><URL>http://www.amazon.co.jp/gp/pdp/taf/482224816X%3FSubscriptionId%3DAKIAI66X5P3HPKX56PNQ%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D5143%26creativeASIN%3D482224816X</URL></ItemLink><ItemLink><Description>All Customer Reviews</Description><URL>http://www.amazon.co.jp/review/product/482224816X%3FSubscriptionId%3DAKIAI66X5P3HPKX56PNQ%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D5143%26creativeASIN%3D482224816X</URL></ItemLink><ItemLink><Description>All Offers</Description><URL>http://www.amazon.co.jp/gp/offer-listing/482224816X%3FSubscriptionId%3DAKIAI66X5P3HPKX56PNQ%26tag%3Dws%26linkCode%3Dxm2%26camp%3D2025%26creative%3D5143%26creativeASIN%3D482224816X</URL></ItemLink></ItemLinks><ItemAttributes><Author>\xE3\x82\xAB\xE3\x83\xBC\xE3\x83\x9E\xE3\x82\xA4\xE3\x83\xB3\xE3\x83\xBB\xE3\x82\xAC\xE3\x83\xAD</Author><Binding>\xE5\x8D\x98\xE8\xA1\x8C\xE6\x9C\xAC\xEF\xBC\x88\xE3\x82\xBD\xE3\x83\x95\xE3\x83\x88\xE3\x82\xAB\xE3\x83\x90\xE3\x83\xBC\xEF\xBC\x89</Binding><Creator Role=\"\xE3\x81\x9D\xE3\x81\xAE\xE4\xBB\x96\">\xE5\xA4\x96\xE6\x9D\x91\xE4\xBB\x81 \xE8\xA7\xA3\xE8\xAA\xAC</Creator><Creator Role=\"\xE7\xBF\xBB\xE8\xA8\xB3\">\xE4\xBA\x95\xE5\x8F\xA3\xE8\x80\x95\xE4\xBA\x8C</Creator><EAN>9784822248161</EAN><IsAdultProduct>0</IsAdultProduct><ISBN>482224816X</ISBN><Label>\xE6\x97\xA5\xE7\xB5\x8CBP\xE7\xA4\xBE</Label><Languages><Language><Name>\xE6\x97\xA5\xE6\x9C\xAC\xE8\xAA\x9E</Name><Type>Unknown</Type></Language></Languages><ListPrice><Amount>1890</Amount><CurrencyCode>JPY</CurrencyCode><FormattedPrice>\xEF\xBF\xA5 1,890</FormattedPrice></ListPrice><Manufacturer>\xE6\x97\xA5\xE7\xB5\x8CBP\xE7\xA4\xBE</Manufacturer><NumberOfPages>408</NumberOfPages><PackageDimensions><Height Units=\"hundredths-inches\">110</Height><Length Units=\"hundredths-inches\">740</Length><Weight Units=\"hundredths-pounds\">84</Weight><Width Units=\"hundredths-inches\">512</Width></PackageDimensions><ProductGroup>Book</ProductGroup><ProductTypeName>ABIS_BOOK</ProductTypeName><PublicationDate>2010-07-15</PublicationDate><Publisher>\xE6\x97\xA5\xE7\xB5\x8CBP\xE7\xA4\xBE</Publisher><Studio>\xE6\x97\xA5\xE7\xB5\x8CBP\xE7\xA4\xBE</Studio><Title>\xE3\x82\xB9\xE3\x83\x86\xE3\x82\xA3\xE3\x83\xBC\xE3\x83\x96\xE3\x83\xBB\xE3\x82\xB8\xE3\x83\xA7\xE3\x83\x96\xE3\x82\xBA \xE9\xA9\x9A\xE7\x95\xB0\xE3\x81\xAE\xE3\x83\x97\xE3\x83\xAC\xE3\x82\xBC\xE3\x83\xB3\xE2\x80\x95\xE4\xBA\xBA\xE3\x80\x85\xE3\x82\x92\xE6\x83\xB9\xE3\x81\x8D\xE3\x81\xA4\xE3\x81\x91\xE3\x82\x8B18\xE3\x81\xAE\xE6\xB3\x95\xE5\x89\x87</Title></ItemAttributes><OfferSummary><LowestNewPrice><Amount>1890</Amount><CurrencyCode>JPY</CurrencyCode><FormattedPrice>\xEF\xBF\xA5 1,890</FormattedPrice></LowestNewPrice><LowestUsedPrice><Amount>1579</Amount><CurrencyCode>JPY</CurrencyCode><FormattedPrice>\xEF\xBF\xA5 1,579</FormattedPrice></LowestUsedPrice><LowestCollectiblePrice><Amount>2000</Amount><CurrencyCode>JPY</CurrencyCode><FormattedPrice>\xEF\xBF\xA5 2,000</FormattedPrice></LowestCollectiblePrice><TotalNew>2</TotalNew><TotalUsed>13</TotalUsed><TotalCollectible>2</TotalCollectible><TotalRefurbished>0</TotalRefurbished></OfferSummary><Offers><TotalOffers>1</TotalOffers><TotalOfferPages>1</TotalOfferPages><Offer><Merchant><MerchantId>AN1VRQENFRJN5</MerchantId><Name>Amazon.co.jp</Name><GlancePage>http://www.amazon.co.jp/gp/help/seller/home.html?seller=AN1VRQENFRJN5</GlancePage><AverageFeedbackRating>0.0</AverageFeedbackRating><TotalFeedback>0</TotalFeedback></Merchant><OfferAttributes><Condition>New</Condition><SubCondition>new</SubCondition></OfferAttributes><OfferListing><OfferListingId>%2F9DHYkETN7KbrhcNeFxw5glEq31CnkiDAMByNY0X4C9PNDfGy5O1bHB4LruByHD81if7i5NOwXBeG5ew2GskDsZe7n9vSeRp</OfferListingId><Price><Amount>1890</Amount><CurrencyCode>JPY</CurrencyCode><FormattedPrice>\xEF\xBF\xA5 1,890</FormattedPrice></Price><Availability>\xE5\x9C\xA8\xE5\xBA\xAB\xE3\x81\x82\xE3\x82\x8A\xE3\x80\x82</Availability><AvailabilityAttributes><AvailabilityType>now</AvailabilityType><MinimumHours>0</MinimumHours><MaximumHours>0</MaximumHours></AvailabilityAttributes><Quantity>-1</Quantity><IsEligibleForSuperSaverShipping>1</IsEligibleForSuperSaverShipping><IsFulfilledByAmazon>1</IsFulfilledByAmazon></OfferListing><LoyaltyPoints><Points>189</Points><TypicalRedemptionValue><Amount>189</Amount><CurrencyCode>JPY</CurrencyCode><FormattedPrice>\xEF\xBF\xA5 189</FormattedPrice></TypicalRedemptionValue></LoyaltyPoints></Offer></Offers></Item></Items></ItemLookupResponse>"
27
- http_version: "1.1"
@@ -1,27 +0,0 @@
1
- ---
2
- - !ruby/struct:VCR::HTTPInteraction
3
- request: !ruby/struct:VCR::Request
4
- method: :get
5
- uri: http://ecs.amazonaws.com:80/onca/xml?AWSAccessKeyId=AKIAI66X5P3HPKX56PNQ&IdType=ASIN&ItemId=0415246334&Operation=ItemLookup&RelationshipType=AuthorityTitle&ResponseGroup=RelatedItems&Service=AWSECommerceService&Signature=Tbn9pynSE91gf2i+t4dczddkm4G8MkIbqWS94AHXpQs=&Timestamp=2010-10-14T15:44:45Z&Version=2010-09-01
6
- body:
7
- headers: {}
8
-
9
- response: !ruby/struct:VCR::Response
10
- status: !ruby/struct:VCR::ResponseStatus
11
- code: 200
12
- message: OK
13
- headers:
14
- date:
15
- - Thu, 14 Oct 2010 15:44:46 GMT
16
- server:
17
- - Server
18
- content-type:
19
- - text/xml;charset=UTF-8
20
- vary:
21
- - Accept-Encoding,User-Agent
22
- nncoection:
23
- - close
24
- transfer-encoding:
25
- - chunked
26
- body: <?xml version="1.0" encoding="UTF-8"?><ItemLookupResponse xmlns="http://webservices.amazon.com/AWSECommerceService/2010-09-01"><OperationRequest><HTTPHeaders><Header Name="UserAgent" Value="Jakarta Commons-HttpClient/3.0.1"></Header></HTTPHeaders><RequestId>0N0ZZHSMAM4AAE01WAY9</RequestId><Arguments><Argument Name="ItemId" Value="0415246334"></Argument><Argument Name="Service" Value="AWSECommerceService"></Argument><Argument Name="ResponseGroup" Value="RelatedItems"></Argument><Argument Name="Operation" Value="ItemLookup"></Argument><Argument Name="IdType" Value="ASIN"></Argument><Argument Name="Version" Value="2010-09-01"></Argument><Argument Name="Timestamp" Value="2010-10-14T15:44:45Z"></Argument><Argument Name="RelationshipType" Value="AuthorityTitle"></Argument><Argument Name="Signature" Value="Tbn9pynSE91gf2i+t4dczddkm4G8MkIbqWS94AHXpQs="></Argument><Argument Name="AWSAccessKeyId" Value="AKIAI66X5P3HPKX56PNQ"></Argument></Arguments><RequestProcessingTime>0.0255229473114014</RequestProcessingTime></OperationRequest><Items><Request><IsValid>True</IsValid><ItemLookupRequest><IdType>ASIN</IdType><ItemId>0415246334</ItemId><ResponseGroup>RelatedItems</ResponseGroup><RelationshipType>AuthorityTitle</RelationshipType></ItemLookupRequest></Request><Item><ASIN>0415246334</ASIN><RelatedItems><Relationship>Parents</Relationship><RelationshipType>AuthorityTitle</RelationshipType><RelatedItemCount>1</RelatedItemCount><RelatedItemPageCount>1</RelatedItemPageCount><RelatedItemPage>1</RelatedItemPage><RelatedItem><Item><ASIN>B000ASPUES</ASIN></Item></RelatedItem></RelatedItems></Item></Items></ItemLookupResponse>
27
- http_version: "1.1"
@@ -1,27 +0,0 @@
1
- ---
2
- - !ruby/struct:VCR::HTTPInteraction
3
- request: !ruby/struct:VCR::Request
4
- method: :get
5
- uri: http://ecs.amazonaws.com:80/onca/xml?AWSAccessKeyId=AKIAI66X5P3HPKX56PNQ&IdType=ASIN&ItemId=B000ASPUES&Operation=ItemLookup&RelationshipType=AuthorityTitle&ResponseGroup=RelatedItems&Service=AWSECommerceService&Signature=/zFiZuFUV+uJN5tEikTiXn28zv3Ic9WSgtnDfp2Ltqk=&Timestamp=2010-10-14T15:44:46Z&Version=2010-09-01
6
- body:
7
- headers: {}
8
-
9
- response: !ruby/struct:VCR::Response
10
- status: !ruby/struct:VCR::ResponseStatus
11
- code: 200
12
- message: OK
13
- headers:
14
- date:
15
- - Thu, 14 Oct 2010 15:44:46 GMT
16
- server:
17
- - Server
18
- content-type:
19
- - text/xml;charset=UTF-8
20
- vary:
21
- - Accept-Encoding,User-Agent
22
- nncoection:
23
- - close
24
- transfer-encoding:
25
- - chunked
26
- body: <?xml version="1.0" encoding="UTF-8"?><ItemLookupResponse xmlns="http://webservices.amazon.com/AWSECommerceService/2010-09-01"><OperationRequest><HTTPHeaders><Header Name="UserAgent" Value="Jakarta Commons-HttpClient/3.0.1"></Header></HTTPHeaders><RequestId>0FRMR1Q2Q2V6779VWQ58</RequestId><Arguments><Argument Name="ItemId" Value="B000ASPUES"></Argument><Argument Name="Service" Value="AWSECommerceService"></Argument><Argument Name="ResponseGroup" Value="RelatedItems"></Argument><Argument Name="Operation" Value="ItemLookup"></Argument><Argument Name="IdType" Value="ASIN"></Argument><Argument Name="Version" Value="2010-09-01"></Argument><Argument Name="Timestamp" Value="2010-10-14T15:44:46Z"></Argument><Argument Name="RelationshipType" Value="AuthorityTitle"></Argument><Argument Name="Signature" Value="/zFiZuFUV+uJN5tEikTiXn28zv3Ic9WSgtnDfp2Ltqk="></Argument><Argument Name="AWSAccessKeyId" Value="AKIAI66X5P3HPKX56PNQ"></Argument></Arguments><RequestProcessingTime>0.0513041019439697</RequestProcessingTime></OperationRequest><Items><Request><IsValid>True</IsValid><ItemLookupRequest><IdType>ASIN</IdType><ItemId>B000ASPUES</ItemId><ResponseGroup>RelatedItems</ResponseGroup><RelationshipType>AuthorityTitle</RelationshipType></ItemLookupRequest></Request><Item><ASIN>B000ASPUES</ASIN><RelatedItems><Relationship>Children</Relationship><RelationshipType>AuthorityTitle</RelationshipType><RelatedItemCount>11</RelatedItemCount><RelatedItemPageCount>2</RelatedItemPageCount><RelatedItemPage>1</RelatedItemPage><RelatedItem><Item><ASIN>B003QGCMFG</ASIN></Item></RelatedItem><RelatedItem><Item><ASIN>B000FA5YU6</ASIN></Item></RelatedItem><RelatedItem><Item><ASIN>0415246334</ASIN></Item></RelatedItem><RelatedItem><Item><ASIN>020307291X</ASIN></Item></RelatedItem></RelatedItems></Item></Items></ItemLookupResponse>
27
- http_version: "1.1"
@@ -1,27 +0,0 @@
1
- ---
2
- - !ruby/struct:VCR::HTTPInteraction
3
- request: !ruby/struct:VCR::Request
4
- method: :get
5
- uri: http://ecs.amazonaws.com:80/onca/xml?AWSAccessKeyId=AKIAI66X5P3HPKX56PNQ&Operation=SellerListingSearch&SellerId=A31N271NVIORU3&Service=AWSECommerceService&Signature=eFrP+WBMPLYxGLWD198bS3OaezRQTJPvgLpq3dOz8nc=&Timestamp=2010-10-14T15:44:46Z&Version=2010-09-01
6
- body:
7
- headers: {}
8
-
9
- response: !ruby/struct:VCR::Response
10
- status: !ruby/struct:VCR::ResponseStatus
11
- code: 200
12
- message: OK
13
- headers:
14
- date:
15
- - Thu, 14 Oct 2010 15:44:46 GMT
16
- server:
17
- - Server
18
- content-type:
19
- - text/xml;charset=UTF-8
20
- vary:
21
- - Accept-Encoding,User-Agent
22
- nncoection:
23
- - close
24
- transfer-encoding:
25
- - chunked
26
- body: "<?xml version=\"1.0\" encoding=\"UTF-8\"?><SellerListingSearchResponse xmlns=\"http://webservices.amazon.com/AWSECommerceService/2010-09-01\"><OperationRequest><HTTPHeaders><Header Name=\"UserAgent\" Value=\"Jakarta Commons-HttpClient/3.0.1\"></Header></HTTPHeaders><RequestId>0Z8JNWNX2MV8RY8KHRZN</RequestId><Arguments><Argument Name=\"Service\" Value=\"AWSECommerceService\"></Argument><Argument Name=\"SellerId\" Value=\"A31N271NVIORU3\"></Argument><Argument Name=\"Operation\" Value=\"SellerListingSearch\"></Argument><Argument Name=\"Timestamp\" Value=\"2010-10-14T15:44:46Z\"></Argument><Argument Name=\"Version\" Value=\"2010-09-01\"></Argument><Argument Name=\"Signature\" Value=\"eFrP+WBMPLYxGLWD198bS3OaezRQTJPvgLpq3dOz8nc=\"></Argument><Argument Name=\"AWSAccessKeyId\" Value=\"AKIAI66X5P3HPKX56PNQ\"></Argument></Arguments><RequestProcessingTime>10.8175339698792</RequestProcessingTime></OperationRequest><SellerListings><Request><IsValid>True</IsValid><SellerListingSearchRequest><SellerId>A31N271NVIORU3</SellerId></SellerListingSearchRequest></Request><TotalResults>24294</TotalResults><TotalPages>500</TotalPages><SellerListing><ExchangeId>Y16M7021596M2191425</ExchangeId><ListingId>0412GB3EVLC</ListingId><ASIN>0077293444</ASIN><SKU>WKN/041110/000001</SKU><WillShipExpedited>0</WillShipExpedited><WillShipInternational>0</WillShipInternational><Title>A First Look At Communication Theory [Paperback] by Em Griffin</Title><Price><Amount>18883</Amount><CurrencyCode>USD</CurrencyCode><FormattedPrice>$188.83</FormattedPrice></Price><StartDate>2010-04-12</StartDate><Status>Open</Status><Quantity>2</Quantity><Condition>new</Condition><SubCondition>new</SubCondition><Seller><SellerId>A31N271NVIORU3</SellerId><Nickname>wakullabooks</Nickname></Seller></SellerListing><SellerListing><ExchangeId>Y16M5471448M4566343</ExchangeId><ListingId>0412GB3EVM6</ListingId><ASIN>B002RAR1M6</ASIN><SKU>WKN/041110/000501</SKU><WillShipExpedited>0</WillShipExpedited><WillShipInternational>0</WillShipInternational><Title>Biba's Northern Italian Cooking [Bargain Price] by Caggiano, Biba</Title><Price><Amount>1554</Amount><CurrencyCode>USD</CurrencyCode><FormattedPrice>$15.54</FormattedPrice></Price><StartDate>2010-04-12</StartDate><Status>Open</Status><Quantity>2</Quantity><Condition>new</Condition><SubCondition>new</SubCondition><Seller><SellerId>A31N271NVIORU3</SellerId><Nickname>wakullabooks</Nickname></Seller></SellerListing><SellerListing><ExchangeId>Y16M3928000M3598717</ExchangeId><ListingId>0412GB3EV9O</ListingId><ASIN>B001JJBOPQ</ASIN><SKU>WKN/041110/001001</SKU><WillShipExpedited>0</WillShipExpedited><WillShipInternational>0</WillShipInternational><Title>The Paris Shopping Companion: A Personal Guide to Shopping in Paris for Every...</Title><Price><Amount>1589</Amount><CurrencyCode>USD</CurrencyCode><FormattedPrice>$15.89</FormattedPrice></Price><StartDate>2010-04-12</StartDate><Status>Open</Status><Quantity>2</Quantity><Condition>new</Condition><SubCondition>new</SubCondition><Seller><SellerId>A31N271NVIORU3</SellerId><Nickname>wakullabooks</Nickname></Seller></SellerListing><SellerListing><ExchangeId>Y16M5959867M9839035</ExchangeId><ListingId>0412GB3EW3O</ListingId><ASIN>B001G8WDYG</ASIN><SKU>WKG/041110/000953</SKU><WillShipExpedited>0</WillShipExpedited><WillShipInternational>0</WillShipInternational><Title>Somersize Cocktails: 30 Sexy Libations from Cool Classics to Unique Concoctio...</Title><Price><Amount>900</Amount><CurrencyCode>USD</CurrencyCode><FormattedPrice>$9.00</FormattedPrice></Price><StartDate>2010-04-12</StartDate><Status>Open</Status><Quantity>2</Quantity><Condition>used</Condition><SubCondition>good</SubCondition><Seller><SellerId>A31N271NVIORU3</SellerId><Nickname>wakullabooks</Nickname></Seller></SellerListing><SellerListing><ExchangeId>Y16M4489119M9796682</ExchangeId><ListingId>0412GB3EVNU</ListingId><ASIN>B002U0KPDA</ASIN><SKU>WKG/041110/001454</SKU><WillShipExpedited>0</WillShipExpedited><WillShipInternational>0</WillShipInternational><Title>Be Glad Your Nose Is on Your Face: And Other Poems: Some of the Best of Jack ...</Title><Price><Amount>1945</Amount><CurrencyCode>USD</CurrencyCode><FormattedPrice>$19.45</FormattedPrice></Price><StartDate>2010-04-12</StartDate><Status>Open</Status><Quantity>2</Quantity><Condition>used</Condition><SubCondition>good</SubCondition><Seller><SellerId>A31N271NVIORU3</SellerId><Nickname>wakullabooks</Nickname></Seller></SellerListing><SellerListing><ExchangeId>Y16M2008094M2515859</ExchangeId><ListingId>0412GB3EVW6</ListingId><ASIN>B003156CDK</ASIN><SKU>WKN/041110/001501</SKU><WillShipExpedited>0</WillShipExpedited><WillShipInternational>0</WillShipInternational><Title>Wigfield [Bargain Price] by Sedaris, Amy</Title><Price><Amount>1254</Amount><CurrencyCode>USD</CurrencyCode><FormattedPrice>$12.54</FormattedPrice></Price><StartDate>2010-04-12</StartDate><Status>Open</Status><Quantity>2</Quantity><Condition>new</Condition><SubCondition>new</SubCondition><Seller><SellerId>A31N271NVIORU3</SellerId><Nickname>wakullabooks</Nickname></Seller></SellerListing><SellerListing><ExchangeId>Y16M7011382M9551829</ExchangeId><ListingId>0412GB3EWWU</ListingId><ASIN>B002ASUZFK</ASIN><SKU>WKN/041110/000002</SKU><WillShipExpedited>0</WillShipExpedited><WillShipInternational>0</WillShipInternational><Title>American Cinema/American Culture [Paperback] by John Belton</Title><Price><Amount>14775</Amount><CurrencyCode>USD</CurrencyCode><FormattedPrice>$147.75</FormattedPrice></Price><StartDate>2010-04-12</StartDate><Status>Open</Status><Quantity>2</Quantity><Condition>new</Condition><SubCondition>new</SubCondition><Seller><SellerId>A31N271NVIORU3</SellerId><Nickname>wakullabooks</Nickname></Seller></SellerListing><SellerListing><ExchangeId>Y16M2011625M1057895</ExchangeId><ListingId>0412GB3EXOC</ListingId><ASIN>B001O9CDDS</ASIN><SKU>WKN/041110/001502</SKU><WillShipExpedited>0</WillShipExpedited><WillShipInternational>0</WillShipInternational><Title>The Crafting of Narnia: The Art, Creatures, and Weapons from Weta Workshop (N...</Title><Price><Amount>1192</Amount><CurrencyCode>USD</CurrencyCode><FormattedPrice>$11.92</FormattedPrice></Price><StartDate>2010-04-12</StartDate><Status>Open</Status><Quantity>2</Quantity><Condition>new</Condition><SubCondition>new</SubCondition><Seller><SellerId>A31N271NVIORU3</SellerId><Nickname>wakullabooks</Nickname></Seller></SellerListing><SellerListing><ExchangeId>Y16M3553756M7847099</ExchangeId><ListingId>0412GB3EX60</ListingId><ASIN>B003F76FI6</ASIN><SKU>WKN/041110/001004</SKU><WillShipExpedited>0</WillShipExpedited><WillShipInternational>0</WillShipInternational><Title>Rick Steves' France 2009 [Bargain Price] by Steves, Rick; Smith, Steve</Title><Price><Amount>900</Amount><CurrencyCode>USD</CurrencyCode><FormattedPrice>$9.00</FormattedPrice></Price><StartDate>2010-04-12</StartDate><Status>Open</Status><Quantity>2</Quantity><Condition>new</Condition><SubCondition>new</SubCondition><Seller><SellerId>A31N271NVIORU3</SellerId><Nickname>wakullabooks</Nickname></Seller></SellerListing><SellerListing><ExchangeId>Y16M5963398M7250575</ExchangeId><ListingId>0412GB3EXA6</ListingId><ASIN>B002SB8OUM</ASIN><SKU>WKG/041110/000954</SKU><WillShipExpedited>0</WillShipExpedited><WillShipInternational>0</WillShipInternational><Title>Party Basics for New Nesters: More Than 100 Fresh Ideas for Holidays and Ever...</Title><Price><Amount>900</Amount><CurrencyCode>USD</CurrencyCode><FormattedPrice>$9.00</FormattedPrice></Price><StartDate>2010-04-12</StartDate><Status>Open</Status><Quantity>2</Quantity><Condition>used</Condition><SubCondition>good</SubCondition><Seller><SellerId>A31N271NVIORU3</SellerId><Nickname>wakullabooks</Nickname></Seller></SellerListing></SellerListings></SellerListingSearchResponse>"
27
- http_version: "1.1"
@@ -1,27 +0,0 @@
1
- ---
2
- - !ruby/struct:VCR::HTTPInteraction
3
- request: !ruby/struct:VCR::Request
4
- method: :get
5
- uri: http://ecs.amazonaws.com:80/onca/xml?AWSAccessKeyId=AKIAI66X5P3HPKX56PNQ&ItemLookup.1.ItemId=0816614024,0143105825,0485113600,0816616779,0942299078,0816614008,144006654X,0486400360,0486417670,087220474X&ItemLookup.2.ItemId=0486454398,0268018359,1604246014,184467598X,0312427182,1844674282,0745640974,0745646441,0826489540,1844672972&ItemLookup.Shared.Condition=All&ItemLookup.Shared.IdType=ASIN&ItemLookup.Shared.MerchantId=All&ItemLookup.Shared.ResponseGroup=OfferFull&Operation=ItemLookup&Service=AWSECommerceService&Signature=oJhd4vHSbUvxljDntLHpqUib3XG72y+6rI8x63S/7nM=&Timestamp=2010-10-14T15:44:57Z&Version=2010-09-01
6
- body:
7
- headers: {}
8
-
9
- response: !ruby/struct:VCR::Response
10
- status: !ruby/struct:VCR::ResponseStatus
11
- code: 200
12
- message: OK
13
- headers:
14
- date:
15
- - Thu, 14 Oct 2010 15:44:57 GMT
16
- server:
17
- - Server
18
- content-type:
19
- - text/xml;charset=UTF-8
20
- vary:
21
- - Accept-Encoding,User-Agent
22
- nncoection:
23
- - close
24
- transfer-encoding:
25
- - chunked
26
- body: "<?xml version=\"1.0\" ?><ItemLookupResponse xmlns=\"http://webservices.amazon.com/AWSECommerceService/2010-09-01\"><OperationRequest><RequestId>ad218682-07ab-41a1-91e5-3b1949fc284c</RequestId><Arguments><Argument Name=\"Operation\" Value=\"ItemLookup\"></Argument><Argument Name=\"Service\" Value=\"AWSECommerceService\"></Argument><Argument Name=\"ItemLookup.Shared.MerchantId\" Value=\"All\"></Argument><Argument Name=\"ItemLookup.1.ItemId\" Value=\"0816614024,0143105825,0485113600,0816616779,0942299078,0816614008,144006654X,0486400360,0486417670,087220474X\"></Argument><Argument Name=\"ItemLookup.Shared.ResponseGroup\" Value=\"OfferFull\"></Argument><Argument Name=\"Signature\" Value=\"oJhd4vHSbUvxljDntLHpqUib3XG72y+6rI8x63S/7nM=\"></Argument><Argument Name=\"ItemLookup.Shared.Condition\" Value=\"All\"></Argument><Argument Name=\"ItemLookup.Shared.IdType\" Value=\"ASIN\"></Argument><Argument Name=\"ItemLookup.2.ItemId\" Value=\"0486454398,0268018359,1604246014,184467598X,0312427182,1844674282,0745640974,0745646441,0826489540,1844672972\"></Argument><Argument Name=\"Version\" Value=\"2010-09-01\"></Argument><Argument Name=\"AWSAccessKeyId\" Value=\"AKIAI66X5P3HPKX56PNQ\"></Argument><Argument Name=\"Timestamp\" Value=\"2010-10-14T15:44:57Z\"></Argument></Arguments><RequestProcessingTime>0.7479250000000000</RequestProcessingTime></OperationRequest><Items><Request><IsValid>True</IsValid><ItemLookupRequest><Condition>All</Condition><DeliveryMethod>Ship</DeliveryMethod><IdType>ASIN</IdType><MerchantId>All</MerchantId><OfferPage>1</OfferPage><ItemId>0816614024</ItemId><ItemId>0143105825</ItemId><ItemId>0485113600</ItemId><ItemId>0816616779</ItemId><ItemId>0942299078</ItemId><ItemId>0816614008</ItemId><ItemId>144006654X</ItemId><ItemId>0486400360</ItemId><ItemId>0486417670</ItemId><ItemId>087220474X</ItemId><ResponseGroup>OfferFull</ResponseGroup><ReviewPage>1</ReviewPage><ReviewSort>-SubmissionDate</ReviewSort><VariationPage>All</VariationPage></ItemLookupRequest></Request><Item><ASIN>0816614024</ASIN><OfferSummary><LowestNewPrice><Amount>1800</Amount><CurrencyCode>USD</CurrencyCode><FormattedPrice>$18.00</FormattedPrice></LowestNewPrice><LowestUsedPrice><Amount>1625</Amount><CurrencyCode>USD</CurrencyCode><FormattedPrice>$16.25</FormattedPrice></LowestUsedPrice><LowestCollectiblePrice><Amount>5000</Amount><CurrencyCode>USD</CurrencyCode><FormattedPrice>$50.00</FormattedPrice></LowestCollectiblePrice><TotalNew>27</TotalNew><TotalUsed>21</TotalUsed><TotalCollectible>1</TotalCollectible><TotalRefurbished>0</TotalRefurbished></OfferSummary><Offers><TotalOffers>48</TotalOffers><TotalOfferPages>5</TotalOfferPages><Offer><Merchant><MerchantId>A2N40VVFF4HONE</MerchantId><Name>bookcircus_</Name><GlancePage>http://www.amazon.com/gp/help/seller/home.html?seller=A2N40VVFF4HONE</GlancePage><Location><CountryCode>US</CountryCode><StateCode>AR</StateCode></Location><AverageFeedbackRating>4.7</AverageFeedbackRating><TotalFeedback>6734</TotalFeedback></Merchant><OfferAttributes><Condition>Used</Condition><SubCondition>good</SubCondition><ConditionNote>All orders receive tracking information upon shipment (except expedited PO boxes). May not contain certain online supplements such as infotrac and web access codes. Used items likely contain highlighting and/or writing. Expedited shipping available.</ConditionNote></OfferAttributes><OfferListing><OfferListingId>xbibzFvnPX8WEOAfgRhacVycW8HOcshyhJIQtIT6hsfJuQ4r6zn4zDJ63Tb4PSBlys3dnUMPuYMnlE4GiBpp38SFdiwvrtqeSG5Sekyb9hgxjlG6NybB7jfrn39KbUj6KrIv0vGUfuE%3D</OfferListingId><ExchangeId>Y11M4392395M5450056</ExchangeId><Price><Amount>1625</Amount><CurrencyCode>USD</CurrencyCode><FormattedPrice>$16.25</FormattedPrice></Price><AmountSaved><Amount>875</Amount><CurrencyCode>USD</CurrencyCode><FormattedPrice>$8.75</FormattedPrice></AmountSaved><PercentageSaved>35</PercentageSaved><Availability>Usually ships in 1-2 business days</Availability><AvailabilityAttributes><AvailabilityType>now</AvailabilityType><MinimumHours>24</MinimumHours><MaximumHours>48</MaximumHours></AvailabilityAttributes><Quantity>1</Quantity><IsEligibleForSuperSaverShipping>0</IsEligibleForSuperSaverShipping><IsFulfilledByAmazon>0</IsFulfilledByAmazon></OfferListing></Offer><Offer><Merchant><MerchantId>A33YWJZK210TPI</MerchantId><Name>jimsesales</Name><GlancePage>http://www.amazon.com/gp/help/seller/home.html?seller=A33YWJZK210TPI</GlancePage><Location><CountryCode>US</CountryCode><StateCode>NM</StateCode></Location><AverageFeedbackRating>4.9</AverageFeedbackRating><TotalFeedback>303</TotalFeedback></Merchant><OfferAttributes><Condition>Used</Condition><SubCondition>good</SubCondition><ConditionNote>Great Book! good to very good condition. cover wear/bend. Fast Shipping! Thank You For Your Business!</ConditionNote></OfferAttributes><OfferListing><OfferListingId>92nnRqFTS0Z9WJtGgR5w%2F6TS0gvA93yE8FdianuKoukr%2BrSSbj1shjvnTDeMnkJxnVM4ScSltc%2FAax9eHJmZd34dR5cFBS9jqy6PdlJBslPy97t3SIjbwqw7IKbOVt0tp17T5Xxwz0I%3D</OfferListingId><ExchangeId>Y14M5617829M1312826</ExchangeId><Price><Amount>1748</Amount><CurrencyCode>USD</CurrencyCode><FormattedPrice>$17.48</FormattedPrice></Price><AmountSaved><Amount>752</Amount><CurrencyCode>USD</CurrencyCode><FormattedPrice>$7.52</FormattedPrice></AmountSaved><PercentageSaved>30</PercentageSaved><Availability>Usually ships in 1-2 business days</Availability><AvailabilityAttributes><AvailabilityType>now</AvailabilityType><MinimumHours>24</MinimumHours><MaximumHours>48</MaximumHours></AvailabilityAttributes><Quantity>1</Quantity><IsEligibleForSuperSaverShipping>0</IsEligibleForSuperSaverShipping><IsFulfilledByAmazon>0</IsFulfilledByAmazon></OfferListing></Offer><Offer><Merchant><MerchantId>ATVPDKIKX0DER</MerchantId><Name>Amazon.com</Name><GlancePage>http://www.amazon.com/gp/help/seller/home.html?seller=ATVPDKIKX0DER</GlancePage><AverageFeedbackRating>0.0</AverageFeedbackRating><TotalFeedback>0</TotalFeedback></Merchant><OfferAttributes><Condition>New</Condition><SubCondition>new</SubCondition></OfferAttributes><OfferListing><OfferListingId>5gn16RHKkOiZh2WDAINIOZMNVmY7pHWAiR43%2B85dGw9dZLDFsiC3XyypG7fWnlCAcpZQuk4Mu0ZnC3Cq0P0Hfw%3D%3D</OfferListingId><Price><Amount>1800</Amount><CurrencyCode>USD</CurrencyCode><FormattedPrice>$18.00</FormattedPrice></Price><AmountSaved><Amount>700</Amount><CurrencyCode>USD</CurrencyCode><FormattedPrice>$7.00</FormattedPrice></AmountSaved><PercentageSaved>28</PercentageSaved><Availability>Usually ships in 24 hours</Availability><AvailabilityAttributes><AvailabilityType>now</AvailabilityType><MinimumHours>0</MinimumHours><MaximumHours>0</MaximumHours></AvailabilityAttributes><Quantity>-1</Quantity><IsEligibleForSuperSaverShipping>1</IsEligibleForSuperSaverShipping><IsFulfilledByAmazon>1</IsFulfilledByAmazon></OfferListing></Offer><Offer><Merchant><MerchantId>A1QJ4UH6FW3UH1</MerchantId><Name>motor_city_books</Name><GlancePage>http://www.amazon.com/gp/help/seller/home.html?seller=A1QJ4UH6FW3UH1</GlancePage><Location><CountryCode>US</CountryCode><StateCode>MI</StateCode></Location><AverageFeedbackRating>4.8</AverageFeedbackRating><TotalFeedback>66294</TotalFeedback></Merchant><OfferAttributes><Condition>Used</Condition><SubCondition>good</SubCondition><ConditionNote>Minimal damage to cover and binding. Pages show light use. With pride from Motor City. All books guaranteed. Best Service, Best Prices.</ConditionNote></OfferAttributes><OfferListing><OfferListingId>uQd81LghDo0jVHKUKP8UV%2FwpYQzjoRG2XqYuCu%2F8Pv3eGFEdFPxAhk1fPOY6KDalT7KdVU%2BAP6VoGz6szv3JpBJQp8gUp3%2FhhxH1LVw1TSZhIdLZN7ehbSABmw6xU1jI</OfferListingId><ExchangeId>Y14M6034743M1466979</ExchangeId><Price><Amount>1939</Amount><CurrencyCode>USD</CurrencyCode><FormattedPrice>$19.39</FormattedPrice></Price><AmountSaved><Amount>561</Amount><CurrencyCode>USD</CurrencyCode><FormattedPrice>$5.61</FormattedPrice></AmountSaved><PercentageSaved>22</PercentageSaved><Availability>Usually ships in 1-2 business days</Availability><AvailabilityAttributes><AvailabilityType>now</AvailabilityType><MinimumHours>24</MinimumHours><MaximumHours>48</MaximumHours></AvailabilityAttributes><Quantity>1</Quantity><IsEligibleForSuperSaverShipping>0</IsEligibleForSuperSaverShipping><IsFulfilledByAmazon>0</IsFulfilledByAmazon></OfferListing></Offer><Offer><Merchant><MerchantId>A3IS4K0BDHACV8</MerchantId><Name>Apollo-Books90</Name><GlancePage>http://www.amazon.com/gp/help/seller/home.html?seller=A3IS4K0BDHACV8</GlancePage><Location><CountryCode>US</CountryCode><StateCode>NY</StateCode></Location><AverageFeedbackRating>4.9</AverageFeedbackRating><TotalFeedback>140</TotalFeedback></Merchant><OfferAttributes><Condition>Used</Condition><SubCondition>verygood</SubCondition><ConditionNote>Trade PB. 8vo. University of Minnesota Press. 1987. 610 pgs. Wrappers in excellent shape, with no wear present. Binding tight and solid. Book is free of ownership marks. Text is clean and free of marks. Photos sent upon request. 772</ConditionNote></OfferAttributes><OfferListing><OfferListingId>Idl5DU1VvdW%2Bdo0VVZTk1BuCWezOIO7H%2FJaCt%2BJkzgWrb4RVU278a8VxbCaJNGQtOKq4f%2FfLINjAWlMhqo8UiNIf8lqD%2BJp5%2F7hd1CR6D%2FQgOciZd8NsMI0j10MXLwMcuKLNVLaq9DM%3D</OfferListingId><ExchangeId>Y12M1273632M5652898</ExchangeId><Price><Amount>1995</Amount><CurrencyCode>USD</CurrencyCode><FormattedPrice>$19.95</FormattedPrice></Price><AmountSaved><Amount>505</Amount><CurrencyCode>USD</CurrencyCode><FormattedPrice>$5.05</FormattedPrice></AmountSaved><PercentageSaved>20</PercentageSaved><Availability>Usually ships in 1-2 business days</Availability><AvailabilityAttributes><AvailabilityType>now</AvailabilityType><MinimumHours>24</MinimumHours><MaximumHours>48</MaximumHours></AvailabilityAttributes><Quantity>1</Quantity><IsEligibleForSuperSaverShipping>0</IsEligibleForSuperSaverShipping><IsFulfilledByAmazon>0</IsFulfilledByAmazon></OfferListing></Offer><Offer><Merchant><MerchantId>A2SUF7Y73WB371</MerchantId><Name>Quick_N_Easy Marketplace</Name><GlancePage>http://www.amazon.com/gp/help/seller/home.html?seller=A2SUF7Y73WB371</GlancePage><Location><CountryCode>US</CountryCode><StateCode>GA</StateCode></Location><AverageFeedbackRating>4.9</AverageFeedbackRating><TotalFeedback>7280</TotalFeedback></Merchant><OfferAttributes><Condition>New</Condition><SubCondition>new</SubCondition><ConditionNote>Brand New Item. Multiple copies available. Expedited and Two Days Delivery options!</ConditionNote></OfferAttributes><OfferListing><OfferListingId>pwUbBxJ6dMw6QOZOgksfOjeWyan9KVmFnMeeHDWIECoDxPtBEbuUXM7eVWODYMmJIHIrif0%2B2xY3%2BjLqlwmD2h0UvY%2Bl2bjd1nwimdu8aDDzfrqG77eh1P08towM5iOQhLUDqtdlyr%2BwvERRn7CypQ%3D%3D</OfferListingId><ExchangeId>Y13M2255528M9001393</ExchangeId><Price><Amount>2170</Amount><CurrencyCode>USD</CurrencyCode><FormattedPrice>$21.70</FormattedPrice></Price><AmountSaved><Amount>330</Amount><CurrencyCode>USD</CurrencyCode><FormattedPrice>$3.30</FormattedPrice></AmountSaved><PercentageSaved>13</PercentageSaved><Availability>Usually ships in 1-2 business days</Availability><AvailabilityAttributes><AvailabilityType>now</AvailabilityType><MinimumHours>24</MinimumHours><MaximumHours>48</MaximumHours></AvailabilityAttributes><Quantity>2</Quantity><IsEligibleForSuperSaverShipping>0</IsEligibleForSuperSaverShipping><IsFulfilledByAmazon>0</IsFulfilledByAmazon></OfferListing></Offer><Offer><Merchant><MerchantId>A2SUF7Y73WB371</MerchantId><Name>Quick_N_Easy Marketplace</Name><GlancePage>http://www.amazon.com/gp/help/seller/home.html?seller=A2SUF7Y73WB371</GlancePage><Location><CountryCode>US</CountryCode><StateCode>GA</StateCode></Location><AverageFeedbackRating>4.9</AverageFeedbackRating><TotalFeedback>7280</TotalFeedback></Merchant><OfferAttributes><Condition>Used</Condition><SubCondition>mint</SubCondition><ConditionNote>Brand New Item. Multiple copies available. Expedited and Two Days Delivery options!</ConditionNote></OfferAttributes><OfferListing><OfferListingId>Xrheem9DyCS4oXttTce8dAlxqvbWcpYB4mH6ga08FkJwf8FNnCaB56PAsFxsQ%2FMwPfNSa1sgRJoQAh%2FllyG9S9jqwpTlxTKrXxztMu2UH6RV4b0%2BWLUrJVQA8%2BSC2%2FIqlrK5IfBiPBiw9vNjc8bIHw%3D%3D</OfferListingId><ExchangeId>Y13M2258623M4336772</ExchangeId><Price><Amount>2170</Amount><CurrencyCode>USD</CurrencyCode><FormattedPrice>$21.70</FormattedPrice></Price><AmountSaved><Amount>330</Amount><CurrencyCode>USD</CurrencyCode><FormattedPrice>$3.30</FormattedPrice></AmountSaved><PercentageSaved>13</PercentageSaved><Availability>Usually ships in 1-2 business days</Availability><AvailabilityAttributes><AvailabilityType>now</AvailabilityType><MinimumHours>24</MinimumHours><MaximumHours>48</MaximumHours></AvailabilityAttributes><Quantity>2</Quantity><IsEligibleForSuperSaverShipping>0</IsEligibleForSuperSaverShipping><IsFulfilledByAmazon>0</IsFulfilledByAmazon></OfferListing></Offer><Offer><Merchant><MerchantId>A2MU9ZILHNPP6L</MerchantId><Name>quality7</Name><GlancePage>http://www.amazon.com/gp/help/seller/home.html?seller=A2MU9ZILHNPP6L</GlancePage><Location><CountryCode>US</CountryCode><StateCode>GA</StateCode></Location><AverageFeedbackRating>4.8</AverageFeedbackRating><TotalFeedback>46328</TotalFeedback></Merchant><OfferAttributes><Condition>Used</Condition><SubCondition>good</SubCondition><ConditionNote>Excellent customer service. Order inquiries handled promptly.</ConditionNote></OfferAttributes><OfferListing><OfferListingId>tHQETFTjpJP1KEpaZ4bhdCHAAhVPyRjV4MwLDmZ%2B%2BBXisdgU4PjibFmRTEUAQH2IQuf4yGkD0nsyiybDK%2BugqBe4TVdsjk2B5QNZrfEe3BEdm18NHTSGLKfCHay0KVf4</OfferListingId><ExchangeId>Y17M0287288M5089461</ExchangeId><Price><Amount>2365</Amount><CurrencyCode>USD</CurrencyCode><FormattedPrice>$23.65</FormattedPrice></Price><AmountSaved><Amount>135</Amount><CurrencyCode>USD</CurrencyCode><FormattedPrice>$1.35</FormattedPrice></AmountSaved><PercentageSaved>5</PercentageSaved><Availability>Usually ships in 1-2 business days</Availability><AvailabilityAttributes><AvailabilityType>now</AvailabilityType><MinimumHours>24</MinimumHours><MaximumHours>48</MaximumHours></AvailabilityAttributes><Quantity>1</Quantity><IsEligibleForSuperSaverShipping>0</IsEligibleForSuperSaverShipping><IsFulfilledByAmazon>0</IsFulfilledByAmazon></OfferListing></Offer><Offer><Merchant><MerchantId>A2Z2CSK1PH6GOI</MerchantId><Name>bordeebook</Name><GlancePage>http://www.amazon.com/gp/help/seller/home.html?seller=A2Z2CSK1PH6GOI</GlancePage><Location><CountryCode>US</CountryCode></Location><AverageFeedbackRating>4.7</AverageFeedbackRating><TotalFeedback>21047</TotalFeedback></Merchant><OfferAttributes><Condition>Used</Condition><SubCondition>good</SubCondition><ConditionNote>Used but in nice shape with normal surface &amp; edge wear. Accessories may not be included. Fast shipping!</ConditionNote></OfferAttributes><OfferListing><OfferListingId>%2FBhIZMexM9UOnwYIdD9dyr7keyw3gWddfUYn1gMkQm%2Fdy%2B0%2Fj3BW%2FuzvO82j3UkUK9knhjD%2BJLZCOfpDhnkBxpguqWf3%2FtGfPAL8LNJkIpSmQcasZjKCJJf3ae360OQ5%2BKUcB%2FqxVVQ%3D</OfferListingId><ExchangeId>Y12M0105825M2752161</ExchangeId><Price><Amount>2374</Amount><CurrencyCode>USD</CurrencyCode><FormattedPrice>$23.74</FormattedPrice></Price><AmountSaved><Amount>126</Amount><CurrencyCode>USD</CurrencyCode><FormattedPrice>$1.26</FormattedPrice></AmountSaved><PercentageSaved>5</PercentageSaved><Availability>Usually ships in 1-2 business days</Availability><AvailabilityAttributes><AvailabilityType>now</AvailabilityType><MinimumHours>24</MinimumHours><MaximumHours>48</MaximumHours></AvailabilityAttributes><Quantity>1</Quantity><IsEligibleForSuperSaverShipping>0</IsEligibleForSuperSaverShipping><IsFulfilledByAmazon>0</IsFulfilledByAmazon></OfferListing></Offer><Offer><Merchant><MerchantId>A3YUX3T6VE9ZS</MerchantId><Name>qualitystar</Name><GlancePage>http://www.amazon.com/gp/help/seller/home.html?seller=A3YUX3T6VE9ZS</GlancePage><Location><CountryCode>US</CountryCode><StateCode>NY</StateCode></Location><AverageFeedbackRating>5.0</AverageFeedbackRating><TotalFeedback>3</TotalFeedback></Merchant><OfferAttributes><Condition>Used</Condition><SubCondition>good</SubCondition><ConditionNote>author's name on inside cover; otherwise pristine (slight crease in spine).</ConditionNote></OfferAttributes><OfferListing><OfferListingId>iklAw4yCSd6mdGqtcbx%2FkeUD%2FAr6C0WT5nTucuGewUzcsOnsLOCQPbB73BXv8YTDsUxeLpAk64e4eZe%2FG0o2ZwYtO0LjAqWKsLvZewXfIs89Pii40cLvQGAlIzzrs1P7uBy8eBcvMLY%3D</OfferListingId><ExchangeId>Y15M0358503M0767087</ExchangeId><Price><Amount>2399</Amount><CurrencyCode>USD</CurrencyCode><FormattedPrice>$23.99</FormattedPrice></Price><AmountSaved><Amount>101</Amount><CurrencyCode>USD</CurrencyCode><FormattedPrice>$1.01</FormattedPrice></AmountSaved><PercentageSaved>4</PercentageSaved><Availability>Usually ships in 1-2 business days</Availability><AvailabilityAttributes><AvailabilityType>now</AvailabilityType><MinimumHours>24</MinimumHours><MaximumHours>48</MaximumHours></AvailabilityAttributes><Quantity>1</Quantity><IsEligibleForSuperSaverShipping>0</IsEligibleForSuperSaverShipping><IsFulfilledByAmazon>0</IsFulfilledByAmazon></OfferListing></Offer></Offers></Item><Item><ASIN>0143105825</ASIN><OfferSummary><LowestNewPrice><Amount>1191</Amount><CurrencyCode>USD</CurrencyCode><FormattedPrice>$11.91</FormattedPrice></LowestNewPrice><LowestUsedPrice><Amount>1192</Amount><CurrencyCode>USD</CurrencyCode><FormattedPrice>$11.92</FormattedPrice></LowestUsedPrice><LowestCollectiblePrice><Amount>15000</Amount><CurrencyCode>USD</CurrencyCode><FormattedPrice>$150.00</FormattedPrice></LowestCollectiblePrice><TotalNew>30</TotalNew><TotalUsed>12</TotalUsed><TotalCollectible>1</TotalCollectible><TotalRefurbished>0</TotalRefurbished></OfferSummary><Offers><TotalOffers>43</TotalOffers><TotalOfferPages>5</TotalOfferPages><Offer><Merchant><MerchantId>A3TJVJMBQL014A</MerchantId><Name>the_book_depository_</Name><GlancePage>http://www.amazon.com/gp/help/seller/home.html?seller=A3TJVJMBQL014A</GlancePage><Location><CountryCode>US</CountryCode><StateCode>DE</StateCode></Location><AverageFeedbackRating>4.8</AverageFeedbackRating><TotalFeedback>110710</TotalFeedback></Merchant><OfferAttributes><Condition>New</Condition><SubCondition>new</SubCondition><ConditionNote>Brand New. Delivery is usually 5 - 8 working days from order, International is by Royal Mail Airmail.</ConditionNote></OfferAttributes><OfferListing><OfferListingId>AcJT42F9RQu6h62mMc%2F6xaYe5ZweuYqvijVXs3YFNr%2FW%2FQ%2Br%2FOU67%2BX%2BkzrYQsgFZ3wZi7PeygBmVCC4mSzoM%2Bz27nYSGsQDFc4c32N2WNmlaYQINgSD89%2FjvV85N3Fq908P2dyQtRM%3D</OfferListingId><ExchangeId>Y19M2442033M8899457</ExchangeId><Price><Amount>1191</Amount><CurrencyCode>USD</CurrencyCode><FormattedPrice>$11.91</FormattedPrice></Price><AmountSaved><Amount>1009</Amount><CurrencyCode>USD</CurrencyCode><FormattedPrice>$10.09</FormattedPrice></AmountSaved><PercentageSaved>46</PercentageSaved><Availability>Usually ships in 1-2 business days</Availability><AvailabilityAttributes><AvailabilityType>now</AvailabilityType><MinimumHours>24</MinimumHours><MaximumHours>48</MaximumHours></AvailabilityAttributes><Quantity>1</Quantity><IsEligibleForSuperSaverShipping>0</IsEligibleForSuperSaverShipping><IsFulfilledByAmazon>0</IsFulfilledByAmazon></OfferListing></Offer><Offer><Merchant><MerchantId>A20EWB51R9YBPO</MerchantId><Name>---greatbookdeals</Name><GlancePage>http://www.amazon.com/gp/help/seller/home.html?seller=A20EWB51R9YBPO</GlancePage><Location><CountryCode>US</CountryCode><StateCode>FL</StateCode></Location><AverageFeedbackRating>4.7</AverageFeedbackRating><TotalFeedback>36277</TotalFeedback></Merchant><OfferAttributes><Condition>Used</Condition><SubCondition>mint</SubCondition><ConditionNote>Absolutely Brand New &amp; In Stock. 100% 30-Day Money Back. Direct from our warehouse. Ships by USPS. 1+ million customers served-In business since 1986. Happy Customers is Our #1 Goal. Toll Free Support</ConditionNote></OfferAttributes><OfferListing><OfferListingId>%2FNtiLWD%2FA7BgED%2FpfQp9Cs%2F3dlulFZojUaFJezHRgCyaGw0PyLdihOQiwVnEMMdcmxNqIAtbpsXs5mwxW%2BAtpP85kX4TwOC2b%2Bh8Ki572xTfRp1IbHNwie8jvpNQdCDefxVHskTH0Yw%3D</OfferListingId><ExchangeId>Y11M3848980M3444090</ExchangeId><Price><Amount>1192</Amount><CurrencyCode>USD</CurrencyCode><FormattedPrice>$11.92</FormattedPrice></Price><AmountSaved><Amount>1008</Amount><CurrencyCode>USD</CurrencyCode><FormattedPrice>$10.08</FormattedPrice></AmountSaved><PercentageSaved>46</PercentageSaved><Availability>Usually ships in 1-2 business days</Availability><AvailabilityAttributes><AvailabilityType>now</AvailabilityType><MinimumHours>24</MinimumHours><MaximumHours>48</MaximumHours></AvailabilityAttributes><Quantity>487</Quantity><IsEligibleForSuperSaverShipping>0</IsEligibleForSuperSaverShipping><IsFulfilledByAmazon>0</IsFulfilledByAmazon></OfferListing></Offer><Offer><Merchant><MerchantId>A20EWB51R9YBPO</MerchantId><Name>---greatbookdeals</Name><GlancePage>http://www.amazon.com/gp/help/seller/home.html?seller=A20EWB51R9YBPO</GlancePage><Location><CountryCode>US</CountryCode><StateCode>FL</StateCode></Location><AverageFeedbackRating>4.7</AverageFeedbackRating><TotalFeedback>36277</TotalFeedback></Merchant><OfferAttributes><Condition>New</Condition><SubCondition>new</SubCondition><ConditionNote>Absolutely Brand New &amp; In Stock. 100% 30-Day Money Back. Direct from our warehouse. Ships by USPS. 1+ million customers served-In business since 1986. Happy Customers is Our #1 Goal. Toll Free Support</ConditionNote></OfferAttributes><OfferListing><OfferListingId>WZnF3PzX%2FSwoiShZ5irplTA5oXZkvhAOMMa1R3LxmrowpHMz8ftoybxG2QSUmee8AZjKYXyA%2B0%2BAjyzozHZWvzxkcDqCkhtxKTYQoTmuw34AiEvrPVdJikBuDRggIaq2gZ7LJrYsvjA%3D</OfferListingId><ExchangeId>Y11M1567708M8523810</ExchangeId><Price><Amount>1192</Amount><CurrencyCode>USD</CurrencyCode><FormattedPrice>$11.92</FormattedPrice></Price><AmountSaved><Amount>1008</Amount><CurrencyCode>USD</CurrencyCode><FormattedPrice>$10.08</FormattedPrice></AmountSaved><PercentageSaved>46</PercentageSaved><Availability>Usually ships in 1-2 business days</Availability><AvailabilityAttributes><AvailabilityType>now</AvailabilityType><MinimumHours>24</MinimumHours><MaximumHours>48</MaximumHours></AvailabilityAttributes><Quantity>495</Quantity><IsEligibleForSuperSaverShipping>0</IsEligibleForSuperSaverShipping><IsFulfilledByAmazon>0</IsFulfilledByAmazon></OfferListing></Offer><Offer><Merchant><MerchantId>A2E9OWRCF7T08Y</MerchantId><Name>pbshopus</Name><GlancePage>http://www.amazon.com/gp/help/seller/home.html?seller=A2E9OWRCF7T08Y</GlancePage><Location><CountryCode>US</CountryCode><StateCode>NJ</StateCode></Location><AverageFeedbackRating>4.7</AverageFeedbackRating><TotalFeedback>24712</TotalFeedback></Merchant><OfferAttributes><Condition>New</Condition><SubCondition>new</SubCondition><ConditionNote>New American book. Shipped within the US in 4-7 days (expedited) or about 10-14 days (standard). Standard can occasionally be slower so we advise using expedited if quicker delivery is important!</ConditionNote></OfferAttributes><OfferListing><OfferListingId>1B3IPTx94ixKSQ7V75dcy14GIhkytU81M453p5iX43V63XTMi5WgFkGl3OfMdapG3u7XttkCLswIkNrg9Lmrm4Aq%2FcfEek9LSQFrlKYu2%2BNfyEVgSNjiVjJsPS94zNvLR1AUrV0x22dlkTnfQFd0Fw%3D%3D</OfferListingId><ExchangeId>Y11M3981673M7711499</ExchangeId><Price><Amount>1252</Amount><CurrencyCode>USD</CurrencyCode><FormattedPrice>$12.52</FormattedPrice></Price><AmountSaved><Amount>948</Amount><CurrencyCode>USD</CurrencyCode><FormattedPrice>$9.48</FormattedPrice></AmountSaved><PercentageSaved>43</PercentageSaved><Availability>Usually ships in 1-2 business days</Availability><AvailabilityAttributes><AvailabilityType>now</AvailabilityType><MinimumHours>24</MinimumHours><MaximumHours>48</MaximumHours></AvailabilityAttributes><Quantity>12</Quantity><IsEligibleForSuperSaverShipping>0</IsEligibleForSuperSaverShipping><IsFulfilledByAmazon>0</IsFulfilledByAmazon></OfferListing></Offer><Offer><Merchant><MerchantId>AGLPMRINU0Q3T</MerchantId><Name>pbshop</Name><GlancePage>http://www.amazon.com/gp/help/seller/home.html?seller=AGLPMRINU0Q3T</GlancePage><Location><CountryCode>GB</CountryCode></Location><AverageFeedbackRating>4.7</AverageFeedbackRating><TotalFeedback>30372</TotalFeedback></Merchant><OfferAttributes><Condition>New</Condition><SubCondition>new</SubCondition><ConditionNote>Brand new book! Delivered direct from our US warehouse by Expedited (4-7 days) or Standard (usually 10-14 days but can be longer). Expedited shipping recommended for speedier delivery. Over 1 million satisfied customers</ConditionNote></OfferAttributes><OfferListing><OfferListingId>DxzF1%2FuD8OjmACsZU%2BkXKbKFdrVgWNcgAZX12KZPokKnGYK4QHzMM7Kom1GQprDLxHjggw604MNOnTTcTKkDiL5BAV7o0KyqNm5DLL5ScVRL%2FWvb00YWA8Dea8YH9N092ZJPxctFnJM%3D</OfferListingId><ExchangeId>Y12M1181029M9303018</ExchangeId><Price><Amount>1252</Amount><CurrencyCode>USD</CurrencyCode><FormattedPrice>$12.52</FormattedPrice></Price><AmountSaved><Amount>948</Amount><CurrencyCode>USD</CurrencyCode><FormattedPrice>$9.48</FormattedPrice></AmountSaved><PercentageSaved>43</PercentageSaved><Availability>Usually ships in 1-2 business days</Availability><AvailabilityAttributes><AvailabilityType>now</AvailabilityType><MinimumHours>24</MinimumHours><MaximumHours>48</MaximumHours></AvailabilityAttributes><Quantity>12</Quantity><IsEligibleForSuperSaverShipping>0</IsEligibleForSuperSaverShipping><IsFulfilledByAmazon>0</IsFulfilledByAmazon></OfferListing></Offer><Offer><Merchant><MerchantId>A1KIF2Y9A1PQYE</MerchantId><Name>allnewbooks</Name><GlancePage>http://www.amazon.com/gp/help/seller/home.html?seller=A1KIF2Y9A1PQYE</GlancePage><Location><CountryCode>US</CountryCode><StateCode>NJ</StateCode></Location><AverageFeedbackRating>4.5</AverageFeedbackRating><TotalFeedback>17586</TotalFeedback></Merchant><OfferAttributes><Condition>New</Condition><SubCondition>new</SubCondition><ConditionNote>BRAND NEW</ConditionNote></OfferAttributes><OfferListing><OfferListingId>0tsTYSKSn3lvZ7dmhiMjrZPyUiOSQOckMSffGKdQYLnDPFyK8mNUIwCD1I6iCvbDDwwd9EpHLZ8CfWearWLXNVxqJrZShQVpo2SAW8SGrlwuPn89yPEjcte%2F8w9rnL0eWPLJgtMocig%3D</OfferListingId><ExchangeId>Y11M1470360M3110989</ExchangeId><Price><Amount>1280</Amount><CurrencyCode>USD</CurrencyCode><FormattedPrice>$12.80</FormattedPrice></Price><AmountSaved><Amount>920</Amount><CurrencyCode>USD</CurrencyCode><FormattedPrice>$9.20</FormattedPrice></AmountSaved><PercentageSaved>42</PercentageSaved><Availability>Usually ships in 1-2 business days</Availability><AvailabilityAttributes><AvailabilityType>now</AvailabilityType><MinimumHours>24</MinimumHours><MaximumHours>48</MaximumHours></AvailabilityAttributes><Quantity>100</Quantity><IsEligibleForSuperSaverShipping>0</IsEligibleForSuperSaverShipping><IsFulfilledByAmazon>0</IsFulfilledByAmazon></OfferListing></Offer><Offer><Merchant><MerchantId>A3HY4G4FBZK8H4</MerchantId><Name>BuriedintheSand</Name><GlancePage>http://www.amazon.com/gp/help/seller/home.html?seller=A3HY4G4FBZK8H4</GlancePage><Location><CountryCode>US</CountryCode><StateCode>CO</StateCode></Location><AverageFeedbackRating>0.0</AverageFeedbackRating><TotalFeedback>0</TotalFeedback></Merchant><OfferAttributes><Condition>New</Condition><SubCondition>new</SubCondition></OfferAttributes><OfferListing><OfferListingId>Jk%2F8TxVCgSSa1kQfV0JysMlh6mUSiwGbF9kR8ZCdUSUPGTAKXvq4dRQZCnqvku%2FK2NyEl8iBhbSgITnOSeQYaTCRBbS4htEBF8IOIx3CrvWUv6NZp2R58hUmO8MXdgA87gla5BLwWNvBrH%2FoJY%2BORA%3D%3D</OfferListingId><ExchangeId>Y19M6577051M0679616</ExchangeId><Price><Amount>1300</Amount><CurrencyCode>USD</CurrencyCode><FormattedPrice>$13.00</FormattedPrice></Price><AmountSaved><Amount>900</Amount><CurrencyCode>USD</CurrencyCode><FormattedPrice>$9.00</FormattedPrice></AmountSaved><PercentageSaved>41</PercentageSaved><Availability>Usually ships in 1-2 business days</Availability><AvailabilityAttributes><AvailabilityType>now</AvailabilityType><MinimumHours>24</MinimumHours><MaximumHours>48</MaximumHours></AvailabilityAttributes><Quantity>1</Quantity><IsEligibleForSuperSaverShipping>0</IsEligibleForSuperSaverShipping><IsFulfilledByAmazon>0</IsFulfilledByAmazon></OfferListing></Offer><Offer><Merchant><MerchantId>A1KIF2Y9A1PQYE</MerchantId><Name>allnewbooks</Name><GlancePage>http://www.amazon.com/gp/help/seller/home.html?seller=A1KIF2Y9A1PQYE</GlancePage><Location><CountryCode>US</CountryCode><StateCode>NJ</StateCode></Location><AverageFeedbackRating>4.5</AverageFeedbackRating><TotalFeedback>17586</TotalFeedback></Merchant><OfferAttributes><Condition>Used</Condition><SubCondition>mint</SubCondition><ConditionNote>BRAND NEW</ConditionNote></OfferAttributes><OfferListing><OfferListingId>VKeqSZZ5JE6t2aY3e6HWvRjxwC%2BpiGa79PvdCm9cs%2Bj3T54LPmc7%2FokvgqxmaW2PRQZ1HPGOmK%2BQv4LmBO17%2FyTDMjZ6WdQdfvvqyvZ9FtvAiFwWiClCO5GEdRXgScQFOD2PVJe6O%2Fc%3D</OfferListingId><ExchangeId>Y11M0209708M5718954</ExchangeId><Price><Amount>1329</Amount><CurrencyCode>USD</CurrencyCode><FormattedPrice>$13.29</FormattedPrice></Price><AmountSaved><Amount>871</Amount><CurrencyCode>USD</CurrencyCode><FormattedPrice>$8.71</FormattedPrice></AmountSaved><PercentageSaved>40</PercentageSaved><Availability>Usually ships in 1-2 business days</Availability><AvailabilityAttributes><AvailabilityType>now</AvailabilityType><MinimumHours>24</MinimumHours><MaximumHours>48</MaximumHours></AvailabilityAttributes><Quantity>100</Quantity><IsEligibleForSuperSaverShipping>0</IsEligibleForSuperSaverShipping><IsFulfilledByAmazon>0</IsFulfilledByAmazon></OfferListing></Offer><Offer><Merchant><MerchantId>A15AOQYSLLO2CF</MerchantId><Name>thermite-media</Name><GlancePage>http://www.amazon.com/gp/help/seller/home.html?seller=A15AOQYSLLO2CF</GlancePage><Location><CountryCode>US</CountryCode><StateCode>NC</StateCode></Location><AverageFeedbackRating>4.8</AverageFeedbackRating><TotalFeedback>55506</TotalFeedback></Merchant><OfferAttributes><Condition>New</Condition><SubCondition>new</SubCondition><ConditionNote>BRAND NEW. 30 Day Satisfaction Guarantee. Quick International Airmail!</ConditionNote></OfferAttributes><OfferListing><OfferListingId>OeaP2ZLl4N681gkiFekj01fWTM4aV8WSz7AkuTQJUVBHnpU1r9jKa9QWkx60Nwv9jeg%2B22S9XpnangDeH5n%2FKefa4L1CFjfT5NtYg1%2FfR7JO%2BeBJ9oa3O0gstTvKvGPxjeW8ThMHMKWKdPzSxJiyuA%3D%3D</OfferListingId><ExchangeId>Y11M4816761M6624986</ExchangeId><Price><Amount>1385</Amount><CurrencyCode>USD</CurrencyCode><FormattedPrice>$13.85</FormattedPrice></Price><AmountSaved><Amount>815</Amount><CurrencyCode>USD</CurrencyCode><FormattedPrice>$8.15</FormattedPrice></AmountSaved><PercentageSaved>37</PercentageSaved><Availability>Usually ships in 1-2 business days</Availability><AvailabilityAttributes><AvailabilityType>now</AvailabilityType><MinimumHours>24</MinimumHours><MaximumHours>48</MaximumHours></AvailabilityAttributes><Quantity>13</Quantity><IsEligibleForSuperSaverShipping>0</IsEligibleForSuperSaverShipping><IsFulfilledByAmazon>0</IsFulfilledByAmazon></OfferListing></Offer><Offer><Merchant><MerchantId>AHNEEZ9CVAP3Q</MerchantId><Name>---superbookdeals</Name><GlancePage>http://www.amazon.com/gp/help/seller/home.html?seller=AHNEEZ9CVAP3Q</GlancePage><Location><CountryCode>US</CountryCode><StateCode>IN</StateCode></Location><AverageFeedbackRating>4.6</AverageFeedbackRating><TotalFeedback>47002</TotalFeedback></Merchant><OfferAttributes><Condition>New</Condition><SubCondition>new</SubCondition><ConditionNote>Brand New, Perfect Condition, Please allow 4-14 business days for delivery. 100% Money Back Guarantee, Over 1,000,000 customers served.</ConditionNote></OfferAttributes><OfferListing><OfferListingId>HpxCD5WjRIs%2FrgGwjagwzkM6gQS5JSldk1Lquy9y4daYqUqT83X1yamjDhAJ8L1NC%2BHD9%2BoQSLeHNlZszWSU5IbVdfcL5qRF1aAIfthKJX%2F7MJKpXbasGTZohk54G7AWRTVUbIAgORw6uTMfINurAg%3D%3D</OfferListingId><ExchangeId>Y11M0530231M5949393</ExchangeId><Price><Amount>1386</Amount><CurrencyCode>USD</CurrencyCode><FormattedPrice>$13.86</FormattedPrice></Price><AmountSaved><Amount>814</Amount><CurrencyCode>USD</CurrencyCode><FormattedPrice>$8.14</FormattedPrice></AmountSaved><PercentageSaved>37</PercentageSaved><Availability>Usually ships in 1-2 business days</Availability><AvailabilityAttributes><AvailabilityType>now</AvailabilityType><MinimumHours>24</MinimumHours><MaximumHours>48</MaximumHours></AvailabilityAttributes><Quantity>999</Quantity><IsEligibleForSuperSaverShipping>0</IsEligibleForSuperSaverShipping><IsFulfilledByAmazon>0</IsFulfilledByAmazon></OfferListing></Offer></Offers></Item><Item><ASIN>0485113600</ASIN><OfferSummary><LowestNewPrice><Amount>15082</Amount><CurrencyCode>USD</CurrencyCode><FormattedPrice>$150.82</FormattedPrice></LowestNewPrice><LowestUsedPrice><Amount>15063</Amount><CurrencyCode>USD</CurrencyCode><FormattedPrice>$150.63</FormattedPrice></LowestUsedPrice><TotalNew>8</TotalNew><TotalUsed>6</TotalUsed><TotalCollectible>0</TotalCollectible><TotalRefurbished>0</TotalRefurbished></OfferSummary><Offers><TotalOffers>14</TotalOffers><TotalOfferPages>2</TotalOfferPages><Offer><Merchant><MerchantId>A2H6NH4SQYFZ4M</MerchantId><Name>Livrenoir</Name><GlancePage>http://www.amazon.com/gp/help/seller/home.html?seller=A2H6NH4SQYFZ4M</GlancePage><Location><CountryCode>GB</CountryCode></Location><AverageFeedbackRating>4.8</AverageFeedbackRating><TotalFeedback>4652</TotalFeedback></Merchant><OfferAttributes><Condition>Used</Condition><SubCondition>verygood</SubCondition><ConditionNote>Specializing in rare and out-of-print titles. Dispatched from London via Royal Mail, with an average delivery timeframe of 7 to 15 working days.</ConditionNote></OfferAttributes><OfferListing><OfferListingId>6Fcxjq%2BUrDRAEy2I0hrR%2B5kREopbsSMBrlEa%2FuIQZt7hY5B1xOGMdFnMn%2FektUMdvLn6yAvsfoSIv45l%2FcwEh57uO5NnXs6Dhj3wTOvmXpYpo52CI9D%2FUN0g7dIKkiKblWYpUiaedaw%3D</OfferListingId><ExchangeId>Y11M5189197M8248869</ExchangeId><Price><Amount>15063</Amount><CurrencyCode>USD</CurrencyCode><FormattedPrice>$150.63</FormattedPrice></Price><AmountSaved><Amount>2937</Amount><CurrencyCode>USD</CurrencyCode><FormattedPrice>$29.37</FormattedPrice></AmountSaved><PercentageSaved>16</PercentageSaved><Availability>Usually ships in 1-2 business days</Availability><AvailabilityAttributes><AvailabilityType>now</AvailabilityType><MinimumHours>24</MinimumHours><MaximumHours>48</MaximumHours></AvailabilityAttributes><Quantity>1</Quantity><IsEligibleForSuperSaverShipping>0</IsEligibleForSuperSaverShipping><IsFulfilledByAmazon>0</IsFulfilledByAmazon></OfferListing></Offer><Offer><Merchant><MerchantId>AHNEEZ9CVAP3Q</MerchantId><Name>---superbookdeals</Name><GlancePage>http://www.amazon.com/gp/help/seller/home.html?seller=AHNEEZ9CVAP3Q</GlancePage><Location><CountryCode>US</CountryCode><StateCode>IN</StateCode></Location><AverageFeedbackRating>4.6</AverageFeedbackRating><TotalFeedback>47002</TotalFeedback></Merchant><OfferAttributes><Condition>Used</Condition><SubCondition>mint</SubCondition><ConditionNote>Brand New, Perfect Condition, Please allow 4-14 business days for delivery. 100% Money Back Guarantee, Over 1,000,000 customers served.</ConditionNote></OfferAttributes><OfferListing><OfferListingId>vgzz%2BOr4oXXxzxdadNrSEfMizwENeTzmpoM%2F1BnjUfh6067tLa0bhkIfZk%2BrYSqpH4FYQnL6u3JJlPFWL0Hwntq8sDKCCkj04yoNI47zeTJvurwORMTzVKIu7pAsgc%2F1%2BlKCoNyWWcGMDI1OmJ4nVA%3D%3D</OfferListingId><ExchangeId>Y11M1459563M9029263</ExchangeId><Price><Amount>15064</Amount><CurrencyCode>USD</CurrencyCode><FormattedPrice>$150.64</FormattedPrice></Price><AmountSaved><Amount>2936</Amount><CurrencyCode>USD</CurrencyCode><FormattedPrice>$29.36</FormattedPrice></AmountSaved><PercentageSaved>16</PercentageSaved><Availability>Usually ships in 1-2 business days</Availability><AvailabilityAttributes><AvailabilityType>now</AvailabilityType><MinimumHours>24</MinimumHours><MaximumHours>48</MaximumHours></AvailabilityAttributes><Quantity>999</Quantity><IsEligibleForSuperSaverShipping>0</IsEligibleForSuperSaverShipping><IsFulfilledByAmazon>0</IsFulfilledByAmazon></OfferListing></Offer><Offer><Merchant><MerchantId>AHNEEZ9CVAP3Q</MerchantId><Name>---superbookdeals</Name><GlancePage>http://www.amazon.com/gp/help/seller/home.html?seller=AHNEEZ9CVAP3Q</GlancePage><Location><CountryCode>US</CountryCode><StateCode>IN</StateCode></Location><AverageFeedbackRating>4.6</AverageFeedbackRating><TotalFeedback>47002</TotalFeedback></Merchant><OfferAttributes><Condition>New</Condition><SubCondition>new</SubCondition><ConditionNote>Brand New, Perfect Condition, Please allow 4-14 business days for delivery. 100% Money Back Guarantee, Over 1,000,000 customers served.</ConditionNote></OfferAttributes><OfferListing><OfferListingId>qkJcssHJ82LEivZ6da%2BHemBdEY7A8vkGXmTAfCEWNIyRXtiovdYiJViFrNBsEQ03gOFB7Gcic1DG0c9nUHgppejrVNNnXwXlwumbcFH5Ezn2Yv4kus%2BXb290N%2B8Hpc29%2BoZ6%2BCzWboh85y%2BkSChC9Q%3D%3D</OfferListingId><ExchangeId>Y11M4365232M6719268</ExchangeId><Price><Amount>15082</Amount><CurrencyCode>USD</CurrencyCode><FormattedPrice>$150.82</FormattedPrice></Price><AmountSaved><Amount>2918</Amount><CurrencyCode>USD</CurrencyCode><FormattedPrice>$29.18</FormattedPrice></AmountSaved><PercentageSaved>16</PercentageSaved><Availability>Usually ships in 1-2 business days</Availability><AvailabilityAttributes><AvailabilityType>now</AvailabilityType><MinimumHours>24</MinimumHours><MaximumHours>48</MaximumHours></AvailabilityAttributes><Quantity>999</Quantity><IsEligibleForSuperSaverShipping>0</IsEligibleForSuperSaverShipping><IsFulfilledByAmazon>0</IsFulfilledByAmazon></OfferListing></Offer><Offer><Merchant><MerchantId>AGLPMRINU0Q3T</MerchantId><Name>pbshop</Name><GlancePage>http://www.amazon.com/gp/help/seller/home.html?seller=AGLPMRINU0Q3T</GlancePage><Location><CountryCode>GB</CountryCode></Location><AverageFeedbackRating>4.7</AverageFeedbackRating><TotalFeedback>30372</TotalFeedback></Merchant><OfferAttributes><Condition>New</Condition><SubCondition>new</SubCondition><ConditionNote>New printed-on-demand paperback delivered from the UK in 10-14 days.</ConditionNote></OfferAttributes><OfferListing><OfferListingId>Dh0iYY2UVn%2FCu6ZmY%2BB0L8pbu6bvrgCla%2BLur%2Bg6ap7eJfyTKsGcCrxQSEI9YxwjAmXh2ilEjs6eJyBVX7RUDf3BExkewR3J7H%2Fvjp%2Ft2NTzfWD8xJu68SaBXUABGUD7XBA4%2Bfvhj00%3D</OfferListingId><ExchangeId>Y12M2288863M8160573</ExchangeId><Price><Amount>15083</Amount><CurrencyCode>USD</CurrencyCode><FormattedPrice>$150.83</FormattedPrice></Price><AmountSaved><Amount>2917</Amount><CurrencyCode>USD</CurrencyCode><FormattedPrice>$29.17</FormattedPrice></AmountSaved><PercentageSaved>16</PercentageSaved><Availability>Usually ships in 1-2 business days</Availability><AvailabilityAttributes><AvailabilityType>now</AvailabilityType><MinimumHours>24</MinimumHours><MaximumHours>48</MaximumHours></AvailabilityAttributes><Quantity>500</Quantity><IsEligibleForSuperSaverShipping>0</IsEligibleForSuperSaverShipping><IsFulfilledByAmazon>0</IsFulfilledByAmazon></OfferListing></Offer><Offer><Merchant><MerchantId>ATVPDKIKX0DER</MerchantId><Name>Amazon.com</Name><GlancePage>http://www.amazon.com/gp/help/seller/home.html?seller=ATVPDKIKX0DER</GlancePage><AverageFeedbackRating>0.0</AverageFeedbackRating><TotalFeedback>0</TotalFeedback></Merchant><OfferAttributes><Condition>New</Condition><SubCondition>new</SubCondition></OfferAttributes><OfferListing><OfferListingId>EKT6vqVMpESz9dGpFYmDtZjlMVzIP7RSZpxWrUFbAxnXJWZl5DIOpnWe8Esfe9CVH2qZZHDZQcEtjBDI4wdVPw%3D%3D</OfferListingId><Price><Amount>16200</Amount><CurrencyCode>USD</CurrencyCode><FormattedPrice>$162.00</FormattedPrice></Price><AmountSaved><Amount>1800</Amount><CurrencyCode>USD</CurrencyCode><FormattedPrice>$18.00</FormattedPrice></AmountSaved><PercentageSaved>10</PercentageSaved><Availability>Usually ships in 24 hours</Availability><AvailabilityAttributes><AvailabilityType>now</AvailabilityType><MinimumHours>24</MinimumHours><MaximumHours>24</MaximumHours></AvailabilityAttributes><Quantity>-1</Quantity><IsEligibleForSuperSaverShipping>1</IsEligibleForSuperSaverShipping><IsFulfilledByAmazon>1</IsFulfilledByAmazon></OfferListing></Offer><Offer><Merchant><MerchantId>A2MU9ZILHNPP6L</MerchantId><Name>quality7</Name><GlancePage>http://www.amazon.com/gp/help/seller/home.html?seller=A2MU9ZILHNPP6L</GlancePage><Location><CountryCode>US</CountryCode><StateCode>GA</StateCode></Location><AverageFeedbackRating>4.8</AverageFeedbackRating><TotalFeedback>46328</TotalFeedback></Merchant><OfferAttributes><Condition>Used</Condition><SubCondition>mint</SubCondition><ConditionNote>Excellent customer service. Order inquiries handled promptly.</ConditionNote></OfferAttributes><OfferListing><OfferListingId>5KnopN2%2Be3QRr5oPEZx1HZNvhmmpkctiTQGHt%2FYzcga6QH7zcxQyge%2FU%2FsWT7CtRQqK5I3ixI1M3%2BSIf3%2BSVGx%2Fe7DwlvZ3%2FhnteW5wl9DHt4uDqjuaOpLX2FEQ%2BybOb</OfferListingId><ExchangeId>Y17M5723610M6084677</ExchangeId><Price><Amount>16852</Amount><CurrencyCode>USD</CurrencyCode><FormattedPrice>$168.52</FormattedPrice></Price><AmountSaved><Amount>1148</Amount><CurrencyCode>USD</CurrencyCode><FormattedPrice>$11.48</FormattedPrice></AmountSaved><PercentageSaved>6</PercentageSaved><Availability>Usually ships in 1-2 business days</Availability><AvailabilityAttributes><AvailabilityType>now</AvailabilityType><MinimumHours>24</MinimumHours><MaximumHours>48</MaximumHours></AvailabilityAttributes><Quantity>1</Quantity><IsEligibleForSuperSaverShipping>0</IsEligibleForSuperSaverShipping><IsFulfilledByAmazon>0</IsFulfilledByAmazon></OfferListing></Offer><Offer><Merchant><MerchantId>A2E9OWRCF7T08Y</MerchantId><Name>pbshopus</Name><GlancePage>http://www.amazon.com/gp/help/seller/home.html?seller=A2E9OWRCF7T08Y</GlancePage><Location><CountryCode>US</CountryCode><StateCode>NJ</StateCode></Location><AverageFeedbackRating>4.7</AverageFeedbackRating><TotalFeedback>24712</TotalFeedback></Merchant><OfferAttributes><Condition>New</Condition><SubCondition>new</SubCondition><ConditionNote>New book. Shipped within the US in 10-14 days.</ConditionNote></OfferAttributes><OfferListing><OfferListingId>zdkv8zILFwacpoERuvAs56vMmfBxp5IpZ7eWDbOv4TW0OWiVYWyNUSAgKXiUMYtk8JWaIkXhzXu1yZqBJvf%2B8vyze9zbIbQXseAiU4OAoABtUKsZtwkPxbEZs8VK6ROg2X7B0RSVAR7bDdoIkID%2Byw%3D%3D</OfferListingId><ExchangeId>Y11M0369747M8900270</ExchangeId><Price><Amount>16854</Amount><CurrencyCode>USD</CurrencyCode><FormattedPrice>$168.54</FormattedPrice></Price><AmountSaved><Amount>1146</Amount><CurrencyCode>USD</CurrencyCode><FormattedPrice>$11.46</FormattedPrice></AmountSaved><PercentageSaved>6</PercentageSaved><Availability>Usually ships in 1-2 business days</Availability><AvailabilityAttributes><AvailabilityType>now</AvailabilityType><MinimumHours>24</MinimumHours><MaximumHours>48</MaximumHours></AvailabilityAttributes><Quantity>100</Quantity><IsEligibleForSuperSaverShipping>0</IsEligibleForSuperSaverShipping><IsFulfilledByAmazon>0</IsFulfilledByAmazon></OfferListing></Offer><Offer><Merchant><MerchantId>A1VWB59GK2JKNN</MerchantId><Name>AnyEdition</Name><GlancePage>http://www.amazon.com/gp/help/seller/home.html?seller=A1VWB59GK2JKNN</GlancePage><Location><CountryCode>US</CountryCode><StateCode>FL</StateCode></Location><AverageFeedbackRating>4.8</AverageFeedbackRating><TotalFeedback>1175</TotalFeedback></Merchant><OfferAttributes><Condition>New</Condition><SubCondition>new</SubCondition><ConditionNote>Brand New. Dispatched from USA. Expedited and International shipping available. Tracking facility available on request for US Destinations. Exceptional customer service.</ConditionNote></OfferAttributes><OfferListing><OfferListingId>D9r%2BeH%2FWA9QuYllwaGP%2FZMI7ivAQPZaos86YRTmay8%2BgNSCgtYOpYC6rZw71VbLgisVfUzWG1z3GRdeD5%2BTTgOPopv1dlY6IOjSTaRvKF0KGpuOBCuGXmjYkBJSkf2Bjp7W4RWLWVzs%3D</OfferListingId><ExchangeId>Y17M2565894M6422580</ExchangeId><Price><Amount>19044</Amount><CurrencyCode>USD</CurrencyCode><FormattedPrice>$190.44</FormattedPrice></Price><Availability>Usually ships in 1-2 business days</Availability><AvailabilityAttributes><AvailabilityType>now</AvailabilityType><MinimumHours>24</MinimumHours><MaximumHours>48</MaximumHours></AvailabilityAttributes><Quantity>100</Quantity><IsEligibleForSuperSaverShipping>0</IsEligibleForSuperSaverShipping><IsFulfilledByAmazon>0</IsFulfilledByAmazon></OfferListing></Offer><Offer><Merchant><MerchantId>A3TJVJMBQL014A</MerchantId><Name>the_book_depository_</Name><GlancePage>http://www.amazon.com/gp/help/seller/home.html?seller=A3TJVJMBQL014A</GlancePage><Location><CountryCode>US</CountryCode><StateCode>DE</StateCode></Location><AverageFeedbackRating>4.8</AverageFeedbackRating><TotalFeedback>110710</TotalFeedback></Merchant><OfferAttributes><Condition>New</Condition><SubCondition>new</SubCondition><ConditionNote>Brand New. Delivery is usually 5 - 8 working days from order, International is by Royal Mail Airmail</ConditionNote></OfferAttributes><OfferListing><OfferListingId>%2BrBAIc1xLb8he0QoYQkGuP9%2FF5TyqIRl%2BOx06ZR0za222UXaDs%2FroHgOEV%2Bnj4bb2wHkUC3Na%2FPXouxn6QE%2BUOuvCllPQYcb6II7OfZy4F2magEQryRv%2FRcnRMXlmYTQ6dKsNS0NN10%3D</OfferListingId><ExchangeId>Y19M2200427M8918745</ExchangeId><Price><Amount>19132</Amount><CurrencyCode>USD</CurrencyCode><FormattedPrice>$191.32</FormattedPrice></Price><Availability>Usually ships in 1-2 business days</Availability><AvailabilityAttributes><AvailabilityType>now</AvailabilityType><MinimumHours>24</MinimumHours><MaximumHours>48</MaximumHours></AvailabilityAttributes><Quantity>100</Quantity><IsEligibleForSuperSaverShipping>0</IsEligibleForSuperSaverShipping><IsFulfilledByAmazon>0</IsFulfilledByAmazon></OfferListing></Offer><Offer><Merchant><MerchantId>ASYDZOX0HKBSE</MerchantId><Name>any_book</Name><GlancePage>http://www.amazon.com/gp/help/seller/home.html?seller=ASYDZOX0HKBSE</GlancePage><Location><CountryCode>US</CountryCode><StateCode>FL</StateCode></Location><AverageFeedbackRating>4.7</AverageFeedbackRating><TotalFeedback>57247</TotalFeedback></Merchant><OfferAttributes><Condition>Used</Condition><SubCondition>verygood</SubCondition><ConditionNote>Huge seller with millions of transactions! Satisfaction Guaranteed.</ConditionNote></OfferAttributes><OfferListing><OfferListingId>c2IWmiUrLcsczkQneNiVnJOLR6sNJs%2BsFQUG1lPUnKTSz9viHuJcF3lHQ1Olyfd%2FNEGYDeSBCdlWbHrhGmahP1gC%2BpH71gOQDujAuj%2FQXSWftksVWHwBsuuOkobG3423k9U5yqLUTug%3D</OfferListingId><ExchangeId>Y12M3897597M7658373</ExchangeId><Price><Amount>21271</Amount><CurrencyCode>USD</CurrencyCode><FormattedPrice>$212.71</FormattedPrice></Price><Availability>Usually ships in 1-2 business days</Availability><AvailabilityAttributes><AvailabilityType>now</AvailabilityType><MinimumHours>24</MinimumHours><MaximumHours>48</MaximumHours></AvailabilityAttributes><Quantity>3</Quantity><IsEligibleForSuperSaverShipping>0</IsEligibleForSuperSaverShipping><IsFulfilledByAmazon>0</IsFulfilledByAmazon></OfferListing></Offer></Offers></Item><Item><ASIN>0816616779</ASIN><OfferSummary><LowestNewPrice><Amount>1710</Amount><CurrencyCode>USD</CurrencyCode><FormattedPrice>$17.10</FormattedPrice></LowestNewPrice><LowestUsedPrice><Amount>1091</Amount><CurrencyCode>USD</CurrencyCode><FormattedPrice>$10.91</FormattedPrice></LowestUsedPrice><TotalNew>13</TotalNew><TotalUsed>16</TotalUsed><TotalCollectible>0</TotalCollectible><TotalRefurbished>0</TotalRefurbished></OfferSummary><Offers><TotalOffers>29</TotalOffers><TotalOfferPages>3</TotalOfferPages><Offer><Merchant><MerchantId>A3GHQ052CPNYKR</MerchantId><Name>cherrybooks</Name><GlancePage>http://www.amazon.com/gp/help/seller/home.html?seller=A3GHQ052CPNYKR</GlancePage><Location><CountryCode>US</CountryCode><StateCode>CA</StateCode></Location><AverageFeedbackRating>4.7</AverageFeedbackRating><TotalFeedback>9850</TotalFeedback></Merchant><OfferAttributes><Condition>Used</Condition><SubCondition>verygood</SubCondition><ConditionNote>SHIPS SAME DAY</ConditionNote></OfferAttributes><OfferListing><OfferListingId>aFcE6PPjZBaVJC2MkKmUMyMR5rsgO28UFyYv9idT5N916AVpzrKXjKYD7Z8M%2BaL%2Fwsp8gecqSmpImlqOX6tfgSZ2h2yhx60OS0QrkP77kNDRVEapoHot51uAc95EdjwpLe32HLR1ikY%3D</OfferListingId><ExchangeId>Y12M6892771M3666018</ExchangeId><Price><Amount>1091</Amount><CurrencyCode>USD</CurrencyCode><FormattedPrice>$10.91</FormattedPrice></Price><AmountSaved><Amount>909</Amount><CurrencyCode>USD</CurrencyCode><FormattedPrice>$9.09</FormattedPrice></AmountSaved><PercentageSaved>45</PercentageSaved><Availability>Usually ships in 1-2 business days</Availability><AvailabilityAttributes><AvailabilityType>now</AvailabilityType><MinimumHours>24</MinimumHours><MaximumHours>48</MaximumHours></AvailabilityAttributes><Quantity>1</Quantity><IsEligibleForSuperSaverShipping>0</IsEligibleForSuperSaverShipping><IsFulfilledByAmazon>0</IsFulfilledByAmazon></OfferListing></Offer><Offer><Merchant><MerchantId>AF1Q8Z7T8PCWA</MerchantId><Name>swinehartbooks</Name><GlancePage>http://www.amazon.com/gp/help/seller/home.html?seller=AF1Q8Z7T8PCWA</GlancePage><Location><CountryCode>US</CountryCode><StateCode>TN</StateCode></Location><AverageFeedbackRating>4.9</AverageFeedbackRating><TotalFeedback>1505</TotalFeedback></Merchant><OfferAttributes><Condition>Used</Condition><SubCondition>acceptable</SubCondition><ConditionNote>underlining and highlighting</ConditionNote></OfferAttributes><OfferListing><OfferListingId>Qb6sw3L69m%2FG3YBRDgOF%2Fwrmrk%2BvrRSZTCZAvs%2BvjBYCf1OulCC969dHemFp1U%2FZzZcX%2BlAQk38e3cf5CufvsOJacskz8%2BbCDKjhX73Za8P%2BKogPKldSS3C8AP%2F3MDzOEyfiStimd6U%3D</OfferListingId><ExchangeId>Y12M6674941M1073664</ExchangeId><Price><Amount>1091</Amount><CurrencyCode>USD</CurrencyCode><FormattedPrice>$10.91</FormattedPrice></Price><AmountSaved><Amount>909</Amount><CurrencyCode>USD</CurrencyCode><FormattedPrice>$9.09</FormattedPrice></AmountSaved><PercentageSaved>45</PercentageSaved><Availability>Usually ships in 1-2 business days</Availability><AvailabilityAttributes><AvailabilityType>now</AvailabilityType><MinimumHours>24</MinimumHours><MaximumHours>48</MaximumHours></AvailabilityAttributes><Quantity>1</Quantity><IsEligibleForSuperSaverShipping>0</IsEligibleForSuperSaverShipping><IsFulfilledByAmazon>0</IsFulfilledByAmazon></OfferListing></Offer><Offer><Merchant><MerchantId>A3A3EYBOM51W2</MerchantId><Name>big_river_books</Name><GlancePage>http://www.amazon.com/gp/help/seller/home.html?seller=A3A3EYBOM51W2</GlancePage><Location><CountryCode>US</CountryCode><StateCode>GA</StateCode></Location><AverageFeedbackRating>4.8</AverageFeedbackRating><TotalFeedback>17529</TotalFeedback></Merchant><OfferAttributes><Condition>Used</Condition><SubCondition>good</SubCondition><ConditionNote>Cover and pages may have some wear or writing. Binding is tight. We ship daily Monday-Friday. Delivery Confirmation included on all domestic orders.</ConditionNote></OfferAttributes><OfferListing><OfferListingId>pwwT9mM4QS25AjPkv02MWBbA70Lp0JPCaOat0t57WCz3tDk9eNkeY1R64SGgB%2FAmrrgDvCxrAVsO%2B24hbF3M9AjAxA13%2F1tgbjNIPyY%2BxDSdaxb57sGy9qiUSclqXJRaQwdOKC7qnt8%3D</OfferListingId><ExchangeId>Y14M5759406M5118174</ExchangeId><Price><Amount>1091</Amount><CurrencyCode>USD</CurrencyCode><FormattedPrice>$10.91</FormattedPrice></Price><AmountSaved><Amount>909</Amount><CurrencyCode>USD</CurrencyCode><FormattedPrice>$9.09</FormattedPrice></AmountSaved><PercentageSaved>45</PercentageSaved><Availability>Usually ships in 1-2 business days</Availability><AvailabilityAttributes><AvailabilityType>now</AvailabilityType><MinimumHours>24</MinimumHours><MaximumHours>48</MaximumHours></AvailabilityAttributes><Quantity>1</Quantity><IsEligibleForSuperSaverShipping>0</IsEligibleForSuperSaverShipping><IsFulfilledByAmazon>0</IsFulfilledByAmazon></OfferListing></Offer><Offer><Merchant><MerchantId>A2FXOB8Q50FXXB</MerchantId><Name>TheSteinerStore</Name><GlancePage>http://www.amazon.com/gp/help/seller/home.html?seller=A2FXOB8Q50FXXB</GlancePage><Location><CountryCode>US</CountryCode><StateCode>FL</StateCode></Location><AverageFeedbackRating>0.0</AverageFeedbackRating><TotalFeedback>0</TotalFeedback></Merchant><OfferAttributes><Condition>Used</Condition><SubCondition>mint</SubCondition><ConditionNote>Like Brand New</ConditionNote></OfferAttributes><OfferListing><OfferListingId>EUyU3F%2BC7O4JVxJ0lIwSBi8FRHBlDSWdPRYL4Ikbs9A5HmlFwtR89wYa6Eb0c0gcrBRoivU1LX0sEMACK5PCprgeYoKgRZeHoJM%2BHh815WFva7QDZ77CkCiA77Aa5E1Dy%2B5Pn2RwVNBeoxfzn8%2BVSA%3D%3D</OfferListingId><ExchangeId>Y15M3739165M2556386</ExchangeId><Price><Amount>1099</Amount><CurrencyCode>USD</CurrencyCode><FormattedPrice>$10.99</FormattedPrice></Price><AmountSaved><Amount>901</Amount><CurrencyCode>USD</CurrencyCode><FormattedPrice>$9.01</FormattedPrice></AmountSaved><PercentageSaved>45</PercentageSaved><Availability>Usually ships in 1-2 business days</Availability><AvailabilityAttributes><AvailabilityType>now</AvailabilityType><MinimumHours>24</MinimumHours><MaximumHours>48</MaximumHours></AvailabilityAttributes><Quantity>1</Quantity><IsEligibleForSuperSaverShipping>0</IsEligibleForSuperSaverShipping><IsFulfilledByAmazon>0</IsFulfilledByAmazon></OfferListing></Offer><Offer><Merchant><MerchantId>A315ZFP8WROB82</MerchantId><Name>rdickon3</Name><GlancePage>http://www.amazon.com/gp/help/seller/home.html?seller=A315ZFP8WROB82</GlancePage><Location><CountryCode>US</CountryCode><StateCode>VA</StateCode></Location><AverageFeedbackRating>4.9</AverageFeedbackRating><TotalFeedback>1880</TotalFeedback></Merchant><OfferAttributes><Condition>Used</Condition><SubCondition>good</SubCondition><ConditionNote>cover has minor wear, name on inside cover, pages are clean and easy to read, ships next day</ConditionNote></OfferAttributes><OfferListing><OfferListingId>mW7jKgScoDb9uUj7y9ugJv1COCXn9hrRksxioJ%2BkdRssL3QExzYINkz3IccyN2slsXgHZH0Bf8WcQV4copAfydhQ0%2Ftd%2Bc9LauChgLXLYivjmJhq%2BcCFYGCxiFFLfZPqWKSugWfRVcs%3D</OfferListingId><ExchangeId>Y14M5158412M7153095</ExchangeId><Price><Amount>1364</Amount><CurrencyCode>USD</CurrencyCode><FormattedPrice>$13.64</FormattedPrice></Price><AmountSaved><Amount>636</Amount><CurrencyCode>USD</CurrencyCode><FormattedPrice>$6.36</FormattedPrice></AmountSaved><PercentageSaved>32</PercentageSaved><Availability>Usually ships in 1-2 business days</Availability><AvailabilityAttributes><AvailabilityType>now</AvailabilityType><MinimumHours>24</MinimumHours><MaximumHours>48</MaximumHours></AvailabilityAttributes><Quantity>1</Quantity><IsEligibleForSuperSaverShipping>0</IsEligibleForSuperSaverShipping><IsFulfilledByAmazon>0</IsFulfilledByAmazon></OfferListing></Offer><Offer><Merchant><MerchantId>A2LZ1YBC293Q1G</MerchantId><Name>balancingmind</Name><GlancePage>http://www.amazon.com/gp/help/seller/home.html?seller=A2LZ1YBC293Q1G</GlancePage><AverageFeedbackRating>4.8</AverageFeedbackRating><TotalFeedback>523</TotalFeedback></Merchant><OfferAttributes><Condition>Used</Condition><SubCondition>verygood</SubCondition><ConditionNote>some pages have pencil underlighting, just be honest,guaranteed.</ConditionNote></OfferAttributes><OfferListing><OfferListingId>XmxMmiErrBmOCxEMC6oJh4ZNg%2BSN%2FortIOSTAapEtUubo8kMbNw6nj%2F7CEm56WECGx0%2BneeYY0viJ4c0jx8iBkrPhMsRklnEhhaDqE4oIsCyy5GLLVu12atpl62NvaZMKj9gMtMwRq4%3D</OfferListingId><ExchangeId>Y11M2717219M3389810</ExchangeId><Price><Amount>1464</Amount><CurrencyCode>USD</CurrencyCode><FormattedPrice>$14.64</FormattedPrice></Price><AmountSaved><Amount>536</Amount><CurrencyCode>USD</CurrencyCode><FormattedPrice>$5.36</FormattedPrice></AmountSaved><PercentageSaved>27</PercentageSaved><Availability>Usually ships in 1-2 business days</Availability><AvailabilityAttributes><AvailabilityType>now</AvailabilityType><MinimumHours>24</MinimumHours><MaximumHours>48</MaximumHours></AvailabilityAttributes><Quantity>1</Quantity><IsEligibleForSuperSaverShipping>0</IsEligibleForSuperSaverShipping><IsFulfilledByAmazon>0</IsFulfilledByAmazon></OfferListing></Offer><Offer><Merchant><MerchantId>A1TMIDDJTF7G07</MerchantId><Name>booksmartmpls</Name><GlancePage>http://www.amazon.com/gp/help/seller/home.html?seller=A1TMIDDJTF7G07</GlancePage><Location><CountryCode>US</CountryCode><StateCode>MN</StateCode></Location><AverageFeedbackRating>4.9</AverageFeedbackRating><TotalFeedback>442</TotalFeedback></Merchant><OfferAttributes><Condition>Used</Condition><SubCondition>good</SubCondition><ConditionNote>Publisher: Univ of Minnesota Pr&lt;br&gt;Date of Publication: 1989&lt;br&gt;Binding: trade paperback&lt;br&gt;Edition: &lt;br&gt;Condition: Good&lt;br&gt;Description: 8vo - over 7\xC2\xBE\" - 9\xC2\xBE\" tall 0816616779 This book is in Good condition w/ only minor reading wear; text has light pencil underlining/annotation to first chapter. Some shelf wear, edge wear.&lt;br&gt;</ConditionNote></OfferAttributes><OfferListing><OfferListingId>iz5wJfR9UbT%2FmBx6FQ4LyPBf1wJDOxESEMiZ1AgCsHHQofCskMfOSU3Orpp2VBW5aLqCgbY9OmKTlJKFa0Q9DUeikv%2FLxD46VChQb2esf77XONYT09PUmFPy%2BJcibMhktikNa%2BceekNYSb59v9I2eQ%3D%3D</OfferListingId><ExchangeId>Y13M2020965M8709637</ExchangeId><Price><Amount>1599</Amount><CurrencyCode>USD</CurrencyCode><FormattedPrice>$15.99</FormattedPrice></Price><AmountSaved><Amount>401</Amount><CurrencyCode>USD</CurrencyCode><FormattedPrice>$4.01</FormattedPrice></AmountSaved><PercentageSaved>20</PercentageSaved><Availability>Usually ships in 1-2 business days</Availability><AvailabilityAttributes><AvailabilityType>now</AvailabilityType><MinimumHours>24</MinimumHours><MaximumHours>48</MaximumHours></AvailabilityAttributes><Quantity>1</Quantity><IsEligibleForSuperSaverShipping>0</IsEligibleForSuperSaverShipping><IsFulfilledByAmazon>0</IsFulfilledByAmazon></OfferListing></Offer><Offer><Merchant><MerchantId>ATVPDKIKX0DER</MerchantId><Name>Amazon.com</Name><GlancePage>http://www.amazon.com/gp/help/seller/home.html?seller=ATVPDKIKX0DER</GlancePage><AverageFeedbackRating>0.0</AverageFeedbackRating><TotalFeedback>0</TotalFeedback></Merchant><OfferAttributes><Condition>New</Condition><SubCondition>new</SubCondition></OfferAttributes><OfferListing><OfferListingId>mgZtnM5EGH2pJf09h3dU7fOTkWAwG4H43bu8tlQ3Dhy73Us8B3hPn6c0dUZdKgffITNjFlaltHwD2gH%2BUJGg4Q%3D%3D</OfferListingId><Price><Amount>1710</Amount><CurrencyCode>USD</CurrencyCode><FormattedPrice>$17.10</FormattedPrice></Price><AmountSaved><Amount>290</Amount><CurrencyCode>USD</CurrencyCode><FormattedPrice>$2.90</FormattedPrice></AmountSaved><PercentageSaved>14</PercentageSaved><Availability>Usually ships in 24 hours</Availability><AvailabilityAttributes><AvailabilityType>now</AvailabilityType><MinimumHours>0</MinimumHours><MaximumHours>0</MaximumHours></AvailabilityAttributes><Quantity>-1</Quantity><IsEligibleForSuperSaverShipping>1</IsEligibleForSuperSaverShipping><IsFulfilledByAmazon>1</IsFulfilledByAmazon></OfferListing></Offer><Offer><Merchant><MerchantId>A2MU9ZILHNPP6L</MerchantId><Name>quality7</Name><GlancePage>http://www.amazon.com/gp/help/seller/home.html?seller=A2MU9ZILHNPP6L</GlancePage><Location><CountryCode>US</CountryCode><StateCode>GA</StateCode></Location><AverageFeedbackRating>4.8</AverageFeedbackRating><TotalFeedback>46328</TotalFeedback></Merchant><OfferAttributes><Condition>Used</Condition><SubCondition>good</SubCondition><ConditionNote>Excellent customer service. Order inquiries handled promptly.</ConditionNote></OfferAttributes><OfferListing><OfferListingId>%2BWiIhfIJT9ZGTFfOK%2B2MV14AuE3%2BeCrBZlX804OwRh0Xs3vP5MoZTf8DGyfT03jtC0DPcf4L3zw5DUYxX%2BpAcKSvEPdXZrUuKNM2I0vRizJA05czlzclANOkfstQm57X</OfferListingId><ExchangeId>Y17M2369550M4534139</ExchangeId><Price><Amount>1953</Amount><CurrencyCode>USD</CurrencyCode><FormattedPrice>$19.53</FormattedPrice></Price><AmountSaved><Amount>47</Amount><CurrencyCode>USD</CurrencyCode><FormattedPrice>$0.47</FormattedPrice></AmountSaved><PercentageSaved>2</PercentageSaved><Availability>Usually ships in 1-2 business days</Availability><AvailabilityAttributes><AvailabilityType>now</AvailabilityType><MinimumHours>24</MinimumHours><MaximumHours>48</MaximumHours></AvailabilityAttributes><Quantity>1</Quantity><IsEligibleForSuperSaverShipping>0</IsEligibleForSuperSaverShipping><IsFulfilledByAmazon>0</IsFulfilledByAmazon></OfferListing></Offer><Offer><Merchant><MerchantId>A3RK6YG2WKDLIU</MerchantId><Name>bookcultureny</Name><GlancePage>http://www.amazon.com/gp/help/seller/home.html?seller=A3RK6YG2WKDLIU</GlancePage><Location><CountryCode>US</CountryCode><StateCode>NY</StateCode></Location><AverageFeedbackRating>4.8</AverageFeedbackRating><TotalFeedback>2458</TotalFeedback></Merchant><OfferAttributes><Condition>New</Condition><SubCondition>new</SubCondition><ConditionNote>Shipped from a real independent book store in Manhattan.</ConditionNote></OfferAttributes><OfferListing><OfferListingId>MxQ00StxHJlScGEj9jDEQz6vaRxSA6%2BKoT0DHs4EjVAMycOYV8PxFIMg8AvaCcNccZTR4KwtJCmLlkyMrbF7mpi9J2%2FJFW9OPkKDaHFi2bAA3CgCZf2PYIcLoFurpiDuvEuFSvS3NfOleNd2bMM6%2BA%3D%3D</OfferListingId><ExchangeId>Y13M1639332M6423183</ExchangeId><Price><Amount>2000</Amount><CurrencyCode>USD</CurrencyCode><FormattedPrice>$20.00</FormattedPrice></Price><Availability>Usually ships in 1-2 business days</Availability><AvailabilityAttributes><AvailabilityType>now</AvailabilityType><MinimumHours>24</MinimumHours><MaximumHours>48</MaximumHours></AvailabilityAttributes><Quantity>3</Quantity><IsEligibleForSuperSaverShipping>0</IsEligibleForSuperSaverShipping><IsFulfilledByAmazon>0</IsFulfilledByAmazon></OfferListing></Offer></Offers></Item><Item><ASIN>0942299078</ASIN><OfferSummary><LowestNewPrice><Amount>1353</Amount><CurrencyCode>USD</CurrencyCode><FormattedPrice>$13.53</FormattedPrice></LowestNewPrice><LowestUsedPrice><Amount>700</Amount><CurrencyCode>USD</CurrencyCode><FormattedPrice>$7.00</FormattedPrice></LowestUsedPrice><TotalNew>19</TotalNew><TotalUsed>23</TotalUsed><TotalCollectible>0</TotalCollectible><TotalRefurbished>0</TotalRefurbished></OfferSummary><Offers><TotalOffers>42</TotalOffers><TotalOfferPages>5</TotalOfferPages><Offer><Merchant><MerchantId>A8J7G0M7AOA70</MerchantId><Name>drewmeg4</Name><GlancePage>http://www.amazon.com/gp/help/seller/home.html?seller=A8J7G0M7AOA70</GlancePage><Location><CountryCode>US</CountryCode><StateCode>NY</StateCode></Location><AverageFeedbackRating>5.0</AverageFeedbackRating><TotalFeedback>10</TotalFeedback></Merchant><OfferAttributes><Condition>Used</Condition><SubCondition>verygood</SubCondition><ConditionNote>1991 zone books paperback; no writing inside; pages crisp</ConditionNote></OfferAttributes><OfferListing><OfferListingId>WhP95q0yxuDhaom5%2BGNMkzi9JThf3aGDcU0lJpLcTH%2FXv%2Bg15BME5MKRs8Od8%2FRxTUMRhC5OgBRV1fvXV%2Bg0KjwUTTAtDobO4hZB0c9QoLx7Ld7AORCqc0C05rJl8nMWEqeqi27puhY%3D</OfferListingId><ExchangeId>Y14M1525192M7820507</ExchangeId><Price><Amount>700</Amount><CurrencyCode>USD</CurrencyCode><FormattedPrice>$7.00</FormattedPrice></Price><AmountSaved><Amount>1495</Amount><CurrencyCode>USD</CurrencyCode><FormattedPrice>$14.95</FormattedPrice></AmountSaved><PercentageSaved>68</PercentageSaved><Availability>Usually ships in 1-2 business days</Availability><AvailabilityAttributes><AvailabilityType>now</AvailabilityType><MinimumHours>24</MinimumHours><MaximumHours>48</MaximumHours></AvailabilityAttributes><Quantity>1</Quantity><IsEligibleForSuperSaverShipping>0</IsEligibleForSuperSaverShipping><IsFulfilledByAmazon>0</IsFulfilledByAmazon></OfferListing></Offer><Offer><Merchant><MerchantId>AWVN796AQL3W7</MerchantId><Name>airmail_from_england</Name><GlancePage>http://www.amazon.com/gp/help/seller/home.html?seller=AWVN796AQL3W7</GlancePage><Location><CountryCode>GB</CountryCode></Location><AverageFeedbackRating>4.9</AverageFeedbackRating><TotalFeedback>968</TotalFeedback></Merchant><OfferAttributes><Condition>Used</Condition><SubCondition>good</SubCondition><ConditionNote>Clean and tight copy with some reading wear. A respectable second hand copy. Some reading wear but essentially clean and tight. Dispatched Priority Airmail from our UK warehouse six days a week. Delivery normally within a week, but may take up to ten days.</ConditionNote></OfferAttributes><OfferListing><OfferListingId>k9N6iGC6J5kG3Vz%2FEYnqzPn1XGa%2Ber5dI7Q9kikBX3s3LQXyWJ2LUylxIn1%2B%2FODM7jCIxJlqappVDF9%2BVvoR93fg8jZgsP3ALUIOjohu2TBUfEOSC6gVz5gU%2FVjyY8U20yTzu%2F3LbKw%3D</OfferListingId><ExchangeId>Y17M1368737M6271991</ExchangeId><Price><Amount>812</Amount><CurrencyCode>USD</CurrencyCode><FormattedPrice>$8.12</FormattedPrice></Price><AmountSaved><Amount>1383</Amount><CurrencyCode>USD</CurrencyCode><FormattedPrice>$13.83</FormattedPrice></AmountSaved><PercentageSaved>63</PercentageSaved><Availability>Usually ships in 1-2 business days</Availability><AvailabilityAttributes><AvailabilityType>now</AvailabilityType><MinimumHours>24</MinimumHours><MaximumHours>48</MaximumHours></AvailabilityAttributes><Quantity>1</Quantity><IsEligibleForSuperSaverShipping>0</IsEligibleForSuperSaverShipping><IsFulfilledByAmazon>0</IsFulfilledByAmazon></OfferListing></Offer><Offer><Merchant><MerchantId>ALHCY0D2IXXAK</MerchantId><Name>Western Scholars Bookstore</Name><GlancePage>http://www.amazon.com/gp/help/seller/home.html?seller=ALHCY0D2IXXAK</GlancePage><Location><CountryCode>US</CountryCode><StateCode>ID</StateCode></Location><AverageFeedbackRating>4.9</AverageFeedbackRating><TotalFeedback>534</TotalFeedback></Merchant><OfferAttributes><Condition>Used</Condition><SubCondition>mint</SubCondition><ConditionNote>Former owner's stamp on flyleaf, else pristine. We ship daily!</ConditionNote></OfferAttributes><OfferListing><OfferListingId>ls2C8L%2BjDnTdAe3PKaHSev2DSesRmR17wavXMOiFSQOUPvXaKabsTE9p7Yx6QC9MtraGsEG6HMTX30Cv%2B0shOKCl0VU91HWkdUKqGohdqQ7QNFtgUzadXb1%2FMBqrSEDk9J5saeibKeU%3D</OfferListingId><ExchangeId>Y16M5283166M5101570</ExchangeId><Price><Amount>949</Amount><CurrencyCode>USD</CurrencyCode><FormattedPrice>$9.49</FormattedPrice></Price><AmountSaved><Amount>1246</Amount><CurrencyCode>USD</CurrencyCode><FormattedPrice>$12.46</FormattedPrice></AmountSaved><PercentageSaved>57</PercentageSaved><Availability>Usually ships in 1-2 business days</Availability><AvailabilityAttributes><AvailabilityType>now</AvailabilityType><MinimumHours>24</MinimumHours><MaximumHours>48</MaximumHours></AvailabilityAttributes><Quantity>1</Quantity><IsEligibleForSuperSaverShipping>0</IsEligibleForSuperSaverShipping><IsFulfilledByAmazon>0</IsFulfilledByAmazon></OfferListing></Offer><Offer><Merchant><MerchantId>AIRS1C75X9OH</MerchantId><Name>Perennial Books</Name><GlancePage>http://www.amazon.com/gp/help/seller/home.html?seller=AIRS1C75X9OH</GlancePage><Location><CountryCode>US</CountryCode><StateCode>MA</StateCode></Location><AverageFeedbackRating>4.9</AverageFeedbackRating><TotalFeedback>283</TotalFeedback></Merchant><OfferAttributes><Condition>Used</Condition><SubCondition>mint</SubCondition><ConditionNote>Unread book in excellent shape/ just slight shelf wear</ConditionNote></OfferAttributes><OfferListing><OfferListingId>GqWXYMnKeBxm%2B6ScjpYogA7EaPdwVb%2F%2Fmq6FaC4%2FIJI4Y6pFRI3zU%2F6S6XNAqW%2BnYv753xJnd9Re2iBDV1n3Pz1m3XYrgUV3EPuIUlurg0n7kMhcZNuHMI4TMR0f7Am7v%2F1hLN6qgvA%3D</OfferListingId><ExchangeId>Y11M3933221M7529813</ExchangeId><Price><Amount>1097</Amount><CurrencyCode>USD</CurrencyCode><FormattedPrice>$10.97</FormattedPrice></Price><AmountSaved><Amount>1098</Amount><CurrencyCode>USD</CurrencyCode><FormattedPrice>$10.98</FormattedPrice></AmountSaved><PercentageSaved>50</PercentageSaved><Availability>Usually ships in 1-2 business days</Availability><AvailabilityAttributes><AvailabilityType>now</AvailabilityType><MinimumHours>24</MinimumHours><MaximumHours>48</MaximumHours></AvailabilityAttributes><Quantity>2</Quantity><IsEligibleForSuperSaverShipping>0</IsEligibleForSuperSaverShipping><IsFulfilledByAmazon>0</IsFulfilledByAmazon></OfferListing></Offer><Offer><Merchant><MerchantId>A1CY8NONDU8GKJ</MerchantId><Name>JenFarace</Name><GlancePage>http://www.amazon.com/gp/help/seller/home.html?seller=A1CY8NONDU8GKJ</GlancePage><Location><CountryCode>US</CountryCode><StateCode>FL</StateCode></Location><AverageFeedbackRating>5.0</AverageFeedbackRating><TotalFeedback>2</TotalFeedback></Merchant><OfferAttributes><Condition>Used</Condition><SubCondition>mint</SubCondition><ConditionNote>never used</ConditionNote></OfferAttributes><OfferListing><OfferListingId>e%2BwiH%2BRx8Feowb%2BHpFXawRMly4JIB3CiMl1E3z5r%2FmTGip10LazSQh78i7KbXh91PsEUiA6kcxsSKh0kUlPPelnYcC1rGCSeTC2kF66%2FLvGbuzy32obFcfQjqeVeyFHu67pqMt1QCpVr9qOy2lgBLw%3D%3D</OfferListingId><ExchangeId>Y18M3193965M4250333</ExchangeId><Price><Amount>1100</Amount><CurrencyCode>USD</CurrencyCode><FormattedPrice>$11.00</FormattedPrice></Price><AmountSaved><Amount>1095</Amount><CurrencyCode>USD</CurrencyCode><FormattedPrice>$10.95</FormattedPrice></AmountSaved><PercentageSaved>50</PercentageSaved><Availability>Usually ships in 1-2 business days</Availability><AvailabilityAttributes><AvailabilityType>now</AvailabilityType><MinimumHours>24</MinimumHours><MaximumHours>48</MaximumHours></AvailabilityAttributes><Quantity>1</Quantity><IsEligibleForSuperSaverShipping>0</IsEligibleForSuperSaverShipping><IsFulfilledByAmazon>0</IsFulfilledByAmazon></OfferListing></Offer><Offer><Merchant><MerchantId>A1GC74QVSCFI8G</MerchantId><Name>SYMPOSIUM_BOOKS</Name><GlancePage>http://www.amazon.com/gp/help/seller/home.html?seller=A1GC74QVSCFI8G</GlancePage><Location><CountryCode>US</CountryCode><StateCode>RI</StateCode></Location><AverageFeedbackRating>4.9</AverageFeedbackRating><TotalFeedback>4123</TotalFeedback></Merchant><OfferAttributes><Condition>Used</Condition><SubCondition>mint</SubCondition><ConditionNote>New unread book in stock and on sale - some books may have remainder mark. We often have multiple copies per title - and have over 20,000 discounted titles available. Symposium Books is an Independent Bookstore with locations near Boston University and Brown University &amp; RISD. We are dedicated to providing our customers with the widest selection of scholarly, literary and quality art books. Expedited shipping is available, and we include free delivery confirmation. Reliable customer service, and a no hassle return policy.</ConditionNote></OfferAttributes><OfferListing><OfferListingId>tFaLFtGPl8JsfhKFWO5T%2BnasmiDxcn3HUJolj9Q3PmvvzKKv6bquwGEfvHlAUp1U%2FzbIVGEjhotn4CbbrUjY1df580ta8ampqUTCH2FcDfIFwDtqftacCTQuFviFH4D%2FeKB2ElEeUXU%3D</OfferListingId><ExchangeId>Y12M1198373M4072107</ExchangeId><Price><Amount>1198</Amount><CurrencyCode>USD</CurrencyCode><FormattedPrice>$11.98</FormattedPrice></Price><AmountSaved><Amount>997</Amount><CurrencyCode>USD</CurrencyCode><FormattedPrice>$9.97</FormattedPrice></AmountSaved><PercentageSaved>45</PercentageSaved><Availability>Usually ships in 1-2 business days</Availability><AvailabilityAttributes><AvailabilityType>now</AvailabilityType><MinimumHours>24</MinimumHours><MaximumHours>48</MaximumHours></AvailabilityAttributes><Quantity>2</Quantity><IsEligibleForSuperSaverShipping>0</IsEligibleForSuperSaverShipping><IsFulfilledByAmazon>0</IsFulfilledByAmazon></OfferListing></Offer><Offer><Merchant><MerchantId>A1W9YO40S7WJUH</MerchantId><Name>txtbroker</Name><GlancePage>http://www.amazon.com/gp/help/seller/home.html?seller=A1W9YO40S7WJUH</GlancePage><Location><CountryCode>US</CountryCode><StateCode>TN</StateCode></Location><AverageFeedbackRating>4.7</AverageFeedbackRating><TotalFeedback>4273</TotalFeedback></Merchant><OfferAttributes><Condition>Used</Condition><SubCondition>good</SubCondition><ConditionNote>Used - Good. Choose EXPEDITED shipping for faster delivery!</ConditionNote></OfferAttributes><OfferListing><OfferListingId>fKWIwt2X1o97b20iqwBYFnttK7PBm7OrPCyS6Uc8LY%2FcbvvdAiLa1uGD3Q77Yd7N6%2B4uUjdA0uGdKs6x0LdE%2FavWTNSYNGhksXpVhMyFIaCOyrumKzBgUSo%2Bq2U6E%2Bffeo5owdHLm2sO5Jc5j6qF2Q%3D%3D</OfferListingId><ExchangeId>Y11M6497792M6359929</ExchangeId><Price><Amount>1198</Amount><CurrencyCode>USD</CurrencyCode><FormattedPrice>$11.98</FormattedPrice></Price><AmountSaved><Amount>997</Amount><CurrencyCode>USD</CurrencyCode><FormattedPrice>$9.97</FormattedPrice></AmountSaved><PercentageSaved>45</PercentageSaved><Availability>Usually ships in 1-2 business days</Availability><AvailabilityAttributes><AvailabilityType>now</AvailabilityType><MinimumHours>24</MinimumHours><MaximumHours>48</MaximumHours></AvailabilityAttributes><Quantity>1</Quantity><IsEligibleForSuperSaverShipping>0</IsEligibleForSuperSaverShipping><IsFulfilledByAmazon>0</IsFulfilledByAmazon></OfferListing></Offer><Offer><Merchant><MerchantId>A2CYKJTASJZWPY</MerchantId><Name>Bookworm_Bookseller</Name><GlancePage>http://www.amazon.com/gp/help/seller/home.html?seller=A2CYKJTASJZWPY</GlancePage><Location><CountryCode>US</CountryCode><StateCode>CA</StateCode></Location><AverageFeedbackRating>5.0</AverageFeedbackRating><TotalFeedback>5</TotalFeedback></Merchant><OfferAttributes><Condition>Used</Condition><SubCondition>verygood</SubCondition><ConditionNote>Great condition- no highlighting or underlining- small fold on front cover. Satisfaction guaranteed. Reduce, Reuse, Recycle!</ConditionNote></OfferAttributes><OfferListing><OfferListingId>BCp%2B58MoIXsLMVAw0JlcgbGE67aFJtjuGTDXbjgcC0uIsHpVkZOZN2n58g0qq2XhnpdLOaGTw370nAPeFpc61aI4JaSiN6EXstBPTMOOIjFrNT2%2BNeoAvuBLTDlAmCbQoPE7r63skuC%2FNJsSQYva6Q%3D%3D</OfferListingId><ExchangeId>Y19M3729649M2168203</ExchangeId><Price><Amount>1245</Amount><CurrencyCode>USD</CurrencyCode><FormattedPrice>$12.45</FormattedPrice></Price><AmountSaved><Amount>950</Amount><CurrencyCode>USD</CurrencyCode><FormattedPrice>$9.50</FormattedPrice></AmountSaved><PercentageSaved>43</PercentageSaved><Availability>Usually ships in 1-2 business days</Availability><AvailabilityAttributes><AvailabilityType>now</AvailabilityType><MinimumHours>24</MinimumHours><MaximumHours>48</MaximumHours></AvailabilityAttributes><Quantity>1</Quantity><IsEligibleForSuperSaverShipping>0</IsEligibleForSuperSaverShipping><IsFulfilledByAmazon>0</IsFulfilledByAmazon></OfferListing></Offer><Offer><Merchant><MerchantId>A3RK6YG2WKDLIU</MerchantId><Name>bookcultureny</Name><GlancePage>http://www.amazon.com/gp/help/seller/home.html?seller=A3RK6YG2WKDLIU</GlancePage><Location><CountryCode>US</CountryCode><StateCode>NY</StateCode></Location><AverageFeedbackRating>4.8</AverageFeedbackRating><TotalFeedback>2458</TotalFeedback></Merchant><OfferAttributes><Condition>Used</Condition><SubCondition>acceptable</SubCondition><ConditionNote>Shipped from a real independent book store in Manhattan.</ConditionNote></OfferAttributes><OfferListing><OfferListingId>7V4kPZ89rVXThu12KfUTGDI9xm4LVG72gCwswk%2BHjWzKts%2BtMbUuwDThBfe%2FTvGrX3CxbC6nRgMalfUpeotdGviQ2b5jkB1ZpHa5E1d4EfbehEjFEyZoW0Xv4xXN7wR2M%2B5z5xdJpEoQeeaPInCe5w%3D%3D</OfferListingId><ExchangeId>Y13M1426130M0714704</ExchangeId><Price><Amount>1275</Amount><CurrencyCode>USD</CurrencyCode><FormattedPrice>$12.75</FormattedPrice></Price><AmountSaved><Amount>920</Amount><CurrencyCode>USD</CurrencyCode><FormattedPrice>$9.20</FormattedPrice></AmountSaved><PercentageSaved>42</PercentageSaved><Availability>Usually ships in 1-2 business days</Availability><AvailabilityAttributes><AvailabilityType>now</AvailabilityType><MinimumHours>24</MinimumHours><MaximumHours>48</MaximumHours></AvailabilityAttributes><Quantity>1</Quantity><IsEligibleForSuperSaverShipping>0</IsEligibleForSuperSaverShipping><IsFulfilledByAmazon>0</IsFulfilledByAmazon></OfferListing></Offer><Offer><Merchant><MerchantId>A15AOQYSLLO2CF</MerchantId><Name>thermite-media</Name><GlancePage>http://www.amazon.com/gp/help/seller/home.html?seller=A15AOQYSLLO2CF</GlancePage><Location><CountryCode>US</CountryCode><StateCode>NC</StateCode></Location><AverageFeedbackRating>4.8</AverageFeedbackRating><TotalFeedback>55506</TotalFeedback></Merchant><OfferAttributes><Condition>New</Condition><SubCondition>new</SubCondition><ConditionNote>BRAND NEW. 30 Day Satisfaction Guarantee. Quick International Airmail!</ConditionNote></OfferAttributes><OfferListing><OfferListingId>AxtHIv07o%2FjqcUAwJwb%2BByCiDGmtUDpWvZ87g48491nXym5FThpPDNNfaziPDHHjL4b1%2BZdEkIbcuk%2FE7K45p%2F%2FwRa4UlKPiikb0vLc5dpJoq0ByWeRsdPbitrs7%2FiZHXKczAX%2BvE1cWHUrZvjZ40g%3D%3D</OfferListingId><ExchangeId>Y11M4083672M0755097</ExchangeId><Price><Amount>1353</Amount><CurrencyCode>USD</CurrencyCode><FormattedPrice>$13.53</FormattedPrice></Price><AmountSaved><Amount>842</Amount><CurrencyCode>USD</CurrencyCode><FormattedPrice>$8.42</FormattedPrice></AmountSaved><PercentageSaved>38</PercentageSaved><Availability>Usually ships in 1-2 business days</Availability><AvailabilityAttributes><AvailabilityType>now</AvailabilityType><MinimumHours>24</MinimumHours><MaximumHours>48</MaximumHours></AvailabilityAttributes><Quantity>1</Quantity><IsEligibleForSuperSaverShipping>0</IsEligibleForSuperSaverShipping><IsFulfilledByAmazon>0</IsFulfilledByAmazon></OfferListing></Offer></Offers></Item><Item><ASIN>0816614008</ASIN><OfferSummary><LowestNewPrice><Amount>1710</Amount><CurrencyCode>USD</CurrencyCode><FormattedPrice>$17.10</FormattedPrice></LowestNewPrice><LowestUsedPrice><Amount>1359</Amount><CurrencyCode>USD</CurrencyCode><FormattedPrice>$13.59</FormattedPrice></LowestUsedPrice><TotalNew>16</TotalNew><TotalUsed>16</TotalUsed><TotalCollectible>0</TotalCollectible><TotalRefurbished>0</TotalRefurbished></OfferSummary><Offers><TotalOffers>33</TotalOffers><TotalOfferPages>4</TotalOfferPages><Offer><Merchant><MerchantId>A3GHQ052CPNYKR</MerchantId><Name>cherrybooks</Name><GlancePage>http://www.amazon.com/gp/help/seller/home.html?seller=A3GHQ052CPNYKR</GlancePage><Location><CountryCode>US</CountryCode><StateCode>CA</StateCode></Location><AverageFeedbackRating>4.7</AverageFeedbackRating><TotalFeedback>9850</TotalFeedback></Merchant><OfferAttributes><Condition>Used</Condition><SubCondition>verygood</SubCondition><ConditionNote>SHIPS SAME DAY</ConditionNote></OfferAttributes><OfferListing><OfferListingId>zRowLqoZCCyCyd%2BeB%2BCIMFMStd0Y1Ak9haH6G4TO9NIe0e1UGO5J7057v7niGbM%2BscIQutUHrKOYu7YKCkgGsGaHbh3pnGuHOM5eQw63byx7hUDayjJxNdZmd8VTz0UHhqd88DSciXQ%3D</OfferListingId><ExchangeId>Y12M0341063M3491156</ExchangeId><Price><Amount>1359</Amount><CurrencyCode>USD</CurrencyCode><FormattedPrice>$13.59</FormattedPrice></Price><AmountSaved><Amount>641</Amount><CurrencyCode>USD</CurrencyCode><FormattedPrice>$6.41</FormattedPrice></AmountSaved><PercentageSaved>32</PercentageSaved><Availability>Usually ships in 1-2 business days</Availability><AvailabilityAttributes><AvailabilityType>now</AvailabilityType><MinimumHours>24</MinimumHours><MaximumHours>48</MaximumHours></AvailabilityAttributes><Quantity>1</Quantity><IsEligibleForSuperSaverShipping>0</IsEligibleForSuperSaverShipping><IsFulfilledByAmazon>0</IsFulfilledByAmazon></OfferListing></Offer><Offer><Merchant><MerchantId>A315ZFP8WROB82</MerchantId><Name>rdickon3</Name><GlancePage>http://www.amazon.com/gp/help/seller/home.html?seller=A315ZFP8WROB82</GlancePage><Location><CountryCode>US</CountryCode><StateCode>VA</StateCode></Location><AverageFeedbackRating>4.9</AverageFeedbackRating><TotalFeedback>1880</TotalFeedback></Merchant><OfferAttributes><Condition>Used</Condition><SubCondition>good</SubCondition><ConditionNote>cover has minor wear, some small discoloration on first half of pages, name on inside cover, pages are clean and easy to read, ships next day</ConditionNote></OfferAttributes><OfferListing><OfferListingId>7P2wA65725%2B4oNvfqgq6%2F0%2BG5nYwwwof10HfvGVWYasrAEdYckVG1qSLqVNtQWOd9l5RIgbT1hv5BGnGvY4yPKbNhn8a%2BEwjVS2gYGq0LfBVyWDa41eLPNQOE6VjaFiirzr1Kzua06c%3D</OfferListingId><ExchangeId>Y14M5149920M1456173</ExchangeId><Price><Amount>1360</Amount><CurrencyCode>USD</CurrencyCode><FormattedPrice>$13.60</FormattedPrice></Price><AmountSaved><Amount>640</Amount><CurrencyCode>USD</CurrencyCode><FormattedPrice>$6.40</FormattedPrice></AmountSaved><PercentageSaved>32</PercentageSaved><Availability>Usually ships in 1-2 business days</Availability><AvailabilityAttributes><AvailabilityType>now</AvailabilityType><MinimumHours>24</MinimumHours><MaximumHours>48</MaximumHours></AvailabilityAttributes><Quantity>1</Quantity><IsEligibleForSuperSaverShipping>0</IsEligibleForSuperSaverShipping><IsFulfilledByAmazon>0</IsFulfilledByAmazon></OfferListing></Offer><Offer><Merchant><MerchantId>A2VGKV79A9ZLRH</MerchantId><Name>westsoundbooks</Name><GlancePage>http://www.amazon.com/gp/help/seller/home.html?seller=A2VGKV79A9ZLRH</GlancePage><Location><CountryCode>US</CountryCode><StateCode>WA</StateCode></Location><AverageFeedbackRating>5.0</AverageFeedbackRating><TotalFeedback>100</TotalFeedback></Merchant><OfferAttributes><Condition>Used</Condition><SubCondition>mint</SubCondition><ConditionNote>Clean and bright appearance, unmarked, solid binding; minimal shelfwear to edges and covers.</ConditionNote></OfferAttributes><OfferListing><OfferListingId>lDbvrz9AmHbjzwmxdpLu80JvBAG21GXADXq%2BUr32s58reTEgm0XM4e8uFbGHbNGV2GGR6XnTJLRmfWLHiCPV0j8zn71oxZpgQcchvNcodtcFV7HTMeb0%2FwPDYix6mxSF5AYSZthKf9Y%3D</OfferListingId><ExchangeId>Y11M6906550M9428335</ExchangeId><Price><Amount>1595</Amount><CurrencyCode>USD</CurrencyCode><FormattedPrice>$15.95</FormattedPrice></Price><AmountSaved><Amount>405</Amount><CurrencyCode>USD</CurrencyCode><FormattedPrice>$4.05</FormattedPrice></AmountSaved><PercentageSaved>20</PercentageSaved><Availability>Usually ships in 1-2 business days</Availability><AvailabilityAttributes><AvailabilityType>now</AvailabilityType><MinimumHours>24</MinimumHours><MaximumHours>48</MaximumHours></AvailabilityAttributes><Quantity>1</Quantity><IsEligibleForSuperSaverShipping>0</IsEligibleForSuperSaverShipping><IsFulfilledByAmazon>0</IsFulfilledByAmazon></OfferListing></Offer><Offer><Merchant><MerchantId>A18OZMH8UQINVM</MerchantId><Name>betterworldbooks_</Name><GlancePage>http://www.amazon.com/gp/help/seller/home.html?seller=A18OZMH8UQINVM</GlancePage><Location><CountryCode>US</CountryCode><StateCode>IN</StateCode></Location><AverageFeedbackRating>4.8</AverageFeedbackRating><TotalFeedback>189831</TotalFeedback></Merchant><OfferAttributes><Condition>Used</Condition><SubCondition>good</SubCondition><ConditionNote>Shows some signs of wear, and may have some markings on the inside. 100% Money Back Guarantee. Shipped to over one million happy customers. Your purchase benefits world literacy!</ConditionNote></OfferAttributes><OfferListing><OfferListingId>4jZ3oaEZXjYTQRAu%2Ff%2B36K597mJcA70%2F29UDpdmt1LZTH7mOk6nluco%2BMosug1KJO1SaWtNqFWxi3ZZTsrt2FvFYQFOvJtNJ5GQHPsy2W6g8z5qrPWYGXB7MdUDPPldsJTMkvN7%2B1JQ%3D</OfferListingId><ExchangeId>Y18M1560369M5407180</ExchangeId><Price><Amount>1615</Amount><CurrencyCode>USD</CurrencyCode><FormattedPrice>$16.15</FormattedPrice></Price><AmountSaved><Amount>385</Amount><CurrencyCode>USD</CurrencyCode><FormattedPrice>$3.85</FormattedPrice></AmountSaved><PercentageSaved>19</PercentageSaved><Availability>Usually ships in 1-2 business days</Availability><AvailabilityAttributes><AvailabilityType>now</AvailabilityType><MinimumHours>24</MinimumHours><MaximumHours>48</MaximumHours></AvailabilityAttributes><Quantity>1</Quantity><IsEligibleForSuperSaverShipping>0</IsEligibleForSuperSaverShipping><IsFulfilledByAmazon>0</IsFulfilledByAmazon></OfferListing></Offer><Offer><Merchant><MerchantId>A2Z0PCVRDDJI2U</MerchantId><Name>belles-books</Name><GlancePage>http://www.amazon.com/gp/help/seller/home.html?seller=A2Z0PCVRDDJI2U</GlancePage><Location><CountryCode>US</CountryCode><StateCode>GA</StateCode></Location><AverageFeedbackRating>4.9</AverageFeedbackRating><TotalFeedback>9937</TotalFeedback></Merchant><OfferAttributes><Condition>Used</Condition><SubCondition>verygood</SubCondition><ConditionNote>In Great Shape!! Little Shelfwear!!</ConditionNote></OfferAttributes><OfferListing><OfferListingId>miBor4gT7rtQAKE8uhgXZb50zf3uTsTN4mT8h7HajXSggl4PvLTNauq8MjjZN3I2m61aK29Q3W9VbCr%2FczNyYXuDqXVVJtbFnVlPvGfWJ%2BYwRT01v2rjXsKu4gpf8tE9GDnpQ%2B%2FwCdg%3D</OfferListingId><ExchangeId>Y11M6045663M6083084</ExchangeId><Price><Amount>1615</Amount><CurrencyCode>USD</CurrencyCode><FormattedPrice>$16.15</FormattedPrice></Price><AmountSaved><Amount>385</Amount><CurrencyCode>USD</CurrencyCode><FormattedPrice>$3.85</FormattedPrice></AmountSaved><PercentageSaved>19</PercentageSaved><Availability>Usually ships in 1-2 business days</Availability><AvailabilityAttributes><AvailabilityType>now</AvailabilityType><MinimumHours>24</MinimumHours><MaximumHours>48</MaximumHours></AvailabilityAttributes><Quantity>1</Quantity><IsEligibleForSuperSaverShipping>0</IsEligibleForSuperSaverShipping><IsFulfilledByAmazon>0</IsFulfilledByAmazon></OfferListing></Offer><Offer><Merchant><MerchantId>ATVPDKIKX0DER</MerchantId><Name>Amazon.com</Name><GlancePage>http://www.amazon.com/gp/help/seller/home.html?seller=ATVPDKIKX0DER</GlancePage><AverageFeedbackRating>0.0</AverageFeedbackRating><TotalFeedback>0</TotalFeedback></Merchant><OfferAttributes><Condition>New</Condition><SubCondition>new</SubCondition></OfferAttributes><OfferListing><OfferListingId>Vnn4sAsPbA4ZYeI2UeUsp4fEPixoiJp8u9hK9PZyMxPlAYTfjMyWGAXr9lvhdYMB7yRFtMCSqWcm0CQRqKPXyw%3D%3D</OfferListingId><Price><Amount>1710</Amount><CurrencyCode>USD</CurrencyCode><FormattedPrice>$17.10</FormattedPrice></Price><AmountSaved><Amount>290</Amount><CurrencyCode>USD</CurrencyCode><FormattedPrice>$2.90</FormattedPrice></AmountSaved><PercentageSaved>14</PercentageSaved><Availability>Usually ships in 24 hours</Availability><AvailabilityAttributes><AvailabilityType>now</AvailabilityType><MinimumHours>0</MinimumHours><MaximumHours>0</MaximumHours></AvailabilityAttributes><Quantity>-1</Quantity><IsEligibleForSuperSaverShipping>1</IsEligibleForSuperSaverShipping><IsFulfilledByAmazon>1</IsFulfilledByAmazon></OfferListing></Offer><Offer><Merchant><MerchantId>A2Z2CSK1PH6GOI</MerchantId><Name>bordeebook</Name><GlancePage>http://www.amazon.com/gp/help/seller/home.html?seller=A2Z2CSK1PH6GOI</GlancePage><Location><CountryCode>US</CountryCode></Location><AverageFeedbackRating>4.7</AverageFeedbackRating><TotalFeedback>21047</TotalFeedback></Merchant><OfferAttributes><Condition>Used</Condition><SubCondition>good</SubCondition><ConditionNote>Used but in nice shape with normal surface &amp; edge wear. Accessories may not be included. Fast shipping!</ConditionNote></OfferAttributes><OfferListing><OfferListingId>G7MIfY5JgTi6riOJTAHfQQEXXN5H9juz5Pfu8KqzSZk5%2BY7meizsSB7OVGG4HAYWSx%2BeluTrF%2FvWiGeQ9HlqVLo9PKHOG80RxGzE%2Flu1aA0sSdCxDoE1qclTOdnIwu3vQXkJhQ3WGJ4%3D</OfferListingId><ExchangeId>Y12M1362435M1203728</ExchangeId><Price><Amount>1965</Amount><CurrencyCode>USD</CurrencyCode><FormattedPrice>$19.65</FormattedPrice></Price><AmountSaved><Amount>35</Amount><CurrencyCode>USD</CurrencyCode><FormattedPrice>$0.35</FormattedPrice></AmountSaved><PercentageSaved>2</PercentageSaved><Availability>Usually ships in 1-2 business days</Availability><AvailabilityAttributes><AvailabilityType>now</AvailabilityType><MinimumHours>24</MinimumHours><MaximumHours>48</MaximumHours></AvailabilityAttributes><Quantity>1</Quantity><IsEligibleForSuperSaverShipping>0</IsEligibleForSuperSaverShipping><IsFulfilledByAmazon>0</IsFulfilledByAmazon></OfferListing></Offer><Offer><Merchant><MerchantId>A8YH2ECKGA9RN</MerchantId><Name>short-and-long-books</Name><GlancePage>http://www.amazon.com/gp/help/seller/home.html?seller=A8YH2ECKGA9RN</GlancePage><Location><CountryCode>US</CountryCode><StateCode>CA</StateCode></Location><AverageFeedbackRating>4.8</AverageFeedbackRating><TotalFeedback>120</TotalFeedback></Merchant><OfferAttributes><Condition>Used</Condition><SubCondition>acceptable</SubCondition><ConditionNote>Publisher: Univ of Minnesota Pr&lt;br&gt;Date of Publication: 1986&lt;br&gt;Binding: Soft Cover&lt;br&gt;Condition: Good&lt;br&gt;Description: 0816614008 PB/Gd. condition/250 pages - A work in philosophy about cinema. (vK1206HR3)</ConditionNote></OfferAttributes><OfferListing><OfferListingId>Y6zAGBFlBkR07nkxhh1HGyaP%2FdOYU7tW8lCezdBTgvSm4UrEy0FDT6fGIKkPsAOdmrfCwYzrKpn1SFZd8JPV6tYn57VkKaKLabmP2y87oVvJiNZrvZyiXjtTccg6HabP%2FlXaPlr7dssYUpHFSaTkeA%3D%3D</OfferListingId><ExchangeId>Y11M0969082M8248018</ExchangeId><Price><Amount>1969</Amount><CurrencyCode>USD</CurrencyCode><FormattedPrice>$19.69</FormattedPrice></Price><AmountSaved><Amount>31</Amount><CurrencyCode>USD</CurrencyCode><FormattedPrice>$0.31</FormattedPrice></AmountSaved><PercentageSaved>2</PercentageSaved><Availability>Usually ships in 1-2 business days</Availability><AvailabilityAttributes><AvailabilityType>now</AvailabilityType><MinimumHours>24</MinimumHours><MaximumHours>48</MaximumHours></AvailabilityAttributes><Quantity>1</Quantity><IsEligibleForSuperSaverShipping>0</IsEligibleForSuperSaverShipping><IsFulfilledByAmazon>0</IsFulfilledByAmazon></OfferListing></Offer><Offer><Merchant><MerchantId>AZPQKLIWQKVZ</MerchantId><Name>powells_books</Name><GlancePage>http://www.amazon.com/gp/help/seller/home.html?seller=AZPQKLIWQKVZ</GlancePage><Location><CountryCode>US</CountryCode><StateCode>OR</StateCode></Location><AverageFeedbackRating>4.8</AverageFeedbackRating><TotalFeedback>26353</TotalFeedback></Merchant><OfferAttributes><Condition>New</Condition><SubCondition>new</SubCondition><ConditionNote>Legendary independent bookstore online since 1994. Reliable customer service and no-hassle return policy.</ConditionNote></OfferAttributes><OfferListing><OfferListingId>gAul8ywdxGhFzN%2BVlDjXlUlAO7xOKMOwzlc0BiZns6EX1FbsJZBHqNBt6DLkCsRy%2F2o1FMoWoRpziNx3fhzfukJebpJBsGBO8ExGi4Thiyb%2BFWZWeZ7FlM5jUO4wfkxwN1IdM00rE9s%3D</OfferListingId><ExchangeId>Y11M0203890M6169279</ExchangeId><Price><Amount>2000</Amount><CurrencyCode>USD</CurrencyCode><FormattedPrice>$20.00</FormattedPrice></Price><Availability>Usually ships in 1-2 business days</Availability><AvailabilityAttributes><AvailabilityType>now</AvailabilityType><MinimumHours>24</MinimumHours><MaximumHours>48</MaximumHours></AvailabilityAttributes><Quantity>1</Quantity><IsEligibleForSuperSaverShipping>0</IsEligibleForSuperSaverShipping><IsFulfilledByAmazon>0</IsFulfilledByAmazon></OfferListing></Offer><Offer><Merchant><MerchantId>AZPQKLIWQKVZ</MerchantId><Name>powells_books</Name><GlancePage>http://www.amazon.com/gp/help/seller/home.html?seller=AZPQKLIWQKVZ</GlancePage><Location><CountryCode>US</CountryCode><StateCode>OR</StateCode></Location><AverageFeedbackRating>4.8</AverageFeedbackRating><TotalFeedback>26353</TotalFeedback></Merchant><OfferAttributes><Condition>New</Condition><SubCondition>new</SubCondition><ConditionNote>Legendary independent bookstore online since 1994. Reliable customer service and no-hassle return policy.</ConditionNote></OfferAttributes><OfferListing><OfferListingId>tJzk3djI4rJXPY5n41X0n03tmSWnQI1sZJAmX8IEqEXOXjh1QsRe97%2FcPZuZol6uxkQ9lfaM3%2BNE0dHRujUHSOe%2BfLrWvM7dSojPJtJc7eUJbQYWhkO5e%2FEOjBab6YJ6eBZZ4G8vM1I%3D</OfferListingId><ExchangeId>Y11M1517295M2626122</ExchangeId><Price><Amount>2000</Amount><CurrencyCode>USD</CurrencyCode><FormattedPrice>$20.00</FormattedPrice></Price><Availability>Usually ships in 1-2 business days</Availability><AvailabilityAttributes><AvailabilityType>now</AvailabilityType><MinimumHours>24</MinimumHours><MaximumHours>48</MaximumHours></AvailabilityAttributes><Quantity>1</Quantity><IsEligibleForSuperSaverShipping>0</IsEligibleForSuperSaverShipping><IsFulfilledByAmazon>0</IsFulfilledByAmazon></OfferListing></Offer></Offers></Item><Item><ASIN>144006654X</ASIN><OfferSummary><LowestNewPrice><Amount>1036</Amount><CurrencyCode>USD</CurrencyCode><FormattedPrice>$10.36</FormattedPrice></LowestNewPrice><LowestUsedPrice><Amount>3190</Amount><CurrencyCode>USD</CurrencyCode><FormattedPrice>$31.90</FormattedPrice></LowestUsedPrice><TotalNew>3</TotalNew><TotalUsed>2</TotalUsed><TotalCollectible>0</TotalCollectible><TotalRefurbished>0</TotalRefurbished></OfferSummary><Offers><TotalOffers>5</TotalOffers><TotalOfferPages>1</TotalOfferPages><Offer><Merchant><MerchantId>ATVPDKIKX0DER</MerchantId><Name>Amazon.com</Name><GlancePage>http://www.amazon.com/gp/help/seller/home.html?seller=ATVPDKIKX0DER</GlancePage><AverageFeedbackRating>0.0</AverageFeedbackRating><TotalFeedback>0</TotalFeedback></Merchant><OfferAttributes><Condition>New</Condition><SubCondition>new</SubCondition></OfferAttributes><OfferListing><OfferListingId>S2WTE5vVEifUYNswZH0eE06rdwpOMwl2jMRLP79NyvNSwvzCD%2FLglSEfChx8taJwU0Hvq%2BVdNIZUcX9o4%2FJrQ6n7rPrqAMFL</OfferListingId><Price><Amount>1036</Amount><CurrencyCode>USD</CurrencyCode><FormattedPrice>$10.36</FormattedPrice></Price><Availability>Usually ships in 24 hours</Availability><AvailabilityAttributes><AvailabilityType>now</AvailabilityType><MinimumHours>24</MinimumHours><MaximumHours>24</MaximumHours></AvailabilityAttributes><Quantity>-1</Quantity><QuantityRestriction><QuantityLimit>3</QuantityLimit></QuantityRestriction><IsEligibleForSuperSaverShipping>1</IsEligibleForSuperSaverShipping><IsFulfilledByAmazon>1</IsFulfilledByAmazon></OfferListing></Offer><Offer><Merchant><MerchantId>ASYDZOX0HKBSE</MerchantId><Name>any_book</Name><GlancePage>http://www.amazon.com/gp/help/seller/home.html?seller=ASYDZOX0HKBSE</GlancePage><Location><CountryCode>US</CountryCode><StateCode>FL</StateCode></Location><AverageFeedbackRating>4.7</AverageFeedbackRating><TotalFeedback>57247</TotalFeedback></Merchant><OfferAttributes><Condition>Used</Condition><SubCondition>verygood</SubCondition><ConditionNote>Huge seller with millions of transactions! Satisfaction Guaranteed.</ConditionNote></OfferAttributes><OfferListing><OfferListingId>FQRfPkCpNcGxe069WxoKM8p%2BbaDimkqsxAFDfa%2BzY4%2B0vGZPlfMu2cJAsN%2BmmJSRAV6c59cHf99YJP9BcreWOg5uXWZkiFJOHFRvNWFFyb860lxLfp2b8zyztIb3iRZUx1atpLYDhZo%3D</OfferListingId><ExchangeId>Y12M6238358M4220821</ExchangeId><Price><Amount>3190</Amount><CurrencyCode>USD</CurrencyCode><FormattedPrice>$31.90</FormattedPrice></Price><Availability>Usually ships in 1-2 business days</Availability><AvailabilityAttributes><AvailabilityType>now</AvailabilityType><MinimumHours>24</MinimumHours><MaximumHours>48</MaximumHours></AvailabilityAttributes><Quantity>3</Quantity><IsEligibleForSuperSaverShipping>0</IsEligibleForSuperSaverShipping><IsFulfilledByAmazon>0</IsFulfilledByAmazon></OfferListing></Offer><Offer><Merchant><MerchantId>ASYDZOX0HKBSE</MerchantId><Name>any_book</Name><GlancePage>http://www.amazon.com/gp/help/seller/home.html?seller=ASYDZOX0HKBSE</GlancePage><Location><CountryCode>US</CountryCode><StateCode>FL</StateCode></Location><AverageFeedbackRating>4.7</AverageFeedbackRating><TotalFeedback>57247</TotalFeedback></Merchant><OfferAttributes><Condition>New</Condition><SubCondition>new</SubCondition><ConditionNote>Brand New! Huge seller with millions of transactions! Satisfaction Guaranteed.</ConditionNote></OfferAttributes><OfferListing><OfferListingId>jeTfYmfjgNbsfCdIzuJwSFLNxadsJ3ZHD9JGqumTXqjJtI3VIXINd15MgqhCokxIU0yBi5MwdGQ8DYlBgoVTjC8EdolFWn3eEHfZNv8EXajujsf8cgaNykLDCwoqMrK0N%2FIMYhLHk94%3D</OfferListingId><ExchangeId>Y12M6229004M3662072</ExchangeId><Price><Amount>3255</Amount><CurrencyCode>USD</CurrencyCode><FormattedPrice>$32.55</FormattedPrice></Price><Availability>Usually ships in 1-2 business days</Availability><AvailabilityAttributes><AvailabilityType>now</AvailabilityType><MinimumHours>24</MinimumHours><MaximumHours>48</MaximumHours></AvailabilityAttributes><Quantity>3</Quantity><IsEligibleForSuperSaverShipping>0</IsEligibleForSuperSaverShipping><IsFulfilledByAmazon>0</IsFulfilledByAmazon></OfferListing></Offer><Offer><Merchant><MerchantId>ASYDZOX0HKBSE</MerchantId><Name>any_book</Name><GlancePage>http://www.amazon.com/gp/help/seller/home.html?seller=ASYDZOX0HKBSE</GlancePage><Location><CountryCode>US</CountryCode><StateCode>FL</StateCode></Location><AverageFeedbackRating>4.7</AverageFeedbackRating><TotalFeedback>57247</TotalFeedback></Merchant><OfferAttributes><Condition>Used</Condition><SubCondition>mint</SubCondition><ConditionNote>New or Like new condition. Huge seller with millions of transactions! Satisfaction Guaranteed.</ConditionNote></OfferAttributes><OfferListing><OfferListingId>M3XKSQdlbTp%2BtVmx7%2BnJJlG7lRxxY79fguzUkJTlgpLJbCPj1tWtFH2EkoAsJCn6SJKboX9bNuFLwjiRHa3D9RAEX7QX7NPIB5%2Fdaecd%2Bj%2BWAI94YOIyiyAcntJhCkh2MBNPeVp5HUs%3D</OfferListingId><ExchangeId>Y12M3488323M5069715</ExchangeId><Price><Amount>3255</Amount><CurrencyCode>USD</CurrencyCode><FormattedPrice>$32.55</FormattedPrice></Price><Availability>Usually ships in 1-2 business days</Availability><AvailabilityAttributes><AvailabilityType>now</AvailabilityType><MinimumHours>24</MinimumHours><MaximumHours>48</MaximumHours></AvailabilityAttributes><Quantity>3</Quantity><IsEligibleForSuperSaverShipping>0</IsEligibleForSuperSaverShipping><IsFulfilledByAmazon>0</IsFulfilledByAmazon></OfferListing></Offer><Offer><Merchant><MerchantId>A3R9UOUN7H2N38</MerchantId><Name>THE_MEIRIN_USA</Name><GlancePage>http://www.amazon.com/gp/help/seller/home.html?seller=A3R9UOUN7H2N38</GlancePage><Location><CountryCode>JP</CountryCode></Location><AverageFeedbackRating>5.0</AverageFeedbackRating><TotalFeedback>7</TotalFeedback></Merchant><OfferAttributes><Condition>New</Condition><SubCondition>new</SubCondition><ConditionNote>Items will ship from our purchasing office in France via JAPAN, Please allow 3-4 weeks for delivery. Your credit card will charge when your item shipped from France. Duties and taxes are responsibility of purchaser. Brand New./(ecrit en Franponais)Les articles transporteront de notre bureau achetant en France par JAPON, veuillez accorder 3-4 semaines pour livraison. Votre carte de credit chargera quand votre article a transporte de France. Les devoirs et impots sont responsabilite d'acheteur. Tout nouveau.</ConditionNote></OfferAttributes><OfferListing><OfferListingId>KKuhxsQzOpzKyuQD4RDtx2QJ7GdO1WLqnj0lTpBtYu3xD3N8ce6OwTH4fYSciR9SpiECF5RmrfbGmifwC%2Fkc%2BIMrszFhhrDALfs0RMqaiEvPhrxmDaPg%2BJCQXGJxRkFdEZ16xAnNKls%3D</OfferListingId><ExchangeId>Y15M4614282M1376256</ExchangeId><Price><Amount>8200</Amount><CurrencyCode>USD</CurrencyCode><FormattedPrice>$82.00</FormattedPrice></Price><Availability>Usually ships in 1-2 business days</Availability><AvailabilityAttributes><AvailabilityType>now</AvailabilityType><MinimumHours>24</MinimumHours><MaximumHours>48</MaximumHours></AvailabilityAttributes><Quantity>1</Quantity><IsEligibleForSuperSaverShipping>0</IsEligibleForSuperSaverShipping><IsFulfilledByAmazon>0</IsFulfilledByAmazon></OfferListing></Offer></Offers></Item><Item><ASIN>0486400360</ASIN><OfferSummary><LowestNewPrice><Amount>774</Amount><CurrencyCode>USD</CurrencyCode><FormattedPrice>$7.74</FormattedPrice></LowestNewPrice><LowestUsedPrice><Amount>484</Amount><CurrencyCode>USD</CurrencyCode><FormattedPrice>$4.84</FormattedPrice></LowestUsedPrice><TotalNew>20</TotalNew><TotalUsed>26</TotalUsed><TotalCollectible>0</TotalCollectible><TotalRefurbished>0</TotalRefurbished></OfferSummary><Offers><TotalOffers>46</TotalOffers><TotalOfferPages>5</TotalOfferPages><Offer><Merchant><MerchantId>A29W1G2K20EIHN</MerchantId><Name>CDC Books</Name><GlancePage>http://www.amazon.com/gp/help/seller/home.html?seller=A29W1G2K20EIHN</GlancePage><AverageFeedbackRating>4.9</AverageFeedbackRating><TotalFeedback>1486</TotalFeedback></Merchant><OfferAttributes><Condition>Used</Condition><SubCondition>acceptable</SubCondition><ConditionNote>Passages have been highlighted. Sticker is on the cover. Ships Fast! Satisfaction Guaranteed!</ConditionNote></OfferAttributes><OfferListing><OfferListingId>9Vnix8LsHRsFaLuvoUtKwXpL%2F2dMt%2BuJ3p%2FKcVm6oS%2FRA65Ua2ZWgbQzLCyhe2yJeaYUpzqolJd6PuJ5MojHpaMlIP1okMYqLr7be2DnzFu8RdEcp7xBIm3PTh8Tx3F5zTv%2BVxhFGaIccYSnvc2sRA%3D%3D</OfferListingId><ExchangeId>Y19M4806126M7803385</ExchangeId><Price><Amount>484</Amount><CurrencyCode>USD</CurrencyCode><FormattedPrice>$4.84</FormattedPrice></Price><AmountSaved><Amount>1211</Amount><CurrencyCode>USD</CurrencyCode><FormattedPrice>$12.11</FormattedPrice></AmountSaved><PercentageSaved>71</PercentageSaved><Availability>Usually ships in 1-2 business days</Availability><AvailabilityAttributes><AvailabilityType>now</AvailabilityType><MinimumHours>24</MinimumHours><MaximumHours>48</MaximumHours></AvailabilityAttributes><Quantity>1</Quantity><IsEligibleForSuperSaverShipping>0</IsEligibleForSuperSaverShipping><IsFulfilledByAmazon>0</IsFulfilledByAmazon></OfferListing></Offer><Offer><Merchant><MerchantId>A1WAG3K51RNA7A</MerchantId><Name>atlanta-book-company</Name><GlancePage>http://www.amazon.com/gp/help/seller/home.html?seller=A1WAG3K51RNA7A</GlancePage><Location><CountryCode>US</CountryCode><StateCode>GA</StateCode></Location><AverageFeedbackRating>4.8</AverageFeedbackRating><TotalFeedback>69785</TotalFeedback></Merchant><OfferAttributes><Condition>Used</Condition><SubCondition>acceptable</SubCondition><ConditionNote>A tradition of southern quality and service. All books guaranteed at the Atlanta Book Company. Our mailers are 100% recyclable.</ConditionNote></OfferAttributes><OfferListing><OfferListingId>4j%2Fq0XfNiqJxvJ5yO22aNrdbM9NenHSFQtTQ4KywhC%2BDFNFrrio91pwbw8700ebX%2FQomkcRxhz9Y6apeOYET31WVRX18rCk%2FIhXB2YJmtIVs7gGLq6oS50cD51PcPHiHyIW2zGgyf0KqBfOIL4xFSA%3D%3D</OfferListingId><ExchangeId>Y13M4301219M6045846</ExchangeId><Price><Amount>484</Amount><CurrencyCode>USD</CurrencyCode><FormattedPrice>$4.84</FormattedPrice></Price><AmountSaved><Amount>1211</Amount><CurrencyCode>USD</CurrencyCode><FormattedPrice>$12.11</FormattedPrice></AmountSaved><PercentageSaved>71</PercentageSaved><Availability>Usually ships in 1-2 business days</Availability><AvailabilityAttributes><AvailabilityType>now</AvailabilityType><MinimumHours>24</MinimumHours><MaximumHours>48</MaximumHours></AvailabilityAttributes><Quantity>1</Quantity><IsEligibleForSuperSaverShipping>0</IsEligibleForSuperSaverShipping><IsFulfilledByAmazon>0</IsFulfilledByAmazon></OfferListing></Offer><Offer><Merchant><MerchantId>A1C4P8JOIRV737</MerchantId><Name>tacoma_goodwill</Name><GlancePage>http://www.amazon.com/gp/help/seller/home.html?seller=A1C4P8JOIRV737</GlancePage><Location><CountryCode>US</CountryCode><StateCode>WA</StateCode></Location><AverageFeedbackRating>4.9</AverageFeedbackRating><TotalFeedback>7638</TotalFeedback></Merchant><OfferAttributes><Condition>Used</Condition><SubCondition>good</SubCondition><ConditionNote>100% of your purchase helps Goodwill create jobs and change lives. All pages are intact, and the spine and cover are also intact. May have some usage wear, missing or damaged dust jacket, stickers, cover creases, bumped corners, bent pages, remainder mark, previous owner label or name, inscription, notes, underlining and/or highlighting. Text only; no CDs, InfoTrac, Access Codes, Activation Keys, or other inclusions.</ConditionNote></OfferAttributes><OfferListing><OfferListingId>YppUkx1HS8Eme63i%2FJLvvJ%2F4yxDdCajVYyUqACGE4%2Bcv0gwUX7uJFC%2Bo847yzZLc0gIY%2FxdlzHyHfzD4hLVDVw7WJUwpd4QUkEhKxfwUOi2mjdS4TOARvMAkYc2sQRmklDeWRWYNq0k%3D</OfferListingId><ExchangeId>Y11M3817929M8790523</ExchangeId><Price><Amount>484</Amount><CurrencyCode>USD</CurrencyCode><FormattedPrice>$4.84</FormattedPrice></Price><AmountSaved><Amount>1211</Amount><CurrencyCode>USD</CurrencyCode><FormattedPrice>$12.11</FormattedPrice></AmountSaved><PercentageSaved>71</PercentageSaved><Availability>Usually ships in 1-2 business days</Availability><AvailabilityAttributes><AvailabilityType>now</AvailabilityType><MinimumHours>24</MinimumHours><MaximumHours>48</MaximumHours></AvailabilityAttributes><Quantity>1</Quantity><IsEligibleForSuperSaverShipping>0</IsEligibleForSuperSaverShipping><IsFulfilledByAmazon>0</IsFulfilledByAmazon></OfferListing></Offer><Offer><Merchant><MerchantId>A2VS6A6X5QM016</MerchantId><Name>_beaglebooks_</Name><GlancePage>http://www.amazon.com/gp/help/seller/home.html?seller=A2VS6A6X5QM016</GlancePage><Location><CountryCode>US</CountryCode><StateCode>CA</StateCode></Location><AverageFeedbackRating>4.8</AverageFeedbackRating><TotalFeedback>29752</TotalFeedback></Merchant><OfferAttributes><Condition>Used</Condition><SubCondition>good</SubCondition><ConditionNote>Visible shelf wear -- may have some notes/markings on pages</ConditionNote></OfferAttributes><OfferListing><OfferListingId>WooX4xRfx7Juy5RU3MkiRkk9fZ9nuhB%2FMDXDGeaSwefLYeIqLgd1JL0IMm%2FZKUz6di%2BdQDxRtVRjAEMB%2BEUZgfTU6rDFYGZu94k2B4wjqUsj7WWtOazd9vgj%2BkZfVpT6TvX%2B6Yl80bI%3D</OfferListingId><ExchangeId>Y17M1180402M2697931</ExchangeId><Price><Amount>485</Amount><CurrencyCode>USD</CurrencyCode><FormattedPrice>$4.85</FormattedPrice></Price><AmountSaved><Amount>1210</Amount><CurrencyCode>USD</CurrencyCode><FormattedPrice>$12.10</FormattedPrice></AmountSaved><PercentageSaved>71</PercentageSaved><Availability>Usually ships in 1-2 business days</Availability><AvailabilityAttributes><AvailabilityType>now</AvailabilityType><MinimumHours>24</MinimumHours><MaximumHours>48</MaximumHours></AvailabilityAttributes><Quantity>1</Quantity><IsEligibleForSuperSaverShipping>0</IsEligibleForSuperSaverShipping><IsFulfilledByAmazon>0</IsFulfilledByAmazon></OfferListing></Offer><Offer><Merchant><MerchantId>A3HS7S1SRLXN6Q</MerchantId><Name>pageturnerbks</Name><GlancePage>http://www.amazon.com/gp/help/seller/home.html?seller=A3HS7S1SRLXN6Q</GlancePage><Location><CountryCode>US</CountryCode><StateCode>IL</StateCode></Location><AverageFeedbackRating>4.9</AverageFeedbackRating><TotalFeedback>224</TotalFeedback></Merchant><OfferAttributes><Condition>Used</Condition><SubCondition>good</SubCondition><ConditionNote>No spine creases; some edge wear to outer corner tips; Pages; no marks or tares</ConditionNote></OfferAttributes><OfferListing><OfferListingId>av06hVXOcH7DrXs83yGz0AEGtRc0S7zRb6pv48A%2BNQb7REHgpAbknW8kqovc7cttnoQgmOYIeFrSfvJQIl46fOQ2KGdSZqJ1NKyHRFP%2FVUoD3PwHs2WFEW7aVSBu%2BZqPpPZ2a%2BVw0qR0LYhovS9MWQ%3D%3D</OfferListingId><ExchangeId>Y11M2914839M6296333</ExchangeId><Price><Amount>489</Amount><CurrencyCode>USD</CurrencyCode><FormattedPrice>$4.89</FormattedPrice></Price><AmountSaved><Amount>1206</Amount><CurrencyCode>USD</CurrencyCode><FormattedPrice>$12.06</FormattedPrice></AmountSaved><PercentageSaved>71</PercentageSaved><Availability>Usually ships in 1-2 business days</Availability><AvailabilityAttributes><AvailabilityType>now</AvailabilityType><MinimumHours>24</MinimumHours><MaximumHours>48</MaximumHours></AvailabilityAttributes><Quantity>1</Quantity><IsEligibleForSuperSaverShipping>0</IsEligibleForSuperSaverShipping><IsFulfilledByAmazon>0</IsFulfilledByAmazon></OfferListing></Offer><Offer><Merchant><MerchantId>A24FD2ON6LXM2M</MerchantId><Name>belomargeo</Name><GlancePage>http://www.amazon.com/gp/help/seller/home.html?seller=A24FD2ON6LXM2M</GlancePage><Location><CountryCode>US</CountryCode><StateCode>PA</StateCode></Location><AverageFeedbackRating>4.9</AverageFeedbackRating><TotalFeedback>583</TotalFeedback></Merchant><OfferAttributes><Condition>Used</Condition><SubCondition>verygood</SubCondition><ConditionNote>A guaranteed lightly used condition; pages are clean with tight binding.</ConditionNote></OfferAttributes><OfferListing><OfferListingId>07lGh540%2BWp6t4H6TLAeZ%2FU4m50Ja1a3OmJivivM5rFQJZvmRcsFd3cbsq2lS%2Fojruyh5Mt3%2Ffw864h7XY3i4YZJ1p9aBHT10hT%2FsV4vI0ccZsbyI93x%2BQ8vXziehzo2%2F5aWFqQfhZE%3D</OfferListingId><ExchangeId>Y13M1356686M2359446</ExchangeId><Price><Amount>499</Amount><CurrencyCode>USD</CurrencyCode><FormattedPrice>$4.99</FormattedPrice></Price><AmountSaved><Amount>1196</Amount><CurrencyCode>USD</CurrencyCode><FormattedPrice>$11.96</FormattedPrice></AmountSaved><PercentageSaved>71</PercentageSaved><Availability>Usually ships in 1-2 business days</Availability><AvailabilityAttributes><AvailabilityType>now</AvailabilityType><MinimumHours>24</MinimumHours><MaximumHours>48</MaximumHours></AvailabilityAttributes><Quantity>1</Quantity><IsEligibleForSuperSaverShipping>0</IsEligibleForSuperSaverShipping><IsFulfilledByAmazon>0</IsFulfilledByAmazon></OfferListing></Offer><Offer><Merchant><MerchantId>ASWK2P83YYFWO</MerchantId><Name>textbooksnow-</Name><GlancePage>http://www.amazon.com/gp/help/seller/home.html?seller=ASWK2P83YYFWO</GlancePage><Location><CountryCode>US</CountryCode><StateCode>IL</StateCode></Location><AverageFeedbackRating>4.7</AverageFeedbackRating><TotalFeedback>41219</TotalFeedback></Merchant><OfferAttributes><Condition>Used</Condition><SubCondition>good</SubCondition><ConditionNote>Inventory subject to prior sale. Used items have varying degrees of wear, highlighting, etc. and may not include supplements such as infotrac or other web access codes. Expedited orders cannot be sent to PO Box. Sorry, not able to ship to APO, FPO, Alaska, and Hawaii.</ConditionNote></OfferAttributes><OfferListing><OfferListingId>InQEho00blpLIKJOD5Qk0Sld1HZgatt85s4r9s0nWWkcet6f7hG11m3PKma4S6MwvhT8v30OCWaq%2B27OLPPuOPatMJZ2VYNq9k1GqX1ds2XczM%2FqFPOu5dhrYp6YbwylD%2Fy6sOCFOe4%3D</OfferListingId><ExchangeId>Y19M0299465M0843500</ExchangeId><Price><Amount>678</Amount><CurrencyCode>USD</CurrencyCode><FormattedPrice>$6.78</FormattedPrice></Price><AmountSaved><Amount>1017</Amount><CurrencyCode>USD</CurrencyCode><FormattedPrice>$10.17</FormattedPrice></AmountSaved><PercentageSaved>60</PercentageSaved><Availability>Usually ships in 1-2 business days</Availability><AvailabilityAttributes><AvailabilityType>now</AvailabilityType><MinimumHours>24</MinimumHours><MaximumHours>48</MaximumHours></AvailabilityAttributes><Quantity>1</Quantity><IsEligibleForSuperSaverShipping>0</IsEligibleForSuperSaverShipping><IsFulfilledByAmazon>0</IsFulfilledByAmazon></OfferListing></Offer><Offer><Merchant><MerchantId>A2R7XNPZ1DDRC0</MerchantId><Name>pinchotbooks</Name><GlancePage>http://www.amazon.com/gp/help/seller/home.html?seller=A2R7XNPZ1DDRC0</GlancePage><Location><CountryCode>US</CountryCode><StateCode>WY</StateCode></Location><AverageFeedbackRating>5.0</AverageFeedbackRating><TotalFeedback>159</TotalFeedback></Merchant><OfferAttributes><Condition>Used</Condition><SubCondition>verygood</SubCondition></OfferAttributes><OfferListing><OfferListingId>gDSNDW%2FRq4KRHV8vZZ%2B9Bciw6KBAe7x8q43NZJMnHnIyzFdipU8psU6ohf2Gp%2FJdyKmYBBTXl9%2BAv4lxI0jump8sb%2BhMn9%2B9%2BI1U95o6dyuCTM%2FnmqsF4CdFuSi4hp7t9RdgeAa9zjeTizUicrvMqA%3D%3D</OfferListingId><ExchangeId>Y14M2802529M4064698</ExchangeId><Price><Amount>688</Amount><CurrencyCode>USD</CurrencyCode><FormattedPrice>$6.88</FormattedPrice></Price><AmountSaved><Amount>1007</Amount><CurrencyCode>USD</CurrencyCode><FormattedPrice>$10.07</FormattedPrice></AmountSaved><PercentageSaved>59</PercentageSaved><Availability>Usually ships in 1-2 business days</Availability><AvailabilityAttributes><AvailabilityType>now</AvailabilityType><MinimumHours>24</MinimumHours><MaximumHours>48</MaximumHours></AvailabilityAttributes><Quantity>1</Quantity><IsEligibleForSuperSaverShipping>0</IsEligibleForSuperSaverShipping><IsFulfilledByAmazon>0</IsFulfilledByAmazon></OfferListing></Offer><Offer><Merchant><MerchantId>AK1FBJ148AJGG</MerchantId><Name>lynns-bookhouse</Name><GlancePage>http://www.amazon.com/gp/help/seller/home.html?seller=AK1FBJ148AJGG</GlancePage><Location><CountryCode>US</CountryCode><StateCode>CA</StateCode></Location><AverageFeedbackRating>4.9</AverageFeedbackRating><TotalFeedback>59</TotalFeedback></Merchant><OfferAttributes><Condition>Used</Condition><SubCondition>verygood</SubCondition><ConditionNote>Used clean softcover. Pencil underlines between pages 1 thru 23, then completely stops. Book tightly bound, square &amp; straight.</ConditionNote></OfferAttributes><OfferListing><OfferListingId>s6Rzd1lY8V%2B272SIqViOq4AV8lN6tnYaNzjWM5Imvd6RSoAzS9U%2BT6Tj9UjBCDMWdiCnC2MwKSzZ7FCIXJGjXgYAfBrcft7WDhuoa%2FcMQ7qs7iQ2tj9BgsP%2Bbbs%2BrO7Rlg30VKxzSLQfckbY86AT2A%3D%3D</OfferListingId><ExchangeId>Y12M4040917M7685190</ExchangeId><Price><Amount>695</Amount><CurrencyCode>USD</CurrencyCode><FormattedPrice>$6.95</FormattedPrice></Price><AmountSaved><Amount>1000</Amount><CurrencyCode>USD</CurrencyCode><FormattedPrice>$10.00</FormattedPrice></AmountSaved><PercentageSaved>59</PercentageSaved><Availability>Usually ships in 1-2 business days</Availability><AvailabilityAttributes><AvailabilityType>now</AvailabilityType><MinimumHours>24</MinimumHours><MaximumHours>48</MaximumHours></AvailabilityAttributes><Quantity>1</Quantity><IsEligibleForSuperSaverShipping>0</IsEligibleForSuperSaverShipping><IsFulfilledByAmazon>0</IsFulfilledByAmazon></OfferListing></Offer><Offer><Merchant><MerchantId>A2L77EE7U53NWQ</MerchantId><Name>Warehouse Deals</Name><GlancePage>http://www.amazon.com/gp/help/seller/home.html?seller=A2L77EE7U53NWQ</GlancePage><AverageFeedbackRating>4.8</AverageFeedbackRating><TotalFeedback>166530</TotalFeedback></Merchant><OfferAttributes><Condition>Used</Condition><SubCondition>good</SubCondition><ConditionNote>Medium cut on back. Never read copy. All purchases eligible for Amazon customer service and 30 day return policy.</ConditionNote></OfferAttributes><OfferListing><OfferListingId>oV8nN%2BoRW8zKbTGqNMEw3NVgXA2yK7%2FIm2n%2BUmoH6MXPtQWeMtyTpr0nCsZ1m%2BjnOK1P4bq6iPPjzqGvnMY8w4wrvwRsbFymEYBb6E1N6hLIX57jQWw6SMuvb5%2BaBRCv83%2FMAklQwX4%3D</OfferListingId><ExchangeId>Y12M6227522M9091483</ExchangeId><Price><Amount>749</Amount><CurrencyCode>USD</CurrencyCode><FormattedPrice>$7.49</FormattedPrice></Price><AmountSaved><Amount>946</Amount><CurrencyCode>USD</CurrencyCode><FormattedPrice>$9.46</FormattedPrice></AmountSaved><PercentageSaved>56</PercentageSaved><Availability>Usually ships in 24 hours</Availability><AvailabilityAttributes><AvailabilityType>now</AvailabilityType><MinimumHours>0</MinimumHours><MaximumHours>0</MaximumHours></AvailabilityAttributes><Quantity>1</Quantity><IsEligibleForSuperSaverShipping>1</IsEligibleForSuperSaverShipping><IsFulfilledByAmazon>1</IsFulfilledByAmazon></OfferListing></Offer></Offers></Item><Item><ASIN>0486417670</ASIN><OfferSummary><LowestNewPrice><Amount>784</Amount><CurrencyCode>USD</CurrencyCode><FormattedPrice>$7.84</FormattedPrice></LowestNewPrice><LowestUsedPrice><Amount>423</Amount><CurrencyCode>USD</CurrencyCode><FormattedPrice>$4.23</FormattedPrice></LowestUsedPrice><TotalNew>17</TotalNew><TotalUsed>20</TotalUsed><TotalCollectible>0</TotalCollectible><TotalRefurbished>0</TotalRefurbished></OfferSummary><Offers><TotalOffers>37</TotalOffers><TotalOfferPages>4</TotalOfferPages><Offer><Merchant><MerchantId>A1WRQHCZ5YVR9F</MerchantId><Name>specialty-book</Name><GlancePage>http://www.amazon.com/gp/help/seller/home.html?seller=A1WRQHCZ5YVR9F</GlancePage><Location><CountryCode>US</CountryCode><StateCode>OH</StateCode></Location><AverageFeedbackRating>4.9</AverageFeedbackRating><TotalFeedback>4315</TotalFeedback></Merchant><OfferAttributes><Condition>Used</Condition><SubCondition>good</SubCondition><ConditionNote>Great Buy!! Satisfaction GUARANTEED! Ships within 24 Hours!</ConditionNote></OfferAttributes><OfferListing><OfferListingId>Ok%2BFeWsvWTmWEwln5Mp7LFLFGWQl1Ylvi90uKUHwHH5EYYXuhZpLhT48H0aVEWg7WVjAEuo9trfQsGXYLSU82gPCeNSZ5EqpP0B4kfPlopOR4JfM%2FI%2FSuMEuj9Ca9PfUpNX0pOL7yq4%3D</OfferListingId><ExchangeId>Y12M4961723M5763023</ExchangeId><Price><Amount>423</Amount><CurrencyCode>USD</CurrencyCode><FormattedPrice>$4.23</FormattedPrice></Price><AmountSaved><Amount>872</Amount><CurrencyCode>USD</CurrencyCode><FormattedPrice>$8.72</FormattedPrice></AmountSaved><PercentageSaved>67</PercentageSaved><Availability>Usually ships in 1-2 business days</Availability><AvailabilityAttributes><AvailabilityType>now</AvailabilityType><MinimumHours>24</MinimumHours><MaximumHours>48</MaximumHours></AvailabilityAttributes><Quantity>1</Quantity><IsEligibleForSuperSaverShipping>0</IsEligibleForSuperSaverShipping><IsFulfilledByAmazon>0</IsFulfilledByAmazon></OfferListing></Offer><Offer><Merchant><MerchantId>A32UWF11CYXVV6</MerchantId><Name>Goodwill Southern California</Name><GlancePage>http://www.amazon.com/gp/help/seller/home.html?seller=A32UWF11CYXVV6</GlancePage><Location><CountryCode>US</CountryCode><StateCode>CA</StateCode></Location><AverageFeedbackRating>4.9</AverageFeedbackRating><TotalFeedback>2067</TotalFeedback></Merchant><OfferAttributes><Condition>Used</Condition><SubCondition>good</SubCondition><ConditionNote>Great reading copy! Donated books in good or better condition. Ships within 1 to 2 business days! Satisfaction Guaranteed!</ConditionNote></OfferAttributes><OfferListing><OfferListingId>LJaaMbmnlqWHid8gdMRwcNi9%2FYJfPK2cYnLGltA5HHZBhuDnXnuDsEQTmUJOl3C%2BNZBvwQQIscojKMyRET3MR5Pd2oGgEJdOIo9iuh2xA4LiJEEJumzfkGvaU%2BFOiNAwt257NWauVGqfbo2p8uK8cw%3D%3D</OfferListingId><ExchangeId>Y20M4525064M0604599</ExchangeId><Price><Amount>423</Amount><CurrencyCode>USD</CurrencyCode><FormattedPrice>$4.23</FormattedPrice></Price><AmountSaved><Amount>872</Amount><CurrencyCode>USD</CurrencyCode><FormattedPrice>$8.72</FormattedPrice></AmountSaved><PercentageSaved>67</PercentageSaved><Availability>Usually ships in 1-2 business days</Availability><AvailabilityAttributes><AvailabilityType>now</AvailabilityType><MinimumHours>24</MinimumHours><MaximumHours>48</MaximumHours></AvailabilityAttributes><Quantity>1</Quantity><IsEligibleForSuperSaverShipping>0</IsEligibleForSuperSaverShipping><IsFulfilledByAmazon>0</IsFulfilledByAmazon></OfferListing></Offer><Offer><Merchant><MerchantId>A1C4P8JOIRV737</MerchantId><Name>tacoma_goodwill</Name><GlancePage>http://www.amazon.com/gp/help/seller/home.html?seller=A1C4P8JOIRV737</GlancePage><Location><CountryCode>US</CountryCode><StateCode>WA</StateCode></Location><AverageFeedbackRating>4.9</AverageFeedbackRating><TotalFeedback>7638</TotalFeedback></Merchant><OfferAttributes><Condition>Used</Condition><SubCondition>good</SubCondition><ConditionNote>100% of your purchase helps Goodwill create jobs and change lives. All pages are intact, and the spine and cover are also intact. May have some usage wear, missing or damaged dust jacket, stickers, cover creases, bumped corners, bent pages, remainder mark, previous owner label or name, inscription, notes, underlining and/or highlighting. Text only; no CDs, InfoTrac, Access Codes, Activation Keys, or other inclusions.</ConditionNote></OfferAttributes><OfferListing><OfferListingId>CRItfLFmUA%2B0%2FFCS3JI997rNVQrR1idZBNXyD1MTdXN3gdIdwwgOW4jkXZmhaM8U6ZHy5FT8BOwC5YuLEMGBU0Jg5oGUhU6LPQAQRgwZqWurOicISDN9WUGl5ue6XkncPGqcoFvgdn4%3D</OfferListingId><ExchangeId>Y11M5161854M1053087</ExchangeId><Price><Amount>423</Amount><CurrencyCode>USD</CurrencyCode><FormattedPrice>$4.23</FormattedPrice></Price><AmountSaved><Amount>872</Amount><CurrencyCode>USD</CurrencyCode><FormattedPrice>$8.72</FormattedPrice></AmountSaved><PercentageSaved>67</PercentageSaved><Availability>Usually ships in 1-2 business days</Availability><AvailabilityAttributes><AvailabilityType>now</AvailabilityType><MinimumHours>24</MinimumHours><MaximumHours>48</MaximumHours></AvailabilityAttributes><Quantity>1</Quantity><IsEligibleForSuperSaverShipping>0</IsEligibleForSuperSaverShipping><IsFulfilledByAmazon>0</IsFulfilledByAmazon></OfferListing></Offer><Offer><Merchant><MerchantId>A2UXMHC8QUWMTS</MerchantId><Name>BookBoys</Name><GlancePage>http://www.amazon.com/gp/help/seller/home.html?seller=A2UXMHC8QUWMTS</GlancePage><AverageFeedbackRating>4.7</AverageFeedbackRating><TotalFeedback>1030</TotalFeedback></Merchant><OfferAttributes><Condition>Used</Condition><SubCondition>good</SubCondition><ConditionNote>Item has been read but is in clean condition, and cover and pages are intact. Pages may include limited notes and highlighting. Supplemental material not guaranteed to be included. BookBoys is dedicated to our customers' satisfaction. We look forward to your order and ship our items quickly!</ConditionNote></OfferAttributes><OfferListing><OfferListingId>7pJ4j0SD7uxEgwNDQ1J534LPojFT1xRpFvm1PcrLGQwJeg637zbP5z7LCriBod2mntifaPTt96qsUmzC7V2wJQ8JVNJ8Nr%2FOE08QA2%2BzZwsy0%2FGKGYnKUtqUzdiNKkDrS7%2FQ6BNVR84%3D</OfferListingId><ExchangeId>Y12M2493252M8831019</ExchangeId><Price><Amount>423</Amount><CurrencyCode>USD</CurrencyCode><FormattedPrice>$4.23</FormattedPrice></Price><AmountSaved><Amount>872</Amount><CurrencyCode>USD</CurrencyCode><FormattedPrice>$8.72</FormattedPrice></AmountSaved><PercentageSaved>67</PercentageSaved><Availability>Usually ships in 1-2 business days</Availability><AvailabilityAttributes><AvailabilityType>now</AvailabilityType><MinimumHours>24</MinimumHours><MaximumHours>48</MaximumHours></AvailabilityAttributes><Quantity>1</Quantity><IsEligibleForSuperSaverShipping>0</IsEligibleForSuperSaverShipping><IsFulfilledByAmazon>0</IsFulfilledByAmazon></OfferListing></Offer><Offer><Merchant><MerchantId>A1E55PRDFYON3D</MerchantId><Name>zomanybooks</Name><GlancePage>http://www.amazon.com/gp/help/seller/home.html?seller=A1E55PRDFYON3D</GlancePage><Location><CountryCode>US</CountryCode><StateCode>CA</StateCode></Location><AverageFeedbackRating>4.9</AverageFeedbackRating><TotalFeedback>593</TotalFeedback></Merchant><OfferAttributes><Condition>Used</Condition><SubCondition>verygood</SubCondition><ConditionNote>minor shelf wear to covers</ConditionNote></OfferAttributes><OfferListing><OfferListingId>Am%2FhpKOKIAPQJXPLlhBsMByGar0Qc9nibyJaMvoQnrc71nUwo%2BSceTGyt8tpcDkJEeBdRmgQ092X1Vsz%2FL0SHlX%2F5X%2FETiROIgYjGpqONDbhYsPSYsX8GAoMnKwqSW29ZvevOo2IspU%3D</OfferListingId><ExchangeId>Y12M5341141M2225345</ExchangeId><Price><Amount>426</Amount><CurrencyCode>USD</CurrencyCode><FormattedPrice>$4.26</FormattedPrice></Price><AmountSaved><Amount>869</Amount><CurrencyCode>USD</CurrencyCode><FormattedPrice>$8.69</FormattedPrice></AmountSaved><PercentageSaved>67</PercentageSaved><Availability>Usually ships in 1-2 business days</Availability><AvailabilityAttributes><AvailabilityType>now</AvailabilityType><MinimumHours>24</MinimumHours><MaximumHours>48</MaximumHours></AvailabilityAttributes><Quantity>1</Quantity><IsEligibleForSuperSaverShipping>0</IsEligibleForSuperSaverShipping><IsFulfilledByAmazon>0</IsFulfilledByAmazon></OfferListing></Offer><Offer><Merchant><MerchantId>A4P64Y9KHNAFU</MerchantId><Name>Nago</Name><GlancePage>http://www.amazon.com/gp/help/seller/home.html?seller=A4P64Y9KHNAFU</GlancePage><AverageFeedbackRating>5.0</AverageFeedbackRating><TotalFeedback>2</TotalFeedback></Merchant><OfferAttributes><Condition>Used</Condition><SubCondition>verygood</SubCondition></OfferAttributes><OfferListing><OfferListingId>OjgcZKPSeBxYMVOy7K%2BSSwOTKwIupMMgvMAYKLlvilwhD4jCweGrA%2Fmor0fM%2FNUrKMyMymMFgCNcafnfAmlHifReWR4%2BJDLBIWiXalXeyLgFmxOuL5mCTLdgrKAHeYVB7UoU7axkkZ4%3D</OfferListingId><ExchangeId>Y16M7018909M7648232</ExchangeId><Price><Amount>437</Amount><CurrencyCode>USD</CurrencyCode><FormattedPrice>$4.37</FormattedPrice></Price><AmountSaved><Amount>858</Amount><CurrencyCode>USD</CurrencyCode><FormattedPrice>$8.58</FormattedPrice></AmountSaved><PercentageSaved>66</PercentageSaved><Availability>Usually ships in 1-2 business days</Availability><AvailabilityAttributes><AvailabilityType>now</AvailabilityType><MinimumHours>24</MinimumHours><MaximumHours>48</MaximumHours></AvailabilityAttributes><Quantity>1</Quantity><IsEligibleForSuperSaverShipping>0</IsEligibleForSuperSaverShipping><IsFulfilledByAmazon>0</IsFulfilledByAmazon></OfferListing></Offer><Offer><Merchant><MerchantId>A22US64FFNKK65</MerchantId><Name>frecksfictionandmore</Name><GlancePage>http://www.amazon.com/gp/help/seller/home.html?seller=A22US64FFNKK65</GlancePage><Location><CountryCode>US</CountryCode><StateCode>MD</StateCode></Location><AverageFeedbackRating>4.9</AverageFeedbackRating><TotalFeedback>2464</TotalFeedback></Merchant><OfferAttributes><Condition>Used</Condition><SubCondition>mint</SubCondition><ConditionNote>Dover trade paperback. As new.</ConditionNote></OfferAttributes><OfferListing><OfferListingId>5Ao3w05vOsuA9IsrCb38rYe9ce37HT%2F5C1K1UQl1Ipu%2FPCHfGV3oG5kfPzLR%2BL%2FZluD8nEbRMKgJEcnG9zEHmaIqGrSDY2XBeX1vtqEEo10tRWjcmoC7%2F5CXRgQ9tFWfLtavC4lfO%2FU%3D</OfferListingId><ExchangeId>Y11M5109829M5659988</ExchangeId><Price><Amount>450</Amount><CurrencyCode>USD</CurrencyCode><FormattedPrice>$4.50</FormattedPrice></Price><AmountSaved><Amount>845</Amount><CurrencyCode>USD</CurrencyCode><FormattedPrice>$8.45</FormattedPrice></AmountSaved><PercentageSaved>65</PercentageSaved><Availability>Usually ships in 1-2 business days</Availability><AvailabilityAttributes><AvailabilityType>now</AvailabilityType><MinimumHours>24</MinimumHours><MaximumHours>48</MaximumHours></AvailabilityAttributes><Quantity>1</Quantity><IsEligibleForSuperSaverShipping>0</IsEligibleForSuperSaverShipping><IsFulfilledByAmazon>0</IsFulfilledByAmazon></OfferListing></Offer><Offer><Merchant><MerchantId>ANKWP86F8JTES</MerchantId><Name>Studentsales358</Name><GlancePage>http://www.amazon.com/gp/help/seller/home.html?seller=ANKWP86F8JTES</GlancePage><AverageFeedbackRating>0.0</AverageFeedbackRating><TotalFeedback>0</TotalFeedback></Merchant><OfferAttributes><Condition>Used</Condition><SubCondition>mint</SubCondition><ConditionNote>Very good condition. No underling/highlighting. Only damage is very minor-small tears and bending on binding and cover.</ConditionNote></OfferAttributes><OfferListing><OfferListingId>JNz%2B6ACVmO76rTj8J%2BwCq1QQoEtdbpfoApI8oPUFMZ7E11CSC%2FpgeUbrd3WZeD%2FNi1yTj84XTFAz%2BZK1KhDovJ1ImlnUpqjGHRhlb4nz62Ep9G1jinE0eBpGtnsxBf5brU%2BaBOhd5cs%3D</OfferListingId><ExchangeId>Y17M2674225M3764446</ExchangeId><Price><Amount>699</Amount><CurrencyCode>USD</CurrencyCode><FormattedPrice>$6.99</FormattedPrice></Price><AmountSaved><Amount>596</Amount><CurrencyCode>USD</CurrencyCode><FormattedPrice>$5.96</FormattedPrice></AmountSaved><PercentageSaved>46</PercentageSaved><Availability>Usually ships in 1-2 business days</Availability><AvailabilityAttributes><AvailabilityType>now</AvailabilityType><MinimumHours>24</MinimumHours><MaximumHours>48</MaximumHours></AvailabilityAttributes><Quantity>1</Quantity><IsEligibleForSuperSaverShipping>0</IsEligibleForSuperSaverShipping><IsFulfilledByAmazon>0</IsFulfilledByAmazon></OfferListing></Offer><Offer><Merchant><MerchantId>A3FCFCEMF5S0OE</MerchantId><Name>AlwaysAPleasure</Name><GlancePage>http://www.amazon.com/gp/help/seller/home.html?seller=A3FCFCEMF5S0OE</GlancePage><Location><CountryCode>US</CountryCode><StateCode>NY</StateCode></Location><AverageFeedbackRating>0.0</AverageFeedbackRating><TotalFeedback>0</TotalFeedback></Merchant><OfferAttributes><Condition>Used</Condition><SubCondition>good</SubCondition><ConditionNote>rare underlining; read</ConditionNote></OfferAttributes><OfferListing><OfferListingId>uaREgLwGCnz2V0aNB1CZwtMayg9HfCNu0h64Vq%2BoRxOcxiRK0cD%2FNMrBj1tEce9eoXO9evEKe%2FnxwVcnTxargpaR1EkBDHTEtFmN7ySLt6PaXkmmNd76R2nscxjSkgMrUlzx2Tt1D0o%3D</OfferListingId><ExchangeId>Y20M5658760M7783364</ExchangeId><Price><Amount>700</Amount><CurrencyCode>USD</CurrencyCode><FormattedPrice>$7.00</FormattedPrice></Price><AmountSaved><Amount>595</Amount><CurrencyCode>USD</CurrencyCode><FormattedPrice>$5.95</FormattedPrice></AmountSaved><PercentageSaved>46</PercentageSaved><Availability>Usually ships in 1-2 business days</Availability><AvailabilityAttributes><AvailabilityType>now</AvailabilityType><MinimumHours>24</MinimumHours><MaximumHours>48</MaximumHours></AvailabilityAttributes><Quantity>2</Quantity><IsEligibleForSuperSaverShipping>0</IsEligibleForSuperSaverShipping><IsFulfilledByAmazon>0</IsFulfilledByAmazon></OfferListing></Offer><Offer><Merchant><MerchantId>A30Y434SYD4538</MerchantId><Name>bookbin2</Name><GlancePage>http://www.amazon.com/gp/help/seller/home.html?seller=A30Y434SYD4538</GlancePage><Location><CountryCode>US</CountryCode><StateCode>OR</StateCode></Location><AverageFeedbackRating>4.9</AverageFeedbackRating><TotalFeedback>396</TotalFeedback></Merchant><OfferAttributes><Condition>Used</Condition><SubCondition>good</SubCondition><ConditionNote>Publisher: DOVERPUB&lt;br&gt;Date of Publication: 2001&lt;br&gt;Binding: trade paper&lt;br&gt;Edition: &lt;br&gt;Condition: Good+&lt;br&gt;Description: 9780486417677 Some shelf wear. Remainder-mark.&lt;br&gt;</ConditionNote></OfferAttributes><OfferListing><OfferListingId>P2Rx%2Bh8Z23koSC7qHct%2FTttqPUqR53XV7p6EqwSlu%2FxjmBacqUnV6K0ePlrH%2BvXsl5%2Fp0MP4LYHKRCDoggjMEEXdOmV%2FMKqVf4eJy5%2BEF0XDqRn22a78jdmKDTqTDYtm5WW%2FRhExBR4%3D</OfferListingId><ExchangeId>Y11M5569872M7565859</ExchangeId><Price><Amount>750</Amount><CurrencyCode>USD</CurrencyCode><FormattedPrice>$7.50</FormattedPrice></Price><AmountSaved><Amount>545</Amount><CurrencyCode>USD</CurrencyCode><FormattedPrice>$5.45</FormattedPrice></AmountSaved><PercentageSaved>42</PercentageSaved><Availability>Usually ships in 1-2 business days</Availability><AvailabilityAttributes><AvailabilityType>now</AvailabilityType><MinimumHours>24</MinimumHours><MaximumHours>48</MaximumHours></AvailabilityAttributes><Quantity>1</Quantity><IsEligibleForSuperSaverShipping>0</IsEligibleForSuperSaverShipping><IsFulfilledByAmazon>0</IsFulfilledByAmazon></OfferListing></Offer></Offers></Item><Item><ASIN>087220474X</ASIN><OfferSummary><LowestNewPrice><Amount>590</Amount><CurrencyCode>USD</CurrencyCode><FormattedPrice>$5.90</FormattedPrice></LowestNewPrice><LowestUsedPrice><Amount>337</Amount><CurrencyCode>USD</CurrencyCode><FormattedPrice>$3.37</FormattedPrice></LowestUsedPrice><TotalNew>10</TotalNew><TotalUsed>15</TotalUsed><TotalCollectible>0</TotalCollectible><TotalRefurbished>0</TotalRefurbished></OfferSummary><Offers><TotalOffers>25</TotalOffers><TotalOfferPages>3</TotalOfferPages><Offer><Merchant><MerchantId>A1XT3HWNV29MDM</MerchantId><Name>belltowerbooks</Name><GlancePage>http://www.amazon.com/gp/help/seller/home.html?seller=A1XT3HWNV29MDM</GlancePage><Location><CountryCode>US</CountryCode><StateCode>PA</StateCode></Location><AverageFeedbackRating>4.7</AverageFeedbackRating><TotalFeedback>47991</TotalFeedback></Merchant><OfferAttributes><Condition>Used</Condition><SubCondition>acceptable</SubCondition><ConditionNote>Standard shipping arrives within 6-8 business days. This item does not include any CDs, Infotracks, Access cards or other supplementary material. Includes BROKEN SPINE, LOOSE PAGES, underlining, cover wear, edge wear</ConditionNote></OfferAttributes><OfferListing><OfferListingId>PtQHW7BEUDZ7GPEFNZRciQhcee1aYLZWEoNVtrzTFd1czEa7xSdYdGZcUDPiv8MhnS%2FW%2B5cZmGbmgmwYE%2FEOZyJ8JJJBlzSeAPkZDqB2AI2AkXbNGTZn3wlkVeCuSmElhwWzC22jEJf7dQ%2Btov8tLw%3D%3D</OfferListingId><ExchangeId>Y14M2127095M8104628</ExchangeId><Price><Amount>337</Amount><CurrencyCode>USD</CurrencyCode><FormattedPrice>$3.37</FormattedPrice></Price><AmountSaved><Amount>413</Amount><CurrencyCode>USD</CurrencyCode><FormattedPrice>$4.13</FormattedPrice></AmountSaved><PercentageSaved>55</PercentageSaved><Availability>Usually ships in 1-2 business days</Availability><AvailabilityAttributes><AvailabilityType>now</AvailabilityType><MinimumHours>24</MinimumHours><MaximumHours>48</MaximumHours></AvailabilityAttributes><Quantity>1</Quantity><IsEligibleForSuperSaverShipping>0</IsEligibleForSuperSaverShipping><IsFulfilledByAmazon>0</IsFulfilledByAmazon></OfferListing></Offer><Offer><Merchant><MerchantId>A1XT3HWNV29MDM</MerchantId><Name>belltowerbooks</Name><GlancePage>http://www.amazon.com/gp/help/seller/home.html?seller=A1XT3HWNV29MDM</GlancePage><Location><CountryCode>US</CountryCode><StateCode>PA</StateCode></Location><AverageFeedbackRating>4.7</AverageFeedbackRating><TotalFeedback>47991</TotalFeedback></Merchant><OfferAttributes><Condition>Used</Condition><SubCondition>verygood</SubCondition><ConditionNote>Standard shipping arrives within 6-8 business days. This item does not include any CDs, Infotracks, Access cards or other supplementary material. Includes edge wear</ConditionNote></OfferAttributes><OfferListing><OfferListingId>6HZRI%2FGOwIYi2JC81Dk6Mt%2FLlHC201UkskaT4f9AnKQeidRs2jeltTbMzkHLJ9opueqfIQzKGoZZCOX85LaavM%2BW2XTBwfRVE3qm6R1TLe1d%2F64eZ4BLijO%2B2ufecLomYcUvNlylipnai2zJAr%2BNkA%3D%3D</OfferListingId><ExchangeId>Y14M6026820M7954533</ExchangeId><Price><Amount>339</Amount><CurrencyCode>USD</CurrencyCode><FormattedPrice>$3.39</FormattedPrice></Price><AmountSaved><Amount>411</Amount><CurrencyCode>USD</CurrencyCode><FormattedPrice>$4.11</FormattedPrice></AmountSaved><PercentageSaved>55</PercentageSaved><Availability>Usually ships in 1-2 business days</Availability><AvailabilityAttributes><AvailabilityType>now</AvailabilityType><MinimumHours>24</MinimumHours><MaximumHours>48</MaximumHours></AvailabilityAttributes><Quantity>1</Quantity><IsEligibleForSuperSaverShipping>0</IsEligibleForSuperSaverShipping><IsFulfilledByAmazon>0</IsFulfilledByAmazon></OfferListing></Offer><Offer><Merchant><MerchantId>AZPQKLIWQKVZ</MerchantId><Name>powells_books</Name><GlancePage>http://www.amazon.com/gp/help/seller/home.html?seller=AZPQKLIWQKVZ</GlancePage><Location><CountryCode>US</CountryCode><StateCode>OR</StateCode></Location><AverageFeedbackRating>4.8</AverageFeedbackRating><TotalFeedback>26353</TotalFeedback></Merchant><OfferAttributes><Condition>Used</Condition><SubCondition>acceptable</SubCondition><ConditionNote>Legendary independent bookstore online since 1994. Reliable customer service and no-hassle return policy.</ConditionNote></OfferAttributes><OfferListing><OfferListingId>V4sNKz1yn0ICxgZXho4nGkCJDlqJBgjAPErGsqrwnUnhBx%2BAy8%2BGP16kjCPxJ4Utrk%2BzU%2B4KWYotrCr%2BNCRl8x9mJ9UcKp13nM84OIUAb%2F1uT%2FoIYtNO1xTBw%2FPbWAd45DoBzPNEykI%3D</OfferListingId><ExchangeId>Y11M0242611M9340334</ExchangeId><Price><Amount>350</Amount><CurrencyCode>USD</CurrencyCode><FormattedPrice>$3.50</FormattedPrice></Price><AmountSaved><Amount>400</Amount><CurrencyCode>USD</CurrencyCode><FormattedPrice>$4.00</FormattedPrice></AmountSaved><PercentageSaved>53</PercentageSaved><Availability>Usually ships in 1-2 business days</Availability><AvailabilityAttributes><AvailabilityType>now</AvailabilityType><MinimumHours>24</MinimumHours><MaximumHours>48</MaximumHours></AvailabilityAttributes><Quantity>1</Quantity><IsEligibleForSuperSaverShipping>0</IsEligibleForSuperSaverShipping><IsFulfilledByAmazon>0</IsFulfilledByAmazon></OfferListing></Offer><Offer><Merchant><MerchantId>A1RUONF711UVXD</MerchantId><Name>BestIranianDotCom</Name><GlancePage>http://www.amazon.com/gp/help/seller/home.html?seller=A1RUONF711UVXD</GlancePage><Location><CountryCode>US</CountryCode><StateCode>TX</StateCode></Location><AverageFeedbackRating>4.9</AverageFeedbackRating><TotalFeedback>20</TotalFeedback></Merchant><OfferAttributes><Condition>Used</Condition><SubCondition>verygood</SubCondition><ConditionNote>very clean</ConditionNote></OfferAttributes><OfferListing><OfferListingId>%2FBJO6MIbW%2BUpFHrMe1E8%2FdQv7jpqQs1elATQW3Jp39EjLhIpgTfo3aBoYrSSmxadI9VuZRio%2BpApm8k0TbeMb4plPcUuXwg4wuk2e70aUoGf1sUptMEnVo0u4jKJSrEptGV3X0VZSbs%3D</OfferListingId><ExchangeId>Y20M4524326M0631420</ExchangeId><Price><Amount>399</Amount><CurrencyCode>USD</CurrencyCode><FormattedPrice>$3.99</FormattedPrice></Price><AmountSaved><Amount>351</Amount><CurrencyCode>USD</CurrencyCode><FormattedPrice>$3.51</FormattedPrice></AmountSaved><PercentageSaved>47</PercentageSaved><Availability>Usually ships in 1-2 business days</Availability><AvailabilityAttributes><AvailabilityType>now</AvailabilityType><MinimumHours>24</MinimumHours><MaximumHours>48</MaximumHours></AvailabilityAttributes><Quantity>1</Quantity><IsEligibleForSuperSaverShipping>0</IsEligibleForSuperSaverShipping><IsFulfilledByAmazon>0</IsFulfilledByAmazon></OfferListing></Offer><Offer><Merchant><MerchantId>A1TEE8TAXD33WK</MerchantId><Name>eds828</Name><GlancePage>http://www.amazon.com/gp/help/seller/home.html?seller=A1TEE8TAXD33WK</GlancePage><AverageFeedbackRating>5.0</AverageFeedbackRating><TotalFeedback>10</TotalFeedback></Merchant><OfferAttributes><Condition>Used</Condition><SubCondition>good</SubCondition><ConditionNote>in great condition, has some underlining in pencil</ConditionNote></OfferAttributes><OfferListing><OfferListingId>rKijNioBHo4L%2BXbpLp3HMoBaq5mUKB08VxpDNPlaQMVK%2FGPwQGaj5PO6vB9spQfI6jW7JeRO9bZTmJN%2FHqUFWnhSmRRdPJz7R7e%2FJ17zE50Vsa7EPA2GSJz2EuW4Msh43azXE5QMkJI%3D</OfferListingId><ExchangeId>Y14M6250826M0437206</ExchangeId><Price><Amount>400</Amount><CurrencyCode>USD</CurrencyCode><FormattedPrice>$4.00</FormattedPrice></Price><AmountSaved><Amount>350</Amount><CurrencyCode>USD</CurrencyCode><FormattedPrice>$3.50</FormattedPrice></AmountSaved><PercentageSaved>47</PercentageSaved><Availability>Usually ships in 1-2 business days</Availability><AvailabilityAttributes><AvailabilityType>now</AvailabilityType><MinimumHours>24</MinimumHours><MaximumHours>48</MaximumHours></AvailabilityAttributes><Quantity>1</Quantity><IsEligibleForSuperSaverShipping>0</IsEligibleForSuperSaverShipping><IsFulfilledByAmazon>0</IsFulfilledByAmazon></OfferListing></Offer><Offer><Merchant><MerchantId>A1FN97TIA51BN1</MerchantId><Name>textbooks_source</Name><GlancePage>http://www.amazon.com/gp/help/seller/home.html?seller=A1FN97TIA51BN1</GlancePage><Location><CountryCode>US</CountryCode><StateCode>MO</StateCode></Location><AverageFeedbackRating>4.8</AverageFeedbackRating><TotalFeedback>11011</TotalFeedback></Merchant><OfferAttributes><Condition>Used</Condition><SubCondition>good</SubCondition><ConditionNote>SHIPS FAST! via UPS(AK/HI Priority Mail) within 24 hours/ used sticker on back/some highlighting</ConditionNote></OfferAttributes><OfferListing><OfferListingId>J%2Bi31uYi94VKp7jzzLu4R4YC%2FenEu%2FyF1aitch3ICjyAI2hFU%2FG4wQ587GWWP1WORSCO4G9JtdnZajpQ3vpY6N8WD92JKnt9qOTthA0IeO5fLxlOFVeD%2BnF%2B68ohz20N0kKm%2BGjEByI%3D</OfferListingId><ExchangeId>Y16M1769210M8330307</ExchangeId><Price><Amount>420</Amount><CurrencyCode>USD</CurrencyCode><FormattedPrice>$4.20</FormattedPrice></Price><AmountSaved><Amount>330</Amount><CurrencyCode>USD</CurrencyCode><FormattedPrice>$3.30</FormattedPrice></AmountSaved><PercentageSaved>44</PercentageSaved><Availability>Usually ships in 1-2 business days</Availability><AvailabilityAttributes><AvailabilityType>now</AvailabilityType><MinimumHours>24</MinimumHours><MaximumHours>48</MaximumHours></AvailabilityAttributes><Quantity>2</Quantity><IsEligibleForSuperSaverShipping>0</IsEligibleForSuperSaverShipping><IsFulfilledByAmazon>0</IsFulfilledByAmazon></OfferListing></Offer><Offer><Merchant><MerchantId>A1BWKRMU9P0GNY</MerchantId><Name>JWP</Name><GlancePage>http://www.amazon.com/gp/help/seller/home.html?seller=A1BWKRMU9P0GNY</GlancePage><AverageFeedbackRating>4.5</AverageFeedbackRating><TotalFeedback>2</TotalFeedback></Merchant><OfferAttributes><Condition>Used</Condition><SubCondition>verygood</SubCondition><ConditionNote>highlighting</ConditionNote></OfferAttributes><OfferListing><OfferListingId>e2frV1Ng%2BNhe5preeqx7lG49vDuSwoyjlD%2B8VMSXquK2ueEIswuoNlPOJelfnE47PSixtVFtcIfc5lSboqcMIqWy4eZ%2F54tyKeGx%2BSlsytrrJtvv3DVE30aaxLozB2ZrVJooJPRUbH8%3D</OfferListingId><ExchangeId>Y14M5502705M8388170</ExchangeId><Price><Amount>500</Amount><CurrencyCode>USD</CurrencyCode><FormattedPrice>$5.00</FormattedPrice></Price><AmountSaved><Amount>250</Amount><CurrencyCode>USD</CurrencyCode><FormattedPrice>$2.50</FormattedPrice></AmountSaved><PercentageSaved>33</PercentageSaved><Availability>Usually ships in 1-2 business days</Availability><AvailabilityAttributes><AvailabilityType>now</AvailabilityType><MinimumHours>24</MinimumHours><MaximumHours>48</MaximumHours></AvailabilityAttributes><Quantity>1</Quantity><IsEligibleForSuperSaverShipping>0</IsEligibleForSuperSaverShipping><IsFulfilledByAmazon>0</IsFulfilledByAmazon></OfferListing></Offer><Offer><Merchant><MerchantId>A3GNLV3FPFLNN</MerchantId><Name>lariece</Name><GlancePage>http://www.amazon.com/gp/help/seller/home.html?seller=A3GNLV3FPFLNN</GlancePage><Location><CountryCode>US</CountryCode><StateCode>MS</StateCode></Location><AverageFeedbackRating>4.9</AverageFeedbackRating><TotalFeedback>79</TotalFeedback></Merchant><OfferAttributes><Condition>Used</Condition><SubCondition>mint</SubCondition><ConditionNote>Fast shipping!</ConditionNote></OfferAttributes><OfferListing><OfferListingId>DTEDLUs5qHEjXXsgxOvFuNQshIdL36x7BVglXGq1gI80cePXNB6LdmvDCHUzgNUsgRnNZwMrOr42QoLFyhMlOslUJogzw3F6jBrDw9zjYVEY9fyy81pw9EJnCMpcgxUu4wUYkcs2Xus%3D</OfferListingId><ExchangeId>Y13M4168541M0588952</ExchangeId><Price><Amount>500</Amount><CurrencyCode>USD</CurrencyCode><FormattedPrice>$5.00</FormattedPrice></Price><AmountSaved><Amount>250</Amount><CurrencyCode>USD</CurrencyCode><FormattedPrice>$2.50</FormattedPrice></AmountSaved><PercentageSaved>33</PercentageSaved><Availability>Usually ships in 1-2 business days</Availability><AvailabilityAttributes><AvailabilityType>now</AvailabilityType><MinimumHours>24</MinimumHours><MaximumHours>48</MaximumHours></AvailabilityAttributes><Quantity>1</Quantity><IsEligibleForSuperSaverShipping>0</IsEligibleForSuperSaverShipping><IsFulfilledByAmazon>0</IsFulfilledByAmazon></OfferListing></Offer><Offer><Merchant><MerchantId>A1O5OVZDLMBE09</MerchantId><Name>smart-e-books</Name><GlancePage>http://www.amazon.com/gp/help/seller/home.html?seller=A1O5OVZDLMBE09</GlancePage><Location><CountryCode>US</CountryCode><StateCode>PA</StateCode></Location><AverageFeedbackRating>5.0</AverageFeedbackRating><TotalFeedback>10</TotalFeedback></Merchant><OfferAttributes><Condition>New</Condition><SubCondition>new</SubCondition></OfferAttributes><OfferListing><OfferListingId>afKu2Yubo7R0Q%2FkB4ZnmQnGvRAbiKXr8DwwfhHtUptWafTICbPOtDzAylKXg3H0W7IO29mttBbYpqkYL07ltu92GA%2B94HtADnY%2BbA2MF8QPb1jd2juwCh7OiGFmh7ZOb5SVBli6g0%2BM%3D</OfferListingId><ExchangeId>Y20M0725069M9343654</ExchangeId><Price><Amount>590</Amount><CurrencyCode>USD</CurrencyCode><FormattedPrice>$5.90</FormattedPrice></Price><AmountSaved><Amount>160</Amount><CurrencyCode>USD</CurrencyCode><FormattedPrice>$1.60</FormattedPrice></AmountSaved><PercentageSaved>21</PercentageSaved><Availability>Usually ships in 1-2 business days</Availability><AvailabilityAttributes><AvailabilityType>now</AvailabilityType><MinimumHours>24</MinimumHours><MaximumHours>48</MaximumHours></AvailabilityAttributes><Quantity>1</Quantity><IsEligibleForSuperSaverShipping>0</IsEligibleForSuperSaverShipping><IsFulfilledByAmazon>0</IsFulfilledByAmazon></OfferListing></Offer><Offer><Merchant><MerchantId>A3LVSQM04S5WC1</MerchantId><Name>aphrohead_books_uk</Name><GlancePage>http://www.amazon.com/gp/help/seller/home.html?seller=A3LVSQM04S5WC1</GlancePage><Location><CountryCode>GB</CountryCode></Location><AverageFeedbackRating>4.8</AverageFeedbackRating><TotalFeedback>4491</TotalFeedback></Merchant><OfferAttributes><Condition>New</Condition><SubCondition>new</SubCondition><ConditionNote>Brand New. Delivery is usually 5 - 8 working days from order, International delivery is by Royal Mail Airmail</ConditionNote></OfferAttributes><OfferListing><OfferListingId>0fMp5FsgablOhoSgxGKvN4JE5jSUeo0qkerZbOrCG%2BzeNVqYRLQKPR36N8auceEGH%2FJlrq%2Beic3rHCyeaEwB82peh8InFWG1AZi1dGZ6QZFol1zrBVspHBuUiYRjf%2FY%2BIiFJlKuc1CyqxLqg3h4%2FdA%3D%3D</OfferListingId><ExchangeId>Y11M6838904M0123553</ExchangeId><Price><Amount>623</Amount><CurrencyCode>USD</CurrencyCode><FormattedPrice>$6.23</FormattedPrice></Price><AmountSaved><Amount>127</Amount><CurrencyCode>USD</CurrencyCode><FormattedPrice>$1.27</FormattedPrice></AmountSaved><PercentageSaved>17</PercentageSaved><Availability>Usually ships in 1-2 business days</Availability><AvailabilityAttributes><AvailabilityType>now</AvailabilityType><MinimumHours>24</MinimumHours><MaximumHours>48</MaximumHours></AvailabilityAttributes><Quantity>11</Quantity><IsEligibleForSuperSaverShipping>0</IsEligibleForSuperSaverShipping><IsFulfilledByAmazon>0</IsFulfilledByAmazon></OfferListing></Offer></Offers></Item></Items><Items><Request><IsValid>True</IsValid><ItemLookupRequest><Condition>All</Condition><DeliveryMethod>Ship</DeliveryMethod><IdType>ASIN</IdType><MerchantId>All</MerchantId><OfferPage>1</OfferPage><ItemId>0486454398</ItemId><ItemId>0268018359</ItemId><ItemId>1604246014</ItemId><ItemId>184467598X</ItemId><ItemId>0312427182</ItemId><ItemId>1844674282</ItemId><ItemId>0745640974</ItemId><ItemId>0745646441</ItemId><ItemId>0826489540</ItemId><ItemId>1844672972</ItemId><ResponseGroup>OfferFull</ResponseGroup><ReviewPage>1</ReviewPage><ReviewSort>-SubmissionDate</ReviewSort><VariationPage>All</VariationPage></ItemLookupRequest></Request><Item><ASIN>0486454398</ASIN><OfferSummary><LowestNewPrice><Amount>703</Amount><CurrencyCode>USD</CurrencyCode><FormattedPrice>$7.03</FormattedPrice></LowestNewPrice><LowestUsedPrice><Amount>599</Amount><CurrencyCode>USD</CurrencyCode><FormattedPrice>$5.99</FormattedPrice></LowestUsedPrice><LowestCollectiblePrice><Amount>3800</Amount><CurrencyCode>USD</CurrencyCode><FormattedPrice>$38.00</FormattedPrice></LowestCollectiblePrice><TotalNew>5</TotalNew><TotalUsed>11</TotalUsed><TotalCollectible>1</TotalCollectible><TotalRefurbished>0</TotalRefurbished></OfferSummary><Offers><TotalOffers>17</TotalOffers><TotalOfferPages>2</TotalOfferPages><Offer><Merchant><MerchantId>A1BMJBJ5IWWS37</MerchantId><Name>mckenziebooks</Name><GlancePage>http://www.amazon.com/gp/help/seller/home.html?seller=A1BMJBJ5IWWS37</GlancePage><Location><CountryCode>US</CountryCode><StateCode>OR</StateCode></Location><AverageFeedbackRating>4.9</AverageFeedbackRating><TotalFeedback>38727</TotalFeedback></Merchant><OfferAttributes><Condition>Used</Condition><SubCondition>acceptable</SubCondition><ConditionNote>Slight wear to the cover and pages. Pages appear unmarked. Slight odor. Ships the next business day, with tracking and delivery confirmation sent to your email.</ConditionNote></OfferAttributes><OfferListing><OfferListingId>cxl61yMpUztilj6JwCf%2BFAwpeizGB9gDzuOdwJ8K8nztA2fE8RsSjc9%2BFaugBrWZnFUDjP%2FbmiOzt%2BIZMZFSUnDpXc5Mr0Z0PSIHQ2K4Dx9YY1%2FZqCmiXwvInLrsjqrzrpvEcmSE17VT4uQ%2B%2BJDYfQ%3D%3D</OfferListingId><ExchangeId>Y20M3235194M0495977</ExchangeId><Price><Amount>599</Amount><CurrencyCode>USD</CurrencyCode><FormattedPrice>$5.99</FormattedPrice></Price><AmountSaved><Amount>496</Amount><CurrencyCode>USD</CurrencyCode><FormattedPrice>$4.96</FormattedPrice></AmountSaved><PercentageSaved>45</PercentageSaved><Availability>Usually ships in 1-2 business days</Availability><AvailabilityAttributes><AvailabilityType>now</AvailabilityType><MinimumHours>24</MinimumHours><MaximumHours>48</MaximumHours></AvailabilityAttributes><Quantity>1</Quantity><IsEligibleForSuperSaverShipping>0</IsEligibleForSuperSaverShipping><IsFulfilledByAmazon>0</IsFulfilledByAmazon></OfferListing></Offer><Offer><Merchant><MerchantId>A7NURDFZCFCC7</MerchantId><Name>hallstreetbookstore</Name><GlancePage>http://www.amazon.com/gp/help/seller/home.html?seller=A7NURDFZCFCC7</GlancePage><Location><CountryCode>US</CountryCode><StateCode>NY</StateCode></Location><AverageFeedbackRating>4.9</AverageFeedbackRating><TotalFeedback>23015</TotalFeedback></Merchant><OfferAttributes><Condition>Used</Condition><SubCondition>good</SubCondition><ConditionNote>2010 - Paperback - - - - Used - Good - Hall Street Books proudly ships from Brooklyn, NY. All orders are processed and shipped within 24 hours, M-F. 100% money back No-Worry guarantee with expedited delivery and delivery confirmation available.</ConditionNote></OfferAttributes><OfferListing><OfferListingId>KK58l3sPu98vuqxjG2mJ2XTtJhoDg7%2FfdsHUD09pzOYpe9JFuLMmuYRQY4583%2BgPPqNMIN6hl7oIjXGVPK0YxbCS4Ruf9BAFnLt2MGtNb6tUZrhssssr7jRsEkTP4HC7x4lFwGB1H0I%3D</OfferListingId><ExchangeId>Y12M5936487M8702348</ExchangeId><Price><Amount>599</Amount><CurrencyCode>USD</CurrencyCode><FormattedPrice>$5.99</FormattedPrice></Price><AmountSaved><Amount>496</Amount><CurrencyCode>USD</CurrencyCode><FormattedPrice>$4.96</FormattedPrice></AmountSaved><PercentageSaved>45</PercentageSaved><Availability>Usually ships in 1-2 business days</Availability><AvailabilityAttributes><AvailabilityType>now</AvailabilityType><MinimumHours>24</MinimumHours><MaximumHours>48</MaximumHours></AvailabilityAttributes><Quantity>1</Quantity><IsEligibleForSuperSaverShipping>0</IsEligibleForSuperSaverShipping><IsFulfilledByAmazon>0</IsFulfilledByAmazon></OfferListing></Offer><Offer><Merchant><MerchantId>A3DJ73N4RS43P8</MerchantId><Name>ibusa</Name><GlancePage>http://www.amazon.com/gp/help/seller/home.html?seller=A3DJ73N4RS43P8</GlancePage><Location><CountryCode>GB</CountryCode></Location><AverageFeedbackRating>4.8</AverageFeedbackRating><TotalFeedback>2664</TotalFeedback></Merchant><OfferAttributes><Condition>Used</Condition><SubCondition>good</SubCondition><ConditionNote>Delivered from the UK in 10-14 business days</ConditionNote></OfferAttributes><OfferListing><OfferListingId>Q1Kc5E2o5csDa6%2B%2Bn2kFsexNdZiD%2BbCGQoeMWZdbnUpKu%2FiiZRKOBYYEhpV8s5plgw2N5nQ23zl0dK0hO6E%2BoU9l7J7le%2FwTY2KhZGc06eRSj6DdciqGT2MsSRBqEP%2ByVeKLFsh1TR2MNbsoMUNFCg%3D%3D</OfferListingId><ExchangeId>Y12M6470098M8765413</ExchangeId><Price><Amount>700</Amount><CurrencyCode>USD</CurrencyCode><FormattedPrice>$7.00</FormattedPrice></Price><AmountSaved><Amount>395</Amount><CurrencyCode>USD</CurrencyCode><FormattedPrice>$3.95</FormattedPrice></AmountSaved><PercentageSaved>36</PercentageSaved><Availability>Usually ships in 1-2 business days</Availability><AvailabilityAttributes><AvailabilityType>now</AvailabilityType><MinimumHours>24</MinimumHours><MaximumHours>48</MaximumHours></AvailabilityAttributes><Quantity>1</Quantity><IsEligibleForSuperSaverShipping>0</IsEligibleForSuperSaverShipping><IsFulfilledByAmazon>0</IsFulfilledByAmazon></OfferListing></Offer><Offer><Merchant><MerchantId>A2PH0OU9DK0NPM</MerchantId><Name>fantastic_shopping</Name><GlancePage>http://www.amazon.com/gp/help/seller/home.html?seller=A2PH0OU9DK0NPM</GlancePage><Location><CountryCode>US</CountryCode><StateCode>FL</StateCode></Location><AverageFeedbackRating>4.6</AverageFeedbackRating><TotalFeedback>14712</TotalFeedback></Merchant><OfferAttributes><Condition>Used</Condition><SubCondition>mint</SubCondition><ConditionNote>Absolutely Brand New &amp; In Stock. 100% 30-Day Money Back. Direct from our warehouse. Ships by USPS. 1+ million customers served-In business since 1986. Happy Customers is Our #1 Goal. Toll Free Support</ConditionNote></OfferAttributes><OfferListing><OfferListingId>SuRtxvoa7lOTzf2LsZErIiz1hUuODWMrZe77Pri44elAzf%2BCqJMJtsQiWnOhayMbYhEbSbAQjem4EOOmBhl4j05PlJudHHsAow18GF06YK3b8p5unIY0u9UNOi0x%2F58LpDNageesLl0%3D</OfferListingId><ExchangeId>Y12M3822845M3124130</ExchangeId><Price><Amount>703</Amount><CurrencyCode>USD</CurrencyCode><FormattedPrice>$7.03</FormattedPrice></Price><AmountSaved><Amount>392</Amount><CurrencyCode>USD</CurrencyCode><FormattedPrice>$3.92</FormattedPrice></AmountSaved><PercentageSaved>36</PercentageSaved><Availability>Usually ships in 1-2 business days</Availability><AvailabilityAttributes><AvailabilityType>now</AvailabilityType><MinimumHours>24</MinimumHours><MaximumHours>48</MaximumHours></AvailabilityAttributes><Quantity>500</Quantity><IsEligibleForSuperSaverShipping>0</IsEligibleForSuperSaverShipping><IsFulfilledByAmazon>0</IsFulfilledByAmazon></OfferListing></Offer><Offer><Merchant><MerchantId>A2PH0OU9DK0NPM</MerchantId><Name>fantastic_shopping</Name><GlancePage>http://www.amazon.com/gp/help/seller/home.html?seller=A2PH0OU9DK0NPM</GlancePage><Location><CountryCode>US</CountryCode><StateCode>FL</StateCode></Location><AverageFeedbackRating>4.6</AverageFeedbackRating><TotalFeedback>14712</TotalFeedback></Merchant><OfferAttributes><Condition>New</Condition><SubCondition>new</SubCondition><ConditionNote>Absolutely Brand New &amp; In Stock. 100% 30-Day Money Back. Direct from our warehouse. Ships by USPS. 1+ million customers served-In business since 1986. Happy Customers is Our #1 Goal. Toll Free Support</ConditionNote></OfferAttributes><OfferListing><OfferListingId>SjEmlwJdeaMDI48lKxVXKiIcoOc1ryj2cDDjWvVCLanZhBL%2Fy5nrx%2FRYHdJiNM0cxcVMMpQuqrXfHbhOocSkLLLprtG9HTmvczSXeFyyhaiClpsQwzi1nW48cykDhe0pFrXCW4P%2FtSQ%3D</OfferListingId><ExchangeId>Y12M3833487M8586847</ExchangeId><Price><Amount>703</Amount><CurrencyCode>USD</CurrencyCode><FormattedPrice>$7.03</FormattedPrice></Price><AmountSaved><Amount>392</Amount><CurrencyCode>USD</CurrencyCode><FormattedPrice>$3.92</FormattedPrice></AmountSaved><PercentageSaved>36</PercentageSaved><Availability>Usually ships in 1-2 business days</Availability><AvailabilityAttributes><AvailabilityType>now</AvailabilityType><MinimumHours>24</MinimumHours><MaximumHours>48</MaximumHours></AvailabilityAttributes><Quantity>499</Quantity><IsEligibleForSuperSaverShipping>0</IsEligibleForSuperSaverShipping><IsFulfilledByAmazon>0</IsFulfilledByAmazon></OfferListing></Offer><Offer><Merchant><MerchantId>A1BMJBJ5IWWS37</MerchantId><Name>mckenziebooks</Name><GlancePage>http://www.amazon.com/gp/help/seller/home.html?seller=A1BMJBJ5IWWS37</GlancePage><Location><CountryCode>US</CountryCode><StateCode>OR</StateCode></Location><AverageFeedbackRating>4.9</AverageFeedbackRating><TotalFeedback>38727</TotalFeedback></Merchant><OfferAttributes><Condition>Used</Condition><SubCondition>verygood</SubCondition><ConditionNote>Slight wear to the cover and pages. Slight markings on outside page edges. Text appears unmarked. Ships the next business day, with tracking and delivery confirmation sent to your email.</ConditionNote></OfferAttributes><OfferListing><OfferListingId>QPhq7WMbffLi7t31qhPp1r7P94MNukkHYETC3Vwc5U44prwKupiS0szMRKO67KOlIx92i40iOQR7SjYub%2BkLUkCtomIEusLyi8XMpeO3nII8ElyRTByxU4R9bKFZycgwXOjQatDUs%2FmxsffoGJ4iRA%3D%3D</OfferListingId><ExchangeId>Y20M0235553M8247423</ExchangeId><Price><Amount>811</Amount><CurrencyCode>USD</CurrencyCode><FormattedPrice>$8.11</FormattedPrice></Price><AmountSaved><Amount>284</Amount><CurrencyCode>USD</CurrencyCode><FormattedPrice>$2.84</FormattedPrice></AmountSaved><PercentageSaved>26</PercentageSaved><Availability>Usually ships in 1-2 business days</Availability><AvailabilityAttributes><AvailabilityType>now</AvailabilityType><MinimumHours>24</MinimumHours><MaximumHours>48</MaximumHours></AvailabilityAttributes><Quantity>1</Quantity><IsEligibleForSuperSaverShipping>0</IsEligibleForSuperSaverShipping><IsFulfilledByAmazon>0</IsFulfilledByAmazon></OfferListing></Offer><Offer><Merchant><MerchantId>ATVPDKIKX0DER</MerchantId><Name>Amazon.com</Name><GlancePage>http://www.amazon.com/gp/help/seller/home.html?seller=ATVPDKIKX0DER</GlancePage><AverageFeedbackRating>0.0</AverageFeedbackRating><TotalFeedback>0</TotalFeedback></Merchant><OfferAttributes><Condition>New</Condition><SubCondition>new</SubCondition></OfferAttributes><OfferListing><OfferListingId>XC%2FRsEFwnZmZMadVLjPry7gewQ6AoB4zXdk4dz3POhVb7a%2Fhk3BSU2XSmNdkumTySXYBWPazfW6ZySQD%2F%2FGxzA%3D%3D</OfferListingId><Price><Amount>911</Amount><CurrencyCode>USD</CurrencyCode><FormattedPrice>$9.11</FormattedPrice></Price><AmountSaved><Amount>184</Amount><CurrencyCode>USD</CurrencyCode><FormattedPrice>$1.84</FormattedPrice></AmountSaved><PercentageSaved>17</PercentageSaved><Availability>Usually ships in 24 hours</Availability><AvailabilityAttributes><AvailabilityType>now</AvailabilityType><MinimumHours>0</MinimumHours><MaximumHours>0</MaximumHours></AvailabilityAttributes><Quantity>-1</Quantity><IsEligibleForSuperSaverShipping>1</IsEligibleForSuperSaverShipping><IsFulfilledByAmazon>1</IsFulfilledByAmazon></OfferListing></Offer><Offer><Merchant><MerchantId>A2W95CON5IXOAS</MerchantId><Name>textcellar</Name><GlancePage>http://www.amazon.com/gp/help/seller/home.html?seller=A2W95CON5IXOAS</GlancePage><Location><CountryCode>US</CountryCode><StateCode>MI</StateCode></Location><AverageFeedbackRating>4.8</AverageFeedbackRating><TotalFeedback>1411</TotalFeedback></Merchant><OfferAttributes><Condition>Used</Condition><SubCondition>mint</SubCondition><ConditionNote>Book is Practically New. Choose Expedited shipping instead of Standard for only $3.00 more and get SUPER FAST SHIPPING. Get it QUICK! Check Our Ratings. We sell U.S. Editions only.</ConditionNote></OfferAttributes><OfferListing><OfferListingId>SL1wPDaKMC%2BwQ0aI9JydysjjIsls%2BQmhSou%2F%2BXJ3PDf2JFK2F5p1Rp4HBt4wCSp3nyfP7iKHsxNuSCmCDGrjPaxuDWxJl8GMRvl7cNNB%2FMD7tkXYqc%2FJ6K8EZvnFYyU09eWgJLe3idM%3D</OfferListingId><ExchangeId>Y12M0965993M3129718</ExchangeId><Price><Amount>1071</Amount><CurrencyCode>USD</CurrencyCode><FormattedPrice>$10.71</FormattedPrice></Price><AmountSaved><Amount>24</Amount><CurrencyCode>USD</CurrencyCode><FormattedPrice>$0.24</FormattedPrice></AmountSaved><PercentageSaved>2</PercentageSaved><Availability>Usually ships in 1-2 business days</Availability><AvailabilityAttributes><AvailabilityType>now</AvailabilityType><MinimumHours>24</MinimumHours><MaximumHours>48</MaximumHours></AvailabilityAttributes><Quantity>8</Quantity><IsEligibleForSuperSaverShipping>0</IsEligibleForSuperSaverShipping><IsFulfilledByAmazon>0</IsFulfilledByAmazon></OfferListing></Offer><Offer><Merchant><MerchantId>A3BQMAL8XVEZWF</MerchantId><Name>bflobookexchange</Name><GlancePage>http://www.amazon.com/gp/help/seller/home.html?seller=A3BQMAL8XVEZWF</GlancePage><Location><CountryCode>US</CountryCode><StateCode>NE</StateCode></Location><AverageFeedbackRating>4.8</AverageFeedbackRating><TotalFeedback>550</TotalFeedback></Merchant><OfferAttributes><Condition>New</Condition><SubCondition>new</SubCondition></OfferAttributes><OfferListing><OfferListingId>gQ15X3R3Trthjt87oUFOXe%2F9sj059i%2Fjanc9uZQVC%2FIazuc6ekXyhJqiGJ%2BYVxWoRRC9O0krKmx99u8U8hH1bFpdcmiCNvoUIJTN4rkojZfLgO5st3xcf6hdRK6AFYpg5U%2FwFQCCXmubulLYEm4w2g%3D%3D</OfferListingId><ExchangeId>Y14M1677954M1620128</ExchangeId><Price><Amount>1166</Amount><CurrencyCode>USD</CurrencyCode><FormattedPrice>$11.66</FormattedPrice></Price><Availability>Usually ships in 1-2 business days</Availability><AvailabilityAttributes><AvailabilityType>now</AvailabilityType><MinimumHours>24</MinimumHours><MaximumHours>48</MaximumHours></AvailabilityAttributes><Quantity>1</Quantity><IsEligibleForSuperSaverShipping>0</IsEligibleForSuperSaverShipping><IsFulfilledByAmazon>0</IsFulfilledByAmazon></OfferListing></Offer><Offer><Merchant><MerchantId>A3AFXBWOHVI0FB</MerchantId><Name>woodys-books</Name><GlancePage>http://www.amazon.com/gp/help/seller/home.html?seller=A3AFXBWOHVI0FB</GlancePage><Location><CountryCode>US</CountryCode><StateCode>NJ</StateCode></Location><AverageFeedbackRating>4.6</AverageFeedbackRating><TotalFeedback>12734</TotalFeedback></Merchant><OfferAttributes><Condition>Used</Condition><SubCondition>good</SubCondition><ConditionNote>Excellent customer service. May ship from alternate location depending on your zip code and availability. Satisfaction guaranteed!!</ConditionNote></OfferAttributes><OfferListing><OfferListingId>SYFGjlAx%2BFnJk0ztnzXowdQEXr4GcW7jqRl5Gzv2Yc%2FjvAWo60Hn17TOBpYwMck1me%2FGGVHZNlB0CqrOA2vEjCJLXLtvvzklVIENYwGLuhE%2BuEnw3VWmHzikLFVTYbVSf2hpSKkMmqU%3D</OfferListingId><ExchangeId>Y12M0303961M2481600</ExchangeId><Price><Amount>2022</Amount><CurrencyCode>USD</CurrencyCode><FormattedPrice>$20.22</FormattedPrice></Price><Availability>Usually ships in 1-2 business days</Availability><AvailabilityAttributes><AvailabilityType>now</AvailabilityType><MinimumHours>24</MinimumHours><MaximumHours>48</MaximumHours></AvailabilityAttributes><Quantity>1</Quantity><IsEligibleForSuperSaverShipping>0</IsEligibleForSuperSaverShipping><IsFulfilledByAmazon>0</IsFulfilledByAmazon></OfferListing></Offer></Offers></Item><Item><ASIN>0268018359</ASIN><OfferSummary><LowestNewPrice><Amount>1890</Amount><CurrencyCode>USD</CurrencyCode><FormattedPrice>$18.90</FormattedPrice></LowestNewPrice><LowestUsedPrice><Amount>352</Amount><CurrencyCode>USD</CurrencyCode><FormattedPrice>$3.52</FormattedPrice></LowestUsedPrice><LowestCollectiblePrice><Amount>1449</Amount><CurrencyCode>USD</CurrencyCode><FormattedPrice>$14.49</FormattedPrice></LowestCollectiblePrice><TotalNew>16</TotalNew><TotalUsed>24</TotalUsed><TotalCollectible>1</TotalCollectible><TotalRefurbished>0</TotalRefurbished></OfferSummary><Offers><TotalOffers>41</TotalOffers><TotalOfferPages>5</TotalOfferPages><Offer><Merchant><MerchantId>A26DFFMQWR3LDG</MerchantId><Name>gr8lakesbooks1</Name><GlancePage>http://www.amazon.com/gp/help/seller/home.html?seller=A26DFFMQWR3LDG</GlancePage><Location><CountryCode>US</CountryCode><StateCode>MI</StateCode></Location><AverageFeedbackRating>4.9</AverageFeedbackRating><TotalFeedback>13964</TotalFeedback></Merchant><OfferAttributes><Condition>Used</Condition><SubCondition>good</SubCondition><ConditionNote>Used - Good Default Text</ConditionNote></OfferAttributes><OfferListing><OfferListingId>Qc93Le3AlaEjrDfy6XZcwli3H6ha%2Bz3N0o9n09prsYLReE1SEDBBl68DBu%2BMSPRN5XapHUAmPyRnKOWrhSenHIACimHPY5ar732F%2FNukONHuO%2BDR3jvbjjG2VBVHMoaUr2ren0bBtSI%3D</OfferListingId><ExchangeId>Y16M6563210M0492361</ExchangeId><Price><Amount>352</Amount><CurrencyCode>USD</CurrencyCode><FormattedPrice>$3.52</FormattedPrice></Price><AmountSaved><Amount>1748</Amount><CurrencyCode>USD</CurrencyCode><FormattedPrice>$17.48</FormattedPrice></AmountSaved><PercentageSaved>83</PercentageSaved><Availability>Usually ships in 1-2 business days</Availability><AvailabilityAttributes><AvailabilityType>now</AvailabilityType><MinimumHours>24</MinimumHours><MaximumHours>48</MaximumHours></AvailabilityAttributes><Quantity>1</Quantity><IsEligibleForSuperSaverShipping>0</IsEligibleForSuperSaverShipping><IsFulfilledByAmazon>0</IsFulfilledByAmazon></OfferListing></Offer><Offer><Merchant><MerchantId>AJTN9PBJ4QQ6F</MerchantId><Name>books_beyond_borders_</Name><GlancePage>http://www.amazon.com/gp/help/seller/home.html?seller=AJTN9PBJ4QQ6F</GlancePage><Location><CountryCode>US</CountryCode><StateCode>TX</StateCode></Location><AverageFeedbackRating>4.8</AverageFeedbackRating><TotalFeedback>4126</TotalFeedback></Merchant><OfferAttributes><Condition>Used</Condition><SubCondition>good</SubCondition><ConditionNote>Good. Used/worn. Library stickers and stamps. May have plastic library dust cover. May have light hilighting/underlinings within the text. Some signs of wear but still OK condition. Used - Good Former Library book.</ConditionNote></OfferAttributes><OfferListing><OfferListingId>HGBgWRBItUoTaOzmck%2BU7MUUKb4DJSDJkR4BagKioXWYsg4MNvZBVuP99bqR8aJfKdCgGWS0k4nPj5N5A%2Bmgz0Ok6bDrR9icvvZEFO%2FO7GaaQGxd%2BU43vsN22B4cf1k%2FWOj%2FNgS9G9c%3D</OfferListingId><ExchangeId>Y12M3797237M8171969</ExchangeId><Price><Amount>353</Amount><CurrencyCode>USD</CurrencyCode><FormattedPrice>$3.53</FormattedPrice></Price><AmountSaved><Amount>1747</Amount><CurrencyCode>USD</CurrencyCode><FormattedPrice>$17.47</FormattedPrice></AmountSaved><PercentageSaved>83</PercentageSaved><Availability>Usually ships in 1-2 business days</Availability><AvailabilityAttributes><AvailabilityType>now</AvailabilityType><MinimumHours>24</MinimumHours><MaximumHours>48</MaximumHours></AvailabilityAttributes><Quantity>1</Quantity><IsEligibleForSuperSaverShipping>0</IsEligibleForSuperSaverShipping><IsFulfilledByAmazon>0</IsFulfilledByAmazon></OfferListing></Offer><Offer><Merchant><MerchantId>A30C5UTL788WQU</MerchantId><Name>goodwillbooks</Name><GlancePage>http://www.amazon.com/gp/help/seller/home.html?seller=A30C5UTL788WQU</GlancePage><Location><CountryCode>US</CountryCode><StateCode>OR</StateCode></Location><AverageFeedbackRating>4.8</AverageFeedbackRating><TotalFeedback>32526</TotalFeedback></Merchant><OfferAttributes><Condition>Used</Condition><SubCondition>good</SubCondition><ConditionNote>Sound copy, mild reading wear. May have scuffs or missing DJ. May have some note, highlighting or underlining. Purchasing this item helps us provide vocational opportunities to people with barriers to employment.</ConditionNote></OfferAttributes><OfferListing><OfferListingId>XiRgitUZh8V2YokGvlfpq741Nc5D1eyf%2FOm3OuLiAOj5%2BsH1AZMzObk%2BJfSGPz9SyVG9K9BTgRP7vpLMVfokqgAca9n1ZBsva1MOGpof6SzuppQwMgBC5sMbBBLRYvlq2IO6oB4dmIY%3D</OfferListingId><ExchangeId>Y11M1272005M3218720</ExchangeId><Price><Amount>368</Amount><CurrencyCode>USD</CurrencyCode><FormattedPrice>$3.68</FormattedPrice></Price><AmountSaved><Amount>1732</Amount><CurrencyCode>USD</CurrencyCode><FormattedPrice>$17.32</FormattedPrice></AmountSaved><PercentageSaved>82</PercentageSaved><Availability>Usually ships in 1-2 business days</Availability><AvailabilityAttributes><AvailabilityType>now</AvailabilityType><MinimumHours>24</MinimumHours><MaximumHours>48</MaximumHours></AvailabilityAttributes><Quantity>1</Quantity><IsEligibleForSuperSaverShipping>0</IsEligibleForSuperSaverShipping><IsFulfilledByAmazon>0</IsFulfilledByAmazon></OfferListing></Offer><Offer><Merchant><MerchantId>A2M0UO9G59CG7P</MerchantId><Name>brit-books-usa</Name><GlancePage>http://www.amazon.com/gp/help/seller/home.html?seller=A2M0UO9G59CG7P</GlancePage><Location><CountryCode>GB</CountryCode></Location><AverageFeedbackRating>4.8</AverageFeedbackRating><TotalFeedback>6469</TotalFeedback></Merchant><OfferAttributes><Condition>Used</Condition><SubCondition>good</SubCondition><ConditionNote>BRIT BOOKS MAKES DONATION TO CHARITIES FOR EVERY BOOK SOLD.</ConditionNote></OfferAttributes><OfferListing><OfferListingId>BjuHDbI13cibKXQjb2R2NcLqBJdYYaPo844NpA5Bx0cFBkn%2BEe5OJnATiSwlzC3bXSxFJqAoG5Mby3H%2FIJyGe%2BIiZXFh2OVpnQ2mtQwvRCzsp3%2B3GCG%2FgpCi%2FcS0mvGc2ZeLm830tjg%3D</OfferListingId><ExchangeId>Y15M1234743M2115296</ExchangeId><Price><Amount>398</Amount><CurrencyCode>USD</CurrencyCode><FormattedPrice>$3.98</FormattedPrice></Price><AmountSaved><Amount>1702</Amount><CurrencyCode>USD</CurrencyCode><FormattedPrice>$17.02</FormattedPrice></AmountSaved><PercentageSaved>81</PercentageSaved><Availability>Usually ships in 1-2 business days</Availability><AvailabilityAttributes><AvailabilityType>now</AvailabilityType><MinimumHours>24</MinimumHours><MaximumHours>48</MaximumHours></AvailabilityAttributes><Quantity>1</Quantity><IsEligibleForSuperSaverShipping>0</IsEligibleForSuperSaverShipping><IsFulfilledByAmazon>0</IsFulfilledByAmazon></OfferListing></Offer><Offer><Merchant><MerchantId>A1KGH758WVMRRF</MerchantId><Name>Bennett Books Ltd</Name><GlancePage>http://www.amazon.com/gp/help/seller/home.html?seller=A1KGH758WVMRRF</GlancePage><Location><CountryCode>US</CountryCode><StateCode>IL</StateCode></Location><AverageFeedbackRating>4.8</AverageFeedbackRating><TotalFeedback>1159</TotalFeedback></Merchant><OfferAttributes><Condition>Used</Condition><SubCondition>good</SubCondition><ConditionNote>A good condition item. Contains many instances of marking, highlighting and wear. Looks like an interesting title! We ship daily, provide personalized customer service and want you to have a great experience purchasing from us. Thank you for your consideration.</ConditionNote></OfferAttributes><OfferListing><OfferListingId>vAl17%2BSv2FuDgaPq9rd98EGxulrKkFJI8D8jeCw06juyDKYKQYOXgFMtL537SI5r41%2BdcHqwVV6gRCxdvsfE7S%2BFp6S18cFG%2FScaUqu7uJEqZDNveqAUh9rFXTJZVQWv%2BD%2Bw5cl6n9Y%3D</OfferListingId><ExchangeId>Y12M4709654M7589331</ExchangeId><Price><Amount>511</Amount><CurrencyCode>USD</CurrencyCode><FormattedPrice>$5.11</FormattedPrice></Price><AmountSaved><Amount>1589</Amount><CurrencyCode>USD</CurrencyCode><FormattedPrice>$15.89</FormattedPrice></AmountSaved><PercentageSaved>76</PercentageSaved><Availability>Usually ships in 1-2 business days</Availability><AvailabilityAttributes><AvailabilityType>now</AvailabilityType><MinimumHours>24</MinimumHours><MaximumHours>48</MaximumHours></AvailabilityAttributes><Quantity>1</Quantity><IsEligibleForSuperSaverShipping>0</IsEligibleForSuperSaverShipping><IsFulfilledByAmazon>0</IsFulfilledByAmazon></OfferListing></Offer><Offer><Merchant><MerchantId>A2MU9ZILHNPP6L</MerchantId><Name>quality7</Name><GlancePage>http://www.amazon.com/gp/help/seller/home.html?seller=A2MU9ZILHNPP6L</GlancePage><Location><CountryCode>US</CountryCode><StateCode>GA</StateCode></Location><AverageFeedbackRating>4.8</AverageFeedbackRating><TotalFeedback>46328</TotalFeedback></Merchant><OfferAttributes><Condition>Used</Condition><SubCondition>verygood</SubCondition><ConditionNote>Excellent customer service. Order inquiries handled promptly.</ConditionNote></OfferAttributes><OfferListing><OfferListingId>2kvCateOzjayzNgxKA5pD9zQ%2BGVtDCbO1YdGmhKkbIE489tzwM8xJyoNmmM%2FyuwZSA7JUO%2BY5IYXAZT9u%2BFIlAhs8K3HLcFx1%2B%2F9EcjozyCQ0uedxBhdx5mvjcYTNgdW</OfferListingId><ExchangeId>Y17M0974534M5771428</ExchangeId><Price><Amount>695</Amount><CurrencyCode>USD</CurrencyCode><FormattedPrice>$6.95</FormattedPrice></Price><AmountSaved><Amount>1405</Amount><CurrencyCode>USD</CurrencyCode><FormattedPrice>$14.05</FormattedPrice></AmountSaved><PercentageSaved>67</PercentageSaved><Availability>Usually ships in 1-2 business days</Availability><AvailabilityAttributes><AvailabilityType>now</AvailabilityType><MinimumHours>24</MinimumHours><MaximumHours>48</MaximumHours></AvailabilityAttributes><Quantity>1</Quantity><IsEligibleForSuperSaverShipping>0</IsEligibleForSuperSaverShipping><IsFulfilledByAmazon>0</IsFulfilledByAmazon></OfferListing></Offer><Offer><Merchant><MerchantId>A2Z2CSK1PH6GOI</MerchantId><Name>bordeebook</Name><GlancePage>http://www.amazon.com/gp/help/seller/home.html?seller=A2Z2CSK1PH6GOI</GlancePage><Location><CountryCode>US</CountryCode></Location><AverageFeedbackRating>4.7</AverageFeedbackRating><TotalFeedback>21047</TotalFeedback></Merchant><OfferAttributes><Condition>Used</Condition><SubCondition>good</SubCondition><ConditionNote>Used but in nice shape with normal surface &amp; edge wear. Accessories may not be included. Fast shipping!</ConditionNote></OfferAttributes><OfferListing><OfferListingId>h19KB3XkH0MIi8yZpVh3vTQ71OlIFCgqSk3LNqEi1Q%2Fy6rA0yeO6jNTqtBk1VT%2FugWi%2F4dM82xN00Dqv4%2FhGtnCbBTja1lZAjHrLGzyS%2F1XxwaoKkdNwh%2B7pfcpuUSmGXSfEadf%2BaT4%3D</OfferListingId><ExchangeId>Y12M4106584M2762731</ExchangeId><Price><Amount>704</Amount><CurrencyCode>USD</CurrencyCode><FormattedPrice>$7.04</FormattedPrice></Price><AmountSaved><Amount>1396</Amount><CurrencyCode>USD</CurrencyCode><FormattedPrice>$13.96</FormattedPrice></AmountSaved><PercentageSaved>66</PercentageSaved><Availability>Usually ships in 1-2 business days</Availability><AvailabilityAttributes><AvailabilityType>now</AvailabilityType><MinimumHours>24</MinimumHours><MaximumHours>48</MaximumHours></AvailabilityAttributes><Quantity>1</Quantity><IsEligibleForSuperSaverShipping>0</IsEligibleForSuperSaverShipping><IsFulfilledByAmazon>0</IsFulfilledByAmazon></OfferListing></Offer><Offer><Merchant><MerchantId>A2J3YH9X4B5HRY</MerchantId><Name>charis01</Name><GlancePage>http://www.amazon.com/gp/help/seller/home.html?seller=A2J3YH9X4B5HRY</GlancePage><Location><CountryCode>US</CountryCode><StateCode>WA</StateCode></Location><AverageFeedbackRating>4.9</AverageFeedbackRating><TotalFeedback>223</TotalFeedback></Merchant><OfferAttributes><Condition>Used</Condition><SubCondition>acceptable</SubCondition><ConditionNote>Cover and first 52 pages slightly curled. Some writing/underlining first 50 pages. Cover stained, creased.</ConditionNote></OfferAttributes><OfferListing><OfferListingId>zuMf9MI%2BPjveMcgMgu%2BKwshORQwZYGR7xUUZbCALdBALaBFnEt0AB6S%2F%2BIGedwL8p48rM%2BNlvFyfIE4YXf%2BdTlhO%2BWWfU5rA2CFchlL8j8UCYRses1ON3hOSF6nhooQF8CjhJ4oxrSgEL5YLg288tQ%3D%3D</OfferListingId><ExchangeId>Y12M4646650M5455288</ExchangeId><Price><Amount>795</Amount><CurrencyCode>USD</CurrencyCode><FormattedPrice>$7.95</FormattedPrice></Price><AmountSaved><Amount>1305</Amount><CurrencyCode>USD</CurrencyCode><FormattedPrice>$13.05</FormattedPrice></AmountSaved><PercentageSaved>62</PercentageSaved><Availability>Usually ships in 1-2 business days</Availability><AvailabilityAttributes><AvailabilityType>now</AvailabilityType><MinimumHours>24</MinimumHours><MaximumHours>48</MaximumHours></AvailabilityAttributes><Quantity>1</Quantity><IsEligibleForSuperSaverShipping>0</IsEligibleForSuperSaverShipping><IsFulfilledByAmazon>0</IsFulfilledByAmazon></OfferListing></Offer><Offer><Merchant><MerchantId>A2YB26M9YU3O3D</MerchantId><Name>Pedicab Press</Name><GlancePage>http://www.amazon.com/gp/help/seller/home.html?seller=A2YB26M9YU3O3D</GlancePage><AverageFeedbackRating>4.9</AverageFeedbackRating><TotalFeedback>69</TotalFeedback></Merchant><OfferAttributes><Condition>Used</Condition><SubCondition>good</SubCondition><ConditionNote>Fast Shipping-Paperback,Clean Pages,Minor Flaws</ConditionNote></OfferAttributes><OfferListing><OfferListingId>cGpxmDt%2BLPqiCry%2B8USKJ5sWQAd1JHxWIRWrHu%2Fi9herJJUJglw3tBhg136aWrGxSIg9zsCKJeqC1WwBT1HTo0xV7Zjif%2FpVRjt%2FVeGXhm3qtSdWehcW39NNmCqMbYMgzsjUOcUcE9E%3D</OfferListingId><ExchangeId>Y16M3153235M6610712</ExchangeId><Price><Amount>1000</Amount><CurrencyCode>USD</CurrencyCode><FormattedPrice>$10.00</FormattedPrice></Price><AmountSaved><Amount>1100</Amount><CurrencyCode>USD</CurrencyCode><FormattedPrice>$11.00</FormattedPrice></AmountSaved><PercentageSaved>52</PercentageSaved><Availability>Usually ships in 1-2 business days</Availability><AvailabilityAttributes><AvailabilityType>now</AvailabilityType><MinimumHours>24</MinimumHours><MaximumHours>48</MaximumHours></AvailabilityAttributes><Quantity>1</Quantity><IsEligibleForSuperSaverShipping>0</IsEligibleForSuperSaverShipping><IsFulfilledByAmazon>0</IsFulfilledByAmazon></OfferListing></Offer><Offer><Merchant><MerchantId>A3F520SPPBRU3E</MerchantId><Name>shawnee_books</Name><GlancePage>http://www.amazon.com/gp/help/seller/home.html?seller=A3F520SPPBRU3E</GlancePage><Location><CountryCode>US</CountryCode><StateCode>IL</StateCode></Location><AverageFeedbackRating>4.9</AverageFeedbackRating><TotalFeedback>21</TotalFeedback></Merchant><OfferAttributes><Condition>Used</Condition><SubCondition>verygood</SubCondition><ConditionNote>Very good condition.</ConditionNote></OfferAttributes><OfferListing><OfferListingId>52ThhIW3hwpoyhXx0fcbvrNVp3TGkuYU5%2F%2Fl7GpF1cIjHCeICuFEPDkL4H4btnxr4T2TdX7draTE3ib%2BgkYJripMkh8u0bTSjvcad6qMqcPhTp0jKwtBtvTEM%2Bj65YL6AfWLoNluq3E%3D</OfferListingId><ExchangeId>Y14M6118110M4887296</ExchangeId><Price><Amount>1000</Amount><CurrencyCode>USD</CurrencyCode><FormattedPrice>$10.00</FormattedPrice></Price><AmountSaved><Amount>1100</Amount><CurrencyCode>USD</CurrencyCode><FormattedPrice>$11.00</FormattedPrice></AmountSaved><PercentageSaved>52</PercentageSaved><Availability>Usually ships in 1-2 business days</Availability><AvailabilityAttributes><AvailabilityType>now</AvailabilityType><MinimumHours>24</MinimumHours><MaximumHours>48</MaximumHours></AvailabilityAttributes><Quantity>1</Quantity><IsEligibleForSuperSaverShipping>0</IsEligibleForSuperSaverShipping><IsFulfilledByAmazon>0</IsFulfilledByAmazon></OfferListing></Offer></Offers></Item><Item><ASIN>1604246014</ASIN><OfferSummary><LowestNewPrice><Amount>994</Amount><CurrencyCode>USD</CurrencyCode><FormattedPrice>$9.94</FormattedPrice></LowestNewPrice><LowestUsedPrice><Amount>1417</Amount><CurrencyCode>USD</CurrencyCode><FormattedPrice>$14.17</FormattedPrice></LowestUsedPrice><TotalNew>9</TotalNew><TotalUsed>5</TotalUsed><TotalCollectible>0</TotalCollectible><TotalRefurbished>0</TotalRefurbished></OfferSummary><Offers><TotalOffers>14</TotalOffers><TotalOfferPages>2</TotalOfferPages><Offer><Merchant><MerchantId>A2E9OWRCF7T08Y</MerchantId><Name>pbshopus</Name><GlancePage>http://www.amazon.com/gp/help/seller/home.html?seller=A2E9OWRCF7T08Y</GlancePage><Location><CountryCode>US</CountryCode><StateCode>NJ</StateCode></Location><AverageFeedbackRating>4.7</AverageFeedbackRating><TotalFeedback>24712</TotalFeedback></Merchant><OfferAttributes><Condition>New</Condition><SubCondition>new</SubCondition><ConditionNote>New book. Shipped within the US in 10-14 days.</ConditionNote></OfferAttributes><OfferListing><OfferListingId>rIqKmYxq%2BPRA7hp7tkam0EMYAjIotwBF9p%2F%2F4ix0EIvx0rr5mKBG63ptYcLN3BAPI1yhOnusKRB60KI6vyEFou48Y1YhyckRbBHgmaptmxdI6eneGN783e8NMvFo1lT1ykldJ9%2BZw4qZ13kAqV1i4A%3D%3D</OfferListingId><ExchangeId>Y11M6131120M3151829</ExchangeId><Price><Amount>994</Amount><CurrencyCode>USD</CurrencyCode><FormattedPrice>$9.94</FormattedPrice></Price><AmountSaved><Amount>1</Amount><CurrencyCode>USD</CurrencyCode><FormattedPrice>$0.01</FormattedPrice></AmountSaved><Availability>Usually ships in 1-2 business days</Availability><AvailabilityAttributes><AvailabilityType>now</AvailabilityType><MinimumHours>24</MinimumHours><MaximumHours>48</MaximumHours></AvailabilityAttributes><Quantity>100</Quantity><IsEligibleForSuperSaverShipping>0</IsEligibleForSuperSaverShipping><IsFulfilledByAmazon>0</IsFulfilledByAmazon></OfferListing></Offer><Offer><Merchant><MerchantId>ATVPDKIKX0DER</MerchantId><Name>Amazon.com</Name><GlancePage>http://www.amazon.com/gp/help/seller/home.html?seller=ATVPDKIKX0DER</GlancePage><AverageFeedbackRating>0.0</AverageFeedbackRating><TotalFeedback>0</TotalFeedback></Merchant><OfferAttributes><Condition>New</Condition><SubCondition>new</SubCondition></OfferAttributes><OfferListing><OfferListingId>V8yaFMe3j702ECMMtwnLC%2F5MtRTKgFin7AtWcBagkDjsHUBKQelp7yZSITQ%2BRxizi1dCunLfc94UFwUZZBGIEA%3D%3D</OfferListingId><Price><Amount>995</Amount><CurrencyCode>USD</CurrencyCode><FormattedPrice>$9.95</FormattedPrice></Price><Availability>Usually ships in 24 hours</Availability><AvailabilityAttributes><AvailabilityType>now</AvailabilityType><MinimumHours>0</MinimumHours><MaximumHours>0</MaximumHours></AvailabilityAttributes><Quantity>-1</Quantity><IsEligibleForSuperSaverShipping>1</IsEligibleForSuperSaverShipping><IsFulfilledByAmazon>1</IsFulfilledByAmazon></OfferListing></Offer><Offer><Merchant><MerchantId>A15AOQYSLLO2CF</MerchantId><Name>thermite-media</Name><GlancePage>http://www.amazon.com/gp/help/seller/home.html?seller=A15AOQYSLLO2CF</GlancePage><Location><CountryCode>US</CountryCode><StateCode>NC</StateCode></Location><AverageFeedbackRating>4.8</AverageFeedbackRating><TotalFeedback>55506</TotalFeedback></Merchant><OfferAttributes><Condition>New</Condition><SubCondition>new</SubCondition><ConditionNote>BRAND NEW. 30 Day Satisfaction Guarantee. Quick International Airmail!</ConditionNote></OfferAttributes><OfferListing><OfferListingId>yDxL2w8QHRV1mnqZRwqDHeMcXCbdPE5XKw7ZMsshb3JQyX0PI%2FyW9j3t64Qis9eCWwJyFS3IkRNEKeRfQ6tLqzV2a%2B5fNxB0kE0UJjfbx9pZvd9MYU0aQoxOAgqdibDgfWAuBh45K512Uijz1yHtJA%3D%3D</OfferListingId><ExchangeId>Y11M3890553M9568609</ExchangeId><Price><Amount>1081</Amount><CurrencyCode>USD</CurrencyCode><FormattedPrice>$10.81</FormattedPrice></Price><Availability>Usually ships in 1-2 business days</Availability><AvailabilityAttributes><AvailabilityType>now</AvailabilityType><MinimumHours>24</MinimumHours><MaximumHours>48</MaximumHours></AvailabilityAttributes><Quantity>50</Quantity><IsEligibleForSuperSaverShipping>0</IsEligibleForSuperSaverShipping><IsFulfilledByAmazon>0</IsFulfilledByAmazon></OfferListing></Offer><Offer><Merchant><MerchantId>A3TJVJMBQL014A</MerchantId><Name>the_book_depository_</Name><GlancePage>http://www.amazon.com/gp/help/seller/home.html?seller=A3TJVJMBQL014A</GlancePage><Location><CountryCode>US</CountryCode><StateCode>DE</StateCode></Location><AverageFeedbackRating>4.8</AverageFeedbackRating><TotalFeedback>110710</TotalFeedback></Merchant><OfferAttributes><Condition>New</Condition><SubCondition>new</SubCondition><ConditionNote>Brand New. Delivery is usually 5 - 8 working days from order, International is by Royal Mail Airmail</ConditionNote></OfferAttributes><OfferListing><OfferListingId>gl62adzRrWR%2FcH75DODoeBxA2cYTEbLP9nphU0OusH4uYjMOIkYM0tPOkGYJaILFwfzdhysbxPizWlWKLWJJp63jf9ZJJkXtYc%2Ba52AzKV%2F9ibzzg9U6WFF6xQiehDCCizZX06HZhqI%3D</OfferListingId><ExchangeId>Y19M2779821M0842714</ExchangeId><Price><Amount>1082</Amount><CurrencyCode>USD</CurrencyCode><FormattedPrice>$10.82</FormattedPrice></Price><Availability>Usually ships in 1-2 business days</Availability><AvailabilityAttributes><AvailabilityType>now</AvailabilityType><MinimumHours>24</MinimumHours><MaximumHours>48</MaximumHours></AvailabilityAttributes><Quantity>100</Quantity><IsEligibleForSuperSaverShipping>0</IsEligibleForSuperSaverShipping><IsFulfilledByAmazon>0</IsFulfilledByAmazon></OfferListing></Offer><Offer><Merchant><MerchantId>A3ADN03F2ABAVW</MerchantId><Name>sbd-</Name><GlancePage>http://www.amazon.com/gp/help/seller/home.html?seller=A3ADN03F2ABAVW</GlancePage><Location><CountryCode>US</CountryCode><StateCode>IN</StateCode></Location><AverageFeedbackRating>4.6</AverageFeedbackRating><TotalFeedback>43275</TotalFeedback></Merchant><OfferAttributes><Condition>New</Condition><SubCondition>new</SubCondition><ConditionNote>Brand New, Perfect Condition, Please allow 4-14 business days for delivery. 100% Money Back Guarantee, Over 1,000,000 customers served.</ConditionNote></OfferAttributes><OfferListing><OfferListingId>Fw1L1tqWbWxGhM7DXqk8%2BhBpZq6ba%2B9DapTz9XiFKyUHzolRQwIBhhI8BCAUo381W4NyPI%2F%2B4kNsaZvzCW7Ufanx6nxY2UAmIYDkI6QLNBV0v4lNBx9Q1MxrtQw1e75P%2FSmzu5e7SJk%3D</OfferListingId><ExchangeId>Y11M3396354M0526219</ExchangeId><Price><Amount>1135</Amount><CurrencyCode>USD</CurrencyCode><FormattedPrice>$11.35</FormattedPrice></Price><Availability>Usually ships in 1-2 business days</Availability><AvailabilityAttributes><AvailabilityType>now</AvailabilityType><MinimumHours>24</MinimumHours><MaximumHours>48</MaximumHours></AvailabilityAttributes><Quantity>999</Quantity><IsEligibleForSuperSaverShipping>0</IsEligibleForSuperSaverShipping><IsFulfilledByAmazon>0</IsFulfilledByAmazon></OfferListing></Offer><Offer><Merchant><MerchantId>A3FHD0R6JB0VL8</MerchantId><Name>alibris</Name><GlancePage>http://www.amazon.com/gp/help/seller/home.html?seller=A3FHD0R6JB0VL8</GlancePage><Location><CountryCode>US</CountryCode><StateCode>NV</StateCode></Location><AverageFeedbackRating>4.8</AverageFeedbackRating><TotalFeedback>27163</TotalFeedback></Merchant><OfferAttributes><Condition>New</Condition><SubCondition>new</SubCondition><ConditionNote>New</ConditionNote></OfferAttributes><OfferListing><OfferListingId>lwZjn92dnsIjnotX2w6shCwm5sik7veBcqay020jEHlR%2Fg2K6jtl9eJyCOLrRCcDsAOyWJIaU%2B7hDMXvxdYShWnK20KaTeJQcNTivMggtFmrNMizDrUipVPITRooUK8QBGRnw1sGrc4%3D</OfferListingId><ExchangeId>Y12M0289158M6535941</ExchangeId><Price><Amount>1194</Amount><CurrencyCode>USD</CurrencyCode><FormattedPrice>$11.94</FormattedPrice></Price><Availability>Usually ships in 1-2 business days</Availability><AvailabilityAttributes><AvailabilityType>now</AvailabilityType><MinimumHours>24</MinimumHours><MaximumHours>48</MaximumHours></AvailabilityAttributes><Quantity>100</Quantity><IsEligibleForSuperSaverShipping>0</IsEligibleForSuperSaverShipping><IsFulfilledByAmazon>0</IsFulfilledByAmazon></OfferListing></Offer><Offer><Merchant><MerchantId>AGLPMRINU0Q3T</MerchantId><Name>pbshop</Name><GlancePage>http://www.amazon.com/gp/help/seller/home.html?seller=AGLPMRINU0Q3T</GlancePage><Location><CountryCode>GB</CountryCode></Location><AverageFeedbackRating>4.7</AverageFeedbackRating><TotalFeedback>30372</TotalFeedback></Merchant><OfferAttributes><Condition>New</Condition><SubCondition>new</SubCondition><ConditionNote>New printed-on-demand paperback delivered from the UK in 10-14 days.</ConditionNote></OfferAttributes><OfferListing><OfferListingId>E7%2BiwDy%2F4s2HD142qXosE6DWUbblvbYyTZN00IuIy5MAcu4Bh8F6kyK8GizPo7CTQppTyTuy9XjPEjF2DyHx5W%2B5ZWkzXpEN%2BDgkSgWeSQComRtp0uBci42M2xUzlX8oZwNHqr09Vhg%3D</OfferListingId><ExchangeId>Y12M4504267M1808597</ExchangeId><Price><Amount>1229</Amount><CurrencyCode>USD</CurrencyCode><FormattedPrice>$12.29</FormattedPrice></Price><Availability>Usually ships in 1-2 business days</Availability><AvailabilityAttributes><AvailabilityType>now</AvailabilityType><MinimumHours>24</MinimumHours><MaximumHours>48</MaximumHours></AvailabilityAttributes><Quantity>500</Quantity><IsEligibleForSuperSaverShipping>0</IsEligibleForSuperSaverShipping><IsFulfilledByAmazon>0</IsFulfilledByAmazon></OfferListing></Offer><Offer><Merchant><MerchantId>AEEFKXIOPEVMK</MerchantId><Name>brandnewgoodsus</Name><GlancePage>http://www.amazon.com/gp/help/seller/home.html?seller=AEEFKXIOPEVMK</GlancePage><Location><CountryCode>US</CountryCode><StateCode>OR</StateCode></Location><AverageFeedbackRating>4.8</AverageFeedbackRating><TotalFeedback>1115</TotalFeedback></Merchant><OfferAttributes><Condition>New</Condition><SubCondition>new</SubCondition><ConditionNote>All items are BRAND NEW from the manufacturer! Tracking provided. 8 warehouses located in GA, IL, IN, NV, NJ, OR, PA, and TN.</ConditionNote></OfferAttributes><OfferListing><OfferListingId>JjwR7KbaLdO5piRM3b3LevojxQ%2FpYvf37Wr4LQ%2FtOmMSm5Kj%2BQ%2Fx3y47usuaOU2s%2FRDq2XylYpLyX1WOcGJq7qAC0d3NDVCwJlOOGCXCcGXZunbVIFYmc664Ql7%2Bics8tvEr9S87HZhp5q7wGA7pqw%3D%3D</OfferListingId><ExchangeId>Y11M2352189M0721252</ExchangeId><Price><Amount>1342</Amount><CurrencyCode>USD</CurrencyCode><FormattedPrice>$13.42</FormattedPrice></Price><Availability>Usually ships in 1-2 business days</Availability><AvailabilityAttributes><AvailabilityType>now</AvailabilityType><MinimumHours>24</MinimumHours><MaximumHours>48</MaximumHours></AvailabilityAttributes><Quantity>3</Quantity><IsEligibleForSuperSaverShipping>0</IsEligibleForSuperSaverShipping><IsFulfilledByAmazon>0</IsFulfilledByAmazon></OfferListing></Offer><Offer><Merchant><MerchantId>A3ADN03F2ABAVW</MerchantId><Name>sbd-</Name><GlancePage>http://www.amazon.com/gp/help/seller/home.html?seller=A3ADN03F2ABAVW</GlancePage><Location><CountryCode>US</CountryCode><StateCode>IN</StateCode></Location><AverageFeedbackRating>4.6</AverageFeedbackRating><TotalFeedback>43275</TotalFeedback></Merchant><OfferAttributes><Condition>Used</Condition><SubCondition>mint</SubCondition><ConditionNote>Brand New, Perfect Condition, Please allow 4-14 business days for delivery. 100% Money Back Guarantee, Over 1,000,000 customers served.</ConditionNote></OfferAttributes><OfferListing><OfferListingId>KyOcHurTT5oFhvRoaAJEOWWAC5CBYgh9DxJaG6j55Mrc8BdNfGkOhG%2F9P0x37xQeWjRE48NGtDC%2B7b3WpYEBB2Qvyo%2BQKh3yUUmS5KVtyzZo%2FMbK3to7rDA0BlVBZycKaTyzm7J7pIQ%3D</OfferListingId><ExchangeId>Y11M5798119M8612319</ExchangeId><Price><Amount>1417</Amount><CurrencyCode>USD</CurrencyCode><FormattedPrice>$14.17</FormattedPrice></Price><Availability>Usually ships in 1-2 business days</Availability><AvailabilityAttributes><AvailabilityType>now</AvailabilityType><MinimumHours>24</MinimumHours><MaximumHours>48</MaximumHours></AvailabilityAttributes><Quantity>999</Quantity><IsEligibleForSuperSaverShipping>0</IsEligibleForSuperSaverShipping><IsFulfilledByAmazon>0</IsFulfilledByAmazon></OfferListing></Offer><Offer><Merchant><MerchantId>A15AOQYSLLO2CF</MerchantId><Name>thermite-media</Name><GlancePage>http://www.amazon.com/gp/help/seller/home.html?seller=A15AOQYSLLO2CF</GlancePage><Location><CountryCode>US</CountryCode><StateCode>NC</StateCode></Location><AverageFeedbackRating>4.8</AverageFeedbackRating><TotalFeedback>55506</TotalFeedback></Merchant><OfferAttributes><Condition>Used</Condition><SubCondition>mint</SubCondition><ConditionNote>Like NEW. 30 Day Satisfaction Guarantee. Quick International Airmail!</ConditionNote></OfferAttributes><OfferListing><OfferListingId>XgTJpDQMgxeEzcQ9m3Eh2kRJbk3MKqkKQv6ZpVdUJbwANYmC6BXWtGqdvvmgOtHucpBQH78VW0ATVKMCHnEE7%2FttLdHKbqwK1CdTCgpnqbQNUJ7GtLtbqCCqmQ%2BNgnl%2BGus8OftiSv9QAiwh4wDmGQ%3D%3D</OfferListingId><ExchangeId>Y11M3901196M4963730</ExchangeId><Price><Amount>1418</Amount><CurrencyCode>USD</CurrencyCode><FormattedPrice>$14.18</FormattedPrice></Price><Availability>Usually ships in 1-2 business days</Availability><AvailabilityAttributes><AvailabilityType>now</AvailabilityType><MinimumHours>24</MinimumHours><MaximumHours>48</MaximumHours></AvailabilityAttributes><Quantity>49</Quantity><IsEligibleForSuperSaverShipping>0</IsEligibleForSuperSaverShipping><IsFulfilledByAmazon>0</IsFulfilledByAmazon></OfferListing></Offer></Offers></Item><Item><ASIN>184467598X</ASIN><OfferSummary><LowestNewPrice><Amount>1847</Amount><CurrencyCode>USD</CurrencyCode><FormattedPrice>$18.47</FormattedPrice></LowestNewPrice><LowestUsedPrice><Amount>1927</Amount><CurrencyCode>USD</CurrencyCode><FormattedPrice>$19.27</FormattedPrice></LowestUsedPrice><TotalNew>40</TotalNew><TotalUsed>8</TotalUsed><TotalCollectible>0</TotalCollectible><TotalRefurbished>0</TotalRefurbished></OfferSummary><Offers><TotalOffers>49</TotalOffers><TotalOfferPages>5</TotalOfferPages><Offer><Merchant><MerchantId>AHNEEZ9CVAP3Q</MerchantId><Name>---superbookdeals</Name><GlancePage>http://www.amazon.com/gp/help/seller/home.html?seller=AHNEEZ9CVAP3Q</GlancePage><Location><CountryCode>US</CountryCode><StateCode>IN</StateCode></Location><AverageFeedbackRating>4.6</AverageFeedbackRating><TotalFeedback>47002</TotalFeedback></Merchant><OfferAttributes><Condition>New</Condition><SubCondition>new</SubCondition><ConditionNote>Brand New, Perfect Condition, Please allow 4-14 business days for delivery. 100% Money Back Guarantee, Over 1,000,000 customers served.</ConditionNote></OfferAttributes><OfferListing><OfferListingId>5zVSlDpq97cbzPWBeNJdOgGiILCGthHI83ME4Zl9iRFj5omKJHJfpG4GdPePRD%2BED6dIZySWiGXIAMhLjK5DqfzBUkgftZ2JXnkm8LZKc1u3YUjX2NzZDyzqsUpV5KaF2%2B9pq8gx0P7bjAdi6WZjSA%3D%3D</OfferListingId><ExchangeId>Y11M5165887M1386826</ExchangeId><Price><Amount>1847</Amount><CurrencyCode>USD</CurrencyCode><FormattedPrice>$18.47</FormattedPrice></Price><AmountSaved><Amount>1148</Amount><CurrencyCode>USD</CurrencyCode><FormattedPrice>$11.48</FormattedPrice></AmountSaved><PercentageSaved>38</PercentageSaved><Availability>Usually ships in 1-2 business days</Availability><AvailabilityAttributes><AvailabilityType>now</AvailabilityType><MinimumHours>24</MinimumHours><MaximumHours>48</MaximumHours></AvailabilityAttributes><Quantity>999</Quantity><IsEligibleForSuperSaverShipping>0</IsEligibleForSuperSaverShipping><IsFulfilledByAmazon>0</IsFulfilledByAmazon></OfferListing></Offer><Offer><Merchant><MerchantId>A2E9OWRCF7T08Y</MerchantId><Name>pbshopus</Name><GlancePage>http://www.amazon.com/gp/help/seller/home.html?seller=A2E9OWRCF7T08Y</GlancePage><Location><CountryCode>US</CountryCode><StateCode>NJ</StateCode></Location><AverageFeedbackRating>4.7</AverageFeedbackRating><TotalFeedback>24712</TotalFeedback></Merchant><OfferAttributes><Condition>New</Condition><SubCondition>new</SubCondition><ConditionNote>New American book. Shipped within the US in 4-7 days (expedited) or about 10-14 days (standard). Standard can occasionally be slower so we advise using expedited if quicker delivery is important!</ConditionNote></OfferAttributes><OfferListing><OfferListingId>BqMQDePPdLnoM1ft8O3%2FkO74reoaTLjrOTh%2FgPm7pZksk2vTL1KwZvudnb2v9n4QS%2BGQCG4flRMqjiVTmfBycxtJrxWXQYcnFAGHzZ%2F8NuNyszqlC8jsQFBD19xs%2BEfkhsEQJmZZREYoziRozTzBVw%3D%3D</OfferListingId><ExchangeId>Y11M1033296M3810197</ExchangeId><Price><Amount>1848</Amount><CurrencyCode>USD</CurrencyCode><FormattedPrice>$18.48</FormattedPrice></Price><AmountSaved><Amount>1147</Amount><CurrencyCode>USD</CurrencyCode><FormattedPrice>$11.47</FormattedPrice></AmountSaved><PercentageSaved>38</PercentageSaved><Availability>Usually ships in 1-2 business days</Availability><AvailabilityAttributes><AvailabilityType>now</AvailabilityType><MinimumHours>24</MinimumHours><MaximumHours>48</MaximumHours></AvailabilityAttributes><Quantity>13</Quantity><IsEligibleForSuperSaverShipping>0</IsEligibleForSuperSaverShipping><IsFulfilledByAmazon>0</IsFulfilledByAmazon></OfferListing></Offer><Offer><Merchant><MerchantId>AGLPMRINU0Q3T</MerchantId><Name>pbshop</Name><GlancePage>http://www.amazon.com/gp/help/seller/home.html?seller=AGLPMRINU0Q3T</GlancePage><Location><CountryCode>GB</CountryCode></Location><AverageFeedbackRating>4.7</AverageFeedbackRating><TotalFeedback>30372</TotalFeedback></Merchant><OfferAttributes><Condition>New</Condition><SubCondition>new</SubCondition><ConditionNote>Brand new book! Delivered direct from our US warehouse by Expedited (4-7 days) or Standard (usually 10-14 days but can be longer). Expedited shipping recommended for speedier delivery. Over 1 million satisfied customers</ConditionNote></OfferAttributes><OfferListing><OfferListingId>E%2FTx6b3fZMqbaYuzqkjDCrZ0uVI96%2B3GYOudQ5Nx872toUrvcgJe5x4wUTCdNveW3vpI6iQOqgN3oZbI42LxTKfxjYXMqTbb2oRSJ6jj1g8R2Tnw%2FeQD%2BOfMv2Vaw0RkyK2n4LMG7nU%3D</OfferListingId><ExchangeId>Y12M1574634M8495207</ExchangeId><Price><Amount>1848</Amount><CurrencyCode>USD</CurrencyCode><FormattedPrice>$18.48</FormattedPrice></Price><AmountSaved><Amount>1147</Amount><CurrencyCode>USD</CurrencyCode><FormattedPrice>$11.47</FormattedPrice></AmountSaved><PercentageSaved>38</PercentageSaved><Availability>Usually ships in 1-2 business days</Availability><AvailabilityAttributes><AvailabilityType>now</AvailabilityType><MinimumHours>24</MinimumHours><MaximumHours>48</MaximumHours></AvailabilityAttributes><Quantity>13</Quantity><IsEligibleForSuperSaverShipping>0</IsEligibleForSuperSaverShipping><IsFulfilledByAmazon>0</IsFulfilledByAmazon></OfferListing></Offer><Offer><Merchant><MerchantId>A3CEMK0ZJNHDWB</MerchantId><Name>Viscount films</Name><GlancePage>http://www.amazon.com/gp/help/seller/home.html?seller=A3CEMK0ZJNHDWB</GlancePage><Location><CountryCode>US</CountryCode><StateCode>NY</StateCode></Location><AverageFeedbackRating>4.6</AverageFeedbackRating><TotalFeedback>11</TotalFeedback></Merchant><OfferAttributes><Condition>New</Condition><SubCondition>new</SubCondition><ConditionNote>Ships same day if order is processed before 4:30 ET. All other orders ship within 24hrs. Includes Saturday shipping. There is a slight crease in the dust cover in the upper left corner of the front of the book.</ConditionNote></OfferAttributes><OfferListing><OfferListingId>JZlOZgUix5IFpBrj1MxAuCWfcTNpCxmaMtD0R2XX1B%2FCjiIO5iZ9RDj502HoEockaPqkeLIbccyWq2oVQApBGuPFuap7cBzDSDKBK5KFMDGn76NnESZDLw0LuFD6YSZa%2F1wiyFqTgNXPTPgyH8nPtg%3D%3D</OfferListingId><ExchangeId>Y15M1262363M9269029</ExchangeId><Price><Amount>1849</Amount><CurrencyCode>USD</CurrencyCode><FormattedPrice>$18.49</FormattedPrice></Price><AmountSaved><Amount>1146</Amount><CurrencyCode>USD</CurrencyCode><FormattedPrice>$11.46</FormattedPrice></AmountSaved><PercentageSaved>38</PercentageSaved><Availability>Usually ships in 1-2 business days</Availability><AvailabilityAttributes><AvailabilityType>now</AvailabilityType><MinimumHours>24</MinimumHours><MaximumHours>48</MaximumHours></AvailabilityAttributes><Quantity>1</Quantity><IsEligibleForSuperSaverShipping>0</IsEligibleForSuperSaverShipping><IsFulfilledByAmazon>0</IsFulfilledByAmazon></OfferListing></Offer><Offer><Merchant><MerchantId>AHNEEZ9CVAP3Q</MerchantId><Name>---superbookdeals</Name><GlancePage>http://www.amazon.com/gp/help/seller/home.html?seller=AHNEEZ9CVAP3Q</GlancePage><Location><CountryCode>US</CountryCode><StateCode>IN</StateCode></Location><AverageFeedbackRating>4.6</AverageFeedbackRating><TotalFeedback>47002</TotalFeedback></Merchant><OfferAttributes><Condition>Used</Condition><SubCondition>mint</SubCondition><ConditionNote>Brand New, Perfect Condition, Please allow 4-14 business days for delivery. 100% Money Back Guarantee, Over 1,000,000 customers served.</ConditionNote></OfferAttributes><OfferListing><OfferListingId>Q0X3dSNBNi9fbPESo7JThjwhlAQcLzskbIOfTxbQeK3OL5G2Hxt8GdiEp6Uu8yzGKkaPdTXzIuT9Qfyq0WcENy%2B2wG0PgNornJEAlPD4J91NTTCSuddr0t%2BW%2BIFs9OyVy6xUFTjGCyRz1uv1EWyFQQ%3D%3D</OfferListingId><ExchangeId>Y11M5116701M9963853</ExchangeId><Price><Amount>1927</Amount><CurrencyCode>USD</CurrencyCode><FormattedPrice>$19.27</FormattedPrice></Price><AmountSaved><Amount>1068</Amount><CurrencyCode>USD</CurrencyCode><FormattedPrice>$10.68</FormattedPrice></AmountSaved><PercentageSaved>36</PercentageSaved><Availability>Usually ships in 1-2 business days</Availability><AvailabilityAttributes><AvailabilityType>now</AvailabilityType><MinimumHours>24</MinimumHours><MaximumHours>48</MaximumHours></AvailabilityAttributes><Quantity>999</Quantity><IsEligibleForSuperSaverShipping>0</IsEligibleForSuperSaverShipping><IsFulfilledByAmazon>0</IsFulfilledByAmazon></OfferListing></Offer><Offer><Merchant><MerchantId>A2MKIV2KLLJKF8</MerchantId><Name>beschloo_books</Name><GlancePage>http://www.amazon.com/gp/help/seller/home.html?seller=A2MKIV2KLLJKF8</GlancePage><AverageFeedbackRating>4.8</AverageFeedbackRating><TotalFeedback>15</TotalFeedback></Merchant><OfferAttributes><Condition>Used</Condition><SubCondition>mint</SubCondition><ConditionNote>Perfect Condition</ConditionNote></OfferAttributes><OfferListing><OfferListingId>uz8kofJpmgVmQklQhtAmHPR01fymbLaKevaZEMRlqZvQyTUDHji%2FKHosConXfDrEiUclnDPlLbSWO5dT1jXyhmFxrEJvXK0OgCTqA88ROQB6%2BHqwmrLYkTTihUuBLSKgWZxFJN4RGs4%3D</OfferListingId><ExchangeId>Y15M5950754M5245220</ExchangeId><Price><Amount>1928</Amount><CurrencyCode>USD</CurrencyCode><FormattedPrice>$19.28</FormattedPrice></Price><AmountSaved><Amount>1067</Amount><CurrencyCode>USD</CurrencyCode><FormattedPrice>$10.67</FormattedPrice></AmountSaved><PercentageSaved>36</PercentageSaved><Availability>Usually ships in 1-2 business days</Availability><AvailabilityAttributes><AvailabilityType>now</AvailabilityType><MinimumHours>24</MinimumHours><MaximumHours>48</MaximumHours></AvailabilityAttributes><Quantity>1</Quantity><IsEligibleForSuperSaverShipping>0</IsEligibleForSuperSaverShipping><IsFulfilledByAmazon>0</IsFulfilledByAmazon></OfferListing></Offer><Offer><Merchant><MerchantId>A1SSUO20DOKMFO</MerchantId><Name>BooKnackrh</Name><GlancePage>http://www.amazon.com/gp/help/seller/home.html?seller=A1SSUO20DOKMFO</GlancePage><Location><CountryCode>US</CountryCode><StateCode>SC</StateCode></Location><AverageFeedbackRating>4.7</AverageFeedbackRating><TotalFeedback>23062</TotalFeedback></Merchant><OfferAttributes><Condition>New</Condition><SubCondition>new</SubCondition><ConditionNote>-/-INTERNATIONAL SHIPPING-\\- SHIPS from 5 locations based on your Zip Code and availability! (PA TN IN OR SC) *-* Gift Quality *-* Orders Processed Immediately! - We get your book to you Very Quickly! 54.72</ConditionNote></OfferAttributes><OfferListing><OfferListingId>qP6onV8iSeFbnWqH54G%2BrV4FXf8V7vAB%2FUzUv2cZEpADq6BhGXP5EOk%2Fa6ZC80WUk%2FvSGtVWf5LfIkbi3RaMqdAGcJMnvt36aLnri2y78TZQ5JNMlS1mYc9yLieeXwSmDeDRX1GHNCo%3D</OfferListingId><ExchangeId>Y11M5715932M3305358</ExchangeId><Price><Amount>1928</Amount><CurrencyCode>USD</CurrencyCode><FormattedPrice>$19.28</FormattedPrice></Price><AmountSaved><Amount>1067</Amount><CurrencyCode>USD</CurrencyCode><FormattedPrice>$10.67</FormattedPrice></AmountSaved><PercentageSaved>36</PercentageSaved><Availability>Usually ships in 1-2 business days</Availability><AvailabilityAttributes><AvailabilityType>now</AvailabilityType><MinimumHours>24</MinimumHours><MaximumHours>48</MaximumHours></AvailabilityAttributes><Quantity>75</Quantity><IsEligibleForSuperSaverShipping>0</IsEligibleForSuperSaverShipping><IsFulfilledByAmazon>0</IsFulfilledByAmazon></OfferListing></Offer><Offer><Merchant><MerchantId>A2OMGVG4337Z2A</MerchantId><Name>booksXpress</Name><GlancePage>http://www.amazon.com/gp/help/seller/home.html?seller=A2OMGVG4337Z2A</GlancePage><Location><CountryCode>US</CountryCode><StateCode>NJ</StateCode></Location><AverageFeedbackRating>4.8</AverageFeedbackRating><TotalFeedback>7325</TotalFeedback></Merchant><OfferAttributes><Condition>New</Condition><SubCondition>new</SubCondition><ConditionNote>Brand NEW over 200k titles In Stock..100% Money Back Guarantee..Tracking and Delivery Notification sent to your email</ConditionNote></OfferAttributes><OfferListing><OfferListingId>uHAdSPsb5yn2m5UH1eUP4uEQYNr%2BLxfI66UdGdemrcOx%2FF6UNa%2Fd1JzSXqYwUTtrLC1h22n4136orKEem7RpS1rvtsje8kG0Nzb2Uuy3mJgp8JAaZAEy%2BbWCflk1nxXOB3pnpWy7O%2FBvKOzKJQ7P5Q%3D%3D</OfferListingId><ExchangeId>Y11M5094537M3933200</ExchangeId><Price><Amount>1929</Amount><CurrencyCode>USD</CurrencyCode><FormattedPrice>$19.29</FormattedPrice></Price><AmountSaved><Amount>1066</Amount><CurrencyCode>USD</CurrencyCode><FormattedPrice>$10.66</FormattedPrice></AmountSaved><PercentageSaved>36</PercentageSaved><Availability>Usually ships in 1-2 business days</Availability><AvailabilityAttributes><AvailabilityType>now</AvailabilityType><MinimumHours>24</MinimumHours><MaximumHours>48</MaximumHours></AvailabilityAttributes><Quantity>53</Quantity><IsEligibleForSuperSaverShipping>0</IsEligibleForSuperSaverShipping><IsFulfilledByAmazon>0</IsFulfilledByAmazon></OfferListing></Offer><Offer><Merchant><MerchantId>ASYDZOX0HKBSE</MerchantId><Name>any_book</Name><GlancePage>http://www.amazon.com/gp/help/seller/home.html?seller=ASYDZOX0HKBSE</GlancePage><Location><CountryCode>US</CountryCode><StateCode>FL</StateCode></Location><AverageFeedbackRating>4.7</AverageFeedbackRating><TotalFeedback>57247</TotalFeedback></Merchant><OfferAttributes><Condition>Used</Condition><SubCondition>mint</SubCondition><ConditionNote>100% BRAND NEW - FLAWLESS - BOOKSTORE QUALITY - SHIPS WITH TRACKING! Huge seller with millions of transactions. Money back guarantee.</ConditionNote></OfferAttributes><OfferListing><OfferListingId>pmYfKMOteqNth1rDWwNc2YMm6z16qgkbHrugrW8KbSshfZrd0SNkO9HWzPpJjk5AVOKSho%2B0avu9EGY6wjIDG4nGVexi%2BGFWPtWw%2FiYvv5NCXEw4x84YPL9SfX4OTNojmzoV%2Fe9rv9I%3D</OfferListingId><ExchangeId>Y12M0380442M6877458</ExchangeId><Price><Amount>1944</Amount><CurrencyCode>USD</CurrencyCode><FormattedPrice>$19.44</FormattedPrice></Price><AmountSaved><Amount>1051</Amount><CurrencyCode>USD</CurrencyCode><FormattedPrice>$10.51</FormattedPrice></AmountSaved><PercentageSaved>35</PercentageSaved><Availability>Usually ships in 1-2 business days</Availability><AvailabilityAttributes><AvailabilityType>now</AvailabilityType><MinimumHours>24</MinimumHours><MaximumHours>48</MaximumHours></AvailabilityAttributes><Quantity>8</Quantity><IsEligibleForSuperSaverShipping>0</IsEligibleForSuperSaverShipping><IsFulfilledByAmazon>0</IsFulfilledByAmazon></OfferListing></Offer><Offer><Merchant><MerchantId>ASYDZOX0HKBSE</MerchantId><Name>any_book</Name><GlancePage>http://www.amazon.com/gp/help/seller/home.html?seller=ASYDZOX0HKBSE</GlancePage><Location><CountryCode>US</CountryCode><StateCode>FL</StateCode></Location><AverageFeedbackRating>4.7</AverageFeedbackRating><TotalFeedback>57247</TotalFeedback></Merchant><OfferAttributes><Condition>New</Condition><SubCondition>new</SubCondition><ConditionNote>100% BRAND NEW - FLAWLESS - BOOKSTORE QUALITY - SHIPS WITH TRACKING! Huge seller with millions of transactions. Money back guarantee.</ConditionNote></OfferAttributes><OfferListing><OfferListingId>hiM4CyRb33g9OG5QLXJASOI9LRqJukBAgqkcy08KE4NMp9i6R65HcWOH78AxHc%2FHH9opU4WVSwslrT4%2FOHKms5%2BwX8gdANxW3Rx%2Bxjo4ILRWCC3O2uC5U22RevqX%2FAf1qLvUa6Fj7II%3D</OfferListingId><ExchangeId>Y12M0379059M4351503</ExchangeId><Price><Amount>1968</Amount><CurrencyCode>USD</CurrencyCode><FormattedPrice>$19.68</FormattedPrice></Price><AmountSaved><Amount>1027</Amount><CurrencyCode>USD</CurrencyCode><FormattedPrice>$10.27</FormattedPrice></AmountSaved><PercentageSaved>34</PercentageSaved><Availability>Usually ships in 1-2 business days</Availability><AvailabilityAttributes><AvailabilityType>now</AvailabilityType><MinimumHours>24</MinimumHours><MaximumHours>48</MaximumHours></AvailabilityAttributes><Quantity>8</Quantity><IsEligibleForSuperSaverShipping>0</IsEligibleForSuperSaverShipping><IsFulfilledByAmazon>0</IsFulfilledByAmazon></OfferListing></Offer></Offers></Item><Item><ASIN>0312427182</ASIN><OfferSummary><LowestNewPrice><Amount>800</Amount><CurrencyCode>USD</CurrencyCode><FormattedPrice>$8.00</FormattedPrice></LowestNewPrice><LowestUsedPrice><Amount>744</Amount><CurrencyCode>USD</CurrencyCode><FormattedPrice>$7.44</FormattedPrice></LowestUsedPrice><TotalNew>32</TotalNew><TotalUsed>27</TotalUsed><TotalCollectible>0</TotalCollectible><TotalRefurbished>0</TotalRefurbished></OfferSummary><Offers><TotalOffers>58</TotalOffers><TotalOfferPages>6</TotalOfferPages><Offer><Merchant><MerchantId>A3NRU3KKTFNLJA</MerchantId><Name>DChaseEnterprises</Name><GlancePage>http://www.amazon.com/gp/help/seller/home.html?seller=A3NRU3KKTFNLJA</GlancePage><Location><CountryCode>US</CountryCode><StateCode>WA</StateCode></Location><AverageFeedbackRating>5.0</AverageFeedbackRating><TotalFeedback>14</TotalFeedback></Merchant><OfferAttributes><Condition>Used</Condition><SubCondition>verygood</SubCondition><ConditionNote>25% of the proceeds from this sale will benefit Books to Prisoners Olympia. cover slightly worn, but in great shape overall.</ConditionNote></OfferAttributes><OfferListing><OfferListingId>WMi1RnP9WsD18qxggvSwx2pIx3OAfA4jSdyXMMwCghjt9QasSLuqfkfOIiO4hWmrSZde%2Bfrv30VgenN464c4zq0971gaIzsoLVaYKGd0QE%2B99ovIOjAfKPd9hdnw2M5JfuEf7BpETHiRj6a1Ggq9Fg%3D%3D</OfferListingId><ExchangeId>Y19M5223280M8843539</ExchangeId><Price><Amount>744</Amount><CurrencyCode>USD</CurrencyCode><FormattedPrice>$7.44</FormattedPrice></Price><AmountSaved><Amount>756</Amount><CurrencyCode>USD</CurrencyCode><FormattedPrice>$7.56</FormattedPrice></AmountSaved><PercentageSaved>50</PercentageSaved><Availability>Usually ships in 1-2 business days</Availability><AvailabilityAttributes><AvailabilityType>now</AvailabilityType><MinimumHours>24</MinimumHours><MaximumHours>48</MaximumHours></AvailabilityAttributes><Quantity>1</Quantity><IsEligibleForSuperSaverShipping>0</IsEligibleForSuperSaverShipping><IsFulfilledByAmazon>0</IsFulfilledByAmazon></OfferListing></Offer><Offer><Merchant><MerchantId>A18OZMH8UQINVM</MerchantId><Name>betterworldbooks_</Name><GlancePage>http://www.amazon.com/gp/help/seller/home.html?seller=A18OZMH8UQINVM</GlancePage><Location><CountryCode>US</CountryCode><StateCode>IN</StateCode></Location><AverageFeedbackRating>4.8</AverageFeedbackRating><TotalFeedback>189831</TotalFeedback></Merchant><OfferAttributes><Condition>Used</Condition><SubCondition>good</SubCondition><ConditionNote>Shows some signs of wear, and may have some markings on the inside. 100% Money Back Guarantee. Shipped to over one million happy customers. Your purchase benefits world literacy!</ConditionNote></OfferAttributes><OfferListing><OfferListingId>49I%2BENBdNOeaehKfZqzqur5E%2Fp6uzq9vY%2FPhPov0%2BWNU%2FfSNvC6C39yRi3VIkWbS%2B21dnomEszUpBqKcEwciT273lae7YQyhyQDlhPYRCS1M45y1HPpajKv23OkPX6ZuxxN5z%2FZEMNk%3D</OfferListingId><ExchangeId>Y18M3323303M7005040</ExchangeId><Price><Amount>744</Amount><CurrencyCode>USD</CurrencyCode><FormattedPrice>$7.44</FormattedPrice></Price><AmountSaved><Amount>756</Amount><CurrencyCode>USD</CurrencyCode><FormattedPrice>$7.56</FormattedPrice></AmountSaved><PercentageSaved>50</PercentageSaved><Availability>Usually ships in 1-2 business days</Availability><AvailabilityAttributes><AvailabilityType>now</AvailabilityType><MinimumHours>24</MinimumHours><MaximumHours>48</MaximumHours></AvailabilityAttributes><Quantity>1</Quantity><IsEligibleForSuperSaverShipping>0</IsEligibleForSuperSaverShipping><IsFulfilledByAmazon>0</IsFulfilledByAmazon></OfferListing></Offer><Offer><Merchant><MerchantId>A19YKKNYJIXUO6</MerchantId><Name>weirdbooks</Name><GlancePage>http://www.amazon.com/gp/help/seller/home.html?seller=A19YKKNYJIXUO6</GlancePage><Location><CountryCode>US</CountryCode><StateCode>CA</StateCode></Location><AverageFeedbackRating>4.9</AverageFeedbackRating><TotalFeedback>864</TotalFeedback></Merchant><OfferAttributes><Condition>Used</Condition><SubCondition>good</SubCondition><ConditionNote>Ships with US tracking number. Ex-library with usual stamps and labels/pocket. May have discard stamp or blacked-out library info to cover or endpages. Heavy laminate cover protector.</ConditionNote></OfferAttributes><OfferListing><OfferListingId>UJBUc48cHZEYslA3SDKdDkLONMQ45%2BFZXsI3zVgMo1YBovR%2FDok%2FmO2IwJrghIcrxUj0mFJmvT8epRyvaECezCVdkgj4PogR2YDvnX5Rg5%2FcFkmcvoo0tSmy9omdQdU31ulPPDwihJA%3D</OfferListingId><ExchangeId>Y11M4936322M7374224</ExchangeId><Price><Amount>745</Amount><CurrencyCode>USD</CurrencyCode><FormattedPrice>$7.45</FormattedPrice></Price><AmountSaved><Amount>755</Amount><CurrencyCode>USD</CurrencyCode><FormattedPrice>$7.55</FormattedPrice></AmountSaved><PercentageSaved>50</PercentageSaved><Availability>Usually ships in 1-2 business days</Availability><AvailabilityAttributes><AvailabilityType>now</AvailabilityType><MinimumHours>24</MinimumHours><MaximumHours>48</MaximumHours></AvailabilityAttributes><Quantity>1</Quantity><IsEligibleForSuperSaverShipping>0</IsEligibleForSuperSaverShipping><IsFulfilledByAmazon>0</IsFulfilledByAmazon></OfferListing></Offer><Offer><Merchant><MerchantId>AGYM3EEFAU0NO</MerchantId><Name>LegitzBooks</Name><GlancePage>http://www.amazon.com/gp/help/seller/home.html?seller=AGYM3EEFAU0NO</GlancePage><Location><CountryCode>US</CountryCode><StateCode>NY</StateCode></Location><AverageFeedbackRating>4.9</AverageFeedbackRating><TotalFeedback>262</TotalFeedback></Merchant><OfferAttributes><Condition>Used</Condition><SubCondition>verygood</SubCondition><ConditionNote>The item is in great condition, only minor wear. Qualifies for free shipping!</ConditionNote></OfferAttributes><OfferListing><OfferListingId>N4ScLYNg6WJBkeMXXHfDo7n7a9dVKcEfxq3EBsAyLNVJd5OdLZjCi96%2BmAlw17sBeXOUNSUSO71YYPxEZnXfAIgdA54Zu76VXVTChj5NNVkdEAntKUL1Z9gh6JVylPlt</OfferListingId><ExchangeId>Y16M6242396M5465365</ExchangeId><Price><Amount>763</Amount><CurrencyCode>USD</CurrencyCode><FormattedPrice>$7.63</FormattedPrice></Price><AmountSaved><Amount>737</Amount><CurrencyCode>USD</CurrencyCode><FormattedPrice>$7.37</FormattedPrice></AmountSaved><PercentageSaved>49</PercentageSaved><Availability>Usually ships in 24 hours</Availability><AvailabilityAttributes><AvailabilityType>now</AvailabilityType><MinimumHours>0</MinimumHours><MaximumHours>0</MaximumHours></AvailabilityAttributes><Quantity>1</Quantity><IsEligibleForSuperSaverShipping>1</IsEligibleForSuperSaverShipping><IsFulfilledByAmazon>1</IsFulfilledByAmazon></OfferListing></Offer><Offer><Merchant><MerchantId>A28ZF10VXXAOPZ</MerchantId><Name>harvestbooks</Name><GlancePage>http://www.amazon.com/gp/help/seller/home.html?seller=A28ZF10VXXAOPZ</GlancePage><Location><CountryCode>US</CountryCode><StateCode>PA</StateCode></Location><AverageFeedbackRating>4.9</AverageFeedbackRating><TotalFeedback>9676</TotalFeedback></Merchant><OfferAttributes><Condition>Used</Condition><SubCondition>verygood</SubCondition><ConditionNote>Trade Paperback. / Picador: 2008-07-22; Book, 272 pp / Condition: Very good condition., Stock#: 1040311 (FBA) * * *This item qualifies for FREE SHIPPING and Amazon Prime programs! * * *</ConditionNote></OfferAttributes><OfferListing><OfferListingId>K6ZZsYnQH973vHS5q%2B6%2B5ZkeKKA%2FKWFrpLFdKYLySXh1WfQa7qbEw4o7zhpcrtxrVtugpwDUq2P04sSF9P0mUJFRlEsOo8eRLAxCpL3ht9lygDa1MfRcFrAGfo3d7vVe</OfferListingId><ExchangeId>Y12M5927893M5476889</ExchangeId><Price><Amount>765</Amount><CurrencyCode>USD</CurrencyCode><FormattedPrice>$7.65</FormattedPrice></Price><AmountSaved><Amount>735</Amount><CurrencyCode>USD</CurrencyCode><FormattedPrice>$7.35</FormattedPrice></AmountSaved><PercentageSaved>49</PercentageSaved><Availability>Usually ships in 24 hours</Availability><AvailabilityAttributes><AvailabilityType>now</AvailabilityType><MinimumHours>0</MinimumHours><MaximumHours>0</MaximumHours></AvailabilityAttributes><Quantity>1</Quantity><IsEligibleForSuperSaverShipping>1</IsEligibleForSuperSaverShipping><IsFulfilledByAmazon>1</IsFulfilledByAmazon></OfferListing></Offer><Offer><Merchant><MerchantId>A1RKP2F8HLEIOR</MerchantId><Name>Golden Bough Bookstore, Macon, GA</Name><GlancePage>http://www.amazon.com/gp/help/seller/home.html?seller=A1RKP2F8HLEIOR</GlancePage><Location><CountryCode>US</CountryCode><StateCode>GA</StateCode></Location><AverageFeedbackRating>4.9</AverageFeedbackRating><TotalFeedback>238</TotalFeedback></Merchant><OfferAttributes><Condition>Used</Condition><SubCondition>verygood</SubCondition><ConditionNote>once read, light wear, unmarked.</ConditionNote></OfferAttributes><OfferListing><OfferListingId>fdpbrMHIjou1GAmpiYB6avhC9b2mCuefWorh%2FwLlGoQLIVOqvFn91mU1Yr5q2rz7JJafXKw7%2F6jhLQFgYZnspKZ8AtU%2F9a4DgKK%2Bv2S4A%2FK8GCFgW5FcEee9w%2BR5Je7j</OfferListingId><ExchangeId>Y11M1622899M2870557</ExchangeId><Price><Amount>799</Amount><CurrencyCode>USD</CurrencyCode><FormattedPrice>$7.99</FormattedPrice></Price><AmountSaved><Amount>701</Amount><CurrencyCode>USD</CurrencyCode><FormattedPrice>$7.01</FormattedPrice></AmountSaved><PercentageSaved>47</PercentageSaved><Availability>Usually ships in 1-2 business days</Availability><AvailabilityAttributes><AvailabilityType>now</AvailabilityType><MinimumHours>24</MinimumHours><MaximumHours>48</MaximumHours></AvailabilityAttributes><Quantity>1</Quantity><IsEligibleForSuperSaverShipping>0</IsEligibleForSuperSaverShipping><IsFulfilledByAmazon>0</IsFulfilledByAmazon></OfferListing></Offer><Offer><Merchant><MerchantId>ANHO6GKB06FTF</MerchantId><Name>a_hula_girl_at_heart</Name><GlancePage>http://www.amazon.com/gp/help/seller/home.html?seller=ANHO6GKB06FTF</GlancePage><Location><CountryCode>US</CountryCode><StateCode>FL</StateCode></Location><AverageFeedbackRating>4.9</AverageFeedbackRating><TotalFeedback>72</TotalFeedback></Merchant><OfferAttributes><Condition>Used</Condition><SubCondition>mint</SubCondition><ConditionNote>an interesting read indeed~Thanks for stopping by :)</ConditionNote></OfferAttributes><OfferListing><OfferListingId>F0MIEceWKZFxSEv8Ri%2FpeFc3Meu%2FhqMwivEUkuEw1DEnIrtVzIg5IQ17OfGADiBSrTMl3f45Cfm2P4kekbhWANhdMEnNdGCjEX%2F28wt0lcNe7rcE1FuD5j5M7RaI9avFnu2z8qKNxg8%3D</OfferListingId><ExchangeId>Y14M5933116M6237706</ExchangeId><Price><Amount>799</Amount><CurrencyCode>USD</CurrencyCode><FormattedPrice>$7.99</FormattedPrice></Price><AmountSaved><Amount>701</Amount><CurrencyCode>USD</CurrencyCode><FormattedPrice>$7.01</FormattedPrice></AmountSaved><PercentageSaved>47</PercentageSaved><Availability>Usually ships in 1-2 business days</Availability><AvailabilityAttributes><AvailabilityType>now</AvailabilityType><MinimumHours>24</MinimumHours><MaximumHours>48</MaximumHours></AvailabilityAttributes><Quantity>1</Quantity><IsEligibleForSuperSaverShipping>0</IsEligibleForSuperSaverShipping><IsFulfilledByAmazon>0</IsFulfilledByAmazon></OfferListing></Offer><Offer><Merchant><MerchantId>A246IP3XX4IMPL</MerchantId><Name>frenchiej09</Name><GlancePage>http://www.amazon.com/gp/help/seller/home.html?seller=A246IP3XX4IMPL</GlancePage><Location><CountryCode>US</CountryCode><StateCode>TX</StateCode></Location><AverageFeedbackRating>4.1</AverageFeedbackRating><TotalFeedback>7</TotalFeedback></Merchant><OfferAttributes><Condition>New</Condition><SubCondition>new</SubCondition><ConditionNote>Brand new book! Fast shipping!</ConditionNote></OfferAttributes><OfferListing><OfferListingId>ihp4xn9x5RlZirM1hxRBA3cEv0r87MDZUU3vCMEsx5PQ0Myj78JOdcq8ezgbIxU2kxQyY%2FUw1PZGvffJBDlKcUw8yGWpun7cCeqLVSDh%2FXYn%2BlTyVeXV1V6C6V%2FDAbgxBZ9KG9Q4sWsX0HA0s9v3xQ%3D%3D</OfferListingId><ExchangeId>Y13M0015688M0774040</ExchangeId><Price><Amount>820</Amount><CurrencyCode>USD</CurrencyCode><FormattedPrice>$8.20</FormattedPrice></Price><AmountSaved><Amount>680</Amount><CurrencyCode>USD</CurrencyCode><FormattedPrice>$6.80</FormattedPrice></AmountSaved><PercentageSaved>45</PercentageSaved><Availability>Usually ships in 1-2 business days</Availability><AvailabilityAttributes><AvailabilityType>now</AvailabilityType><MinimumHours>24</MinimumHours><MaximumHours>48</MaximumHours></AvailabilityAttributes><Quantity>2</Quantity><IsEligibleForSuperSaverShipping>0</IsEligibleForSuperSaverShipping><IsFulfilledByAmazon>0</IsFulfilledByAmazon></OfferListing></Offer><Offer><Merchant><MerchantId>A1JKVWH22E85VP</MerchantId><Name>supermoviedeals</Name><GlancePage>http://www.amazon.com/gp/help/seller/home.html?seller=A1JKVWH22E85VP</GlancePage><Location><CountryCode>US</CountryCode><StateCode>IN</StateCode></Location><AverageFeedbackRating>4.7</AverageFeedbackRating><TotalFeedback>14933</TotalFeedback></Merchant><OfferAttributes><Condition>New</Condition><SubCondition>new</SubCondition><ConditionNote>Brand New, Perfect Condition, Please allow 4-14 business days for delivery. 100% Money Back Guarantee, Over 1,000,000 customers served.</ConditionNote></OfferAttributes><OfferListing><OfferListingId>DWESKL5WkZ%2FtnODgA6gKrLicqYxcY42Or03pAq9mdvRN%2F3geLWQOJ60mE21BOGyWlxOepD6BzkEJ2PSpVzavOyEX%2FZEjgETxs1EMyrsfZktMe4mr3s0dUnRW3bk2vJIpdZjpguMivuM%3D</OfferListingId><ExchangeId>Y11M1467240M8837375</ExchangeId><Price><Amount>825</Amount><CurrencyCode>USD</CurrencyCode><FormattedPrice>$8.25</FormattedPrice></Price><AmountSaved><Amount>675</Amount><CurrencyCode>USD</CurrencyCode><FormattedPrice>$6.75</FormattedPrice></AmountSaved><PercentageSaved>45</PercentageSaved><Availability>Usually ships in 1-2 business days</Availability><AvailabilityAttributes><AvailabilityType>now</AvailabilityType><MinimumHours>24</MinimumHours><MaximumHours>48</MaximumHours></AvailabilityAttributes><Quantity>996</Quantity><IsEligibleForSuperSaverShipping>0</IsEligibleForSuperSaverShipping><IsFulfilledByAmazon>0</IsFulfilledByAmazon></OfferListing></Offer><Offer><Merchant><MerchantId>A2LRKSIZYBOTYA</MerchantId><Name>AJ Lattimore</Name><GlancePage>http://www.amazon.com/gp/help/seller/home.html?seller=A2LRKSIZYBOTYA</GlancePage><AverageFeedbackRating>4.0</AverageFeedbackRating><TotalFeedback>4</TotalFeedback></Merchant><OfferAttributes><Condition>New</Condition><SubCondition>new</SubCondition></OfferAttributes><OfferListing><OfferListingId>wQJutPP2MgCRv1hapNYusIxrjMVHEhu7J83cae2tNqq5n3BYRXGakKrwpC4rzSVBRMFf%2FXw7Exn%2BFRiEPFESwmtCymy0xNhZ91K6obv2buzWAF0n0uegn37bY37zPCAeYsWv3ufQ0PI%3D</OfferListingId><ExchangeId>Y15M3099997M3258267</ExchangeId><Price><Amount>825</Amount><CurrencyCode>USD</CurrencyCode><FormattedPrice>$8.25</FormattedPrice></Price><AmountSaved><Amount>675</Amount><CurrencyCode>USD</CurrencyCode><FormattedPrice>$6.75</FormattedPrice></AmountSaved><PercentageSaved>45</PercentageSaved><Availability>Usually ships in 1-2 business days</Availability><AvailabilityAttributes><AvailabilityType>now</AvailabilityType><MinimumHours>24</MinimumHours><MaximumHours>48</MaximumHours></AvailabilityAttributes><Quantity>1</Quantity><IsEligibleForSuperSaverShipping>0</IsEligibleForSuperSaverShipping><IsFulfilledByAmazon>0</IsFulfilledByAmazon></OfferListing></Offer></Offers></Item><Item><ASIN>1844674282</ASIN><OfferSummary><LowestNewPrice><Amount>708</Amount><CurrencyCode>USD</CurrencyCode><FormattedPrice>$7.08</FormattedPrice></LowestNewPrice><LowestUsedPrice><Amount>750</Amount><CurrencyCode>USD</CurrencyCode><FormattedPrice>$7.50</FormattedPrice></LowestUsedPrice><TotalNew>44</TotalNew><TotalUsed>9</TotalUsed><TotalCollectible>0</TotalCollectible><TotalRefurbished>0</TotalRefurbished></OfferSummary><Offers><TotalOffers>53</TotalOffers><TotalOfferPages>6</TotalOfferPages><Offer><Merchant><MerchantId>AGLPMRINU0Q3T</MerchantId><Name>pbshop</Name><GlancePage>http://www.amazon.com/gp/help/seller/home.html?seller=AGLPMRINU0Q3T</GlancePage><Location><CountryCode>GB</CountryCode></Location><AverageFeedbackRating>4.7</AverageFeedbackRating><TotalFeedback>30372</TotalFeedback></Merchant><OfferAttributes><Condition>New</Condition><SubCondition>new</SubCondition><ConditionNote>Brand new book! Delivered direct from our US warehouse by Expedited (4-7 days) or Standard (usually 10-14 days but can be longer). Expedited shipping recommended for speedier delivery. Over 1 million satisfied customers</ConditionNote></OfferAttributes><OfferListing><OfferListingId>2feCby7dwPwXeukboGZ0sUMP8nNReNEvFFcYsuGQ5xIOf%2FY071BbyQtDAwwyGwGG6BhuOXrpr45mrIY7%2B9xCWmTKLGRtzhp%2FYd5T0S8wdkVAmksXPk5E6UENmvmWrs0GAr11fFtwPuk%3D</OfferListingId><ExchangeId>Y12M4804583M3245569</ExchangeId><Price><Amount>708</Amount><CurrencyCode>USD</CurrencyCode><FormattedPrice>$7.08</FormattedPrice></Price><AmountSaved><Amount>587</Amount><CurrencyCode>USD</CurrencyCode><FormattedPrice>$5.87</FormattedPrice></AmountSaved><PercentageSaved>45</PercentageSaved><Availability>Usually ships in 1-2 business days</Availability><AvailabilityAttributes><AvailabilityType>now</AvailabilityType><MinimumHours>24</MinimumHours><MaximumHours>48</MaximumHours></AvailabilityAttributes><Quantity>24</Quantity><IsEligibleForSuperSaverShipping>0</IsEligibleForSuperSaverShipping><IsFulfilledByAmazon>0</IsFulfilledByAmazon></OfferListing></Offer><Offer><Merchant><MerchantId>AGLPMRINU0Q3T</MerchantId><Name>pbshop</Name><GlancePage>http://www.amazon.com/gp/help/seller/home.html?seller=AGLPMRINU0Q3T</GlancePage><Location><CountryCode>GB</CountryCode></Location><AverageFeedbackRating>4.7</AverageFeedbackRating><TotalFeedback>30372</TotalFeedback></Merchant><OfferAttributes><Condition>New</Condition><SubCondition>new</SubCondition><ConditionNote>Brand new book delivered from the UK in 10-14 days.</ConditionNote></OfferAttributes><OfferListing><OfferListingId>RYtEMgETt3OC0d9hIPt3EgM6NVwiciLfyh02%2FWi3NeaU4FVbue2Hq3gu9FLbzO9R2muAV6yRRI%2FCpzzi%2F4m1M90LZWfCYrlIXNxe1K1gDLeQ0gOKIlTcLCyCB7Cc7E2M%2FS2RhMTCFfQ%3D</OfferListingId><ExchangeId>Y12M0098712M0414557</ExchangeId><Price><Amount>708</Amount><CurrencyCode>USD</CurrencyCode><FormattedPrice>$7.08</FormattedPrice></Price><AmountSaved><Amount>587</Amount><CurrencyCode>USD</CurrencyCode><FormattedPrice>$5.87</FormattedPrice></AmountSaved><PercentageSaved>45</PercentageSaved><Availability>Usually ships in 1-2 business days</Availability><AvailabilityAttributes><AvailabilityType>now</AvailabilityType><MinimumHours>24</MinimumHours><MaximumHours>48</MaximumHours></AvailabilityAttributes><Quantity>52</Quantity><IsEligibleForSuperSaverShipping>0</IsEligibleForSuperSaverShipping><IsFulfilledByAmazon>0</IsFulfilledByAmazon></OfferListing></Offer><Offer><Merchant><MerchantId>A15AOQYSLLO2CF</MerchantId><Name>thermite-media</Name><GlancePage>http://www.amazon.com/gp/help/seller/home.html?seller=A15AOQYSLLO2CF</GlancePage><Location><CountryCode>US</CountryCode><StateCode>NC</StateCode></Location><AverageFeedbackRating>4.8</AverageFeedbackRating><TotalFeedback>55506</TotalFeedback></Merchant><OfferAttributes><Condition>New</Condition><SubCondition>new</SubCondition><ConditionNote>BRAND NEW. 30 Day Satisfaction Guarantee. Quick International Airmail!</ConditionNote></OfferAttributes><OfferListing><OfferListingId>JMi1Ax9GxP6MnH8q6a6kg478Hqrodd0FIpIRmTeKLKRcIdMMvFAbdsfu9UHDFlWZChssHbn1GWWuI%2Bo8rKpDvPwqB9zeaqIgAYP9npSC4TrDF2E4Hd8cExXG5tcH2tnoGhrlAy719dx%2FSOqr4VMiPw%3D%3D</OfferListingId><ExchangeId>Y11M4528452M6959982</ExchangeId><Price><Amount>709</Amount><CurrencyCode>USD</CurrencyCode><FormattedPrice>$7.09</FormattedPrice></Price><AmountSaved><Amount>586</Amount><CurrencyCode>USD</CurrencyCode><FormattedPrice>$5.86</FormattedPrice></AmountSaved><PercentageSaved>45</PercentageSaved><Availability>Usually ships in 1-2 business days</Availability><AvailabilityAttributes><AvailabilityType>now</AvailabilityType><MinimumHours>24</MinimumHours><MaximumHours>48</MaximumHours></AvailabilityAttributes><Quantity>46</Quantity><IsEligibleForSuperSaverShipping>0</IsEligibleForSuperSaverShipping><IsFulfilledByAmazon>0</IsFulfilledByAmazon></OfferListing></Offer><Offer><Merchant><MerchantId>A2E9OWRCF7T08Y</MerchantId><Name>pbshopus</Name><GlancePage>http://www.amazon.com/gp/help/seller/home.html?seller=A2E9OWRCF7T08Y</GlancePage><Location><CountryCode>US</CountryCode><StateCode>NJ</StateCode></Location><AverageFeedbackRating>4.7</AverageFeedbackRating><TotalFeedback>24712</TotalFeedback></Merchant><OfferAttributes><Condition>New</Condition><SubCondition>new</SubCondition><ConditionNote>New American book. Shipped within the US in 4-7 days (expedited) or about 10-14 days (standard). Standard can occasionally be slower so we advise using expedited if quicker delivery is important!</ConditionNote></OfferAttributes><OfferListing><OfferListingId>DPjLp8e1AM4WNacVYBjpFrRogS1XtoZKgQR%2FJQNYX8iwWhRUlzSGjTlcf94z9Exm0smenMehFXGVI0nDqrmWQDLJ8NCk8hSQkLYZMl99785ix5uj2B29a7RLgqBEJN6RlU8T4YqeKhH2bJd%2F9X9hAQ%3D%3D</OfferListingId><ExchangeId>Y11M4706619M2687814</ExchangeId><Price><Amount>709</Amount><CurrencyCode>USD</CurrencyCode><FormattedPrice>$7.09</FormattedPrice></Price><AmountSaved><Amount>586</Amount><CurrencyCode>USD</CurrencyCode><FormattedPrice>$5.86</FormattedPrice></AmountSaved><PercentageSaved>45</PercentageSaved><Availability>Usually ships in 1-2 business days</Availability><AvailabilityAttributes><AvailabilityType>now</AvailabilityType><MinimumHours>24</MinimumHours><MaximumHours>48</MaximumHours></AvailabilityAttributes><Quantity>24</Quantity><IsEligibleForSuperSaverShipping>0</IsEligibleForSuperSaverShipping><IsFulfilledByAmazon>0</IsFulfilledByAmazon></OfferListing></Offer><Offer><Merchant><MerchantId>A3LVSQM04S5WC1</MerchantId><Name>aphrohead_books_uk</Name><GlancePage>http://www.amazon.com/gp/help/seller/home.html?seller=A3LVSQM04S5WC1</GlancePage><Location><CountryCode>GB</CountryCode></Location><AverageFeedbackRating>4.8</AverageFeedbackRating><TotalFeedback>4491</TotalFeedback></Merchant><OfferAttributes><Condition>New</Condition><SubCondition>new</SubCondition><ConditionNote>Brand New. Delivery is usually 5 - 8 working days from order, International delivery is by Royal Mail Airmail</ConditionNote></OfferAttributes><OfferListing><OfferListingId>%2BG%2FTtfuuWBNsM1cXFcGGxUEU5j76y%2FoC02W2qfIQaC3nPfeWLvRzQBATYl9MYxT4Q3dYndriYPBgMQ855zsTIGa72Oz4U7yAwnuh7RkugEIoy9et2aqpmu9E9KQpgi28sVr0xSrQoDXLDnXGtAGHiQ%3D%3D</OfferListingId><ExchangeId>Y11M1485459M5135905</ExchangeId><Price><Amount>715</Amount><CurrencyCode>USD</CurrencyCode><FormattedPrice>$7.15</FormattedPrice></Price><AmountSaved><Amount>580</Amount><CurrencyCode>USD</CurrencyCode><FormattedPrice>$5.80</FormattedPrice></AmountSaved><PercentageSaved>45</PercentageSaved><Availability>Usually ships in 1-2 business days</Availability><AvailabilityAttributes><AvailabilityType>now</AvailabilityType><MinimumHours>24</MinimumHours><MaximumHours>48</MaximumHours></AvailabilityAttributes><Quantity>5</Quantity><IsEligibleForSuperSaverShipping>0</IsEligibleForSuperSaverShipping><IsFulfilledByAmazon>0</IsFulfilledByAmazon></OfferListing></Offer><Offer><Merchant><MerchantId>A1SSUO20DOKMFO</MerchantId><Name>BooKnackrh</Name><GlancePage>http://www.amazon.com/gp/help/seller/home.html?seller=A1SSUO20DOKMFO</GlancePage><Location><CountryCode>US</CountryCode><StateCode>SC</StateCode></Location><AverageFeedbackRating>4.7</AverageFeedbackRating><TotalFeedback>23062</TotalFeedback></Merchant><OfferAttributes><Condition>New</Condition><SubCondition>new</SubCondition><ConditionNote>-/-INTERNATIONAL SHIPPING-\\- SHIPS from 5 locations based on your Zip Code and availability! (PA TN IN OR SC) *-* Gift Quality *-* Orders Processed Immediately! - We get your book to you Very Quickly! 47.06</ConditionNote></OfferAttributes><OfferListing><OfferListingId>EDVEWVdc5lbNDgHwOsO%2FvA8tx3hNoeIg8G%2FkPTQoj9jQhp%2F3Y5TCVokZg46k%2Byi32LUBctKePehmPdUcQQDpK1%2BkFs9KYiBG9WhkvL1rxiWjhsWuyOwdkaCxYof3re%2BOAgSH5kNw1Ew%3D</OfferListingId><ExchangeId>Y11M6412371M0143068</ExchangeId><Price><Amount>717</Amount><CurrencyCode>USD</CurrencyCode><FormattedPrice>$7.17</FormattedPrice></Price><AmountSaved><Amount>578</Amount><CurrencyCode>USD</CurrencyCode><FormattedPrice>$5.78</FormattedPrice></AmountSaved><PercentageSaved>45</PercentageSaved><Availability>Usually ships in 1-2 business days</Availability><AvailabilityAttributes><AvailabilityType>now</AvailabilityType><MinimumHours>24</MinimumHours><MaximumHours>48</MaximumHours></AvailabilityAttributes><Quantity>75</Quantity><IsEligibleForSuperSaverShipping>0</IsEligibleForSuperSaverShipping><IsFulfilledByAmazon>0</IsFulfilledByAmazon></OfferListing></Offer><Offer><Merchant><MerchantId>A3TJVJMBQL014A</MerchantId><Name>the_book_depository_</Name><GlancePage>http://www.amazon.com/gp/help/seller/home.html?seller=A3TJVJMBQL014A</GlancePage><Location><CountryCode>US</CountryCode><StateCode>DE</StateCode></Location><AverageFeedbackRating>4.8</AverageFeedbackRating><TotalFeedback>110710</TotalFeedback></Merchant><OfferAttributes><Condition>New</Condition><SubCondition>new</SubCondition><ConditionNote>Brand New. Delivery is usually 5 - 8 working days from order, International is by Royal Mail Airmail</ConditionNote></OfferAttributes><OfferListing><OfferListingId>91yk59GWQd02wF1%2BZR%2FOc%2FDbWIuNYESpt%2BEGDXbLPIqOWM8Q12bp5H8Atvld8ZShUMPnRjNhrqBvc3zxwdVwDMB2ToZk4jlRDr4BM8hRl1eULC%2FkscOPYO%2BoekMkjuB5jFoMxppiPIs%3D</OfferListingId><ExchangeId>Y19M3003935M2195132</ExchangeId><Price><Amount>732</Amount><CurrencyCode>USD</CurrencyCode><FormattedPrice>$7.32</FormattedPrice></Price><AmountSaved><Amount>563</Amount><CurrencyCode>USD</CurrencyCode><FormattedPrice>$5.63</FormattedPrice></AmountSaved><PercentageSaved>43</PercentageSaved><Availability>Usually ships in 1-2 business days</Availability><AvailabilityAttributes><AvailabilityType>now</AvailabilityType><MinimumHours>24</MinimumHours><MaximumHours>48</MaximumHours></AvailabilityAttributes><Quantity>50</Quantity><IsEligibleForSuperSaverShipping>0</IsEligibleForSuperSaverShipping><IsFulfilledByAmazon>0</IsFulfilledByAmazon></OfferListing></Offer><Offer><Merchant><MerchantId>AHNEEZ9CVAP3Q</MerchantId><Name>---superbookdeals</Name><GlancePage>http://www.amazon.com/gp/help/seller/home.html?seller=AHNEEZ9CVAP3Q</GlancePage><Location><CountryCode>US</CountryCode><StateCode>IN</StateCode></Location><AverageFeedbackRating>4.6</AverageFeedbackRating><TotalFeedback>47002</TotalFeedback></Merchant><OfferAttributes><Condition>Used</Condition><SubCondition>mint</SubCondition><ConditionNote>Brand New, Perfect Condition, Please allow 4-14 business days for delivery. 100% Money Back Guarantee, Over 1,000,000 customers served.</ConditionNote></OfferAttributes><OfferListing><OfferListingId>XLJMxpxx6REpdJ6%2B21u2oPnouJC098t4Yci%2FACx1NT%2BsP4iTtcTNTzyPUEuACUanM6qbDiEnRbzGvbpW7hdQnZ56PiXdLI42dWdOEx3MTfxHsRtWonLWV7KnZdp69IXduobCjnjRn7nADREFRe2oJw%3D%3D</OfferListingId><ExchangeId>Y11M0938068M9983739</ExchangeId><Price><Amount>750</Amount><CurrencyCode>USD</CurrencyCode><FormattedPrice>$7.50</FormattedPrice></Price><AmountSaved><Amount>545</Amount><CurrencyCode>USD</CurrencyCode><FormattedPrice>$5.45</FormattedPrice></AmountSaved><PercentageSaved>42</PercentageSaved><Availability>Usually ships in 1-2 business days</Availability><AvailabilityAttributes><AvailabilityType>now</AvailabilityType><MinimumHours>24</MinimumHours><MaximumHours>48</MaximumHours></AvailabilityAttributes><Quantity>999</Quantity><IsEligibleForSuperSaverShipping>0</IsEligibleForSuperSaverShipping><IsFulfilledByAmazon>0</IsFulfilledByAmazon></OfferListing></Offer><Offer><Merchant><MerchantId>A15AOQYSLLO2CF</MerchantId><Name>thermite-media</Name><GlancePage>http://www.amazon.com/gp/help/seller/home.html?seller=A15AOQYSLLO2CF</GlancePage><Location><CountryCode>US</CountryCode><StateCode>NC</StateCode></Location><AverageFeedbackRating>4.8</AverageFeedbackRating><TotalFeedback>55506</TotalFeedback></Merchant><OfferAttributes><Condition>Used</Condition><SubCondition>mint</SubCondition><ConditionNote>Like NEW. 30 Day Satisfaction Guarantee. Quick International Airmail!</ConditionNote></OfferAttributes><OfferListing><OfferListingId>eYBlwXfMryxMJ3WgofFPr4khH0syDKheYAz%2FJvnDqq5DagNrdc1qEXwe5DwsMWbDRY%2FUAuFoyDm%2FOScK0FHjBe%2Fd8L7kImCdDnXZWAuZlLlsBUmiPpyFcwoErjeWNj9dgeLxpK3To2HILciQL5jW7Q%3D%3D</OfferListingId><ExchangeId>Y11M4524928M7902491</ExchangeId><Price><Amount>751</Amount><CurrencyCode>USD</CurrencyCode><FormattedPrice>$7.51</FormattedPrice></Price><AmountSaved><Amount>544</Amount><CurrencyCode>USD</CurrencyCode><FormattedPrice>$5.44</FormattedPrice></AmountSaved><PercentageSaved>42</PercentageSaved><Availability>Usually ships in 1-2 business days</Availability><AvailabilityAttributes><AvailabilityType>now</AvailabilityType><MinimumHours>24</MinimumHours><MaximumHours>48</MaximumHours></AvailabilityAttributes><Quantity>48</Quantity><IsEligibleForSuperSaverShipping>0</IsEligibleForSuperSaverShipping><IsFulfilledByAmazon>0</IsFulfilledByAmazon></OfferListing></Offer><Offer><Merchant><MerchantId>AHNEEZ9CVAP3Q</MerchantId><Name>---superbookdeals</Name><GlancePage>http://www.amazon.com/gp/help/seller/home.html?seller=AHNEEZ9CVAP3Q</GlancePage><Location><CountryCode>US</CountryCode><StateCode>IN</StateCode></Location><AverageFeedbackRating>4.6</AverageFeedbackRating><TotalFeedback>47002</TotalFeedback></Merchant><OfferAttributes><Condition>New</Condition><SubCondition>new</SubCondition><ConditionNote>Brand New, Perfect Condition, Please allow 4-14 business days for delivery. 100% Money Back Guarantee, Over 1,000,000 customers served.</ConditionNote></OfferAttributes><OfferListing><OfferListingId>NAbySRjUG3U%2FtohWLN0A4tcmlwXs5r%2BXCV9uhC8Vxz7%2FnGaIA55wCFlCCEruaeDm%2BGoNYbHzBQhvqPA7ZFDgsRIaGt4vKKFzZZchhv9nnkvbv1960vBO0lNpK56wTb9GuxsNnwhFsVmy19F1DeLNMQ%3D%3D</OfferListingId><ExchangeId>Y11M0962462M6236602</ExchangeId><Price><Amount>770</Amount><CurrencyCode>USD</CurrencyCode><FormattedPrice>$7.70</FormattedPrice></Price><AmountSaved><Amount>525</Amount><CurrencyCode>USD</CurrencyCode><FormattedPrice>$5.25</FormattedPrice></AmountSaved><PercentageSaved>41</PercentageSaved><Availability>Usually ships in 1-2 business days</Availability><AvailabilityAttributes><AvailabilityType>now</AvailabilityType><MinimumHours>24</MinimumHours><MaximumHours>48</MaximumHours></AvailabilityAttributes><Quantity>997</Quantity><IsEligibleForSuperSaverShipping>0</IsEligibleForSuperSaverShipping><IsFulfilledByAmazon>0</IsFulfilledByAmazon></OfferListing></Offer></Offers></Item><Item><ASIN>0745640974</ASIN><OfferSummary><LowestNewPrice><Amount>994</Amount><CurrencyCode>USD</CurrencyCode><FormattedPrice>$9.94</FormattedPrice></LowestNewPrice><LowestUsedPrice><Amount>1774</Amount><CurrencyCode>USD</CurrencyCode><FormattedPrice>$17.74</FormattedPrice></LowestUsedPrice><TotalNew>27</TotalNew><TotalUsed>9</TotalUsed><TotalCollectible>0</TotalCollectible><TotalRefurbished>0</TotalRefurbished></OfferSummary><Offers><TotalOffers>37</TotalOffers><TotalOfferPages>4</TotalOfferPages><Offer><Merchant><MerchantId>A3TJVJMBQL014A</MerchantId><Name>the_book_depository_</Name><GlancePage>http://www.amazon.com/gp/help/seller/home.html?seller=A3TJVJMBQL014A</GlancePage><Location><CountryCode>US</CountryCode><StateCode>DE</StateCode></Location><AverageFeedbackRating>4.8</AverageFeedbackRating><TotalFeedback>110710</TotalFeedback></Merchant><OfferAttributes><Condition>New</Condition><SubCondition>new</SubCondition><ConditionNote>Brand New. Delivery is usually 5 - 8 working days from order, International is by Royal Mail Airmail</ConditionNote></OfferAttributes><OfferListing><OfferListingId>Ly4afHT1CWMEO5vcN4SBGe65sSRDZ1aluuDEJon%2Fm7FhOHuEVn5BuZS%2FO%2Fod%2F7i7zBHmU2vfhYFSeoPiMAT64BQMkN746g7KRDmPC2f599sqNhHRPEqbUvWdQeadi4lsWF9qGk5Jkls%3D</OfferListingId><ExchangeId>Y19M5467912M5973534</ExchangeId><Price><Amount>994</Amount><CurrencyCode>USD</CurrencyCode><FormattedPrice>$9.94</FormattedPrice></Price><AmountSaved><Amount>301</Amount><CurrencyCode>USD</CurrencyCode><FormattedPrice>$3.01</FormattedPrice></AmountSaved><PercentageSaved>23</PercentageSaved><Availability>Usually ships in 1-2 business days</Availability><AvailabilityAttributes><AvailabilityType>now</AvailabilityType><MinimumHours>24</MinimumHours><MaximumHours>48</MaximumHours></AvailabilityAttributes><Quantity>1</Quantity><IsEligibleForSuperSaverShipping>0</IsEligibleForSuperSaverShipping><IsFulfilledByAmazon>0</IsFulfilledByAmazon></OfferListing></Offer><Offer><Merchant><MerchantId>A1C3QU77DDT2KW</MerchantId><Name>indoobestsellers</Name><GlancePage>http://www.amazon.com/gp/help/seller/home.html?seller=A1C3QU77DDT2KW</GlancePage><Location><CountryCode>US</CountryCode><StateCode>NJ</StateCode></Location><AverageFeedbackRating>4.5</AverageFeedbackRating><TotalFeedback>17904</TotalFeedback></Merchant><OfferAttributes><Condition>New</Condition><SubCondition>new</SubCondition><ConditionNote>BRAND NEW</ConditionNote></OfferAttributes><OfferListing><OfferListingId>65zbBap7smqZWbfsClz20s2wtegp%2B19qxqE4i27wGGzJhBnPrH0EuqmbBPN2q6sKcWXZbjVbcKoT2xgc6raAZzNwvdDrTsYiDZjlcN7Dip3C4YMpdFI%2FrZqlL0ZARsYkIvPtwuFXcE0%3D</OfferListingId><ExchangeId>Y18M4393745M0158730</ExchangeId><Price><Amount>995</Amount><CurrencyCode>USD</CurrencyCode><FormattedPrice>$9.95</FormattedPrice></Price><AmountSaved><Amount>300</Amount><CurrencyCode>USD</CurrencyCode><FormattedPrice>$3.00</FormattedPrice></AmountSaved><PercentageSaved>23</PercentageSaved><Availability>Usually ships in 1-2 business days</Availability><AvailabilityAttributes><AvailabilityType>now</AvailabilityType><MinimumHours>24</MinimumHours><MaximumHours>48</MaximumHours></AvailabilityAttributes><Quantity>100</Quantity><IsEligibleForSuperSaverShipping>0</IsEligibleForSuperSaverShipping><IsFulfilledByAmazon>0</IsFulfilledByAmazon></OfferListing></Offer><Offer><Merchant><MerchantId>A279YKJYTUG4H8</MerchantId><Name>agf237</Name><GlancePage>http://www.amazon.com/gp/help/seller/home.html?seller=A279YKJYTUG4H8</GlancePage><Location><CountryCode>US</CountryCode><StateCode>NY</StateCode></Location><AverageFeedbackRating>5.0</AverageFeedbackRating><TotalFeedback>3</TotalFeedback></Merchant><OfferAttributes><Condition>New</Condition><SubCondition>new</SubCondition></OfferAttributes><OfferListing><OfferListingId>Pj4GryCL5MOxRkeip0laBjDpIhJ1LeTUsJiljqi8324hKDeRQXRFsmOGUq5m6%2Bhm4uSZbnYIA3bn79%2FAW%2FP0rFaYxiwbRoA2%2BTq%2F%2BpmSoJsoS0Tmmcn3uiyVhh8tw4zP0BVLFi5KnOEiQ9TTRMd%2FZQ%3D%3D</OfferListingId><ExchangeId>Y12M3872213M1653112</ExchangeId><Price><Amount>1000</Amount><CurrencyCode>USD</CurrencyCode><FormattedPrice>$10.00</FormattedPrice></Price><AmountSaved><Amount>295</Amount><CurrencyCode>USD</CurrencyCode><FormattedPrice>$2.95</FormattedPrice></AmountSaved><PercentageSaved>23</PercentageSaved><Availability>Usually ships in 1-2 business days</Availability><AvailabilityAttributes><AvailabilityType>now</AvailabilityType><MinimumHours>24</MinimumHours><MaximumHours>48</MaximumHours></AvailabilityAttributes><Quantity>1</Quantity><IsEligibleForSuperSaverShipping>0</IsEligibleForSuperSaverShipping><IsFulfilledByAmazon>0</IsFulfilledByAmazon></OfferListing></Offer><Offer><Merchant><MerchantId>A3TJVJMBQL014A</MerchantId><Name>the_book_depository_</Name><GlancePage>http://www.amazon.com/gp/help/seller/home.html?seller=A3TJVJMBQL014A</GlancePage><Location><CountryCode>US</CountryCode><StateCode>DE</StateCode></Location><AverageFeedbackRating>4.8</AverageFeedbackRating><TotalFeedback>110710</TotalFeedback></Merchant><OfferAttributes><Condition>New</Condition><SubCondition>new</SubCondition><ConditionNote>Brand New. Delivery is usually 5 - 8 working days from order, International is by Royal Mail Airmail</ConditionNote></OfferAttributes><OfferListing><OfferListingId>GoA2izZGag3ThyvwMmLDYtljlSBAha%2FmZLTtV6%2BpybfmoqU%2B7tkPlT1E%2FSRGBTQpLuGcicHmK0NsE9m0bfX5lX3iCU3%2FVFE6O0C6ljMrpOU44FRVKX1ACf2fAb46gx0NLGObhosoLD8%3D</OfferListingId><ExchangeId>Y19M5249701M6387360</ExchangeId><Price><Amount>1058</Amount><CurrencyCode>USD</CurrencyCode><FormattedPrice>$10.58</FormattedPrice></Price><AmountSaved><Amount>237</Amount><CurrencyCode>USD</CurrencyCode><FormattedPrice>$2.37</FormattedPrice></AmountSaved><PercentageSaved>18</PercentageSaved><Availability>Usually ships in 1-2 business days</Availability><AvailabilityAttributes><AvailabilityType>now</AvailabilityType><MinimumHours>24</MinimumHours><MaximumHours>48</MaximumHours></AvailabilityAttributes><Quantity>100</Quantity><IsEligibleForSuperSaverShipping>0</IsEligibleForSuperSaverShipping><IsFulfilledByAmazon>0</IsFulfilledByAmazon></OfferListing></Offer><Offer><Merchant><MerchantId>A2E9OWRCF7T08Y</MerchantId><Name>pbshopus</Name><GlancePage>http://www.amazon.com/gp/help/seller/home.html?seller=A2E9OWRCF7T08Y</GlancePage><Location><CountryCode>US</CountryCode><StateCode>NJ</StateCode></Location><AverageFeedbackRating>4.7</AverageFeedbackRating><TotalFeedback>24712</TotalFeedback></Merchant><OfferAttributes><Condition>New</Condition><SubCondition>new</SubCondition><ConditionNote>New American book. Shipped within the US in 4-7 days (expedited) or about 10-14 days (standard). Standard can occasionally be slower so we advise using expedited if quicker delivery is important!</ConditionNote></OfferAttributes><OfferListing><OfferListingId>WaLbtulTM4RZO53YxySZrT5sVALitN56oYgGVKXefoXcUoDsARcDZUm%2F5IzLNYvTpKLGm9GZTAuwLhMBpjFCdGhWTCkyTjHhg5XTB%2FaBSJpWzszCDqGw2OXV8qFr7VZ%2FsKKn9cNxtrgrae6gZxAx0Q%3D%3D</OfferListingId><ExchangeId>Y11M0767619M5527842</ExchangeId><Price><Amount>1078</Amount><CurrencyCode>USD</CurrencyCode><FormattedPrice>$10.78</FormattedPrice></Price><AmountSaved><Amount>217</Amount><CurrencyCode>USD</CurrencyCode><FormattedPrice>$2.17</FormattedPrice></AmountSaved><PercentageSaved>17</PercentageSaved><Availability>Usually ships in 1-2 business days</Availability><AvailabilityAttributes><AvailabilityType>now</AvailabilityType><MinimumHours>24</MinimumHours><MaximumHours>48</MaximumHours></AvailabilityAttributes><Quantity>375</Quantity><IsEligibleForSuperSaverShipping>0</IsEligibleForSuperSaverShipping><IsFulfilledByAmazon>0</IsFulfilledByAmazon></OfferListing></Offer><Offer><Merchant><MerchantId>AGLPMRINU0Q3T</MerchantId><Name>pbshop</Name><GlancePage>http://www.amazon.com/gp/help/seller/home.html?seller=AGLPMRINU0Q3T</GlancePage><Location><CountryCode>GB</CountryCode></Location><AverageFeedbackRating>4.7</AverageFeedbackRating><TotalFeedback>30372</TotalFeedback></Merchant><OfferAttributes><Condition>New</Condition><SubCondition>new</SubCondition><ConditionNote>Brand new book! Delivered direct from our US warehouse by Expedited (4-7 days) or Standard (usually 10-14 days but can be longer). Expedited shipping recommended for speedier delivery. Over 1 million satisfied customers</ConditionNote></OfferAttributes><OfferListing><OfferListingId>dlfwqEmQak1aplk%2Fv8PxqBz933KzDzzCg5mB%2BbOv%2F3GbEhUhxQXcbm5n45G8UHLvczt0rjWvruOrrAxS8eLGkibnaN5F9FQhDm95LnOxQ0jFT9QH1Ee07lS8FLdhEliOXUtsnuNNR48%3D</OfferListingId><ExchangeId>Y12M6601172M2891609</ExchangeId><Price><Amount>1078</Amount><CurrencyCode>USD</CurrencyCode><FormattedPrice>$10.78</FormattedPrice></Price><AmountSaved><Amount>217</Amount><CurrencyCode>USD</CurrencyCode><FormattedPrice>$2.17</FormattedPrice></AmountSaved><PercentageSaved>17</PercentageSaved><Availability>Usually ships in 1-2 business days</Availability><AvailabilityAttributes><AvailabilityType>now</AvailabilityType><MinimumHours>24</MinimumHours><MaximumHours>48</MaximumHours></AvailabilityAttributes><Quantity>387</Quantity><IsEligibleForSuperSaverShipping>0</IsEligibleForSuperSaverShipping><IsFulfilledByAmazon>0</IsFulfilledByAmazon></OfferListing></Offer><Offer><Merchant><MerchantId>ATVPDKIKX0DER</MerchantId><Name>Amazon.com</Name><GlancePage>http://www.amazon.com/gp/help/seller/home.html?seller=ATVPDKIKX0DER</GlancePage><AverageFeedbackRating>0.0</AverageFeedbackRating><TotalFeedback>0</TotalFeedback></Merchant><OfferAttributes><Condition>New</Condition><SubCondition>new</SubCondition></OfferAttributes><OfferListing><OfferListingId>kNrAcQQEe2WUPE6EOVLVJWkv%2Fy%2FVLYsFmgTQQg7U6QMdNkw7xVjJWL6ItjqQ2vdssH1vfJJWm8Y%2F%2Bjh9fvgB9tmZMrG%2FDeDE</OfferListingId><Price><Amount>1107</Amount><CurrencyCode>USD</CurrencyCode><FormattedPrice>$11.07</FormattedPrice></Price><AmountSaved><Amount>188</Amount><CurrencyCode>USD</CurrencyCode><FormattedPrice>$1.88</FormattedPrice></AmountSaved><PercentageSaved>15</PercentageSaved><Availability>Usually ships in 24 hours</Availability><AvailabilityAttributes><AvailabilityType>now</AvailabilityType><MinimumHours>0</MinimumHours><MaximumHours>0</MaximumHours></AvailabilityAttributes><Quantity>-1</Quantity><IsEligibleForSuperSaverShipping>1</IsEligibleForSuperSaverShipping><IsFulfilledByAmazon>1</IsFulfilledByAmazon></OfferListing></Offer><Offer><Merchant><MerchantId>A1JKVWH22E85VP</MerchantId><Name>supermoviedeals</Name><GlancePage>http://www.amazon.com/gp/help/seller/home.html?seller=A1JKVWH22E85VP</GlancePage><Location><CountryCode>US</CountryCode><StateCode>IN</StateCode></Location><AverageFeedbackRating>4.7</AverageFeedbackRating><TotalFeedback>14933</TotalFeedback></Merchant><OfferAttributes><Condition>New</Condition><SubCondition>new</SubCondition><ConditionNote>Brand New, Perfect Condition, Please allow 4-14 business days for delivery. 100% Money Back Guarantee, Over 1,000,000 customers served.</ConditionNote></OfferAttributes><OfferListing><OfferListingId>WIHDIQ05u9G54f2lW62KHBtB0aN3XvF9A2xvMWsEcrAZIe%2F4QntiCTtl9S7cBBDc1rblppPwuP4v6FleUVxTS6zbgiRICVkjsAdM120M74tCiLqlUFc3%2Fz6XbGQ9rLED0CBW%2BtcZ0Cw%3D</OfferListingId><ExchangeId>Y11M3876035M7649929</ExchangeId><Price><Amount>1132</Amount><CurrencyCode>USD</CurrencyCode><FormattedPrice>$11.32</FormattedPrice></Price><AmountSaved><Amount>163</Amount><CurrencyCode>USD</CurrencyCode><FormattedPrice>$1.63</FormattedPrice></AmountSaved><PercentageSaved>13</PercentageSaved><Availability>Usually ships in 1-2 business days</Availability><AvailabilityAttributes><AvailabilityType>now</AvailabilityType><MinimumHours>24</MinimumHours><MaximumHours>48</MaximumHours></AvailabilityAttributes><Quantity>999</Quantity><IsEligibleForSuperSaverShipping>0</IsEligibleForSuperSaverShipping><IsFulfilledByAmazon>0</IsFulfilledByAmazon></OfferListing></Offer><Offer><Merchant><MerchantId>AR913EZJR6MLO</MerchantId><Name>the_book_community</Name><GlancePage>http://www.amazon.com/gp/help/seller/home.html?seller=AR913EZJR6MLO</GlancePage><Location><CountryCode>US</CountryCode><StateCode>OR</StateCode></Location><AverageFeedbackRating>4.8</AverageFeedbackRating><TotalFeedback>7276</TotalFeedback></Merchant><OfferAttributes><Condition>New</Condition><SubCondition>new</SubCondition><ConditionNote>Customer oriented seller. Shipped promptly and packaged carefully. Delivery in 7-10 business days.</ConditionNote></OfferAttributes><OfferListing><OfferListingId>oJIBd0EkbC0nz7Z%2BuwsyUqKhBhZeFzI35JzNjse3N8amn3hzZucPWdgjyIIwlYMXgxWec0Sx4YD8AmwG9BzXf34jE%2B%2BShm6%2FXU%2FBFp0UkxhHtn%2Bed2haW0Z5nXocnUbvT0Qm6AjjL3DGYkhcEaKfvA%3D%3D</OfferListingId><ExchangeId>Y11M2147302M2441759</ExchangeId><Price><Amount>1135</Amount><CurrencyCode>USD</CurrencyCode><FormattedPrice>$11.35</FormattedPrice></Price><AmountSaved><Amount>160</Amount><CurrencyCode>USD</CurrencyCode><FormattedPrice>$1.60</FormattedPrice></AmountSaved><PercentageSaved>12</PercentageSaved><Availability>Usually ships in 1-2 business days</Availability><AvailabilityAttributes><AvailabilityType>now</AvailabilityType><MinimumHours>24</MinimumHours><MaximumHours>48</MaximumHours></AvailabilityAttributes><Quantity>11</Quantity><IsEligibleForSuperSaverShipping>0</IsEligibleForSuperSaverShipping><IsFulfilledByAmazon>0</IsFulfilledByAmazon></OfferListing></Offer><Offer><Merchant><MerchantId>A3F1HT7YHE7OXG</MerchantId><Name>strandbookstore</Name><GlancePage>http://www.amazon.com/gp/help/seller/home.html?seller=A3F1HT7YHE7OXG</GlancePage><Location><CountryCode>US</CountryCode><StateCode>NY</StateCode></Location><AverageFeedbackRating>4.9</AverageFeedbackRating><TotalFeedback>10673</TotalFeedback></Merchant><OfferAttributes><Condition>New</Condition><SubCondition>new</SubCondition><ConditionNote>Brand New. 100% money back guarantee. All books shipped from Strand Bookstore, New York City, USA.</ConditionNote></OfferAttributes><OfferListing><OfferListingId>xab1Q8CVxE3NL0rfxdpK4%2B2PAb06i7ybg4ZBuUX%2Bm6CTkgFub9G8gVN8mIud0tKaAqic4D3eScj3iOWaQxRF3E5Tb2mddjthaBkWwdDaiPi6u8HeedeyUIeRR7dsNeWkoSCz%2Bbb8tOA%3D</OfferListingId><ExchangeId>Y18M1698666M7736337</ExchangeId><Price><Amount>1165</Amount><CurrencyCode>USD</CurrencyCode><FormattedPrice>$11.65</FormattedPrice></Price><AmountSaved><Amount>130</Amount><CurrencyCode>USD</CurrencyCode><FormattedPrice>$1.30</FormattedPrice></AmountSaved><PercentageSaved>10</PercentageSaved><Availability>Usually ships in 1-2 business days</Availability><AvailabilityAttributes><AvailabilityType>now</AvailabilityType><MinimumHours>24</MinimumHours><MaximumHours>48</MaximumHours></AvailabilityAttributes><Quantity>1</Quantity><IsEligibleForSuperSaverShipping>0</IsEligibleForSuperSaverShipping><IsFulfilledByAmazon>0</IsFulfilledByAmazon></OfferListing></Offer></Offers></Item><Item><ASIN>0745646441</ASIN><OfferSummary><LowestNewPrice><Amount>971</Amount><CurrencyCode>USD</CurrencyCode><FormattedPrice>$9.71</FormattedPrice></LowestNewPrice><LowestUsedPrice><Amount>800</Amount><CurrencyCode>USD</CurrencyCode><FormattedPrice>$8.00</FormattedPrice></LowestUsedPrice><TotalNew>25</TotalNew><TotalUsed>7</TotalUsed><TotalCollectible>0</TotalCollectible><TotalRefurbished>0</TotalRefurbished></OfferSummary><Offers><TotalOffers>32</TotalOffers><TotalOfferPages>4</TotalOfferPages><Offer><Merchant><MerchantId>A2HR0IL3TC4CKL</MerchantId><Name>ginz1</Name><GlancePage>http://www.amazon.com/gp/help/seller/home.html?seller=A2HR0IL3TC4CKL</GlancePage><Location><CountryCode>US</CountryCode><StateCode>IL</StateCode></Location><AverageFeedbackRating>4.9</AverageFeedbackRating><TotalFeedback>24</TotalFeedback></Merchant><OfferAttributes><Condition>Used</Condition><SubCondition>mint</SubCondition><ConditionNote>never read, no wear, well-kept</ConditionNote></OfferAttributes><OfferListing><OfferListingId>FNH2rBXxsRztananGKTFTulxWPoUkSNwjxjilnsXxoyUJ935pFeAtX6QB5OzZ6ipa6UAS1hGtG71o22k2gkv1SlY3s9Z136tiQDnEykQ8Oy1HuTnsx1LS67pmsT7k3qin3IfwO5MJU0%3D</OfferListingId><ExchangeId>Y12M4095004M8673108</ExchangeId><Price><Amount>800</Amount><CurrencyCode>USD</CurrencyCode><FormattedPrice>$8.00</FormattedPrice></Price><AmountSaved><Amount>495</Amount><CurrencyCode>USD</CurrencyCode><FormattedPrice>$4.95</FormattedPrice></AmountSaved><PercentageSaved>38</PercentageSaved><Availability>Usually ships in 1-2 business days</Availability><AvailabilityAttributes><AvailabilityType>now</AvailabilityType><MinimumHours>24</MinimumHours><MaximumHours>48</MaximumHours></AvailabilityAttributes><Quantity>1</Quantity><IsEligibleForSuperSaverShipping>0</IsEligibleForSuperSaverShipping><IsFulfilledByAmazon>0</IsFulfilledByAmazon></OfferListing></Offer><Offer><Merchant><MerchantId>A1C3QU77DDT2KW</MerchantId><Name>indoobestsellers</Name><GlancePage>http://www.amazon.com/gp/help/seller/home.html?seller=A1C3QU77DDT2KW</GlancePage><Location><CountryCode>US</CountryCode><StateCode>NJ</StateCode></Location><AverageFeedbackRating>4.5</AverageFeedbackRating><TotalFeedback>17904</TotalFeedback></Merchant><OfferAttributes><Condition>Used</Condition><SubCondition>mint</SubCondition><ConditionNote>BRAND NEW</ConditionNote></OfferAttributes><OfferListing><OfferListingId>Ro0VlbMgXAw7uw%2FqKWjUqnbuAeJsQeYcRFPWt0rYo3pwaqPbb8vkmpWJoPMDtelwcGsoQV5So%2FerxXLgWg2rtEU8xeMOyyXAPWSO82CtvxWO2C6uFp1oG%2BupGoYbU0awG%2BTeCcFzFjc%3D</OfferListingId><ExchangeId>Y18M5588542M8286287</ExchangeId><Price><Amount>875</Amount><CurrencyCode>USD</CurrencyCode><FormattedPrice>$8.75</FormattedPrice></Price><AmountSaved><Amount>420</Amount><CurrencyCode>USD</CurrencyCode><FormattedPrice>$4.20</FormattedPrice></AmountSaved><PercentageSaved>32</PercentageSaved><Availability>Usually ships in 1-2 business days</Availability><AvailabilityAttributes><AvailabilityType>now</AvailabilityType><MinimumHours>24</MinimumHours><MaximumHours>48</MaximumHours></AvailabilityAttributes><Quantity>100</Quantity><IsEligibleForSuperSaverShipping>0</IsEligibleForSuperSaverShipping><IsFulfilledByAmazon>0</IsFulfilledByAmazon></OfferListing></Offer><Offer><Merchant><MerchantId>A1C3QU77DDT2KW</MerchantId><Name>indoobestsellers</Name><GlancePage>http://www.amazon.com/gp/help/seller/home.html?seller=A1C3QU77DDT2KW</GlancePage><Location><CountryCode>US</CountryCode><StateCode>NJ</StateCode></Location><AverageFeedbackRating>4.5</AverageFeedbackRating><TotalFeedback>17904</TotalFeedback></Merchant><OfferAttributes><Condition>New</Condition><SubCondition>new</SubCondition><ConditionNote>BRAND NEW</ConditionNote></OfferAttributes><OfferListing><OfferListingId>qs%2FQF63%2BkSFYZva448FAYPTXhY4qnDbbOuSanY0Yzj7rCSS7Fh729G1rcg0q1CymPl00HWjKmsJ0h6eYRp4ZtGIaHMTIx8%2FCsbGcko5jb9cEsZ8p4FBgWTNmXoOCA1JRRmlP2iPtRJc%3D</OfferListingId><ExchangeId>Y18M4375523M2180691</ExchangeId><Price><Amount>971</Amount><CurrencyCode>USD</CurrencyCode><FormattedPrice>$9.71</FormattedPrice></Price><AmountSaved><Amount>324</Amount><CurrencyCode>USD</CurrencyCode><FormattedPrice>$3.24</FormattedPrice></AmountSaved><PercentageSaved>25</PercentageSaved><Availability>Usually ships in 1-2 business days</Availability><AvailabilityAttributes><AvailabilityType>now</AvailabilityType><MinimumHours>24</MinimumHours><MaximumHours>48</MaximumHours></AvailabilityAttributes><Quantity>100</Quantity><IsEligibleForSuperSaverShipping>0</IsEligibleForSuperSaverShipping><IsFulfilledByAmazon>0</IsFulfilledByAmazon></OfferListing></Offer><Offer><Merchant><MerchantId>A3TJVJMBQL014A</MerchantId><Name>the_book_depository_</Name><GlancePage>http://www.amazon.com/gp/help/seller/home.html?seller=A3TJVJMBQL014A</GlancePage><Location><CountryCode>US</CountryCode><StateCode>DE</StateCode></Location><AverageFeedbackRating>4.8</AverageFeedbackRating><TotalFeedback>110710</TotalFeedback></Merchant><OfferAttributes><Condition>New</Condition><SubCondition>new</SubCondition><ConditionNote>Brand New. Delivery is usually 5 - 8 working days from order, International is by Royal Mail Airmail</ConditionNote></OfferAttributes><OfferListing><OfferListingId>rr9xjdYDnVzUU%2FyPagOrG7ULxH6MLey5sbj3EQ3YdndAyd8YP7yRY3hzY%2BeHUwCrsUnX6DefKXTC3r%2BfiI5yk40RlwG%2FLYtrCCKGs7tz2zkGhxx97y6B5t7AljT9Trl48p9EkkhJwkA%3D</OfferListingId><ExchangeId>Y19M0074268M1087243</ExchangeId><Price><Amount>976</Amount><CurrencyCode>USD</CurrencyCode><FormattedPrice>$9.76</FormattedPrice></Price><AmountSaved><Amount>319</Amount><CurrencyCode>USD</CurrencyCode><FormattedPrice>$3.19</FormattedPrice></AmountSaved><PercentageSaved>25</PercentageSaved><Availability>Usually ships in 1-2 business days</Availability><AvailabilityAttributes><AvailabilityType>now</AvailabilityType><MinimumHours>24</MinimumHours><MaximumHours>48</MaximumHours></AvailabilityAttributes><Quantity>3</Quantity><IsEligibleForSuperSaverShipping>0</IsEligibleForSuperSaverShipping><IsFulfilledByAmazon>0</IsFulfilledByAmazon></OfferListing></Offer><Offer><Merchant><MerchantId>A3TJVJMBQL014A</MerchantId><Name>the_book_depository_</Name><GlancePage>http://www.amazon.com/gp/help/seller/home.html?seller=A3TJVJMBQL014A</GlancePage><Location><CountryCode>US</CountryCode><StateCode>DE</StateCode></Location><AverageFeedbackRating>4.8</AverageFeedbackRating><TotalFeedback>110710</TotalFeedback></Merchant><OfferAttributes><Condition>New</Condition><SubCondition>new</SubCondition><ConditionNote>Brand New. Delivery is usually 5 - 8 working days from order, International is by Royal Mail Airmail</ConditionNote></OfferAttributes><OfferListing><OfferListingId>dkN%2B2wvuoe6SrlAKGtwD1oQqFoXW%2BSypnsYg3w%2BE8bBysgESkFYIYXwtQhJTwHNqRN5v7kbTqXl71dEiJAH%2FYjSnvt1aA0AQzAJt4CAUqOxb2HYiNP%2F4orupv5bw0eumqWiHvNgBlpg%3D</OfferListingId><ExchangeId>Y19M1731596M9494442</ExchangeId><Price><Amount>1041</Amount><CurrencyCode>USD</CurrencyCode><FormattedPrice>$10.41</FormattedPrice></Price><AmountSaved><Amount>254</Amount><CurrencyCode>USD</CurrencyCode><FormattedPrice>$2.54</FormattedPrice></AmountSaved><PercentageSaved>20</PercentageSaved><Availability>Usually ships in 1-2 business days</Availability><AvailabilityAttributes><AvailabilityType>now</AvailabilityType><MinimumHours>24</MinimumHours><MaximumHours>48</MaximumHours></AvailabilityAttributes><Quantity>100</Quantity><IsEligibleForSuperSaverShipping>0</IsEligibleForSuperSaverShipping><IsFulfilledByAmazon>0</IsFulfilledByAmazon></OfferListing></Offer><Offer><Merchant><MerchantId>A2E9OWRCF7T08Y</MerchantId><Name>pbshopus</Name><GlancePage>http://www.amazon.com/gp/help/seller/home.html?seller=A2E9OWRCF7T08Y</GlancePage><Location><CountryCode>US</CountryCode><StateCode>NJ</StateCode></Location><AverageFeedbackRating>4.7</AverageFeedbackRating><TotalFeedback>24712</TotalFeedback></Merchant><OfferAttributes><Condition>New</Condition><SubCondition>new</SubCondition><ConditionNote>New book. Shipped within the US in 10-14 days.</ConditionNote></OfferAttributes><OfferListing><OfferListingId>rp%2B%2Fa%2B0q%2FMJEyuYh21QfpemycZQ2xjdB2wGbGixbAbrLPbKqF9Lzxk5RBiYDaHzKn200FyyS7FQSz6%2FQlCjCG9RPiioezcOHr8H0kz2MU7e4zh2t%2FKwNdyx48wpWdGszkO8IAbTtwSo7JcjTZpkuWg%3D%3D</OfferListingId><ExchangeId>Y11M4270645M6508951</ExchangeId><Price><Amount>1063</Amount><CurrencyCode>USD</CurrencyCode><FormattedPrice>$10.63</FormattedPrice></Price><AmountSaved><Amount>232</Amount><CurrencyCode>USD</CurrencyCode><FormattedPrice>$2.32</FormattedPrice></AmountSaved><PercentageSaved>18</PercentageSaved><Availability>Usually ships in 1-2 business days</Availability><AvailabilityAttributes><AvailabilityType>now</AvailabilityType><MinimumHours>24</MinimumHours><MaximumHours>48</MaximumHours></AvailabilityAttributes><Quantity>7</Quantity><IsEligibleForSuperSaverShipping>0</IsEligibleForSuperSaverShipping><IsFulfilledByAmazon>0</IsFulfilledByAmazon></OfferListing></Offer><Offer><Merchant><MerchantId>AHNEEZ9CVAP3Q</MerchantId><Name>---superbookdeals</Name><GlancePage>http://www.amazon.com/gp/help/seller/home.html?seller=AHNEEZ9CVAP3Q</GlancePage><Location><CountryCode>US</CountryCode><StateCode>IN</StateCode></Location><AverageFeedbackRating>4.6</AverageFeedbackRating><TotalFeedback>47002</TotalFeedback></Merchant><OfferAttributes><Condition>New</Condition><SubCondition>new</SubCondition><ConditionNote>Brand New, Perfect Condition, Please allow 4-14 business days for delivery. 100% Money Back Guarantee, Over 1,000,000 customers served.</ConditionNote></OfferAttributes><OfferListing><OfferListingId>cfQBBjRW2WkpPSQSgVxPe3qHZ0EkVolEINICBQnhGqZvqceKaHMN1OSe8%2FEz7SC%2FtbmbzGiUNcfcd%2BzKl5sAiRn8%2BHxs60yWgLugFkoJYaB8yDqFTgjS2nS4XeTLYdD0fhrZ3euxgaLqxZANsYP1%2Bg%3D%3D</OfferListingId><ExchangeId>Y11M6780203M6288386</ExchangeId><Price><Amount>1098</Amount><CurrencyCode>USD</CurrencyCode><FormattedPrice>$10.98</FormattedPrice></Price><AmountSaved><Amount>197</Amount><CurrencyCode>USD</CurrencyCode><FormattedPrice>$1.97</FormattedPrice></AmountSaved><PercentageSaved>15</PercentageSaved><Availability>Usually ships in 1-2 business days</Availability><AvailabilityAttributes><AvailabilityType>now</AvailabilityType><MinimumHours>24</MinimumHours><MaximumHours>48</MaximumHours></AvailabilityAttributes><Quantity>999</Quantity><IsEligibleForSuperSaverShipping>0</IsEligibleForSuperSaverShipping><IsFulfilledByAmazon>0</IsFulfilledByAmazon></OfferListing></Offer><Offer><Merchant><MerchantId>AGLPMRINU0Q3T</MerchantId><Name>pbshop</Name><GlancePage>http://www.amazon.com/gp/help/seller/home.html?seller=AGLPMRINU0Q3T</GlancePage><Location><CountryCode>GB</CountryCode></Location><AverageFeedbackRating>4.7</AverageFeedbackRating><TotalFeedback>30372</TotalFeedback></Merchant><OfferAttributes><Condition>New</Condition><SubCondition>new</SubCondition><ConditionNote>Brand new book! Delivered direct from our US warehouse by Expedited (4-7 days) or Standard (usually 10-14 days but can be longer). Expedited shipping recommended for speedier delivery. Over 1 million satisfied customers</ConditionNote></OfferAttributes><OfferListing><OfferListingId>CeCjjjhqxGAFwp4cwBcdan4Dk48yI8PuzGygsv%2BlF8ziHqDDHBoyOvOPK1Vua7ekyXBxPZUVjrt%2BjzSKUt2W8MQMABF%2FrysgbS29x9sxnfWO6pDFHhbxuiM1BS2EVazhy2CJp4bn4eY%3D</OfferListingId><ExchangeId>Y12M6472395M6959810</ExchangeId><Price><Amount>1099</Amount><CurrencyCode>USD</CurrencyCode><FormattedPrice>$10.99</FormattedPrice></Price><AmountSaved><Amount>196</Amount><CurrencyCode>USD</CurrencyCode><FormattedPrice>$1.96</FormattedPrice></AmountSaved><PercentageSaved>15</PercentageSaved><Availability>Usually ships in 1-2 business days</Availability><AvailabilityAttributes><AvailabilityType>now</AvailabilityType><MinimumHours>24</MinimumHours><MaximumHours>48</MaximumHours></AvailabilityAttributes><Quantity>156</Quantity><IsEligibleForSuperSaverShipping>0</IsEligibleForSuperSaverShipping><IsFulfilledByAmazon>0</IsFulfilledByAmazon></OfferListing></Offer><Offer><Merchant><MerchantId>ATVPDKIKX0DER</MerchantId><Name>Amazon.com</Name><GlancePage>http://www.amazon.com/gp/help/seller/home.html?seller=ATVPDKIKX0DER</GlancePage><AverageFeedbackRating>0.0</AverageFeedbackRating><TotalFeedback>0</TotalFeedback></Merchant><OfferAttributes><Condition>New</Condition><SubCondition>new</SubCondition></OfferAttributes><OfferListing><OfferListingId>2NlXFQh%2BHquSbGEu2%2BmfWgttvkM30wjTFTCTc%2FkJGL0Qojc5hQj4qn8T8sNNzmABM3YhAP74fXezbBuVWrz6s1gwx5ovU0LJ</OfferListingId><Price><Amount>1107</Amount><CurrencyCode>USD</CurrencyCode><FormattedPrice>$11.07</FormattedPrice></Price><AmountSaved><Amount>188</Amount><CurrencyCode>USD</CurrencyCode><FormattedPrice>$1.88</FormattedPrice></AmountSaved><PercentageSaved>15</PercentageSaved><Availability>Usually ships in 24 hours</Availability><AvailabilityAttributes><AvailabilityType>now</AvailabilityType><MinimumHours>0</MinimumHours><MaximumHours>0</MaximumHours></AvailabilityAttributes><Quantity>-1</Quantity><IsEligibleForSuperSaverShipping>1</IsEligibleForSuperSaverShipping><IsFulfilledByAmazon>1</IsFulfilledByAmazon></OfferListing></Offer><Offer><Merchant><MerchantId>AR913EZJR6MLO</MerchantId><Name>the_book_community</Name><GlancePage>http://www.amazon.com/gp/help/seller/home.html?seller=AR913EZJR6MLO</GlancePage><Location><CountryCode>US</CountryCode><StateCode>OR</StateCode></Location><AverageFeedbackRating>4.8</AverageFeedbackRating><TotalFeedback>7276</TotalFeedback></Merchant><OfferAttributes><Condition>New</Condition><SubCondition>new</SubCondition><ConditionNote>Customer oriented seller. Shipped promptly and packaged carefully. Delivery in 7-10 business days.</ConditionNote></OfferAttributes><OfferListing><OfferListingId>jrNiLiIJEsk11SjdgRaGxNkYfYKOAYDQxPQU4%2FKTidPuUjyVQCMlqlG%2F%2FV2OR8VE%2FO%2FgOln287bU5z2T7eCa3A%2F6COXA4obPYCeLu2%2BYvEg95vIzy7N19bRJnHk4U5w5%2F57tJOYqz1kj3WcoDqVokA%3D%3D</OfferListingId><ExchangeId>Y11M2150396M7711587</ExchangeId><Price><Amount>1135</Amount><CurrencyCode>USD</CurrencyCode><FormattedPrice>$11.35</FormattedPrice></Price><AmountSaved><Amount>160</Amount><CurrencyCode>USD</CurrencyCode><FormattedPrice>$1.60</FormattedPrice></AmountSaved><PercentageSaved>12</PercentageSaved><Availability>Usually ships in 1-2 business days</Availability><AvailabilityAttributes><AvailabilityType>now</AvailabilityType><MinimumHours>24</MinimumHours><MaximumHours>48</MaximumHours></AvailabilityAttributes><Quantity>5</Quantity><IsEligibleForSuperSaverShipping>0</IsEligibleForSuperSaverShipping><IsFulfilledByAmazon>0</IsFulfilledByAmazon></OfferListing></Offer></Offers></Item><Item><ASIN>0826489540</ASIN><OfferSummary><LowestNewPrice><Amount>1103</Amount><CurrencyCode>USD</CurrencyCode><FormattedPrice>$11.03</FormattedPrice></LowestNewPrice><LowestUsedPrice><Amount>875</Amount><CurrencyCode>USD</CurrencyCode><FormattedPrice>$8.75</FormattedPrice></LowestUsedPrice><TotalNew>25</TotalNew><TotalUsed>17</TotalUsed><TotalCollectible>0</TotalCollectible><TotalRefurbished>0</TotalRefurbished></OfferSummary><Offers><TotalOffers>42</TotalOffers><TotalOfferPages>5</TotalOfferPages><Offer><Merchant><MerchantId>AMBW4EMRQN78</MerchantId><Name>book_emporium</Name><GlancePage>http://www.amazon.com/gp/help/seller/home.html?seller=AMBW4EMRQN78</GlancePage><Location><CountryCode>US</CountryCode><StateCode>IN</StateCode></Location><AverageFeedbackRating>4.8</AverageFeedbackRating><TotalFeedback>5695</TotalFeedback></Merchant><OfferAttributes><Condition>Used</Condition><SubCondition>good</SubCondition><ConditionNote>We select best available book. Used items may have varying degrees of wear, highlighting, etc. May or may not include supplements such as infotrac or other web access codes. Fast &amp; reliable delivery. Exceptional customer service. Standard shipping is USPS Standard Mail. Expedited orders for this book will be shipped vis USPS Priority Mail.</ConditionNote></OfferAttributes><OfferListing><OfferListingId>F6FXQwOlXpXve5GrFfHxaHdIquQoQZ1ior%2FI74uoAIZdgGq206rL29pZ2y1ACPWk4SKfGOefcKn9xbjBS%2BSOfC6%2FkGLHRmaXwlwWChn8QoxIYzSaEaqw99jxwC%2BSfrDRzNp5aVVRfeY%3D</OfferListingId><ExchangeId>Y11M0123064M0954526</ExchangeId><Price><Amount>875</Amount><CurrencyCode>USD</CurrencyCode><FormattedPrice>$8.75</FormattedPrice></Price><AmountSaved><Amount>920</Amount><CurrencyCode>USD</CurrencyCode><FormattedPrice>$9.20</FormattedPrice></AmountSaved><PercentageSaved>51</PercentageSaved><Availability>Usually ships in 1-2 business days</Availability><AvailabilityAttributes><AvailabilityType>now</AvailabilityType><MinimumHours>24</MinimumHours><MaximumHours>48</MaximumHours></AvailabilityAttributes><Quantity>2</Quantity><IsEligibleForSuperSaverShipping>0</IsEligibleForSuperSaverShipping><IsFulfilledByAmazon>0</IsFulfilledByAmazon></OfferListing></Offer><Offer><Merchant><MerchantId>A3ADN03F2ABAVW</MerchantId><Name>sbd-</Name><GlancePage>http://www.amazon.com/gp/help/seller/home.html?seller=A3ADN03F2ABAVW</GlancePage><Location><CountryCode>US</CountryCode><StateCode>IN</StateCode></Location><AverageFeedbackRating>4.6</AverageFeedbackRating><TotalFeedback>43275</TotalFeedback></Merchant><OfferAttributes><Condition>New</Condition><SubCondition>new</SubCondition><ConditionNote>Brand New, Perfect Condition, Please allow 4-14 business days for delivery. 100% Money Back Guarantee, Over 1,000,000 customers served.</ConditionNote></OfferAttributes><OfferListing><OfferListingId>y%2FuIHruZ%2FbltgU7VwXMiv0ucYwbgo4tLOZs2OJXcwEHhNPG8FXbQUpkgNQyjQDevEDeiNCeEuwkPAAWuo5S3wGo43vAwXnWlNuxoLiMcVG%2BSHr7NJahpRZiNnn6Qts4mkZU%2FDjiHxt0%3D</OfferListingId><ExchangeId>Y11M1328962M6188616</ExchangeId><Price><Amount>1103</Amount><CurrencyCode>USD</CurrencyCode><FormattedPrice>$11.03</FormattedPrice></Price><AmountSaved><Amount>692</Amount><CurrencyCode>USD</CurrencyCode><FormattedPrice>$6.92</FormattedPrice></AmountSaved><PercentageSaved>39</PercentageSaved><Availability>Usually ships in 1-2 business days</Availability><AvailabilityAttributes><AvailabilityType>now</AvailabilityType><MinimumHours>24</MinimumHours><MaximumHours>48</MaximumHours></AvailabilityAttributes><Quantity>999</Quantity><IsEligibleForSuperSaverShipping>0</IsEligibleForSuperSaverShipping><IsFulfilledByAmazon>0</IsFulfilledByAmazon></OfferListing></Offer><Offer><Merchant><MerchantId>A15AOQYSLLO2CF</MerchantId><Name>thermite-media</Name><GlancePage>http://www.amazon.com/gp/help/seller/home.html?seller=A15AOQYSLLO2CF</GlancePage><Location><CountryCode>US</CountryCode><StateCode>NC</StateCode></Location><AverageFeedbackRating>4.8</AverageFeedbackRating><TotalFeedback>55506</TotalFeedback></Merchant><OfferAttributes><Condition>New</Condition><SubCondition>new</SubCondition><ConditionNote>BRAND NEW. 30 Day Satisfaction Guarantee. Quick International Airmail!</ConditionNote></OfferAttributes><OfferListing><OfferListingId>21B%2B%2Brnfm%2BggjktY7nI9HnqU3HbKzBtNHoFkawyF%2BR1EyJiPNJ3arqS2G2EA%2FMg76zQ6b2ajg1X1%2Fhvkjwzy40XXtqHrBOtcLtCG7N9zvySn9R7XMJB6o4%2F54eG5%2BxLA3F3vcvk32bqxh4Hz9Zx%2FeQ%3D%3D</OfferListingId><ExchangeId>Y11M2465856M6647229</ExchangeId><Price><Amount>1104</Amount><CurrencyCode>USD</CurrencyCode><FormattedPrice>$11.04</FormattedPrice></Price><AmountSaved><Amount>691</Amount><CurrencyCode>USD</CurrencyCode><FormattedPrice>$6.91</FormattedPrice></AmountSaved><PercentageSaved>38</PercentageSaved><Availability>Usually ships in 1-2 business days</Availability><AvailabilityAttributes><AvailabilityType>now</AvailabilityType><MinimumHours>24</MinimumHours><MaximumHours>48</MaximumHours></AvailabilityAttributes><Quantity>1</Quantity><IsEligibleForSuperSaverShipping>0</IsEligibleForSuperSaverShipping><IsFulfilledByAmazon>0</IsFulfilledByAmazon></OfferListing></Offer><Offer><Merchant><MerchantId>A3TJVJMBQL014A</MerchantId><Name>the_book_depository_</Name><GlancePage>http://www.amazon.com/gp/help/seller/home.html?seller=A3TJVJMBQL014A</GlancePage><Location><CountryCode>US</CountryCode><StateCode>DE</StateCode></Location><AverageFeedbackRating>4.8</AverageFeedbackRating><TotalFeedback>110710</TotalFeedback></Merchant><OfferAttributes><Condition>New</Condition><SubCondition>new</SubCondition><ConditionNote>Brand New. Delivery is usually 5 - 8 working days from order, International is by Royal Mail Airmail</ConditionNote></OfferAttributes><OfferListing><OfferListingId>K19CEs3J0pN%2FDCmP1VXJ8al3EAxLZZ3TBCXeSD%2Btn8sNnpJ2ZXWGx0vCEZDc7ycS%2FZ5cuZZIItsRXeEsWr4JS%2BbI3sKzoJfMGsM5OM7wYYhoQeA9Kh1tMPpVfyyvIquTwfJC%2BnGmx88%3D</OfferListingId><ExchangeId>Y19M4298768M9193250</ExchangeId><Price><Amount>1105</Amount><CurrencyCode>USD</CurrencyCode><FormattedPrice>$11.05</FormattedPrice></Price><AmountSaved><Amount>690</Amount><CurrencyCode>USD</CurrencyCode><FormattedPrice>$6.90</FormattedPrice></AmountSaved><PercentageSaved>38</PercentageSaved><Availability>Usually ships in 1-2 business days</Availability><AvailabilityAttributes><AvailabilityType>now</AvailabilityType><MinimumHours>24</MinimumHours><MaximumHours>48</MaximumHours></AvailabilityAttributes><Quantity>2</Quantity><IsEligibleForSuperSaverShipping>0</IsEligibleForSuperSaverShipping><IsFulfilledByAmazon>0</IsFulfilledByAmazon></OfferListing></Offer><Offer><Merchant><MerchantId>A3TJVJMBQL014A</MerchantId><Name>the_book_depository_</Name><GlancePage>http://www.amazon.com/gp/help/seller/home.html?seller=A3TJVJMBQL014A</GlancePage><Location><CountryCode>US</CountryCode><StateCode>DE</StateCode></Location><AverageFeedbackRating>4.8</AverageFeedbackRating><TotalFeedback>110710</TotalFeedback></Merchant><OfferAttributes><Condition>New</Condition><SubCondition>new</SubCondition><ConditionNote>Brand New. Delivery is usually 5 - 8 working days from order, International is by Royal Mail Airmail</ConditionNote></OfferAttributes><OfferListing><OfferListingId>spmEvvKnTgQQv5sqEMs6e6f9Jt6UU55lJkFOudlwGdgt4a2hwrvf0DM2qg8VsgVBctQ%2BPrDl3eEgomf26gMeoTqtiZ%2FREbMODRbDW4Z1g7GztjrgbqFlWkxZoVJsExK77SD%2FLu4Ul9k%3D</OfferListingId><ExchangeId>Y19M4150201M9755004</ExchangeId><Price><Amount>1133</Amount><CurrencyCode>USD</CurrencyCode><FormattedPrice>$11.33</FormattedPrice></Price><AmountSaved><Amount>662</Amount><CurrencyCode>USD</CurrencyCode><FormattedPrice>$6.62</FormattedPrice></AmountSaved><PercentageSaved>37</PercentageSaved><Availability>Usually ships in 1-2 business days</Availability><AvailabilityAttributes><AvailabilityType>now</AvailabilityType><MinimumHours>24</MinimumHours><MaximumHours>48</MaximumHours></AvailabilityAttributes><Quantity>100</Quantity><IsEligibleForSuperSaverShipping>0</IsEligibleForSuperSaverShipping><IsFulfilledByAmazon>0</IsFulfilledByAmazon></OfferListing></Offer><Offer><Merchant><MerchantId>A2T89KHH6G5UD9</MerchantId><Name>TEXTBOOKFETCHER!</Name><GlancePage>http://www.amazon.com/gp/help/seller/home.html?seller=A2T89KHH6G5UD9</GlancePage><Location><CountryCode>US</CountryCode><StateCode>NY</StateCode></Location><AverageFeedbackRating>4.8</AverageFeedbackRating><TotalFeedback>2712</TotalFeedback></Merchant><OfferAttributes><Condition>New</Condition><SubCondition>new</SubCondition><ConditionNote>This is a new item.</ConditionNote></OfferAttributes><OfferListing><OfferListingId>WGmyhhGOlKOs7E5q3KvsR5J5rQ8Tbz3%2BlnHj5U0gLrCWYtkFCaY7WY0VG3utlwV%2Fw7epJ6mZlD6CZtp%2BxerpaKATI4KKLLeXz5t2NYRdBA5NAZopzstqCYb0rBPggC8dZl9hP7ayMRaLLqiAucqg%2Bg%3D%3D</OfferListingId><ExchangeId>Y14M6365064M7135133</ExchangeId><Price><Amount>1160</Amount><CurrencyCode>USD</CurrencyCode><FormattedPrice>$11.60</FormattedPrice></Price><AmountSaved><Amount>635</Amount><CurrencyCode>USD</CurrencyCode><FormattedPrice>$6.35</FormattedPrice></AmountSaved><PercentageSaved>35</PercentageSaved><Availability>Usually ships in 1-2 business days</Availability><AvailabilityAttributes><AvailabilityType>now</AvailabilityType><MinimumHours>24</MinimumHours><MaximumHours>48</MaximumHours></AvailabilityAttributes><Quantity>1</Quantity><IsEligibleForSuperSaverShipping>0</IsEligibleForSuperSaverShipping><IsFulfilledByAmazon>0</IsFulfilledByAmazon></OfferListing></Offer><Offer><Merchant><MerchantId>A15AOQYSLLO2CF</MerchantId><Name>thermite-media</Name><GlancePage>http://www.amazon.com/gp/help/seller/home.html?seller=A15AOQYSLLO2CF</GlancePage><Location><CountryCode>US</CountryCode><StateCode>NC</StateCode></Location><AverageFeedbackRating>4.8</AverageFeedbackRating><TotalFeedback>55506</TotalFeedback></Merchant><OfferAttributes><Condition>Used</Condition><SubCondition>mint</SubCondition><ConditionNote>Like NEW. 30 Day Satisfaction Guarantee. Quick International Airmail!</ConditionNote></OfferAttributes><OfferListing><OfferListingId>WFxr8VfVJZdvmcfqj%2BppZ90%2BW9VRk1vaUT%2Fdr5ry6Lm2Eaw8hVOTU7wm0QOX255Z%2FXNzIYEDlzilAnLTVO4SvOT9s%2BvKljEZLObuA9JI0g9HUxxQjYD%2BKS6t3Eqs1LR84jNeOl%2Fm81YN1ZVORXxsjw%3D%3D</OfferListingId><ExchangeId>Y11M2565881M2540478</ExchangeId><Price><Amount>1163</Amount><CurrencyCode>USD</CurrencyCode><FormattedPrice>$11.63</FormattedPrice></Price><AmountSaved><Amount>632</Amount><CurrencyCode>USD</CurrencyCode><FormattedPrice>$6.32</FormattedPrice></AmountSaved><PercentageSaved>35</PercentageSaved><Availability>Usually ships in 1-2 business days</Availability><AvailabilityAttributes><AvailabilityType>now</AvailabilityType><MinimumHours>24</MinimumHours><MaximumHours>48</MaximumHours></AvailabilityAttributes><Quantity>1</Quantity><IsEligibleForSuperSaverShipping>0</IsEligibleForSuperSaverShipping><IsFulfilledByAmazon>0</IsFulfilledByAmazon></OfferListing></Offer><Offer><Merchant><MerchantId>A3ADN03F2ABAVW</MerchantId><Name>sbd-</Name><GlancePage>http://www.amazon.com/gp/help/seller/home.html?seller=A3ADN03F2ABAVW</GlancePage><Location><CountryCode>US</CountryCode><StateCode>IN</StateCode></Location><AverageFeedbackRating>4.6</AverageFeedbackRating><TotalFeedback>43275</TotalFeedback></Merchant><OfferAttributes><Condition>Used</Condition><SubCondition>mint</SubCondition><ConditionNote>Brand New, Perfect Condition, Please allow 4-14 business days for delivery. 100% Money Back Guarantee, Over 1,000,000 customers served.</ConditionNote></OfferAttributes><OfferListing><OfferListingId>uxmkhWn5aI%2Fvm2RnxowfARVbBcu1EaO17Aemr2gAuqsVRzHrf4jy211XP%2FpdGahtTNnCW%2BuA3SCiA8Jf0GxYaalqkXkSdOgPmK8sZoLYzbtlUnFMzAtX%2F9p3Tx%2BFBjBqwDWFglN2q0w%3D</OfferListingId><ExchangeId>Y11M5880557M6278001</ExchangeId><Price><Amount>1164</Amount><CurrencyCode>USD</CurrencyCode><FormattedPrice>$11.64</FormattedPrice></Price><AmountSaved><Amount>631</Amount><CurrencyCode>USD</CurrencyCode><FormattedPrice>$6.31</FormattedPrice></AmountSaved><PercentageSaved>35</PercentageSaved><Availability>Usually ships in 1-2 business days</Availability><AvailabilityAttributes><AvailabilityType>now</AvailabilityType><MinimumHours>24</MinimumHours><MaximumHours>48</MaximumHours></AvailabilityAttributes><Quantity>999</Quantity><IsEligibleForSuperSaverShipping>0</IsEligibleForSuperSaverShipping><IsFulfilledByAmazon>0</IsFulfilledByAmazon></OfferListing></Offer><Offer><Merchant><MerchantId>A1FN97TIA51BN1</MerchantId><Name>textbooks_source</Name><GlancePage>http://www.amazon.com/gp/help/seller/home.html?seller=A1FN97TIA51BN1</GlancePage><Location><CountryCode>US</CountryCode><StateCode>MO</StateCode></Location><AverageFeedbackRating>4.8</AverageFeedbackRating><TotalFeedback>11011</TotalFeedback></Merchant><OfferAttributes><Condition>Used</Condition><SubCondition>good</SubCondition><ConditionNote>SHIPS FAST! via UPS(AK/HI Priority Mail) within 24 hours/ used sticker on back/some highlighting</ConditionNote></OfferAttributes><OfferListing><OfferListingId>SV%2BwC9mv14ZNsTNpuOLicS3Qs1zHl9YYh8%2B4a1xfp1Qyu%2BCC7%2BpBM5JiqpWgJ56VyapMRI2p2TEgInV7OYeCsppemhw1z8jNBurenn6xHZDwFfi7%2BRM8mPPQzO3qtn1jBpPUeZbzNp4%3D</OfferListingId><ExchangeId>Y16M1033150M0691054</ExchangeId><Price><Amount>1167</Amount><CurrencyCode>USD</CurrencyCode><FormattedPrice>$11.67</FormattedPrice></Price><AmountSaved><Amount>628</Amount><CurrencyCode>USD</CurrencyCode><FormattedPrice>$6.28</FormattedPrice></AmountSaved><PercentageSaved>35</PercentageSaved><Availability>Usually ships in 1-2 business days</Availability><AvailabilityAttributes><AvailabilityType>now</AvailabilityType><MinimumHours>24</MinimumHours><MaximumHours>48</MaximumHours></AvailabilityAttributes><Quantity>2</Quantity><IsEligibleForSuperSaverShipping>0</IsEligibleForSuperSaverShipping><IsFulfilledByAmazon>0</IsFulfilledByAmazon></OfferListing></Offer><Offer><Merchant><MerchantId>ATVPDKIKX0DER</MerchantId><Name>Amazon.com</Name><GlancePage>http://www.amazon.com/gp/help/seller/home.html?seller=ATVPDKIKX0DER</GlancePage><AverageFeedbackRating>0.0</AverageFeedbackRating><TotalFeedback>0</TotalFeedback></Merchant><OfferAttributes><Condition>New</Condition><SubCondition>new</SubCondition></OfferAttributes><OfferListing><OfferListingId>%2BXta3VDkq1uSCvh1oNbcojWB4D2Hu9Sh7lZbgRwZsv%2F2bJx%2Fox6UwHukAXh4jhsdSBr93sa6JoA%2FSg8zkYXHXRr%2F%2F4ZRBkTt</OfferListingId><Price><Amount>1221</Amount><CurrencyCode>USD</CurrencyCode><FormattedPrice>$12.21</FormattedPrice></Price><AmountSaved><Amount>574</Amount><CurrencyCode>USD</CurrencyCode><FormattedPrice>$5.74</FormattedPrice></AmountSaved><PercentageSaved>32</PercentageSaved><Availability>Usually ships in 24 hours</Availability><AvailabilityAttributes><AvailabilityType>now</AvailabilityType><MinimumHours>0</MinimumHours><MaximumHours>0</MaximumHours></AvailabilityAttributes><Quantity>-1</Quantity><IsEligibleForSuperSaverShipping>1</IsEligibleForSuperSaverShipping><IsFulfilledByAmazon>1</IsFulfilledByAmazon></OfferListing></Offer></Offers></Item><Item><ASIN>1844672972</ASIN><OfferSummary><LowestNewPrice><Amount>973</Amount><CurrencyCode>USD</CurrencyCode><FormattedPrice>$9.73</FormattedPrice></LowestNewPrice><LowestUsedPrice><Amount>980</Amount><CurrencyCode>USD</CurrencyCode><FormattedPrice>$9.80</FormattedPrice></LowestUsedPrice><TotalNew>34</TotalNew><TotalUsed>18</TotalUsed><TotalCollectible>0</TotalCollectible><TotalRefurbished>0</TotalRefurbished></OfferSummary><Offers><TotalOffers>52</TotalOffers><TotalOfferPages>6</TotalOfferPages><Offer><Merchant><MerchantId>A15AOQYSLLO2CF</MerchantId><Name>thermite-media</Name><GlancePage>http://www.amazon.com/gp/help/seller/home.html?seller=A15AOQYSLLO2CF</GlancePage><Location><CountryCode>US</CountryCode><StateCode>NC</StateCode></Location><AverageFeedbackRating>4.8</AverageFeedbackRating><TotalFeedback>55506</TotalFeedback></Merchant><OfferAttributes><Condition>New</Condition><SubCondition>new</SubCondition><ConditionNote>BRAND NEW. 30 Day Satisfaction Guarantee. Quick International Airmail!</ConditionNote></OfferAttributes><OfferListing><OfferListingId>2XxnWrQdwg6AQ%2BYH%2BQNeRmTrh2g9nPlg2jlNan3CAngOjWCbTRIJ9cMjtwB2A5JuDLTzK%2FkYE%2BdqqTwmeEV4j%2FfZqk2%2B18nwsR6QFn7aAVuWRVjjXxfLaVCeR5sMzCsb40orCc6u5cjbq9RrMaLuTw%3D%3D</OfferListingId><ExchangeId>Y11M2625438M9259050</ExchangeId><Price><Amount>973</Amount><CurrencyCode>USD</CurrencyCode><FormattedPrice>$9.73</FormattedPrice></Price><AmountSaved><Amount>722</Amount><CurrencyCode>USD</CurrencyCode><FormattedPrice>$7.22</FormattedPrice></AmountSaved><PercentageSaved>43</PercentageSaved><Availability>Usually ships in 1-2 business days</Availability><AvailabilityAttributes><AvailabilityType>now</AvailabilityType><MinimumHours>24</MinimumHours><MaximumHours>48</MaximumHours></AvailabilityAttributes><Quantity>4</Quantity><IsEligibleForSuperSaverShipping>0</IsEligibleForSuperSaverShipping><IsFulfilledByAmazon>0</IsFulfilledByAmazon></OfferListing></Offer><Offer><Merchant><MerchantId>AGLPMRINU0Q3T</MerchantId><Name>pbshop</Name><GlancePage>http://www.amazon.com/gp/help/seller/home.html?seller=AGLPMRINU0Q3T</GlancePage><Location><CountryCode>GB</CountryCode></Location><AverageFeedbackRating>4.7</AverageFeedbackRating><TotalFeedback>30372</TotalFeedback></Merchant><OfferAttributes><Condition>New</Condition><SubCondition>new</SubCondition><ConditionNote>Brand new book delivered from the UK in 10-14 days.</ConditionNote></OfferAttributes><OfferListing><OfferListingId>Mg1azRszISz0qqxi%2FVYvPG%2BOJTD3EjWcd3CELy%2BKyd9VMnzgMxNR%2FWmXErGCZkYNFDjWIxmOTh03hx4bp%2Frm8qNT6ImFotwLWqWU6IAZ4MV7YcCcNNVhshd5qLbYbr5Jcvtsdnsyn%2BM%3D</OfferListingId><ExchangeId>Y12M0066185M2024725</ExchangeId><Price><Amount>974</Amount><CurrencyCode>USD</CurrencyCode><FormattedPrice>$9.74</FormattedPrice></Price><AmountSaved><Amount>721</Amount><CurrencyCode>USD</CurrencyCode><FormattedPrice>$7.21</FormattedPrice></AmountSaved><PercentageSaved>43</PercentageSaved><Availability>Usually ships in 1-2 business days</Availability><AvailabilityAttributes><AvailabilityType>now</AvailabilityType><MinimumHours>24</MinimumHours><MaximumHours>48</MaximumHours></AvailabilityAttributes><Quantity>16</Quantity><IsEligibleForSuperSaverShipping>0</IsEligibleForSuperSaverShipping><IsFulfilledByAmazon>0</IsFulfilledByAmazon></OfferListing></Offer><Offer><Merchant><MerchantId>A15AOQYSLLO2CF</MerchantId><Name>thermite-media</Name><GlancePage>http://www.amazon.com/gp/help/seller/home.html?seller=A15AOQYSLLO2CF</GlancePage><Location><CountryCode>US</CountryCode><StateCode>NC</StateCode></Location><AverageFeedbackRating>4.8</AverageFeedbackRating><TotalFeedback>55506</TotalFeedback></Merchant><OfferAttributes><Condition>Used</Condition><SubCondition>mint</SubCondition><ConditionNote>Like NEW. 30 Day Satisfaction Guarantee. Quick International Airmail!</ConditionNote></OfferAttributes><OfferListing><OfferListingId>DEd5imLwfcYCj6I%2BDzVjxrjKQxuYts8pHiN2hUrixBGi0EBJ4lhqM88rE8WGNWt87RBkNaM9Ot2DBHxx92G5M3EJrnDFhwET0V%2FMTvLeNLr%2FPerFrQ4yG1e7wt9G2TsNLOChhGVFnLshClKYR0ITMQ%3D%3D</OfferListingId><ExchangeId>Y11M2632550M7308147</ExchangeId><Price><Amount>980</Amount><CurrencyCode>USD</CurrencyCode><FormattedPrice>$9.80</FormattedPrice></Price><AmountSaved><Amount>715</Amount><CurrencyCode>USD</CurrencyCode><FormattedPrice>$7.15</FormattedPrice></AmountSaved><PercentageSaved>42</PercentageSaved><Availability>Usually ships in 1-2 business days</Availability><AvailabilityAttributes><AvailabilityType>now</AvailabilityType><MinimumHours>24</MinimumHours><MaximumHours>48</MaximumHours></AvailabilityAttributes><Quantity>5</Quantity><IsEligibleForSuperSaverShipping>0</IsEligibleForSuperSaverShipping><IsFulfilledByAmazon>0</IsFulfilledByAmazon></OfferListing></Offer><Offer><Merchant><MerchantId>A1C3QU77DDT2KW</MerchantId><Name>indoobestsellers</Name><GlancePage>http://www.amazon.com/gp/help/seller/home.html?seller=A1C3QU77DDT2KW</GlancePage><Location><CountryCode>US</CountryCode><StateCode>NJ</StateCode></Location><AverageFeedbackRating>4.5</AverageFeedbackRating><TotalFeedback>17904</TotalFeedback></Merchant><OfferAttributes><Condition>Used</Condition><SubCondition>mint</SubCondition><ConditionNote>BRAND NEW</ConditionNote></OfferAttributes><OfferListing><OfferListingId>KIXJ1wAIztokSlVYhiV4HeVuhJIRsuZYIPoKL66RW%2FsR6iYu6PKbpjTevDQd%2FFKxgX3syEWaPGAmfzTy5pNsFZY6UAC%2FCCTJKmXlxgNguczOkwXdHdM%2FuhPlY6XuXVOxphpYeAyXi0A%3D</OfferListingId><ExchangeId>Y18M6004066M1787332</ExchangeId><Price><Amount>981</Amount><CurrencyCode>USD</CurrencyCode><FormattedPrice>$9.81</FormattedPrice></Price><AmountSaved><Amount>714</Amount><CurrencyCode>USD</CurrencyCode><FormattedPrice>$7.14</FormattedPrice></AmountSaved><PercentageSaved>42</PercentageSaved><Availability>Usually ships in 1-2 business days</Availability><AvailabilityAttributes><AvailabilityType>now</AvailabilityType><MinimumHours>24</MinimumHours><MaximumHours>48</MaximumHours></AvailabilityAttributes><Quantity>99</Quantity><IsEligibleForSuperSaverShipping>0</IsEligibleForSuperSaverShipping><IsFulfilledByAmazon>0</IsFulfilledByAmazon></OfferListing></Offer><Offer><Merchant><MerchantId>A1C3QU77DDT2KW</MerchantId><Name>indoobestsellers</Name><GlancePage>http://www.amazon.com/gp/help/seller/home.html?seller=A1C3QU77DDT2KW</GlancePage><Location><CountryCode>US</CountryCode><StateCode>NJ</StateCode></Location><AverageFeedbackRating>4.5</AverageFeedbackRating><TotalFeedback>17904</TotalFeedback></Merchant><OfferAttributes><Condition>New</Condition><SubCondition>new</SubCondition><ConditionNote>BRAND NEW</ConditionNote></OfferAttributes><OfferListing><OfferListingId>5g%2BhpzSjPZi5GlfxW5P1nVNdHqH%2BaFl8yklvdmVFhnFAend%2BM4XMhg4PofVQu3F%2FDSmR%2Bf5fReZR1J5JgclDabOkMdK3rCdX2BhcsFmTegBhtt9mnZGhK9bUfRHy51Sq%2Fj4Mp0EyJtU%3D</OfferListingId><ExchangeId>Y18M5157090M5074825</ExchangeId><Price><Amount>988</Amount><CurrencyCode>USD</CurrencyCode><FormattedPrice>$9.88</FormattedPrice></Price><AmountSaved><Amount>707</Amount><CurrencyCode>USD</CurrencyCode><FormattedPrice>$7.07</FormattedPrice></AmountSaved><PercentageSaved>42</PercentageSaved><Availability>Usually ships in 1-2 business days</Availability><AvailabilityAttributes><AvailabilityType>now</AvailabilityType><MinimumHours>24</MinimumHours><MaximumHours>48</MaximumHours></AvailabilityAttributes><Quantity>100</Quantity><IsEligibleForSuperSaverShipping>0</IsEligibleForSuperSaverShipping><IsFulfilledByAmazon>0</IsFulfilledByAmazon></OfferListing></Offer><Offer><Merchant><MerchantId>AGLPMRINU0Q3T</MerchantId><Name>pbshop</Name><GlancePage>http://www.amazon.com/gp/help/seller/home.html?seller=AGLPMRINU0Q3T</GlancePage><Location><CountryCode>GB</CountryCode></Location><AverageFeedbackRating>4.7</AverageFeedbackRating><TotalFeedback>30372</TotalFeedback></Merchant><OfferAttributes><Condition>New</Condition><SubCondition>new</SubCondition><ConditionNote>Brand new book! Delivered direct from our US warehouse by Expedited (4-7 days) or Standard (usually 10-14 days but can be longer). Expedited shipping recommended for speedier delivery. Over 1 million satisfied customers</ConditionNote></OfferAttributes><OfferListing><OfferListingId>6JT318Imjna7i%2BV4DblmxqrBbAAbM7o8pIClNt0asz%2BfX%2F%2BZojgiace%2BHii7an8GbQ6VG%2FEg%2BoZVGHRZQX1OGGhYkgLSba97tblA2rETysU4W3o4qB%2F8vrKbl65PUl27WaPFu5oWhpg%3D</OfferListingId><ExchangeId>Y12M4558819M4014906</ExchangeId><Price><Amount>997</Amount><CurrencyCode>USD</CurrencyCode><FormattedPrice>$9.97</FormattedPrice></Price><AmountSaved><Amount>698</Amount><CurrencyCode>USD</CurrencyCode><FormattedPrice>$6.98</FormattedPrice></AmountSaved><PercentageSaved>41</PercentageSaved><Availability>Usually ships in 1-2 business days</Availability><AvailabilityAttributes><AvailabilityType>now</AvailabilityType><MinimumHours>24</MinimumHours><MaximumHours>48</MaximumHours></AvailabilityAttributes><Quantity>6</Quantity><IsEligibleForSuperSaverShipping>0</IsEligibleForSuperSaverShipping><IsFulfilledByAmazon>0</IsFulfilledByAmazon></OfferListing></Offer><Offer><Merchant><MerchantId>A2E9OWRCF7T08Y</MerchantId><Name>pbshopus</Name><GlancePage>http://www.amazon.com/gp/help/seller/home.html?seller=A2E9OWRCF7T08Y</GlancePage><Location><CountryCode>US</CountryCode><StateCode>NJ</StateCode></Location><AverageFeedbackRating>4.7</AverageFeedbackRating><TotalFeedback>24712</TotalFeedback></Merchant><OfferAttributes><Condition>New</Condition><SubCondition>new</SubCondition><ConditionNote>New American book. Shipped within the US in 4-7 days (expedited) or about 10-14 days (standard). Standard can occasionally be slower so we advise using expedited if quicker delivery is important!</ConditionNote></OfferAttributes><OfferListing><OfferListingId>sei8uljg%2F5o24JV8y6uiMDjlvK%2BFLnvBUj4U03NsZlDmXDWf25XJvMHPbt2uz%2FxizOE2PA6TpaDfWcgNojDNfzw8oLt%2FORbc9lRbXGEdoKxLIZjJYESZU3khIblXBqgpHGSP63CdC2AOhHJuwvwZsQ%3D%3D</OfferListingId><ExchangeId>Y11M6401986M6190414</ExchangeId><Price><Amount>997</Amount><CurrencyCode>USD</CurrencyCode><FormattedPrice>$9.97</FormattedPrice></Price><AmountSaved><Amount>698</Amount><CurrencyCode>USD</CurrencyCode><FormattedPrice>$6.98</FormattedPrice></AmountSaved><PercentageSaved>41</PercentageSaved><Availability>Usually ships in 1-2 business days</Availability><AvailabilityAttributes><AvailabilityType>now</AvailabilityType><MinimumHours>24</MinimumHours><MaximumHours>48</MaximumHours></AvailabilityAttributes><Quantity>6</Quantity><IsEligibleForSuperSaverShipping>0</IsEligibleForSuperSaverShipping><IsFulfilledByAmazon>0</IsFulfilledByAmazon></OfferListing></Offer><Offer><Merchant><MerchantId>A1X8TJ71LHXNVM</MerchantId><Name>lisa327</Name><GlancePage>http://www.amazon.com/gp/help/seller/home.html?seller=A1X8TJ71LHXNVM</GlancePage><Location><CountryCode>US</CountryCode><StateCode>IA</StateCode></Location><AverageFeedbackRating>4.9</AverageFeedbackRating><TotalFeedback>125</TotalFeedback></Merchant><OfferAttributes><Condition>Used</Condition><SubCondition>verygood</SubCondition><ConditionNote>Underlining in pencil on a couple of pages; light edge/cover wear from shelf</ConditionNote></OfferAttributes><OfferListing><OfferListingId>u0YNP5GB5LYmJHDbjKcZ%2BAooCpyUYoDTkT3t5Rps8Z6WJ6i%2FpQQMHB0%2BLfma9AEHqVUOn4EiEFhThcHDbqjXjn%2B6nctsSogsqHH333d4Oi2k3nMdMSksFGa9poZVfnmHImYO7QPwAKE%3D</OfferListingId><ExchangeId>Y13M1045844M1801658</ExchangeId><Price><Amount>1000</Amount><CurrencyCode>USD</CurrencyCode><FormattedPrice>$10.00</FormattedPrice></Price><AmountSaved><Amount>695</Amount><CurrencyCode>USD</CurrencyCode><FormattedPrice>$6.95</FormattedPrice></AmountSaved><PercentageSaved>41</PercentageSaved><Availability>Usually ships in 1-2 business days</Availability><AvailabilityAttributes><AvailabilityType>now</AvailabilityType><MinimumHours>24</MinimumHours><MaximumHours>48</MaximumHours></AvailabilityAttributes><Quantity>1</Quantity><IsEligibleForSuperSaverShipping>0</IsEligibleForSuperSaverShipping><IsFulfilledByAmazon>0</IsFulfilledByAmazon></OfferListing></Offer><Offer><Merchant><MerchantId>A34GBZHLAMDW0D</MerchantId><Name>MMwash</Name><GlancePage>http://www.amazon.com/gp/help/seller/home.html?seller=A34GBZHLAMDW0D</GlancePage><AverageFeedbackRating>4.7</AverageFeedbackRating><TotalFeedback>26</TotalFeedback></Merchant><OfferAttributes><Condition>New</Condition><SubCondition>new</SubCondition><ConditionNote>NEW, prompt shipment</ConditionNote></OfferAttributes><OfferListing><OfferListingId>FBo%2FLHndKN%2BUTURHbbRsH6q91WlyZ7CQuP6KA67HaBzsuOBHJl2m4SBdYo4FtS5R6B5hCylpIV1LDQKYD9fM5DX4ecmYsjgX5cFbJmIVWI3e8GZvErLeuz7K%2Fn%2F%2BgkH%2FCo%2F1fvVBsW1aV%2FDh6klR3w%3D%3D</OfferListingId><ExchangeId>Y12M5573190M9921547</ExchangeId><Price><Amount>1000</Amount><CurrencyCode>USD</CurrencyCode><FormattedPrice>$10.00</FormattedPrice></Price><AmountSaved><Amount>695</Amount><CurrencyCode>USD</CurrencyCode><FormattedPrice>$6.95</FormattedPrice></AmountSaved><PercentageSaved>41</PercentageSaved><Availability>Usually ships in 1-2 business days</Availability><AvailabilityAttributes><AvailabilityType>now</AvailabilityType><MinimumHours>24</MinimumHours><MaximumHours>48</MaximumHours></AvailabilityAttributes><Quantity>1</Quantity><IsEligibleForSuperSaverShipping>0</IsEligibleForSuperSaverShipping><IsFulfilledByAmazon>0</IsFulfilledByAmazon></OfferListing></Offer><Offer><Merchant><MerchantId>A3LVSQM04S5WC1</MerchantId><Name>aphrohead_books_uk</Name><GlancePage>http://www.amazon.com/gp/help/seller/home.html?seller=A3LVSQM04S5WC1</GlancePage><Location><CountryCode>GB</CountryCode></Location><AverageFeedbackRating>4.8</AverageFeedbackRating><TotalFeedback>4491</TotalFeedback></Merchant><OfferAttributes><Condition>New</Condition><SubCondition>new</SubCondition><ConditionNote>Brand New. Delivery is usually 5 - 8 working days from order, International delivery is by Royal Mail Airmail</ConditionNote></OfferAttributes><OfferListing><OfferListingId>gu3%2BdrsY8XKp2%2FQgywfAbDnxD8TAqFBCVmCVxNnMb%2BmNxWEoHkfqhTVxpB5WIYzwws%2FNsCRu46pRnrM3rczCSJvzp2BE9QWUY0a6B%2F4BX%2BC6tIYH8KSLFmflGW5Pc3tcGkduOegSSEmFiZAAygb1jA%3D%3D</OfferListingId><ExchangeId>Y11M3150505M6447029</ExchangeId><Price><Amount>1003</Amount><CurrencyCode>USD</CurrencyCode><FormattedPrice>$10.03</FormattedPrice></Price><AmountSaved><Amount>692</Amount><CurrencyCode>USD</CurrencyCode><FormattedPrice>$6.92</FormattedPrice></AmountSaved><PercentageSaved>41</PercentageSaved><Availability>Usually ships in 1-2 business days</Availability><AvailabilityAttributes><AvailabilityType>now</AvailabilityType><MinimumHours>24</MinimumHours><MaximumHours>48</MaximumHours></AvailabilityAttributes><Quantity>5</Quantity><IsEligibleForSuperSaverShipping>0</IsEligibleForSuperSaverShipping><IsFulfilledByAmazon>0</IsFulfilledByAmazon></OfferListing></Offer></Offers></Item></Items></ItemLookupResponse>"
27
- http_version: "1.1"
@@ -1,32 +0,0 @@
1
- ---
2
- - !ruby/struct:VCR::HTTPInteraction
3
- request: !ruby/struct:VCR::Request
4
- method: :get
5
- uri: http://ecs.amazonaws.com:80/onca/xml?AWSAccessKeyId=key&Service=AWSECommerceService&Signature=VsapxUuUI/FxSgttnb7jz3/B+gLjUFkZbBXCp+FC5xA=&Timestamp=2010-10-14T15:45:01Z&Version=2010-09-01
6
- body:
7
- headers: {}
8
-
9
- response: !ruby/struct:VCR::Response
10
- status: !ruby/struct:VCR::ResponseStatus
11
- code: 200
12
- message: OK
13
- headers:
14
- date:
15
- - Thu, 14 Oct 2010 15:45:01 GMT
16
- server:
17
- - Server
18
- x-amz-id-1:
19
- - 030W9VC78EDMZHG1R4ZG
20
- x-amz-id-2:
21
- - jMSdHZz+sSd7nv+0plj5FxB7OQIKPd/O0dlQfey+Jp0=
22
- nncoection:
23
- - close
24
- - close
25
- content-type:
26
- - text/html; charset=ISO-8859-1
27
- vary:
28
- - Accept-Encoding,User-Agent
29
- transfer-encoding:
30
- - chunked
31
- body: <?xml version="1.0" encoding="UTF-8"?><Errors xmlns="http://webservices.amazon.com/AWSECommerceService/2005-10-05"><Error><Code>AWS.InvalidOperationParameter</Code><Message>The Operation parameter is invalid. Please modify the Operation parameter and retry. Valid values for the Operation parameter include TagLookup, ListLookup, CartGet, SellerListingLookup, CustomerContentLookup, ItemLookup, SimilarityLookup, SellerLookup, ItemSearch, VehiclePartLookup, BrowseNodeLookup, CartModify, ListSearch, CartClear, VehiclePartSearch, CustomerContentSearch, CartCreate, TransactionLookup, VehicleSearch, SellerListingSearch, CartAdd, Help.</Message></Error></Errors>
32
- http_version: "1.1"