From 21f1f9f473950bb417272ec73699a3d51401b913 Mon Sep 17 00:00:00 2001 From: dewski Date: Wed, 18 Apr 2012 15:44:51 -0700 Subject: [PATCH 1/4] Rename ITunes module to Tunes --- README.md | 14 +++++++------- itunes.gemspec | 2 +- lib/itunes.rb | 20 ++++++++++---------- lib/itunes/client.rb | 4 ++-- lib/itunes/client/lookup.rb | 2 +- lib/itunes/client/search.rb | 2 +- lib/itunes/configuration.rb | 2 +- lib/itunes/request.rb | 2 +- lib/itunes/version.rb | 2 +- spec/itunes/client_spec.rb | 6 +++--- spec/itunes_spec.rb | 30 +++++++++++++++--------------- spec/spec_helper.rb | 4 ++-- 12 files changed, 45 insertions(+), 45 deletions(-) diff --git a/README.md b/README.md index 4261fab..d736cc9 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,4 @@ -iTunes [![Build Status](https://secure.travis-ci.org/dewski/itunes.png)](http://travis-ci.org/dewski/itunes) +Tunes [![Build Status](https://secure.travis-ci.org/dewski/itunes.png)](http://travis-ci.org/dewski/itunes) ====== A Ruby wrapper around the iTunes API that lets you search for any sort of data that is available on the iTunes store. @@ -54,13 +54,13 @@ Available Methods * software * all -Using the iTunes gem +Using the Tunes gem -------------------- - require 'itunes' + require 'tunes' - >> itunes = ITunes::Client.new - >> songs = itunes.music('green day she') + >> tunes = Tunes::Client.new + >> songs = tunes.music('green day she') => <#Hashie::Rash result_count=15 results=[...]> >> songs.results.each do |song| >> puts "#{song.track_name} - #{song.artist_name} (#{song.collection_name})" @@ -73,12 +73,12 @@ Using the iTunes gem Search directly from the class - >> iron_man = ITunes.movie('iron man 2') + >> iron_man = Tunes.movie('iron man 2') => <#Hashie::Rash result_count=1 results=[...]> Limit the results: - >> foo_fighters = ITunes.music('foo fighters everlong', :limit => 1) + >> foo_fighters = Tunes.music('foo fighters everlong', :limit => 1) => <#Hashie::Rash result_count=1 results=[<#Hashie::Rash ...>]> What is Hashie::Rash? diff --git a/itunes.gemspec b/itunes.gemspec index aca442f..017ebe6 100644 --- a/itunes.gemspec +++ b/itunes.gemspec @@ -4,7 +4,7 @@ require 'itunes/version' Gem::Specification.new do |s| s.name = 'itunes' - s.version = ITunes::VERSION + s.version = Tunes::VERSION s.platform = Gem::Platform::RUBY s.authors = ['Garrett Bjerkhoel', 'Steve Agalloco'] s.email = %q{me@garrettbjerkhoel.com} diff --git a/lib/itunes.rb b/lib/itunes.rb index 2f822d6..35ce363 100644 --- a/lib/itunes.rb +++ b/lib/itunes.rb @@ -1,25 +1,25 @@ require 'faraday_middleware' -require 'itunes/configuration' -require 'itunes/client' +require 'tunes/configuration' +require 'tunes/client' -module ITunes +module Tunes extend Configuration - # Alias for ITunes::Client.new + # Alias for Tunes::Client.new # - # @return [ITunes::Client] + # @return [Tunes::Client] def self.client(options={}) - ITunes::Client.new(options) + Client.new options end - # Alias for ITunes::Client.new + # Alias for Tunes::Client.new # - # @return [ITunes::Client] + # @return [Tunes::Client] def self.new(options={}) - ITunes::Client.new(options) + Client.new options end - # Delegate to ITunes::Client + # Delegate to Tunes::Client def self.method_missing(method, *args, &block) return super unless new.respond_to?(method) new.send(method, *args, &block) diff --git a/lib/itunes/client.rb b/lib/itunes/client.rb index 17860b5..7e7fad9 100644 --- a/lib/itunes/client.rb +++ b/lib/itunes/client.rb @@ -1,6 +1,6 @@ require File.expand_path('../request', __FILE__) -module ITunes +module Tunes class Client # @private @@ -8,7 +8,7 @@ class Client # Creates a new Client def initialize(options={}) - options = ITunes.options.merge(options) + options = Tunes.options.merge(options) Configuration::VALID_OPTIONS_KEYS.each do |key| send("#{key}=", options[key]) end diff --git a/lib/itunes/client/lookup.rb b/lib/itunes/client/lookup.rb index bceb5af..fae2968 100644 --- a/lib/itunes/client/lookup.rb +++ b/lib/itunes/client/lookup.rb @@ -1,4 +1,4 @@ -module ITunes +module Tunes module Lookup ID_TYPES = { :amg_artist => 'amgArtistId', :id => 'id', :amg_album => 'amgAlbumId', :upc => 'upc' } diff --git a/lib/itunes/client/search.rb b/lib/itunes/client/search.rb index 52b1f12..8aa8907 100644 --- a/lib/itunes/client/search.rb +++ b/lib/itunes/client/search.rb @@ -1,4 +1,4 @@ -module ITunes +module Tunes module Search # Performs a music search diff --git a/lib/itunes/configuration.rb b/lib/itunes/configuration.rb index b20d34e..3d64e1c 100644 --- a/lib/itunes/configuration.rb +++ b/lib/itunes/configuration.rb @@ -1,7 +1,7 @@ require 'faraday' require File.expand_path('../version', __FILE__) -module ITunes +module Tunes # Defines constants and methods related to configuration module Configuration diff --git a/lib/itunes/request.rb b/lib/itunes/request.rb index dd8b05b..3cdabf7 100644 --- a/lib/itunes/request.rb +++ b/lib/itunes/request.rb @@ -1,4 +1,4 @@ -module ITunes +module Tunes module Request REQUEST_OPTIONS = { :timeout => 5, diff --git a/lib/itunes/version.rb b/lib/itunes/version.rb index 7a9bf45..e115ed4 100644 --- a/lib/itunes/version.rb +++ b/lib/itunes/version.rb @@ -1,3 +1,3 @@ -module ITunes +module Tunes VERSION = '0.5.5' end diff --git a/spec/itunes/client_spec.rb b/spec/itunes/client_spec.rb index c74f87e..704bcac 100644 --- a/spec/itunes/client_spec.rb +++ b/spec/itunes/client_spec.rb @@ -1,8 +1,8 @@ require 'spec_helper' -describe ITunes::Client do - before(:each) do - @client = ITunes::Client.new +describe Tunes::Client do + before do + @client = Tunes::Client.new end use_vcr_cassette :record => :new_episodes, :match_requests_on => [:uri, :method] diff --git a/spec/itunes_spec.rb b/spec/itunes_spec.rb index d13b41d..4228739 100644 --- a/spec/itunes_spec.rb +++ b/spec/itunes_spec.rb @@ -1,68 +1,68 @@ require File.expand_path('../spec_helper', __FILE__) -describe ITunes do +describe Tunes do after do - ITunes.reset + Tunes.reset end use_vcr_cassette :record => :new_episodes, :match_requests_on => [:uri, :method] context "when delegating to a client" do it "should return the same results as a client" do - ITunes.music('Jose James').should == ITunes::Client.new.music('Jose James') + Tunes.music('Jose James').should == Tunes::Client.new.music('Jose James') end end describe '.client' do it 'should return and ITunes::Client' do - ITunes.client.should be_a ITunes::Client + Tunes.client.should be_a Tunes::Client end end describe '.respond_to?' do it "should take an optional argument" do - ITunes.respond_to?(:new, true).should be_true + Tunes.respond_to?(:new, true).should be_true end end describe ".new" do it "should return an ITunes::Client" do - ITunes.new.should be_a ITunes::Client + Tunes.new.should be_a ITunes::Client end end describe ".limit" do it 'should return the default limit' do - ITunes.limit.should == ITunes::Configuration::DEFAULT_LIMIT + Tunes.limit.should == ITunes::Configuration::DEFAULT_LIMIT end end describe ".limit=" do it "should set the limit" do - ITunes.limit = 5 - ITunes.limit.should == 5 + Tunes.limit = 5 + Tunes.limit.should == 5 end end describe ".adapter" do it "should instantiate with the default adapter" do - ITunes.adapter.should == Faraday.default_adapter + Tunes.adapter.should == Faraday.default_adapter end end describe ".adapter=" do it "should set the adapter" do - ITunes.adapter = :typhoeus - ITunes.adapter.should == :typhoeus + Tunes.adapter = :typhoeus + Tunes.adapter.should == :typhoeus end end describe ".configure" do - ITunes::Configuration::VALID_OPTIONS_KEYS.each do |key| + Tunes::Configuration::VALID_OPTIONS_KEYS.each do |key| it "should set the #{key}" do - ITunes.configure do |config| + Tunes.configure do |config| config.send("#{key}=", key) - ITunes.send(key).should == key + Tunes.send(key).should == key end end end diff --git a/spec/spec_helper.rb b/spec/spec_helper.rb index 6fc066b..e4ecc69 100644 --- a/spec/spec_helper.rb +++ b/spec/spec_helper.rb @@ -1,11 +1,11 @@ require 'simplecov' SimpleCov.start do - add_group 'ITunes', 'lib/itunes' + add_group 'Tunes', 'lib/tunes' add_group 'Faraday Middleware', 'lib/faraday' add_group 'Specs', 'spec' end -require File.expand_path('../../lib/itunes', __FILE__) +require File.expand_path('../../lib/tunes', __FILE__) require 'rspec' require 'vcr' From bc6895b0a4858f194cf1e4f76331b6be84b669b9 Mon Sep 17 00:00:00 2001 From: dewski Date: Wed, 18 Apr 2012 15:48:46 -0700 Subject: [PATCH 2/4] Renamed itunes folder to tunes --- lib/itunes.rb | 33 ++------------------------ lib/tunes.rb | 31 ++++++++++++++++++++++++ lib/{itunes => tunes}/client.rb | 0 lib/{itunes => tunes}/client/lookup.rb | 0 lib/{itunes => tunes}/client/search.rb | 0 lib/{itunes => tunes}/configuration.rb | 0 lib/{itunes => tunes}/request.rb | 0 lib/{itunes => tunes}/version.rb | 0 8 files changed, 33 insertions(+), 31 deletions(-) create mode 100644 lib/tunes.rb rename lib/{itunes => tunes}/client.rb (100%) rename lib/{itunes => tunes}/client/lookup.rb (100%) rename lib/{itunes => tunes}/client/search.rb (100%) rename lib/{itunes => tunes}/configuration.rb (100%) rename lib/{itunes => tunes}/request.rb (100%) rename lib/{itunes => tunes}/version.rb (100%) diff --git a/lib/itunes.rb b/lib/itunes.rb index 35ce363..2b2a921 100644 --- a/lib/itunes.rb +++ b/lib/itunes.rb @@ -1,31 +1,2 @@ -require 'faraday_middleware' -require 'tunes/configuration' -require 'tunes/client' - -module Tunes - extend Configuration - - # Alias for Tunes::Client.new - # - # @return [Tunes::Client] - def self.client(options={}) - Client.new options - end - - # Alias for Tunes::Client.new - # - # @return [Tunes::Client] - def self.new(options={}) - Client.new options - end - - # Delegate to Tunes::Client - def self.method_missing(method, *args, &block) - return super unless new.respond_to?(method) - new.send(method, *args, &block) - end - - def self.respond_to?(method, include_private = false) - new.respond_to?(method, include_private) || super(method, include_private) - end -end +require 'tunes' +ITunes = Tunes diff --git a/lib/tunes.rb b/lib/tunes.rb new file mode 100644 index 0000000..35ce363 --- /dev/null +++ b/lib/tunes.rb @@ -0,0 +1,31 @@ +require 'faraday_middleware' +require 'tunes/configuration' +require 'tunes/client' + +module Tunes + extend Configuration + + # Alias for Tunes::Client.new + # + # @return [Tunes::Client] + def self.client(options={}) + Client.new options + end + + # Alias for Tunes::Client.new + # + # @return [Tunes::Client] + def self.new(options={}) + Client.new options + end + + # Delegate to Tunes::Client + def self.method_missing(method, *args, &block) + return super unless new.respond_to?(method) + new.send(method, *args, &block) + end + + def self.respond_to?(method, include_private = false) + new.respond_to?(method, include_private) || super(method, include_private) + end +end diff --git a/lib/itunes/client.rb b/lib/tunes/client.rb similarity index 100% rename from lib/itunes/client.rb rename to lib/tunes/client.rb diff --git a/lib/itunes/client/lookup.rb b/lib/tunes/client/lookup.rb similarity index 100% rename from lib/itunes/client/lookup.rb rename to lib/tunes/client/lookup.rb diff --git a/lib/itunes/client/search.rb b/lib/tunes/client/search.rb similarity index 100% rename from lib/itunes/client/search.rb rename to lib/tunes/client/search.rb diff --git a/lib/itunes/configuration.rb b/lib/tunes/configuration.rb similarity index 100% rename from lib/itunes/configuration.rb rename to lib/tunes/configuration.rb diff --git a/lib/itunes/request.rb b/lib/tunes/request.rb similarity index 100% rename from lib/itunes/request.rb rename to lib/tunes/request.rb diff --git a/lib/itunes/version.rb b/lib/tunes/version.rb similarity index 100% rename from lib/itunes/version.rb rename to lib/tunes/version.rb From 0826640160417bf399bc664c6b869ff359f0a5cd Mon Sep 17 00:00:00 2001 From: dewski Date: Wed, 18 Apr 2012 15:52:51 -0700 Subject: [PATCH 3/4] Change itunes paths to tunes --- Gemfile | 2 +- itunes.gemspec | 6 +++--- lib/tunes/request.rb | 37 ++++++++++++++++++------------------- 3 files changed, 22 insertions(+), 23 deletions(-) diff --git a/Gemfile b/Gemfile index c80ee36..d65e2a6 100644 --- a/Gemfile +++ b/Gemfile @@ -1,3 +1,3 @@ -source "http://rubygems.org" +source 'http://rubygems.org' gemspec diff --git a/itunes.gemspec b/itunes.gemspec index 017ebe6..fcf4077 100644 --- a/itunes.gemspec +++ b/itunes.gemspec @@ -1,14 +1,14 @@ # -*- encoding: utf-8 -*- $:.push File.expand_path('../lib', __FILE__) -require 'itunes/version' +require 'tunes/version' Gem::Specification.new do |s| - s.name = 'itunes' + s.name = 'tunes' s.version = Tunes::VERSION s.platform = Gem::Platform::RUBY s.authors = ['Garrett Bjerkhoel', 'Steve Agalloco'] s.email = %q{me@garrettbjerkhoel.com} - s.homepage = %q{http://github.com/dewski/itunes} + s.homepage = %q{http://github.com/dewski/tunes} s.summary = %q{iTunes API} s.rubyforge_project = 'itunes' diff --git a/lib/tunes/request.rb b/lib/tunes/request.rb index 3cdabf7..754f8a9 100644 --- a/lib/tunes/request.rb +++ b/lib/tunes/request.rb @@ -8,29 +8,28 @@ module Request # @private private - # Perform an HTTP GET request - def request(request_type, params) - url = '/WebObjects/MZStoreServices.woa/wa/ws' + request_type + # Perform an HTTP GET request + def request(request_type, params) + url = '/WebObjects/MZStoreServices.woa/wa/ws' + request_type - response = connection.get do |req| - req.url url, params - req.options = REQUEST_OPTIONS - end - response.body + response = connection.get do |req| + req.url url, params + req.options = REQUEST_OPTIONS end + response.body + end - def connection - options = { - :headers => {'Accept' => 'application/json', 'User-Agent' => user_agent}, - :url => api_endpoint, - } + def connection + options = { + :headers => {'Accept' => 'application/json', 'User-Agent' => user_agent}, + :url => api_endpoint, + } - Faraday.new(options) do |builder| - builder.use Faraday::Response::Rashify - builder.use Faraday::Response::ParseJson - builder.adapter(adapter) - end + Faraday.new(options) do |builder| + builder.use Faraday::Response::Rashify + builder.use Faraday::Response::ParseJson + builder.adapter(adapter) end - + end end end From caeb938e237aef2ba85a0d5a8af8008136faec10 Mon Sep 17 00:00:00 2001 From: dewski Date: Wed, 18 Apr 2012 15:55:24 -0700 Subject: [PATCH 4/4] Finish the renaming process --- lib/tunes/configuration.rb | 2 +- spec/fixtures/ITunes.yml | 906 ---- spec/fixtures/ITunes_Client.yml | 1537 ------ spec/fixtures/Tunes.yml | 1527 ++++++ spec/fixtures/Tunes_Client.yml | 6893 ++++++++++++++++++++++++ spec/{itunes => tunes}/client_spec.rb | 0 spec/{itunes_spec.rb => tunes_spec.rb} | 8 +- 7 files changed, 8425 insertions(+), 2448 deletions(-) delete mode 100644 spec/fixtures/ITunes.yml delete mode 100644 spec/fixtures/ITunes_Client.yml create mode 100644 spec/fixtures/Tunes.yml create mode 100644 spec/fixtures/Tunes_Client.yml rename spec/{itunes => tunes}/client_spec.rb (100%) rename spec/{itunes_spec.rb => tunes_spec.rb} (87%) diff --git a/lib/tunes/configuration.rb b/lib/tunes/configuration.rb index 3d64e1c..424e42b 100644 --- a/lib/tunes/configuration.rb +++ b/lib/tunes/configuration.rb @@ -17,7 +17,7 @@ module Configuration DEFAULT_ENDPOINT = 'http://ax.itunes.apple.com'.freeze # The user agent that will be sent to the API endpoint if none is set - DEFAULT_USER_AGENT = "ITunes Ruby Gem #{ITunes::VERSION}".freeze + DEFAULT_USER_AGENT = "ITunes Ruby Gem #{Tunes::VERSION}".freeze # The default number of results to return from the API # diff --git a/spec/fixtures/ITunes.yml b/spec/fixtures/ITunes.yml deleted file mode 100644 index ceaa341..0000000 --- a/spec/fixtures/ITunes.yml +++ /dev/null @@ -1,906 +0,0 @@ ---- -- !ruby/struct:VCR::HTTPInteraction - request: !ruby/struct:VCR::Request - method: :get - uri: http://ax.itunes.apple.com:80/WebObjects/MZStoreServices.woa/wa/wsLookup?id=396405320 - body: - headers: - response: !ruby/struct:VCR::Response - status: !ruby/struct:VCR::ResponseStatus - code: 200 - message: OK - headers: - x-apple-orig-url-path: - - /WebObjects/MZStoreServices.woa/wa/wsLookup?id=396405320 - x-apple-application-site: - - CUP - x-apple-max-age: - - "3600" - x-apple-woa-inbound-url: - - /WebObjects/MZStoreServices.woa/wa/wsLookup?id=396405320 - content-type: - - text/javascript; charset=utf-8 - x-apple-application-instance: - - "367" - x-webobjects-loadaverage: - - "0" - x-ns-label: - - mzstoreservice-lb - expires: - - Mon, 31 Jan 2011 05:43:58 GMT - cache-control: - - max-age=0, no-cache - pragma: - - no-cache - date: - - Mon, 31 Jan 2011 05:43:58 GMT - content-length: - - "881" - vary: - - X-Apple-Store-Front - x-apple-partner: - - origin.0 - body: "\n\n\n\ - {\n \"resultCount\":1,\n \"results\": [\n\ - {\"wrapperType\":\"collection\", \"collectionType\":\"Album\", \"artistId\":79924040, \"collectionId\":396405320, \"amgArtistId\":null, \"amgVideoArtistId\":null, \"artistName\":\"Various Artists\", \"collectionName\":\"Hold it Down - Single\", \"collectionCensoredName\":\"Hold it Down - Single\", \"artistViewUrl\":null, \"collectionViewUrl\":\"http://itunes.apple.com/us/album/hold-it-down-single/id396405320?uo=4\", \"artworkUrl60\":\"http://a1.phobos.apple.com/us/r1000/023/Music/b2/fe/38/mzi.gtazuzmz.60x60-50.jpg\", \"artworkUrl100\":\"http://a1.phobos.apple.com/us/r1000/023/Music/b2/fe/38/mzi.gtazuzmz.100x100-75.jpg\", \"collectionPrice\":1.98, \"collectionExplicitness\":\"notExplicit\", \"contentAdvisoryRating\":null, \"trackCount\":2, \"copyright\":\"2010 Well Rounded Records\", \"country\":\"USA\", \"currency\":\"USD\", \"releaseDate\":\"2010-10-25T07:00:00Z\", \"primaryGenreName\":\"Dance\"}]\n\ - }\n\n\n" - http_version: "1.1" -- !ruby/struct:VCR::HTTPInteraction - request: !ruby/struct:VCR::Request - method: :get - uri: http://ax.itunes.apple.com:80/WebObjects/MZStoreServices.woa/wa/wsLookup?amgArtistId=468749 - body: - headers: - response: !ruby/struct:VCR::Response - status: !ruby/struct:VCR::ResponseStatus - code: 200 - message: OK - headers: - x-apple-orig-url-path: - - /WebObjects/MZStoreServices.woa/wa/wsLookup?amgArtistId=468749 - x-apple-application-site: - - CUP - x-apple-max-age: - - "3600" - x-apple-woa-inbound-url: - - /WebObjects/MZStoreServices.woa/wa/wsLookup?amgArtistId=468749 - content-type: - - text/javascript; charset=utf-8 - x-apple-application-instance: - - "465" - x-webobjects-loadaverage: - - "0" - x-ns-label: - - mzstoreservice-lb - expires: - - Mon, 31 Jan 2011 05:43:59 GMT - cache-control: - - max-age=0, no-cache - pragma: - - no-cache - date: - - Mon, 31 Jan 2011 05:43:59 GMT - content-length: - - "605" - vary: - - X-Apple-Store-Front - x-apple-partner: - - origin.0 - body: "\n\n\n\ - {\n \"resultCount\":2,\n \"results\": [\n\ - {\"wrapperType\":\"artist\", \"artistType\":\"Artist\", \"artistName\":\"Jack Johnson\", \"artistLinkUrl\":\"http://itunes.apple.com/us/artist/jack-johnson/id909253?uo=4\", \"artistId\":909253, \"amgArtistId\":468749, \"amgVideoArtistId\":null, \"primaryGenreName\":\"Rock\", \"primaryGenreId\":21}, \n\ - {\"wrapperType\":\"artist\", \"artistType\":\"Artist\", \"artistName\":\"Jack Johson\", \"artistLinkUrl\":\"http://itunes.apple.com/us/artist/jack-johson/id408472918?uo=4\", \"artistId\":408472918, \"amgArtistId\":468749, \"amgVideoArtistId\":null, \"primaryGenreName\":\"Adult Alternative\", \"primaryGenreId\":1144}]\n\ - }\n\n\n" - http_version: "1.1" -- !ruby/struct:VCR::HTTPInteraction - request: !ruby/struct:VCR::Request - method: :get - uri: http://ax.itunes.apple.com:80/WebObjects/MZStoreServices.woa/wa/wsLookup?amgArtistId=468749,5723 - body: - headers: - response: !ruby/struct:VCR::Response - status: !ruby/struct:VCR::ResponseStatus - code: 200 - message: OK - headers: - x-apple-orig-url-path: - - /WebObjects/MZStoreServices.woa/wa/wsLookup?amgArtistId=468749%2C5723 - x-apple-application-site: - - CUP - x-apple-max-age: - - "3600" - x-apple-woa-inbound-url: - - /WebObjects/MZStoreServices.woa/wa/wsLookup?amgArtistId=468749%2C5723 - content-type: - - text/javascript; charset=utf-8 - x-apple-application-instance: - - "148" - x-webobjects-loadaverage: - - "0" - x-ns-label: - - mzstoreservice-lb - expires: - - Mon, 31 Jan 2011 05:43:59 GMT - cache-control: - - max-age=0, no-cache - pragma: - - no-cache - date: - - Mon, 31 Jan 2011 05:43:59 GMT - content-length: - - "854" - vary: - - X-Apple-Store-Front - x-apple-partner: - - origin.0 - body: "\n\n\n\ - {\n \"resultCount\":3,\n \"results\": [\n\ - {\"wrapperType\":\"artist\", \"artistType\":\"Artist\", \"artistName\":\"Jack Johnson\", \"artistLinkUrl\":\"http://itunes.apple.com/us/artist/jack-johnson/id909253?uo=4\", \"artistId\":909253, \"amgArtistId\":468749, \"amgVideoArtistId\":null, \"primaryGenreName\":\"Rock\", \"primaryGenreId\":21}, \n\ - {\"wrapperType\":\"artist\", \"artistType\":\"Artist\", \"artistName\":\"Jack Johson\", \"artistLinkUrl\":\"http://itunes.apple.com/us/artist/jack-johson/id408472918?uo=4\", \"artistId\":408472918, \"amgArtistId\":468749, \"amgVideoArtistId\":null, \"primaryGenreName\":\"Adult Alternative\", \"primaryGenreId\":1144}, \n\ - {\"wrapperType\":\"artist\", \"artistType\":\"Artist\", \"artistName\":\"U2\", \"artistLinkUrl\":\"http://itunes.apple.com/us/artist/u2/id78500?uo=4\", \"artistId\":78500, \"amgArtistId\":5723, \"amgVideoArtistId\":null, \"primaryGenreName\":\"Rock\", \"primaryGenreId\":21}]\n\ - }\n\n\n" - http_version: "1.1" -- !ruby/struct:VCR::HTTPInteraction - request: !ruby/struct:VCR::Request - method: :get - uri: http://ax.itunes.apple.com:80/WebObjects/MZStoreServices.woa/wa/wsLookup?amgAlbumId=15197 - body: - headers: - response: !ruby/struct:VCR::Response - status: !ruby/struct:VCR::ResponseStatus - code: 200 - message: OK - headers: - x-apple-orig-url-path: - - /WebObjects/MZStoreServices.woa/wa/wsLookup?amgAlbumId=15197 - x-apple-application-site: - - CUP - x-apple-max-age: - - "3600" - x-apple-woa-inbound-url: - - /WebObjects/MZStoreServices.woa/wa/wsLookup?amgAlbumId=15197 - content-type: - - text/javascript; charset=utf-8 - x-apple-application-instance: - - "160" - x-webobjects-loadaverage: - - "0" - x-ns-label: - - mzstoreservice-lb - expires: - - Mon, 31 Jan 2011 05:43:59 GMT - cache-control: - - max-age=0, no-cache - pragma: - - no-cache - date: - - Mon, 31 Jan 2011 05:43:59 GMT - content-length: - - "913" - vary: - - X-Apple-Store-Front - x-apple-partner: - - origin.0 - body: "\n\n\n\ - {\n \"resultCount\":1,\n \"results\": [\n\ - {\"wrapperType\":\"collection\", \"collectionType\":\"Album\", \"artistId\":577675, \"collectionId\":265615609, \"amgArtistId\":5142, \"amgVideoArtistId\":null, \"artistName\":\"Wilson Pickett\", \"collectionName\":\"Hey Jude\", \"collectionCensoredName\":\"Hey Jude\", \"artistViewUrl\":\"http://itunes.apple.com/us/artist/wilson-pickett/id577675?uo=4\", \"collectionViewUrl\":\"http://itunes.apple.com/us/album/hey-jude/id265615609?uo=4\", \"artworkUrl60\":\"http://a1.phobos.apple.com/us/r1000/008/Music/79/b3/3f/mzi.asgqsmzl.60x60-50.jpg\", \"artworkUrl100\":\"http://a1.phobos.apple.com/us/r1000/008/Music/79/b3/3f/mzi.asgqsmzl.100x100-75.jpg\", \"collectionPrice\":7.99, \"collectionExplicitness\":\"notExplicit\", \"contentAdvisoryRating\":null, \"trackCount\":11, \"copyright\":\"1969 Atlantic Records Corporation\", \"country\":\"USA\", \"currency\":\"USD\", \"releaseDate\":\"2007-10-16T07:00:00Z\", \"primaryGenreName\":\"R&B/Soul\"}]\n\ - }\n\n\n" - http_version: "1.1" -- !ruby/struct:VCR::HTTPInteraction - request: !ruby/struct:VCR::Request - method: :get - uri: http://ax.itunes.apple.com:80/WebObjects/MZStoreServices.woa/wa/wsLookup?amgAlbumId=15197,15198 - body: - headers: - response: !ruby/struct:VCR::Response - status: !ruby/struct:VCR::ResponseStatus - code: 200 - message: OK - headers: - x-apple-orig-url-path: - - /WebObjects/MZStoreServices.woa/wa/wsLookup?amgAlbumId=15197%2C15198 - x-apple-application-site: - - CUP - x-apple-max-age: - - "3600" - x-apple-woa-inbound-url: - - /WebObjects/MZStoreServices.woa/wa/wsLookup?amgAlbumId=15197%2C15198 - content-type: - - text/javascript; charset=utf-8 - x-apple-application-instance: - - "258" - x-webobjects-loadaverage: - - "0" - x-ns-label: - - mzstoreservice-lb - expires: - - Mon, 31 Jan 2011 05:43:59 GMT - cache-control: - - max-age=0, no-cache - pragma: - - no-cache - date: - - Mon, 31 Jan 2011 05:43:59 GMT - content-length: - - "913" - vary: - - X-Apple-Store-Front - x-apple-partner: - - origin.0 - body: "\n\n\n\ - {\n \"resultCount\":1,\n \"results\": [\n\ - {\"wrapperType\":\"collection\", \"collectionType\":\"Album\", \"artistId\":577675, \"collectionId\":265615609, \"amgArtistId\":5142, \"amgVideoArtistId\":null, \"artistName\":\"Wilson Pickett\", \"collectionName\":\"Hey Jude\", \"collectionCensoredName\":\"Hey Jude\", \"artistViewUrl\":\"http://itunes.apple.com/us/artist/wilson-pickett/id577675?uo=4\", \"collectionViewUrl\":\"http://itunes.apple.com/us/album/hey-jude/id265615609?uo=4\", \"artworkUrl60\":\"http://a1.phobos.apple.com/us/r1000/008/Music/79/b3/3f/mzi.asgqsmzl.60x60-50.jpg\", \"artworkUrl100\":\"http://a1.phobos.apple.com/us/r1000/008/Music/79/b3/3f/mzi.asgqsmzl.100x100-75.jpg\", \"collectionPrice\":7.99, \"collectionExplicitness\":\"notExplicit\", \"contentAdvisoryRating\":null, \"trackCount\":11, \"copyright\":\"1969 Atlantic Records Corporation\", \"country\":\"USA\", \"currency\":\"USD\", \"releaseDate\":\"2007-10-16T07:00:00Z\", \"primaryGenreName\":\"R&B/Soul\"}]\n\ - }\n\n\n" - http_version: "1.1" -- !ruby/struct:VCR::HTTPInteraction - request: !ruby/struct:VCR::Request - method: :get - uri: http://ax.itunes.apple.com:80/WebObjects/MZStoreServices.woa/wa/wsLookup?upc=075678317729 - body: - headers: - response: !ruby/struct:VCR::Response - status: !ruby/struct:VCR::ResponseStatus - code: 200 - message: OK - headers: - x-apple-orig-url-path: - - /WebObjects/MZStoreServices.woa/wa/wsLookup?upc=075678317729 - x-apple-application-site: - - CUP - x-apple-max-age: - - "3600" - x-apple-woa-inbound-url: - - /WebObjects/MZStoreServices.woa/wa/wsLookup?upc=075678317729 - content-type: - - text/javascript; charset=utf-8 - x-apple-application-instance: - - "349" - x-webobjects-loadaverage: - - "0" - x-ns-label: - - mzstoreservice-lb - expires: - - Mon, 31 Jan 2011 05:44:00 GMT - cache-control: - - max-age=0, no-cache - pragma: - - no-cache - date: - - Mon, 31 Jan 2011 05:44:00 GMT - content-length: - - "42" - vary: - - X-Apple-Store-Front - x-apple-partner: - - origin.0 - body: "\n\n\n\ - {\n \"resultCount\":0,\n \"results\": []\n\ - }\n\n\n" - http_version: "1.1" -- !ruby/struct:VCR::HTTPInteraction - request: !ruby/struct:VCR::Request - method: :get - uri: http://ax.itunes.apple.com:80/WebObjects/MZStoreServices.woa/wa/wsSearch?media=all&term=Michael%20Jackson - body: - headers: - response: !ruby/struct:VCR::Response - status: !ruby/struct:VCR::ResponseStatus - code: 200 - message: OK - headers: - x-apple-orig-url-path: - - /WebObjects/MZStoreServices.woa/wa/wsSearch?term=Michael%20Jackson&media=all - x-apple-application-site: - - CUP - x-apple-max-age: - - "3600" - x-apple-woa-inbound-url: - - /WebObjects/MZStoreServices.woa/wa/wsSearch?term=Michael%20Jackson&media=all - content-type: - - text/javascript; charset=utf-8 - x-apple-application-instance: - - "460" - x-webobjects-loadaverage: - - "0" - x-ns-label: - - mzstoreservice-lb - expires: - - Mon, 31 Jan 2011 05:44:00 GMT - cache-control: - - max-age=0, no-cache - pragma: - - no-cache - date: - - Mon, 31 Jan 2011 05:44:00 GMT - transfer-encoding: - - chunked - connection: - - Transfer-Encoding - vary: - - X-Apple-Store-Front - x-apple-partner: - - origin.0 - body: "\n\n\n\ - {\n \"resultCount\":50,\n \"results\": [\n\ - {\"wrapperType\":\"track\", \"kind\":\"song\", \"artistId\":32940, \"collectionId\":159292399, \"trackId\":159294478, \"artistName\":\"Michael Jackson\", \"collectionName\":\"The Essential Michael Jackson\", \"trackName\":\"Man In the Mirror\", \"collectionCensoredName\":\"The Essential Michael Jackson\", \"trackCensoredName\":\"Man In the Mirror\", \"artistViewUrl\":\"http://itunes.apple.com/us/artist/michael-jackson/id32940?uo=4\", \"collectionViewUrl\":\"http://itunes.apple.com/us/album/man-in-the-mirror/id159292399?i=159294478&uo=4\", \"trackViewUrl\":\"http://itunes.apple.com/us/album/man-in-the-mirror/id159292399?i=159294478&uo=4\", \"previewUrl\":\"http://a1.phobos.apple.com/us/r1000/012/Music/a1/bd/c3/mzm.ktvmybsb.aac.p.m4a\", \"artworkUrl30\":\"http://a1.phobos.apple.com/us/r1000/045/Features/7f/50/ee/dj.zygromnm.30x30-50.jpg\", \"artworkUrl60\":\"http://a1.phobos.apple.com/us/r1000/045/Features/7f/50/ee/dj.zygromnm.60x60-50.jpg\", \"artworkUrl100\":\"http://a1.phobos.apple.com/us/r1000/045/Features/7f/50/ee/dj.zygromnm.100x100-75.jpg\", \"collectionPrice\":16.99, \"trackPrice\":1.29, \"releaseDate\":\"2005-07-19 07:00:00 Etc/GMT\", \"collectionExplicitness\":\"notExplicit\", \"trackExplicitness\":\"notExplicit\", \"discCount\":2, \"discNumber\":2, \"trackCount\":17, \"trackNumber\":5, \"trackTimeMillis\":318960, \"country\":\"USA\", \"currency\":\"USD\", \"primaryGenreName\":\"Pop\", \"contentAdvisoryRating\":null}, \n\ - {\"wrapperType\":\"track\", \"kind\":\"song\", \"artistId\":32940, \"collectionId\":159292399, \"trackId\":159293848, \"artistName\":\"Michael Jackson\", \"collectionName\":\"The Essential Michael Jackson\", \"trackName\":\"Billie Jean\", \"collectionCensoredName\":\"The Essential Michael Jackson\", \"trackCensoredName\":\"Billie Jean (Single Version)\", \"artistViewUrl\":\"http://itunes.apple.com/us/artist/michael-jackson/id32940?uo=4\", \"collectionViewUrl\":\"http://itunes.apple.com/us/album/billie-jean-single-version/id159292399?i=159293848&uo=4\", \"trackViewUrl\":\"http://itunes.apple.com/us/album/billie-jean-single-version/id159292399?i=159293848&uo=4\", \"previewUrl\":\"http://a1.phobos.apple.com/us/r1000/057/Music/fd/8b/40/mzm.staswrxu.aac.p.m4a\", \"artworkUrl30\":\"http://a1.phobos.apple.com/us/r1000/045/Features/7f/50/ee/dj.zygromnm.30x30-50.jpg\", \"artworkUrl60\":\"http://a1.phobos.apple.com/us/r1000/045/Features/7f/50/ee/dj.zygromnm.60x60-50.jpg\", \"artworkUrl100\":\"http://a1.phobos.apple.com/us/r1000/045/Features/7f/50/ee/dj.zygromnm.100x100-75.jpg\", \"collectionPrice\":16.99, \"trackPrice\":1.29, \"releaseDate\":\"2005-07-19 07:00:00 Etc/GMT\", \"collectionExplicitness\":\"notExplicit\", \"trackExplicitness\":\"notExplicit\", \"discCount\":2, \"discNumber\":1, \"trackCount\":21, \"trackNumber\":16, \"trackTimeMillis\":292960, \"country\":\"USA\", \"currency\":\"USD\", \"primaryGenreName\":\"Pop\", \"contentAdvisoryRating\":null}, \n\ - {\"wrapperType\":\"track\", \"kind\":\"song\", \"artistId\":32940, \"collectionId\":159292399, \"trackId\":159294551, \"artistName\":\"Michael Jackson\", \"collectionName\":\"The Essential Michael Jackson\", \"trackName\":\"Smooth Criminal\", \"collectionCensoredName\":\"The Essential Michael Jackson\", \"trackCensoredName\":\"Smooth Criminal\", \"artistViewUrl\":\"http://itunes.apple.com/us/artist/michael-jackson/id32940?uo=4\", \"collectionViewUrl\":\"http://itunes.apple.com/us/album/smooth-criminal/id159292399?i=159294551&uo=4\", \"trackViewUrl\":\"http://itunes.apple.com/us/album/smooth-criminal/id159292399?i=159294551&uo=4\", \"previewUrl\":\"http://a1.phobos.apple.com/us/r1000/031/Music/ea/b2/35/mzm.apcvilep.aac.p.m4a\", \"artworkUrl30\":\"http://a1.phobos.apple.com/us/r1000/045/Features/7f/50/ee/dj.zygromnm.30x30-50.jpg\", \"artworkUrl60\":\"http://a1.phobos.apple.com/us/r1000/045/Features/7f/50/ee/dj.zygromnm.60x60-50.jpg\", \"artworkUrl100\":\"http://a1.phobos.apple.com/us/r1000/045/Features/7f/50/ee/dj.zygromnm.100x100-75.jpg\", \"collectionPrice\":16.99, \"trackPrice\":1.29, \"releaseDate\":\"2005-07-19 07:00:00 Etc/GMT\", \"collectionExplicitness\":\"notExplicit\", \"trackExplicitness\":\"notExplicit\", \"discCount\":2, \"discNumber\":2, \"trackCount\":17, \"trackNumber\":8, \"trackTimeMillis\":257240, \"country\":\"USA\", \"currency\":\"USD\", \"primaryGenreName\":\"Pop\", \"contentAdvisoryRating\":null}, \n\ - {\"wrapperType\":\"track\", \"kind\":\"song\", \"artistId\":32940, \"collectionId\":159292399, \"trackId\":159294311, \"artistName\":\"Michael Jackson\", \"collectionName\":\"The Essential Michael Jackson\", \"trackName\":\"Thriller\", \"collectionCensoredName\":\"The Essential Michael Jackson\", \"trackCensoredName\":\"Thriller (Single Version)\", \"artistViewUrl\":\"http://itunes.apple.com/us/artist/michael-jackson/id32940?uo=4\", \"collectionViewUrl\":\"http://itunes.apple.com/us/album/thriller-single-version/id159292399?i=159294311&uo=4\", \"trackViewUrl\":\"http://itunes.apple.com/us/album/thriller-single-version/id159292399?i=159294311&uo=4\", \"previewUrl\":\"http://a1.phobos.apple.com/us/r1000/047/Music/84/93/d6/mzm.xnuefztx.aac.p.m4a\", \"artworkUrl30\":\"http://a1.phobos.apple.com/us/r1000/045/Features/7f/50/ee/dj.zygromnm.30x30-50.jpg\", \"artworkUrl60\":\"http://a1.phobos.apple.com/us/r1000/045/Features/7f/50/ee/dj.zygromnm.60x60-50.jpg\", \"artworkUrl100\":\"http://a1.phobos.apple.com/us/r1000/045/Features/7f/50/ee/dj.zygromnm.100x100-75.jpg\", \"collectionPrice\":16.99, \"trackPrice\":1.29, \"releaseDate\":\"2005-07-19 07:00:00 Etc/GMT\", \"collectionExplicitness\":\"notExplicit\", \"trackExplicitness\":\"notExplicit\", \"discCount\":2, \"discNumber\":1, \"trackCount\":21, \"trackNumber\":21, \"trackTimeMillis\":312413, \"country\":\"USA\", \"currency\":\"USD\", \"primaryGenreName\":\"Pop\", \"contentAdvisoryRating\":null}, \n\ - {\"wrapperType\":\"track\", \"kind\":\"song\", \"artistId\":32940, \"collectionId\":159292399, \"trackId\":159293312, \"artistName\":\"Michael Jackson\", \"collectionName\":\"The Essential Michael Jackson\", \"trackName\":\"Don't Stop 'Til You Get Enough\", \"collectionCensoredName\":\"The Essential Michael Jackson\", \"trackCensoredName\":\"Don't Stop 'Til You Get Enough (Single Version)\", \"artistViewUrl\":\"http://itunes.apple.com/us/artist/michael-jackson/id32940?uo=4\", \"collectionViewUrl\":\"http://itunes.apple.com/us/album/dont-stop-til-you-get-enough/id159292399?i=159293312&uo=4\", \"trackViewUrl\":\"http://itunes.apple.com/us/album/dont-stop-til-you-get-enough/id159292399?i=159293312&uo=4\", \"previewUrl\":\"http://a1.phobos.apple.com/us/r1000/005/Music/11/a4/bf/mzm.yggftsuy.aac.p.m4a\", \"artworkUrl30\":\"http://a1.phobos.apple.com/us/r1000/045/Features/7f/50/ee/dj.zygromnm.30x30-50.jpg\", \"artworkUrl60\":\"http://a1.phobos.apple.com/us/r1000/045/Features/7f/50/ee/dj.zygromnm.60x60-50.jpg\", \"artworkUrl100\":\"http://a1.phobos.apple.com/us/r1000/045/Features/7f/50/ee/dj.zygromnm.100x100-75.jpg\", \"collectionPrice\":16.99, \"trackPrice\":1.29, \"releaseDate\":\"2005-07-19 07:00:00 Etc/GMT\", \"collectionExplicitness\":\"notExplicit\", \"trackExplicitness\":\"notExplicit\", \"discCount\":2, \"discNumber\":1, \"trackCount\":21, \"trackNumber\":10, \"trackTimeMillis\":351347, \"country\":\"USA\", \"currency\":\"USD\", \"primaryGenreName\":\"Pop\", \"contentAdvisoryRating\":null}, \n\ - {\"wrapperType\":\"track\", \"kind\":\"song\", \"artistId\":32940, \"collectionId\":159292399, \"trackId\":159294060, \"artistName\":\"Michael Jackson\", \"collectionName\":\"The Essential Michael Jackson\", \"trackName\":\"Beat It\", \"collectionCensoredName\":\"The Essential Michael Jackson\", \"trackCensoredName\":\"Beat It (Single Version)\", \"artistViewUrl\":\"http://itunes.apple.com/us/artist/michael-jackson/id32940?uo=4\", \"collectionViewUrl\":\"http://itunes.apple.com/us/album/beat-it-single-version/id159292399?i=159294060&uo=4\", \"trackViewUrl\":\"http://itunes.apple.com/us/album/beat-it-single-version/id159292399?i=159294060&uo=4\", \"previewUrl\":\"http://a1.phobos.apple.com/us/r1000/053/Music/2d/1f/3e/mzm.hpbrspxj.aac.p.m4a\", \"artworkUrl30\":\"http://a1.phobos.apple.com/us/r1000/045/Features/7f/50/ee/dj.zygromnm.30x30-50.jpg\", \"artworkUrl60\":\"http://a1.phobos.apple.com/us/r1000/045/Features/7f/50/ee/dj.zygromnm.60x60-50.jpg\", \"artworkUrl100\":\"http://a1.phobos.apple.com/us/r1000/045/Features/7f/50/ee/dj.zygromnm.100x100-75.jpg\", \"collectionPrice\":16.99, \"trackPrice\":1.29, \"releaseDate\":\"2005-07-19 07:00:00 Etc/GMT\", \"collectionExplicitness\":\"notExplicit\", \"trackExplicitness\":\"notExplicit\", \"discCount\":2, \"discNumber\":1, \"trackCount\":21, \"trackNumber\":17, \"trackTimeMillis\":258040, \"country\":\"USA\", \"currency\":\"USD\", \"primaryGenreName\":\"Pop\", \"contentAdvisoryRating\":null}, \n\ - {\"wrapperType\":\"track\", \"kind\":\"song\", \"artistId\":32940, \"collectionId\":159292399, \"trackId\":159294296, \"artistName\":\"Michael Jackson\", \"collectionName\":\"The Essential Michael Jackson\", \"trackName\":\"P.Y.T. (Pretty Young Thing)\", \"collectionCensoredName\":\"The Essential Michael Jackson\", \"trackCensoredName\":\"P.Y.T. (Pretty Young Thing)\", \"artistViewUrl\":\"http://itunes.apple.com/us/artist/michael-jackson/id32940?uo=4\", \"collectionViewUrl\":\"http://itunes.apple.com/us/album/p-y-t-pretty-young-thing/id159292399?i=159294296&uo=4\", \"trackViewUrl\":\"http://itunes.apple.com/us/album/p-y-t-pretty-young-thing/id159292399?i=159294296&uo=4\", \"previewUrl\":\"http://a1.phobos.apple.com/us/r1000/021/Music/33/17/37/mzm.rpetdknf.aac.p.m4a\", \"artworkUrl30\":\"http://a1.phobos.apple.com/us/r1000/045/Features/7f/50/ee/dj.zygromnm.30x30-50.jpg\", \"artworkUrl60\":\"http://a1.phobos.apple.com/us/r1000/045/Features/7f/50/ee/dj.zygromnm.60x60-50.jpg\", \"artworkUrl100\":\"http://a1.phobos.apple.com/us/r1000/045/Features/7f/50/ee/dj.zygromnm.100x100-75.jpg\", \"collectionPrice\":16.99, \"trackPrice\":1.29, \"releaseDate\":\"2005-07-19 07:00:00 Etc/GMT\", \"collectionExplicitness\":\"notExplicit\", \"trackExplicitness\":\"notExplicit\", \"discCount\":2, \"discNumber\":1, \"trackCount\":21, \"trackNumber\":20, \"trackTimeMillis\":238587, \"country\":\"USA\", \"currency\":\"USD\", \"primaryGenreName\":\"Pop\", \"contentAdvisoryRating\":null}, \n\ - {\"wrapperType\":\"track\", \"kind\":\"song\", \"artistId\":32940, \"collectionId\":273047558, \"trackId\":273047570, \"artistName\":\"Michael Jackson\", \"collectionName\":\"Thriller (25th Anniversary, Zombie Cover)\", \"trackName\":\"Thriller\", \"collectionCensoredName\":\"Thriller (25th Anniversary, Zombie Cover)\", \"trackCensoredName\":\"Thriller\", \"artistViewUrl\":\"http://itunes.apple.com/us/artist/michael-jackson/id32940?uo=4\", \"collectionViewUrl\":\"http://itunes.apple.com/us/album/thriller/id273047558?i=273047570&uo=4\", \"trackViewUrl\":\"http://itunes.apple.com/us/album/thriller/id273047558?i=273047570&uo=4\", \"previewUrl\":\"http://a1.phobos.apple.com/us/r1000/005/Music/e1/af/d1/mzm.ocelspsv.aac.p.m4a\", \"artworkUrl30\":\"http://a1.phobos.apple.com/us/r1000/021/Music/ce/ed/a1/mzi.gqqhjkmr.30x30-50.jpg\", \"artworkUrl60\":\"http://a1.phobos.apple.com/us/r1000/021/Music/ce/ed/a1/mzi.gqqhjkmr.60x60-50.jpg\", \"artworkUrl100\":\"http://a1.phobos.apple.com/us/r1000/021/Music/ce/ed/a1/mzi.gqqhjkmr.100x100-75.jpg\", \"collectionPrice\":13.99, \"trackPrice\":1.29, \"releaseDate\":\"2008-02-12 08:00:00 Etc/GMT\", \"collectionExplicitness\":\"notExplicit\", \"trackExplicitness\":\"notExplicit\", \"discCount\":1, \"discNumber\":1, \"trackCount\":17, \"trackNumber\":4, \"trackTimeMillis\":357267, \"country\":\"USA\", \"currency\":\"USD\", \"primaryGenreName\":\"Pop\", \"contentAdvisoryRating\":null}, \n\ - {\"wrapperType\":\"track\", \"kind\":\"song\", \"artistId\":32940, \"collectionId\":159292399, \"trackId\":159294814, \"artistName\":\"Michael Jackson\", \"collectionName\":\"The Essential Michael Jackson\", \"trackName\":\"Black or White\", \"collectionCensoredName\":\"The Essential Michael Jackson\", \"trackCensoredName\":\"Black or White (Single Version)\", \"artistViewUrl\":\"http://itunes.apple.com/us/artist/michael-jackson/id32940?uo=4\", \"collectionViewUrl\":\"http://itunes.apple.com/us/album/black-or-white-single-version/id159292399?i=159294814&uo=4\", \"trackViewUrl\":\"http://itunes.apple.com/us/album/black-or-white-single-version/id159292399?i=159294814&uo=4\", \"previewUrl\":\"http://a1.phobos.apple.com/us/r1000/056/Music/d4/76/b8/mzm.xfuwmshg.aac.p.m4a\", \"artworkUrl30\":\"http://a1.phobos.apple.com/us/r1000/045/Features/7f/50/ee/dj.zygromnm.30x30-50.jpg\", \"artworkUrl60\":\"http://a1.phobos.apple.com/us/r1000/045/Features/7f/50/ee/dj.zygromnm.60x60-50.jpg\", \"artworkUrl100\":\"http://a1.phobos.apple.com/us/r1000/045/Features/7f/50/ee/dj.zygromnm.100x100-75.jpg\", \"collectionPrice\":16.99, \"trackPrice\":1.29, \"releaseDate\":\"2005-07-19 07:00:00 Etc/GMT\", \"collectionExplicitness\":\"notExplicit\", \"trackExplicitness\":\"notExplicit\", \"discCount\":2, \"discNumber\":2, \"trackCount\":17, \"trackNumber\":9, \"trackTimeMillis\":202853, \"country\":\"USA\", \"currency\":\"USD\", \"primaryGenreName\":\"Pop\", \"contentAdvisoryRating\":null}, \n\ - {\"wrapperType\":\"track\", \"kind\":\"song\", \"artistId\":32940, \"collectionId\":159292399, \"trackId\":159293419, \"artistName\":\"Michael Jackson\", \"collectionName\":\"The Essential Michael Jackson\", \"trackName\":\"Rock With You\", \"collectionCensoredName\":\"The Essential Michael Jackson\", \"trackCensoredName\":\"Rock With You (Single Version)\", \"artistViewUrl\":\"http://itunes.apple.com/us/artist/michael-jackson/id32940?uo=4\", \"collectionViewUrl\":\"http://itunes.apple.com/us/album/rock-with-you-single-version/id159292399?i=159293419&uo=4\", \"trackViewUrl\":\"http://itunes.apple.com/us/album/rock-with-you-single-version/id159292399?i=159293419&uo=4\", \"previewUrl\":\"http://a1.phobos.apple.com/us/r1000/023/Music/52/44/41/mzm.yylwgbgz.aac.p.m4a\", \"artworkUrl30\":\"http://a1.phobos.apple.com/us/r1000/045/Features/7f/50/ee/dj.zygromnm.30x30-50.jpg\", \"artworkUrl60\":\"http://a1.phobos.apple.com/us/r1000/045/Features/7f/50/ee/dj.zygromnm.60x60-50.jpg\", \"artworkUrl100\":\"http://a1.phobos.apple.com/us/r1000/045/Features/7f/50/ee/dj.zygromnm.100x100-75.jpg\", \"collectionPrice\":16.99, \"trackPrice\":1.29, \"releaseDate\":\"2005-07-19 07:00:00 Etc/GMT\", \"collectionExplicitness\":\"notExplicit\", \"trackExplicitness\":\"notExplicit\", \"discCount\":2, \"discNumber\":1, \"trackCount\":21, \"trackNumber\":11, \"trackTimeMillis\":203067, \"country\":\"USA\", \"currency\":\"USD\", \"primaryGenreName\":\"Pop\", \"contentAdvisoryRating\":null}, \n\ - {\"wrapperType\":\"track\", \"kind\":\"song\", \"artistId\":32940, \"collectionId\":159292399, \"trackId\":159295684, \"artistName\":\"Michael Jackson\", \"collectionName\":\"The Essential Michael Jackson\", \"trackName\":\"Will You Be There\", \"collectionCensoredName\":\"The Essential Michael Jackson\", \"trackCensoredName\":\"Will You Be There (Single Version)\", \"artistViewUrl\":\"http://itunes.apple.com/us/artist/michael-jackson/id32940?uo=4\", \"collectionViewUrl\":\"http://itunes.apple.com/us/album/will-you-be-there-single-version/id159292399?i=159295684&uo=4\", \"trackViewUrl\":\"http://itunes.apple.com/us/album/will-you-be-there-single-version/id159292399?i=159295684&uo=4\", \"previewUrl\":\"http://a1.phobos.apple.com/us/r1000/023/Music/96/11/fa/mzm.vretgegy.aac.p.m4a\", \"artworkUrl30\":\"http://a1.phobos.apple.com/us/r1000/045/Features/7f/50/ee/dj.zygromnm.30x30-50.jpg\", \"artworkUrl60\":\"http://a1.phobos.apple.com/us/r1000/045/Features/7f/50/ee/dj.zygromnm.60x60-50.jpg\", \"artworkUrl100\":\"http://a1.phobos.apple.com/us/r1000/045/Features/7f/50/ee/dj.zygromnm.100x100-75.jpg\", \"collectionPrice\":16.99, \"trackPrice\":1.29, \"releaseDate\":\"2005-07-19 07:00:00 Etc/GMT\", \"collectionExplicitness\":\"notExplicit\", \"trackExplicitness\":\"notExplicit\", \"discCount\":2, \"discNumber\":2, \"trackCount\":17, \"trackNumber\":14, \"trackTimeMillis\":220387, \"country\":\"USA\", \"currency\":\"USD\", \"primaryGenreName\":\"Pop\", \"contentAdvisoryRating\":null}, \n\ - {\"wrapperType\":\"track\", \"kind\":\"song\", \"artistId\":32940, \"collectionId\":159292399, \"trackId\":159294254, \"artistName\":\"Michael Jackson\", \"collectionName\":\"The Essential Michael Jackson\", \"trackName\":\"Human Nature\", \"collectionCensoredName\":\"The Essential Michael Jackson\", \"trackCensoredName\":\"Human Nature\", \"artistViewUrl\":\"http://itunes.apple.com/us/artist/michael-jackson/id32940?uo=4\", \"collectionViewUrl\":\"http://itunes.apple.com/us/album/human-nature/id159292399?i=159294254&uo=4\", \"trackViewUrl\":\"http://itunes.apple.com/us/album/human-nature/id159292399?i=159294254&uo=4\", \"previewUrl\":\"http://a1.phobos.apple.com/us/r1000/046/Music/8e/53/27/mzm.rjfuvjee.aac.p.m4a\", \"artworkUrl30\":\"http://a1.phobos.apple.com/us/r1000/045/Features/7f/50/ee/dj.zygromnm.30x30-50.jpg\", \"artworkUrl60\":\"http://a1.phobos.apple.com/us/r1000/045/Features/7f/50/ee/dj.zygromnm.60x60-50.jpg\", \"artworkUrl100\":\"http://a1.phobos.apple.com/us/r1000/045/Features/7f/50/ee/dj.zygromnm.100x100-75.jpg\", \"collectionPrice\":16.99, \"trackPrice\":1.29, \"releaseDate\":\"2005-07-19 07:00:00 Etc/GMT\", \"collectionExplicitness\":\"notExplicit\", \"trackExplicitness\":\"notExplicit\", \"discCount\":2, \"discNumber\":1, \"trackCount\":21, \"trackNumber\":19, \"trackTimeMillis\":225053, \"country\":\"USA\", \"currency\":\"USD\", \"primaryGenreName\":\"Pop\", \"contentAdvisoryRating\":null}, \n\ - {\"wrapperType\":\"track\", \"kind\":\"song\", \"artistId\":32940, \"collectionId\":159292399, \"trackId\":159295880, \"artistName\":\"Michael Jackson\", \"collectionName\":\"The Essential Michael Jackson\", \"trackName\":\"You Are Not Alone\", \"collectionCensoredName\":\"The Essential Michael Jackson\", \"trackCensoredName\":\"You Are Not Alone (Single Version)\", \"artistViewUrl\":\"http://itunes.apple.com/us/artist/michael-jackson/id32940?uo=4\", \"collectionViewUrl\":\"http://itunes.apple.com/us/album/you-are-not-alone-single-version/id159292399?i=159295880&uo=4\", \"trackViewUrl\":\"http://itunes.apple.com/us/album/you-are-not-alone-single-version/id159292399?i=159295880&uo=4\", \"previewUrl\":\"http://a1.phobos.apple.com/us/r1000/040/Music/c5/6e/78/mzm.cabwtsep.aac.p.m4a\", \"artworkUrl30\":\"http://a1.phobos.apple.com/us/r1000/045/Features/7f/50/ee/dj.zygromnm.30x30-50.jpg\", \"artworkUrl60\":\"http://a1.phobos.apple.com/us/r1000/045/Features/7f/50/ee/dj.zygromnm.60x60-50.jpg\", \"artworkUrl100\":\"http://a1.phobos.apple.com/us/r1000/045/Features/7f/50/ee/dj.zygromnm.100x100-75.jpg\", \"collectionPrice\":16.99, \"trackPrice\":1.29, \"releaseDate\":\"2005-07-19 07:00:00 Etc/GMT\", \"collectionExplicitness\":\"notExplicit\", \"trackExplicitness\":\"notExplicit\", \"discCount\":2, \"discNumber\":2, \"trackCount\":17, \"trackNumber\":16, \"trackTimeMillis\":295987, \"country\":\"USA\", \"currency\":\"USD\", \"primaryGenreName\":\"Pop\", \"contentAdvisoryRating\":null}, \n\ - {\"wrapperType\":\"track\", \"kind\":\"song\", \"artistId\":32940, \"collectionId\":159292399, \"trackId\":159294123, \"artistName\":\"Michael Jackson\", \"collectionName\":\"The Essential Michael Jackson\", \"trackName\":\"Wanna Be Startin' Somethin'\", \"collectionCensoredName\":\"The Essential Michael Jackson\", \"trackCensoredName\":\"Wanna Be Startin' Somethin' (Single Version)\", \"artistViewUrl\":\"http://itunes.apple.com/us/artist/michael-jackson/id32940?uo=4\", \"collectionViewUrl\":\"http://itunes.apple.com/us/album/wanna-be-startin-somethin/id159292399?i=159294123&uo=4\", \"trackViewUrl\":\"http://itunes.apple.com/us/album/wanna-be-startin-somethin/id159292399?i=159294123&uo=4\", \"previewUrl\":\"http://a1.phobos.apple.com/us/r1000/051/Music/bd/95/b7/mzm.mkemoenv.aac.p.m4a\", \"artworkUrl30\":\"http://a1.phobos.apple.com/us/r1000/045/Features/7f/50/ee/dj.zygromnm.30x30-50.jpg\", \"artworkUrl60\":\"http://a1.phobos.apple.com/us/r1000/045/Features/7f/50/ee/dj.zygromnm.60x60-50.jpg\", \"artworkUrl100\":\"http://a1.phobos.apple.com/us/r1000/045/Features/7f/50/ee/dj.zygromnm.100x100-75.jpg\", \"collectionPrice\":16.99, \"trackPrice\":1.29, \"releaseDate\":\"2005-07-19 07:00:00 Etc/GMT\", \"collectionExplicitness\":\"notExplicit\", \"trackExplicitness\":\"notExplicit\", \"discCount\":2, \"discNumber\":1, \"trackCount\":21, \"trackNumber\":18, \"trackTimeMillis\":257427, \"country\":\"USA\", \"currency\":\"USD\", \"primaryGenreName\":\"Pop\", \"contentAdvisoryRating\":null}, \n\ - {\"wrapperType\":\"track\", \"kind\":\"song\", \"artistId\":32940, \"collectionId\":159292399, \"trackId\":159295548, \"artistName\":\"Michael Jackson\", \"collectionName\":\"The Essential Michael Jackson\", \"trackName\":\"Remember the Time\", \"collectionCensoredName\":\"The Essential Michael Jackson\", \"trackCensoredName\":\"Remember the Time\", \"artistViewUrl\":\"http://itunes.apple.com/us/artist/michael-jackson/id32940?uo=4\", \"collectionViewUrl\":\"http://itunes.apple.com/us/album/remember-the-time/id159292399?i=159295548&uo=4\", \"trackViewUrl\":\"http://itunes.apple.com/us/album/remember-the-time/id159292399?i=159295548&uo=4\", \"previewUrl\":\"http://a1.phobos.apple.com/us/r1000/026/Music/06/44/f1/mzm.aatwynzi.aac.p.m4a\", \"artworkUrl30\":\"http://a1.phobos.apple.com/us/r1000/045/Features/7f/50/ee/dj.zygromnm.30x30-50.jpg\", \"artworkUrl60\":\"http://a1.phobos.apple.com/us/r1000/045/Features/7f/50/ee/dj.zygromnm.60x60-50.jpg\", \"artworkUrl100\":\"http://a1.phobos.apple.com/us/r1000/045/Features/7f/50/ee/dj.zygromnm.100x100-75.jpg\", \"collectionPrice\":16.99, \"trackPrice\":1.29, \"releaseDate\":\"2005-07-19 07:00:00 Etc/GMT\", \"collectionExplicitness\":\"notExplicit\", \"trackExplicitness\":\"notExplicit\", \"discCount\":2, \"discNumber\":2, \"trackCount\":17, \"trackNumber\":11, \"trackTimeMillis\":239893, \"country\":\"USA\", \"currency\":\"USD\", \"primaryGenreName\":\"Pop\", \"contentAdvisoryRating\":null}, \n\ - {\"wrapperType\":\"track\", \"kind\":\"song\", \"artistId\":32940, \"collectionId\":159292399, \"trackId\":159293470, \"artistName\":\"Michael Jackson\", \"collectionName\":\"The Essential Michael Jackson\", \"trackName\":\"Off the Wall\", \"collectionCensoredName\":\"The Essential Michael Jackson\", \"trackCensoredName\":\"Off the Wall (Single Version)\", \"artistViewUrl\":\"http://itunes.apple.com/us/artist/michael-jackson/id32940?uo=4\", \"collectionViewUrl\":\"http://itunes.apple.com/us/album/off-the-wall-single-version/id159292399?i=159293470&uo=4\", \"trackViewUrl\":\"http://itunes.apple.com/us/album/off-the-wall-single-version/id159292399?i=159293470&uo=4\", \"previewUrl\":\"http://a1.phobos.apple.com/us/r1000/037/Music/cc/7c/1d/mzm.hrupaxec.aac.p.m4a\", \"artworkUrl30\":\"http://a1.phobos.apple.com/us/r1000/045/Features/7f/50/ee/dj.zygromnm.30x30-50.jpg\", \"artworkUrl60\":\"http://a1.phobos.apple.com/us/r1000/045/Features/7f/50/ee/dj.zygromnm.60x60-50.jpg\", \"artworkUrl100\":\"http://a1.phobos.apple.com/us/r1000/045/Features/7f/50/ee/dj.zygromnm.100x100-75.jpg\", \"collectionPrice\":16.99, \"trackPrice\":1.29, \"releaseDate\":\"2005-07-19 07:00:00 Etc/GMT\", \"collectionExplicitness\":\"notExplicit\", \"trackExplicitness\":\"notExplicit\", \"discCount\":2, \"discNumber\":1, \"trackCount\":21, \"trackNumber\":12, \"trackTimeMillis\":225560, \"country\":\"USA\", \"currency\":\"USD\", \"primaryGenreName\":\"Pop\", \"contentAdvisoryRating\":null}, \n\ - {\"wrapperType\":\"track\", \"kind\":\"song\", \"artistId\":32940, \"collectionId\":159292399, \"trackId\":159295942, \"artistName\":\"Michael Jackson\", \"collectionName\":\"The Essential Michael Jackson\", \"trackName\":\"You Rock My World\", \"collectionCensoredName\":\"The Essential Michael Jackson\", \"trackCensoredName\":\"You Rock My World (With Intro)\", \"artistViewUrl\":\"http://itunes.apple.com/us/artist/michael-jackson/id32940?uo=4\", \"collectionViewUrl\":\"http://itunes.apple.com/us/album/you-rock-my-world-with-intro/id159292399?i=159295942&uo=4\", \"trackViewUrl\":\"http://itunes.apple.com/us/album/you-rock-my-world-with-intro/id159292399?i=159295942&uo=4\", \"previewUrl\":\"http://a1.phobos.apple.com/us/r1000/038/Music/2d/72/ae/mzm.pbcaboqi.aac.p.m4a\", \"artworkUrl30\":\"http://a1.phobos.apple.com/us/r1000/045/Features/7f/50/ee/dj.zygromnm.30x30-50.jpg\", \"artworkUrl60\":\"http://a1.phobos.apple.com/us/r1000/045/Features/7f/50/ee/dj.zygromnm.60x60-50.jpg\", \"artworkUrl100\":\"http://a1.phobos.apple.com/us/r1000/045/Features/7f/50/ee/dj.zygromnm.100x100-75.jpg\", \"collectionPrice\":16.99, \"trackPrice\":1.29, \"releaseDate\":\"2005-07-19 07:00:00 Etc/GMT\", \"collectionExplicitness\":\"notExplicit\", \"trackExplicitness\":\"notExplicit\", \"discCount\":2, \"discNumber\":2, \"trackCount\":17, \"trackNumber\":17, \"trackTimeMillis\":308440, \"country\":\"USA\", \"currency\":\"USD\", \"primaryGenreName\":\"Pop\", \"contentAdvisoryRating\":null}, \n\ - {\"wrapperType\":\"track\", \"kind\":\"song\", \"artistId\":32940, \"collectionId\":159292399, \"trackId\":159295278, \"artistName\":\"Michael Jackson\", \"collectionName\":\"The Essential Michael Jackson\", \"trackName\":\"Heal the World\", \"collectionCensoredName\":\"The Essential Michael Jackson\", \"trackCensoredName\":\"Heal the World\", \"artistViewUrl\":\"http://itunes.apple.com/us/artist/michael-jackson/id32940?uo=4\", \"collectionViewUrl\":\"http://itunes.apple.com/us/album/heal-the-world/id159292399?i=159295278&uo=4\", \"trackViewUrl\":\"http://itunes.apple.com/us/album/heal-the-world/id159292399?i=159295278&uo=4\", \"previewUrl\":\"http://a1.phobos.apple.com/us/r1000/009/Music/fe/ce/9c/mzm.uehgqmlt.aac.p.m4a\", \"artworkUrl30\":\"http://a1.phobos.apple.com/us/r1000/045/Features/7f/50/ee/dj.zygromnm.30x30-50.jpg\", \"artworkUrl60\":\"http://a1.phobos.apple.com/us/r1000/045/Features/7f/50/ee/dj.zygromnm.60x60-50.jpg\", \"artworkUrl100\":\"http://a1.phobos.apple.com/us/r1000/045/Features/7f/50/ee/dj.zygromnm.100x100-75.jpg\", \"collectionPrice\":16.99, \"trackPrice\":1.29, \"releaseDate\":\"2005-07-19 07:00:00 Etc/GMT\", \"collectionExplicitness\":\"notExplicit\", \"trackExplicitness\":\"notExplicit\", \"discCount\":2, \"discNumber\":2, \"trackCount\":17, \"trackNumber\":10, \"trackTimeMillis\":385333, \"country\":\"USA\", \"currency\":\"USD\", \"primaryGenreName\":\"Pop\", \"contentAdvisoryRating\":null}, \n\ - {\"wrapperType\":\"track\", \"kind\":\"song\", \"artistId\":32940, \"collectionId\":159292399, \"trackId\":159294407, \"artistName\":\"Michael Jackson\", \"collectionName\":\"The Essential Michael Jackson\", \"trackName\":\"Leave Me Alone\", \"collectionCensoredName\":\"The Essential Michael Jackson\", \"trackCensoredName\":\"Leave Me Alone\", \"artistViewUrl\":\"http://itunes.apple.com/us/artist/michael-jackson/id32940?uo=4\", \"collectionViewUrl\":\"http://itunes.apple.com/us/album/leave-me-alone/id159292399?i=159294407&uo=4\", \"trackViewUrl\":\"http://itunes.apple.com/us/album/leave-me-alone/id159292399?i=159294407&uo=4\", \"previewUrl\":\"http://a1.phobos.apple.com/us/r1000/032/Music/94/84/7d/mzm.fhrumjrd.aac.p.m4a\", \"artworkUrl30\":\"http://a1.phobos.apple.com/us/r1000/045/Features/7f/50/ee/dj.zygromnm.30x30-50.jpg\", \"artworkUrl60\":\"http://a1.phobos.apple.com/us/r1000/045/Features/7f/50/ee/dj.zygromnm.60x60-50.jpg\", \"artworkUrl100\":\"http://a1.phobos.apple.com/us/r1000/045/Features/7f/50/ee/dj.zygromnm.100x100-75.jpg\", \"collectionPrice\":16.99, \"trackPrice\":1.29, \"releaseDate\":\"2005-07-19 07:00:00 Etc/GMT\", \"collectionExplicitness\":\"notExplicit\", \"trackExplicitness\":\"notExplicit\", \"discCount\":2, \"discNumber\":2, \"trackCount\":17, \"trackNumber\":3, \"trackTimeMillis\":280187, \"country\":\"USA\", \"currency\":\"USD\", \"primaryGenreName\":\"Pop\", \"contentAdvisoryRating\":null}, \n\ - {\"wrapperType\":\"track\", \"kind\":\"song\", \"artistId\":32940, \"collectionId\":159292399, \"trackId\":159293734, \"artistName\":\"Michael Jackson & Paul McCartney\", \"collectionName\":\"The Essential Michael Jackson\", \"trackName\":\"The Girl Is Mine\", \"collectionCensoredName\":\"The Essential Michael Jackson\", \"trackCensoredName\":\"The Girl Is Mine\", \"artistViewUrl\":\"http://itunes.apple.com/us/artist/michael-jackson/id32940?uo=4\", \"collectionViewUrl\":\"http://itunes.apple.com/us/album/the-girl-is-mine/id159292399?i=159293734&uo=4\", \"trackViewUrl\":\"http://itunes.apple.com/us/album/the-girl-is-mine/id159292399?i=159293734&uo=4\", \"previewUrl\":\"http://a1.phobos.apple.com/us/r1000/033/Music/12/75/8a/mzm.fhypltvx.aac.p.m4a\", \"artworkUrl30\":\"http://a1.phobos.apple.com/us/r1000/045/Features/7f/50/ee/dj.zygromnm.30x30-50.jpg\", \"artworkUrl60\":\"http://a1.phobos.apple.com/us/r1000/045/Features/7f/50/ee/dj.zygromnm.60x60-50.jpg\", \"artworkUrl100\":\"http://a1.phobos.apple.com/us/r1000/045/Features/7f/50/ee/dj.zygromnm.100x100-75.jpg\", \"collectionPrice\":16.99, \"trackPrice\":1.29, \"releaseDate\":\"2005-07-19 07:00:00 Etc/GMT\", \"collectionExplicitness\":\"notExplicit\", \"trackExplicitness\":\"notExplicit\", \"discCount\":2, \"discNumber\":1, \"trackCount\":21, \"trackNumber\":15, \"trackTimeMillis\":221907, \"country\":\"USA\", \"currency\":\"USD\", \"primaryGenreName\":\"Pop\", \"contentAdvisoryRating\":null}, \n\ - {\"wrapperType\":\"track\", \"kind\":\"song\", \"artistId\":32940, \"collectionId\":159292399, \"trackId\":159294386, \"artistName\":\"Michael Jackson\", \"collectionName\":\"The Essential Michael Jackson\", \"trackName\":\"I Just Can't Stop Loving You\", \"collectionCensoredName\":\"The Essential Michael Jackson\", \"trackCensoredName\":\"I Just Can't Stop Loving You\", \"artistViewUrl\":\"http://itunes.apple.com/us/artist/michael-jackson/id32940?uo=4\", \"collectionViewUrl\":\"http://itunes.apple.com/us/album/i-just-cant-stop-loving-you/id159292399?i=159294386&uo=4\", \"trackViewUrl\":\"http://itunes.apple.com/us/album/i-just-cant-stop-loving-you/id159292399?i=159294386&uo=4\", \"previewUrl\":\"http://a1.phobos.apple.com/us/r1000/036/Music/49/8f/d0/mzm.erxjhlmt.aac.p.m4a\", \"artworkUrl30\":\"http://a1.phobos.apple.com/us/r1000/045/Features/7f/50/ee/dj.zygromnm.30x30-50.jpg\", \"artworkUrl60\":\"http://a1.phobos.apple.com/us/r1000/045/Features/7f/50/ee/dj.zygromnm.60x60-50.jpg\", \"artworkUrl100\":\"http://a1.phobos.apple.com/us/r1000/045/Features/7f/50/ee/dj.zygromnm.100x100-75.jpg\", \"collectionPrice\":16.99, \"trackPrice\":1.29, \"releaseDate\":\"2005-07-19 07:00:00 Etc/GMT\", \"collectionExplicitness\":\"notExplicit\", \"trackExplicitness\":\"notExplicit\", \"discCount\":2, \"discNumber\":2, \"trackCount\":17, \"trackNumber\":2, \"trackTimeMillis\":251747, \"country\":\"USA\", \"currency\":\"USD\", \"primaryGenreName\":\"Pop\", \"contentAdvisoryRating\":null}, \n\ - {\"wrapperType\":\"track\", \"kind\":\"song\", \"artistId\":32940, \"collectionId\":159292399, \"trackId\":159295575, \"artistName\":\"Michael Jackson\", \"collectionName\":\"The Essential Michael Jackson\", \"trackName\":\"In the Closet\", \"collectionCensoredName\":\"The Essential Michael Jackson\", \"trackCensoredName\":\"In the Closet (Single Version)\", \"artistViewUrl\":\"http://itunes.apple.com/us/artist/michael-jackson/id32940?uo=4\", \"collectionViewUrl\":\"http://itunes.apple.com/us/album/in-the-closet-single-version/id159292399?i=159295575&uo=4\", \"trackViewUrl\":\"http://itunes.apple.com/us/album/in-the-closet-single-version/id159292399?i=159295575&uo=4\", \"previewUrl\":\"http://a1.phobos.apple.com/us/r1000/002/Music/a3/14/0e/mzm.ejonxtyc.aac.p.m4a\", \"artworkUrl30\":\"http://a1.phobos.apple.com/us/r1000/045/Features/7f/50/ee/dj.zygromnm.30x30-50.jpg\", \"artworkUrl60\":\"http://a1.phobos.apple.com/us/r1000/045/Features/7f/50/ee/dj.zygromnm.60x60-50.jpg\", \"artworkUrl100\":\"http://a1.phobos.apple.com/us/r1000/045/Features/7f/50/ee/dj.zygromnm.100x100-75.jpg\", \"collectionPrice\":16.99, \"trackPrice\":1.29, \"releaseDate\":\"2005-07-19 07:00:00 Etc/GMT\", \"collectionExplicitness\":\"notExplicit\", \"trackExplicitness\":\"notExplicit\", \"discCount\":2, \"discNumber\":2, \"trackCount\":17, \"trackNumber\":12, \"trackTimeMillis\":288813, \"country\":\"USA\", \"currency\":\"USD\", \"primaryGenreName\":\"Pop\", \"contentAdvisoryRating\":null}, \n\ - {\"wrapperType\":\"track\", \"kind\":\"song\", \"artistId\":32940, \"collectionId\":159292399, \"trackId\":159293508, \"artistName\":\"Michael Jackson\", \"collectionName\":\"The Essential Michael Jackson\", \"trackName\":\"She's Out of My Life\", \"collectionCensoredName\":\"The Essential Michael Jackson\", \"trackCensoredName\":\"She's Out of My Life (Single Version)\", \"artistViewUrl\":\"http://itunes.apple.com/us/artist/michael-jackson/id32940?uo=4\", \"collectionViewUrl\":\"http://itunes.apple.com/us/album/shes-out-my-life-single-version/id159292399?i=159293508&uo=4\", \"trackViewUrl\":\"http://itunes.apple.com/us/album/shes-out-my-life-single-version/id159292399?i=159293508&uo=4\", \"previewUrl\":\"http://a1.phobos.apple.com/us/r1000/057/Music/62/f9/a6/mzm.kvgmyzkd.aac.p.m4a\", \"artworkUrl30\":\"http://a1.phobos.apple.com/us/r1000/045/Features/7f/50/ee/dj.zygromnm.30x30-50.jpg\", \"artworkUrl60\":\"http://a1.phobos.apple.com/us/r1000/045/Features/7f/50/ee/dj.zygromnm.60x60-50.jpg\", \"artworkUrl100\":\"http://a1.phobos.apple.com/us/r1000/045/Features/7f/50/ee/dj.zygromnm.100x100-75.jpg\", \"collectionPrice\":16.99, \"trackPrice\":1.29, \"releaseDate\":\"2005-07-19 07:00:00 Etc/GMT\", \"collectionExplicitness\":\"notExplicit\", \"trackExplicitness\":\"notExplicit\", \"discCount\":2, \"discNumber\":1, \"trackCount\":21, \"trackNumber\":13, \"trackTimeMillis\":217280, \"country\":\"USA\", \"currency\":\"USD\", \"primaryGenreName\":\"Pop\", \"contentAdvisoryRating\":null}, \n\ - {\"wrapperType\":\"track\", \"kind\":\"song\", \"artistId\":32940, \"collectionId\":159292399, \"trackId\":159295746, \"artistName\":\"Michael Jackson\", \"collectionName\":\"The Essential Michael Jackson\", \"trackName\":\"Dangerous\", \"collectionCensoredName\":\"The Essential Michael Jackson\", \"trackCensoredName\":\"Dangerous\", \"artistViewUrl\":\"http://itunes.apple.com/us/artist/michael-jackson/id32940?uo=4\", \"collectionViewUrl\":\"http://itunes.apple.com/us/album/dangerous/id159292399?i=159295746&uo=4\", \"trackViewUrl\":\"http://itunes.apple.com/us/album/dangerous/id159292399?i=159295746&uo=4\", \"previewUrl\":\"http://a1.phobos.apple.com/us/r1000/014/Music/8c/4f/1a/mzm.qbtnlqav.aac.p.m4a\", \"artworkUrl30\":\"http://a1.phobos.apple.com/us/r1000/045/Features/7f/50/ee/dj.zygromnm.30x30-50.jpg\", \"artworkUrl60\":\"http://a1.phobos.apple.com/us/r1000/045/Features/7f/50/ee/dj.zygromnm.60x60-50.jpg\", \"artworkUrl100\":\"http://a1.phobos.apple.com/us/r1000/045/Features/7f/50/ee/dj.zygromnm.100x100-75.jpg\", \"collectionPrice\":16.99, \"trackPrice\":1.29, \"releaseDate\":\"2005-07-19 07:00:00 Etc/GMT\", \"collectionExplicitness\":\"notExplicit\", \"trackExplicitness\":\"notExplicit\", \"discCount\":2, \"discNumber\":2, \"trackCount\":17, \"trackNumber\":15, \"trackTimeMillis\":419560, \"country\":\"USA\", \"currency\":\"USD\", \"primaryGenreName\":\"Pop\", \"contentAdvisoryRating\":null}, \n\ - {\"wrapperType\":\"track\", \"kind\":\"song\", \"artistId\":32940, \"collectionId\":159292399, \"trackId\":159295611, \"artistName\":\"Michael Jackson\", \"collectionName\":\"The Essential Michael Jackson\", \"trackName\":\"Who Is It\", \"collectionCensoredName\":\"The Essential Michael Jackson\", \"trackCensoredName\":\"Who Is It (7\\\" Edit)\", \"artistViewUrl\":\"http://itunes.apple.com/us/artist/michael-jackson/id32940?uo=4\", \"collectionViewUrl\":\"http://itunes.apple.com/us/album/who-is-it-7-edit/id159292399?i=159295611&uo=4\", \"trackViewUrl\":\"http://itunes.apple.com/us/album/who-is-it-7-edit/id159292399?i=159295611&uo=4\", \"previewUrl\":\"http://a1.phobos.apple.com/us/r1000/033/Music/f2/98/68/mzm.hpwljgbe.aac.p.m4a\", \"artworkUrl30\":\"http://a1.phobos.apple.com/us/r1000/045/Features/7f/50/ee/dj.zygromnm.30x30-50.jpg\", \"artworkUrl60\":\"http://a1.phobos.apple.com/us/r1000/045/Features/7f/50/ee/dj.zygromnm.60x60-50.jpg\", \"artworkUrl100\":\"http://a1.phobos.apple.com/us/r1000/045/Features/7f/50/ee/dj.zygromnm.100x100-75.jpg\", \"collectionPrice\":16.99, \"trackPrice\":1.29, \"releaseDate\":\"2005-07-19 07:00:00 Etc/GMT\", \"collectionExplicitness\":\"notExplicit\", \"trackExplicitness\":\"notExplicit\", \"discCount\":2, \"discNumber\":2, \"trackCount\":17, \"trackNumber\":13, \"trackTimeMillis\":239560, \"country\":\"USA\", \"currency\":\"USD\", \"primaryGenreName\":\"Pop\", \"contentAdvisoryRating\":null}, \n\ - {\"wrapperType\":\"track\", \"kind\":\"song\", \"artistId\":32940, \"collectionId\":269572838, \"trackId\":269573341, \"artistName\":\"Michael Jackson\", \"collectionName\":\"Thriller\", \"trackName\":\"Beat It\", \"collectionCensoredName\":\"Thriller\", \"trackCensoredName\":\"Beat It\", \"artistViewUrl\":\"http://itunes.apple.com/us/artist/michael-jackson/id32940?uo=4\", \"collectionViewUrl\":\"http://itunes.apple.com/us/album/beat-it/id269572838?i=269573341&uo=4\", \"trackViewUrl\":\"http://itunes.apple.com/us/album/beat-it/id269572838?i=269573341&uo=4\", \"previewUrl\":\"http://a1.phobos.apple.com/us/r1000/049/Music/e5/6d/fe/mzm.wjtchrns.aac.p.m4a\", \"artworkUrl30\":\"http://a1.phobos.apple.com/us/r1000/009/Music/93/56/fb/mzi.ttkkmity.30x30-50.jpg\", \"artworkUrl60\":\"http://a1.phobos.apple.com/us/r1000/009/Music/93/56/fb/mzi.ttkkmity.60x60-50.jpg\", \"artworkUrl100\":\"http://a1.phobos.apple.com/us/r1000/009/Music/93/56/fb/mzi.ttkkmity.100x100-75.jpg\", \"collectionPrice\":7.99, \"trackPrice\":1.29, \"releaseDate\":\"2008-01-03 08:00:00 Etc/GMT\", \"collectionExplicitness\":\"notExplicit\", \"trackExplicitness\":\"notExplicit\", \"discCount\":1, \"discNumber\":1, \"trackCount\":9, \"trackNumber\":5, \"trackTimeMillis\":258315, \"country\":\"USA\", \"currency\":\"USD\", \"primaryGenreName\":\"Pop\", \"contentAdvisoryRating\":null}, \n\ - {\"wrapperType\":\"track\", \"kind\":\"song\", \"artistId\":32940, \"collectionId\":273047558, \"trackId\":273047572, \"artistName\":\"Michael Jackson\", \"collectionName\":\"Thriller (25th Anniversary, Zombie Cover)\", \"trackName\":\"Billie Jean\", \"collectionCensoredName\":\"Thriller (25th Anniversary, Zombie Cover)\", \"trackCensoredName\":\"Billie Jean (Single Version)\", \"artistViewUrl\":\"http://itunes.apple.com/us/artist/michael-jackson/id32940?uo=4\", \"collectionViewUrl\":\"http://itunes.apple.com/us/album/billie-jean-single-version/id273047558?i=273047572&uo=4\", \"trackViewUrl\":\"http://itunes.apple.com/us/album/billie-jean-single-version/id273047558?i=273047572&uo=4\", \"previewUrl\":\"http://a1.phobos.apple.com/us/r1000/027/Music/44/bf/25/mzm.bqvvkdvz.aac.p.m4a\", \"artworkUrl30\":\"http://a1.phobos.apple.com/us/r1000/021/Music/ce/ed/a1/mzi.gqqhjkmr.30x30-50.jpg\", \"artworkUrl60\":\"http://a1.phobos.apple.com/us/r1000/021/Music/ce/ed/a1/mzi.gqqhjkmr.60x60-50.jpg\", \"artworkUrl100\":\"http://a1.phobos.apple.com/us/r1000/021/Music/ce/ed/a1/mzi.gqqhjkmr.100x100-75.jpg\", \"collectionPrice\":13.99, \"trackPrice\":1.29, \"releaseDate\":\"2008-02-12 08:00:00 Etc/GMT\", \"collectionExplicitness\":\"notExplicit\", \"trackExplicitness\":\"notExplicit\", \"discCount\":1, \"discNumber\":1, \"trackCount\":17, \"trackNumber\":6, \"trackTimeMillis\":293827, \"country\":\"USA\", \"currency\":\"USD\", \"primaryGenreName\":\"Pop\", \"contentAdvisoryRating\":null}, \n\ - {\"wrapperType\":\"track\", \"kind\":\"song\", \"artistId\":32940, \"collectionId\":269572838, \"trackId\":269573303, \"artistName\":\"Michael Jackson\", \"collectionName\":\"Thriller\", \"trackName\":\"Thriller\", \"collectionCensoredName\":\"Thriller\", \"trackCensoredName\":\"Thriller\", \"artistViewUrl\":\"http://itunes.apple.com/us/artist/michael-jackson/id32940?uo=4\", \"collectionViewUrl\":\"http://itunes.apple.com/us/album/thriller/id269572838?i=269573303&uo=4\", \"trackViewUrl\":\"http://itunes.apple.com/us/album/thriller/id269572838?i=269573303&uo=4\", \"previewUrl\":\"http://a1.phobos.apple.com/us/r1000/019/Music/17/27/c4/mzm.pmdlttre.aac.p.m4a\", \"artworkUrl30\":\"http://a1.phobos.apple.com/us/r1000/009/Music/93/56/fb/mzi.ttkkmity.30x30-50.jpg\", \"artworkUrl60\":\"http://a1.phobos.apple.com/us/r1000/009/Music/93/56/fb/mzi.ttkkmity.60x60-50.jpg\", \"artworkUrl100\":\"http://a1.phobos.apple.com/us/r1000/009/Music/93/56/fb/mzi.ttkkmity.100x100-75.jpg\", \"collectionPrice\":7.99, \"trackPrice\":1.29, \"releaseDate\":\"2008-01-03 08:00:00 Etc/GMT\", \"collectionExplicitness\":\"notExplicit\", \"trackExplicitness\":\"notExplicit\", \"discCount\":1, \"discNumber\":1, \"trackCount\":9, \"trackNumber\":4, \"trackTimeMillis\":357734, \"country\":\"USA\", \"currency\":\"USD\", \"primaryGenreName\":\"Pop\", \"contentAdvisoryRating\":null}, \n\ - {\"wrapperType\":\"track\", \"kind\":\"feature-movie\", \"artistId\":null, \"collectionId\":null, \"trackId\":336434787, \"artistName\":\"Kenny Ortega\", \"collectionName\":null, \"trackName\":\"Michael Jackson's This Is It\", \"collectionCensoredName\":null, \"trackCensoredName\":\"Michael Jackson's This Is It\", \"artistViewUrl\":null, \"collectionViewUrl\":null, \"trackViewUrl\":\"http://itunes.apple.com/WebObjects/MZStore.woa/wa/viewMovie?id=336434787&s=143441&uo=4\", \"previewUrl\":\"http://a1800.v.phobos.apple.com/us/r1000/042/Video/d1/58/2f/mzm.hpsxuujy..640x478.h264lc.d2.p.m4v\", \"artworkUrl30\":\"http://a1.phobos.apple.com/us/r1000/048/Video/f7/5a/70/mzi.lscbhwnt.30x30-50.jpg\", \"artworkUrl60\":\"http://a1.phobos.apple.com/us/r1000/048/Video/f7/5a/70/mzi.lscbhwnt.60x60-50.jpg\", \"artworkUrl100\":\"http://a1.phobos.apple.com/us/r1000/048/Video/f7/5a/70/mzi.lscbhwnt.100x100-75.jpg\", \"collectionPrice\":9.99, \"trackPrice\":9.99, \"releaseDate\":\"2010-01-26 08:00:00 Etc/GMT\", \"collectionExplicitness\":\"notExplicit\", \"trackExplicitness\":\"notExplicit\", \"discCount\":null, \"discNumber\":null, \"trackCount\":null, \"trackNumber\":null, \"trackTimeMillis\":6676927.0, \"country\":\"USA\", \"currency\":\"USD\", \"primaryGenreName\":\"Music Documentaries\", \"contentAdvisoryRating\":\"PG\"}, \n\ - {\"wrapperType\":\"track\", \"kind\":\"song\", \"artistId\":32940, \"collectionId\":273047558, \"trackId\":273047571, \"artistName\":\"Michael Jackson\", \"collectionName\":\"Thriller (25th Anniversary, Zombie Cover)\", \"trackName\":\"Beat It\", \"collectionCensoredName\":\"Thriller (25th Anniversary, Zombie Cover)\", \"trackCensoredName\":\"Beat It (Single Version)\", \"artistViewUrl\":\"http://itunes.apple.com/us/artist/michael-jackson/id32940?uo=4\", \"collectionViewUrl\":\"http://itunes.apple.com/us/album/beat-it-single-version/id273047558?i=273047571&uo=4\", \"trackViewUrl\":\"http://itunes.apple.com/us/album/beat-it-single-version/id273047558?i=273047571&uo=4\", \"previewUrl\":\"http://a1.phobos.apple.com/us/r1000/007/Music/8d/65/78/mzm.vskxkyqd.aac.p.m4a\", \"artworkUrl30\":\"http://a1.phobos.apple.com/us/r1000/021/Music/ce/ed/a1/mzi.gqqhjkmr.30x30-50.jpg\", \"artworkUrl60\":\"http://a1.phobos.apple.com/us/r1000/021/Music/ce/ed/a1/mzi.gqqhjkmr.60x60-50.jpg\", \"artworkUrl100\":\"http://a1.phobos.apple.com/us/r1000/021/Music/ce/ed/a1/mzi.gqqhjkmr.100x100-75.jpg\", \"collectionPrice\":13.99, \"trackPrice\":1.29, \"releaseDate\":\"2008-02-12 08:00:00 Etc/GMT\", \"collectionExplicitness\":\"notExplicit\", \"trackExplicitness\":\"notExplicit\", \"discCount\":1, \"discNumber\":1, \"trackCount\":17, \"trackNumber\":5, \"trackTimeMillis\":258040, \"country\":\"USA\", \"currency\":\"USD\", \"primaryGenreName\":\"Pop\", \"contentAdvisoryRating\":null}, \n\ - {\"wrapperType\":\"track\", \"kind\":\"song\", \"artistId\":32940, \"collectionId\":159292399, \"trackId\":159292926, \"artistName\":\"Michael Jackson\", \"collectionName\":\"The Essential Michael Jackson\", \"trackName\":\"Rockin' Robin\", \"collectionCensoredName\":\"The Essential Michael Jackson\", \"trackCensoredName\":\"Rockin' Robin\", \"artistViewUrl\":\"http://itunes.apple.com/us/artist/michael-jackson/id32940?uo=4\", \"collectionViewUrl\":\"http://itunes.apple.com/us/album/rockin-robin/id159292399?i=159292926&uo=4\", \"trackViewUrl\":\"http://itunes.apple.com/us/album/rockin-robin/id159292399?i=159292926&uo=4\", \"previewUrl\":\"http://a1.phobos.apple.com/us/r1000/040/Music/56/5b/e3/mzm.awbqxllv.aac.p.m4a\", \"artworkUrl30\":\"http://a1.phobos.apple.com/us/r1000/045/Features/7f/50/ee/dj.zygromnm.30x30-50.jpg\", \"artworkUrl60\":\"http://a1.phobos.apple.com/us/r1000/045/Features/7f/50/ee/dj.zygromnm.60x60-50.jpg\", \"artworkUrl100\":\"http://a1.phobos.apple.com/us/r1000/045/Features/7f/50/ee/dj.zygromnm.100x100-75.jpg\", \"collectionPrice\":16.99, \"trackPrice\":-1.00, \"releaseDate\":\"2005-07-19 07:00:00 Etc/GMT\", \"collectionExplicitness\":\"notExplicit\", \"trackExplicitness\":\"notExplicit\", \"discCount\":2, \"discNumber\":1, \"trackCount\":21, \"trackNumber\":5, \"trackTimeMillis\":152827, \"country\":\"USA\", \"currency\":\"USD\", \"primaryGenreName\":\"Pop\", \"contentAdvisoryRating\":null}, \n\ - {\"wrapperType\":\"track\", \"kind\":\"song\", \"artistId\":32940, \"collectionId\":159292399, \"trackId\":159292878, \"artistName\":\"Michael Jackson\", \"collectionName\":\"The Essential Michael Jackson\", \"trackName\":\"Got to Be There\", \"collectionCensoredName\":\"The Essential Michael Jackson\", \"trackCensoredName\":\"Got to Be There (Single Version)\", \"artistViewUrl\":\"http://itunes.apple.com/us/artist/michael-jackson/id32940?uo=4\", \"collectionViewUrl\":\"http://itunes.apple.com/us/album/got-to-be-there-single-version/id159292399?i=159292878&uo=4\", \"trackViewUrl\":\"http://itunes.apple.com/us/album/got-to-be-there-single-version/id159292399?i=159292878&uo=4\", \"previewUrl\":\"http://a1.phobos.apple.com/us/r1000/001/Music/4e/34/95/mzm.sojjnwtx.aac.p.m4a\", \"artworkUrl30\":\"http://a1.phobos.apple.com/us/r1000/045/Features/7f/50/ee/dj.zygromnm.30x30-50.jpg\", \"artworkUrl60\":\"http://a1.phobos.apple.com/us/r1000/045/Features/7f/50/ee/dj.zygromnm.60x60-50.jpg\", \"artworkUrl100\":\"http://a1.phobos.apple.com/us/r1000/045/Features/7f/50/ee/dj.zygromnm.100x100-75.jpg\", \"collectionPrice\":16.99, \"trackPrice\":-1.00, \"releaseDate\":\"2005-07-19 07:00:00 Etc/GMT\", \"collectionExplicitness\":\"notExplicit\", \"trackExplicitness\":\"notExplicit\", \"discCount\":2, \"discNumber\":1, \"trackCount\":21, \"trackNumber\":4, \"trackTimeMillis\":205027, \"country\":\"USA\", \"currency\":\"USD\", \"primaryGenreName\":\"Pop\", \"contentAdvisoryRating\":null}, \n\ - {\"wrapperType\":\"track\", \"kind\":\"song\", \"artistId\":32940, \"collectionId\":159292399, \"trackId\":159292992, \"artistName\":\"Michael Jackson\", \"collectionName\":\"The Essential Michael Jackson\", \"trackName\":\"Ben\", \"collectionCensoredName\":\"The Essential Michael Jackson\", \"trackCensoredName\":\"Ben (Single Version)\", \"artistViewUrl\":\"http://itunes.apple.com/us/artist/michael-jackson/id32940?uo=4\", \"collectionViewUrl\":\"http://itunes.apple.com/us/album/ben-single-version/id159292399?i=159292992&uo=4\", \"trackViewUrl\":\"http://itunes.apple.com/us/album/ben-single-version/id159292399?i=159292992&uo=4\", \"previewUrl\":\"http://a1.phobos.apple.com/us/r1000/043/Music/4f/fb/6a/mzm.krcoyxbb.aac.p.m4a\", \"artworkUrl30\":\"http://a1.phobos.apple.com/us/r1000/045/Features/7f/50/ee/dj.zygromnm.30x30-50.jpg\", \"artworkUrl60\":\"http://a1.phobos.apple.com/us/r1000/045/Features/7f/50/ee/dj.zygromnm.60x60-50.jpg\", \"artworkUrl100\":\"http://a1.phobos.apple.com/us/r1000/045/Features/7f/50/ee/dj.zygromnm.100x100-75.jpg\", \"collectionPrice\":16.99, \"trackPrice\":-1.00, \"releaseDate\":\"2005-07-19 07:00:00 Etc/GMT\", \"collectionExplicitness\":\"notExplicit\", \"trackExplicitness\":\"notExplicit\", \"discCount\":2, \"discNumber\":1, \"trackCount\":21, \"trackNumber\":6, \"trackTimeMillis\":166240, \"country\":\"USA\", \"currency\":\"USD\", \"primaryGenreName\":\"Pop\", \"contentAdvisoryRating\":null}, \n\ - {\"wrapperType\":\"track\", \"kind\":\"song\", \"artistId\":32940, \"collectionId\":159292399, \"trackId\":159294429, \"artistName\":\"Michael Jackson\", \"collectionName\":\"The Essential Michael Jackson\", \"trackName\":\"The Way You Make Me Feel\", \"collectionCensoredName\":\"The Essential Michael Jackson\", \"trackCensoredName\":\"The Way You Make Me Feel (Single Version)\", \"artistViewUrl\":\"http://itunes.apple.com/us/artist/michael-jackson/id32940?uo=4\", \"collectionViewUrl\":\"http://itunes.apple.com/us/album/the-way-you-make-me-feel-single/id159292399?i=159294429&uo=4\", \"trackViewUrl\":\"http://itunes.apple.com/us/album/the-way-you-make-me-feel-single/id159292399?i=159294429&uo=4\", \"previewUrl\":\"http://a1.phobos.apple.com/us/r1000/006/Music/9d/21/01/mzm.ottwxoed.aac.p.m4a\", \"artworkUrl30\":\"http://a1.phobos.apple.com/us/r1000/045/Features/7f/50/ee/dj.zygromnm.30x30-50.jpg\", \"artworkUrl60\":\"http://a1.phobos.apple.com/us/r1000/045/Features/7f/50/ee/dj.zygromnm.60x60-50.jpg\", \"artworkUrl100\":\"http://a1.phobos.apple.com/us/r1000/045/Features/7f/50/ee/dj.zygromnm.100x100-75.jpg\", \"collectionPrice\":16.99, \"trackPrice\":1.29, \"releaseDate\":\"2005-07-19 07:00:00 Etc/GMT\", \"collectionExplicitness\":\"notExplicit\", \"trackExplicitness\":\"notExplicit\", \"discCount\":2, \"discNumber\":2, \"trackCount\":17, \"trackNumber\":4, \"trackTimeMillis\":266347, \"country\":\"USA\", \"currency\":\"USD\", \"primaryGenreName\":\"Pop\", \"contentAdvisoryRating\":null}, \n\ - {\"wrapperType\":\"track\", \"kind\":\"song\", \"artistId\":32940, \"collectionId\":273598907, \"trackId\":273598922, \"artistName\":\"Michael Jackson\", \"collectionName\":\"Number Ones\", \"trackName\":\"The Way You Make Me Feel\", \"collectionCensoredName\":\"Number Ones\", \"trackCensoredName\":\"The Way You Make Me Feel\", \"artistViewUrl\":\"http://itunes.apple.com/us/artist/michael-jackson/id32940?uo=4\", \"collectionViewUrl\":\"http://itunes.apple.com/us/album/the-way-you-make-me-feel/id273598907?i=273598922&uo=4\", \"trackViewUrl\":\"http://itunes.apple.com/us/album/the-way-you-make-me-feel/id273598907?i=273598922&uo=4\", \"previewUrl\":\"http://a1.phobos.apple.com/us/r1000/029/Music/ef/be/16/mzm.yvsrzzml.aac.p.m4a\", \"artworkUrl30\":\"http://a1.phobos.apple.com/us/r1000/050/Music/bf/2c/16/mzi.opgmualf.30x30-50.jpg\", \"artworkUrl60\":\"http://a1.phobos.apple.com/us/r1000/050/Music/bf/2c/16/mzi.opgmualf.60x60-50.jpg\", \"artworkUrl100\":\"http://a1.phobos.apple.com/us/r1000/050/Music/bf/2c/16/mzi.opgmualf.100x100-75.jpg\", \"collectionPrice\":11.99, \"trackPrice\":1.29, \"releaseDate\":\"2003-11-18 08:00:00 Etc/GMT\", \"collectionExplicitness\":\"notExplicit\", \"trackExplicitness\":\"notExplicit\", \"discCount\":1, \"discNumber\":1, \"trackCount\":18, \"trackNumber\":9, \"trackTimeMillis\":296907, \"country\":\"USA\", \"currency\":\"USD\", \"primaryGenreName\":\"Pop\", \"contentAdvisoryRating\":null}, \n\ - {\"wrapperType\":\"track\", \"kind\":\"song\", \"artistId\":32940, \"collectionId\":269572838, \"trackId\":269573364, \"artistName\":\"Michael Jackson\", \"collectionName\":\"Thriller\", \"trackName\":\"Billie Jean\", \"collectionCensoredName\":\"Thriller\", \"trackCensoredName\":\"Billie Jean\", \"artistViewUrl\":\"http://itunes.apple.com/us/artist/michael-jackson/id32940?uo=4\", \"collectionViewUrl\":\"http://itunes.apple.com/us/album/billie-jean/id269572838?i=269573364&uo=4\", \"trackViewUrl\":\"http://itunes.apple.com/us/album/billie-jean/id269572838?i=269573364&uo=4\", \"previewUrl\":\"http://a1.phobos.apple.com/us/r1000/009/Music/dd/e6/51/mzm.nootzobk.aac.p.m4a\", \"artworkUrl30\":\"http://a1.phobos.apple.com/us/r1000/009/Music/93/56/fb/mzi.ttkkmity.30x30-50.jpg\", \"artworkUrl60\":\"http://a1.phobos.apple.com/us/r1000/009/Music/93/56/fb/mzi.ttkkmity.60x60-50.jpg\", \"artworkUrl100\":\"http://a1.phobos.apple.com/us/r1000/009/Music/93/56/fb/mzi.ttkkmity.100x100-75.jpg\", \"collectionPrice\":7.99, \"trackPrice\":1.29, \"releaseDate\":\"2008-01-03 08:00:00 Etc/GMT\", \"collectionExplicitness\":\"notExplicit\", \"trackExplicitness\":\"notExplicit\", \"discCount\":1, \"discNumber\":1, \"trackCount\":9, \"trackNumber\":6, \"trackTimeMillis\":294210, \"country\":\"USA\", \"currency\":\"USD\", \"primaryGenreName\":\"Pop\", \"contentAdvisoryRating\":null}, \n\ - {\"wrapperType\":\"track\", \"kind\":\"song\", \"artistId\":32940, \"collectionId\":273598907, \"trackId\":273598921, \"artistName\":\"Michael Jackson\", \"collectionName\":\"Number Ones\", \"trackName\":\"Smooth Criminal\", \"collectionCensoredName\":\"Number Ones\", \"trackCensoredName\":\"Smooth Criminal\", \"artistViewUrl\":\"http://itunes.apple.com/us/artist/michael-jackson/id32940?uo=4\", \"collectionViewUrl\":\"http://itunes.apple.com/us/album/smooth-criminal/id273598907?i=273598921&uo=4\", \"trackViewUrl\":\"http://itunes.apple.com/us/album/smooth-criminal/id273598907?i=273598921&uo=4\", \"previewUrl\":\"http://a1.phobos.apple.com/us/r1000/027/Music/c4/ae/4a/mzm.imuibptv.aac.p.m4a\", \"artworkUrl30\":\"http://a1.phobos.apple.com/us/r1000/050/Music/bf/2c/16/mzi.opgmualf.30x30-50.jpg\", \"artworkUrl60\":\"http://a1.phobos.apple.com/us/r1000/050/Music/bf/2c/16/mzi.opgmualf.60x60-50.jpg\", \"artworkUrl100\":\"http://a1.phobos.apple.com/us/r1000/050/Music/bf/2c/16/mzi.opgmualf.100x100-75.jpg\", \"collectionPrice\":11.99, \"trackPrice\":1.29, \"releaseDate\":\"2003-11-18 08:00:00 Etc/GMT\", \"collectionExplicitness\":\"notExplicit\", \"trackExplicitness\":\"notExplicit\", \"discCount\":1, \"discNumber\":1, \"trackCount\":18, \"trackNumber\":8, \"trackTimeMillis\":257067, \"country\":\"USA\", \"currency\":\"USD\", \"primaryGenreName\":\"Pop\", \"contentAdvisoryRating\":null}, \n\ - {\"wrapperType\":\"track\", \"kind\":\"song\", \"artistId\":32940, \"collectionId\":273598907, \"trackId\":273598923, \"artistName\":\"Michael Jackson\", \"collectionName\":\"Number Ones\", \"trackName\":\"Man In the Mirror\", \"collectionCensoredName\":\"Number Ones\", \"trackCensoredName\":\"Man In the Mirror\", \"artistViewUrl\":\"http://itunes.apple.com/us/artist/michael-jackson/id32940?uo=4\", \"collectionViewUrl\":\"http://itunes.apple.com/us/album/man-in-the-mirror/id273598907?i=273598923&uo=4\", \"trackViewUrl\":\"http://itunes.apple.com/us/album/man-in-the-mirror/id273598907?i=273598923&uo=4\", \"previewUrl\":\"http://a1.phobos.apple.com/us/r1000/038/Music/2b/db/78/mzm.epuljada.aac.p.m4a\", \"artworkUrl30\":\"http://a1.phobos.apple.com/us/r1000/050/Music/bf/2c/16/mzi.opgmualf.30x30-50.jpg\", \"artworkUrl60\":\"http://a1.phobos.apple.com/us/r1000/050/Music/bf/2c/16/mzi.opgmualf.60x60-50.jpg\", \"artworkUrl100\":\"http://a1.phobos.apple.com/us/r1000/050/Music/bf/2c/16/mzi.opgmualf.100x100-75.jpg\", \"collectionPrice\":11.99, \"trackPrice\":1.29, \"releaseDate\":\"2003-11-18 08:00:00 Etc/GMT\", \"collectionExplicitness\":\"notExplicit\", \"trackExplicitness\":\"notExplicit\", \"discCount\":1, \"discNumber\":1, \"trackCount\":18, \"trackNumber\":10, \"trackTimeMillis\":303960, \"country\":\"USA\", \"currency\":\"USD\", \"primaryGenreName\":\"Pop\", \"contentAdvisoryRating\":null}, \n\ - {\"wrapperType\":\"track\", \"kind\":\"song\", \"artistId\":32940, \"collectionId\":273598907, \"trackId\":273598929, \"artistName\":\"Michael Jackson\", \"collectionName\":\"Number Ones\", \"trackName\":\"Earth Song\", \"collectionCensoredName\":\"Number Ones\", \"trackCensoredName\":\"Earth Song\", \"artistViewUrl\":\"http://itunes.apple.com/us/artist/michael-jackson/id32940?uo=4\", \"collectionViewUrl\":\"http://itunes.apple.com/us/album/earth-song/id273598907?i=273598929&uo=4\", \"trackViewUrl\":\"http://itunes.apple.com/us/album/earth-song/id273598907?i=273598929&uo=4\", \"previewUrl\":\"http://a1.phobos.apple.com/us/r1000/055/Music/bc/1c/46/mzm.wjqskrpg.aac.p.m4a\", \"artworkUrl30\":\"http://a1.phobos.apple.com/us/r1000/050/Music/bf/2c/16/mzi.opgmualf.30x30-50.jpg\", \"artworkUrl60\":\"http://a1.phobos.apple.com/us/r1000/050/Music/bf/2c/16/mzi.opgmualf.60x60-50.jpg\", \"artworkUrl100\":\"http://a1.phobos.apple.com/us/r1000/050/Music/bf/2c/16/mzi.opgmualf.100x100-75.jpg\", \"collectionPrice\":11.99, \"trackPrice\":1.29, \"releaseDate\":\"2003-11-18 08:00:00 Etc/GMT\", \"collectionExplicitness\":\"notExplicit\", \"trackExplicitness\":\"notExplicit\", \"discCount\":1, \"discNumber\":1, \"trackCount\":18, \"trackNumber\":14, \"trackTimeMillis\":301000, \"country\":\"USA\", \"currency\":\"USD\", \"primaryGenreName\":\"Pop\", \"contentAdvisoryRating\":null}, \n\ - {\"wrapperType\":\"track\", \"kind\":\"song\", \"artistId\":32940, \"collectionId\":273598907, \"trackId\":273598926, \"artistName\":\"Michael Jackson\", \"collectionName\":\"Number Ones\", \"trackName\":\"Black or White\", \"collectionCensoredName\":\"Number Ones\", \"trackCensoredName\":\"Black or White\", \"artistViewUrl\":\"http://itunes.apple.com/us/artist/michael-jackson/id32940?uo=4\", \"collectionViewUrl\":\"http://itunes.apple.com/us/album/black-or-white/id273598907?i=273598926&uo=4\", \"trackViewUrl\":\"http://itunes.apple.com/us/album/black-or-white/id273598907?i=273598926&uo=4\", \"previewUrl\":\"http://a1.phobos.apple.com/us/r1000/039/Music/0f/f9/e1/mzm.xxdcjsco.aac.p.m4a\", \"artworkUrl30\":\"http://a1.phobos.apple.com/us/r1000/050/Music/bf/2c/16/mzi.opgmualf.30x30-50.jpg\", \"artworkUrl60\":\"http://a1.phobos.apple.com/us/r1000/050/Music/bf/2c/16/mzi.opgmualf.60x60-50.jpg\", \"artworkUrl100\":\"http://a1.phobos.apple.com/us/r1000/050/Music/bf/2c/16/mzi.opgmualf.100x100-75.jpg\", \"collectionPrice\":11.99, \"trackPrice\":1.29, \"releaseDate\":\"2003-11-18 08:00:00 Etc/GMT\", \"collectionExplicitness\":\"notExplicit\", \"trackExplicitness\":\"notExplicit\", \"discCount\":1, \"discNumber\":1, \"trackCount\":18, \"trackNumber\":12, \"trackTimeMillis\":198507, \"country\":\"USA\", \"currency\":\"USD\", \"primaryGenreName\":\"Pop\", \"contentAdvisoryRating\":null}, \n\ - {\"wrapperType\":\"track\", \"kind\":\"song\", \"artistId\":32940, \"collectionId\":273047558, \"trackId\":273047574, \"artistName\":\"Michael Jackson\", \"collectionName\":\"Thriller (25th Anniversary, Zombie Cover)\", \"trackName\":\"P.Y.T. (Pretty Young Thing)\", \"collectionCensoredName\":\"Thriller (25th Anniversary, Zombie Cover)\", \"trackCensoredName\":\"P.Y.T. (Pretty Young Thing)\", \"artistViewUrl\":\"http://itunes.apple.com/us/artist/michael-jackson/id32940?uo=4\", \"collectionViewUrl\":\"http://itunes.apple.com/us/album/p-y-t-pretty-young-thing/id273047558?i=273047574&uo=4\", \"trackViewUrl\":\"http://itunes.apple.com/us/album/p-y-t-pretty-young-thing/id273047558?i=273047574&uo=4\", \"previewUrl\":\"http://a1.phobos.apple.com/us/r1000/044/Music/b3/8c/b2/mzm.fqxknpby.aac.p.m4a\", \"artworkUrl30\":\"http://a1.phobos.apple.com/us/r1000/021/Music/ce/ed/a1/mzi.gqqhjkmr.30x30-50.jpg\", \"artworkUrl60\":\"http://a1.phobos.apple.com/us/r1000/021/Music/ce/ed/a1/mzi.gqqhjkmr.60x60-50.jpg\", \"artworkUrl100\":\"http://a1.phobos.apple.com/us/r1000/021/Music/ce/ed/a1/mzi.gqqhjkmr.100x100-75.jpg\", \"collectionPrice\":13.99, \"trackPrice\":1.29, \"releaseDate\":\"2008-02-12 08:00:00 Etc/GMT\", \"collectionExplicitness\":\"notExplicit\", \"trackExplicitness\":\"notExplicit\", \"discCount\":1, \"discNumber\":1, \"trackCount\":17, \"trackNumber\":8, \"trackTimeMillis\":238733, \"country\":\"USA\", \"currency\":\"USD\", \"primaryGenreName\":\"Pop\", \"contentAdvisoryRating\":null}, \n\ - {\"wrapperType\":\"track\", \"kind\":\"song\", \"artistId\":32940, \"collectionId\":336643808, \"trackId\":336644173, \"artistName\":\"Michael Jackson\", \"collectionName\":\"Michael Jackson's This Is It (The Music That Inspired the Movie)\", \"trackName\":\"They Don't Care About Us\", \"collectionCensoredName\":\"Michael Jackson's This Is It (The Music That Inspired the Movie)\", \"trackCensoredName\":\"They Don't Care About Us (Remastered)\", \"artistViewUrl\":\"http://itunes.apple.com/us/artist/michael-jackson/id32940?uo=4\", \"collectionViewUrl\":\"http://itunes.apple.com/us/album/they-dont-care-about-us-remastered/id336643808?i=336644173&uo=4\", \"trackViewUrl\":\"http://itunes.apple.com/us/album/they-dont-care-about-us-remastered/id336643808?i=336644173&uo=4\", \"previewUrl\":\"http://a1.phobos.apple.com/us/r1000/026/Music/60/2d/1a/mzm.yquavkpz.aac.p.m4a\", \"artworkUrl30\":\"http://a1.phobos.apple.com/us/r1000/056/Music/c8/d7/c4/mzi.ddlxucja.30x30-50.jpg\", \"artworkUrl60\":\"http://a1.phobos.apple.com/us/r1000/056/Music/c8/d7/c4/mzi.ddlxucja.60x60-50.jpg\", \"artworkUrl100\":\"http://a1.phobos.apple.com/us/r1000/056/Music/c8/d7/c4/mzi.ddlxucja.100x100-75.jpg\", \"collectionPrice\":13.99, \"trackPrice\":1.29, \"releaseDate\":\"2009-10-26 07:00:00 Etc/GMT\", \"collectionExplicitness\":\"notExplicit\", \"trackExplicitness\":\"notExplicit\", \"discCount\":2, \"discNumber\":1, \"trackCount\":16, \"trackNumber\":3, \"trackTimeMillis\":284536, \"country\":\"USA\", \"currency\":\"USD\", \"primaryGenreName\":\"Pop\", \"contentAdvisoryRating\":null}, \n\ - {\"wrapperType\":\"track\", \"kind\":\"song\", \"artistId\":32940, \"collectionId\":273598907, \"trackId\":273598915, \"artistName\":\"Michael Jackson\", \"collectionName\":\"Number Ones\", \"trackName\":\"Beat It\", \"collectionCensoredName\":\"Number Ones\", \"trackCensoredName\":\"Beat It\", \"artistViewUrl\":\"http://itunes.apple.com/us/artist/michael-jackson/id32940?uo=4\", \"collectionViewUrl\":\"http://itunes.apple.com/us/album/beat-it/id273598907?i=273598915&uo=4\", \"trackViewUrl\":\"http://itunes.apple.com/us/album/beat-it/id273598907?i=273598915&uo=4\", \"previewUrl\":\"http://a1.phobos.apple.com/us/r1000/057/Music/97/e0/ee/mzm.ixhdiedc.aac.p.m4a\", \"artworkUrl30\":\"http://a1.phobos.apple.com/us/r1000/050/Music/bf/2c/16/mzi.opgmualf.30x30-50.jpg\", \"artworkUrl60\":\"http://a1.phobos.apple.com/us/r1000/050/Music/bf/2c/16/mzi.opgmualf.60x60-50.jpg\", \"artworkUrl100\":\"http://a1.phobos.apple.com/us/r1000/050/Music/bf/2c/16/mzi.opgmualf.100x100-75.jpg\", \"collectionPrice\":11.99, \"trackPrice\":1.29, \"releaseDate\":\"2003-11-18 08:00:00 Etc/GMT\", \"collectionExplicitness\":\"notExplicit\", \"trackExplicitness\":\"notExplicit\", \"discCount\":1, \"discNumber\":1, \"trackCount\":18, \"trackNumber\":4, \"trackTimeMillis\":257973, \"country\":\"USA\", \"currency\":\"USD\", \"primaryGenreName\":\"Pop\", \"contentAdvisoryRating\":null}, \n\ - {\"wrapperType\":\"track\", \"kind\":\"song\", \"artistId\":32940, \"collectionId\":273598907, \"trackId\":273598928, \"artistName\":\"Michael Jackson\", \"collectionName\":\"Number Ones\", \"trackName\":\"You Are Not Alone\", \"collectionCensoredName\":\"Number Ones\", \"trackCensoredName\":\"You Are Not Alone\", \"artistViewUrl\":\"http://itunes.apple.com/us/artist/michael-jackson/id32940?uo=4\", \"collectionViewUrl\":\"http://itunes.apple.com/us/album/you-are-not-alone/id273598907?i=273598928&uo=4\", \"trackViewUrl\":\"http://itunes.apple.com/us/album/you-are-not-alone/id273598907?i=273598928&uo=4\", \"previewUrl\":\"http://a1.phobos.apple.com/us/r1000/024/Music/5c/b2/52/mzm.qywpgiop.aac.p.m4a\", \"artworkUrl30\":\"http://a1.phobos.apple.com/us/r1000/050/Music/bf/2c/16/mzi.opgmualf.30x30-50.jpg\", \"artworkUrl60\":\"http://a1.phobos.apple.com/us/r1000/050/Music/bf/2c/16/mzi.opgmualf.60x60-50.jpg\", \"artworkUrl100\":\"http://a1.phobos.apple.com/us/r1000/050/Music/bf/2c/16/mzi.opgmualf.100x100-75.jpg\", \"collectionPrice\":11.99, \"trackPrice\":1.29, \"releaseDate\":\"2003-11-18 08:00:00 Etc/GMT\", \"collectionExplicitness\":\"notExplicit\", \"trackExplicitness\":\"notExplicit\", \"discCount\":1, \"discNumber\":1, \"trackCount\":18, \"trackNumber\":13, \"trackTimeMillis\":274000, \"country\":\"USA\", \"currency\":\"USD\", \"primaryGenreName\":\"Pop\", \"contentAdvisoryRating\":null}, \n\ - {\"wrapperType\":\"track\", \"kind\":\"song\", \"artistId\":32940, \"collectionId\":273598907, \"trackId\":273598924, \"artistName\":\"Michael Jackson\", \"collectionName\":\"Number Ones\", \"trackName\":\"Dirty Diana\", \"collectionCensoredName\":\"Number Ones\", \"trackCensoredName\":\"Dirty Diana\", \"artistViewUrl\":\"http://itunes.apple.com/us/artist/michael-jackson/id32940?uo=4\", \"collectionViewUrl\":\"http://itunes.apple.com/us/album/dirty-diana/id273598907?i=273598924&uo=4\", \"trackViewUrl\":\"http://itunes.apple.com/us/album/dirty-diana/id273598907?i=273598924&uo=4\", \"previewUrl\":\"http://a1.phobos.apple.com/us/r1000/040/Music/68/dd/94/mzm.cvhhikkz.aac.p.m4a\", \"artworkUrl30\":\"http://a1.phobos.apple.com/us/r1000/050/Music/bf/2c/16/mzi.opgmualf.30x30-50.jpg\", \"artworkUrl60\":\"http://a1.phobos.apple.com/us/r1000/050/Music/bf/2c/16/mzi.opgmualf.60x60-50.jpg\", \"artworkUrl100\":\"http://a1.phobos.apple.com/us/r1000/050/Music/bf/2c/16/mzi.opgmualf.100x100-75.jpg\", \"collectionPrice\":11.99, \"trackPrice\":1.29, \"releaseDate\":\"2003-11-18 08:00:00 Etc/GMT\", \"collectionExplicitness\":\"notExplicit\", \"trackExplicitness\":\"notExplicit\", \"discCount\":1, \"discNumber\":1, \"trackCount\":18, \"trackNumber\":11, \"trackTimeMillis\":280600, \"country\":\"USA\", \"currency\":\"USD\", \"primaryGenreName\":\"Pop\", \"contentAdvisoryRating\":null}, \n\ - {\"wrapperType\":\"track\", \"kind\":\"song\", \"artistId\":32940, \"collectionId\":273598907, \"trackId\":273598919, \"artistName\":\"Michael Jackson\", \"collectionName\":\"Number Ones\", \"trackName\":\"Bad\", \"collectionCensoredName\":\"Number Ones\", \"trackCensoredName\":\"Bad\", \"artistViewUrl\":\"http://itunes.apple.com/us/artist/michael-jackson/id32940?uo=4\", \"collectionViewUrl\":\"http://itunes.apple.com/us/album/bad/id273598907?i=273598919&uo=4\", \"trackViewUrl\":\"http://itunes.apple.com/us/album/bad/id273598907?i=273598919&uo=4\", \"previewUrl\":\"http://a1.phobos.apple.com/us/r1000/011/Music/bb/af/0f/mzm.nehixvxl.aac.p.m4a\", \"artworkUrl30\":\"http://a1.phobos.apple.com/us/r1000/050/Music/bf/2c/16/mzi.opgmualf.30x30-50.jpg\", \"artworkUrl60\":\"http://a1.phobos.apple.com/us/r1000/050/Music/bf/2c/16/mzi.opgmualf.60x60-50.jpg\", \"artworkUrl100\":\"http://a1.phobos.apple.com/us/r1000/050/Music/bf/2c/16/mzi.opgmualf.100x100-75.jpg\", \"collectionPrice\":11.99, \"trackPrice\":1.29, \"releaseDate\":\"2003-11-18 08:00:00 Etc/GMT\", \"collectionExplicitness\":\"notExplicit\", \"trackExplicitness\":\"notExplicit\", \"discCount\":1, \"discNumber\":1, \"trackCount\":18, \"trackNumber\":7, \"trackTimeMillis\":246240, \"country\":\"USA\", \"currency\":\"USD\", \"primaryGenreName\":\"Pop\", \"contentAdvisoryRating\":null}, \n\ - {\"wrapperType\":\"track\", \"kind\":\"song\", \"artistId\":32940, \"collectionId\":273598907, \"trackId\":273598913, \"artistName\":\"Michael Jackson\", \"collectionName\":\"Number Ones\", \"trackName\":\"Rock With You\", \"collectionCensoredName\":\"Number Ones\", \"trackCensoredName\":\"Rock With You\", \"artistViewUrl\":\"http://itunes.apple.com/us/artist/michael-jackson/id32940?uo=4\", \"collectionViewUrl\":\"http://itunes.apple.com/us/album/rock-with-you/id273598907?i=273598913&uo=4\", \"trackViewUrl\":\"http://itunes.apple.com/us/album/rock-with-you/id273598907?i=273598913&uo=4\", \"previewUrl\":\"http://a1.phobos.apple.com/us/r1000/024/Music/d2/c3/56/mzm.fijnujmr.aac.p.m4a\", \"artworkUrl30\":\"http://a1.phobos.apple.com/us/r1000/050/Music/bf/2c/16/mzi.opgmualf.30x30-50.jpg\", \"artworkUrl60\":\"http://a1.phobos.apple.com/us/r1000/050/Music/bf/2c/16/mzi.opgmualf.60x60-50.jpg\", \"artworkUrl100\":\"http://a1.phobos.apple.com/us/r1000/050/Music/bf/2c/16/mzi.opgmualf.100x100-75.jpg\", \"collectionPrice\":11.99, \"trackPrice\":1.29, \"releaseDate\":\"2003-11-18 08:00:00 Etc/GMT\", \"collectionExplicitness\":\"notExplicit\", \"trackExplicitness\":\"notExplicit\", \"discCount\":1, \"discNumber\":1, \"trackCount\":18, \"trackNumber\":2, \"trackTimeMillis\":220360, \"country\":\"USA\", \"currency\":\"USD\", \"primaryGenreName\":\"Pop\", \"contentAdvisoryRating\":null}, \n\ - {\"wrapperType\":\"track\", \"kind\":\"song\", \"artistId\":32940, \"collectionId\":408082743, \"trackId\":408082820, \"artistName\":\"Michael Jackson\", \"collectionName\":\"Michael\", \"trackName\":\"Hold My Hand\", \"collectionCensoredName\":\"Michael\", \"trackCensoredName\":\"Hold My Hand (Duet with Akon)\", \"artistViewUrl\":\"http://itunes.apple.com/us/artist/michael-jackson/id32940?uo=4\", \"collectionViewUrl\":\"http://itunes.apple.com/us/album/hold-my-hand-duet-with-akon/id408082743?i=408082820&uo=4\", \"trackViewUrl\":\"http://itunes.apple.com/us/album/hold-my-hand-duet-with-akon/id408082743?i=408082820&uo=4\", \"previewUrl\":\"http://a1.phobos.apple.com/us/r1000/057/Music/20/8f/6b/mzi.oytclngj.aac.p.m4a\", \"artworkUrl30\":\"http://a1.phobos.apple.com/us/r1000/046/Music/01/59/22/mzi.rihkbgvx.30x30-50.jpg\", \"artworkUrl60\":\"http://a1.phobos.apple.com/us/r1000/046/Music/01/59/22/mzi.rihkbgvx.60x60-50.jpg\", \"artworkUrl100\":\"http://a1.phobos.apple.com/us/r1000/046/Music/01/59/22/mzi.rihkbgvx.100x100-75.jpg\", \"collectionPrice\":11.99, \"trackPrice\":1.29, \"releaseDate\":\"2010-12-14 08:00:00 Etc/GMT\", \"collectionExplicitness\":\"notExplicit\", \"trackExplicitness\":\"notExplicit\", \"discCount\":1, \"discNumber\":1, \"trackCount\":10, \"trackNumber\":1, \"trackTimeMillis\":212227, \"country\":\"USA\", \"currency\":\"USD\", \"primaryGenreName\":\"Pop\", \"contentAdvisoryRating\":null}, \n\ - {\"wrapperType\":\"track\", \"kind\":\"song\", \"artistId\":32940, \"collectionId\":269572838, \"trackId\":269572927, \"artistName\":\"Michael Jackson\", \"collectionName\":\"Thriller\", \"trackName\":\"Wanna Be Startin' Somethin'\", \"collectionCensoredName\":\"Thriller\", \"trackCensoredName\":\"Wanna Be Startin' Somethin'\", \"artistViewUrl\":\"http://itunes.apple.com/us/artist/michael-jackson/id32940?uo=4\", \"collectionViewUrl\":\"http://itunes.apple.com/us/album/wanna-be-startin-somethin/id269572838?i=269572927&uo=4\", \"trackViewUrl\":\"http://itunes.apple.com/us/album/wanna-be-startin-somethin/id269572838?i=269572927&uo=4\", \"previewUrl\":\"http://a1.phobos.apple.com/us/r1000/053/Music/24/73/dc/mzm.ydlttqyc.aac.p.m4a\", \"artworkUrl30\":\"http://a1.phobos.apple.com/us/r1000/009/Music/93/56/fb/mzi.ttkkmity.30x30-50.jpg\", \"artworkUrl60\":\"http://a1.phobos.apple.com/us/r1000/009/Music/93/56/fb/mzi.ttkkmity.60x60-50.jpg\", \"artworkUrl100\":\"http://a1.phobos.apple.com/us/r1000/009/Music/93/56/fb/mzi.ttkkmity.100x100-75.jpg\", \"collectionPrice\":7.99, \"trackPrice\":1.29, \"releaseDate\":\"2008-01-03 08:00:00 Etc/GMT\", \"collectionExplicitness\":\"notExplicit\", \"trackExplicitness\":\"notExplicit\", \"discCount\":1, \"discNumber\":1, \"trackCount\":9, \"trackNumber\":1, \"trackTimeMillis\":363361, \"country\":\"USA\", \"currency\":\"USD\", \"primaryGenreName\":\"Pop\", \"contentAdvisoryRating\":null}, \n\ - {\"wrapperType\":\"track\", \"kind\":\"song\", \"artistId\":32940, \"collectionId\":269572838, \"trackId\":269573405, \"artistName\":\"Michael Jackson\", \"collectionName\":\"Thriller\", \"trackName\":\"Human Nature\", \"collectionCensoredName\":\"Thriller\", \"trackCensoredName\":\"Human Nature\", \"artistViewUrl\":\"http://itunes.apple.com/us/artist/michael-jackson/id32940?uo=4\", \"collectionViewUrl\":\"http://itunes.apple.com/us/album/human-nature/id269572838?i=269573405&uo=4\", \"trackViewUrl\":\"http://itunes.apple.com/us/album/human-nature/id269572838?i=269573405&uo=4\", \"previewUrl\":\"http://a1.phobos.apple.com/us/r1000/014/Music/4b/91/04/mzm.veptknou.aac.p.m4a\", \"artworkUrl30\":\"http://a1.phobos.apple.com/us/r1000/009/Music/93/56/fb/mzi.ttkkmity.30x30-50.jpg\", \"artworkUrl60\":\"http://a1.phobos.apple.com/us/r1000/009/Music/93/56/fb/mzi.ttkkmity.60x60-50.jpg\", \"artworkUrl100\":\"http://a1.phobos.apple.com/us/r1000/009/Music/93/56/fb/mzi.ttkkmity.100x100-75.jpg\", \"collectionPrice\":7.99, \"trackPrice\":1.29, \"releaseDate\":\"2008-01-03 08:00:00 Etc/GMT\", \"collectionExplicitness\":\"notExplicit\", \"trackExplicitness\":\"notExplicit\", \"discCount\":1, \"discNumber\":1, \"trackCount\":9, \"trackNumber\":7, \"trackTimeMillis\":245948, \"country\":\"USA\", \"currency\":\"USD\", \"primaryGenreName\":\"Pop\", \"contentAdvisoryRating\":null}]\n\ - }\n\n\n" - http_version: "1.1" -- !ruby/struct:VCR::HTTPInteraction - request: !ruby/struct:VCR::Request - method: :get - uri: http://ax.itunes.apple.com:80/WebObjects/MZStoreServices.woa/wa/wsSearch?limit=2&media=all&term=Michael%20Jackson - body: - headers: - response: !ruby/struct:VCR::Response - status: !ruby/struct:VCR::ResponseStatus - code: 200 - message: OK - headers: - x-apple-orig-url-path: - - /WebObjects/MZStoreServices.woa/wa/wsSearch?term=Michael%20Jackson&media=all&limit=2 - x-apple-application-site: - - CUP - x-apple-max-age: - - "3600" - x-apple-woa-inbound-url: - - /WebObjects/MZStoreServices.woa/wa/wsSearch?term=Michael%20Jackson&media=all&limit=2 - content-type: - - text/javascript; charset=utf-8 - x-apple-application-instance: - - "355" - x-webobjects-loadaverage: - - "0" - x-ns-label: - - mzstoreservice-lb - expires: - - Mon, 31 Jan 2011 05:44:01 GMT - cache-control: - - max-age=0, no-cache - pragma: - - no-cache - date: - - Mon, 31 Jan 2011 05:44:01 GMT - content-length: - - "2762" - vary: - - X-Apple-Store-Front - x-apple-partner: - - origin.0 - body: "\n\n\n\ - {\n \"resultCount\":2,\n \"results\": [\n\ - {\"wrapperType\":\"track\", \"kind\":\"song\", \"artistId\":32940, \"collectionId\":159292399, \"trackId\":159294478, \"artistName\":\"Michael Jackson\", \"collectionName\":\"The Essential Michael Jackson\", \"trackName\":\"Man In the Mirror\", \"collectionCensoredName\":\"The Essential Michael Jackson\", \"trackCensoredName\":\"Man In the Mirror\", \"artistViewUrl\":\"http://itunes.apple.com/us/artist/michael-jackson/id32940?uo=4\", \"collectionViewUrl\":\"http://itunes.apple.com/us/album/man-in-the-mirror/id159292399?i=159294478&uo=4\", \"trackViewUrl\":\"http://itunes.apple.com/us/album/man-in-the-mirror/id159292399?i=159294478&uo=4\", \"previewUrl\":\"http://a1.phobos.apple.com/us/r1000/012/Music/a1/bd/c3/mzm.ktvmybsb.aac.p.m4a\", \"artworkUrl30\":\"http://a1.phobos.apple.com/us/r1000/045/Features/7f/50/ee/dj.zygromnm.30x30-50.jpg\", \"artworkUrl60\":\"http://a1.phobos.apple.com/us/r1000/045/Features/7f/50/ee/dj.zygromnm.60x60-50.jpg\", \"artworkUrl100\":\"http://a1.phobos.apple.com/us/r1000/045/Features/7f/50/ee/dj.zygromnm.100x100-75.jpg\", \"collectionPrice\":16.99, \"trackPrice\":1.29, \"releaseDate\":\"2005-07-19 07:00:00 Etc/GMT\", \"collectionExplicitness\":\"notExplicit\", \"trackExplicitness\":\"notExplicit\", \"discCount\":2, \"discNumber\":2, \"trackCount\":17, \"trackNumber\":5, \"trackTimeMillis\":318960, \"country\":\"USA\", \"currency\":\"USD\", \"primaryGenreName\":\"Pop\", \"contentAdvisoryRating\":null}, \n\ - {\"wrapperType\":\"track\", \"kind\":\"song\", \"artistId\":32940, \"collectionId\":159292399, \"trackId\":159293848, \"artistName\":\"Michael Jackson\", \"collectionName\":\"The Essential Michael Jackson\", \"trackName\":\"Billie Jean\", \"collectionCensoredName\":\"The Essential Michael Jackson\", \"trackCensoredName\":\"Billie Jean (Single Version)\", \"artistViewUrl\":\"http://itunes.apple.com/us/artist/michael-jackson/id32940?uo=4\", \"collectionViewUrl\":\"http://itunes.apple.com/us/album/billie-jean-single-version/id159292399?i=159293848&uo=4\", \"trackViewUrl\":\"http://itunes.apple.com/us/album/billie-jean-single-version/id159292399?i=159293848&uo=4\", \"previewUrl\":\"http://a1.phobos.apple.com/us/r1000/057/Music/fd/8b/40/mzm.staswrxu.aac.p.m4a\", \"artworkUrl30\":\"http://a1.phobos.apple.com/us/r1000/045/Features/7f/50/ee/dj.zygromnm.30x30-50.jpg\", \"artworkUrl60\":\"http://a1.phobos.apple.com/us/r1000/045/Features/7f/50/ee/dj.zygromnm.60x60-50.jpg\", \"artworkUrl100\":\"http://a1.phobos.apple.com/us/r1000/045/Features/7f/50/ee/dj.zygromnm.100x100-75.jpg\", \"collectionPrice\":16.99, \"trackPrice\":1.29, \"releaseDate\":\"2005-07-19 07:00:00 Etc/GMT\", \"collectionExplicitness\":\"notExplicit\", \"trackExplicitness\":\"notExplicit\", \"discCount\":2, \"discNumber\":1, \"trackCount\":21, \"trackNumber\":16, \"trackTimeMillis\":292960, \"country\":\"USA\", \"currency\":\"USD\", \"primaryGenreName\":\"Pop\", \"contentAdvisoryRating\":null}]\n\ - }\n\n\n" - http_version: "1.1" -- !ruby/struct:VCR::HTTPInteraction - request: !ruby/struct:VCR::Request - method: :get - uri: http://ax.itunes.apple.com:80/WebObjects/MZStoreServices.woa/wa/wsSearch?media=music&term=Jose%20James - body: - headers: - response: !ruby/struct:VCR::Response - status: !ruby/struct:VCR::ResponseStatus - code: 200 - message: OK - headers: - x-apple-orig-url-path: - - /WebObjects/MZStoreServices.woa/wa/wsSearch?term=Jose%20James&media=music - x-apple-application-site: - - CUP - x-apple-max-age: - - "3600" - x-apple-woa-inbound-url: - - /WebObjects/MZStoreServices.woa/wa/wsSearch?term=Jose%20James&media=music - content-type: - - text/javascript; charset=utf-8 - x-apple-application-instance: - - "268" - x-webobjects-loadaverage: - - "0" - x-ns-label: - - mzstoreservice-lb - expires: - - Mon, 31 Jan 2011 05:44:02 GMT - cache-control: - - max-age=0, no-cache - pragma: - - no-cache - date: - - Mon, 31 Jan 2011 05:44:02 GMT - transfer-encoding: - - chunked - connection: - - Transfer-Encoding - vary: - - X-Apple-Store-Front - x-apple-partner: - - origin.0 - body: "\n\n\n\ - {\n \"resultCount\":50,\n \"results\": [\n\ - {\"wrapperType\":\"track\", \"kind\":\"song\", \"artistId\":5117774, \"collectionId\":287805088, \"trackId\":287805642, \"artistName\":\"Jose James\", \"collectionName\":\"The Dreamer\", \"trackName\":\"Desire\", \"collectionCensoredName\":\"The Dreamer\", \"trackCensoredName\":\"Desire\", \"artistViewUrl\":\"http://itunes.apple.com/us/artist/jose-james/id5117774?uo=4\", \"collectionViewUrl\":\"http://itunes.apple.com/us/album/desire/id287805088?i=287805642&uo=4\", \"trackViewUrl\":\"http://itunes.apple.com/us/album/desire/id287805088?i=287805642&uo=4\", \"previewUrl\":\"http://a1.phobos.apple.com/us/r1000/024/Music/4f/63/2c/mzm.dvfzxuyi.aac.p.m4a\", \"artworkUrl30\":\"http://a1.phobos.apple.com/us/r1000/001/Music/8f/6d/26/mzi.elifbnfk.30x30-50.jpg\", \"artworkUrl60\":\"http://a1.phobos.apple.com/us/r1000/001/Music/8f/6d/26/mzi.elifbnfk.60x60-50.jpg\", \"artworkUrl100\":\"http://a1.phobos.apple.com/us/r1000/001/Music/8f/6d/26/mzi.elifbnfk.100x100-75.jpg\", \"collectionPrice\":9.90, \"trackPrice\":0.99, \"releaseDate\":\"2008-03-26 07:00:00 Etc/GMT\", \"collectionExplicitness\":\"notExplicit\", \"trackExplicitness\":\"notExplicit\", \"discCount\":1, \"discNumber\":1, \"trackCount\":10, \"trackNumber\":9, \"trackTimeMillis\":449267, \"country\":\"USA\", \"currency\":\"USD\", \"primaryGenreName\":\"Jazz\", \"contentAdvisoryRating\":null}, \n\ - {\"wrapperType\":\"track\", \"kind\":\"song\", \"artistId\":123113553, \"collectionId\":365350903, \"trackId\":365353461, \"artistName\":\"Jos\\u00e9 James\", \"collectionName\":\"Blackmagic (Deluxe Version)\", \"trackName\":\"Love Conversation\", \"collectionCensoredName\":\"Blackmagic (Deluxe Version)\", \"trackCensoredName\":\"Love Conversation\", \"artistViewUrl\":\"http://itunes.apple.com/us/artist/jose-james/id123113553?uo=4\", \"collectionViewUrl\":\"http://itunes.apple.com/us/album/love-conversation/id365350903?i=365353461&uo=4\", \"trackViewUrl\":\"http://itunes.apple.com/us/album/love-conversation/id365350903?i=365353461&uo=4\", \"previewUrl\":\"http://a1.phobos.apple.com/us/r1000/044/Music/ac/58/68/mzi.ipmfrtvw.aac.p.m4a\", \"artworkUrl30\":\"http://a1.phobos.apple.com/us/r1000/043/Music/a2/bf/7f/mzi.ulkgzsyt.30x30-50.jpg\", \"artworkUrl60\":\"http://a1.phobos.apple.com/us/r1000/043/Music/a2/bf/7f/mzi.ulkgzsyt.60x60-50.jpg\", \"artworkUrl100\":\"http://a1.phobos.apple.com/us/r1000/043/Music/a2/bf/7f/mzi.ulkgzsyt.100x100-75.jpg\", \"collectionPrice\":9.99, \"trackPrice\":0.99, \"releaseDate\":\"2010-04-12 07:00:00 Etc/GMT\", \"collectionExplicitness\":\"notExplicit\", \"trackExplicitness\":\"notExplicit\", \"discCount\":1, \"discNumber\":1, \"trackCount\":20, \"trackNumber\":11, \"trackTimeMillis\":316332, \"country\":\"USA\", \"currency\":\"USD\", \"primaryGenreName\":\"Jazz\", \"contentAdvisoryRating\":null}, \n\ - {\"wrapperType\":\"track\", \"kind\":\"song\", \"artistId\":123113553, \"collectionId\":365350903, \"trackId\":365352887, \"artistName\":\"Jos\\u00e9 James\", \"collectionName\":\"Blackmagic (Deluxe Version)\", \"trackName\":\"Save Your Love for Me\", \"collectionCensoredName\":\"Blackmagic (Deluxe Version)\", \"trackCensoredName\":\"Save Your Love for Me\", \"artistViewUrl\":\"http://itunes.apple.com/us/artist/jose-james/id123113553?uo=4\", \"collectionViewUrl\":\"http://itunes.apple.com/us/album/save-your-love-for-me/id365350903?i=365352887&uo=4\", \"trackViewUrl\":\"http://itunes.apple.com/us/album/save-your-love-for-me/id365350903?i=365352887&uo=4\", \"previewUrl\":\"http://a1.phobos.apple.com/us/r1000/004/Music/2a/f4/9c/mzi.tnducphq.aac.p.m4a\", \"artworkUrl30\":\"http://a1.phobos.apple.com/us/r1000/043/Music/a2/bf/7f/mzi.ulkgzsyt.30x30-50.jpg\", \"artworkUrl60\":\"http://a1.phobos.apple.com/us/r1000/043/Music/a2/bf/7f/mzi.ulkgzsyt.60x60-50.jpg\", \"artworkUrl100\":\"http://a1.phobos.apple.com/us/r1000/043/Music/a2/bf/7f/mzi.ulkgzsyt.100x100-75.jpg\", \"collectionPrice\":9.99, \"trackPrice\":0.99, \"releaseDate\":\"2010-04-12 07:00:00 Etc/GMT\", \"collectionExplicitness\":\"notExplicit\", \"trackExplicitness\":\"notExplicit\", \"discCount\":1, \"discNumber\":1, \"trackCount\":20, \"trackNumber\":7, \"trackTimeMillis\":212571, \"country\":\"USA\", \"currency\":\"USD\", \"primaryGenreName\":\"Jazz\", \"contentAdvisoryRating\":null}, \n\ - {\"wrapperType\":\"track\", \"kind\":\"song\", \"artistId\":5117774, \"collectionId\":287805088, \"trackId\":287805379, \"artistName\":\"Jose James\", \"collectionName\":\"The Dreamer\", \"trackName\":\"Park Bench People\", \"collectionCensoredName\":\"The Dreamer\", \"trackCensoredName\":\"Park Bench People\", \"artistViewUrl\":\"http://itunes.apple.com/us/artist/jose-james/id5117774?uo=4\", \"collectionViewUrl\":\"http://itunes.apple.com/us/album/park-bench-people/id287805088?i=287805379&uo=4\", \"trackViewUrl\":\"http://itunes.apple.com/us/album/park-bench-people/id287805088?i=287805379&uo=4\", \"previewUrl\":\"http://a1.phobos.apple.com/us/r1000/054/Music/8f/1b/34/mzm.pjdrzrbi.aac.p.m4a\", \"artworkUrl30\":\"http://a1.phobos.apple.com/us/r1000/001/Music/8f/6d/26/mzi.elifbnfk.30x30-50.jpg\", \"artworkUrl60\":\"http://a1.phobos.apple.com/us/r1000/001/Music/8f/6d/26/mzi.elifbnfk.60x60-50.jpg\", \"artworkUrl100\":\"http://a1.phobos.apple.com/us/r1000/001/Music/8f/6d/26/mzi.elifbnfk.100x100-75.jpg\", \"collectionPrice\":9.90, \"trackPrice\":0.99, \"releaseDate\":\"2008-03-26 07:00:00 Etc/GMT\", \"collectionExplicitness\":\"notExplicit\", \"trackExplicitness\":\"notExplicit\", \"discCount\":1, \"discNumber\":1, \"trackCount\":10, \"trackNumber\":4, \"trackTimeMillis\":363320, \"country\":\"USA\", \"currency\":\"USD\", \"primaryGenreName\":\"Jazz\", \"contentAdvisoryRating\":null}, \n\ - {\"wrapperType\":\"track\", \"kind\":\"song\", \"artistId\":123113553, \"collectionId\":365350903, \"trackId\":365352479, \"artistName\":\"Jos\\u00e9 James\", \"collectionName\":\"Blackmagic (Deluxe Version)\", \"trackName\":\"Warrior\", \"collectionCensoredName\":\"Blackmagic (Deluxe Version)\", \"trackCensoredName\":\"Warrior\", \"artistViewUrl\":\"http://itunes.apple.com/us/artist/jose-james/id123113553?uo=4\", \"collectionViewUrl\":\"http://itunes.apple.com/us/album/warrior/id365350903?i=365352479&uo=4\", \"trackViewUrl\":\"http://itunes.apple.com/us/album/warrior/id365350903?i=365352479&uo=4\", \"previewUrl\":\"http://a1.phobos.apple.com/us/r1000/029/Music/09/0d/d5/mzi.euzhdjhi.aac.p.m4a\", \"artworkUrl30\":\"http://a1.phobos.apple.com/us/r1000/043/Music/a2/bf/7f/mzi.ulkgzsyt.30x30-50.jpg\", \"artworkUrl60\":\"http://a1.phobos.apple.com/us/r1000/043/Music/a2/bf/7f/mzi.ulkgzsyt.60x60-50.jpg\", \"artworkUrl100\":\"http://a1.phobos.apple.com/us/r1000/043/Music/a2/bf/7f/mzi.ulkgzsyt.100x100-75.jpg\", \"collectionPrice\":9.99, \"trackPrice\":0.99, \"releaseDate\":\"2010-04-12 07:00:00 Etc/GMT\", \"collectionExplicitness\":\"notExplicit\", \"trackExplicitness\":\"notExplicit\", \"discCount\":1, \"discNumber\":1, \"trackCount\":20, \"trackNumber\":5, \"trackTimeMillis\":355094, \"country\":\"USA\", \"currency\":\"USD\", \"primaryGenreName\":\"Jazz\", \"contentAdvisoryRating\":null}, \n\ - {\"wrapperType\":\"track\", \"kind\":\"song\", \"artistId\":123113553, \"collectionId\":365350903, \"trackId\":365351515, \"artistName\":\"Jos\\u00e9 James\", \"collectionName\":\"Blackmagic (Deluxe Version)\", \"trackName\":\"Code\", \"collectionCensoredName\":\"Blackmagic (Deluxe Version)\", \"trackCensoredName\":\"Code\", \"artistViewUrl\":\"http://itunes.apple.com/us/artist/jose-james/id123113553?uo=4\", \"collectionViewUrl\":\"http://itunes.apple.com/us/album/code/id365350903?i=365351515&uo=4\", \"trackViewUrl\":\"http://itunes.apple.com/us/album/code/id365350903?i=365351515&uo=4\", \"previewUrl\":\"http://a1.phobos.apple.com/us/r1000/015/Music/80/f1/f2/mzi.xotjcehb.aac.p.m4a\", \"artworkUrl30\":\"http://a1.phobos.apple.com/us/r1000/043/Music/a2/bf/7f/mzi.ulkgzsyt.30x30-50.jpg\", \"artworkUrl60\":\"http://a1.phobos.apple.com/us/r1000/043/Music/a2/bf/7f/mzi.ulkgzsyt.60x60-50.jpg\", \"artworkUrl100\":\"http://a1.phobos.apple.com/us/r1000/043/Music/a2/bf/7f/mzi.ulkgzsyt.100x100-75.jpg\", \"collectionPrice\":9.99, \"trackPrice\":0.99, \"releaseDate\":\"2010-04-12 07:00:00 Etc/GMT\", \"collectionExplicitness\":\"notExplicit\", \"trackExplicitness\":\"notExplicit\", \"discCount\":1, \"discNumber\":1, \"trackCount\":20, \"trackNumber\":1, \"trackTimeMillis\":294666, \"country\":\"USA\", \"currency\":\"USD\", \"primaryGenreName\":\"Jazz\", \"contentAdvisoryRating\":null}, \n\ - {\"wrapperType\":\"track\", \"kind\":\"song\", \"artistId\":123113553, \"collectionId\":365350903, \"trackId\":365351658, \"artistName\":\"Jos\\u00e9 James\", \"collectionName\":\"Blackmagic (Deluxe Version)\", \"trackName\":\"Touch\", \"collectionCensoredName\":\"Blackmagic (Deluxe Version)\", \"trackCensoredName\":\"Touch\", \"artistViewUrl\":\"http://itunes.apple.com/us/artist/jose-james/id123113553?uo=4\", \"collectionViewUrl\":\"http://itunes.apple.com/us/album/touch/id365350903?i=365351658&uo=4\", \"trackViewUrl\":\"http://itunes.apple.com/us/album/touch/id365350903?i=365351658&uo=4\", \"previewUrl\":\"http://a1.phobos.apple.com/us/r1000/026/Music/6b/0f/50/mzi.mlcnmhnr.aac.p.m4a\", \"artworkUrl30\":\"http://a1.phobos.apple.com/us/r1000/043/Music/a2/bf/7f/mzi.ulkgzsyt.30x30-50.jpg\", \"artworkUrl60\":\"http://a1.phobos.apple.com/us/r1000/043/Music/a2/bf/7f/mzi.ulkgzsyt.60x60-50.jpg\", \"artworkUrl100\":\"http://a1.phobos.apple.com/us/r1000/043/Music/a2/bf/7f/mzi.ulkgzsyt.100x100-75.jpg\", \"collectionPrice\":9.99, \"trackPrice\":0.99, \"releaseDate\":\"2010-04-12 07:00:00 Etc/GMT\", \"collectionExplicitness\":\"notExplicit\", \"trackExplicitness\":\"notExplicit\", \"discCount\":1, \"discNumber\":1, \"trackCount\":20, \"trackNumber\":2, \"trackTimeMillis\":258864, \"country\":\"USA\", \"currency\":\"USD\", \"primaryGenreName\":\"Jazz\", \"contentAdvisoryRating\":null}, \n\ - {\"wrapperType\":\"track\", \"kind\":\"song\", \"artistId\":123113553, \"collectionId\":365350903, \"trackId\":365354103, \"artistName\":\"Jos\\u00e9 James\", \"collectionName\":\"Blackmagic (Deluxe Version)\", \"trackName\":\"Warrior\", \"collectionCensoredName\":\"Blackmagic (Deluxe Version)\", \"trackCensoredName\":\"Warrior (Rockwell Remix)\", \"artistViewUrl\":\"http://itunes.apple.com/us/artist/jose-james/id123113553?uo=4\", \"collectionViewUrl\":\"http://itunes.apple.com/us/album/warrior-rockwell-remix/id365350903?i=365354103&uo=4\", \"trackViewUrl\":\"http://itunes.apple.com/us/album/warrior-rockwell-remix/id365350903?i=365354103&uo=4\", \"previewUrl\":\"http://a1.phobos.apple.com/us/r1000/004/Music/6c/dd/f1/mzi.ckyvqfuq.aac.p.m4a\", \"artworkUrl30\":\"http://a1.phobos.apple.com/us/r1000/043/Music/a2/bf/7f/mzi.ulkgzsyt.30x30-50.jpg\", \"artworkUrl60\":\"http://a1.phobos.apple.com/us/r1000/043/Music/a2/bf/7f/mzi.ulkgzsyt.60x60-50.jpg\", \"artworkUrl100\":\"http://a1.phobos.apple.com/us/r1000/043/Music/a2/bf/7f/mzi.ulkgzsyt.100x100-75.jpg\", \"collectionPrice\":9.99, \"trackPrice\":0.99, \"releaseDate\":\"2010-04-12 07:00:00 Etc/GMT\", \"collectionExplicitness\":\"notExplicit\", \"trackExplicitness\":\"notExplicit\", \"discCount\":1, \"discNumber\":1, \"trackCount\":20, \"trackNumber\":20, \"trackTimeMillis\":353098, \"country\":\"USA\", \"currency\":\"USD\", \"primaryGenreName\":\"Jazz\", \"contentAdvisoryRating\":null}, \n\ - {\"wrapperType\":\"track\", \"kind\":\"song\", \"artistId\":5117774, \"collectionId\":287805088, \"trackId\":287805308, \"artistName\":\"Jose James\", \"collectionName\":\"The Dreamer\", \"trackName\":\"Blackeyedsusan\", \"collectionCensoredName\":\"The Dreamer\", \"trackCensoredName\":\"Blackeyedsusan\", \"artistViewUrl\":\"http://itunes.apple.com/us/artist/jose-james/id5117774?uo=4\", \"collectionViewUrl\":\"http://itunes.apple.com/us/album/blackeyedsusan/id287805088?i=287805308&uo=4\", \"trackViewUrl\":\"http://itunes.apple.com/us/album/blackeyedsusan/id287805088?i=287805308&uo=4\", \"previewUrl\":\"http://a1.phobos.apple.com/us/r1000/021/Music/a1/d8/e1/mzm.brvmkudk.aac.p.m4a\", \"artworkUrl30\":\"http://a1.phobos.apple.com/us/r1000/001/Music/8f/6d/26/mzi.elifbnfk.30x30-50.jpg\", \"artworkUrl60\":\"http://a1.phobos.apple.com/us/r1000/001/Music/8f/6d/26/mzi.elifbnfk.60x60-50.jpg\", \"artworkUrl100\":\"http://a1.phobos.apple.com/us/r1000/001/Music/8f/6d/26/mzi.elifbnfk.100x100-75.jpg\", \"collectionPrice\":9.90, \"trackPrice\":0.99, \"releaseDate\":\"2008-03-26 07:00:00 Etc/GMT\", \"collectionExplicitness\":\"notExplicit\", \"trackExplicitness\":\"notExplicit\", \"discCount\":1, \"discNumber\":1, \"trackCount\":10, \"trackNumber\":3, \"trackTimeMillis\":296787, \"country\":\"USA\", \"currency\":\"USD\", \"primaryGenreName\":\"Jazz\", \"contentAdvisoryRating\":null}, \n\ - {\"wrapperType\":\"track\", \"kind\":\"song\", \"artistId\":123113553, \"collectionId\":365350903, \"trackId\":365353980, \"artistName\":\"Jos\\u00e9 James\", \"collectionName\":\"Blackmagic (Deluxe Version)\", \"trackName\":\"Warrior\", \"collectionCensoredName\":\"Blackmagic (Deluxe Version)\", \"trackCensoredName\":\"Warrior (Sbtrkt Remix)\", \"artistViewUrl\":\"http://itunes.apple.com/us/artist/jose-james/id123113553?uo=4\", \"collectionViewUrl\":\"http://itunes.apple.com/us/album/warrior-sbtrkt-remix/id365350903?i=365353980&uo=4\", \"trackViewUrl\":\"http://itunes.apple.com/us/album/warrior-sbtrkt-remix/id365350903?i=365353980&uo=4\", \"previewUrl\":\"http://a1.phobos.apple.com/us/r1000/024/Music/8e/df/93/mzi.qgdgxket.aac.p.m4a\", \"artworkUrl30\":\"http://a1.phobos.apple.com/us/r1000/043/Music/a2/bf/7f/mzi.ulkgzsyt.30x30-50.jpg\", \"artworkUrl60\":\"http://a1.phobos.apple.com/us/r1000/043/Music/a2/bf/7f/mzi.ulkgzsyt.60x60-50.jpg\", \"artworkUrl100\":\"http://a1.phobos.apple.com/us/r1000/043/Music/a2/bf/7f/mzi.ulkgzsyt.100x100-75.jpg\", \"collectionPrice\":9.99, \"trackPrice\":0.99, \"releaseDate\":\"2010-04-12 07:00:00 Etc/GMT\", \"collectionExplicitness\":\"notExplicit\", \"trackExplicitness\":\"notExplicit\", \"discCount\":1, \"discNumber\":1, \"trackCount\":20, \"trackNumber\":18, \"trackTimeMillis\":272852, \"country\":\"USA\", \"currency\":\"USD\", \"primaryGenreName\":\"Jazz\", \"contentAdvisoryRating\":null}, \n\ - {\"wrapperType\":\"track\", \"kind\":\"song\", \"artistId\":123113553, \"collectionId\":365350903, \"trackId\":365352155, \"artistName\":\"Jos\\u00e9 James\", \"collectionName\":\"Blackmagic (Deluxe Version)\", \"trackName\":\"Promise In Love\", \"collectionCensoredName\":\"Blackmagic (Deluxe Version)\", \"trackCensoredName\":\"Promise In Love\", \"artistViewUrl\":\"http://itunes.apple.com/us/artist/jose-james/id123113553?uo=4\", \"collectionViewUrl\":\"http://itunes.apple.com/us/album/promise-in-love/id365350903?i=365352155&uo=4\", \"trackViewUrl\":\"http://itunes.apple.com/us/album/promise-in-love/id365350903?i=365352155&uo=4\", \"previewUrl\":\"http://a1.phobos.apple.com/us/r1000/001/Music/1c/41/f7/mzi.ltwhimkd.aac.p.m4a\", \"artworkUrl30\":\"http://a1.phobos.apple.com/us/r1000/043/Music/a2/bf/7f/mzi.ulkgzsyt.30x30-50.jpg\", \"artworkUrl60\":\"http://a1.phobos.apple.com/us/r1000/043/Music/a2/bf/7f/mzi.ulkgzsyt.60x60-50.jpg\", \"artworkUrl100\":\"http://a1.phobos.apple.com/us/r1000/043/Music/a2/bf/7f/mzi.ulkgzsyt.100x100-75.jpg\", \"collectionPrice\":9.99, \"trackPrice\":0.99, \"releaseDate\":\"2010-04-12 07:00:00 Etc/GMT\", \"collectionExplicitness\":\"notExplicit\", \"trackExplicitness\":\"notExplicit\", \"discCount\":1, \"discNumber\":1, \"trackCount\":20, \"trackNumber\":4, \"trackTimeMillis\":275666, \"country\":\"USA\", \"currency\":\"USD\", \"primaryGenreName\":\"Jazz\", \"contentAdvisoryRating\":null}, \n\ - {\"wrapperType\":\"track\", \"kind\":\"song\", \"artistId\":123113553, \"collectionId\":365350903, \"trackId\":365353042, \"artistName\":\"Jos\\u00e9 James\", \"collectionName\":\"Blackmagic (Deluxe Version)\", \"trackName\":\"The Greater Good\", \"collectionCensoredName\":\"Blackmagic (Deluxe Version)\", \"trackCensoredName\":\"The Greater Good\", \"artistViewUrl\":\"http://itunes.apple.com/us/artist/jose-james/id123113553?uo=4\", \"collectionViewUrl\":\"http://itunes.apple.com/us/album/the-greater-good/id365350903?i=365353042&uo=4\", \"trackViewUrl\":\"http://itunes.apple.com/us/album/the-greater-good/id365350903?i=365353042&uo=4\", \"previewUrl\":\"http://a1.phobos.apple.com/us/r1000/049/Music/fe/03/99/mzi.dekqfrkm.aac.p.m4a\", \"artworkUrl30\":\"http://a1.phobos.apple.com/us/r1000/043/Music/a2/bf/7f/mzi.ulkgzsyt.30x30-50.jpg\", \"artworkUrl60\":\"http://a1.phobos.apple.com/us/r1000/043/Music/a2/bf/7f/mzi.ulkgzsyt.60x60-50.jpg\", \"artworkUrl100\":\"http://a1.phobos.apple.com/us/r1000/043/Music/a2/bf/7f/mzi.ulkgzsyt.100x100-75.jpg\", \"collectionPrice\":9.99, \"trackPrice\":0.99, \"releaseDate\":\"2010-04-12 07:00:00 Etc/GMT\", \"collectionExplicitness\":\"notExplicit\", \"trackExplicitness\":\"notExplicit\", \"discCount\":1, \"discNumber\":1, \"trackCount\":20, \"trackNumber\":8, \"trackTimeMillis\":259172, \"country\":\"USA\", \"currency\":\"USD\", \"primaryGenreName\":\"Jazz\", \"contentAdvisoryRating\":null}, \n\ - {\"wrapperType\":\"track\", \"kind\":\"song\", \"artistId\":123113553, \"collectionId\":365350903, \"trackId\":365353883, \"artistName\":\"Jos\\u00e9 James\", \"collectionName\":\"Blackmagic (Deluxe Version)\", \"trackName\":\"Visions of Violet (feat. Flying Lotus)\", \"collectionCensoredName\":\"Blackmagic (Deluxe Version)\", \"trackCensoredName\":\"Visions of Violet (feat. Flying Lotus)\", \"artistViewUrl\":\"http://itunes.apple.com/us/artist/jose-james/id123113553?uo=4\", \"collectionViewUrl\":\"http://itunes.apple.com/us/album/visions-violet-feat-flying/id365350903?i=365353883&uo=4\", \"trackViewUrl\":\"http://itunes.apple.com/us/album/visions-violet-feat-flying/id365350903?i=365353883&uo=4\", \"previewUrl\":\"http://a1.phobos.apple.com/us/r1000/044/Music/f3/e4/64/mzi.yipsrvwd.aac.p.m4a\", \"artworkUrl30\":\"http://a1.phobos.apple.com/us/r1000/043/Music/a2/bf/7f/mzi.ulkgzsyt.30x30-50.jpg\", \"artworkUrl60\":\"http://a1.phobos.apple.com/us/r1000/043/Music/a2/bf/7f/mzi.ulkgzsyt.60x60-50.jpg\", \"artworkUrl100\":\"http://a1.phobos.apple.com/us/r1000/043/Music/a2/bf/7f/mzi.ulkgzsyt.100x100-75.jpg\", \"collectionPrice\":9.99, \"trackPrice\":0.99, \"releaseDate\":\"2010-04-12 07:00:00 Etc/GMT\", \"collectionExplicitness\":\"notExplicit\", \"trackExplicitness\":\"notExplicit\", \"discCount\":1, \"discNumber\":1, \"trackCount\":20, \"trackNumber\":16, \"trackTimeMillis\":140447, \"country\":\"USA\", \"currency\":\"USD\", \"primaryGenreName\":\"Jazz\", \"contentAdvisoryRating\":null}, \n\ - {\"wrapperType\":\"track\", \"kind\":\"song\", \"artistId\":123113553, \"collectionId\":365350903, \"trackId\":365352707, \"artistName\":\"Jos\\u00e9 James\", \"collectionName\":\"Blackmagic (Deluxe Version)\", \"trackName\":\"Made for Love\", \"collectionCensoredName\":\"Blackmagic (Deluxe Version)\", \"trackCensoredName\":\"Made for Love\", \"artistViewUrl\":\"http://itunes.apple.com/us/artist/jose-james/id123113553?uo=4\", \"collectionViewUrl\":\"http://itunes.apple.com/us/album/made-for-love/id365350903?i=365352707&uo=4\", \"trackViewUrl\":\"http://itunes.apple.com/us/album/made-for-love/id365350903?i=365352707&uo=4\", \"previewUrl\":\"http://a1.phobos.apple.com/us/r1000/032/Music/04/47/d2/mzi.zevlzzuk.aac.p.m4a\", \"artworkUrl30\":\"http://a1.phobos.apple.com/us/r1000/043/Music/a2/bf/7f/mzi.ulkgzsyt.30x30-50.jpg\", \"artworkUrl60\":\"http://a1.phobos.apple.com/us/r1000/043/Music/a2/bf/7f/mzi.ulkgzsyt.60x60-50.jpg\", \"artworkUrl100\":\"http://a1.phobos.apple.com/us/r1000/043/Music/a2/bf/7f/mzi.ulkgzsyt.100x100-75.jpg\", \"collectionPrice\":9.99, \"trackPrice\":0.99, \"releaseDate\":\"2010-04-12 07:00:00 Etc/GMT\", \"collectionExplicitness\":\"notExplicit\", \"trackExplicitness\":\"notExplicit\", \"discCount\":1, \"discNumber\":1, \"trackCount\":20, \"trackNumber\":6, \"trackTimeMillis\":230928, \"country\":\"USA\", \"currency\":\"USD\", \"primaryGenreName\":\"Jazz\", \"contentAdvisoryRating\":null}, \n\ - {\"wrapperType\":\"track\", \"kind\":\"song\", \"artistId\":123113553, \"collectionId\":365350903, \"trackId\":365353658, \"artistName\":\"Jos\\u00e9 James\", \"collectionName\":\"Blackmagic (Deluxe Version)\", \"trackName\":\"No Tellin' (I Need You)\", \"collectionCensoredName\":\"Blackmagic (Deluxe Version)\", \"trackCensoredName\":\"No Tellin' (I Need You)\", \"artistViewUrl\":\"http://itunes.apple.com/us/artist/jose-james/id123113553?uo=4\", \"collectionViewUrl\":\"http://itunes.apple.com/us/album/no-tellin-i-need-you/id365350903?i=365353658&uo=4\", \"trackViewUrl\":\"http://itunes.apple.com/us/album/no-tellin-i-need-you/id365350903?i=365353658&uo=4\", \"previewUrl\":\"http://a1.phobos.apple.com/us/r1000/010/Music/f3/84/c7/mzi.owscastu.aac.p.m4a\", \"artworkUrl30\":\"http://a1.phobos.apple.com/us/r1000/043/Music/a2/bf/7f/mzi.ulkgzsyt.30x30-50.jpg\", \"artworkUrl60\":\"http://a1.phobos.apple.com/us/r1000/043/Music/a2/bf/7f/mzi.ulkgzsyt.60x60-50.jpg\", \"artworkUrl100\":\"http://a1.phobos.apple.com/us/r1000/043/Music/a2/bf/7f/mzi.ulkgzsyt.100x100-75.jpg\", \"collectionPrice\":9.99, \"trackPrice\":0.99, \"releaseDate\":\"2010-04-12 07:00:00 Etc/GMT\", \"collectionExplicitness\":\"notExplicit\", \"trackExplicitness\":\"notExplicit\", \"discCount\":1, \"discNumber\":1, \"trackCount\":20, \"trackNumber\":13, \"trackTimeMillis\":159432, \"country\":\"USA\", \"currency\":\"USD\", \"primaryGenreName\":\"Jazz\", \"contentAdvisoryRating\":null}, \n\ - {\"wrapperType\":\"track\", \"kind\":\"song\", \"artistId\":123113553, \"collectionId\":365350903, \"trackId\":365351841, \"artistName\":\"Jos\\u00e9 James\", \"collectionName\":\"Blackmagic (Deluxe Version)\", \"trackName\":\"Lay You Down\", \"collectionCensoredName\":\"Blackmagic (Deluxe Version)\", \"trackCensoredName\":\"Lay You Down\", \"artistViewUrl\":\"http://itunes.apple.com/us/artist/jose-james/id123113553?uo=4\", \"collectionViewUrl\":\"http://itunes.apple.com/us/album/lay-you-down/id365350903?i=365351841&uo=4\", \"trackViewUrl\":\"http://itunes.apple.com/us/album/lay-you-down/id365350903?i=365351841&uo=4\", \"previewUrl\":\"http://a1.phobos.apple.com/us/r1000/010/Music/10/ee/e1/mzi.dngalaji.aac.p.m4a\", \"artworkUrl30\":\"http://a1.phobos.apple.com/us/r1000/043/Music/a2/bf/7f/mzi.ulkgzsyt.30x30-50.jpg\", \"artworkUrl60\":\"http://a1.phobos.apple.com/us/r1000/043/Music/a2/bf/7f/mzi.ulkgzsyt.60x60-50.jpg\", \"artworkUrl100\":\"http://a1.phobos.apple.com/us/r1000/043/Music/a2/bf/7f/mzi.ulkgzsyt.100x100-75.jpg\", \"collectionPrice\":9.99, \"trackPrice\":0.99, \"releaseDate\":\"2010-04-12 07:00:00 Etc/GMT\", \"collectionExplicitness\":\"notExplicit\", \"trackExplicitness\":\"notExplicit\", \"discCount\":1, \"discNumber\":1, \"trackCount\":20, \"trackNumber\":3, \"trackTimeMillis\":305492, \"country\":\"USA\", \"currency\":\"USD\", \"primaryGenreName\":\"Jazz\", \"contentAdvisoryRating\":null}, \n\ - {\"wrapperType\":\"track\", \"kind\":\"song\", \"artistId\":5117774, \"collectionId\":287805088, \"trackId\":287805552, \"artistName\":\"Jose James\", \"collectionName\":\"The Dreamer\", \"trackName\":\"Red\", \"collectionCensoredName\":\"The Dreamer\", \"trackCensoredName\":\"Red\", \"artistViewUrl\":\"http://itunes.apple.com/us/artist/jose-james/id5117774?uo=4\", \"collectionViewUrl\":\"http://itunes.apple.com/us/album/red/id287805088?i=287805552&uo=4\", \"trackViewUrl\":\"http://itunes.apple.com/us/album/red/id287805088?i=287805552&uo=4\", \"previewUrl\":\"http://a1.phobos.apple.com/us/r1000/011/Music/4f/f8/13/mzm.wkwlppfi.aac.p.m4a\", \"artworkUrl30\":\"http://a1.phobos.apple.com/us/r1000/001/Music/8f/6d/26/mzi.elifbnfk.30x30-50.jpg\", \"artworkUrl60\":\"http://a1.phobos.apple.com/us/r1000/001/Music/8f/6d/26/mzi.elifbnfk.60x60-50.jpg\", \"artworkUrl100\":\"http://a1.phobos.apple.com/us/r1000/001/Music/8f/6d/26/mzi.elifbnfk.100x100-75.jpg\", \"collectionPrice\":9.90, \"trackPrice\":0.99, \"releaseDate\":\"2008-03-26 07:00:00 Etc/GMT\", \"collectionExplicitness\":\"notExplicit\", \"trackExplicitness\":\"notExplicit\", \"discCount\":1, \"discNumber\":1, \"trackCount\":10, \"trackNumber\":7, \"trackTimeMillis\":315907, \"country\":\"USA\", \"currency\":\"USD\", \"primaryGenreName\":\"Jazz\", \"contentAdvisoryRating\":null}, \n\ - {\"wrapperType\":\"track\", \"kind\":\"song\", \"artistId\":5117774, \"collectionId\":287805088, \"trackId\":287805689, \"artistName\":\"Jose James\", \"collectionName\":\"The Dreamer\", \"trackName\":\"Love\", \"collectionCensoredName\":\"The Dreamer\", \"trackCensoredName\":\"Love\", \"artistViewUrl\":\"http://itunes.apple.com/us/artist/jose-james/id5117774?uo=4\", \"collectionViewUrl\":\"http://itunes.apple.com/us/album/love/id287805088?i=287805689&uo=4\", \"trackViewUrl\":\"http://itunes.apple.com/us/album/love/id287805088?i=287805689&uo=4\", \"previewUrl\":\"http://a1.phobos.apple.com/us/r1000/048/Music/d8/53/2e/mzm.bhfufryc.aac.p.m4a\", \"artworkUrl30\":\"http://a1.phobos.apple.com/us/r1000/001/Music/8f/6d/26/mzi.elifbnfk.30x30-50.jpg\", \"artworkUrl60\":\"http://a1.phobos.apple.com/us/r1000/001/Music/8f/6d/26/mzi.elifbnfk.60x60-50.jpg\", \"artworkUrl100\":\"http://a1.phobos.apple.com/us/r1000/001/Music/8f/6d/26/mzi.elifbnfk.100x100-75.jpg\", \"collectionPrice\":9.90, \"trackPrice\":0.99, \"releaseDate\":\"2008-03-26 07:00:00 Etc/GMT\", \"collectionExplicitness\":\"notExplicit\", \"trackExplicitness\":\"notExplicit\", \"discCount\":1, \"discNumber\":1, \"trackCount\":10, \"trackNumber\":10, \"trackTimeMillis\":324013, \"country\":\"USA\", \"currency\":\"USD\", \"primaryGenreName\":\"Jazz\", \"contentAdvisoryRating\":null}, \n\ - {\"wrapperType\":\"track\", \"kind\":\"song\", \"artistId\":123113553, \"collectionId\":365350903, \"trackId\":365353129, \"artistName\":\"Jos\\u00e9 James\", \"collectionName\":\"Blackmagic (Deluxe Version)\", \"trackName\":\"Blackmagic\", \"collectionCensoredName\":\"Blackmagic (Deluxe Version)\", \"trackCensoredName\":\"Blackmagic\", \"artistViewUrl\":\"http://itunes.apple.com/us/artist/jose-james/id123113553?uo=4\", \"collectionViewUrl\":\"http://itunes.apple.com/us/album/blackmagic/id365350903?i=365353129&uo=4\", \"trackViewUrl\":\"http://itunes.apple.com/us/album/blackmagic/id365350903?i=365353129&uo=4\", \"previewUrl\":\"http://a1.phobos.apple.com/us/r1000/035/Music/a9/d8/f0/mzi.qzpytsme.aac.p.m4a\", \"artworkUrl30\":\"http://a1.phobos.apple.com/us/r1000/043/Music/a2/bf/7f/mzi.ulkgzsyt.30x30-50.jpg\", \"artworkUrl60\":\"http://a1.phobos.apple.com/us/r1000/043/Music/a2/bf/7f/mzi.ulkgzsyt.60x60-50.jpg\", \"artworkUrl100\":\"http://a1.phobos.apple.com/us/r1000/043/Music/a2/bf/7f/mzi.ulkgzsyt.100x100-75.jpg\", \"collectionPrice\":9.99, \"trackPrice\":0.99, \"releaseDate\":\"2010-04-12 07:00:00 Etc/GMT\", \"collectionExplicitness\":\"notExplicit\", \"trackExplicitness\":\"notExplicit\", \"discCount\":1, \"discNumber\":1, \"trackCount\":20, \"trackNumber\":9, \"trackTimeMillis\":243429, \"country\":\"USA\", \"currency\":\"USD\", \"primaryGenreName\":\"Jazz\", \"contentAdvisoryRating\":null}, \n\ - {\"wrapperType\":\"track\", \"kind\":\"song\", \"artistId\":5117774, \"collectionId\":287805088, \"trackId\":287805225, \"artistName\":\"Jose James\", \"collectionName\":\"The Dreamer\", \"trackName\":\"The Dreamer\", \"collectionCensoredName\":\"The Dreamer\", \"trackCensoredName\":\"The Dreamer\", \"artistViewUrl\":\"http://itunes.apple.com/us/artist/jose-james/id5117774?uo=4\", \"collectionViewUrl\":\"http://itunes.apple.com/us/album/the-dreamer/id287805088?i=287805225&uo=4\", \"trackViewUrl\":\"http://itunes.apple.com/us/album/the-dreamer/id287805088?i=287805225&uo=4\", \"previewUrl\":\"http://a1.phobos.apple.com/us/r1000/043/Music/81/7e/1c/mzm.viszqyno.aac.p.m4a\", \"artworkUrl30\":\"http://a1.phobos.apple.com/us/r1000/001/Music/8f/6d/26/mzi.elifbnfk.30x30-50.jpg\", \"artworkUrl60\":\"http://a1.phobos.apple.com/us/r1000/001/Music/8f/6d/26/mzi.elifbnfk.60x60-50.jpg\", \"artworkUrl100\":\"http://a1.phobos.apple.com/us/r1000/001/Music/8f/6d/26/mzi.elifbnfk.100x100-75.jpg\", \"collectionPrice\":9.90, \"trackPrice\":0.99, \"releaseDate\":\"2008-03-26 07:00:00 Etc/GMT\", \"collectionExplicitness\":\"notExplicit\", \"trackExplicitness\":\"notExplicit\", \"discCount\":1, \"discNumber\":1, \"trackCount\":10, \"trackNumber\":1, \"trackTimeMillis\":425280, \"country\":\"USA\", \"currency\":\"USD\", \"primaryGenreName\":\"Jazz\", \"contentAdvisoryRating\":null}, \n\ - {\"wrapperType\":\"track\", \"kind\":\"song\", \"artistId\":5117774, \"collectionId\":287805088, \"trackId\":287805493, \"artistName\":\"Jose James\", \"collectionName\":\"The Dreamer\", \"trackName\":\"Spirits Up Above\", \"collectionCensoredName\":\"The Dreamer\", \"trackCensoredName\":\"Spirits Up Above\", \"artistViewUrl\":\"http://itunes.apple.com/us/artist/jose-james/id5117774?uo=4\", \"collectionViewUrl\":\"http://itunes.apple.com/us/album/spirits-up-above/id287805088?i=287805493&uo=4\", \"trackViewUrl\":\"http://itunes.apple.com/us/album/spirits-up-above/id287805088?i=287805493&uo=4\", \"previewUrl\":\"http://a1.phobos.apple.com/us/r1000/009/Music/33/df/63/mzm.qqrxsszt.aac.p.m4a\", \"artworkUrl30\":\"http://a1.phobos.apple.com/us/r1000/001/Music/8f/6d/26/mzi.elifbnfk.30x30-50.jpg\", \"artworkUrl60\":\"http://a1.phobos.apple.com/us/r1000/001/Music/8f/6d/26/mzi.elifbnfk.60x60-50.jpg\", \"artworkUrl100\":\"http://a1.phobos.apple.com/us/r1000/001/Music/8f/6d/26/mzi.elifbnfk.100x100-75.jpg\", \"collectionPrice\":9.90, \"trackPrice\":0.99, \"releaseDate\":\"2008-03-26 07:00:00 Etc/GMT\", \"collectionExplicitness\":\"notExplicit\", \"trackExplicitness\":\"notExplicit\", \"discCount\":1, \"discNumber\":1, \"trackCount\":10, \"trackNumber\":5, \"trackTimeMillis\":300693, \"country\":\"USA\", \"currency\":\"USD\", \"primaryGenreName\":\"Jazz\", \"contentAdvisoryRating\":null}, \n\ - {\"wrapperType\":\"track\", \"kind\":\"song\", \"artistId\":123113553, \"collectionId\":365350903, \"trackId\":365353493, \"artistName\":\"Jos\\u00e9 James\", \"collectionName\":\"Blackmagic (Deluxe Version)\", \"trackName\":\"Beauty\", \"collectionCensoredName\":\"Blackmagic (Deluxe Version)\", \"trackCensoredName\":\"Beauty\", \"artistViewUrl\":\"http://itunes.apple.com/us/artist/jose-james/id123113553?uo=4\", \"collectionViewUrl\":\"http://itunes.apple.com/us/album/beauty/id365350903?i=365353493&uo=4\", \"trackViewUrl\":\"http://itunes.apple.com/us/album/beauty/id365350903?i=365353493&uo=4\", \"previewUrl\":\"http://a1.phobos.apple.com/us/r1000/002/Music/32/ff/6f/mzi.xleezrzq.aac.p.m4a\", \"artworkUrl30\":\"http://a1.phobos.apple.com/us/r1000/043/Music/a2/bf/7f/mzi.ulkgzsyt.30x30-50.jpg\", \"artworkUrl60\":\"http://a1.phobos.apple.com/us/r1000/043/Music/a2/bf/7f/mzi.ulkgzsyt.60x60-50.jpg\", \"artworkUrl100\":\"http://a1.phobos.apple.com/us/r1000/043/Music/a2/bf/7f/mzi.ulkgzsyt.100x100-75.jpg\", \"collectionPrice\":9.99, \"trackPrice\":0.99, \"releaseDate\":\"2010-04-12 07:00:00 Etc/GMT\", \"collectionExplicitness\":\"notExplicit\", \"trackExplicitness\":\"notExplicit\", \"discCount\":1, \"discNumber\":1, \"trackCount\":20, \"trackNumber\":12, \"trackTimeMillis\":250021, \"country\":\"USA\", \"currency\":\"USD\", \"primaryGenreName\":\"Jazz\", \"contentAdvisoryRating\":null}, \n\ - {\"wrapperType\":\"track\", \"kind\":\"song\", \"artistId\":5117774, \"collectionId\":287805088, \"trackId\":287805233, \"artistName\":\"Jose James\", \"collectionName\":\"The Dreamer\", \"trackName\":\"Velvet\", \"collectionCensoredName\":\"The Dreamer\", \"trackCensoredName\":\"Velvet\", \"artistViewUrl\":\"http://itunes.apple.com/us/artist/jose-james/id5117774?uo=4\", \"collectionViewUrl\":\"http://itunes.apple.com/us/album/velvet/id287805088?i=287805233&uo=4\", \"trackViewUrl\":\"http://itunes.apple.com/us/album/velvet/id287805088?i=287805233&uo=4\", \"previewUrl\":\"http://a1.phobos.apple.com/us/r1000/042/Music/c8/53/2d/mzm.whwgbwlm.aac.p.m4a\", \"artworkUrl30\":\"http://a1.phobos.apple.com/us/r1000/001/Music/8f/6d/26/mzi.elifbnfk.30x30-50.jpg\", \"artworkUrl60\":\"http://a1.phobos.apple.com/us/r1000/001/Music/8f/6d/26/mzi.elifbnfk.60x60-50.jpg\", \"artworkUrl100\":\"http://a1.phobos.apple.com/us/r1000/001/Music/8f/6d/26/mzi.elifbnfk.100x100-75.jpg\", \"collectionPrice\":9.90, \"trackPrice\":0.99, \"releaseDate\":\"2008-03-26 07:00:00 Etc/GMT\", \"collectionExplicitness\":\"notExplicit\", \"trackExplicitness\":\"notExplicit\", \"discCount\":1, \"discNumber\":1, \"trackCount\":10, \"trackNumber\":2, \"trackTimeMillis\":241467, \"country\":\"USA\", \"currency\":\"USD\", \"primaryGenreName\":\"Jazz\", \"contentAdvisoryRating\":null}, \n\ - {\"wrapperType\":\"track\", \"kind\":\"song\", \"artistId\":5117774, \"collectionId\":287805088, \"trackId\":287805606, \"artistName\":\"Jose James\", \"collectionName\":\"The Dreamer\", \"trackName\":\"Winter Wind\", \"collectionCensoredName\":\"The Dreamer\", \"trackCensoredName\":\"Winter Wind\", \"artistViewUrl\":\"http://itunes.apple.com/us/artist/jose-james/id5117774?uo=4\", \"collectionViewUrl\":\"http://itunes.apple.com/us/album/winter-wind/id287805088?i=287805606&uo=4\", \"trackViewUrl\":\"http://itunes.apple.com/us/album/winter-wind/id287805088?i=287805606&uo=4\", \"previewUrl\":\"http://a1.phobos.apple.com/us/r1000/034/Music/dd/3d/26/mzm.lzxzqjaz.aac.p.m4a\", \"artworkUrl30\":\"http://a1.phobos.apple.com/us/r1000/001/Music/8f/6d/26/mzi.elifbnfk.30x30-50.jpg\", \"artworkUrl60\":\"http://a1.phobos.apple.com/us/r1000/001/Music/8f/6d/26/mzi.elifbnfk.60x60-50.jpg\", \"artworkUrl100\":\"http://a1.phobos.apple.com/us/r1000/001/Music/8f/6d/26/mzi.elifbnfk.100x100-75.jpg\", \"collectionPrice\":9.90, \"trackPrice\":0.99, \"releaseDate\":\"2008-03-26 07:00:00 Etc/GMT\", \"collectionExplicitness\":\"notExplicit\", \"trackExplicitness\":\"notExplicit\", \"discCount\":1, \"discNumber\":1, \"trackCount\":10, \"trackNumber\":8, \"trackTimeMillis\":427333, \"country\":\"USA\", \"currency\":\"USD\", \"primaryGenreName\":\"Jazz\", \"contentAdvisoryRating\":null}, \n\ - {\"wrapperType\":\"track\", \"kind\":\"song\", \"artistId\":123113553, \"collectionId\":365350903, \"trackId\":365353269, \"artistName\":\"Jos\\u00e9 James\", \"collectionName\":\"Blackmagic (Deluxe Version)\", \"trackName\":\"Detroit Loveletter\", \"collectionCensoredName\":\"Blackmagic (Deluxe Version)\", \"trackCensoredName\":\"Detroit Loveletter\", \"artistViewUrl\":\"http://itunes.apple.com/us/artist/jose-james/id123113553?uo=4\", \"collectionViewUrl\":\"http://itunes.apple.com/us/album/detroit-loveletter/id365350903?i=365353269&uo=4\", \"trackViewUrl\":\"http://itunes.apple.com/us/album/detroit-loveletter/id365350903?i=365353269&uo=4\", \"previewUrl\":\"http://a1.phobos.apple.com/us/r1000/010/Music/4d/8c/d4/mzi.arqaexng.aac.p.m4a\", \"artworkUrl30\":\"http://a1.phobos.apple.com/us/r1000/043/Music/a2/bf/7f/mzi.ulkgzsyt.30x30-50.jpg\", \"artworkUrl60\":\"http://a1.phobos.apple.com/us/r1000/043/Music/a2/bf/7f/mzi.ulkgzsyt.60x60-50.jpg\", \"artworkUrl100\":\"http://a1.phobos.apple.com/us/r1000/043/Music/a2/bf/7f/mzi.ulkgzsyt.100x100-75.jpg\", \"collectionPrice\":9.99, \"trackPrice\":0.99, \"releaseDate\":\"2010-04-12 07:00:00 Etc/GMT\", \"collectionExplicitness\":\"notExplicit\", \"trackExplicitness\":\"notExplicit\", \"discCount\":1, \"discNumber\":1, \"trackCount\":20, \"trackNumber\":10, \"trackTimeMillis\":241540, \"country\":\"USA\", \"currency\":\"USD\", \"primaryGenreName\":\"Jazz\", \"contentAdvisoryRating\":null}, \n\ - {\"wrapperType\":\"track\", \"kind\":\"song\", \"artistId\":123113553, \"collectionId\":365350903, \"trackId\":365353833, \"artistName\":\"Jos\\u00e9 James\", \"collectionName\":\"Blackmagic (Deluxe Version)\", \"trackName\":\"Evidence of Existence\", \"collectionCensoredName\":\"Blackmagic (Deluxe Version)\", \"trackCensoredName\":\"Evidence of Existence\", \"artistViewUrl\":\"http://itunes.apple.com/us/artist/jose-james/id123113553?uo=4\", \"collectionViewUrl\":\"http://itunes.apple.com/us/album/evidence-of-existence/id365350903?i=365353833&uo=4\", \"trackViewUrl\":\"http://itunes.apple.com/us/album/evidence-of-existence/id365350903?i=365353833&uo=4\", \"previewUrl\":\"http://a1.phobos.apple.com/us/r1000/046/Music/23/0f/16/mzi.enywxruq.aac.p.m4a\", \"artworkUrl30\":\"http://a1.phobos.apple.com/us/r1000/043/Music/a2/bf/7f/mzi.ulkgzsyt.30x30-50.jpg\", \"artworkUrl60\":\"http://a1.phobos.apple.com/us/r1000/043/Music/a2/bf/7f/mzi.ulkgzsyt.60x60-50.jpg\", \"artworkUrl100\":\"http://a1.phobos.apple.com/us/r1000/043/Music/a2/bf/7f/mzi.ulkgzsyt.100x100-75.jpg\", \"collectionPrice\":9.99, \"trackPrice\":0.99, \"releaseDate\":\"2010-04-12 07:00:00 Etc/GMT\", \"collectionExplicitness\":\"notExplicit\", \"trackExplicitness\":\"notExplicit\", \"discCount\":1, \"discNumber\":1, \"trackCount\":20, \"trackNumber\":15, \"trackTimeMillis\":326327, \"country\":\"USA\", \"currency\":\"USD\", \"primaryGenreName\":\"Jazz\", \"contentAdvisoryRating\":null}, \n\ - {\"wrapperType\":\"track\", \"kind\":\"song\", \"artistId\":5117774, \"collectionId\":287805088, \"trackId\":287805505, \"artistName\":\"Jose James\", \"collectionName\":\"The Dreamer\", \"trackName\":\"Nola\", \"collectionCensoredName\":\"The Dreamer\", \"trackCensoredName\":\"Nola\", \"artistViewUrl\":\"http://itunes.apple.com/us/artist/jose-james/id5117774?uo=4\", \"collectionViewUrl\":\"http://itunes.apple.com/us/album/nola/id287805088?i=287805505&uo=4\", \"trackViewUrl\":\"http://itunes.apple.com/us/album/nola/id287805088?i=287805505&uo=4\", \"previewUrl\":\"http://a1.phobos.apple.com/us/r1000/039/Music/3a/a1/53/mzm.jqbyidpn.aac.p.m4a\", \"artworkUrl30\":\"http://a1.phobos.apple.com/us/r1000/001/Music/8f/6d/26/mzi.elifbnfk.30x30-50.jpg\", \"artworkUrl60\":\"http://a1.phobos.apple.com/us/r1000/001/Music/8f/6d/26/mzi.elifbnfk.60x60-50.jpg\", \"artworkUrl100\":\"http://a1.phobos.apple.com/us/r1000/001/Music/8f/6d/26/mzi.elifbnfk.100x100-75.jpg\", \"collectionPrice\":9.90, \"trackPrice\":0.99, \"releaseDate\":\"2008-03-26 07:00:00 Etc/GMT\", \"collectionExplicitness\":\"notExplicit\", \"trackExplicitness\":\"notExplicit\", \"discCount\":1, \"discNumber\":1, \"trackCount\":10, \"trackNumber\":6, \"trackTimeMillis\":236173, \"country\":\"USA\", \"currency\":\"USD\", \"primaryGenreName\":\"Jazz\", \"contentAdvisoryRating\":null}, \n\ - {\"wrapperType\":\"track\", \"kind\":\"song\", \"artistId\":123113553, \"collectionId\":365350903, \"trackId\":365354086, \"artistName\":\"Jos\\u00e9 James\", \"collectionName\":\"Blackmagic (Deluxe Version)\", \"trackName\":\"Blackmagic\", \"collectionCensoredName\":\"Blackmagic (Deluxe Version)\", \"trackCensoredName\":\"Blackmagic (Joy Orbison's Recreation)\", \"artistViewUrl\":\"http://itunes.apple.com/us/artist/jose-james/id123113553?uo=4\", \"collectionViewUrl\":\"http://itunes.apple.com/us/album/blackmagic-joy-orbisons-recreation/id365350903?i=365354086&uo=4\", \"trackViewUrl\":\"http://itunes.apple.com/us/album/blackmagic-joy-orbisons-recreation/id365350903?i=365354086&uo=4\", \"previewUrl\":\"http://a1.phobos.apple.com/us/r1000/035/Music/71/ce/42/mzi.rghmjmht.aac.p.m4a\", \"artworkUrl30\":\"http://a1.phobos.apple.com/us/r1000/043/Music/a2/bf/7f/mzi.ulkgzsyt.30x30-50.jpg\", \"artworkUrl60\":\"http://a1.phobos.apple.com/us/r1000/043/Music/a2/bf/7f/mzi.ulkgzsyt.60x60-50.jpg\", \"artworkUrl100\":\"http://a1.phobos.apple.com/us/r1000/043/Music/a2/bf/7f/mzi.ulkgzsyt.100x100-75.jpg\", \"collectionPrice\":9.99, \"trackPrice\":0.99, \"releaseDate\":\"2010-04-12 07:00:00 Etc/GMT\", \"collectionExplicitness\":\"notExplicit\", \"trackExplicitness\":\"notExplicit\", \"discCount\":1, \"discNumber\":1, \"trackCount\":20, \"trackNumber\":19, \"trackTimeMillis\":355804, \"country\":\"USA\", \"currency\":\"USD\", \"primaryGenreName\":\"Jazz\", \"contentAdvisoryRating\":null}, \n\ - {\"wrapperType\":\"track\", \"kind\":\"song\", \"artistId\":123113553, \"collectionId\":365350903, \"trackId\":365353942, \"artistName\":\"Jos\\u00e9 James\", \"collectionName\":\"Blackmagic (Deluxe Version)\", \"trackName\":\"Blackmagic\", \"collectionCensoredName\":\"Blackmagic (Deluxe Version)\", \"trackCensoredName\":\"Blackmagic (Izmabad 118 Remix)\", \"artistViewUrl\":\"http://itunes.apple.com/us/artist/jose-james/id123113553?uo=4\", \"collectionViewUrl\":\"http://itunes.apple.com/us/album/blackmagic-izmabad-118-remix/id365350903?i=365353942&uo=4\", \"trackViewUrl\":\"http://itunes.apple.com/us/album/blackmagic-izmabad-118-remix/id365350903?i=365353942&uo=4\", \"previewUrl\":\"http://a1.phobos.apple.com/us/r1000/022/Music/fe/5b/38/mzi.bypadvdp.aac.p.m4a\", \"artworkUrl30\":\"http://a1.phobos.apple.com/us/r1000/043/Music/a2/bf/7f/mzi.ulkgzsyt.30x30-50.jpg\", \"artworkUrl60\":\"http://a1.phobos.apple.com/us/r1000/043/Music/a2/bf/7f/mzi.ulkgzsyt.60x60-50.jpg\", \"artworkUrl100\":\"http://a1.phobos.apple.com/us/r1000/043/Music/a2/bf/7f/mzi.ulkgzsyt.100x100-75.jpg\", \"collectionPrice\":9.99, \"trackPrice\":0.99, \"releaseDate\":\"2010-04-12 07:00:00 Etc/GMT\", \"collectionExplicitness\":\"notExplicit\", \"trackExplicitness\":\"notExplicit\", \"discCount\":1, \"discNumber\":1, \"trackCount\":20, \"trackNumber\":17, \"trackTimeMillis\":357855, \"country\":\"USA\", \"currency\":\"USD\", \"primaryGenreName\":\"Jazz\", \"contentAdvisoryRating\":null}, \n\ - {\"wrapperType\":\"track\", \"kind\":\"song\", \"artistId\":123113553, \"collectionId\":365350903, \"trackId\":365353801, \"artistName\":\"Jos\\u00e9 James\", \"collectionName\":\"Blackmagic (Deluxe Version)\", \"trackName\":\"The Light\", \"collectionCensoredName\":\"Blackmagic (Deluxe Version)\", \"trackCensoredName\":\"The Light\", \"artistViewUrl\":\"http://itunes.apple.com/us/artist/jose-james/id123113553?uo=4\", \"collectionViewUrl\":\"http://itunes.apple.com/us/album/the-light/id365350903?i=365353801&uo=4\", \"trackViewUrl\":\"http://itunes.apple.com/us/album/the-light/id365350903?i=365353801&uo=4\", \"previewUrl\":\"http://a1.phobos.apple.com/us/r1000/044/Music/bc/8f/37/mzi.istzgbtp.aac.p.m4a\", \"artworkUrl30\":\"http://a1.phobos.apple.com/us/r1000/043/Music/a2/bf/7f/mzi.ulkgzsyt.30x30-50.jpg\", \"artworkUrl60\":\"http://a1.phobos.apple.com/us/r1000/043/Music/a2/bf/7f/mzi.ulkgzsyt.60x60-50.jpg\", \"artworkUrl100\":\"http://a1.phobos.apple.com/us/r1000/043/Music/a2/bf/7f/mzi.ulkgzsyt.100x100-75.jpg\", \"collectionPrice\":9.99, \"trackPrice\":-1.00, \"releaseDate\":\"2010-04-12 07:00:00 Etc/GMT\", \"collectionExplicitness\":\"notExplicit\", \"trackExplicitness\":\"notExplicit\", \"discCount\":1, \"discNumber\":1, \"trackCount\":20, \"trackNumber\":14, \"trackTimeMillis\":631591, \"country\":\"USA\", \"currency\":\"USD\", \"primaryGenreName\":\"Jazz\", \"contentAdvisoryRating\":null}, \n\ - {\"wrapperType\":\"track\", \"kind\":\"song\", \"artistId\":123113553, \"collectionId\":370608373, \"trackId\":370608586, \"artistName\":\"Jos\\u00e9 James & Jef Neve\", \"collectionName\":\"For All We Know (Bonus Track Version)\", \"trackName\":\"Autumn In New York\", \"collectionCensoredName\":\"For All We Know (Bonus Track Version)\", \"trackCensoredName\":\"Autumn In New York\", \"artistViewUrl\":\"http://itunes.apple.com/us/artist/jose-james/id123113553?uo=4\", \"collectionViewUrl\":\"http://itunes.apple.com/us/album/autumn-in-new-york/id370608373?i=370608586&uo=4\", \"trackViewUrl\":\"http://itunes.apple.com/us/album/autumn-in-new-york/id370608373?i=370608586&uo=4\", \"previewUrl\":\"http://a1.phobos.apple.com/us/r1000/024/Music/44/ec/f2/mzi.rmytqwwt.aac.p.m4a\", \"artworkUrl30\":\"http://a1.phobos.apple.com/us/r1000/018/Music/0e/66/cb/mzi.lfccwird.30x30-50.jpg\", \"artworkUrl60\":\"http://a1.phobos.apple.com/us/r1000/018/Music/0e/66/cb/mzi.lfccwird.60x60-50.jpg\", \"artworkUrl100\":\"http://a1.phobos.apple.com/us/r1000/018/Music/0e/66/cb/mzi.lfccwird.100x100-75.jpg\", \"collectionPrice\":9.99, \"trackPrice\":0.99, \"releaseDate\":\"2010-05-11 07:00:00 Etc/GMT\", \"collectionExplicitness\":\"notExplicit\", \"trackExplicitness\":\"notExplicit\", \"discCount\":1, \"discNumber\":1, \"trackCount\":10, \"trackNumber\":1, \"trackTimeMillis\":200071, \"country\":\"USA\", \"currency\":\"USD\", \"primaryGenreName\":\"Jazz\", \"contentAdvisoryRating\":null}, \n\ - {\"wrapperType\":\"track\", \"kind\":\"song\", \"artistId\":123113553, \"collectionId\":370608373, \"trackId\":370611252, \"artistName\":\"Jos\\u00e9 James & Jef Neve\", \"collectionName\":\"For All We Know (Bonus Track Version)\", \"trackName\":\"When I Fall In Love\", \"collectionCensoredName\":\"For All We Know (Bonus Track Version)\", \"trackCensoredName\":\"When I Fall In Love\", \"artistViewUrl\":\"http://itunes.apple.com/us/artist/jose-james/id123113553?uo=4\", \"collectionViewUrl\":\"http://itunes.apple.com/us/album/when-i-fall-in-love/id370608373?i=370611252&uo=4\", \"trackViewUrl\":\"http://itunes.apple.com/us/album/when-i-fall-in-love/id370608373?i=370611252&uo=4\", \"previewUrl\":\"http://a1.phobos.apple.com/us/r1000/050/Music/5d/58/5f/mzi.olitylaw.aac.p.m4a\", \"artworkUrl30\":\"http://a1.phobos.apple.com/us/r1000/018/Music/0e/66/cb/mzi.lfccwird.30x30-50.jpg\", \"artworkUrl60\":\"http://a1.phobos.apple.com/us/r1000/018/Music/0e/66/cb/mzi.lfccwird.60x60-50.jpg\", \"artworkUrl100\":\"http://a1.phobos.apple.com/us/r1000/018/Music/0e/66/cb/mzi.lfccwird.100x100-75.jpg\", \"collectionPrice\":9.99, \"trackPrice\":0.99, \"releaseDate\":\"2010-05-11 07:00:00 Etc/GMT\", \"collectionExplicitness\":\"notExplicit\", \"trackExplicitness\":\"notExplicit\", \"discCount\":1, \"discNumber\":1, \"trackCount\":10, \"trackNumber\":5, \"trackTimeMillis\":314054, \"country\":\"USA\", \"currency\":\"USD\", \"primaryGenreName\":\"Jazz\", \"contentAdvisoryRating\":null}, \n\ - {\"wrapperType\":\"track\", \"kind\":\"song\", \"artistId\":123113553, \"collectionId\":370608373, \"trackId\":370611848, \"artistName\":\"Jos\\u00e9 James & Jef Neve\", \"collectionName\":\"For All We Know (Bonus Track Version)\", \"trackName\":\"For All We Know\", \"collectionCensoredName\":\"For All We Know (Bonus Track Version)\", \"trackCensoredName\":\"For All We Know\", \"artistViewUrl\":\"http://itunes.apple.com/us/artist/jose-james/id123113553?uo=4\", \"collectionViewUrl\":\"http://itunes.apple.com/us/album/for-all-we-know/id370608373?i=370611848&uo=4\", \"trackViewUrl\":\"http://itunes.apple.com/us/album/for-all-we-know/id370608373?i=370611848&uo=4\", \"previewUrl\":\"http://a1.phobos.apple.com/us/r1000/037/Music/54/e4/af/mzi.nrzlwozg.aac.p.m4a\", \"artworkUrl30\":\"http://a1.phobos.apple.com/us/r1000/018/Music/0e/66/cb/mzi.lfccwird.30x30-50.jpg\", \"artworkUrl60\":\"http://a1.phobos.apple.com/us/r1000/018/Music/0e/66/cb/mzi.lfccwird.60x60-50.jpg\", \"artworkUrl100\":\"http://a1.phobos.apple.com/us/r1000/018/Music/0e/66/cb/mzi.lfccwird.100x100-75.jpg\", \"collectionPrice\":9.99, \"trackPrice\":0.99, \"releaseDate\":\"2010-05-11 07:00:00 Etc/GMT\", \"collectionExplicitness\":\"notExplicit\", \"trackExplicitness\":\"notExplicit\", \"discCount\":1, \"discNumber\":1, \"trackCount\":10, \"trackNumber\":9, \"trackTimeMillis\":312727, \"country\":\"USA\", \"currency\":\"USD\", \"primaryGenreName\":\"Jazz\", \"contentAdvisoryRating\":null}, \n\ - {\"wrapperType\":\"track\", \"kind\":\"song\", \"artistId\":123113553, \"collectionId\":370608373, \"trackId\":370608986, \"artistName\":\"Jos\\u00e9 James & Jef Neve\", \"collectionName\":\"For All We Know (Bonus Track Version)\", \"trackName\":\"Embraceable You\", \"collectionCensoredName\":\"For All We Know (Bonus Track Version)\", \"trackCensoredName\":\"Embraceable You\", \"artistViewUrl\":\"http://itunes.apple.com/us/artist/jose-james/id123113553?uo=4\", \"collectionViewUrl\":\"http://itunes.apple.com/us/album/embraceable-you/id370608373?i=370608986&uo=4\", \"trackViewUrl\":\"http://itunes.apple.com/us/album/embraceable-you/id370608373?i=370608986&uo=4\", \"previewUrl\":\"http://a1.phobos.apple.com/us/r1000/006/Music/79/38/b1/mzi.bkhfjjst.aac.p.m4a\", \"artworkUrl30\":\"http://a1.phobos.apple.com/us/r1000/018/Music/0e/66/cb/mzi.lfccwird.30x30-50.jpg\", \"artworkUrl60\":\"http://a1.phobos.apple.com/us/r1000/018/Music/0e/66/cb/mzi.lfccwird.60x60-50.jpg\", \"artworkUrl100\":\"http://a1.phobos.apple.com/us/r1000/018/Music/0e/66/cb/mzi.lfccwird.100x100-75.jpg\", \"collectionPrice\":9.99, \"trackPrice\":0.99, \"releaseDate\":\"2010-05-11 07:00:00 Etc/GMT\", \"collectionExplicitness\":\"notExplicit\", \"trackExplicitness\":\"notExplicit\", \"discCount\":1, \"discNumber\":1, \"trackCount\":10, \"trackNumber\":2, \"trackTimeMillis\":375153, \"country\":\"USA\", \"currency\":\"USD\", \"primaryGenreName\":\"Jazz\", \"contentAdvisoryRating\":null}, \n\ - {\"wrapperType\":\"track\", \"kind\":\"song\", \"artistId\":123113553, \"collectionId\":370608373, \"trackId\":370609436, \"artistName\":\"Jos\\u00e9 James & Jef Neve\", \"collectionName\":\"For All We Know (Bonus Track Version)\", \"trackName\":\"Gee Baby, Ain't I Good to You\", \"collectionCensoredName\":\"For All We Know (Bonus Track Version)\", \"trackCensoredName\":\"Gee Baby, Ain't I Good to You\", \"artistViewUrl\":\"http://itunes.apple.com/us/artist/jose-james/id123113553?uo=4\", \"collectionViewUrl\":\"http://itunes.apple.com/us/album/gee-baby-aint-i-good-to-you/id370608373?i=370609436&uo=4\", \"trackViewUrl\":\"http://itunes.apple.com/us/album/gee-baby-aint-i-good-to-you/id370608373?i=370609436&uo=4\", \"previewUrl\":\"http://a1.phobos.apple.com/us/r1000/003/Music/b5/c3/a9/mzi.xumxkdmi.aac.p.m4a\", \"artworkUrl30\":\"http://a1.phobos.apple.com/us/r1000/018/Music/0e/66/cb/mzi.lfccwird.30x30-50.jpg\", \"artworkUrl60\":\"http://a1.phobos.apple.com/us/r1000/018/Music/0e/66/cb/mzi.lfccwird.60x60-50.jpg\", \"artworkUrl100\":\"http://a1.phobos.apple.com/us/r1000/018/Music/0e/66/cb/mzi.lfccwird.100x100-75.jpg\", \"collectionPrice\":9.99, \"trackPrice\":0.99, \"releaseDate\":\"2010-05-11 07:00:00 Etc/GMT\", \"collectionExplicitness\":\"notExplicit\", \"trackExplicitness\":\"notExplicit\", \"discCount\":1, \"discNumber\":1, \"trackCount\":10, \"trackNumber\":3, \"trackTimeMillis\":319293, \"country\":\"USA\", \"currency\":\"USD\", \"primaryGenreName\":\"Jazz\", \"contentAdvisoryRating\":null}, \n\ - {\"wrapperType\":\"track\", \"kind\":\"song\", \"artistId\":123113553, \"collectionId\":370608373, \"trackId\":370610685, \"artistName\":\"Jos\\u00e9 James & Jef Neve\", \"collectionName\":\"For All We Know (Bonus Track Version)\", \"trackName\":\"Body and Soul\", \"collectionCensoredName\":\"For All We Know (Bonus Track Version)\", \"trackCensoredName\":\"Body and Soul\", \"artistViewUrl\":\"http://itunes.apple.com/us/artist/jose-james/id123113553?uo=4\", \"collectionViewUrl\":\"http://itunes.apple.com/us/album/body-and-soul/id370608373?i=370610685&uo=4\", \"trackViewUrl\":\"http://itunes.apple.com/us/album/body-and-soul/id370608373?i=370610685&uo=4\", \"previewUrl\":\"http://a1.phobos.apple.com/us/r1000/033/Music/67/18/a1/mzi.hdcilbqn.aac.p.m4a\", \"artworkUrl30\":\"http://a1.phobos.apple.com/us/r1000/018/Music/0e/66/cb/mzi.lfccwird.30x30-50.jpg\", \"artworkUrl60\":\"http://a1.phobos.apple.com/us/r1000/018/Music/0e/66/cb/mzi.lfccwird.60x60-50.jpg\", \"artworkUrl100\":\"http://a1.phobos.apple.com/us/r1000/018/Music/0e/66/cb/mzi.lfccwird.100x100-75.jpg\", \"collectionPrice\":9.99, \"trackPrice\":0.99, \"releaseDate\":\"2010-05-11 07:00:00 Etc/GMT\", \"collectionExplicitness\":\"notExplicit\", \"trackExplicitness\":\"notExplicit\", \"discCount\":1, \"discNumber\":1, \"trackCount\":10, \"trackNumber\":4, \"trackTimeMillis\":386380, \"country\":\"USA\", \"currency\":\"USD\", \"primaryGenreName\":\"Jazz\", \"contentAdvisoryRating\":null}, \n\ - {\"wrapperType\":\"track\", \"kind\":\"song\", \"artistId\":123113553, \"collectionId\":370608373, \"trackId\":370611631, \"artistName\":\"Jos\\u00e9 James & Jef Neve\", \"collectionName\":\"For All We Know (Bonus Track Version)\", \"trackName\":\"Lush Life\", \"collectionCensoredName\":\"For All We Know (Bonus Track Version)\", \"trackCensoredName\":\"Lush Life\", \"artistViewUrl\":\"http://itunes.apple.com/us/artist/jose-james/id123113553?uo=4\", \"collectionViewUrl\":\"http://itunes.apple.com/us/album/lush-life/id370608373?i=370611631&uo=4\", \"trackViewUrl\":\"http://itunes.apple.com/us/album/lush-life/id370608373?i=370611631&uo=4\", \"previewUrl\":\"http://a1.phobos.apple.com/us/r1000/049/Music/52/54/c7/mzi.zhswfzwh.aac.p.m4a\", \"artworkUrl30\":\"http://a1.phobos.apple.com/us/r1000/018/Music/0e/66/cb/mzi.lfccwird.30x30-50.jpg\", \"artworkUrl60\":\"http://a1.phobos.apple.com/us/r1000/018/Music/0e/66/cb/mzi.lfccwird.60x60-50.jpg\", \"artworkUrl100\":\"http://a1.phobos.apple.com/us/r1000/018/Music/0e/66/cb/mzi.lfccwird.100x100-75.jpg\", \"collectionPrice\":9.99, \"trackPrice\":-1.00, \"releaseDate\":\"2010-05-11 07:00:00 Etc/GMT\", \"collectionExplicitness\":\"notExplicit\", \"trackExplicitness\":\"notExplicit\", \"discCount\":1, \"discNumber\":1, \"trackCount\":10, \"trackNumber\":8, \"trackTimeMillis\":448028, \"country\":\"USA\", \"currency\":\"USD\", \"primaryGenreName\":\"Jazz\", \"contentAdvisoryRating\":null}, \n\ - {\"wrapperType\":\"track\", \"kind\":\"song\", \"artistId\":123113553, \"collectionId\":370608373, \"trackId\":370611570, \"artistName\":\"Jos\\u00e9 James & Jef Neve\", \"collectionName\":\"For All We Know (Bonus Track Version)\", \"trackName\":\"Just Squeeze Me\", \"collectionCensoredName\":\"For All We Know (Bonus Track Version)\", \"trackCensoredName\":\"Just Squeeze Me\", \"artistViewUrl\":\"http://itunes.apple.com/us/artist/jose-james/id123113553?uo=4\", \"collectionViewUrl\":\"http://itunes.apple.com/us/album/just-squeeze-me/id370608373?i=370611570&uo=4\", \"trackViewUrl\":\"http://itunes.apple.com/us/album/just-squeeze-me/id370608373?i=370611570&uo=4\", \"previewUrl\":\"http://a1.phobos.apple.com/us/r1000/054/Music/9a/4f/8d/mzi.qxbtzmav.aac.p.m4a\", \"artworkUrl30\":\"http://a1.phobos.apple.com/us/r1000/018/Music/0e/66/cb/mzi.lfccwird.30x30-50.jpg\", \"artworkUrl60\":\"http://a1.phobos.apple.com/us/r1000/018/Music/0e/66/cb/mzi.lfccwird.60x60-50.jpg\", \"artworkUrl100\":\"http://a1.phobos.apple.com/us/r1000/018/Music/0e/66/cb/mzi.lfccwird.100x100-75.jpg\", \"collectionPrice\":9.99, \"trackPrice\":0.99, \"releaseDate\":\"2010-05-11 07:00:00 Etc/GMT\", \"collectionExplicitness\":\"notExplicit\", \"trackExplicitness\":\"notExplicit\", \"discCount\":1, \"discNumber\":1, \"trackCount\":10, \"trackNumber\":7, \"trackTimeMillis\":255247, \"country\":\"USA\", \"currency\":\"USD\", \"primaryGenreName\":\"Jazz\", \"contentAdvisoryRating\":null}, \n\ - {\"wrapperType\":\"track\", \"kind\":\"song\", \"artistId\":123113553, \"collectionId\":370608373, \"trackId\":370611538, \"artistName\":\"Jos\\u00e9 James & Jef Neve\", \"collectionName\":\"For All We Know (Bonus Track Version)\", \"trackName\":\"Tenderly\", \"collectionCensoredName\":\"For All We Know (Bonus Track Version)\", \"trackCensoredName\":\"Tenderly\", \"artistViewUrl\":\"http://itunes.apple.com/us/artist/jose-james/id123113553?uo=4\", \"collectionViewUrl\":\"http://itunes.apple.com/us/album/tenderly/id370608373?i=370611538&uo=4\", \"trackViewUrl\":\"http://itunes.apple.com/us/album/tenderly/id370608373?i=370611538&uo=4\", \"previewUrl\":\"http://a1.phobos.apple.com/us/r1000/027/Music/78/89/68/mzi.wxudstde.aac.p.m4a\", \"artworkUrl30\":\"http://a1.phobos.apple.com/us/r1000/018/Music/0e/66/cb/mzi.lfccwird.30x30-50.jpg\", \"artworkUrl60\":\"http://a1.phobos.apple.com/us/r1000/018/Music/0e/66/cb/mzi.lfccwird.60x60-50.jpg\", \"artworkUrl100\":\"http://a1.phobos.apple.com/us/r1000/018/Music/0e/66/cb/mzi.lfccwird.100x100-75.jpg\", \"collectionPrice\":9.99, \"trackPrice\":-1.00, \"releaseDate\":\"2010-05-11 07:00:00 Etc/GMT\", \"collectionExplicitness\":\"notExplicit\", \"trackExplicitness\":\"notExplicit\", \"discCount\":1, \"discNumber\":1, \"trackCount\":10, \"trackNumber\":6, \"trackTimeMillis\":445817, \"country\":\"USA\", \"currency\":\"USD\", \"primaryGenreName\":\"Jazz\", \"contentAdvisoryRating\":null}, \n\ - {\"wrapperType\":\"track\", \"kind\":\"song\", \"artistId\":123113553, \"collectionId\":370608373, \"trackId\":370611857, \"artistName\":\"Jos\\u00e9 James & Jef Neve\", \"collectionName\":\"For All We Know (Bonus Track Version)\", \"trackName\":\"Georgia On My Mind\", \"collectionCensoredName\":\"For All We Know (Bonus Track Version)\", \"trackCensoredName\":\"Georgia On My Mind\", \"artistViewUrl\":\"http://itunes.apple.com/us/artist/jose-james/id123113553?uo=4\", \"collectionViewUrl\":\"http://itunes.apple.com/us/album/georgia-on-my-mind/id370608373?i=370611857&uo=4\", \"trackViewUrl\":\"http://itunes.apple.com/us/album/georgia-on-my-mind/id370608373?i=370611857&uo=4\", \"previewUrl\":\"http://a1.phobos.apple.com/us/r1000/050/Music/c8/e3/6b/mzi.dbxncbgm.aac.p.m4a\", \"artworkUrl30\":\"http://a1.phobos.apple.com/us/r1000/018/Music/0e/66/cb/mzi.lfccwird.30x30-50.jpg\", \"artworkUrl60\":\"http://a1.phobos.apple.com/us/r1000/018/Music/0e/66/cb/mzi.lfccwird.60x60-50.jpg\", \"artworkUrl100\":\"http://a1.phobos.apple.com/us/r1000/018/Music/0e/66/cb/mzi.lfccwird.100x100-75.jpg\", \"collectionPrice\":9.99, \"trackPrice\":-1.00, \"releaseDate\":\"2010-05-11 07:00:00 Etc/GMT\", \"collectionExplicitness\":\"notExplicit\", \"trackExplicitness\":\"notExplicit\", \"discCount\":1, \"discNumber\":1, \"trackCount\":10, \"trackNumber\":10, \"trackTimeMillis\":433665, \"country\":\"USA\", \"currency\":\"USD\", \"primaryGenreName\":\"Jazz\", \"contentAdvisoryRating\":null}, \n\ - {\"wrapperType\":\"track\", \"kind\":\"song\", \"artistId\":5117774, \"collectionId\":288906052, \"trackId\":288906069, \"artistName\":\"Jose James\", \"collectionName\":\"Desire & Love - Single\", \"trackName\":\"Desire\", \"collectionCensoredName\":\"Desire & Love - Single\", \"trackCensoredName\":\"Desire (Moodymann Remix)\", \"artistViewUrl\":\"http://itunes.apple.com/us/artist/jose-james/id5117774?uo=4\", \"collectionViewUrl\":\"http://itunes.apple.com/us/album/desire-moodymann-remix/id288906052?i=288906069&uo=4\", \"trackViewUrl\":\"http://itunes.apple.com/us/album/desire-moodymann-remix/id288906052?i=288906069&uo=4\", \"previewUrl\":\"http://a1.phobos.apple.com/us/r1000/013/Music/28/9b/e7/mzm.djwbtrju.aac.p.m4a\", \"artworkUrl30\":\"http://a1.phobos.apple.com/us/r1000/045/Features/77/b8/9f/dj.qqmyenao.30x30-50.jpg\", \"artworkUrl60\":\"http://a1.phobos.apple.com/us/r1000/045/Features/77/b8/9f/dj.qqmyenao.60x60-50.jpg\", \"artworkUrl100\":\"http://a1.phobos.apple.com/us/r1000/045/Features/77/b8/9f/dj.qqmyenao.100x100-75.jpg\", \"collectionPrice\":1.98, \"trackPrice\":0.99, \"releaseDate\":\"2008-09-21 07:00:00 Etc/GMT\", \"collectionExplicitness\":\"notExplicit\", \"trackExplicitness\":\"notExplicit\", \"discCount\":1, \"discNumber\":1, \"trackCount\":2, \"trackNumber\":1, \"trackTimeMillis\":340507, \"country\":\"USA\", \"currency\":\"USD\", \"primaryGenreName\":\"Dance\", \"contentAdvisoryRating\":null}, \n\ - {\"wrapperType\":\"track\", \"kind\":\"song\", \"artistId\":5117774, \"collectionId\":291596901, \"trackId\":291597047, \"artistName\":\"Jose James\", \"collectionName\":\"Gilles Peterson Presents Brownswood Bubblers Two\", \"trackName\":\"The Dreamer\", \"collectionCensoredName\":\"Gilles Peterson Presents Brownswood Bubblers Two\", \"trackCensoredName\":\"The Dreamer\", \"artistViewUrl\":\"http://itunes.apple.com/us/artist/jose-james/id5117774?uo=4\", \"collectionViewUrl\":\"http://itunes.apple.com/us/album/the-dreamer/id291596901?i=291597047&uo=4\", \"trackViewUrl\":\"http://itunes.apple.com/us/album/the-dreamer/id291596901?i=291597047&uo=4\", \"previewUrl\":\"http://a1.phobos.apple.com/us/r1000/039/Music/89/60/db/mzm.wpcdjonl.aac.p.m4a\", \"artworkUrl30\":\"http://a1.phobos.apple.com/us/r1000/025/Music/f9/bd/6d/mzi.qagrzrgg.30x30-50.jpg\", \"artworkUrl60\":\"http://a1.phobos.apple.com/us/r1000/025/Music/f9/bd/6d/mzi.qagrzrgg.60x60-50.jpg\", \"artworkUrl100\":\"http://a1.phobos.apple.com/us/r1000/025/Music/f9/bd/6d/mzi.qagrzrgg.100x100-75.jpg\", \"collectionPrice\":10.99, \"trackPrice\":0.99, \"releaseDate\":\"2007-07-06 07:00:00 Etc/GMT\", \"collectionExplicitness\":\"notExplicit\", \"trackExplicitness\":\"notExplicit\", \"discCount\":1, \"discNumber\":1, \"trackCount\":16, \"trackNumber\":16, \"trackTimeMillis\":420453, \"country\":\"USA\", \"currency\":\"USD\", \"primaryGenreName\":\"Dance\", \"contentAdvisoryRating\":null}, \n\ - {\"wrapperType\":\"track\", \"kind\":\"song\", \"artistId\":5117774, \"collectionId\":394049927, \"trackId\":394050366, \"artistName\":\"Jose James\", \"collectionName\":\"Saint-Germain-des-Pr\\u00e9s Caf\\u00e9 (The Blue Edition by Mr. Scruff)\", \"trackName\":\"Desire (Moodyman Remix)\", \"collectionCensoredName\":\"Saint-Germain-des-Pr\\u00e9s Caf\\u00e9 (The Blue Edition by Mr. Scruff)\", \"trackCensoredName\":\"Desire (Moodyman Remix)\", \"artistViewUrl\":\"http://itunes.apple.com/us/artist/jose-james/id5117774?uo=4\", \"collectionViewUrl\":\"http://itunes.apple.com/us/album/desire-moodyman-remix/id394049927?i=394050366&uo=4\", \"trackViewUrl\":\"http://itunes.apple.com/us/album/desire-moodyman-remix/id394049927?i=394050366&uo=4\", \"previewUrl\":\"http://a1.phobos.apple.com/us/r1000/049/Music/28/5f/55/mzi.sewnbcsw.aac.p.m4a\", \"artworkUrl30\":\"http://a1.phobos.apple.com/us/r1000/002/Music/21/0d/28/mzi.ojpdsoax.30x30-50.jpg\", \"artworkUrl60\":\"http://a1.phobos.apple.com/us/r1000/002/Music/21/0d/28/mzi.ojpdsoax.60x60-50.jpg\", \"artworkUrl100\":\"http://a1.phobos.apple.com/us/r1000/002/Music/21/0d/28/mzi.ojpdsoax.100x100-75.jpg\", \"collectionPrice\":15.99, \"trackPrice\":-1.00, \"releaseDate\":\"2010-10-11 07:00:00 Etc/GMT\", \"collectionExplicitness\":\"notExplicit\", \"trackExplicitness\":\"notExplicit\", \"discCount\":2, \"discNumber\":1, \"trackCount\":19, \"trackNumber\":18, \"trackTimeMillis\":306214, \"country\":\"USA\", \"currency\":\"USD\", \"primaryGenreName\":\"Electronic\", \"contentAdvisoryRating\":null}, \n\ - {\"wrapperType\":\"track\", \"kind\":\"song\", \"artistId\":5117774, \"collectionId\":286264618, \"trackId\":286264685, \"artistName\":\"Jose James & Flying Lotus\", \"collectionName\":\"Park Bench People - EP\", \"trackName\":\"Visions of Violet\", \"collectionCensoredName\":\"Park Bench People - EP\", \"trackCensoredName\":\"Visions of Violet\", \"artistViewUrl\":\"http://itunes.apple.com/us/artist/jose-james/id5117774?uo=4\", \"collectionViewUrl\":\"http://itunes.apple.com/us/album/visions-of-violet/id286264618?i=286264685&uo=4\", \"trackViewUrl\":\"http://itunes.apple.com/us/album/visions-of-violet/id286264618?i=286264685&uo=4\", \"previewUrl\":\"http://a1.phobos.apple.com/us/r1000/047/Music/25/3d/19/mzm.dsstwydd.aac.p.m4a\", \"artworkUrl30\":\"http://a1.phobos.apple.com/us/r1000/058/Features/4e/f9/7f/dj.yzdqoree.30x30-50.jpg\", \"artworkUrl60\":\"http://a1.phobos.apple.com/us/r1000/058/Features/4e/f9/7f/dj.yzdqoree.60x60-50.jpg\", \"artworkUrl100\":\"http://a1.phobos.apple.com/us/r1000/058/Features/4e/f9/7f/dj.yzdqoree.100x100-75.jpg\", \"collectionPrice\":1.99, \"trackPrice\":0.99, \"releaseDate\":\"2008-08-24 07:00:00 Etc/GMT\", \"collectionExplicitness\":\"notExplicit\", \"trackExplicitness\":\"notExplicit\", \"discCount\":1, \"discNumber\":1, \"trackCount\":2, \"trackNumber\":2, \"trackTimeMillis\":139307, \"country\":\"USA\", \"currency\":\"USD\", \"primaryGenreName\":\"Jazz\", \"contentAdvisoryRating\":null}, \n\ - {\"wrapperType\":\"track\", \"kind\":\"song\", \"artistId\":5117774, \"collectionId\":282084350, \"trackId\":282084363, \"artistName\":\"Jose James\", \"collectionName\":\"Gilles Peterson In the House\", \"trackName\":\"Spirits Above\", \"collectionCensoredName\":\"Gilles Peterson In the House\", \"trackCensoredName\":\"Spirits Above\", \"artistViewUrl\":\"http://itunes.apple.com/us/artist/jose-james/id5117774?uo=4\", \"collectionViewUrl\":\"http://itunes.apple.com/us/album/spirits-above/id282084350?i=282084363&uo=4\", \"trackViewUrl\":\"http://itunes.apple.com/us/album/spirits-above/id282084350?i=282084363&uo=4\", \"previewUrl\":\"http://a1.phobos.apple.com/us/r1000/037/Music/e1/eb/f4/mzm.arzoanfi.aac.p.m4a\", \"artworkUrl30\":\"http://a1.phobos.apple.com/us/r1000/048/Music/f2/c6/0d/mzi.jupqudrd.30x30-50.jpg\", \"artworkUrl60\":\"http://a1.phobos.apple.com/us/r1000/048/Music/f2/c6/0d/mzi.jupqudrd.60x60-50.jpg\", \"artworkUrl100\":\"http://a1.phobos.apple.com/us/r1000/048/Music/f2/c6/0d/mzi.jupqudrd.100x100-75.jpg\", \"collectionPrice\":3.99, \"trackPrice\":0.99, \"releaseDate\":\"2008-01-28 08:00:00 Etc/GMT\", \"collectionExplicitness\":\"notExplicit\", \"trackExplicitness\":\"notExplicit\", \"discCount\":1, \"discNumber\":1, \"trackCount\":12, \"trackNumber\":4, \"trackTimeMillis\":410587, \"country\":\"USA\", \"currency\":\"USD\", \"primaryGenreName\":\"Dance\", \"contentAdvisoryRating\":null}, \n\ - {\"wrapperType\":\"track\", \"kind\":\"song\", \"artistId\":5117774, \"collectionId\":395704841, \"trackId\":395704962, \"artistName\":\"Jose James\", \"collectionName\":\"Gilles Peterson: Worldwide - A Celebration of His Snydicated Radio Show\", \"trackName\":\"The Dreamer\", \"collectionCensoredName\":\"Gilles Peterson: Worldwide - A Celebration of His Snydicated Radio Show\", \"trackCensoredName\":\"The Dreamer\", \"artistViewUrl\":\"http://itunes.apple.com/us/artist/jose-james/id5117774?uo=4\", \"collectionViewUrl\":\"http://itunes.apple.com/us/album/the-dreamer/id395704841?i=395704962&uo=4\", \"trackViewUrl\":\"http://itunes.apple.com/us/album/the-dreamer/id395704841?i=395704962&uo=4\", \"previewUrl\":\"http://a1.phobos.apple.com/us/r1000/025/Music/ed/ff/1c/mzi.bmkfrqyo.aac.p.m4a\", \"artworkUrl30\":\"http://a1.phobos.apple.com/us/r1000/035/Music/01/2b/c8/mzi.zffvkmva.30x30-50.jpg\", \"artworkUrl60\":\"http://a1.phobos.apple.com/us/r1000/035/Music/01/2b/c8/mzi.zffvkmva.60x60-50.jpg\", \"artworkUrl100\":\"http://a1.phobos.apple.com/us/r1000/035/Music/01/2b/c8/mzi.zffvkmva.100x100-75.jpg\", \"collectionPrice\":9.99, \"trackPrice\":0.99, \"releaseDate\":\"2010-10-08 07:00:00 Etc/GMT\", \"collectionExplicitness\":\"notExplicit\", \"trackExplicitness\":\"notExplicit\", \"discCount\":1, \"discNumber\":1, \"trackCount\":17, \"trackNumber\":15, \"trackTimeMillis\":422149, \"country\":\"USA\", \"currency\":\"USD\", \"primaryGenreName\":\"R&B/Soul\", \"contentAdvisoryRating\":null}, \n\ - {\"wrapperType\":\"track\", \"kind\":\"song\", \"artistId\":5117774, \"collectionId\":286264618, \"trackId\":286264650, \"artistName\":\"Jose James\", \"collectionName\":\"Park Bench People - EP\", \"trackName\":\"Park Bench People\", \"collectionCensoredName\":\"Park Bench People - EP\", \"trackCensoredName\":\"Park Bench People\", \"artistViewUrl\":\"http://itunes.apple.com/us/artist/jose-james/id5117774?uo=4\", \"collectionViewUrl\":\"http://itunes.apple.com/us/album/park-bench-people/id286264618?i=286264650&uo=4\", \"trackViewUrl\":\"http://itunes.apple.com/us/album/park-bench-people/id286264618?i=286264650&uo=4\", \"previewUrl\":\"http://a1.phobos.apple.com/us/r1000/024/Music/e6/5d/4d/mzm.esgofptq.aac.p.m4a\", \"artworkUrl30\":\"http://a1.phobos.apple.com/us/r1000/058/Features/4e/f9/7f/dj.yzdqoree.30x30-50.jpg\", \"artworkUrl60\":\"http://a1.phobos.apple.com/us/r1000/058/Features/4e/f9/7f/dj.yzdqoree.60x60-50.jpg\", \"artworkUrl100\":\"http://a1.phobos.apple.com/us/r1000/058/Features/4e/f9/7f/dj.yzdqoree.100x100-75.jpg\", \"collectionPrice\":1.99, \"trackPrice\":0.99, \"releaseDate\":\"2008-08-24 07:00:00 Etc/GMT\", \"collectionExplicitness\":\"notExplicit\", \"trackExplicitness\":\"notExplicit\", \"discCount\":1, \"discNumber\":1, \"trackCount\":2, \"trackNumber\":1, \"trackTimeMillis\":364107, \"country\":\"USA\", \"currency\":\"USD\", \"primaryGenreName\":\"Jazz\", \"contentAdvisoryRating\":null}, \n\ - {\"wrapperType\":\"track\", \"kind\":\"song\", \"artistId\":123113553, \"collectionId\":334904540, \"trackId\":334904562, \"artistName\":\"Jos\\u00e9 James\", \"collectionName\":\"Blackmagic Remixes - EP\", \"trackName\":\"Blackmagic\", \"collectionCensoredName\":\"Blackmagic Remixes - EP\", \"trackCensoredName\":\"Blackmagic (Joy Orbison's Recreation)\", \"artistViewUrl\":\"http://itunes.apple.com/us/artist/jose-james/id123113553?uo=4\", \"collectionViewUrl\":\"http://itunes.apple.com/us/album/blackmagic-joy-orbisons-recreation/id334904540?i=334904562&uo=4\", \"trackViewUrl\":\"http://itunes.apple.com/us/album/blackmagic-joy-orbisons-recreation/id334904540?i=334904562&uo=4\", \"previewUrl\":\"http://a1.phobos.apple.com/us/r1000/048/Music/ef/76/00/mzm.xqhwytnx.aac.p.m4a\", \"artworkUrl30\":\"http://a1.phobos.apple.com/us/r1000/002/Music/7b/c5/a7/mzi.kgvrbwuh.30x30-50.jpg\", \"artworkUrl60\":\"http://a1.phobos.apple.com/us/r1000/002/Music/7b/c5/a7/mzi.kgvrbwuh.60x60-50.jpg\", \"artworkUrl100\":\"http://a1.phobos.apple.com/us/r1000/002/Music/7b/c5/a7/mzi.kgvrbwuh.100x100-75.jpg\", \"collectionPrice\":3.96, \"trackPrice\":0.99, \"releaseDate\":\"2009-11-01 07:00:00 Etc/GMT\", \"collectionExplicitness\":\"notExplicit\", \"trackExplicitness\":\"notExplicit\", \"discCount\":1, \"discNumber\":1, \"trackCount\":4, \"trackNumber\":1, \"trackTimeMillis\":355804, \"country\":\"USA\", \"currency\":\"USD\", \"primaryGenreName\":\"Dance\", \"contentAdvisoryRating\":null}, \n\ - {\"wrapperType\":\"track\", \"kind\":\"song\", \"artistId\":123113553, \"collectionId\":363155640, \"trackId\":363155680, \"artistName\":\"Jos\\u00e9 James & Jef Neve\", \"collectionName\":\"Gee Baby, Ain't I Good to You - Single\", \"trackName\":\"Gee Baby, Ain't I Good to You\", \"collectionCensoredName\":\"Gee Baby, Ain't I Good to You - Single\", \"trackCensoredName\":\"Gee Baby, Ain't I Good to You\", \"artistViewUrl\":\"http://itunes.apple.com/us/artist/jose-james/id123113553?uo=4\", \"collectionViewUrl\":\"http://itunes.apple.com/us/album/gee-baby-aint-i-good-to-you/id363155640?i=363155680&uo=4\", \"trackViewUrl\":\"http://itunes.apple.com/us/album/gee-baby-aint-i-good-to-you/id363155640?i=363155680&uo=4\", \"previewUrl\":\"http://a1.phobos.apple.com/us/r1000/046/Music/d8/ce/0d/mzi.qujjwrum.aac.p.m4a\", \"artworkUrl30\":\"http://a1.phobos.apple.com/us/r1000/009/Music/c1/63/b0/mzi.dwvbcher.30x30-50.jpg\", \"artworkUrl60\":\"http://a1.phobos.apple.com/us/r1000/009/Music/c1/63/b0/mzi.dwvbcher.60x60-50.jpg\", \"artworkUrl100\":\"http://a1.phobos.apple.com/us/r1000/009/Music/c1/63/b0/mzi.dwvbcher.100x100-75.jpg\", \"collectionPrice\":0.99, \"trackPrice\":0.99, \"releaseDate\":\"2010-03-30 07:00:00 Etc/GMT\", \"collectionExplicitness\":\"notExplicit\", \"trackExplicitness\":\"notExplicit\", \"discCount\":1, \"discNumber\":1, \"trackCount\":1, \"trackNumber\":1, \"trackTimeMillis\":319628, \"country\":\"USA\", \"currency\":\"USD\", \"primaryGenreName\":\"Jazz\", \"contentAdvisoryRating\":null}, \n\ - {\"wrapperType\":\"track\", \"kind\":\"song\", \"artistId\":5117774, \"collectionId\":288906052, \"trackId\":288906119, \"artistName\":\"Jose James\", \"collectionName\":\"Desire & Love - Single\", \"trackName\":\"Love\", \"collectionCensoredName\":\"Desire & Love - Single\", \"trackCensoredName\":\"Love (Ben Westbeech Remix)\", \"artistViewUrl\":\"http://itunes.apple.com/us/artist/jose-james/id5117774?uo=4\", \"collectionViewUrl\":\"http://itunes.apple.com/us/album/love-ben-westbeech-remix/id288906052?i=288906119&uo=4\", \"trackViewUrl\":\"http://itunes.apple.com/us/album/love-ben-westbeech-remix/id288906052?i=288906119&uo=4\", \"previewUrl\":\"http://a1.phobos.apple.com/us/r1000/014/Music/1e/53/68/mzm.tunaxzvb.aac.p.m4a\", \"artworkUrl30\":\"http://a1.phobos.apple.com/us/r1000/045/Features/77/b8/9f/dj.qqmyenao.30x30-50.jpg\", \"artworkUrl60\":\"http://a1.phobos.apple.com/us/r1000/045/Features/77/b8/9f/dj.qqmyenao.60x60-50.jpg\", \"artworkUrl100\":\"http://a1.phobos.apple.com/us/r1000/045/Features/77/b8/9f/dj.qqmyenao.100x100-75.jpg\", \"collectionPrice\":1.98, \"trackPrice\":0.99, \"releaseDate\":\"2008-09-21 07:00:00 Etc/GMT\", \"collectionExplicitness\":\"notExplicit\", \"trackExplicitness\":\"notExplicit\", \"discCount\":1, \"discNumber\":1, \"trackCount\":2, \"trackNumber\":2, \"trackTimeMillis\":460107, \"country\":\"USA\", \"currency\":\"USD\", \"primaryGenreName\":\"Dance\", \"contentAdvisoryRating\":null}]\n\ - }\n\n\n" - http_version: "1.1" -- !ruby/struct:VCR::HTTPInteraction - request: !ruby/struct:VCR::Request - method: :get - uri: http://ax.itunes.apple.com:80/WebObjects/MZStoreServices.woa/wa/wsSearch?media=podcast&term=Beyondjazz - body: - headers: - response: !ruby/struct:VCR::Response - status: !ruby/struct:VCR::ResponseStatus - code: 200 - message: OK - headers: - x-apple-orig-url-path: - - /WebObjects/MZStoreServices.woa/wa/wsSearch?term=Beyondjazz&media=podcast - x-apple-application-site: - - CUP - x-apple-max-age: - - "3600" - x-apple-woa-inbound-url: - - /WebObjects/MZStoreServices.woa/wa/wsSearch?term=Beyondjazz&media=podcast - content-type: - - text/javascript; charset=utf-8 - x-apple-application-instance: - - "455" - x-webobjects-loadaverage: - - "0" - x-ns-label: - - mzstoreservice-lb - expires: - - Mon, 31 Jan 2011 05:44:03 GMT - cache-control: - - max-age=0, no-cache - pragma: - - no-cache - date: - - Mon, 31 Jan 2011 05:44:03 GMT - content-length: - - "1157" - vary: - - X-Apple-Store-Front - x-apple-partner: - - origin.0 - body: "\n\n\n\ - {\n \"resultCount\":1,\n \"results\": [\n\ - {\"wrapperType\":\"track\", \"kind\":\"podcast\", \"artistId\":null, \"collectionId\":337994101, \"trackId\":337994101, \"artistName\":\"Julie Kummer\", \"collectionName\":\"s i s t a k\", \"trackName\":\"s i s t a k\", \"collectionCensoredName\":\"s i s t a k\", \"trackCensoredName\":\"s i s t a k\", \"artistViewUrl\":null, \"collectionViewUrl\":\"http://itunes.apple.com/us/podcast/s-i-s-t-a-k/id337994101?uo=4\", \"trackViewUrl\":\"http://itunes.apple.com/us/podcast/s-i-s-t-a-k/id337994101?uo=4\", \"previewUrl\":null, \"artworkUrl30\":\"http://a1.phobos.apple.com/us/r30/Podcasts/d6/e9/23/ps.zoppkizk.30x30-50.jpg\", \"artworkUrl60\":\"http://a1.phobos.apple.com/us/r30/Podcasts/d6/e9/23/ps.zoppkizk.60x60-50.jpg\", \"artworkUrl100\":\"http://a1.phobos.apple.com/us/r30/Podcasts/d6/e9/23/ps.zoppkizk.100x100-75.jpg\", \"collectionPrice\":0.00, \"trackPrice\":0.00, \"releaseDate\":\"2010-11-23 13:25:00 Etc/GMT\", \"collectionExplicitness\":\"cleaned\", \"trackExplicitness\":\"cleaned\", \"discCount\":null, \"discNumber\":null, \"trackCount\":5, \"trackNumber\":null, \"trackTimeMillis\":null, \"country\":\"USA\", \"currency\":\"USD\", \"primaryGenreName\":\"Music\", \"contentAdvisoryRating\":\"Clean\"}]\n\ - }\n\n\n" - http_version: "1.1" -- !ruby/struct:VCR::HTTPInteraction - request: !ruby/struct:VCR::Request - method: :get - uri: http://ax.itunes.apple.com:80/WebObjects/MZStoreServices.woa/wa/wsSearch?media=movie&term=Blade%20Runner - body: - headers: - response: !ruby/struct:VCR::Response - status: !ruby/struct:VCR::ResponseStatus - code: 200 - message: OK - headers: - x-apple-orig-url-path: - - /WebObjects/MZStoreServices.woa/wa/wsSearch?term=Blade%20Runner&media=movie - x-apple-application-site: - - CUP - x-apple-max-age: - - "3600" - x-apple-woa-inbound-url: - - /WebObjects/MZStoreServices.woa/wa/wsSearch?term=Blade%20Runner&media=movie - content-type: - - text/javascript; charset=utf-8 - x-apple-application-instance: - - "246" - x-webobjects-loadaverage: - - "0" - x-ns-label: - - mzstoreservice-lb - expires: - - Mon, 31 Jan 2011 05:44:03 GMT - cache-control: - - max-age=0, no-cache - pragma: - - no-cache - date: - - Mon, 31 Jan 2011 05:44:03 GMT - content-length: - - "2492" - vary: - - X-Apple-Store-Front - x-apple-partner: - - origin.0 - body: "\n\n\n\ - {\n \"resultCount\":2,\n \"results\": [\n\ - {\"wrapperType\":\"track\", \"kind\":\"feature-movie\", \"artistId\":null, \"collectionId\":null, \"trackId\":273857038, \"artistName\":\"Ridley Scott\", \"collectionName\":null, \"trackName\":\"Blade Runner (Director's Cut)\", \"collectionCensoredName\":null, \"trackCensoredName\":\"Blade Runner (Director's Cut)\", \"artistViewUrl\":null, \"collectionViewUrl\":null, \"trackViewUrl\":\"http://itunes.apple.com/WebObjects/MZStore.woa/wa/viewMovie?id=273857038&s=143441&uo=4\", \"previewUrl\":\"http://a1809.v.phobos.apple.com/us/r1000/056/Video/19/b7/d3/mzm.xmrjnvye..640x354.h264lc.d2.p.m4v\", \"artworkUrl30\":\"http://a1.phobos.apple.com/us/r1000/026/Music/d1/3d/db/dj.ehpnqsxx.30x30-50.jpg\", \"artworkUrl60\":\"http://a1.phobos.apple.com/us/r1000/026/Music/d1/3d/db/dj.ehpnqsxx.60x60-50.jpg\", \"artworkUrl100\":\"http://a1.phobos.apple.com/us/r1000/026/Music/d1/3d/db/dj.ehpnqsxx.100x100-75.jpg\", \"collectionPrice\":9.99, \"trackPrice\":9.99, \"releaseDate\":\"2007-12-18 08:00:00 Etc/GMT\", \"collectionExplicitness\":\"notExplicit\", \"trackExplicitness\":\"notExplicit\", \"discCount\":null, \"discNumber\":null, \"trackCount\":null, \"trackNumber\":null, \"trackTimeMillis\":7048715.0, \"country\":\"USA\", \"currency\":\"USD\", \"primaryGenreName\":\"Action & Adventure\", \"contentAdvisoryRating\":\"R\"}, \n\ - {\"wrapperType\":\"track\", \"kind\":\"feature-movie\", \"artistId\":null, \"collectionId\":null, \"trackId\":295142421, \"artistName\":\"Ridley Scott\", \"collectionName\":null, \"trackName\":\"Blade Runner (The Final Cut)\", \"collectionCensoredName\":null, \"trackCensoredName\":\"Blade Runner (The Final Cut)\", \"artistViewUrl\":null, \"collectionViewUrl\":null, \"trackViewUrl\":\"http://itunes.apple.com/WebObjects/MZStore.woa/wa/viewMovie?id=295142421&s=143441&uo=4\", \"previewUrl\":\"http://a792.v.phobos.apple.com/us/r1000/039/Video/b5/91/31/mzm.zcyquwhc..640x266.h264lc.d2.p.m4v\", \"artworkUrl30\":\"http://a1.phobos.apple.com/us/r1000/043/Video/b4/2a/98/mzi.wcsbsvqj.30x30-50.jpg\", \"artworkUrl60\":\"http://a1.phobos.apple.com/us/r1000/043/Video/b4/2a/98/mzi.wcsbsvqj.60x60-50.jpg\", \"artworkUrl100\":\"http://a1.phobos.apple.com/us/r1000/043/Video/b4/2a/98/mzi.wcsbsvqj.100x100-75.jpg\", \"collectionPrice\":9.99, \"trackPrice\":9.99, \"releaseDate\":\"1982-06-25 07:00:00 Etc/GMT\", \"collectionExplicitness\":\"notExplicit\", \"trackExplicitness\":\"notExplicit\", \"discCount\":null, \"discNumber\":null, \"trackCount\":null, \"trackNumber\":null, \"trackTimeMillis\":7049440.0, \"country\":\"USA\", \"currency\":\"USD\", \"primaryGenreName\":\"Sci-Fi & Fantasy\", \"contentAdvisoryRating\":\"R\"}]\n\ - }\n\n\n" - http_version: "1.1" -- !ruby/struct:VCR::HTTPInteraction - request: !ruby/struct:VCR::Request - method: :get - uri: http://ax.itunes.apple.com:80/WebObjects/MZStoreServices.woa/wa/wsSearch?media=musicVideo&term=Sabotage - body: - headers: - response: !ruby/struct:VCR::Response - status: !ruby/struct:VCR::ResponseStatus - code: 200 - message: OK - headers: - x-apple-orig-url-path: - - /WebObjects/MZStoreServices.woa/wa/wsSearch?term=Sabotage&media=musicVideo - x-apple-application-site: - - CUP - x-apple-max-age: - - "3600" - x-apple-woa-inbound-url: - - /WebObjects/MZStoreServices.woa/wa/wsSearch?term=Sabotage&media=musicVideo - content-type: - - text/javascript; charset=utf-8 - x-apple-application-instance: - - "354" - x-webobjects-loadaverage: - - "0" - x-ns-label: - - mzstoreservice-lb - expires: - - Mon, 31 Jan 2011 05:44:03 GMT - cache-control: - - max-age=0, no-cache - pragma: - - no-cache - date: - - Mon, 31 Jan 2011 05:44:03 GMT - content-length: - - "3796" - vary: - - X-Apple-Store-Front - x-apple-partner: - - origin.0 - body: "\n\n\n\ - {\n \"resultCount\":3,\n \"results\": [\n\ - {\"wrapperType\":\"track\", \"kind\":\"music-video\", \"artistId\":1971863, \"collectionId\":null, \"trackId\":394290559, \"artistName\":\"Beastie Boys\", \"collectionName\":null, \"trackName\":\"Sabotage\", \"collectionCensoredName\":null, \"trackCensoredName\":\"Sabotage\", \"artistViewUrl\":\"http://itunes.apple.com/us/artist/beastie-boys/id1971863?uo=4\", \"collectionViewUrl\":null, \"trackViewUrl\":\"http://itunes.apple.com/us/video/sabotage/id394290559?uo=4\", \"previewUrl\":\"http://a1478.v.phobos.apple.com/us/r1000/056/Video/55/54/53/mzi.yuqbuvks..640x480.h264lc.d2.p.m4v\", \"artworkUrl30\":\"http://a1.phobos.apple.com/us/r1000/018/Video/f1/ed/a9/mzi.guaxeujq.jpg\", \"artworkUrl60\":\"http://a1.phobos.apple.com/us/r1000/018/Video/f1/ed/a9/mzi.guaxeujq.80x60-75.jpg\", \"artworkUrl100\":\"http://a1.phobos.apple.com/us/r1000/018/Video/f1/ed/a9/mzi.guaxeujq.133x100-99.jpg\", \"collectionPrice\":1.99, \"trackPrice\":1.99, \"releaseDate\":\"2009-07-14 07:00:00 Etc/GMT\", \"collectionExplicitness\":\"notExplicit\", \"trackExplicitness\":\"notExplicit\", \"discCount\":null, \"discNumber\":null, \"trackCount\":null, \"trackNumber\":null, \"trackTimeMillis\":181600.0, \"country\":\"USA\", \"currency\":\"USD\", \"primaryGenreName\":\"Hip Hop/Rap\", \"contentAdvisoryRating\":null}, \n\ - {\"wrapperType\":\"track\", \"kind\":\"music-video\", \"artistId\":310238369, \"collectionId\":null, \"trackId\":328089666, \"artistName\":\"Kristinia DeBarge\", \"collectionName\":null, \"trackName\":\"Sabotage\", \"collectionCensoredName\":null, \"trackCensoredName\":\"Sabotage\", \"artistViewUrl\":\"http://itunes.apple.com/us/artist/kristinia-debarge/id310238369?uo=4\", \"collectionViewUrl\":null, \"trackViewUrl\":\"http://itunes.apple.com/us/video/sabotage/id328089666?uo=4\", \"previewUrl\":\"http://a1860.v.phobos.apple.com/us/r1000/026/Video/02/4d/e0/mzi.vbzutodi..640x320.h264lc.d2.p.m4v\", \"artworkUrl30\":\"http://a1.phobos.apple.com/us/r1000/034/Video/54/4b/10/mzi.hdhqzwwg.jpg\", \"artworkUrl60\":\"http://a1.phobos.apple.com/us/r1000/034/Video/54/4b/10/mzi.hdhqzwwg.80x60-75.jpg\", \"artworkUrl100\":\"http://a1.phobos.apple.com/us/r1000/034/Video/54/4b/10/mzi.hdhqzwwg.133x100-99.jpg\", \"collectionPrice\":1.99, \"trackPrice\":1.99, \"releaseDate\":\"2009-08-18 07:00:00 Etc/GMT\", \"collectionExplicitness\":\"notExplicit\", \"trackExplicitness\":\"notExplicit\", \"discCount\":null, \"discNumber\":null, \"trackCount\":null, \"trackNumber\":null, \"trackTimeMillis\":197731.0, \"country\":\"USA\", \"currency\":\"USD\", \"primaryGenreName\":\"Pop\", \"contentAdvisoryRating\":null}, \n\ - {\"wrapperType\":\"track\", \"kind\":\"music-video\", \"artistId\":310238369, \"collectionId\":345189786, \"trackId\":345190056, \"artistName\":\"Kristinia DeBarge\", \"collectionName\":\"Exposed (Deluxe Edition)\", \"trackName\":\"Sabotage\", \"collectionCensoredName\":\"Exposed (Deluxe Edition)\", \"trackCensoredName\":\"Sabotage (Bonus Track)\", \"artistViewUrl\":\"http://itunes.apple.com/us/artist/kristinia-debarge/id310238369?uo=4\", \"collectionViewUrl\":\"http://itunes.apple.com/us/video/sabotage-bonus-track/id345190056?uo=4\", \"trackViewUrl\":\"http://itunes.apple.com/us/video/sabotage-bonus-track/id345190056?uo=4\", \"previewUrl\":\"http://a777.v.phobos.apple.com/us/r1000/032/Video/e0/a5/ae/mzi.ysusgajf..640x320.h264lc.d2.p.m4v\", \"artworkUrl30\":\"http://a1.phobos.apple.com/us/r1000/040/Video/54/4b/10/mzi.intpumcm.jpg\", \"artworkUrl60\":\"http://a1.phobos.apple.com/us/r1000/040/Video/54/4b/10/mzi.intpumcm.80x60-75.jpg\", \"artworkUrl100\":\"http://a1.phobos.apple.com/us/r1000/040/Video/54/4b/10/mzi.intpumcm.133x100-99.jpg\", \"collectionPrice\":9.99, \"trackPrice\":1.49, \"releaseDate\":\"2003-04-28 07:00:00 Etc/GMT\", \"collectionExplicitness\":\"notExplicit\", \"trackExplicitness\":\"notExplicit\", \"discCount\":1, \"discNumber\":1, \"trackCount\":15, \"trackNumber\":15, \"trackTimeMillis\":201901.0, \"country\":\"USA\", \"currency\":\"USD\", \"primaryGenreName\":\"Pop\", \"contentAdvisoryRating\":null}]\n\ - }\n\n\n" - http_version: "1.1" -- !ruby/struct:VCR::HTTPInteraction - request: !ruby/struct:VCR::Request - method: :get - uri: http://ax.itunes.apple.com:80/WebObjects/MZStoreServices.woa/wa/wsSearch?media=audiobook&term=Ernest%20Hemingway - body: - headers: - response: !ruby/struct:VCR::Response - status: !ruby/struct:VCR::ResponseStatus - code: 200 - message: OK - headers: - x-apple-orig-url-path: - - /WebObjects/MZStoreServices.woa/wa/wsSearch?term=Ernest%20Hemingway&media=audiobook - x-apple-application-site: - - CUP - x-apple-max-age: - - "3600" - x-apple-woa-inbound-url: - - /WebObjects/MZStoreServices.woa/wa/wsSearch?term=Ernest%20Hemingway&media=audiobook - content-type: - - text/javascript; charset=utf-8 - x-apple-application-instance: - - "159" - x-webobjects-loadaverage: - - "0" - x-ns-label: - - mzstoreservice-lb - expires: - - Mon, 31 Jan 2011 05:44:04 GMT - cache-control: - - max-age=0, no-cache - pragma: - - no-cache - date: - - Mon, 31 Jan 2011 05:44:04 GMT - transfer-encoding: - - chunked - connection: - - Transfer-Encoding - vary: - - X-Apple-Store-Front - x-apple-partner: - - origin.0 - body: "\n\n\n\ - {\n \"resultCount\":39,\n \"results\": [\n\ - {\"wrapperType\":\"audiobook\", \"artistId\":2122513, \"collectionId\":202323080, \"amgArtistId\":null, \"amgVideoArtistId\":null, \"artistName\":\"Ernest Hemingway\", \"collectionName\":\"The Sun Also Rises (Unabridged)\", \"collectionCensoredName\":\"The Sun Also Rises (Unabridged)\", \"artistViewUrl\":\"http://itunes.apple.com/us/artist/ernest-hemingway/id2122513?mt=11&uo=4\", \"collectionViewUrl\":\"http://itunes.apple.com/WebObjects/MZStore.woa/wa/viewAudiobook?id=202323080&s=143441&uo=4\", \"artworkUrl60\":\"http://a1.phobos.apple.com/us/r1000/032/Music/64/c5/53/mzi.wrpbhyvo.60x60-50.jpg\", \"artworkUrl100\":\"http://a1.phobos.apple.com/us/r1000/032/Music/64/c5/53/mzi.wrpbhyvo.100x100-75.jpg\", \"collectionPrice\":19.95, \"collectionExplicitness\":\"notExplicit\", \"trackCount\":1, \"copyright\":\"2003 Simon & Schuster Audio\", \"country\":\"USA\", \"currency\":\"USD\", \"releaseDate\":\"2003-01-01T12:00:00Z\", \"primaryGenreName\":\"Audiobooks\"}, \n\ - {\"wrapperType\":\"audiobook\", \"artistId\":2122513, \"collectionId\":371691193, \"amgArtistId\":null, \"amgVideoArtistId\":null, \"artistName\":\"Ernest Hemingway\", \"collectionName\":\"The Old Man and the Sea (Unabridged)\", \"collectionCensoredName\":\"The Old Man and the Sea (Unabridged)\", \"artistViewUrl\":\"http://itunes.apple.com/us/artist/ernest-hemingway/id2122513?mt=11&uo=4\", \"collectionViewUrl\":\"http://itunes.apple.com/WebObjects/MZStore.woa/wa/viewAudiobook?id=371691193&s=143441&uo=4\", \"artworkUrl60\":\"http://a1.phobos.apple.com/us/r1000/045/Music/b7/05/bb/mzi.lgdeplrz.60x60-50.jpg\", \"artworkUrl100\":\"http://a1.phobos.apple.com/us/r1000/045/Music/b7/05/bb/mzi.lgdeplrz.100x100-75.jpg\", \"collectionPrice\":11.95, \"collectionExplicitness\":\"notExplicit\", \"trackCount\":1, \"copyright\":\"2006 Simon & Schuster Audio\", \"country\":\"USA\", \"currency\":\"USD\", \"releaseDate\":\"2006-05-01T07:00:00Z\", \"primaryGenreName\":\"Audiobooks\"}, \n\ - {\"wrapperType\":\"audiobook\", \"artistId\":2122513, \"collectionId\":371691060, \"amgArtistId\":null, \"amgVideoArtistId\":null, \"artistName\":\"Ernest Hemingway\", \"collectionName\":\"A Farewell to Arms (Unabridged)\", \"collectionCensoredName\":\"A Farewell to Arms (Unabridged)\", \"artistViewUrl\":\"http://itunes.apple.com/us/artist/ernest-hemingway/id2122513?mt=11&uo=4\", \"collectionViewUrl\":\"http://itunes.apple.com/WebObjects/MZStore.woa/wa/viewAudiobook?id=371691060&s=143441&uo=4\", \"artworkUrl60\":\"http://a1.phobos.apple.com/us/r1000/039/Music/1c/02/93/mzi.sygejvpg.60x60-50.jpg\", \"artworkUrl100\":\"http://a1.phobos.apple.com/us/r1000/039/Music/1c/02/93/mzi.sygejvpg.100x100-75.jpg\", \"collectionPrice\":23.95, \"collectionExplicitness\":\"notExplicit\", \"trackCount\":1, \"copyright\":\"2006 Simon & Schuster Audio\", \"country\":\"USA\", \"currency\":\"USD\", \"releaseDate\":\"2006-05-01T07:00:00Z\", \"primaryGenreName\":\"Audiobooks\"}, \n\ - {\"wrapperType\":\"audiobook\", \"artistId\":2122513, \"collectionId\":286444210, \"amgArtistId\":null, \"amgVideoArtistId\":null, \"artistName\":\"Ernest Hemingway\", \"collectionName\":\"Hemingway Short Stories (Unabridged)\", \"collectionCensoredName\":\"Hemingway Short Stories (Unabridged)\", \"artistViewUrl\":\"http://itunes.apple.com/us/artist/ernest-hemingway/id2122513?mt=11&uo=4\", \"collectionViewUrl\":\"http://itunes.apple.com/WebObjects/MZStore.woa/wa/viewAudiobook?id=286444210&s=143441&uo=4\", \"artworkUrl60\":\"http://a1.phobos.apple.com/us/r1000/001/Music/8d/da/31/mzi.wrysqysb.60x60-50.jpg\", \"artworkUrl100\":\"http://a1.phobos.apple.com/us/r1000/001/Music/8d/da/31/mzi.wrysqysb.100x100-75.jpg\", \"collectionPrice\":3.95, \"collectionExplicitness\":\"notExplicit\", \"trackCount\":1, \"copyright\":\"2007 Listener's Digest Inc.\", \"country\":\"USA\", \"currency\":\"USD\", \"releaseDate\":\"2007-04-01T07:00:00Z\", \"primaryGenreName\":\"Audiobooks\"}, \n\ - {\"wrapperType\":\"audiobook\", \"artistId\":2122513, \"collectionId\":175126080, \"amgArtistId\":null, \"amgVideoArtistId\":null, \"artistName\":\"Ernest Hemingway\", \"collectionName\":\"To Have and Have Not (Unabridged)\", \"collectionCensoredName\":\"To Have and Have Not (Unabridged)\", \"artistViewUrl\":\"http://itunes.apple.com/us/artist/ernest-hemingway/id2122513?mt=11&uo=4\", \"collectionViewUrl\":\"http://itunes.apple.com/WebObjects/MZStore.woa/wa/viewAudiobook?id=175126080&s=143441&uo=4\", \"artworkUrl60\":\"http://a1.phobos.apple.com/us/r1000/045/Music/52/ad/7a/mzi.pquctbso.60x60-50.jpg\", \"artworkUrl100\":\"http://a1.phobos.apple.com/us/r1000/045/Music/52/ad/7a/mzi.pquctbso.100x100-75.jpg\", \"collectionPrice\":15.95, \"collectionExplicitness\":\"notExplicit\", \"trackCount\":1, \"copyright\":\"2003 Simon & Schuster Audio\", \"country\":\"USA\", \"currency\":\"USD\", \"releaseDate\":\"2003-01-01T12:00:00Z\", \"primaryGenreName\":\"Audiobooks\"}, \n\ - {\"wrapperType\":\"audiobook\", \"artistId\":2122513, \"collectionId\":166789619, \"amgArtistId\":null, \"amgVideoArtistId\":null, \"artistName\":\"Ernest Hemingway\", \"collectionName\":\"Islands In the Stream (Unabridged)\", \"collectionCensoredName\":\"Islands In the Stream (Unabridged)\", \"artistViewUrl\":\"http://itunes.apple.com/us/artist/ernest-hemingway/id2122513?mt=11&uo=4\", \"collectionViewUrl\":\"http://itunes.apple.com/WebObjects/MZStore.woa/wa/viewAudiobook?id=166789619&s=143441&uo=4\", \"artworkUrl60\":\"http://a1.phobos.apple.com/us/r1000/013/Music/25/42/a6/mzi.vzrbcewp.60x60-50.jpg\", \"artworkUrl100\":\"http://a1.phobos.apple.com/us/r1000/013/Music/25/42/a6/mzi.vzrbcewp.100x100-75.jpg\", \"collectionPrice\":26.95, \"collectionExplicitness\":\"notExplicit\", \"trackCount\":1, \"copyright\":\"2003 Simon & Schuster Audio\", \"country\":\"USA\", \"currency\":\"USD\", \"releaseDate\":\"2003-01-01T12:00:00Z\", \"primaryGenreName\":\"Audiobooks\"}, \n\ - {\"wrapperType\":\"audiobook\", \"artistId\":2122513, \"collectionId\":371425813, \"amgArtistId\":null, \"amgVideoArtistId\":null, \"artistName\":\"Ernest Hemingway\", \"collectionName\":\"For Whom the Bell Tolls (Unabridged)\", \"collectionCensoredName\":\"For Whom the Bell Tolls (Unabridged)\", \"artistViewUrl\":\"http://itunes.apple.com/us/artist/ernest-hemingway/id2122513?mt=11&uo=4\", \"collectionViewUrl\":\"http://itunes.apple.com/WebObjects/MZStore.woa/wa/viewAudiobook?id=371425813&s=143441&uo=4\", \"artworkUrl60\":\"http://a1.phobos.apple.com/us/r1000/007/Music/da/57/e9/mzi.bcydmkdr.60x60-50.jpg\", \"artworkUrl100\":\"http://a1.phobos.apple.com/us/r1000/007/Music/da/57/e9/mzi.bcydmkdr.100x100-75.jpg\", \"collectionPrice\":29.95, \"collectionExplicitness\":\"notExplicit\", \"trackCount\":1, \"copyright\":\"2006 Simon & Schuster Audio\", \"country\":\"USA\", \"currency\":\"USD\", \"releaseDate\":\"2006-05-01T07:00:00Z\", \"primaryGenreName\":\"Audiobooks\"}, \n\ - {\"wrapperType\":\"audiobook\", \"artistId\":2122513, \"collectionId\":285352764, \"amgArtistId\":null, \"amgVideoArtistId\":null, \"artistName\":\"Ernest Hemingway\", \"collectionName\":\"The Snows of Kilimanjaro and Other Stories (Abridged Fiction)\", \"collectionCensoredName\":\"The Snows of Kilimanjaro and Other Stories (Abridged Fiction)\", \"artistViewUrl\":\"http://itunes.apple.com/us/artist/ernest-hemingway/id2122513?mt=11&uo=4\", \"collectionViewUrl\":\"http://itunes.apple.com/WebObjects/MZStore.woa/wa/viewAudiobook?id=285352764&s=143441&uo=4\", \"artworkUrl60\":\"http://a1.phobos.apple.com/us/r1000/041/Music/5e/e9/40/mzi.fefelctt.60x60-50.jpg\", \"artworkUrl100\":\"http://a1.phobos.apple.com/us/r1000/041/Music/5e/e9/40/mzi.fefelctt.100x100-75.jpg\", \"collectionPrice\":17.95, \"collectionExplicitness\":\"notExplicit\", \"trackCount\":1, \"copyright\":\"2008 Simon & Schuster Audio\", \"country\":\"USA\", \"currency\":\"USD\", \"releaseDate\":\"2008-03-08T08:00:00Z\", \"primaryGenreName\":\"Audiobooks\"}, \n\ - {\"wrapperType\":\"audiobook\", \"artistId\":2122513, \"collectionId\":357710921, \"amgArtistId\":null, \"amgVideoArtistId\":null, \"artistName\":\"Ernest Hemingway\", \"collectionName\":\"A Moveable Feast (Unabridged)\", \"collectionCensoredName\":\"A Moveable Feast (Unabridged)\", \"artistViewUrl\":\"http://itunes.apple.com/us/artist/ernest-hemingway/id2122513?mt=11&uo=4\", \"collectionViewUrl\":\"http://itunes.apple.com/WebObjects/MZStore.woa/wa/viewAudiobook?id=357710921&s=143441&uo=4\", \"artworkUrl60\":\"http://a1.phobos.apple.com/us/r1000/047/Music/61/ba/42/mzi.cqubegty.60x60-50.jpg\", \"artworkUrl100\":\"http://a1.phobos.apple.com/us/r1000/047/Music/61/ba/42/mzi.cqubegty.100x100-75.jpg\", \"collectionPrice\":17.95, \"collectionExplicitness\":\"notExplicit\", \"trackCount\":1, \"copyright\":\"2006 Simon & Schuster Audio\", \"country\":\"USA\", \"currency\":\"USD\", \"releaseDate\":\"2006-06-01T07:00:00Z\", \"primaryGenreName\":\"Audiobooks\"}, \n\ - {\"wrapperType\":\"audiobook\", \"artistId\":2122513, \"collectionId\":320476914, \"amgArtistId\":null, \"amgVideoArtistId\":null, \"artistName\":\"Ernest Hemingway\", \"collectionName\":\"Ernest Hemingway: The Short Stories, Volume 1 (Unabridged)\", \"collectionCensoredName\":\"Ernest Hemingway: The Short Stories, Volume 1 (Unabridged)\", \"artistViewUrl\":\"http://itunes.apple.com/us/artist/ernest-hemingway/id2122513?mt=11&uo=4\", \"collectionViewUrl\":\"http://itunes.apple.com/WebObjects/MZStore.woa/wa/viewAudiobook?id=320476914&s=143441&uo=4\", \"artworkUrl60\":\"http://a1.phobos.apple.com/us/r1000/015/Music/8f/9c/8b/mzi.qxxmrsnm.60x60-50.jpg\", \"artworkUrl100\":\"http://a1.phobos.apple.com/us/r1000/015/Music/8f/9c/8b/mzi.qxxmrsnm.100x100-75.jpg\", \"collectionPrice\":16.95, \"collectionExplicitness\":\"notExplicit\", \"trackCount\":1, \"copyright\":\"2002 Simon & Schuster Audio\", \"country\":\"USA\", \"currency\":\"USD\", \"releaseDate\":\"2002-11-15T08:00:00Z\", \"primaryGenreName\":\"Audiobooks\"}, \n\ - {\"wrapperType\":\"audiobook\", \"artistId\":2122513, \"collectionId\":275710993, \"amgArtistId\":null, \"amgVideoArtistId\":null, \"artistName\":\"Ernest Hemingway\", \"collectionName\":\"The Short Stories, Volume III (Unabridged)\", \"collectionCensoredName\":\"The Short Stories, Volume III (Unabridged)\", \"artistViewUrl\":\"http://itunes.apple.com/us/artist/ernest-hemingway/id2122513?mt=11&uo=4\", \"collectionViewUrl\":\"http://itunes.apple.com/WebObjects/MZStore.woa/wa/viewAudiobook?id=275710993&s=143441&uo=4\", \"artworkUrl60\":\"http://a1.phobos.apple.com/us/r1000/031/Music/5c/e8/ac/mzi.tragznfg.60x60-50.jpg\", \"artworkUrl100\":\"http://a1.phobos.apple.com/us/r1000/031/Music/5c/e8/ac/mzi.tragznfg.100x100-75.jpg\", \"collectionPrice\":17.95, \"collectionExplicitness\":\"notExplicit\", \"trackCount\":1, \"copyright\":\"2006 Simon & Schuster Audio\", \"country\":\"USA\", \"currency\":\"USD\", \"releaseDate\":\"2006-05-01T07:00:00Z\", \"primaryGenreName\":\"Audiobooks\"}, \n\ - {\"wrapperType\":\"audiobook\", \"artistId\":2122513, \"collectionId\":323416660, \"amgArtistId\":null, \"amgVideoArtistId\":null, \"artistName\":\"Ernest Hemingway\", \"collectionName\":\"A Moveable Feast: The Restored Edition (Unabridged)\", \"collectionCensoredName\":\"A Moveable Feast: The Restored Edition (Unabridged)\", \"artistViewUrl\":\"http://itunes.apple.com/us/artist/ernest-hemingway/id2122513?mt=11&uo=4\", \"collectionViewUrl\":\"http://itunes.apple.com/WebObjects/MZStore.woa/wa/viewAudiobook?id=323416660&s=143441&uo=4\", \"artworkUrl60\":\"http://a1.phobos.apple.com/us/r1000/050/Music/39/71/5f/mzi.vusrurxd.60x60-50.jpg\", \"artworkUrl100\":\"http://a1.phobos.apple.com/us/r1000/050/Music/39/71/5f/mzi.vusrurxd.100x100-75.jpg\", \"collectionPrice\":17.95, \"collectionExplicitness\":\"notExplicit\", \"trackCount\":1, \"copyright\":\"2009 Simon & Schuster Audio\", \"country\":\"USA\", \"currency\":\"USD\", \"releaseDate\":\"2009-07-14T07:00:00Z\", \"primaryGenreName\":\"Audiobooks\"}, \n\ - {\"wrapperType\":\"audiobook\", \"artistId\":2122513, \"collectionId\":362763865, \"amgArtistId\":null, \"amgVideoArtistId\":null, \"artistName\":\"Ernest Hemingway\", \"collectionName\":\"Green Hills of Africa (Unabridged)\", \"collectionCensoredName\":\"Green Hills of Africa (Unabridged)\", \"artistViewUrl\":\"http://itunes.apple.com/us/artist/ernest-hemingway/id2122513?mt=11&uo=4\", \"collectionViewUrl\":\"http://itunes.apple.com/WebObjects/MZStore.woa/wa/viewAudiobook?id=362763865&s=143441&uo=4\", \"artworkUrl60\":\"http://a1.phobos.apple.com/us/r1000/023/Music/e0/81/ca/mzi.eldmlzei.60x60-50.jpg\", \"artworkUrl100\":\"http://a1.phobos.apple.com/us/r1000/023/Music/e0/81/ca/mzi.eldmlzei.100x100-75.jpg\", \"collectionPrice\":17.95, \"collectionExplicitness\":\"notExplicit\", \"trackCount\":1, \"copyright\":\"2006 Simon & Schuster Audio\", \"country\":\"USA\", \"currency\":\"USD\", \"releaseDate\":\"2006-12-05T08:00:00Z\", \"primaryGenreName\":\"Audiobooks\"}, \n\ - {\"wrapperType\":\"audiobook\", \"artistId\":2122513, \"collectionId\":364236334, \"amgArtistId\":null, \"amgVideoArtistId\":null, \"artistName\":\"Ernest Hemingway\", \"collectionName\":\"The Nick Adams Stories (Unabridged)\", \"collectionCensoredName\":\"The Nick Adams Stories (Unabridged)\", \"artistViewUrl\":\"http://itunes.apple.com/us/artist/ernest-hemingway/id2122513?mt=11&uo=4\", \"collectionViewUrl\":\"http://itunes.apple.com/WebObjects/MZStore.woa/wa/viewAudiobook?id=364236334&s=143441&uo=4\", \"artworkUrl60\":\"http://a1.phobos.apple.com/us/r1000/027/Music/8a/eb/d7/mzi.ddkyubgm.60x60-50.jpg\", \"artworkUrl100\":\"http://a1.phobos.apple.com/us/r1000/027/Music/8a/eb/d7/mzi.ddkyubgm.100x100-75.jpg\", \"collectionPrice\":17.95, \"collectionExplicitness\":\"notExplicit\", \"trackCount\":1, \"copyright\":\"2007 Simon & Schuster Audio\", \"country\":\"USA\", \"currency\":\"USD\", \"releaseDate\":\"2007-06-12T07:00:00Z\", \"primaryGenreName\":\"Audiobooks\"}, \n\ - {\"wrapperType\":\"audiobook\", \"artistId\":2122513, \"collectionId\":281744539, \"amgArtistId\":null, \"amgVideoArtistId\":null, \"artistName\":\"Ernest Hemingway\", \"collectionName\":\"In Our Time (Abridged Fiction)\", \"collectionCensoredName\":\"In Our Time (Abridged Fiction)\", \"artistViewUrl\":\"http://itunes.apple.com/us/artist/ernest-hemingway/id2122513?mt=11&uo=4\", \"collectionViewUrl\":\"http://itunes.apple.com/WebObjects/MZStore.woa/wa/viewAudiobook?id=281744539&s=143441&uo=4\", \"artworkUrl60\":\"http://a1.phobos.apple.com/us/r1000/045/Music/4e/c5/45/mzi.yfwmawka.60x60-50.jpg\", \"artworkUrl100\":\"http://a1.phobos.apple.com/us/r1000/045/Music/4e/c5/45/mzi.yfwmawka.100x100-75.jpg\", \"collectionPrice\":15.95, \"collectionExplicitness\":\"notExplicit\", \"trackCount\":1, \"copyright\":\"2008 Simon & Schuster Audio\", \"country\":\"USA\", \"currency\":\"USD\", \"releaseDate\":\"2008-05-01T07:00:00Z\", \"primaryGenreName\":\"Audiobooks\"}, \n\ - {\"wrapperType\":\"audiobook\", \"artistId\":2122513, \"collectionId\":305785741, \"amgArtistId\":null, \"amgVideoArtistId\":null, \"artistName\":\"Ernest Hemingway\", \"collectionName\":\"For Whom the Bell Tolls: Retro Audio (Dramatised): Retro Audio\", \"collectionCensoredName\":\"For Whom the Bell Tolls: Retro Audio (Dramatised): Retro Audio\", \"artistViewUrl\":\"http://itunes.apple.com/us/artist/ernest-hemingway/id2122513?mt=11&uo=4\", \"collectionViewUrl\":\"http://itunes.apple.com/WebObjects/MZStore.woa/wa/viewAudiobook?id=305785741&s=143441&uo=4\", \"artworkUrl60\":\"http://a1.phobos.apple.com/us/r1000/039/Music/10/24/b8/mzi.typspyuu.60x60-50.jpg\", \"artworkUrl100\":\"http://a1.phobos.apple.com/us/r1000/039/Music/10/24/b8/mzi.typspyuu.100x100-75.jpg\", \"collectionPrice\":9.95, \"collectionExplicitness\":\"notExplicit\", \"trackCount\":1, \"copyright\":\"2008 Entain 8: Retro and Blakes7\", \"country\":\"USA\", \"currency\":\"USD\", \"releaseDate\":\"2008-01-01T08:00:00Z\", \"primaryGenreName\":\"Audiobooks\"}, \n\ - {\"wrapperType\":\"audiobook\", \"artistId\":2122513, \"collectionId\":213481375, \"amgArtistId\":null, \"amgVideoArtistId\":null, \"artistName\":\"Ernest Hemingway\", \"collectionName\":\"True At First Light: A Fictional Memoir (Unabridged)\", \"collectionCensoredName\":\"True At First Light: A Fictional Memoir (Unabridged)\", \"artistViewUrl\":\"http://itunes.apple.com/us/artist/ernest-hemingway/id2122513?mt=11&uo=4\", \"collectionViewUrl\":\"http://itunes.apple.com/WebObjects/MZStore.woa/wa/viewAudiobook?id=213481375&s=143441&uo=4\", \"artworkUrl60\":\"http://a1.phobos.apple.com/us/r1000/034/Music/0f/7c/3d/mzi.sbtqgpuz.60x60-50.jpg\", \"artworkUrl100\":\"http://a1.phobos.apple.com/us/r1000/034/Music/0f/7c/3d/mzi.sbtqgpuz.100x100-75.jpg\", \"collectionPrice\":20.95, \"collectionExplicitness\":\"notExplicit\", \"trackCount\":1, \"copyright\":\"2003 Simon & Schuster Audio\", \"country\":\"USA\", \"currency\":\"USD\", \"releaseDate\":\"2006-01-01T12:00:00Z\", \"primaryGenreName\":\"Audiobooks\"}, \n\ - {\"wrapperType\":\"audiobook\", \"artistId\":2122513, \"collectionId\":381374862, \"amgArtistId\":null, \"amgVideoArtistId\":null, \"artistName\":\"Ernest Hemingway\", \"collectionName\":\"Adios a Las Armas [Farewell to Arms]\", \"collectionCensoredName\":\"Adios a Las Armas [Farewell to Arms]\", \"artistViewUrl\":\"http://itunes.apple.com/us/artist/ernest-hemingway/id2122513?mt=11&uo=4\", \"collectionViewUrl\":\"http://itunes.apple.com/WebObjects/MZStore.woa/wa/viewAudiobook?id=381374862&s=143441&uo=4\", \"artworkUrl60\":\"http://a1.phobos.apple.com/us/r1000/039/Music/32/39/c9/mzi.ulnshmtg.60x60-50.jpg\", \"artworkUrl100\":\"http://a1.phobos.apple.com/us/r1000/039/Music/32/39/c9/mzi.ulnshmtg.100x100-75.jpg\", \"collectionPrice\":3.95, \"collectionExplicitness\":\"notExplicit\", \"trackCount\":1, \"copyright\":\"2006 Yoyo USA, Inc\", \"country\":\"USA\", \"currency\":\"USD\", \"releaseDate\":\"2006-04-12T07:00:00Z\", \"primaryGenreName\":\"Audiobooks\"}, \n\ - {\"wrapperType\":\"audiobook\", \"artistId\":2122513, \"collectionId\":358367069, \"amgArtistId\":null, \"amgVideoArtistId\":null, \"artistName\":\"Ernest Hemingway\", \"collectionName\":\"Ernest Hemingway: The Short Stories, Volume 2 (Unabridged)\", \"collectionCensoredName\":\"Ernest Hemingway: The Short Stories, Volume 2 (Unabridged)\", \"artistViewUrl\":\"http://itunes.apple.com/us/artist/ernest-hemingway/id2122513?mt=11&uo=4\", \"collectionViewUrl\":\"http://itunes.apple.com/WebObjects/MZStore.woa/wa/viewAudiobook?id=358367069&s=143441&uo=4\", \"artworkUrl60\":\"http://a1.phobos.apple.com/us/r1000/044/Music/0e/06/22/mzi.okkcepvr.60x60-50.jpg\", \"artworkUrl100\":\"http://a1.phobos.apple.com/us/r1000/044/Music/0e/06/22/mzi.okkcepvr.100x100-75.jpg\", \"collectionPrice\":16.95, \"collectionExplicitness\":\"notExplicit\", \"trackCount\":1, \"copyright\":\"2003 Simon & Schuster Audio\", \"country\":\"USA\", \"currency\":\"USD\", \"releaseDate\":\"2002-12-01T08:00:00Z\", \"primaryGenreName\":\"Audiobooks\"}, \n\ - {\"wrapperType\":\"audiobook\", \"artistId\":2122513, \"collectionId\":285352940, \"amgArtistId\":null, \"amgVideoArtistId\":null, \"artistName\":\"Ernest Hemingway\", \"collectionName\":\"Men Without Women (Abridged Fiction)\", \"collectionCensoredName\":\"Men Without Women (Abridged Fiction)\", \"artistViewUrl\":\"http://itunes.apple.com/us/artist/ernest-hemingway/id2122513?mt=11&uo=4\", \"collectionViewUrl\":\"http://itunes.apple.com/WebObjects/MZStore.woa/wa/viewAudiobook?id=285352940&s=143441&uo=4\", \"artworkUrl60\":\"http://a1.phobos.apple.com/us/r1000/058/Music/27/30/49/mzi.aphtftnv.60x60-50.jpg\", \"artworkUrl100\":\"http://a1.phobos.apple.com/us/r1000/058/Music/27/30/49/mzi.aphtftnv.100x100-75.jpg\", \"collectionPrice\":15.95, \"collectionExplicitness\":\"notExplicit\", \"trackCount\":1, \"copyright\":\"2008 Simon & Schuster Audio\", \"country\":\"USA\", \"currency\":\"USD\", \"releaseDate\":\"2008-04-08T07:00:00Z\", \"primaryGenreName\":\"Audiobooks\"}, \n\ - {\"wrapperType\":\"audiobook\", \"artistId\":2122513, \"collectionId\":356410196, \"amgArtistId\":null, \"amgVideoArtistId\":null, \"artistName\":\"Ernest Hemingway\", \"collectionName\":\"The Garden of Eden (Unabridged)\", \"collectionCensoredName\":\"The Garden of Eden (Unabridged)\", \"artistViewUrl\":\"http://itunes.apple.com/us/artist/ernest-hemingway/id2122513?mt=11&uo=4\", \"collectionViewUrl\":\"http://itunes.apple.com/WebObjects/MZStore.woa/wa/viewAudiobook?id=356410196&s=143441&uo=4\", \"artworkUrl60\":\"http://a1.phobos.apple.com/us/r1000/005/Music/fd/f5/69/mzi.oeakzfej.60x60-50.jpg\", \"artworkUrl100\":\"http://a1.phobos.apple.com/us/r1000/005/Music/fd/f5/69/mzi.oeakzfej.100x100-75.jpg\", \"collectionPrice\":17.95, \"collectionExplicitness\":\"explicit\", \"trackCount\":1, \"copyright\":\"2006 Simon & Schuster Audio\", \"country\":\"USA\", \"currency\":\"USD\", \"releaseDate\":\"2006-10-31T08:00:00Z\", \"primaryGenreName\":\"Audiobooks\"}, \n\ - {\"wrapperType\":\"audiobook\", \"artistId\":2122513, \"collectionId\":256425746, \"amgArtistId\":null, \"amgVideoArtistId\":null, \"artistName\":\"Ernest Hemingway\", \"collectionName\":\"By-Line Ernest Hemingway: Selected Articles and Dispatches of Four Decades (Abridged Nonfiction)\", \"collectionCensoredName\":\"By-Line Ernest Hemingway: Selected Articles and Dispatches of Four Decades (Abridged Nonfiction)\", \"artistViewUrl\":\"http://itunes.apple.com/us/artist/ernest-hemingway/id2122513?mt=11&uo=4\", \"collectionViewUrl\":\"http://itunes.apple.com/WebObjects/MZStore.woa/wa/viewAudiobook?id=256425746&s=143441&uo=4\", \"artworkUrl60\":\"http://a1.phobos.apple.com/us/r1000/054/Music/50/f7/b5/mzi.mbyfytpi.60x60-50.jpg\", \"artworkUrl100\":\"http://a1.phobos.apple.com/us/r1000/054/Music/50/f7/b5/mzi.mbyfytpi.100x100-75.jpg\", \"collectionPrice\":26.95, \"collectionExplicitness\":\"notExplicit\", \"trackCount\":1, \"copyright\":\"2003 Simon & Schuster Audio\", \"country\":\"USA\", \"currency\":\"USD\", \"releaseDate\":\"2003-01-01T12:00:00Z\", \"primaryGenreName\":\"Audiobooks\"}, \n\ - {\"wrapperType\":\"audiobook\", \"artistId\":2122513, \"collectionId\":355192063, \"amgArtistId\":null, \"amgVideoArtistId\":null, \"artistName\":\"Ernest Hemingway\", \"collectionName\":\"Death in the Afternoon (Unabridged)\", \"collectionCensoredName\":\"Death in the Afternoon (Unabridged)\", \"artistViewUrl\":\"http://itunes.apple.com/us/artist/ernest-hemingway/id2122513?mt=11&uo=4\", \"collectionViewUrl\":\"http://itunes.apple.com/WebObjects/MZStore.woa/wa/viewAudiobook?id=355192063&s=143441&uo=4\", \"artworkUrl60\":\"http://a1.phobos.apple.com/us/r1000/033/Music/9b/3b/54/mzi.ayrmtlyi.60x60-50.jpg\", \"artworkUrl100\":\"http://a1.phobos.apple.com/us/r1000/033/Music/9b/3b/54/mzi.ayrmtlyi.100x100-75.jpg\", \"collectionPrice\":23.95, \"collectionExplicitness\":\"notExplicit\", \"trackCount\":1, \"copyright\":\"2007 Simon & Schuster Audio\", \"country\":\"USA\", \"currency\":\"USD\", \"releaseDate\":\"2007-01-02T08:00:00Z\", \"primaryGenreName\":\"Audiobooks\"}, \n\ - {\"wrapperType\":\"audiobook\", \"artistId\":2122513, \"collectionId\":328602875, \"amgArtistId\":null, \"amgVideoArtistId\":null, \"artistName\":\"Ernest Hemingway\", \"collectionName\":\"Winner Take Nothing\", \"collectionCensoredName\":\"Winner Take Nothing\", \"artistViewUrl\":\"http://itunes.apple.com/us/artist/ernest-hemingway/id2122513?mt=11&uo=4\", \"collectionViewUrl\":\"http://itunes.apple.com/WebObjects/MZStore.woa/wa/viewAudiobook?id=328602875&s=143441&uo=4\", \"artworkUrl60\":\"http://a1.phobos.apple.com/us/r1000/045/Music/8c/f5/76/mzi.cdotnxpj.60x60-50.jpg\", \"artworkUrl100\":\"http://a1.phobos.apple.com/us/r1000/045/Music/8c/f5/76/mzi.cdotnxpj.100x100-75.jpg\", \"collectionPrice\":15.95, \"collectionExplicitness\":\"notExplicit\", \"trackCount\":1, \"copyright\":\"2008 Simon & Schuster Audio\", \"country\":\"USA\", \"currency\":\"USD\", \"releaseDate\":\"2008-04-08T07:00:00Z\", \"primaryGenreName\":\"Audiobooks\"}, \n\ - {\"wrapperType\":\"audiobook\", \"artistId\":2122513, \"collectionId\":364235362, \"amgArtistId\":null, \"amgVideoArtistId\":null, \"artistName\":\"Ernest Hemingway\", \"collectionName\":\"Across the River and Into the Trees (Unabridged)\", \"collectionCensoredName\":\"Across the River and Into the Trees (Unabridged)\", \"artistViewUrl\":\"http://itunes.apple.com/us/artist/ernest-hemingway/id2122513?mt=11&uo=4\", \"collectionViewUrl\":\"http://itunes.apple.com/WebObjects/MZStore.woa/wa/viewAudiobook?id=364235362&s=143441&uo=4\", \"artworkUrl60\":\"http://a1.phobos.apple.com/us/r1000/014/Music/fd/ab/84/mzi.gixnpmtd.60x60-50.jpg\", \"artworkUrl100\":\"http://a1.phobos.apple.com/us/r1000/014/Music/fd/ab/84/mzi.gixnpmtd.100x100-75.jpg\", \"collectionPrice\":17.95, \"collectionExplicitness\":\"notExplicit\", \"trackCount\":1, \"copyright\":\"2006 Simon & Schuster Audio\", \"country\":\"USA\", \"currency\":\"USD\", \"releaseDate\":\"2006-08-24T07:00:00Z\", \"primaryGenreName\":\"Audiobooks\"}, \n\ - {\"wrapperType\":\"audiobook\", \"artistId\":354101279, \"collectionId\":354101249, \"amgArtistId\":null, \"amgVideoArtistId\":null, \"artistName\":\"The New Yorker\", \"collectionName\":\"The New Yorker, February 8, 2010 (Patrick Radden Keefe, John McPhee, Paul Goldberger)\", \"collectionCensoredName\":\"The New Yorker, February 8, 2010 (Patrick Radden Keefe, John McPhee, Paul Goldberger)\", \"artistViewUrl\":\"http://itunes.apple.com/us/artist/the-new-yorker/id354101279?uo=4\", \"collectionViewUrl\":\"http://itunes.apple.com/WebObjects/MZStore.woa/wa/viewAudiobook?id=354101249&s=143441&uo=4\", \"artworkUrl60\":\"http://a1.phobos.apple.com/us/r1000/003/Music/ee/26/da/mzi.hnqhwaet.60x60-50.jpg\", \"artworkUrl100\":\"http://a1.phobos.apple.com/us/r1000/003/Music/ee/26/da/mzi.hnqhwaet.100x100-75.jpg\", \"collectionPrice\":6.95, \"collectionExplicitness\":\"notExplicit\", \"trackCount\":1, \"copyright\":\"2010 The New Yorker\", \"country\":\"USA\", \"currency\":\"USD\", \"releaseDate\":\"2010-02-03T08:00:00Z\", \"primaryGenreName\":\"Audiobooks\"}, \n\ - {\"wrapperType\":\"audiobook\", \"artistId\":40784606, \"collectionId\":364186718, \"amgArtistId\":null, \"amgVideoArtistId\":null, \"artistName\":\"Winston Conrad\", \"collectionName\":\"Hemingway's France: Images of the Lost Generation (Unabridged)\", \"collectionCensoredName\":\"Hemingway's France: Images of the Lost Generation (Unabridged)\", \"artistViewUrl\":\"http://itunes.apple.com/us/artist/winston-conrad/id40784606?uo=4\", \"collectionViewUrl\":\"http://itunes.apple.com/WebObjects/MZStore.woa/wa/viewAudiobook?id=364186718&s=143441&uo=4\", \"artworkUrl60\":\"http://a1.phobos.apple.com/us/r1000/052/Music/5e/8d/8a/mzi.oztveoip.60x60-50.jpg\", \"artworkUrl100\":\"http://a1.phobos.apple.com/us/r1000/052/Music/5e/8d/8a/mzi.oztveoip.100x100-75.jpg\", \"collectionPrice\":9.95, \"collectionExplicitness\":\"notExplicit\", \"trackCount\":1, \"copyright\":\"2004 Blackstone Audiobooks\", \"country\":\"USA\", \"currency\":\"USD\", \"releaseDate\":\"2004-12-31T08:00:00Z\", \"primaryGenreName\":\"Audiobooks\"}, \n\ - {\"wrapperType\":\"audiobook\", \"artistId\":2122513, \"collectionId\":359270850, \"amgArtistId\":null, \"amgVideoArtistId\":null, \"artistName\":\"Ernest Hemingway\", \"collectionName\":\"Den gamle mand og havet [The Old Man and the Sea] (Unabridged)\", \"collectionCensoredName\":\"Den gamle mand og havet [The Old Man and the Sea] (Unabridged)\", \"artistViewUrl\":\"http://itunes.apple.com/us/artist/ernest-hemingway/id2122513?mt=11&uo=4\", \"collectionViewUrl\":\"http://itunes.apple.com/WebObjects/MZStore.woa/wa/viewAudiobook?id=359270850&s=143441&uo=4\", \"artworkUrl60\":\"http://a1.phobos.apple.com/us/r1000/012/Music/8a/7e/ef/mzi.sfqmhqkn.60x60-50.jpg\", \"artworkUrl100\":\"http://a1.phobos.apple.com/us/r1000/012/Music/8a/7e/ef/mzi.sfqmhqkn.100x100-75.jpg\", \"collectionPrice\":17.95, \"collectionExplicitness\":\"notExplicit\", \"trackCount\":1, \"copyright\":\"2010 Viatone\", \"country\":\"USA\", \"currency\":\"USD\", \"releaseDate\":\"2010-03-01T08:00:00Z\", \"primaryGenreName\":\"Audiobooks\"}, \n\ - {\"wrapperType\":\"audiobook\", \"artistId\":2122513, \"collectionId\":397563313, \"amgArtistId\":null, \"amgVideoArtistId\":null, \"artistName\":\"Ernest Hemingway\", \"collectionName\":\"Der er ingen ende p\\u00e5 Paris [There Is No End in Paris] (Unabridged)\", \"collectionCensoredName\":\"Der er ingen ende p\\u00e5 Paris [There Is No End in Paris] (Unabridged)\", \"artistViewUrl\":\"http://itunes.apple.com/us/artist/ernest-hemingway/id2122513?mt=11&uo=4\", \"collectionViewUrl\":\"http://itunes.apple.com/WebObjects/MZStore.woa/wa/viewAudiobook?id=397563313&s=143441&uo=4\", \"artworkUrl60\":\"http://a1.phobos.apple.com/us/r1000/016/Music/58/a5/9c/mzi.wxmofflh.60x60-50.jpg\", \"artworkUrl100\":\"http://a1.phobos.apple.com/us/r1000/016/Music/58/a5/9c/mzi.wxmofflh.100x100-75.jpg\", \"collectionPrice\":21.95, \"collectionExplicitness\":\"notExplicit\", \"trackCount\":1, \"copyright\":\"2010 Viatone\", \"country\":\"USA\", \"currency\":\"USD\", \"releaseDate\":\"2010-10-07T07:00:00Z\", \"primaryGenreName\":\"Audiobooks\"}, \n\ - {\"wrapperType\":\"audiobook\", \"artistId\":2122513, \"collectionId\":359553423, \"amgArtistId\":null, \"amgVideoArtistId\":null, \"artistName\":\"Ernest Hemingway\", \"collectionName\":\"Hvem ringer klokkerne for [For Whom the Bell Tolls] (Unabridged)\", \"collectionCensoredName\":\"Hvem ringer klokkerne for [For Whom the Bell Tolls] (Unabridged)\", \"artistViewUrl\":\"http://itunes.apple.com/us/artist/ernest-hemingway/id2122513?mt=11&uo=4\", \"collectionViewUrl\":\"http://itunes.apple.com/WebObjects/MZStore.woa/wa/viewAudiobook?id=359553423&s=143441&uo=4\", \"artworkUrl60\":\"http://a1.phobos.apple.com/us/r1000/052/Music/36/e7/a8/mzi.wvyhggsl.60x60-50.jpg\", \"artworkUrl100\":\"http://a1.phobos.apple.com/us/r1000/052/Music/36/e7/a8/mzi.wvyhggsl.100x100-75.jpg\", \"collectionPrice\":33.95, \"collectionExplicitness\":\"notExplicit\", \"trackCount\":1, \"copyright\":\"2010 Viatone\", \"country\":\"USA\", \"currency\":\"USD\", \"releaseDate\":\"2010-03-01T08:00:00Z\", \"primaryGenreName\":\"Audiobooks\"}, \n\ - {\"wrapperType\":\"audiobook\", \"artistId\":2122513, \"collectionId\":359562700, \"amgArtistId\":null, \"amgVideoArtistId\":null, \"artistName\":\"Ernest Hemingway\", \"collectionName\":\"At have og ikke have [To Have and Have Not] (Unabridged)\", \"collectionCensoredName\":\"At have og ikke have [To Have and Have Not] (Unabridged)\", \"artistViewUrl\":\"http://itunes.apple.com/us/artist/ernest-hemingway/id2122513?mt=11&uo=4\", \"collectionViewUrl\":\"http://itunes.apple.com/WebObjects/MZStore.woa/wa/viewAudiobook?id=359562700&s=143441&uo=4\", \"artworkUrl60\":\"http://a1.phobos.apple.com/us/r1000/023/Music/da/67/bb/mzi.byhgirdi.60x60-50.jpg\", \"artworkUrl100\":\"http://a1.phobos.apple.com/us/r1000/023/Music/da/67/bb/mzi.byhgirdi.100x100-75.jpg\", \"collectionPrice\":21.95, \"collectionExplicitness\":\"notExplicit\", \"trackCount\":1, \"copyright\":\"2010 Viatone\", \"country\":\"USA\", \"currency\":\"USD\", \"releaseDate\":\"2010-03-01T08:00:00Z\", \"primaryGenreName\":\"Audiobooks\"}, \n\ - {\"wrapperType\":\"audiobook\", \"artistId\":2122513, \"collectionId\":407602218, \"amgArtistId\":null, \"amgVideoArtistId\":null, \"artistName\":\"Ernest Hemingway\", \"collectionName\":\"Death in the Afternoon (Unabridged)\", \"collectionCensoredName\":\"Death in the Afternoon (Unabridged)\", \"artistViewUrl\":\"http://itunes.apple.com/us/artist/ernest-hemingway/id2122513?mt=11&uo=4\", \"collectionViewUrl\":\"http://itunes.apple.com/WebObjects/MZStore.woa/wa/viewAudiobook?id=407602218&s=143441&uo=4\", \"artworkUrl60\":\"http://a1.phobos.apple.com/us/r1000/006/Music/65/11/02/mzi.nvaxweld.60x60-50.jpg\", \"artworkUrl100\":\"http://a1.phobos.apple.com/us/r1000/006/Music/65/11/02/mzi.nvaxweld.100x100-75.jpg\", \"collectionPrice\":23.95, \"collectionExplicitness\":\"notExplicit\", \"trackCount\":1, \"copyright\":\"2010 Simon & Schuster Audio\", \"country\":\"USA\", \"currency\":\"USD\", \"releaseDate\":\"2010-11-17T08:00:00Z\", \"primaryGenreName\":\"Audiobooks\"}, \n\ - {\"wrapperType\":\"audiobook\", \"artistId\":81501406, \"collectionId\":353414760, \"amgArtistId\":null, \"amgVideoArtistId\":null, \"artistName\":\"Robert Murray\", \"collectionName\":\"A Study Guide to Ernest Hemingway's the Sun Also Rises\", \"collectionCensoredName\":\"A Study Guide to Ernest Hemingway's the Sun Also Rises\", \"artistViewUrl\":\"http://itunes.apple.com/us/artist/robert-murray/id81501406?uo=4\", \"collectionViewUrl\":\"http://itunes.apple.com/WebObjects/MZStore.woa/wa/viewAudiobook?id=353414760&s=143441&uo=4\", \"artworkUrl60\":\"http://a1.phobos.apple.com/us/r1000/012/Music/58/5b/1f/mzi.mueffnsa.60x60-50.jpg\", \"artworkUrl100\":\"http://a1.phobos.apple.com/us/r1000/012/Music/58/5b/1f/mzi.mueffnsa.100x100-75.jpg\", \"collectionPrice\":5.95, \"collectionExplicitness\":\"notExplicit\", \"trackCount\":1, \"copyright\":\"1997 Hachette Audio\", \"country\":\"USA\", \"currency\":\"USD\", \"releaseDate\":\"1997-02-14T08:00:00Z\", \"primaryGenreName\":\"Audiobooks\"}, \n\ - {\"wrapperType\":\"audiobook\", \"artistId\":2122513, \"collectionId\":359269728, \"amgArtistId\":null, \"amgVideoArtistId\":null, \"artistName\":\"Ernest Hemingway\", \"collectionName\":\"Solen g\\u00e5r sin gang [The Sun Also Rises] (Unabridged)\", \"collectionCensoredName\":\"Solen g\\u00e5r sin gang [The Sun Also Rises] (Unabridged)\", \"artistViewUrl\":\"http://itunes.apple.com/us/artist/ernest-hemingway/id2122513?mt=11&uo=4\", \"collectionViewUrl\":\"http://itunes.apple.com/WebObjects/MZStore.woa/wa/viewAudiobook?id=359269728&s=143441&uo=4\", \"artworkUrl60\":\"http://a1.phobos.apple.com/us/r1000/043/Music/d2/f9/87/mzi.lbcfmvfv.60x60-50.jpg\", \"artworkUrl100\":\"http://a1.phobos.apple.com/us/r1000/043/Music/d2/f9/87/mzi.lbcfmvfv.100x100-75.jpg\", \"collectionPrice\":22.95, \"collectionExplicitness\":\"notExplicit\", \"trackCount\":1, \"copyright\":\"2010 Viatone\", \"country\":\"USA\", \"currency\":\"USD\", \"releaseDate\":\"2010-03-01T08:00:00Z\", \"primaryGenreName\":\"Audiobooks\"}, \n\ - {\"wrapperType\":\"audiobook\", \"artistId\":2122513, \"collectionId\":378960843, \"amgArtistId\":null, \"amgVideoArtistId\":null, \"artistName\":\"Ernest Hemingway\", \"collectionName\":\"Farvel til v\\u00e5bnene [A Farewell to Arms] (Unabridged)\", \"collectionCensoredName\":\"Farvel til v\\u00e5bnene [A Farewell to Arms] (Unabridged)\", \"artistViewUrl\":\"http://itunes.apple.com/us/artist/ernest-hemingway/id2122513?mt=11&uo=4\", \"collectionViewUrl\":\"http://itunes.apple.com/WebObjects/MZStore.woa/wa/viewAudiobook?id=378960843&s=143441&uo=4\", \"artworkUrl60\":\"http://a1.phobos.apple.com/us/r1000/021/Music/f4/17/12/mzi.ishqonff.60x60-50.jpg\", \"artworkUrl100\":\"http://a1.phobos.apple.com/us/r1000/021/Music/f4/17/12/mzi.ishqonff.100x100-75.jpg\", \"collectionPrice\":27.95, \"collectionExplicitness\":\"notExplicit\", \"trackCount\":1, \"copyright\":\"2010 Viatone\", \"country\":\"USA\", \"currency\":\"USD\", \"releaseDate\":\"2010-06-18T07:00:00Z\", \"primaryGenreName\":\"Audiobooks\"}, \n\ - {\"wrapperType\":\"audiobook\", \"artistId\":2030421, \"collectionId\":366950565, \"amgArtistId\":null, \"amgVideoArtistId\":null, \"artistName\":\"E.L. Doctorow\", \"collectionName\":\"Creationists: Selected Essays 1993-2006 (Unabridged)\", \"collectionCensoredName\":\"Creationists: Selected Essays 1993-2006 (Unabridged)\", \"artistViewUrl\":\"http://itunes.apple.com/us/artist/e-l-doctorow/id2030421?uo=4\", \"collectionViewUrl\":\"http://itunes.apple.com/WebObjects/MZStore.woa/wa/viewAudiobook?id=366950565&s=143441&uo=4\", \"artworkUrl60\":\"http://a1.phobos.apple.com/us/r1000/040/Music/01/b1/78/mzi.slycheij.60x60-50.jpg\", \"artworkUrl100\":\"http://a1.phobos.apple.com/us/r1000/040/Music/01/b1/78/mzi.slycheij.100x100-75.jpg\", \"collectionPrice\":17.95, \"collectionExplicitness\":\"notExplicit\", \"trackCount\":1, \"copyright\":\"2006 Random House Audio\", \"country\":\"USA\", \"currency\":\"USD\", \"releaseDate\":\"2006-09-19T07:00:00Z\", \"primaryGenreName\":\"Audiobooks\"}, \n\ - {\"wrapperType\":\"audiobook\", \"artistId\":7370232, \"collectionId\":367864634, \"amgArtistId\":null, \"amgVideoArtistId\":null, \"artistName\":\"Stuart M. Kaminsky\", \"collectionName\":\"High Midnight (Unabridged)\", \"collectionCensoredName\":\"High Midnight (Unabridged)\", \"artistViewUrl\":\"http://itunes.apple.com/us/artist/stuart-m-kaminsky/id7370232?mt=11&uo=4\", \"collectionViewUrl\":\"http://itunes.apple.com/WebObjects/MZStore.woa/wa/viewAudiobook?id=367864634&s=143441&uo=4\", \"artworkUrl60\":\"http://a1.phobos.apple.com/us/r1000/044/Music/23/93/73/mzi.aclpfqwm.60x60-50.jpg\", \"artworkUrl100\":\"http://a1.phobos.apple.com/us/r1000/044/Music/23/93/73/mzi.aclpfqwm.100x100-75.jpg\", \"collectionPrice\":11.95, \"collectionExplicitness\":\"notExplicit\", \"trackCount\":1, \"copyright\":\"2006 Blackstone Audio, Inc.\", \"country\":\"USA\", \"currency\":\"USD\", \"releaseDate\":\"2006-03-23T08:00:00Z\", \"primaryGenreName\":\"Audiobooks\"}, \n\ - {\"wrapperType\":\"audiobook\", \"artistId\":404108611, \"collectionId\":404109347, \"amgArtistId\":null, \"amgVideoArtistId\":null, \"artistName\":\"Annegret Augustin\", \"collectionName\":\"Bedeutende Personen der Weltgeschichte: Kemal Atat\\u00fcrk / Pablo Picasso / Charlie Chaplin / Ernest Hemingway\", \"collectionCensoredName\":\"Bedeutende Personen der Weltgeschichte: Kemal Atat\\u00fcrk / Pablo Picasso / Charlie Chaplin / Ernest Hemingway\", \"artistViewUrl\":\"http://itunes.apple.com/us/artist/annegret-augustin/id404108611?uo=4\", \"collectionViewUrl\":\"http://itunes.apple.com/WebObjects/MZStore.woa/wa/viewAudiobook?id=404109347&s=143441&uo=4\", \"artworkUrl60\":\"http://a1.phobos.apple.com/us/r1000/019/Music/4e/75/97/mzi.pgfhejyi.60x60-50.jpg\", \"artworkUrl100\":\"http://a1.phobos.apple.com/us/r1000/019/Music/4e/75/97/mzi.pgfhejyi.100x100-75.jpg\", \"collectionPrice\":6.95, \"collectionExplicitness\":\"notExplicit\", \"trackCount\":1, \"copyright\":\"2010 audio media verlag\", \"country\":\"USA\", \"currency\":\"USD\", \"releaseDate\":\"2010-11-10T08:00:00Z\", \"primaryGenreName\":\"Audiobooks\"}, \n\ - {\"wrapperType\":\"audiobook\", \"artistId\":368124523, \"collectionId\":368124519, \"amgArtistId\":null, \"amgVideoArtistId\":null, \"artistName\":\"Sara Paretsky, Lawrence Block, Edgar Allan Poe, Georges Simenon, Ernest Hemingway, A.A. Milne, Robert Barr\", \"collectionName\":\"The Greatest Mysteries of All Time, Volume 4 (Unabridged)\", \"collectionCensoredName\":\"The Greatest Mysteries of All Time, Volume 4 (Unabridged)\", \"artistViewUrl\":\"http://itunes.apple.com/us/artist/sara-paretsky-lawrence-block/id368124523?uo=4\", \"collectionViewUrl\":\"http://itunes.apple.com/WebObjects/MZStore.woa/wa/viewAudiobook?id=368124519&s=143441&uo=4\", \"artworkUrl60\":\"http://a1.phobos.apple.com/us/r1000/052/Music/42/79/e8/mzi.xfngvtgk.60x60-50.jpg\", \"artworkUrl100\":\"http://a1.phobos.apple.com/us/r1000/052/Music/42/79/e8/mzi.xfngvtgk.100x100-75.jpg\", \"collectionPrice\":14.95, \"collectionExplicitness\":\"notExplicit\", \"trackCount\":1, \"copyright\":\"2010 Phoenix Audio\", \"country\":\"USA\", \"currency\":\"USD\", \"releaseDate\":\"2010-04-14T07:00:00Z\", \"primaryGenreName\":\"Audiobooks\"}]\n\ - }\n\n\n" - http_version: "1.1" -- !ruby/struct:VCR::HTTPInteraction - request: !ruby/struct:VCR::Request - method: :get - uri: http://ax.itunes.apple.com:80/WebObjects/MZStoreServices.woa/wa/wsSearch?media=shortFilm&term=Pixar - body: - headers: - response: !ruby/struct:VCR::Response - status: !ruby/struct:VCR::ResponseStatus - code: 200 - message: OK - headers: - x-apple-orig-url-path: - - /WebObjects/MZStoreServices.woa/wa/wsSearch?term=Pixar&media=shortFilm - x-apple-application-site: - - CUP - x-apple-max-age: - - "3600" - x-apple-woa-inbound-url: - - /WebObjects/MZStoreServices.woa/wa/wsSearch?term=Pixar&media=shortFilm - content-type: - - text/javascript; charset=utf-8 - x-apple-application-instance: - - "250" - x-webobjects-loadaverage: - - "0" - x-ns-label: - - mzstoreservice-lb - expires: - - Mon, 31 Jan 2011 05:44:04 GMT - cache-control: - - max-age=0, no-cache - pragma: - - no-cache - date: - - Mon, 31 Jan 2011 05:44:04 GMT - content-length: - - "21549" - vary: - - X-Apple-Store-Front - x-apple-partner: - - origin.0 - body: "\n\n\n\ - {\n \"resultCount\":17,\n \"results\": [\n\ - {\"wrapperType\":\"track\", \"kind\":\"feature-movie\", \"artistId\":81758682, \"collectionId\":null, \"trackId\":81758685, \"artistName\":\"Pixar\", \"collectionName\":null, \"trackName\":\"For the Birds\", \"collectionCensoredName\":null, \"trackCensoredName\":\"For the Birds\", \"artistViewUrl\":\"http://itunes.apple.com/WebObjects/MZStore.woa/wa/viewStudio?id=81758682&uo=4\", \"collectionViewUrl\":null, \"trackViewUrl\":\"http://itunes.apple.com/WebObjects/MZStore.woa/wa/viewMovie?id=81758685&s=143441&uo=4\", \"previewUrl\":\"http://a1267.v.phobos.apple.com/us/r1000/051/Video/0f/96/2c/mzi.eruazfvl..640x480.h264lc.D2.p.m4v\", \"artworkUrl30\":\"http://a1.phobos.apple.com/us/r1000/005/Features/90/d3/c4/dj.zzvxxnqt.30x30-50.jpg\", \"artworkUrl60\":\"http://a1.phobos.apple.com/us/r1000/005/Features/90/d3/c4/dj.zzvxxnqt.60x60-50.jpg\", \"artworkUrl100\":\"http://a1.phobos.apple.com/us/r1000/005/Features/90/d3/c4/dj.zzvxxnqt.100x100-75.jpg\", \"collectionPrice\":1.99, \"trackPrice\":1.99, \"releaseDate\":\"2003-04-28 07:00:00 Etc/GMT\", \"collectionExplicitness\":\"notExplicit\", \"trackExplicitness\":\"notExplicit\", \"discCount\":null, \"discNumber\":null, \"trackCount\":null, \"trackNumber\":null, \"trackTimeMillis\":204625.0, \"country\":\"USA\", \"currency\":\"USD\", \"primaryGenreName\":\"Short Films\", \"contentAdvisoryRating\":null}, \n\ - {\"wrapperType\":\"track\", \"kind\":\"feature-movie\", \"artistId\":81758682, \"collectionId\":null, \"trackId\":94600947, \"artistName\":\"Pixar\", \"collectionName\":null, \"trackName\":\"Knick Knack\", \"collectionCensoredName\":null, \"trackCensoredName\":\"Knick Knack\", \"artistViewUrl\":\"http://itunes.apple.com/WebObjects/MZStore.woa/wa/viewStudio?id=81758682&uo=4\", \"collectionViewUrl\":null, \"trackViewUrl\":\"http://itunes.apple.com/WebObjects/MZStore.woa/wa/viewMovie?id=94600947&s=143441&uo=4\", \"previewUrl\":\"http://a502.v.phobos.apple.com/us/r1000/017/Video/36/0d/e3/mzi.rosublik..640x480.h264lc.D2.p.m4v\", \"artworkUrl30\":\"http://a1.phobos.apple.com/us/r1000/016/Features/fc/f4/2e/dj.hkwlcwmx.30x30-50.jpg\", \"artworkUrl60\":\"http://a1.phobos.apple.com/us/r1000/016/Features/fc/f4/2e/dj.hkwlcwmx.60x60-50.jpg\", \"artworkUrl100\":\"http://a1.phobos.apple.com/us/r1000/016/Features/fc/f4/2e/dj.hkwlcwmx.100x100-75.jpg\", \"collectionPrice\":1.99, \"trackPrice\":1.99, \"releaseDate\":\"2003-04-28 07:00:00 Etc/GMT\", \"collectionExplicitness\":\"notExplicit\", \"trackExplicitness\":\"notExplicit\", \"discCount\":null, \"discNumber\":null, \"trackCount\":null, \"trackNumber\":null, \"trackTimeMillis\":217458.0, \"country\":\"USA\", \"currency\":\"USD\", \"primaryGenreName\":\"Short Films\", \"contentAdvisoryRating\":null}, \n\ - {\"wrapperType\":\"track\", \"kind\":\"feature-movie\", \"artistId\":81758682, \"collectionId\":null, \"trackId\":81758680, \"artistName\":\"Pixar\", \"collectionName\":null, \"trackName\":\"Boundin'\", \"collectionCensoredName\":null, \"trackCensoredName\":\"Boundin'\", \"artistViewUrl\":\"http://itunes.apple.com/WebObjects/MZStore.woa/wa/viewStudio?id=81758682&uo=4\", \"collectionViewUrl\":null, \"trackViewUrl\":\"http://itunes.apple.com/WebObjects/MZStore.woa/wa/viewMovie?id=81758680&s=143441&uo=4\", \"previewUrl\":\"http://a419.v.phobos.apple.com/us/r1000/020/Video/f6/ae/68/mzi.yfyrdvdl..640x480.h264lc.D2.p.m4v\", \"artworkUrl30\":\"http://a1.phobos.apple.com/us/r1000/028/Features/dc/23/92/dj.afewymrp.30x30-50.jpg\", \"artworkUrl60\":\"http://a1.phobos.apple.com/us/r1000/028/Features/dc/23/92/dj.afewymrp.60x60-50.jpg\", \"artworkUrl100\":\"http://a1.phobos.apple.com/us/r1000/028/Features/dc/23/92/dj.afewymrp.100x100-75.jpg\", \"collectionPrice\":1.99, \"trackPrice\":1.99, \"releaseDate\":\"2003-04-28 07:00:00 Etc/GMT\", \"collectionExplicitness\":\"notExplicit\", \"trackExplicitness\":\"notExplicit\", \"discCount\":null, \"discNumber\":null, \"trackCount\":null, \"trackNumber\":null, \"trackTimeMillis\":283458.0, \"country\":\"USA\", \"currency\":\"USD\", \"primaryGenreName\":\"Short Films\", \"contentAdvisoryRating\":null}, \n\ - {\"wrapperType\":\"track\", \"kind\":\"feature-movie\", \"artistId\":81758682, \"collectionId\":null, \"trackId\":81758687, \"artistName\":\"Pixar\", \"collectionName\":null, \"trackName\":\"Geri's Game\", \"collectionCensoredName\":null, \"trackCensoredName\":\"Geri's Game\", \"artistViewUrl\":\"http://itunes.apple.com/WebObjects/MZStore.woa/wa/viewStudio?id=81758682&uo=4\", \"collectionViewUrl\":null, \"trackViewUrl\":\"http://itunes.apple.com/WebObjects/MZStore.woa/wa/viewMovie?id=81758687&s=143441&uo=4\", \"previewUrl\":\"http://a1332.v.phobos.apple.com/us/r1000/048/Video/8e/8a/b3/mzi.lqdidvxn..640x480.h264lc.D2.p.m4v\", \"artworkUrl30\":\"http://a1.phobos.apple.com/us/r1000/059/Features/e7/ee/39/dj.tlksjlck.30x30-50.jpg\", \"artworkUrl60\":\"http://a1.phobos.apple.com/us/r1000/059/Features/e7/ee/39/dj.tlksjlck.60x60-50.jpg\", \"artworkUrl100\":\"http://a1.phobos.apple.com/us/r1000/059/Features/e7/ee/39/dj.tlksjlck.100x100-75.jpg\", \"collectionPrice\":1.99, \"trackPrice\":1.99, \"releaseDate\":\"2003-04-28 07:00:00 Etc/GMT\", \"collectionExplicitness\":\"notExplicit\", \"trackExplicitness\":\"notExplicit\", \"discCount\":null, \"discNumber\":null, \"trackCount\":null, \"trackNumber\":null, \"trackTimeMillis\":299833.0, \"country\":\"USA\", \"currency\":\"USD\", \"primaryGenreName\":\"Short Films\", \"contentAdvisoryRating\":null}, \n\ - {\"wrapperType\":\"track\", \"kind\":\"feature-movie\", \"artistId\":81758682, \"collectionId\":null, \"trackId\":259311591, \"artistName\":\"Pixar\", \"collectionName\":null, \"trackName\":\"Lifted\", \"collectionCensoredName\":null, \"trackCensoredName\":\"Lifted\", \"artistViewUrl\":\"http://itunes.apple.com/WebObjects/MZStore.woa/wa/viewStudio?id=81758682&uo=4\", \"collectionViewUrl\":null, \"trackViewUrl\":\"http://itunes.apple.com/WebObjects/MZStore.woa/wa/viewMovie?id=259311591&s=143441&uo=4\", \"previewUrl\":\"http://a631.v.phobos.apple.com/us/r1000/018/Video/d2/9d/04/mzi.cgfbzhly..640x336.h264lc.D2.p.m4v\", \"artworkUrl30\":\"http://a1.phobos.apple.com/us/r1000/019/Features/01/b4/c4/dj.vrqdndhh.30x30-50.jpg\", \"artworkUrl60\":\"http://a1.phobos.apple.com/us/r1000/019/Features/01/b4/c4/dj.vrqdndhh.60x60-50.jpg\", \"artworkUrl100\":\"http://a1.phobos.apple.com/us/r1000/019/Features/01/b4/c4/dj.vrqdndhh.100x100-75.jpg\", \"collectionPrice\":1.99, \"trackPrice\":1.99, \"releaseDate\":\"2007-06-29 07:00:00 Etc/GMT\", \"collectionExplicitness\":\"notExplicit\", \"trackExplicitness\":\"notExplicit\", \"discCount\":null, \"discNumber\":null, \"trackCount\":null, \"trackNumber\":null, \"trackTimeMillis\":299916.0, \"country\":\"USA\", \"currency\":\"USD\", \"primaryGenreName\":\"Short Films\", \"contentAdvisoryRating\":null}, \n\ - {\"wrapperType\":\"track\", \"kind\":\"feature-movie\", \"artistId\":81758682, \"collectionId\":null, \"trackId\":159489047, \"artistName\":\"Pixar\", \"collectionName\":null, \"trackName\":\"One Man Band\", \"collectionCensoredName\":null, \"trackCensoredName\":\"One Man Band\", \"artistViewUrl\":\"http://itunes.apple.com/WebObjects/MZStore.woa/wa/viewStudio?id=81758682&uo=4\", \"collectionViewUrl\":null, \"trackViewUrl\":\"http://itunes.apple.com/WebObjects/MZStore.woa/wa/viewMovie?id=159489047&s=143441&uo=4\", \"previewUrl\":\"http://a1683.v.phobos.apple.com/us/r1000/032/Video/ee/b1/19/mzi.qrasbuar..640x480.h264lc.D2.p.m4v\", \"artworkUrl30\":\"http://a1.phobos.apple.com/us/r1000/059/Features/d6/4d/2b/dj.jkkraltz.30x30-50.jpg\", \"artworkUrl60\":\"http://a1.phobos.apple.com/us/r1000/059/Features/d6/4d/2b/dj.jkkraltz.60x60-50.jpg\", \"artworkUrl100\":\"http://a1.phobos.apple.com/us/r1000/059/Features/d6/4d/2b/dj.jkkraltz.100x100-75.jpg\", \"collectionPrice\":1.99, \"trackPrice\":1.99, \"releaseDate\":\"2006-06-07 07:00:00 Etc/GMT\", \"collectionExplicitness\":\"notExplicit\", \"trackExplicitness\":\"notExplicit\", \"discCount\":null, \"discNumber\":null, \"trackCount\":null, \"trackNumber\":null, \"trackTimeMillis\":274166.0, \"country\":\"USA\", \"currency\":\"USD\", \"primaryGenreName\":\"Short Films\", \"contentAdvisoryRating\":null}, \n\ - {\"wrapperType\":\"track\", \"kind\":\"feature-movie\", \"artistId\":81758682, \"collectionId\":null, \"trackId\":81939954, \"artistName\":\"Pixar\", \"collectionName\":null, \"trackName\":\"Luxo Jr.\", \"collectionCensoredName\":null, \"trackCensoredName\":\"Luxo Jr.\", \"artistViewUrl\":\"http://itunes.apple.com/WebObjects/MZStore.woa/wa/viewStudio?id=81758682&uo=4\", \"collectionViewUrl\":null, \"trackViewUrl\":\"http://itunes.apple.com/WebObjects/MZStore.woa/wa/viewMovie?id=81939954&s=143441&uo=4\", \"previewUrl\":\"http://a278.v.phobos.apple.com/us/r1000/007/Video/8a/21/40/mzi.dzbgwvvh..640x480.h264lc.D2.p.m4v\", \"artworkUrl30\":\"http://a1.phobos.apple.com/us/r1000/003/Features/40/99/6b/dj.ozgghlnl.30x30-50.jpg\", \"artworkUrl60\":\"http://a1.phobos.apple.com/us/r1000/003/Features/40/99/6b/dj.ozgghlnl.60x60-50.jpg\", \"artworkUrl100\":\"http://a1.phobos.apple.com/us/r1000/003/Features/40/99/6b/dj.ozgghlnl.100x100-75.jpg\", \"collectionPrice\":1.99, \"trackPrice\":1.99, \"releaseDate\":\"2003-04-28 07:00:00 Etc/GMT\", \"collectionExplicitness\":\"notExplicit\", \"trackExplicitness\":\"notExplicit\", \"discCount\":null, \"discNumber\":null, \"trackCount\":null, \"trackNumber\":null, \"trackTimeMillis\":145958.0, \"country\":\"USA\", \"currency\":\"USD\", \"primaryGenreName\":\"Short Films\", \"contentAdvisoryRating\":null}, \n\ - {\"wrapperType\":\"track\", \"kind\":\"feature-movie\", \"artistId\":81758682, \"collectionId\":null, \"trackId\":81939958, \"artistName\":\"Pixar\", \"collectionName\":null, \"trackName\":\"Tin Toy\", \"collectionCensoredName\":null, \"trackCensoredName\":\"Tin Toy\", \"artistViewUrl\":\"http://itunes.apple.com/WebObjects/MZStore.woa/wa/viewStudio?id=81758682&uo=4\", \"collectionViewUrl\":null, \"trackViewUrl\":\"http://itunes.apple.com/WebObjects/MZStore.woa/wa/viewMovie?id=81939958&s=143441&uo=4\", \"previewUrl\":\"http://a709.v.phobos.apple.com/us/r1000/049/Video/87/16/44/mzi.vauqkvix..640x480.h264lc.D2.p.m4v\", \"artworkUrl30\":\"http://a1.phobos.apple.com/us/r1000/058/Features/89/60/e1/dj.tvvjvyfv.30x30-50.jpg\", \"artworkUrl60\":\"http://a1.phobos.apple.com/us/r1000/058/Features/89/60/e1/dj.tvvjvyfv.60x60-50.jpg\", \"artworkUrl100\":\"http://a1.phobos.apple.com/us/r1000/058/Features/89/60/e1/dj.tvvjvyfv.100x100-75.jpg\", \"collectionPrice\":1.99, \"trackPrice\":1.99, \"releaseDate\":\"2003-04-28 07:00:00 Etc/GMT\", \"collectionExplicitness\":\"notExplicit\", \"trackExplicitness\":\"notExplicit\", \"discCount\":null, \"discNumber\":null, \"trackCount\":null, \"trackNumber\":null, \"trackTimeMillis\":309916.0, \"country\":\"USA\", \"currency\":\"USD\", \"primaryGenreName\":\"Short Films\", \"contentAdvisoryRating\":null}, \n\ - {\"wrapperType\":\"track\", \"kind\":\"feature-movie\", \"artistId\":81758682, \"collectionId\":null, \"trackId\":282546512, \"artistName\":\"Pixar\", \"collectionName\":null, \"trackName\":\"Presto\", \"collectionCensoredName\":null, \"trackCensoredName\":\"Presto\", \"artistViewUrl\":\"http://itunes.apple.com/WebObjects/MZStore.woa/wa/viewStudio?id=81758682&uo=4\", \"collectionViewUrl\":null, \"trackViewUrl\":\"http://itunes.apple.com/WebObjects/MZStore.woa/wa/viewMovie?id=282546512&s=143441&uo=4\", \"previewUrl\":\"http://a121.v.phobos.apple.com/us/r1000/059/Video/0e/1b/d8/mzi.lmffvhnd..640x360.h264lc.D2.p.m4v\", \"artworkUrl30\":\"http://a1.phobos.apple.com/us/r1000/025/Music/dd/10/3f/dj.egvtswop.30x30-50.jpg\", \"artworkUrl60\":\"http://a1.phobos.apple.com/us/r1000/025/Music/dd/10/3f/dj.egvtswop.60x60-50.jpg\", \"artworkUrl100\":\"http://a1.phobos.apple.com/us/r1000/025/Music/dd/10/3f/dj.egvtswop.100x100-75.jpg\", \"collectionPrice\":1.99, \"trackPrice\":1.99, \"releaseDate\":\"2008-06-27 07:00:00 Etc/GMT\", \"collectionExplicitness\":\"notExplicit\", \"trackExplicitness\":\"notExplicit\", \"discCount\":null, \"discNumber\":null, \"trackCount\":null, \"trackNumber\":null, \"trackTimeMillis\":317108.0, \"country\":\"USA\", \"currency\":\"USD\", \"primaryGenreName\":\"Short Films\", \"contentAdvisoryRating\":null}, \n\ - {\"wrapperType\":\"track\", \"kind\":\"feature-movie\", \"artistId\":81758682, \"collectionId\":null, \"trackId\":81939956, \"artistName\":\"Pixar\", \"collectionName\":null, \"trackName\":\"Red's Dream\", \"collectionCensoredName\":null, \"trackCensoredName\":\"Red's Dream\", \"artistViewUrl\":\"http://itunes.apple.com/WebObjects/MZStore.woa/wa/viewStudio?id=81758682&uo=4\", \"collectionViewUrl\":null, \"trackViewUrl\":\"http://itunes.apple.com/WebObjects/MZStore.woa/wa/viewMovie?id=81939956&s=143441&uo=4\", \"previewUrl\":\"http://a564.v.phobos.apple.com/us/r1000/003/Video/f6/f0/f8/mzi.jqjcpryl..640x480.h264lc.D2.p.m4v\", \"artworkUrl30\":\"http://a1.phobos.apple.com/us/r1000/036/Features/0e/60/5f/dj.zezykinx.30x30-50.jpg\", \"artworkUrl60\":\"http://a1.phobos.apple.com/us/r1000/036/Features/0e/60/5f/dj.zezykinx.60x60-50.jpg\", \"artworkUrl100\":\"http://a1.phobos.apple.com/us/r1000/036/Features/0e/60/5f/dj.zezykinx.100x100-75.jpg\", \"collectionPrice\":1.99, \"trackPrice\":1.99, \"releaseDate\":\"2003-04-28 07:00:00 Etc/GMT\", \"collectionExplicitness\":\"notExplicit\", \"trackExplicitness\":\"notExplicit\", \"discCount\":null, \"discNumber\":null, \"trackCount\":null, \"trackNumber\":null, \"trackTimeMillis\":253666.0, \"country\":\"USA\", \"currency\":\"USD\", \"primaryGenreName\":\"Short Films\", \"contentAdvisoryRating\":null}, \n\ - {\"wrapperType\":\"track\", \"kind\":\"feature-movie\", \"artistId\":81758682, \"collectionId\":null, \"trackId\":299568053, \"artistName\":\"Pixar\", \"collectionName\":null, \"trackName\":\"Jack-Jack Attack\", \"collectionCensoredName\":null, \"trackCensoredName\":\"Jack-Jack Attack\", \"artistViewUrl\":\"http://itunes.apple.com/WebObjects/MZStore.woa/wa/viewStudio?id=81758682&uo=4\", \"collectionViewUrl\":null, \"trackViewUrl\":\"http://itunes.apple.com/WebObjects/MZStore.woa/wa/viewMovie?id=299568053&s=143441&uo=4\", \"previewUrl\":\"http://a1157.v.phobos.apple.com/us/r1000/020/Video/7d/ad/ea/mzm.cbwhowqs..640x360.h264lc.d2.p.m4v\", \"artworkUrl30\":\"http://a1.phobos.apple.com/us/r1000/039/Video/d3/ca/90/mzi.lajysyhn.30x30-50.jpg\", \"artworkUrl60\":\"http://a1.phobos.apple.com/us/r1000/039/Video/d3/ca/90/mzi.lajysyhn.60x60-50.jpg\", \"artworkUrl100\":\"http://a1.phobos.apple.com/us/r1000/039/Video/d3/ca/90/mzi.lajysyhn.100x100-75.jpg\", \"collectionPrice\":1.99, \"trackPrice\":1.99, \"releaseDate\":\"2007-11-06 08:00:00 Etc/GMT\", \"collectionExplicitness\":\"notExplicit\", \"trackExplicitness\":\"notExplicit\", \"discCount\":null, \"discNumber\":null, \"trackCount\":null, \"trackNumber\":null, \"trackTimeMillis\":285535.0, \"country\":\"USA\", \"currency\":\"USD\", \"primaryGenreName\":\"Short Films\", \"contentAdvisoryRating\":null}, \n\ - {\"wrapperType\":\"track\", \"kind\":\"feature-movie\", \"artistId\":81758682, \"collectionId\":null, \"trackId\":317100593, \"artistName\":\"Pixar\", \"collectionName\":null, \"trackName\":\"Partly Cloudy\", \"collectionCensoredName\":null, \"trackCensoredName\":\"Partly Cloudy\", \"artistViewUrl\":\"http://itunes.apple.com/WebObjects/MZStore.woa/wa/viewStudio?id=81758682&uo=4\", \"collectionViewUrl\":null, \"trackViewUrl\":\"http://itunes.apple.com/WebObjects/MZStore.woa/wa/viewMovie?id=317100593&s=143441&uo=4\", \"previewUrl\":\"http://a388.v.phobos.apple.com/us/r1000/049/Video/1c/45/ea/mzm.azlmttgv..640x480.h264lc.d2.p.m4v\", \"artworkUrl30\":\"http://a1.phobos.apple.com/us/r1000/006/Video/e8/ee/2d/mzi.xtqdjdfx.30x30-50.jpg\", \"artworkUrl60\":\"http://a1.phobos.apple.com/us/r1000/006/Video/e8/ee/2d/mzi.xtqdjdfx.60x60-50.jpg\", \"artworkUrl100\":\"http://a1.phobos.apple.com/us/r1000/006/Video/e8/ee/2d/mzi.xtqdjdfx.100x100-75.jpg\", \"collectionPrice\":1.99, \"trackPrice\":1.99, \"releaseDate\":\"2009-06-02 07:00:00 Etc/GMT\", \"collectionExplicitness\":\"notExplicit\", \"trackExplicitness\":\"notExplicit\", \"discCount\":null, \"discNumber\":null, \"trackCount\":null, \"trackNumber\":null, \"trackTimeMillis\":349891.0, \"country\":\"USA\", \"currency\":\"USD\", \"primaryGenreName\":\"Short Films\", \"contentAdvisoryRating\":null}, \n\ - {\"wrapperType\":\"track\", \"kind\":\"feature-movie\", \"artistId\":81758682, \"collectionId\":null, \"trackId\":378141736, \"artistName\":\"Pixar\", \"collectionName\":null, \"trackName\":\"Day & Night\", \"collectionCensoredName\":null, \"trackCensoredName\":\"Day & Night\", \"artistViewUrl\":\"http://itunes.apple.com/WebObjects/MZStore.woa/wa/viewStudio?id=81758682&uo=4\", \"collectionViewUrl\":null, \"trackViewUrl\":\"http://itunes.apple.com/WebObjects/MZStore.woa/wa/viewMovie?id=378141736&s=143441&uo=4\", \"previewUrl\":\"http://a758.v.phobos.apple.com/us/r1000/054/Video/a7/58/c0/mzm.clwumdku..640x478.h264lc.d2.p.m4v\", \"artworkUrl30\":\"http://a1.phobos.apple.com/us/r1000/008/Video/a8/1d/45/mzi.aqozcmgw.30x30-50.jpg\", \"artworkUrl60\":\"http://a1.phobos.apple.com/us/r1000/008/Video/a8/1d/45/mzi.aqozcmgw.60x60-50.jpg\", \"artworkUrl100\":\"http://a1.phobos.apple.com/us/r1000/008/Video/a8/1d/45/mzi.aqozcmgw.100x100-75.jpg\", \"collectionPrice\":1.99, \"trackPrice\":1.99, \"releaseDate\":\"2010-06-22 07:00:00 Etc/GMT\", \"collectionExplicitness\":\"notExplicit\", \"trackExplicitness\":\"notExplicit\", \"discCount\":null, \"discNumber\":null, \"trackCount\":null, \"trackNumber\":null, \"trackTimeMillis\":363294.0, \"country\":\"USA\", \"currency\":\"USD\", \"primaryGenreName\":\"Short Films\", \"contentAdvisoryRating\":null}, \n\ - {\"wrapperType\":\"track\", \"kind\":\"feature-movie\", \"artistId\":81758682, \"collectionId\":null, \"trackId\":299568535, \"artistName\":\"Pixar\", \"collectionName\":null, \"trackName\":\"Mater & The Ghostlight\", \"collectionCensoredName\":null, \"trackCensoredName\":\"Mater & The Ghostlight\", \"artistViewUrl\":\"http://itunes.apple.com/WebObjects/MZStore.woa/wa/viewStudio?id=81758682&uo=4\", \"collectionViewUrl\":null, \"trackViewUrl\":\"http://itunes.apple.com/WebObjects/MZStore.woa/wa/viewMovie?id=299568535&s=143441&uo=4\", \"previewUrl\":\"http://a15.v.phobos.apple.com/us/r1000/028/Video/e9/8f/de/mzm.quvryhiy..640x360.h264lc.d2.p.m4v\", \"artworkUrl30\":\"http://a1.phobos.apple.com/us/r1000/032/Video/52/32/b6/mzi.whyxzcwz.30x30-50.jpg\", \"artworkUrl60\":\"http://a1.phobos.apple.com/us/r1000/032/Video/52/32/b6/mzi.whyxzcwz.60x60-50.jpg\", \"artworkUrl100\":\"http://a1.phobos.apple.com/us/r1000/032/Video/52/32/b6/mzi.whyxzcwz.100x100-75.jpg\", \"collectionPrice\":1.99, \"trackPrice\":1.99, \"releaseDate\":\"2007-11-06 08:00:00 Etc/GMT\", \"collectionExplicitness\":\"notExplicit\", \"trackExplicitness\":\"notExplicit\", \"discCount\":null, \"discNumber\":null, \"trackCount\":null, \"trackNumber\":null, \"trackTimeMillis\":430430.0, \"country\":\"USA\", \"currency\":\"USD\", \"primaryGenreName\":\"Short Films\", \"contentAdvisoryRating\":null}, \n\ - {\"wrapperType\":\"track\", \"kind\":\"feature-movie\", \"artistId\":81758682, \"collectionId\":null, \"trackId\":299553177, \"artistName\":\"Pixar\", \"collectionName\":null, \"trackName\":\"Mike's New Car\", \"collectionCensoredName\":null, \"trackCensoredName\":\"Mike's New Car\", \"artistViewUrl\":\"http://itunes.apple.com/WebObjects/MZStore.woa/wa/viewStudio?id=81758682&uo=4\", \"collectionViewUrl\":null, \"trackViewUrl\":\"http://itunes.apple.com/WebObjects/MZStore.woa/wa/viewMovie?id=299553177&s=143441&uo=4\", \"previewUrl\":\"http://a1678.v.phobos.apple.com/us/r1000/057/Video/fa/f6/68/mzm.zowmkldb..640x480.h264lc.d2.p.m4v\", \"artworkUrl30\":\"http://a1.phobos.apple.com/us/r1000/051/Video/f0/44/45/mzi.krgtoakq.30x30-50.jpg\", \"artworkUrl60\":\"http://a1.phobos.apple.com/us/r1000/051/Video/f0/44/45/mzi.krgtoakq.60x60-50.jpg\", \"artworkUrl100\":\"http://a1.phobos.apple.com/us/r1000/051/Video/f0/44/45/mzi.krgtoakq.100x100-75.jpg\", \"collectionPrice\":1.99, \"trackPrice\":1.99, \"releaseDate\":\"2007-11-06 08:00:00 Etc/GMT\", \"collectionExplicitness\":\"notExplicit\", \"trackExplicitness\":\"notExplicit\", \"discCount\":null, \"discNumber\":null, \"trackCount\":null, \"trackNumber\":null, \"trackTimeMillis\":229895.0, \"country\":\"USA\", \"currency\":\"USD\", \"primaryGenreName\":\"Short Films\", \"contentAdvisoryRating\":null}, \n\ - {\"wrapperType\":\"track\", \"kind\":\"feature-movie\", \"artistId\":81758682, \"collectionId\":null, \"trackId\":299555824, \"artistName\":\"Pixar\", \"collectionName\":null, \"trackName\":\"Your Friend the Rat\", \"collectionCensoredName\":null, \"trackCensoredName\":\"Your Friend the Rat\", \"artistViewUrl\":\"http://itunes.apple.com/WebObjects/MZStore.woa/wa/viewStudio?id=81758682&uo=4\", \"collectionViewUrl\":null, \"trackViewUrl\":\"http://itunes.apple.com/WebObjects/MZStore.woa/wa/viewMovie?id=299555824&s=143441&uo=4\", \"previewUrl\":\"http://a299.v.phobos.apple.com/us/r1000/007/Video/d6/10/24/mzm.yvbxbxjv..640x360.h264lc.d2.p.m4v\", \"artworkUrl30\":\"http://a1.phobos.apple.com/us/r1000/032/Video/b7/b5/8e/mzi.wuygkuzg.30x30-50.jpg\", \"artworkUrl60\":\"http://a1.phobos.apple.com/us/r1000/032/Video/b7/b5/8e/mzi.wuygkuzg.60x60-50.jpg\", \"artworkUrl100\":\"http://a1.phobos.apple.com/us/r1000/032/Video/b7/b5/8e/mzi.wuygkuzg.100x100-75.jpg\", \"collectionPrice\":1.99, \"trackPrice\":1.99, \"releaseDate\":\"2007-11-06 08:00:00 Etc/GMT\", \"collectionExplicitness\":\"notExplicit\", \"trackExplicitness\":\"notExplicit\", \"discCount\":null, \"discNumber\":null, \"trackCount\":null, \"trackNumber\":null, \"trackTimeMillis\":676843.0, \"country\":\"USA\", \"currency\":\"USD\", \"primaryGenreName\":\"Short Films\", \"contentAdvisoryRating\":null}, \n\ - {\"wrapperType\":\"track\", \"kind\":\"feature-movie\", \"artistId\":81758682, \"collectionId\":null, \"trackId\":299556204, \"artistName\":\"Pixar\", \"collectionName\":null, \"trackName\":\"The Adventures of Andr\\u00e9 & Wally B.\", \"collectionCensoredName\":null, \"trackCensoredName\":\"The Adventures of Andr\\u00e9 & Wally B.\", \"artistViewUrl\":\"http://itunes.apple.com/WebObjects/MZStore.woa/wa/viewStudio?id=81758682&uo=4\", \"collectionViewUrl\":null, \"trackViewUrl\":\"http://itunes.apple.com/WebObjects/MZStore.woa/wa/viewMovie?id=299556204&s=143441&uo=4\", \"previewUrl\":\"http://a1142.v.phobos.apple.com/us/r1000/046/Video/25/17/bb/mzm.srakbbha..640x480.h264lc.d2.p.m4v\", \"artworkUrl30\":\"http://a1.phobos.apple.com/us/r1000/013/Video/57/d3/d4/mzi.cdodecfu.30x30-50.jpg\", \"artworkUrl60\":\"http://a1.phobos.apple.com/us/r1000/013/Video/57/d3/d4/mzi.cdodecfu.60x60-50.jpg\", \"artworkUrl100\":\"http://a1.phobos.apple.com/us/r1000/013/Video/57/d3/d4/mzi.cdodecfu.100x100-75.jpg\", \"collectionPrice\":1.99, \"trackPrice\":1.99, \"releaseDate\":\"2007-11-06 08:00:00 Etc/GMT\", \"collectionExplicitness\":\"notExplicit\", \"trackExplicitness\":\"notExplicit\", \"discCount\":null, \"discNumber\":null, \"trackCount\":null, \"trackNumber\":null, \"trackTimeMillis\":112986.0, \"country\":\"USA\", \"currency\":\"USD\", \"primaryGenreName\":\"Short Films\", \"contentAdvisoryRating\":null}]\n\ - }\n\n\n" - http_version: "1.1" -- !ruby/struct:VCR::HTTPInteraction - request: !ruby/struct:VCR::Request - method: :get - uri: http://ax.itunes.apple.com:80/WebObjects/MZStoreServices.woa/wa/wsSearch?media=tvShow&term=Lost - body: - headers: - response: !ruby/struct:VCR::Response - status: !ruby/struct:VCR::ResponseStatus - code: 200 - message: OK - headers: - x-apple-orig-url-path: - - /WebObjects/MZStoreServices.woa/wa/wsSearch?term=Lost&media=tvShow - x-apple-application-site: - - CUP - x-apple-max-age: - - "3600" - x-apple-woa-inbound-url: - - /WebObjects/MZStoreServices.woa/wa/wsSearch?term=Lost&media=tvShow - content-type: - - text/javascript; charset=utf-8 - x-apple-application-instance: - - "267" - x-webobjects-loadaverage: - - "0" - x-ns-label: - - mzstoreservice-lb - expires: - - Mon, 31 Jan 2011 05:44:05 GMT - cache-control: - - max-age=0, no-cache - pragma: - - no-cache - date: - - Mon, 31 Jan 2011 05:44:05 GMT - transfer-encoding: - - chunked - connection: - - Transfer-Encoding - vary: - - X-Apple-Store-Front - x-apple-partner: - - origin.0 - body: "\n\n\n\ - {\n \"resultCount\":50,\n \"results\": [\n\ - {\"wrapperType\":\"track\", \"kind\":\"tv-episode\", \"artistId\":66012553, \"collectionId\":82050675, \"trackId\":81947350, \"artistName\":\"LOST\", \"collectionName\":\"LOST, Season 2\", \"trackName\":\"Man of Science, Man of Faith\", \"collectionCensoredName\":\"LOST, Season 2\", \"trackCensoredName\":\"Man of Science, Man of Faith\", \"artistViewUrl\":\"http://itunes.apple.com/WebObjects/MZStore.woa/wa/viewTVShow?id=66012553&uo=4\", \"collectionViewUrl\":\"http://itunes.apple.com/WebObjects/MZStore.woa/wa/viewTVSeason?i=81947350&id=82050675&s=143441&uo=4\", \"trackViewUrl\":\"http://itunes.apple.com/WebObjects/MZStore.woa/wa/viewTVSeason?i=81947350&id=82050675&s=143441&uo=4\", \"previewUrl\":\"http://a684.v.phobos.apple.com/us/r1000/018/Video/a7/db/23/mzm.iqosfrrt..640x480.h264lc.d2.p.m4v\", \"artworkUrl30\":\"http://a1.phobos.apple.com/us/r1000/059/Music/0c/1a/a2/mzi.hxpsjqiz.tif\", \"artworkUrl60\":\"http://a1.phobos.apple.com/us/r1000/059/Music/0c/1a/a2/mzi.hxpsjqiz.80x60-75.jpg\", \"artworkUrl100\":\"http://a1.phobos.apple.com/us/r1000/059/Music/0c/1a/a2/mzi.hxpsjqiz.133x100-99.jpg\", \"collectionPrice\":34.99, \"trackPrice\":1.99, \"releaseDate\":\"2005-09-21 07:00:00 Etc/GMT\", \"collectionExplicitness\":\"notExplicit\", \"trackExplicitness\":\"notExplicit\", \"discCount\":1, \"discNumber\":1, \"trackCount\":24, \"trackNumber\":1, \"trackTimeMillis\":2607750.0, \"country\":\"USA\", \"currency\":\"USD\", \"primaryGenreName\":\"Drama\", \"contentAdvisoryRating\":\"TV-14\"}, \n\ - {\"wrapperType\":\"track\", \"kind\":\"tv-episode\", \"artistId\":66012553, \"collectionId\":200507719, \"trackId\":196354978, \"artistName\":\"LOST\", \"collectionName\":\"LOST, Season 3\", \"trackName\":\"A Tale of Two Cities\", \"collectionCensoredName\":\"LOST, Season 3\", \"trackCensoredName\":\"A Tale of Two Cities\", \"artistViewUrl\":\"http://itunes.apple.com/WebObjects/MZStore.woa/wa/viewTVShow?id=66012553&uo=4\", \"collectionViewUrl\":\"http://itunes.apple.com/WebObjects/MZStore.woa/wa/viewTVSeason?i=196354978&id=200507719&s=143441&uo=4\", \"trackViewUrl\":\"http://itunes.apple.com/WebObjects/MZStore.woa/wa/viewTVSeason?i=196354978&id=200507719&s=143441&uo=4\", \"previewUrl\":\"http://a1602.v.phobos.apple.com/us/r1000/024/Video/2f/74/f6/mzm.lulvwuqk..640x480.h264lc.d2.p.m4v\", \"artworkUrl30\":\"http://a1.phobos.apple.com/us/r30/Video/e6/f5/54/mzl.xrciclpo.jpg\", \"artworkUrl60\":\"http://a1.phobos.apple.com/us/r30/Video/e6/f5/54/mzl.xrciclpo.80x60-75.jpg\", \"artworkUrl100\":\"http://a1.phobos.apple.com/us/r30/Video/e6/f5/54/mzl.xrciclpo.133x100-99.jpg\", \"collectionPrice\":34.99, \"trackPrice\":1.99, \"releaseDate\":\"2006-10-04 07:00:00 Etc/GMT\", \"collectionExplicitness\":\"notExplicit\", \"trackExplicitness\":\"notExplicit\", \"discCount\":1, \"discNumber\":1, \"trackCount\":23, \"trackNumber\":1, \"trackTimeMillis\":2606541.0, \"country\":\"USA\", \"currency\":\"USD\", \"primaryGenreName\":\"Drama\", \"contentAdvisoryRating\":\"TV-14\"}, \n\ - {\"wrapperType\":\"track\", \"kind\":\"tv-episode\", \"artistId\":66012553, \"collectionId\":200507719, \"trackId\":201576443, \"artistName\":\"LOST\", \"collectionName\":\"LOST, Season 3\", \"trackName\":\"The Glass Ballerina\", \"collectionCensoredName\":\"LOST, Season 3\", \"trackCensoredName\":\"The Glass Ballerina\", \"artistViewUrl\":\"http://itunes.apple.com/WebObjects/MZStore.woa/wa/viewTVShow?id=66012553&uo=4\", \"collectionViewUrl\":\"http://itunes.apple.com/WebObjects/MZStore.woa/wa/viewTVSeason?i=201576443&id=200507719&s=143441&uo=4\", \"trackViewUrl\":\"http://itunes.apple.com/WebObjects/MZStore.woa/wa/viewTVSeason?i=201576443&id=200507719&s=143441&uo=4\", \"previewUrl\":\"http://a794.v.phobos.apple.com/us/r1000/057/Video/cf/bc/70/mzm.busyjshz..640x480.h264lc.d2.p.m4v\", \"artworkUrl30\":\"http://a1.phobos.apple.com/us/r30/Video/e6/f5/54/mzl.xrciclpo.jpg\", \"artworkUrl60\":\"http://a1.phobos.apple.com/us/r30/Video/e6/f5/54/mzl.xrciclpo.80x60-75.jpg\", \"artworkUrl100\":\"http://a1.phobos.apple.com/us/r30/Video/e6/f5/54/mzl.xrciclpo.133x100-99.jpg\", \"collectionPrice\":34.99, \"trackPrice\":1.99, \"releaseDate\":\"2006-10-11 07:00:00 Etc/GMT\", \"collectionExplicitness\":\"notExplicit\", \"trackExplicitness\":\"notExplicit\", \"discCount\":1, \"discNumber\":1, \"trackCount\":23, \"trackNumber\":2, \"trackTimeMillis\":2607786.0, \"country\":\"USA\", \"currency\":\"USD\", \"primaryGenreName\":\"Drama\", \"contentAdvisoryRating\":\"TV-14\"}, \n\ - {\"wrapperType\":\"track\", \"kind\":\"tv-episode\", \"artistId\":66012553, \"collectionId\":82050675, \"trackId\":81947353, \"artistName\":\"LOST\", \"collectionName\":\"LOST, Season 2\", \"trackName\":\"Adrift\", \"collectionCensoredName\":\"LOST, Season 2\", \"trackCensoredName\":\"Adrift\", \"artistViewUrl\":\"http://itunes.apple.com/WebObjects/MZStore.woa/wa/viewTVShow?id=66012553&uo=4\", \"collectionViewUrl\":\"http://itunes.apple.com/WebObjects/MZStore.woa/wa/viewTVSeason?i=81947353&id=82050675&s=143441&uo=4\", \"trackViewUrl\":\"http://itunes.apple.com/WebObjects/MZStore.woa/wa/viewTVSeason?i=81947353&id=82050675&s=143441&uo=4\", \"previewUrl\":\"http://a1819.v.phobos.apple.com/us/r1000/037/Video/5a/e1/63/mzm.lmfflxkg..640x480.h264lc.d2.p.m4v\", \"artworkUrl30\":\"http://a1.phobos.apple.com/us/r1000/018/Music/0c/1a/a2/mzi.xgfstyqw.tif\", \"artworkUrl60\":\"http://a1.phobos.apple.com/us/r1000/018/Music/0c/1a/a2/mzi.xgfstyqw.80x60-75.jpg\", \"artworkUrl100\":\"http://a1.phobos.apple.com/us/r1000/018/Music/0c/1a/a2/mzi.xgfstyqw.133x100-99.jpg\", \"collectionPrice\":34.99, \"trackPrice\":1.99, \"releaseDate\":\"2005-09-28 07:00:00 Etc/GMT\", \"collectionExplicitness\":\"notExplicit\", \"trackExplicitness\":\"notExplicit\", \"discCount\":1, \"discNumber\":1, \"trackCount\":24, \"trackNumber\":2, \"trackTimeMillis\":2547600.0, \"country\":\"USA\", \"currency\":\"USD\", \"primaryGenreName\":\"Drama\", \"contentAdvisoryRating\":\"TV-14\"}, \n\ - {\"wrapperType\":\"track\", \"kind\":\"tv-episode\", \"artistId\":66012553, \"collectionId\":82050675, \"trackId\":95691988, \"artistName\":\"LOST\", \"collectionName\":\"LOST, Season 2\", \"trackName\":\"What Kate Did\", \"collectionCensoredName\":\"LOST, Season 2\", \"trackCensoredName\":\"What Kate Did\", \"artistViewUrl\":\"http://itunes.apple.com/WebObjects/MZStore.woa/wa/viewTVShow?id=66012553&uo=4\", \"collectionViewUrl\":\"http://itunes.apple.com/WebObjects/MZStore.woa/wa/viewTVSeason?i=95691988&id=82050675&s=143441&uo=4\", \"trackViewUrl\":\"http://itunes.apple.com/WebObjects/MZStore.woa/wa/viewTVSeason?i=95691988&id=82050675&s=143441&uo=4\", \"previewUrl\":\"http://a480.v.phobos.apple.com/us/r1000/004/Video/f0/bd/54/mzm.zfutadkr..640x480.h264lc.d2.p.m4v\", \"artworkUrl30\":\"http://a1.phobos.apple.com/us/r1000/043/Music/0c/1a/a2/mzi.swtkyhen.tif\", \"artworkUrl60\":\"http://a1.phobos.apple.com/us/r1000/043/Music/0c/1a/a2/mzi.swtkyhen.80x60-75.jpg\", \"artworkUrl100\":\"http://a1.phobos.apple.com/us/r1000/043/Music/0c/1a/a2/mzi.swtkyhen.133x100-99.jpg\", \"collectionPrice\":34.99, \"trackPrice\":1.99, \"releaseDate\":\"2005-11-30 08:00:00 Etc/GMT\", \"collectionExplicitness\":\"notExplicit\", \"trackExplicitness\":\"notExplicit\", \"discCount\":1, \"discNumber\":1, \"trackCount\":24, \"trackNumber\":9, \"trackTimeMillis\":2752795.0, \"country\":\"USA\", \"currency\":\"USD\", \"primaryGenreName\":\"Drama\", \"contentAdvisoryRating\":\"TV-14\"}, \n\ - {\"wrapperType\":\"track\", \"kind\":\"tv-episode\", \"artistId\":66012553, \"collectionId\":82050675, \"trackId\":118430749, \"artistName\":\"LOST\", \"collectionName\":\"LOST, Season 2\", \"trackName\":\"The Hunting Party\", \"collectionCensoredName\":\"LOST, Season 2\", \"trackCensoredName\":\"The Hunting Party\", \"artistViewUrl\":\"http://itunes.apple.com/WebObjects/MZStore.woa/wa/viewTVShow?id=66012553&uo=4\", \"collectionViewUrl\":\"http://itunes.apple.com/WebObjects/MZStore.woa/wa/viewTVSeason?i=118430749&id=82050675&s=143441&uo=4\", \"trackViewUrl\":\"http://itunes.apple.com/WebObjects/MZStore.woa/wa/viewTVSeason?i=118430749&id=82050675&s=143441&uo=4\", \"previewUrl\":\"http://a1389.v.phobos.apple.com/us/r1000/039/Video/c3/cd/9f/mzm.nqkqcdhs..640x480.h264lc.d2.p.m4v\", \"artworkUrl30\":\"http://a1.phobos.apple.com/us/r1000/023/Music/0c/1a/a2/mzi.kpcqopam.tif\", \"artworkUrl60\":\"http://a1.phobos.apple.com/us/r1000/023/Music/0c/1a/a2/mzi.kpcqopam.80x60-75.jpg\", \"artworkUrl100\":\"http://a1.phobos.apple.com/us/r1000/023/Music/0c/1a/a2/mzi.kpcqopam.133x100-99.jpg\", \"collectionPrice\":34.99, \"trackPrice\":1.99, \"releaseDate\":\"2006-01-18 08:00:00 Etc/GMT\", \"collectionExplicitness\":\"notExplicit\", \"trackExplicitness\":\"notExplicit\", \"discCount\":1, \"discNumber\":1, \"trackCount\":24, \"trackNumber\":11, \"trackTimeMillis\":2592972.0, \"country\":\"USA\", \"currency\":\"USD\", \"primaryGenreName\":\"Drama\", \"contentAdvisoryRating\":\"TV-PG\"}, \n\ - {\"wrapperType\":\"track\", \"kind\":\"tv-episode\", \"artistId\":66012553, \"collectionId\":82050675, \"trackId\":82229755, \"artistName\":\"LOST\", \"collectionName\":\"LOST, Season 2\", \"trackName\":\"Orientation\", \"collectionCensoredName\":\"LOST, Season 2\", \"trackCensoredName\":\"Orientation\", \"artistViewUrl\":\"http://itunes.apple.com/WebObjects/MZStore.woa/wa/viewTVShow?id=66012553&uo=4\", \"collectionViewUrl\":\"http://itunes.apple.com/WebObjects/MZStore.woa/wa/viewTVSeason?i=82229755&id=82050675&s=143441&uo=4\", \"trackViewUrl\":\"http://itunes.apple.com/WebObjects/MZStore.woa/wa/viewTVSeason?i=82229755&id=82050675&s=143441&uo=4\", \"previewUrl\":\"http://a1081.v.phobos.apple.com/us/r1000/000/Video/9c/df/dc/mzm.tiyjckrb..640x480.h264lc.d2.p.m4v\", \"artworkUrl30\":\"http://a1.phobos.apple.com/us/r1000/013/Music/0c/1a/a2/mzi.lzpmvtic.tif\", \"artworkUrl60\":\"http://a1.phobos.apple.com/us/r1000/013/Music/0c/1a/a2/mzi.lzpmvtic.80x60-75.jpg\", \"artworkUrl100\":\"http://a1.phobos.apple.com/us/r1000/013/Music/0c/1a/a2/mzi.lzpmvtic.133x100-99.jpg\", \"collectionPrice\":34.99, \"trackPrice\":1.99, \"releaseDate\":\"2005-10-05 07:00:00 Etc/GMT\", \"collectionExplicitness\":\"notExplicit\", \"trackExplicitness\":\"notExplicit\", \"discCount\":1, \"discNumber\":1, \"trackCount\":24, \"trackNumber\":3, \"trackTimeMillis\":2592647.0, \"country\":\"USA\", \"currency\":\"USD\", \"primaryGenreName\":\"Drama\", \"contentAdvisoryRating\":\"TV-14\"}, \n\ - {\"wrapperType\":\"track\", \"kind\":\"tv-episode\", \"artistId\":66012553, \"collectionId\":82050675, \"trackId\":129240376, \"artistName\":\"LOST\", \"collectionName\":\"LOST, Season 2\", \"trackName\":\"Maternity Leave\", \"collectionCensoredName\":\"LOST, Season 2\", \"trackCensoredName\":\"Maternity Leave\", \"artistViewUrl\":\"http://itunes.apple.com/WebObjects/MZStore.woa/wa/viewTVShow?id=66012553&uo=4\", \"collectionViewUrl\":\"http://itunes.apple.com/WebObjects/MZStore.woa/wa/viewTVSeason?i=129240376&id=82050675&s=143441&uo=4\", \"trackViewUrl\":\"http://itunes.apple.com/WebObjects/MZStore.woa/wa/viewTVSeason?i=129240376&id=82050675&s=143441&uo=4\", \"previewUrl\":\"http://a69.v.phobos.apple.com/us/r1000/053/Video/1a/73/3b/mzm.daetwrdv..640x480.h264lc.d2.p.m4v\", \"artworkUrl30\":\"http://a1.phobos.apple.com/us/r1000/028/Music/0c/1a/a2/mzi.nthjgcdl.jpg\", \"artworkUrl60\":\"http://a1.phobos.apple.com/us/r1000/028/Music/0c/1a/a2/mzi.nthjgcdl.80x60-75.jpg\", \"artworkUrl100\":\"http://a1.phobos.apple.com/us/r1000/028/Music/0c/1a/a2/mzi.nthjgcdl.133x100-99.jpg\", \"collectionPrice\":34.99, \"trackPrice\":1.99, \"releaseDate\":\"2006-03-01 08:00:00 Etc/GMT\", \"collectionExplicitness\":\"notExplicit\", \"trackExplicitness\":\"notExplicit\", \"discCount\":1, \"discNumber\":1, \"trackCount\":24, \"trackNumber\":15, \"trackTimeMillis\":2766820.0, \"country\":\"USA\", \"currency\":\"USD\", \"primaryGenreName\":\"Drama\", \"contentAdvisoryRating\":\"TV-14\"}, \n\ - {\"wrapperType\":\"track\", \"kind\":\"tv-episode\", \"artistId\":66012553, \"collectionId\":82050675, \"trackId\":125648552, \"artistName\":\"LOST\", \"collectionName\":\"LOST, Season 2\", \"trackName\":\"One of Them\", \"collectionCensoredName\":\"LOST, Season 2\", \"trackCensoredName\":\"One of Them\", \"artistViewUrl\":\"http://itunes.apple.com/WebObjects/MZStore.woa/wa/viewTVShow?id=66012553&uo=4\", \"collectionViewUrl\":\"http://itunes.apple.com/WebObjects/MZStore.woa/wa/viewTVSeason?i=125648552&id=82050675&s=143441&uo=4\", \"trackViewUrl\":\"http://itunes.apple.com/WebObjects/MZStore.woa/wa/viewTVSeason?i=125648552&id=82050675&s=143441&uo=4\", \"previewUrl\":\"http://a1074.v.phobos.apple.com/us/r1000/051/Video/8a/14/31/mzm.cumfpsqd..640x480.h264lc.d2.p.m4v\", \"artworkUrl30\":\"http://a1.phobos.apple.com/us/r1000/025/Features/a2/78/bf/dj.vkvpvhkw.jpg\", \"artworkUrl60\":\"http://a1.phobos.apple.com/us/r1000/025/Features/a2/78/bf/dj.vkvpvhkw.80x60-75.jpg\", \"artworkUrl100\":\"http://a1.phobos.apple.com/us/r1000/025/Features/a2/78/bf/dj.vkvpvhkw.133x100-99.jpg\", \"collectionPrice\":34.99, \"trackPrice\":1.99, \"releaseDate\":\"2006-02-15 08:00:00 Etc/GMT\", \"collectionExplicitness\":\"notExplicit\", \"trackExplicitness\":\"notExplicit\", \"discCount\":1, \"discNumber\":1, \"trackCount\":24, \"trackNumber\":14, \"trackTimeMillis\":2683808.0, \"country\":\"USA\", \"currency\":\"USD\", \"primaryGenreName\":\"Drama\", \"contentAdvisoryRating\":\"TV-14\"}, \n\ - {\"wrapperType\":\"track\", \"kind\":\"tv-episode\", \"artistId\":66012553, \"collectionId\":82050675, \"trackId\":152461938, \"artistName\":\"LOST\", \"collectionName\":\"LOST, Season 2\", \"trackName\":\"Live Together, Die Alone, Pt. 2\", \"collectionCensoredName\":\"LOST, Season 2\", \"trackCensoredName\":\"Live Together, Die Alone, Pt. 2\", \"artistViewUrl\":\"http://itunes.apple.com/WebObjects/MZStore.woa/wa/viewTVShow?id=66012553&uo=4\", \"collectionViewUrl\":\"http://itunes.apple.com/WebObjects/MZStore.woa/wa/viewTVSeason?i=152461938&id=82050675&s=143441&uo=4\", \"trackViewUrl\":\"http://itunes.apple.com/WebObjects/MZStore.woa/wa/viewTVSeason?i=152461938&id=82050675&s=143441&uo=4\", \"previewUrl\":\"http://a951.v.phobos.apple.com/us/r1000/028/Video/42/46/48/mzm.nxqxmnna..640x480.h264lc.d2.p.m4v\", \"artworkUrl30\":\"http://a1.phobos.apple.com/us/r1000/015/Features/0c/1a/a2/dj.shywrpgj.jpg\", \"artworkUrl60\":\"http://a1.phobos.apple.com/us/r1000/015/Features/0c/1a/a2/dj.shywrpgj.80x60-75.jpg\", \"artworkUrl100\":\"http://a1.phobos.apple.com/us/r1000/015/Features/0c/1a/a2/dj.shywrpgj.133x100-99.jpg\", \"collectionPrice\":34.99, \"trackPrice\":1.99, \"releaseDate\":\"2006-05-24 07:00:00 Etc/GMT\", \"collectionExplicitness\":\"notExplicit\", \"trackExplicitness\":\"notExplicit\", \"discCount\":1, \"discNumber\":1, \"trackCount\":24, \"trackNumber\":24, \"trackTimeMillis\":2598661.0, \"country\":\"USA\", \"currency\":\"USD\", \"primaryGenreName\":\"Drama\", \"contentAdvisoryRating\":\"TV-14\"}, \n\ - {\"wrapperType\":\"track\", \"kind\":\"tv-episode\", \"artistId\":66012553, \"collectionId\":200507719, \"trackId\":200749249, \"artistName\":\"LOST\", \"collectionName\":\"LOST, Season 3\", \"trackName\":\"Further Instructions\", \"collectionCensoredName\":\"LOST, Season 3\", \"trackCensoredName\":\"Further Instructions\", \"artistViewUrl\":\"http://itunes.apple.com/WebObjects/MZStore.woa/wa/viewTVShow?id=66012553&uo=4\", \"collectionViewUrl\":\"http://itunes.apple.com/WebObjects/MZStore.woa/wa/viewTVSeason?i=200749249&id=200507719&s=143441&uo=4\", \"trackViewUrl\":\"http://itunes.apple.com/WebObjects/MZStore.woa/wa/viewTVSeason?i=200749249&id=200507719&s=143441&uo=4\", \"previewUrl\":\"http://a827.v.phobos.apple.com/us/r1000/028/Video/4c/9b/2b/mzm.vyjuvlpq..640x480.h264lc.d2.p.m4v\", \"artworkUrl30\":\"http://a1.phobos.apple.com/us/r30/Video/e6/f5/54/mzl.xrciclpo.jpg\", \"artworkUrl60\":\"http://a1.phobos.apple.com/us/r30/Video/e6/f5/54/mzl.xrciclpo.80x60-75.jpg\", \"artworkUrl100\":\"http://a1.phobos.apple.com/us/r30/Video/e6/f5/54/mzl.xrciclpo.133x100-99.jpg\", \"collectionPrice\":34.99, \"trackPrice\":1.99, \"releaseDate\":\"2006-10-18 07:00:00 Etc/GMT\", \"collectionExplicitness\":\"notExplicit\", \"trackExplicitness\":\"notExplicit\", \"discCount\":1, \"discNumber\":1, \"trackCount\":23, \"trackNumber\":3, \"trackTimeMillis\":2534048.0, \"country\":\"USA\", \"currency\":\"USD\", \"primaryGenreName\":\"Drama\", \"contentAdvisoryRating\":\"TV-14\"}, \n\ - {\"wrapperType\":\"track\", \"kind\":\"tv-episode\", \"artistId\":66012553, \"collectionId\":82050675, \"trackId\":83324782, \"artistName\":\"LOST\", \"collectionName\":\"LOST, Season 2\", \"trackName\":\"The Other 48 Days\", \"collectionCensoredName\":\"LOST, Season 2\", \"trackCensoredName\":\"The Other 48 Days\", \"artistViewUrl\":\"http://itunes.apple.com/WebObjects/MZStore.woa/wa/viewTVShow?id=66012553&uo=4\", \"collectionViewUrl\":\"http://itunes.apple.com/WebObjects/MZStore.woa/wa/viewTVSeason?i=83324782&id=82050675&s=143441&uo=4\", \"trackViewUrl\":\"http://itunes.apple.com/WebObjects/MZStore.woa/wa/viewTVSeason?i=83324782&id=82050675&s=143441&uo=4\", \"previewUrl\":\"http://a453.v.phobos.apple.com/us/r1000/045/Video/6c/73/2c/mzm.pvgkrtwn..640x480.h264lc.d2.p.m4v\", \"artworkUrl30\":\"http://a1.phobos.apple.com/us/r1000/036/Music/0c/1a/a2/mzi.uxvkgytj.tif\", \"artworkUrl60\":\"http://a1.phobos.apple.com/us/r1000/036/Music/0c/1a/a2/mzi.uxvkgytj.80x60-75.jpg\", \"artworkUrl100\":\"http://a1.phobos.apple.com/us/r1000/036/Music/0c/1a/a2/mzi.uxvkgytj.133x100-99.jpg\", \"collectionPrice\":34.99, \"trackPrice\":1.99, \"releaseDate\":\"2005-11-16 08:00:00 Etc/GMT\", \"collectionExplicitness\":\"notExplicit\", \"trackExplicitness\":\"notExplicit\", \"discCount\":1, \"discNumber\":1, \"trackCount\":24, \"trackNumber\":7, \"trackTimeMillis\":2777246.0, \"country\":\"USA\", \"currency\":\"USD\", \"primaryGenreName\":\"Drama\", \"contentAdvisoryRating\":\"TV-14\"}, \n\ - {\"wrapperType\":\"track\", \"kind\":\"tv-episode\", \"artistId\":66012553, \"collectionId\":82050675, \"trackId\":95691986, \"artistName\":\"LOST\", \"collectionName\":\"LOST, Season 2\", \"trackName\":\"Collision\", \"collectionCensoredName\":\"LOST, Season 2\", \"trackCensoredName\":\"Collision\", \"artistViewUrl\":\"http://itunes.apple.com/WebObjects/MZStore.woa/wa/viewTVShow?id=66012553&uo=4\", \"collectionViewUrl\":\"http://itunes.apple.com/WebObjects/MZStore.woa/wa/viewTVSeason?i=95691986&id=82050675&s=143441&uo=4\", \"trackViewUrl\":\"http://itunes.apple.com/WebObjects/MZStore.woa/wa/viewTVSeason?i=95691986&id=82050675&s=143441&uo=4\", \"previewUrl\":\"http://a522.v.phobos.apple.com/us/r1000/018/Video/e1/70/cf/mzm.iwshpcce..640x480.h264lc.d2.p.m4v\", \"artworkUrl30\":\"http://a1.phobos.apple.com/us/r1000/024/Music/0c/1a/a2/mzi.rluuquqr.tif\", \"artworkUrl60\":\"http://a1.phobos.apple.com/us/r1000/024/Music/0c/1a/a2/mzi.rluuquqr.80x60-75.jpg\", \"artworkUrl100\":\"http://a1.phobos.apple.com/us/r1000/024/Music/0c/1a/a2/mzi.rluuquqr.133x100-99.jpg\", \"collectionPrice\":34.99, \"trackPrice\":1.99, \"releaseDate\":\"2005-11-23 08:00:00 Etc/GMT\", \"collectionExplicitness\":\"notExplicit\", \"trackExplicitness\":\"notExplicit\", \"discCount\":1, \"discNumber\":1, \"trackCount\":24, \"trackNumber\":8, \"trackTimeMillis\":2548343.0, \"country\":\"USA\", \"currency\":\"USD\", \"primaryGenreName\":\"Drama\", \"contentAdvisoryRating\":\"TV-14\"}, \n\ - {\"wrapperType\":\"track\", \"kind\":\"tv-episode\", \"artistId\":66012553, \"collectionId\":82050675, \"trackId\":122580239, \"artistName\":\"LOST\", \"collectionName\":\"LOST, Season 2\", \"trackName\":\"The Long Con\", \"collectionCensoredName\":\"LOST, Season 2\", \"trackCensoredName\":\"The Long Con\", \"artistViewUrl\":\"http://itunes.apple.com/WebObjects/MZStore.woa/wa/viewTVShow?id=66012553&uo=4\", \"collectionViewUrl\":\"http://itunes.apple.com/WebObjects/MZStore.woa/wa/viewTVSeason?i=122580239&id=82050675&s=143441&uo=4\", \"trackViewUrl\":\"http://itunes.apple.com/WebObjects/MZStore.woa/wa/viewTVSeason?i=122580239&id=82050675&s=143441&uo=4\", \"previewUrl\":\"http://a154.v.phobos.apple.com/us/r1000/058/Video/8b/69/ba/mzm.bruiikxv..640x480.h264lc.d2.p.m4v\", \"artworkUrl30\":\"http://a1.phobos.apple.com/us/r1000/007/Music/0c/1a/a2/mzi.sparrfol.jpg\", \"artworkUrl60\":\"http://a1.phobos.apple.com/us/r1000/007/Music/0c/1a/a2/mzi.sparrfol.80x60-75.jpg\", \"artworkUrl100\":\"http://a1.phobos.apple.com/us/r1000/007/Music/0c/1a/a2/mzi.sparrfol.133x100-99.jpg\", \"collectionPrice\":34.99, \"trackPrice\":1.99, \"releaseDate\":\"2006-02-08 08:00:00 Etc/GMT\", \"collectionExplicitness\":\"notExplicit\", \"trackExplicitness\":\"notExplicit\", \"discCount\":1, \"discNumber\":1, \"trackCount\":24, \"trackNumber\":13, \"trackTimeMillis\":2663839.0, \"country\":\"USA\", \"currency\":\"USD\", \"primaryGenreName\":\"Drama\", \"contentAdvisoryRating\":\"TV-14\"}, \n\ - {\"wrapperType\":\"track\", \"kind\":\"tv-episode\", \"artistId\":66012553, \"collectionId\":82050675, \"trackId\":135645891, \"artistName\":\"LOST\", \"collectionName\":\"LOST, Season 2\", \"trackName\":\"Dave\", \"collectionCensoredName\":\"LOST, Season 2\", \"trackCensoredName\":\"Dave\", \"artistViewUrl\":\"http://itunes.apple.com/WebObjects/MZStore.woa/wa/viewTVShow?id=66012553&uo=4\", \"collectionViewUrl\":\"http://itunes.apple.com/WebObjects/MZStore.woa/wa/viewTVSeason?i=135645891&id=82050675&s=143441&uo=4\", \"trackViewUrl\":\"http://itunes.apple.com/WebObjects/MZStore.woa/wa/viewTVSeason?i=135645891&id=82050675&s=143441&uo=4\", \"previewUrl\":\"http://a1235.v.phobos.apple.com/us/r1000/037/Video/0d/1b/e9/mzm.uwxztqgp..640x480.h264lc.d2.p.m4v\", \"artworkUrl30\":\"http://a1.phobos.apple.com/us/r1000/015/Features/0c/1a/a2/dj.shywrpgj.jpg\", \"artworkUrl60\":\"http://a1.phobos.apple.com/us/r1000/015/Features/0c/1a/a2/dj.shywrpgj.80x60-75.jpg\", \"artworkUrl100\":\"http://a1.phobos.apple.com/us/r1000/015/Features/0c/1a/a2/dj.shywrpgj.133x100-99.jpg\", \"collectionPrice\":34.99, \"trackPrice\":1.99, \"releaseDate\":\"2006-04-05 07:00:00 Etc/GMT\", \"collectionExplicitness\":\"notExplicit\", \"trackExplicitness\":\"notExplicit\", \"discCount\":1, \"discNumber\":1, \"trackCount\":24, \"trackNumber\":18, \"trackTimeMillis\":2779823.0, \"country\":\"USA\", \"currency\":\"USD\", \"primaryGenreName\":\"Drama\", \"contentAdvisoryRating\":\"TV-14\"}, \n\ - {\"wrapperType\":\"track\", \"kind\":\"tv-episode\", \"artistId\":66012553, \"collectionId\":82050675, \"trackId\":146691552, \"artistName\":\"LOST\", \"collectionName\":\"LOST, Season 2\", \"trackName\":\"S.O.S.\", \"collectionCensoredName\":\"LOST, Season 2\", \"trackCensoredName\":\"S.O.S.\", \"artistViewUrl\":\"http://itunes.apple.com/WebObjects/MZStore.woa/wa/viewTVShow?id=66012553&uo=4\", \"collectionViewUrl\":\"http://itunes.apple.com/WebObjects/MZStore.woa/wa/viewTVSeason?i=146691552&id=82050675&s=143441&uo=4\", \"trackViewUrl\":\"http://itunes.apple.com/WebObjects/MZStore.woa/wa/viewTVSeason?i=146691552&id=82050675&s=143441&uo=4\", \"previewUrl\":\"http://a1582.v.phobos.apple.com/us/r1000/057/Video/95/b2/8a/mzm.kspaixtn..640x480.h264lc.d2.p.m4v\", \"artworkUrl30\":\"http://a1.phobos.apple.com/us/r1000/015/Features/0c/1a/a2/dj.shywrpgj.jpg\", \"artworkUrl60\":\"http://a1.phobos.apple.com/us/r1000/015/Features/0c/1a/a2/dj.shywrpgj.80x60-75.jpg\", \"artworkUrl100\":\"http://a1.phobos.apple.com/us/r1000/015/Features/0c/1a/a2/dj.shywrpgj.133x100-99.jpg\", \"collectionPrice\":34.99, \"trackPrice\":1.99, \"releaseDate\":\"2006-04-12 07:00:00 Etc/GMT\", \"collectionExplicitness\":\"notExplicit\", \"trackExplicitness\":\"notExplicit\", \"discCount\":1, \"discNumber\":1, \"trackCount\":24, \"trackNumber\":19, \"trackTimeMillis\":2595642.0, \"country\":\"USA\", \"currency\":\"USD\", \"primaryGenreName\":\"Drama\", \"contentAdvisoryRating\":\"TV-PG\"}, \n\ - {\"wrapperType\":\"track\", \"kind\":\"tv-episode\", \"artistId\":66012553, \"collectionId\":82050675, \"trackId\":82680684, \"artistName\":\"LOST\", \"collectionName\":\"LOST, Season 2\", \"trackName\":\"Everybody Hates Hugo\", \"collectionCensoredName\":\"LOST, Season 2\", \"trackCensoredName\":\"Everybody Hates Hugo\", \"artistViewUrl\":\"http://itunes.apple.com/WebObjects/MZStore.woa/wa/viewTVShow?id=66012553&uo=4\", \"collectionViewUrl\":\"http://itunes.apple.com/WebObjects/MZStore.woa/wa/viewTVSeason?i=82680684&id=82050675&s=143441&uo=4\", \"trackViewUrl\":\"http://itunes.apple.com/WebObjects/MZStore.woa/wa/viewTVSeason?i=82680684&id=82050675&s=143441&uo=4\", \"previewUrl\":\"http://a1487.v.phobos.apple.com/us/r1000/023/Video/0a/26/80/mzm.uokedxgf..640x480.h264lc.d2.p.m4v\", \"artworkUrl30\":\"http://a1.phobos.apple.com/us/r1000/015/Features/0c/1a/a2/dj.shywrpgj.jpg\", \"artworkUrl60\":\"http://a1.phobos.apple.com/us/r1000/015/Features/0c/1a/a2/dj.shywrpgj.80x60-75.jpg\", \"artworkUrl100\":\"http://a1.phobos.apple.com/us/r1000/015/Features/0c/1a/a2/dj.shywrpgj.133x100-99.jpg\", \"collectionPrice\":34.99, \"trackPrice\":1.99, \"releaseDate\":\"2005-10-12 07:00:00 Etc/GMT\", \"collectionExplicitness\":\"notExplicit\", \"trackExplicitness\":\"notExplicit\", \"discCount\":1, \"discNumber\":1, \"trackCount\":24, \"trackNumber\":4, \"trackTimeMillis\":2605824.0, \"country\":\"USA\", \"currency\":\"USD\", \"primaryGenreName\":\"Drama\", \"contentAdvisoryRating\":\"TV-14\"}, \n\ - {\"wrapperType\":\"track\", \"kind\":\"tv-episode\", \"artistId\":66012553, \"collectionId\":82050675, \"trackId\":135645889, \"artistName\":\"LOST\", \"collectionName\":\"LOST, Season 2\", \"trackName\":\"Lockdown\", \"collectionCensoredName\":\"LOST, Season 2\", \"trackCensoredName\":\"Lockdown\", \"artistViewUrl\":\"http://itunes.apple.com/WebObjects/MZStore.woa/wa/viewTVShow?id=66012553&uo=4\", \"collectionViewUrl\":\"http://itunes.apple.com/WebObjects/MZStore.woa/wa/viewTVSeason?i=135645889&id=82050675&s=143441&uo=4\", \"trackViewUrl\":\"http://itunes.apple.com/WebObjects/MZStore.woa/wa/viewTVSeason?i=135645889&id=82050675&s=143441&uo=4\", \"previewUrl\":\"http://a536.v.phobos.apple.com/us/r1000/017/Video/41/24/52/mzm.hcsojnmk..640x480.h264lc.d2.p.m4v\", \"artworkUrl30\":\"http://a1.phobos.apple.com/us/r1000/015/Features/0c/1a/a2/dj.shywrpgj.jpg\", \"artworkUrl60\":\"http://a1.phobos.apple.com/us/r1000/015/Features/0c/1a/a2/dj.shywrpgj.80x60-75.jpg\", \"artworkUrl100\":\"http://a1.phobos.apple.com/us/r1000/015/Features/0c/1a/a2/dj.shywrpgj.133x100-99.jpg\", \"collectionPrice\":34.99, \"trackPrice\":1.99, \"releaseDate\":\"2006-03-29 08:00:00 Etc/GMT\", \"collectionExplicitness\":\"notExplicit\", \"trackExplicitness\":\"notExplicit\", \"discCount\":1, \"discNumber\":1, \"trackCount\":24, \"trackNumber\":17, \"trackTimeMillis\":2595642.0, \"country\":\"USA\", \"currency\":\"USD\", \"primaryGenreName\":\"Drama\", \"contentAdvisoryRating\":\"TV-PG\"}, \n\ - {\"wrapperType\":\"track\", \"kind\":\"tv-episode\", \"artistId\":66012553, \"collectionId\":82050675, \"trackId\":83325441, \"artistName\":\"LOST\", \"collectionName\":\"LOST, Season 2\", \"trackName\":\"...And Found\", \"collectionCensoredName\":\"LOST, Season 2\", \"trackCensoredName\":\"...And Found\", \"artistViewUrl\":\"http://itunes.apple.com/WebObjects/MZStore.woa/wa/viewTVShow?id=66012553&uo=4\", \"collectionViewUrl\":\"http://itunes.apple.com/WebObjects/MZStore.woa/wa/viewTVSeason?i=83325441&id=82050675&s=143441&uo=4\", \"trackViewUrl\":\"http://itunes.apple.com/WebObjects/MZStore.woa/wa/viewTVSeason?i=83325441&id=82050675&s=143441&uo=4\", \"previewUrl\":\"http://a1686.v.phobos.apple.com/us/r1000/019/Video/ac/d5/63/mzm.okeqnuso..640x480.h264lc.d2.p.m4v\", \"artworkUrl30\":\"http://a1.phobos.apple.com/us/r1000/024/Music/0c/1a/a2/mzi.ncjjtqif.tif\", \"artworkUrl60\":\"http://a1.phobos.apple.com/us/r1000/024/Music/0c/1a/a2/mzi.ncjjtqif.80x60-75.jpg\", \"artworkUrl100\":\"http://a1.phobos.apple.com/us/r1000/024/Music/0c/1a/a2/mzi.ncjjtqif.133x100-99.jpg\", \"collectionPrice\":34.99, \"trackPrice\":1.99, \"releaseDate\":\"2005-10-19 07:00:00 Etc/GMT\", \"collectionExplicitness\":\"notExplicit\", \"trackExplicitness\":\"notExplicit\", \"discCount\":1, \"discNumber\":1, \"trackCount\":24, \"trackNumber\":5, \"trackTimeMillis\":2545603.0, \"country\":\"USA\", \"currency\":\"USD\", \"primaryGenreName\":\"Drama\", \"contentAdvisoryRating\":\"TV-PG\"}, \n\ - {\"wrapperType\":\"track\", \"kind\":\"tv-episode\", \"artistId\":66012553, \"collectionId\":82050675, \"trackId\":115069169, \"artistName\":\"LOST\", \"collectionName\":\"LOST, Season 2\", \"trackName\":\"The 23rd Psalm\", \"collectionCensoredName\":\"LOST, Season 2\", \"trackCensoredName\":\"The 23rd Psalm\", \"artistViewUrl\":\"http://itunes.apple.com/WebObjects/MZStore.woa/wa/viewTVShow?id=66012553&uo=4\", \"collectionViewUrl\":\"http://itunes.apple.com/WebObjects/MZStore.woa/wa/viewTVSeason?i=115069169&id=82050675&s=143441&uo=4\", \"trackViewUrl\":\"http://itunes.apple.com/WebObjects/MZStore.woa/wa/viewTVSeason?i=115069169&id=82050675&s=143441&uo=4\", \"previewUrl\":\"http://a1230.v.phobos.apple.com/us/r1000/023/Video/08/21/f3/mzm.octunhmx..640x480.h264lc.d2.p.m4v\", \"artworkUrl30\":\"http://a1.phobos.apple.com/us/r1000/025/Music/0c/1a/a2/mzi.vxmnvjnt.tif\", \"artworkUrl60\":\"http://a1.phobos.apple.com/us/r1000/025/Music/0c/1a/a2/mzi.vxmnvjnt.80x60-75.jpg\", \"artworkUrl100\":\"http://a1.phobos.apple.com/us/r1000/025/Music/0c/1a/a2/mzi.vxmnvjnt.133x100-99.jpg\", \"collectionPrice\":34.99, \"trackPrice\":1.99, \"releaseDate\":\"2006-01-11 08:00:00 Etc/GMT\", \"collectionExplicitness\":\"notExplicit\", \"trackExplicitness\":\"notExplicit\", \"discCount\":1, \"discNumber\":1, \"trackCount\":24, \"trackNumber\":10, \"trackTimeMillis\":2595735.0, \"country\":\"USA\", \"currency\":\"USD\", \"primaryGenreName\":\"Drama\", \"contentAdvisoryRating\":\"TV-14\"}, \n\ - {\"wrapperType\":\"track\", \"kind\":\"tv-episode\", \"artistId\":66012553, \"collectionId\":82050675, \"trackId\":156764015, \"artistName\":\"LOST\", \"collectionName\":\"LOST, Season 2\", \"trackName\":\"Live Together, Die Alone, Pt. 1\", \"collectionCensoredName\":\"LOST, Season 2\", \"trackCensoredName\":\"Live Together, Die Alone, Pt. 1\", \"artistViewUrl\":\"http://itunes.apple.com/WebObjects/MZStore.woa/wa/viewTVShow?id=66012553&uo=4\", \"collectionViewUrl\":\"http://itunes.apple.com/WebObjects/MZStore.woa/wa/viewTVSeason?i=156764015&id=82050675&s=143441&uo=4\", \"trackViewUrl\":\"http://itunes.apple.com/WebObjects/MZStore.woa/wa/viewTVSeason?i=156764015&id=82050675&s=143441&uo=4\", \"previewUrl\":\"http://a1619.v.phobos.apple.com/us/r1000/002/Video/4c/9d/66/mzm.epqqcdur..640x480.h264lc.d2.p.m4v\", \"artworkUrl30\":\"http://a1.phobos.apple.com/us/r1000/015/Features/0c/1a/a2/dj.shywrpgj.jpg\", \"artworkUrl60\":\"http://a1.phobos.apple.com/us/r1000/015/Features/0c/1a/a2/dj.shywrpgj.80x60-75.jpg\", \"artworkUrl100\":\"http://a1.phobos.apple.com/us/r1000/015/Features/0c/1a/a2/dj.shywrpgj.133x100-99.jpg\", \"collectionPrice\":34.99, \"trackPrice\":1.99, \"releaseDate\":\"2006-05-24 07:00:00 Etc/GMT\", \"collectionExplicitness\":\"notExplicit\", \"trackExplicitness\":\"notExplicit\", \"discCount\":1, \"discNumber\":1, \"trackCount\":24, \"trackNumber\":23, \"trackTimeMillis\":2596641.0, \"country\":\"USA\", \"currency\":\"USD\", \"primaryGenreName\":\"Drama\", \"contentAdvisoryRating\":\"TV-14\"}, \n\ - {\"wrapperType\":\"track\", \"kind\":\"tv-episode\", \"artistId\":66012553, \"collectionId\":82050675, \"trackId\":118430756, \"artistName\":\"LOST\", \"collectionName\":\"LOST, Season 2\", \"trackName\":\"Fire + Water\", \"collectionCensoredName\":\"LOST, Season 2\", \"trackCensoredName\":\"Fire + Water\", \"artistViewUrl\":\"http://itunes.apple.com/WebObjects/MZStore.woa/wa/viewTVShow?id=66012553&uo=4\", \"collectionViewUrl\":\"http://itunes.apple.com/WebObjects/MZStore.woa/wa/viewTVSeason?i=118430756&id=82050675&s=143441&uo=4\", \"trackViewUrl\":\"http://itunes.apple.com/WebObjects/MZStore.woa/wa/viewTVSeason?i=118430756&id=82050675&s=143441&uo=4\", \"previewUrl\":\"http://a580.v.phobos.apple.com/us/r1000/056/Video/6d/cb/a5/mzm.edcwpewn..640x480.h264lc.d2.p.m4v\", \"artworkUrl30\":\"http://a1.phobos.apple.com/us/r1000/034/Music/0c/1a/a2/mzi.zigrzjga.tif\", \"artworkUrl60\":\"http://a1.phobos.apple.com/us/r1000/034/Music/0c/1a/a2/mzi.zigrzjga.80x60-75.jpg\", \"artworkUrl100\":\"http://a1.phobos.apple.com/us/r1000/034/Music/0c/1a/a2/mzi.zigrzjga.133x100-99.jpg\", \"collectionPrice\":34.99, \"trackPrice\":1.99, \"releaseDate\":\"2006-01-25 08:00:00 Etc/GMT\", \"collectionExplicitness\":\"notExplicit\", \"trackExplicitness\":\"notExplicit\", \"discCount\":1, \"discNumber\":1, \"trackCount\":24, \"trackNumber\":12, \"trackTimeMillis\":2599903.0, \"country\":\"USA\", \"currency\":\"USD\", \"primaryGenreName\":\"Drama\", \"contentAdvisoryRating\":\"TV-PG\"}, \n\ - {\"wrapperType\":\"track\", \"kind\":\"tv-episode\", \"artistId\":66012553, \"collectionId\":82050675, \"trackId\":129860775, \"artistName\":\"LOST\", \"collectionName\":\"LOST, Season 2\", \"trackName\":\"The Whole Truth\", \"collectionCensoredName\":\"LOST, Season 2\", \"trackCensoredName\":\"The Whole Truth\", \"artistViewUrl\":\"http://itunes.apple.com/WebObjects/MZStore.woa/wa/viewTVShow?id=66012553&uo=4\", \"collectionViewUrl\":\"http://itunes.apple.com/WebObjects/MZStore.woa/wa/viewTVSeason?i=129860775&id=82050675&s=143441&uo=4\", \"trackViewUrl\":\"http://itunes.apple.com/WebObjects/MZStore.woa/wa/viewTVSeason?i=129860775&id=82050675&s=143441&uo=4\", \"previewUrl\":\"http://a1946.v.phobos.apple.com/us/r1000/050/Video/c6/1d/bd/mzm.bdkcdzqz..640x480.h264lc.d2.p.m4v\", \"artworkUrl30\":\"http://a1.phobos.apple.com/us/r1000/015/Features/0c/1a/a2/dj.shywrpgj.jpg\", \"artworkUrl60\":\"http://a1.phobos.apple.com/us/r1000/015/Features/0c/1a/a2/dj.shywrpgj.80x60-75.jpg\", \"artworkUrl100\":\"http://a1.phobos.apple.com/us/r1000/015/Features/0c/1a/a2/dj.shywrpgj.133x100-99.jpg\", \"collectionPrice\":34.99, \"trackPrice\":1.99, \"releaseDate\":\"2006-03-22 08:00:00 Etc/GMT\", \"collectionExplicitness\":\"notExplicit\", \"trackExplicitness\":\"notExplicit\", \"discCount\":1, \"discNumber\":1, \"trackCount\":24, \"trackNumber\":16, \"trackTimeMillis\":2610400.0, \"country\":\"USA\", \"currency\":\"USD\", \"primaryGenreName\":\"Drama\", \"contentAdvisoryRating\":\"TV-PG\"}, \n\ - {\"wrapperType\":\"track\", \"kind\":\"tv-episode\", \"artistId\":66012553, \"collectionId\":82050675, \"trackId\":150194795, \"artistName\":\"LOST\", \"collectionName\":\"LOST, Season 2\", \"trackName\":\"Two for the Road\", \"collectionCensoredName\":\"LOST, Season 2\", \"trackCensoredName\":\"Two for the Road\", \"artistViewUrl\":\"http://itunes.apple.com/WebObjects/MZStore.woa/wa/viewTVShow?id=66012553&uo=4\", \"collectionViewUrl\":\"http://itunes.apple.com/WebObjects/MZStore.woa/wa/viewTVSeason?i=150194795&id=82050675&s=143441&uo=4\", \"trackViewUrl\":\"http://itunes.apple.com/WebObjects/MZStore.woa/wa/viewTVSeason?i=150194795&id=82050675&s=143441&uo=4\", \"previewUrl\":\"http://a1394.v.phobos.apple.com/us/r1000/035/Video/40/5d/24/mzm.xldokyrr..640x480.h264lc.d2.p.m4v\", \"artworkUrl30\":\"http://a1.phobos.apple.com/us/r1000/015/Features/0c/1a/a2/dj.shywrpgj.jpg\", \"artworkUrl60\":\"http://a1.phobos.apple.com/us/r1000/015/Features/0c/1a/a2/dj.shywrpgj.80x60-75.jpg\", \"artworkUrl100\":\"http://a1.phobos.apple.com/us/r1000/015/Features/0c/1a/a2/dj.shywrpgj.133x100-99.jpg\", \"collectionPrice\":34.99, \"trackPrice\":1.99, \"releaseDate\":\"2006-05-03 07:00:00 Etc/GMT\", \"collectionExplicitness\":\"notExplicit\", \"trackExplicitness\":\"notExplicit\", \"discCount\":1, \"discNumber\":1, \"trackCount\":24, \"trackNumber\":20, \"trackTimeMillis\":2596641.0, \"country\":\"USA\", \"currency\":\"USD\", \"primaryGenreName\":\"Drama\", \"contentAdvisoryRating\":\"TV-14\"}, \n\ - {\"wrapperType\":\"track\", \"kind\":\"tv-episode\", \"artistId\":66012553, \"collectionId\":82050675, \"trackId\":83324779, \"artistName\":\"LOST\", \"collectionName\":\"LOST, Season 2\", \"trackName\":\"Abandoned\", \"collectionCensoredName\":\"LOST, Season 2\", \"trackCensoredName\":\"Abandoned\", \"artistViewUrl\":\"http://itunes.apple.com/WebObjects/MZStore.woa/wa/viewTVShow?id=66012553&uo=4\", \"collectionViewUrl\":\"http://itunes.apple.com/WebObjects/MZStore.woa/wa/viewTVSeason?i=83324779&id=82050675&s=143441&uo=4\", \"trackViewUrl\":\"http://itunes.apple.com/WebObjects/MZStore.woa/wa/viewTVSeason?i=83324779&id=82050675&s=143441&uo=4\", \"previewUrl\":\"http://a655.v.phobos.apple.com/us/r1000/042/Video/a6/56/d1/mzm.bnejluxj..640x480.h264lc.d2.p.m4v\", \"artworkUrl30\":\"http://a1.phobos.apple.com/us/r1000/058/Music/0c/1a/a2/mzi.rainnewf.tif\", \"artworkUrl60\":\"http://a1.phobos.apple.com/us/r1000/058/Music/0c/1a/a2/mzi.rainnewf.80x60-75.jpg\", \"artworkUrl100\":\"http://a1.phobos.apple.com/us/r1000/058/Music/0c/1a/a2/mzi.rainnewf.133x100-99.jpg\", \"collectionPrice\":34.99, \"trackPrice\":1.99, \"releaseDate\":\"2005-11-09 08:00:00 Etc/GMT\", \"collectionExplicitness\":\"notExplicit\", \"trackExplicitness\":\"notExplicit\", \"discCount\":1, \"discNumber\":1, \"trackCount\":24, \"trackNumber\":6, \"trackTimeMillis\":2573839.0, \"country\":\"USA\", \"currency\":\"USD\", \"primaryGenreName\":\"Drama\", \"contentAdvisoryRating\":\"TV-PG\"}, \n\ - {\"wrapperType\":\"track\", \"kind\":\"tv-episode\", \"artistId\":66012553, \"collectionId\":200507719, \"trackId\":204121612, \"artistName\":\"LOST\", \"collectionName\":\"LOST, Season 3\", \"trackName\":\"I Do\", \"collectionCensoredName\":\"LOST, Season 3\", \"trackCensoredName\":\"I Do\", \"artistViewUrl\":\"http://itunes.apple.com/WebObjects/MZStore.woa/wa/viewTVShow?id=66012553&uo=4\", \"collectionViewUrl\":\"http://itunes.apple.com/WebObjects/MZStore.woa/wa/viewTVSeason?i=204121612&id=200507719&s=143441&uo=4\", \"trackViewUrl\":\"http://itunes.apple.com/WebObjects/MZStore.woa/wa/viewTVSeason?i=204121612&id=200507719&s=143441&uo=4\", \"previewUrl\":\"http://a1525.v.phobos.apple.com/us/r1000/058/Video/7f/d0/d0/mzm.mmpltysi..640x480.h264lc.d2.p.m4v\", \"artworkUrl30\":\"http://a1.phobos.apple.com/us/r30/Video/e6/f5/54/mzl.xrciclpo.jpg\", \"artworkUrl60\":\"http://a1.phobos.apple.com/us/r30/Video/e6/f5/54/mzl.xrciclpo.80x60-75.jpg\", \"artworkUrl100\":\"http://a1.phobos.apple.com/us/r30/Video/e6/f5/54/mzl.xrciclpo.133x100-99.jpg\", \"collectionPrice\":34.99, \"trackPrice\":1.99, \"releaseDate\":\"2006-11-08 08:00:00 Etc/GMT\", \"collectionExplicitness\":\"notExplicit\", \"trackExplicitness\":\"notExplicit\", \"discCount\":1, \"discNumber\":1, \"trackCount\":23, \"trackNumber\":6, \"trackTimeMillis\":2598500.0, \"country\":\"USA\", \"currency\":\"USD\", \"primaryGenreName\":\"Drama\", \"contentAdvisoryRating\":\"TV-14\"}, \n\ - {\"wrapperType\":\"track\", \"kind\":\"tv-episode\", \"artistId\":66012553, \"collectionId\":200507719, \"trackId\":201175874, \"artistName\":\"LOST\", \"collectionName\":\"LOST, Season 3\", \"trackName\":\"Every Man for Himself\", \"collectionCensoredName\":\"LOST, Season 3\", \"trackCensoredName\":\"Every Man for Himself\", \"artistViewUrl\":\"http://itunes.apple.com/WebObjects/MZStore.woa/wa/viewTVShow?id=66012553&uo=4\", \"collectionViewUrl\":\"http://itunes.apple.com/WebObjects/MZStore.woa/wa/viewTVSeason?i=201175874&id=200507719&s=143441&uo=4\", \"trackViewUrl\":\"http://itunes.apple.com/WebObjects/MZStore.woa/wa/viewTVSeason?i=201175874&id=200507719&s=143441&uo=4\", \"previewUrl\":\"http://a1208.v.phobos.apple.com/us/r1000/006/Video/27/b2/c3/mzm.lhirqulf..640x480.h264lc.d2.p.m4v\", \"artworkUrl30\":\"http://a1.phobos.apple.com/us/r30/Video/e6/f5/54/mzl.xrciclpo.jpg\", \"artworkUrl60\":\"http://a1.phobos.apple.com/us/r30/Video/e6/f5/54/mzl.xrciclpo.80x60-75.jpg\", \"artworkUrl100\":\"http://a1.phobos.apple.com/us/r30/Video/e6/f5/54/mzl.xrciclpo.133x100-99.jpg\", \"collectionPrice\":34.99, \"trackPrice\":1.99, \"releaseDate\":\"2006-10-25 07:00:00 Etc/GMT\", \"collectionExplicitness\":\"notExplicit\", \"trackExplicitness\":\"notExplicit\", \"discCount\":1, \"discNumber\":1, \"trackCount\":23, \"trackNumber\":4, \"trackTimeMillis\":2607416.0, \"country\":\"USA\", \"currency\":\"USD\", \"primaryGenreName\":\"Drama\", \"contentAdvisoryRating\":\"TV-14\"}, \n\ - {\"wrapperType\":\"track\", \"kind\":\"tv-episode\", \"artistId\":66012553, \"collectionId\":82050675, \"trackId\":151947814, \"artistName\":\"LOST\", \"collectionName\":\"LOST, Season 2\", \"trackName\":\"\\\"?\\\"\", \"collectionCensoredName\":\"LOST, Season 2\", \"trackCensoredName\":\"\\\"?\\\"\", \"artistViewUrl\":\"http://itunes.apple.com/WebObjects/MZStore.woa/wa/viewTVShow?id=66012553&uo=4\", \"collectionViewUrl\":\"http://itunes.apple.com/WebObjects/MZStore.woa/wa/viewTVSeason?i=151947814&id=82050675&s=143441&uo=4\", \"trackViewUrl\":\"http://itunes.apple.com/WebObjects/MZStore.woa/wa/viewTVSeason?i=151947814&id=82050675&s=143441&uo=4\", \"previewUrl\":\"http://a1264.v.phobos.apple.com/us/r1000/035/Video/c7/d4/de/mzm.dbfshtfy..640x480.h264lc.d2.p.m4v\", \"artworkUrl30\":\"http://a1.phobos.apple.com/us/r1000/015/Features/0c/1a/a2/dj.shywrpgj.jpg\", \"artworkUrl60\":\"http://a1.phobos.apple.com/us/r1000/015/Features/0c/1a/a2/dj.shywrpgj.80x60-75.jpg\", \"artworkUrl100\":\"http://a1.phobos.apple.com/us/r1000/015/Features/0c/1a/a2/dj.shywrpgj.133x100-99.jpg\", \"collectionPrice\":34.99, \"trackPrice\":1.99, \"releaseDate\":\"2006-05-10 07:00:00 Etc/GMT\", \"collectionExplicitness\":\"notExplicit\", \"trackExplicitness\":\"notExplicit\", \"discCount\":1, \"discNumber\":1, \"trackCount\":24, \"trackNumber\":21, \"trackTimeMillis\":2768817.0, \"country\":\"USA\", \"currency\":\"USD\", \"primaryGenreName\":\"Drama\", \"contentAdvisoryRating\":\"TV-14\"}, \n\ - {\"wrapperType\":\"track\", \"kind\":\"tv-episode\", \"artistId\":66012553, \"collectionId\":82050675, \"trackId\":152461935, \"artistName\":\"LOST\", \"collectionName\":\"LOST, Season 2\", \"trackName\":\"Three Minutes\", \"collectionCensoredName\":\"LOST, Season 2\", \"trackCensoredName\":\"Three Minutes\", \"artistViewUrl\":\"http://itunes.apple.com/WebObjects/MZStore.woa/wa/viewTVShow?id=66012553&uo=4\", \"collectionViewUrl\":\"http://itunes.apple.com/WebObjects/MZStore.woa/wa/viewTVSeason?i=152461935&id=82050675&s=143441&uo=4\", \"trackViewUrl\":\"http://itunes.apple.com/WebObjects/MZStore.woa/wa/viewTVSeason?i=152461935&id=82050675&s=143441&uo=4\", \"previewUrl\":\"http://a1957.v.phobos.apple.com/us/r1000/025/Video/c2/5f/15/mzm.eyeqttpt..640x480.h264lc.d2.p.m4v\", \"artworkUrl30\":\"http://a1.phobos.apple.com/us/r1000/015/Features/0c/1a/a2/dj.shywrpgj.jpg\", \"artworkUrl60\":\"http://a1.phobos.apple.com/us/r1000/015/Features/0c/1a/a2/dj.shywrpgj.80x60-75.jpg\", \"artworkUrl100\":\"http://a1.phobos.apple.com/us/r1000/015/Features/0c/1a/a2/dj.shywrpgj.133x100-99.jpg\", \"collectionPrice\":34.99, \"trackPrice\":1.99, \"releaseDate\":\"2006-05-17 07:00:00 Etc/GMT\", \"collectionExplicitness\":\"notExplicit\", \"trackExplicitness\":\"notExplicit\", \"discCount\":1, \"discNumber\":1, \"trackCount\":24, \"trackNumber\":22, \"trackTimeMillis\":2717779.0, \"country\":\"USA\", \"currency\":\"USD\", \"primaryGenreName\":\"Drama\", \"contentAdvisoryRating\":\"TV-14\"}, \n\ - {\"wrapperType\":\"track\", \"kind\":\"tv-episode\", \"artistId\":66012553, \"collectionId\":200507719, \"trackId\":203968378, \"artistName\":\"LOST\", \"collectionName\":\"LOST, Season 3\", \"trackName\":\"The Cost of Living\", \"collectionCensoredName\":\"LOST, Season 3\", \"trackCensoredName\":\"The Cost of Living\", \"artistViewUrl\":\"http://itunes.apple.com/WebObjects/MZStore.woa/wa/viewTVShow?id=66012553&uo=4\", \"collectionViewUrl\":\"http://itunes.apple.com/WebObjects/MZStore.woa/wa/viewTVSeason?i=203968378&id=200507719&s=143441&uo=4\", \"trackViewUrl\":\"http://itunes.apple.com/WebObjects/MZStore.woa/wa/viewTVSeason?i=203968378&id=200507719&s=143441&uo=4\", \"previewUrl\":\"http://a382.v.phobos.apple.com/us/r1000/044/Video/d8/1a/23/mzm.chkgsaqe..640x480.h264lc.d2.p.m4v\", \"artworkUrl30\":\"http://a1.phobos.apple.com/us/r30/Video/e6/f5/54/mzl.xrciclpo.jpg\", \"artworkUrl60\":\"http://a1.phobos.apple.com/us/r30/Video/e6/f5/54/mzl.xrciclpo.80x60-75.jpg\", \"artworkUrl100\":\"http://a1.phobos.apple.com/us/r30/Video/e6/f5/54/mzl.xrciclpo.133x100-99.jpg\", \"collectionPrice\":34.99, \"trackPrice\":1.99, \"releaseDate\":\"2006-11-01 08:00:00 Etc/GMT\", \"collectionExplicitness\":\"notExplicit\", \"trackExplicitness\":\"notExplicit\", \"discCount\":1, \"discNumber\":1, \"trackCount\":23, \"trackNumber\":5, \"trackTimeMillis\":2607879.0, \"country\":\"USA\", \"currency\":\"USD\", \"primaryGenreName\":\"Drama\", \"contentAdvisoryRating\":\"TV-14\"}, \n\ - {\"wrapperType\":\"track\", \"kind\":\"tv-episode\", \"artistId\":66012553, \"collectionId\":81864976, \"trackId\":81826874, \"artistName\":\"LOST\", \"collectionName\":\"LOST, Season 1\", \"trackName\":\"Pilot, Pt. 1\", \"collectionCensoredName\":\"LOST, Season 1\", \"trackCensoredName\":\"Pilot, Pt. 1\", \"artistViewUrl\":\"http://itunes.apple.com/WebObjects/MZStore.woa/wa/viewTVShow?id=66012553&uo=4\", \"collectionViewUrl\":\"http://itunes.apple.com/WebObjects/MZStore.woa/wa/viewTVSeason?i=81826874&id=81864976&s=143441&uo=4\", \"trackViewUrl\":\"http://itunes.apple.com/WebObjects/MZStore.woa/wa/viewTVSeason?i=81826874&id=81864976&s=143441&uo=4\", \"previewUrl\":\"http://a1196.v.phobos.apple.com/us/r1000/035/Video/01/ec/6a/mzm.ezdtahle..640x480.h264lc.d2.p.m4v\", \"artworkUrl30\":\"http://a1.phobos.apple.com/us/r1000/004/Features/f1/c6/64/dj.ksjwcoow.jpg\", \"artworkUrl60\":\"http://a1.phobos.apple.com/us/r1000/004/Features/f1/c6/64/dj.ksjwcoow.80x60-75.jpg\", \"artworkUrl100\":\"http://a1.phobos.apple.com/us/r1000/004/Features/f1/c6/64/dj.ksjwcoow.133x100-99.jpg\", \"collectionPrice\":34.99, \"trackPrice\":1.99, \"releaseDate\":\"2004-09-22 07:00:00 Etc/GMT\", \"collectionExplicitness\":\"notExplicit\", \"trackExplicitness\":\"notExplicit\", \"discCount\":1, \"discNumber\":1, \"trackCount\":25, \"trackNumber\":1, \"trackTimeMillis\":2540498.0, \"country\":\"USA\", \"currency\":\"USD\", \"primaryGenreName\":\"Drama\", \"contentAdvisoryRating\":\"TV-14\"}, \n\ - {\"wrapperType\":\"track\", \"kind\":\"tv-episode\", \"artistId\":66012553, \"collectionId\":200507719, \"trackId\":215048742, \"artistName\":\"LOST\", \"collectionName\":\"LOST, Season 3\", \"trackName\":\"Flashes Before Your Eyes\", \"collectionCensoredName\":\"LOST, Season 3\", \"trackCensoredName\":\"Flashes Before Your Eyes\", \"artistViewUrl\":\"http://itunes.apple.com/WebObjects/MZStore.woa/wa/viewTVShow?id=66012553&uo=4\", \"collectionViewUrl\":\"http://itunes.apple.com/WebObjects/MZStore.woa/wa/viewTVSeason?i=215048742&id=200507719&s=143441&uo=4\", \"trackViewUrl\":\"http://itunes.apple.com/WebObjects/MZStore.woa/wa/viewTVSeason?i=215048742&id=200507719&s=143441&uo=4\", \"previewUrl\":\"http://a1521.v.phobos.apple.com/us/r1000/045/Video/b7/50/75/mzm.qjlqqvic..640x480.h264lc.d2.p.m4v\", \"artworkUrl30\":\"http://a1.phobos.apple.com/us/r30/Video/e6/f5/54/mzl.xrciclpo.jpg\", \"artworkUrl60\":\"http://a1.phobos.apple.com/us/r30/Video/e6/f5/54/mzl.xrciclpo.80x60-75.jpg\", \"artworkUrl100\":\"http://a1.phobos.apple.com/us/r30/Video/e6/f5/54/mzl.xrciclpo.133x100-99.jpg\", \"collectionPrice\":34.99, \"trackPrice\":1.99, \"releaseDate\":\"2007-02-14 08:00:00 Etc/GMT\", \"collectionExplicitness\":\"notExplicit\", \"trackExplicitness\":\"notExplicit\", \"discCount\":1, \"discNumber\":1, \"trackCount\":23, \"trackNumber\":8, \"trackTimeMillis\":2606440.0, \"country\":\"USA\", \"currency\":\"USD\", \"primaryGenreName\":\"Drama\", \"contentAdvisoryRating\":\"TV-14\"}, \n\ - {\"wrapperType\":\"track\", \"kind\":\"tv-episode\", \"artistId\":66012553, \"collectionId\":200507719, \"trackId\":215048740, \"artistName\":\"LOST\", \"collectionName\":\"LOST, Season 3\", \"trackName\":\"Not In Portland\", \"collectionCensoredName\":\"LOST, Season 3\", \"trackCensoredName\":\"Not In Portland\", \"artistViewUrl\":\"http://itunes.apple.com/WebObjects/MZStore.woa/wa/viewTVShow?id=66012553&uo=4\", \"collectionViewUrl\":\"http://itunes.apple.com/WebObjects/MZStore.woa/wa/viewTVSeason?i=215048740&id=200507719&s=143441&uo=4\", \"trackViewUrl\":\"http://itunes.apple.com/WebObjects/MZStore.woa/wa/viewTVSeason?i=215048740&id=200507719&s=143441&uo=4\", \"previewUrl\":\"http://a240.v.phobos.apple.com/us/r1000/036/Video/e9/f1/17/mzm.drywldxk..640x480.h264lc.d2.p.m4v\", \"artworkUrl30\":\"http://a1.phobos.apple.com/us/r30/Video/e6/f5/54/mzl.xrciclpo.jpg\", \"artworkUrl60\":\"http://a1.phobos.apple.com/us/r30/Video/e6/f5/54/mzl.xrciclpo.80x60-75.jpg\", \"artworkUrl100\":\"http://a1.phobos.apple.com/us/r30/Video/e6/f5/54/mzl.xrciclpo.133x100-99.jpg\", \"collectionPrice\":34.99, \"trackPrice\":1.99, \"releaseDate\":\"2007-02-07 08:00:00 Etc/GMT\", \"collectionExplicitness\":\"notExplicit\", \"trackExplicitness\":\"notExplicit\", \"discCount\":1, \"discNumber\":1, \"trackCount\":23, \"trackNumber\":7, \"trackTimeMillis\":2607670.0, \"country\":\"USA\", \"currency\":\"USD\", \"primaryGenreName\":\"Drama\", \"contentAdvisoryRating\":\"TV-14\"}, \n\ - {\"wrapperType\":\"track\", \"kind\":\"tv-episode\", \"artistId\":66012553, \"collectionId\":200507719, \"trackId\":216753701, \"artistName\":\"LOST\", \"collectionName\":\"LOST, Season 3\", \"trackName\":\"Enter 77\", \"collectionCensoredName\":\"LOST, Season 3\", \"trackCensoredName\":\"Enter 77\", \"artistViewUrl\":\"http://itunes.apple.com/WebObjects/MZStore.woa/wa/viewTVShow?id=66012553&uo=4\", \"collectionViewUrl\":\"http://itunes.apple.com/WebObjects/MZStore.woa/wa/viewTVSeason?i=216753701&id=200507719&s=143441&uo=4\", \"trackViewUrl\":\"http://itunes.apple.com/WebObjects/MZStore.woa/wa/viewTVSeason?i=216753701&id=200507719&s=143441&uo=4\", \"previewUrl\":\"http://a2.v.phobos.apple.com/us/r1000/030/Video/ec/54/10/mzm.anzgtahf..640x480.h264lc.d2.p.m4v\", \"artworkUrl30\":\"http://a1.phobos.apple.com/us/r30/Video/e6/f5/54/mzl.xrciclpo.jpg\", \"artworkUrl60\":\"http://a1.phobos.apple.com/us/r30/Video/e6/f5/54/mzl.xrciclpo.80x60-75.jpg\", \"artworkUrl100\":\"http://a1.phobos.apple.com/us/r30/Video/e6/f5/54/mzl.xrciclpo.133x100-99.jpg\", \"collectionPrice\":34.99, \"trackPrice\":1.99, \"releaseDate\":\"2007-03-07 08:00:00 Etc/GMT\", \"collectionExplicitness\":\"notExplicit\", \"trackExplicitness\":\"notExplicit\", \"discCount\":1, \"discNumber\":1, \"trackCount\":23, \"trackNumber\":11, \"trackTimeMillis\":2599938.0, \"country\":\"USA\", \"currency\":\"USD\", \"primaryGenreName\":\"Drama\", \"contentAdvisoryRating\":\"TV-14\"}, \n\ - {\"wrapperType\":\"track\", \"kind\":\"tv-episode\", \"artistId\":66012553, \"collectionId\":200507719, \"trackId\":215048744, \"artistName\":\"LOST\", \"collectionName\":\"LOST, Season 3\", \"trackName\":\"Stranger In a Strange Land\", \"collectionCensoredName\":\"LOST, Season 3\", \"trackCensoredName\":\"Stranger In a Strange Land\", \"artistViewUrl\":\"http://itunes.apple.com/WebObjects/MZStore.woa/wa/viewTVShow?id=66012553&uo=4\", \"collectionViewUrl\":\"http://itunes.apple.com/WebObjects/MZStore.woa/wa/viewTVSeason?i=215048744&id=200507719&s=143441&uo=4\", \"trackViewUrl\":\"http://itunes.apple.com/WebObjects/MZStore.woa/wa/viewTVSeason?i=215048744&id=200507719&s=143441&uo=4\", \"previewUrl\":\"http://a1933.v.phobos.apple.com/us/r1000/056/Video/6f/3b/0f/mzm.ewmcioru..640x480.h264lc.d2.p.m4v\", \"artworkUrl30\":\"http://a1.phobos.apple.com/us/r30/Video/e6/f5/54/mzl.xrciclpo.jpg\", \"artworkUrl60\":\"http://a1.phobos.apple.com/us/r30/Video/e6/f5/54/mzl.xrciclpo.80x60-75.jpg\", \"artworkUrl100\":\"http://a1.phobos.apple.com/us/r30/Video/e6/f5/54/mzl.xrciclpo.133x100-99.jpg\", \"collectionPrice\":34.99, \"trackPrice\":1.99, \"releaseDate\":\"2007-02-21 08:00:00 Etc/GMT\", \"collectionExplicitness\":\"notExplicit\", \"trackExplicitness\":\"notExplicit\", \"discCount\":1, \"discNumber\":1, \"trackCount\":23, \"trackNumber\":9, \"trackTimeMillis\":2606750.0, \"country\":\"USA\", \"currency\":\"USD\", \"primaryGenreName\":\"Drama\", \"contentAdvisoryRating\":\"TV-14\"}, \n\ - {\"wrapperType\":\"track\", \"kind\":\"tv-episode\", \"artistId\":66012553, \"collectionId\":200507719, \"trackId\":216753135, \"artistName\":\"LOST\", \"collectionName\":\"LOST, Season 3\", \"trackName\":\"Tricia Tanaka Is Dead\", \"collectionCensoredName\":\"LOST, Season 3\", \"trackCensoredName\":\"Tricia Tanaka Is Dead\", \"artistViewUrl\":\"http://itunes.apple.com/WebObjects/MZStore.woa/wa/viewTVShow?id=66012553&uo=4\", \"collectionViewUrl\":\"http://itunes.apple.com/WebObjects/MZStore.woa/wa/viewTVSeason?i=216753135&id=200507719&s=143441&uo=4\", \"trackViewUrl\":\"http://itunes.apple.com/WebObjects/MZStore.woa/wa/viewTVSeason?i=216753135&id=200507719&s=143441&uo=4\", \"previewUrl\":\"http://a184.v.phobos.apple.com/us/r1000/021/Video/04/27/66/mzm.tuioicsu..640x480.h264lc.d2.p.m4v\", \"artworkUrl30\":\"http://a1.phobos.apple.com/us/r30/Video/e6/f5/54/mzl.xrciclpo.jpg\", \"artworkUrl60\":\"http://a1.phobos.apple.com/us/r30/Video/e6/f5/54/mzl.xrciclpo.80x60-75.jpg\", \"artworkUrl100\":\"http://a1.phobos.apple.com/us/r30/Video/e6/f5/54/mzl.xrciclpo.133x100-99.jpg\", \"collectionPrice\":34.99, \"trackPrice\":1.99, \"releaseDate\":\"2007-02-28 08:00:00 Etc/GMT\", \"collectionExplicitness\":\"notExplicit\", \"trackExplicitness\":\"notExplicit\", \"discCount\":1, \"discNumber\":1, \"trackCount\":23, \"trackNumber\":10, \"trackTimeMillis\":2608191.0, \"country\":\"USA\", \"currency\":\"USD\", \"primaryGenreName\":\"Drama\", \"contentAdvisoryRating\":\"TV-PG\"}, \n\ - {\"wrapperType\":\"track\", \"kind\":\"tv-episode\", \"artistId\":66012553, \"collectionId\":200507719, \"trackId\":219123803, \"artistName\":\"LOST\", \"collectionName\":\"LOST, Season 3\", \"trackName\":\"Par Avion\", \"collectionCensoredName\":\"LOST, Season 3\", \"trackCensoredName\":\"Par Avion\", \"artistViewUrl\":\"http://itunes.apple.com/WebObjects/MZStore.woa/wa/viewTVShow?id=66012553&uo=4\", \"collectionViewUrl\":\"http://itunes.apple.com/WebObjects/MZStore.woa/wa/viewTVSeason?i=219123803&id=200507719&s=143441&uo=4\", \"trackViewUrl\":\"http://itunes.apple.com/WebObjects/MZStore.woa/wa/viewTVSeason?i=219123803&id=200507719&s=143441&uo=4\", \"previewUrl\":\"http://a1288.v.phobos.apple.com/us/r1000/032/Video/8a/7f/ce/mzm.bcqxmaeg..640x480.h264lc.d2.p.m4v\", \"artworkUrl30\":\"http://a1.phobos.apple.com/us/r30/Video/e6/f5/54/mzl.xrciclpo.jpg\", \"artworkUrl60\":\"http://a1.phobos.apple.com/us/r30/Video/e6/f5/54/mzl.xrciclpo.80x60-75.jpg\", \"artworkUrl100\":\"http://a1.phobos.apple.com/us/r30/Video/e6/f5/54/mzl.xrciclpo.133x100-99.jpg\", \"collectionPrice\":34.99, \"trackPrice\":1.99, \"releaseDate\":\"2007-03-14 07:00:00 Etc/GMT\", \"collectionExplicitness\":\"notExplicit\", \"trackExplicitness\":\"notExplicit\", \"discCount\":1, \"discNumber\":1, \"trackCount\":23, \"trackNumber\":12, \"trackTimeMillis\":2599938.0, \"country\":\"USA\", \"currency\":\"USD\", \"primaryGenreName\":\"Drama\", \"contentAdvisoryRating\":\"TV-14\"}, \n\ - {\"wrapperType\":\"track\", \"kind\":\"tv-episode\", \"artistId\":66012553, \"collectionId\":200507719, \"trackId\":219123809, \"artistName\":\"LOST\", \"collectionName\":\"LOST, Season 3\", \"trackName\":\"The Man from Tallahassee\", \"collectionCensoredName\":\"LOST, Season 3\", \"trackCensoredName\":\"The Man from Tallahassee\", \"artistViewUrl\":\"http://itunes.apple.com/WebObjects/MZStore.woa/wa/viewTVShow?id=66012553&uo=4\", \"collectionViewUrl\":\"http://itunes.apple.com/WebObjects/MZStore.woa/wa/viewTVSeason?i=219123809&id=200507719&s=143441&uo=4\", \"trackViewUrl\":\"http://itunes.apple.com/WebObjects/MZStore.woa/wa/viewTVSeason?i=219123809&id=200507719&s=143441&uo=4\", \"previewUrl\":\"http://a1894.v.phobos.apple.com/us/r1000/051/Video/75/42/05/mzm.omyorjaa..640x480.h264lc.d2.p.m4v\", \"artworkUrl30\":\"http://a1.phobos.apple.com/us/r30/Video/e6/f5/54/mzl.xrciclpo.jpg\", \"artworkUrl60\":\"http://a1.phobos.apple.com/us/r30/Video/e6/f5/54/mzl.xrciclpo.80x60-75.jpg\", \"artworkUrl100\":\"http://a1.phobos.apple.com/us/r30/Video/e6/f5/54/mzl.xrciclpo.133x100-99.jpg\", \"collectionPrice\":34.99, \"trackPrice\":1.99, \"releaseDate\":\"2007-03-21 07:00:00 Etc/GMT\", \"collectionExplicitness\":\"notExplicit\", \"trackExplicitness\":\"notExplicit\", \"discCount\":1, \"discNumber\":1, \"trackCount\":23, \"trackNumber\":13, \"trackTimeMillis\":2610431.0, \"country\":\"USA\", \"currency\":\"USD\", \"primaryGenreName\":\"Drama\", \"contentAdvisoryRating\":\"TV-14\"}, \n\ - {\"wrapperType\":\"track\", \"kind\":\"tv-episode\", \"artistId\":66012553, \"collectionId\":200507719, \"trackId\":220100195, \"artistName\":\"LOST\", \"collectionName\":\"LOST, Season 3\", \"trackName\":\"Expos\\u00e9\", \"collectionCensoredName\":\"LOST, Season 3\", \"trackCensoredName\":\"Expos\\u00e9\", \"artistViewUrl\":\"http://itunes.apple.com/WebObjects/MZStore.woa/wa/viewTVShow?id=66012553&uo=4\", \"collectionViewUrl\":\"http://itunes.apple.com/WebObjects/MZStore.woa/wa/viewTVSeason?i=220100195&id=200507719&s=143441&uo=4\", \"trackViewUrl\":\"http://itunes.apple.com/WebObjects/MZStore.woa/wa/viewTVSeason?i=220100195&id=200507719&s=143441&uo=4\", \"previewUrl\":\"http://a90.v.phobos.apple.com/us/r1000/047/Video/4a/e6/92/mzm.rkendrdf..640x480.h264lc.d2.p.m4v\", \"artworkUrl30\":\"http://a1.phobos.apple.com/us/r30/Video/e6/f5/54/mzl.xrciclpo.jpg\", \"artworkUrl60\":\"http://a1.phobos.apple.com/us/r30/Video/e6/f5/54/mzl.xrciclpo.80x60-75.jpg\", \"artworkUrl100\":\"http://a1.phobos.apple.com/us/r30/Video/e6/f5/54/mzl.xrciclpo.133x100-99.jpg\", \"collectionPrice\":34.99, \"trackPrice\":1.99, \"releaseDate\":\"2007-03-28 07:00:00 Etc/GMT\", \"collectionExplicitness\":\"notExplicit\", \"trackExplicitness\":\"notExplicit\", \"discCount\":1, \"discNumber\":1, \"trackCount\":23, \"trackNumber\":14, \"trackTimeMillis\":2563343.0, \"country\":\"USA\", \"currency\":\"USD\", \"primaryGenreName\":\"Drama\", \"contentAdvisoryRating\":\"TV-14\"}, \n\ - {\"wrapperType\":\"track\", \"kind\":\"tv-episode\", \"artistId\":66012553, \"collectionId\":200507719, \"trackId\":254531399, \"artistName\":\"LOST\", \"collectionName\":\"LOST, Season 3\", \"trackName\":\"Greatest Hits\", \"collectionCensoredName\":\"LOST, Season 3\", \"trackCensoredName\":\"Greatest Hits\", \"artistViewUrl\":\"http://itunes.apple.com/WebObjects/MZStore.woa/wa/viewTVShow?id=66012553&uo=4\", \"collectionViewUrl\":\"http://itunes.apple.com/WebObjects/MZStore.woa/wa/viewTVSeason?i=254531399&id=200507719&s=143441&uo=4\", \"trackViewUrl\":\"http://itunes.apple.com/WebObjects/MZStore.woa/wa/viewTVSeason?i=254531399&id=200507719&s=143441&uo=4\", \"previewUrl\":\"http://a1254.v.phobos.apple.com/us/r1000/011/Video/7c/df/f0/mzm.ygcivqyr..640x480.h264lc.d2.p.m4v\", \"artworkUrl30\":\"http://a1.phobos.apple.com/us/r30/Video/e6/f5/54/mzl.xrciclpo.jpg\", \"artworkUrl60\":\"http://a1.phobos.apple.com/us/r30/Video/e6/f5/54/mzl.xrciclpo.80x60-75.jpg\", \"artworkUrl100\":\"http://a1.phobos.apple.com/us/r30/Video/e6/f5/54/mzl.xrciclpo.133x100-99.jpg\", \"collectionPrice\":34.99, \"trackPrice\":1.99, \"releaseDate\":\"2007-05-16 07:00:00 Etc/GMT\", \"collectionExplicitness\":\"notExplicit\", \"trackExplicitness\":\"notExplicit\", \"discCount\":1, \"discNumber\":1, \"trackCount\":23, \"trackNumber\":21, \"trackTimeMillis\":2607113.0, \"country\":\"USA\", \"currency\":\"USD\", \"primaryGenreName\":\"Drama\", \"contentAdvisoryRating\":\"TV-14\"}, \n\ - {\"wrapperType\":\"track\", \"kind\":\"tv-episode\", \"artistId\":66012553, \"collectionId\":200507719, \"trackId\":252901095, \"artistName\":\"LOST\", \"collectionName\":\"LOST, Season 3\", \"trackName\":\"The Brig\", \"collectionCensoredName\":\"LOST, Season 3\", \"trackCensoredName\":\"The Brig\", \"artistViewUrl\":\"http://itunes.apple.com/WebObjects/MZStore.woa/wa/viewTVShow?id=66012553&uo=4\", \"collectionViewUrl\":\"http://itunes.apple.com/WebObjects/MZStore.woa/wa/viewTVSeason?i=252901095&id=200507719&s=143441&uo=4\", \"trackViewUrl\":\"http://itunes.apple.com/WebObjects/MZStore.woa/wa/viewTVSeason?i=252901095&id=200507719&s=143441&uo=4\", \"previewUrl\":\"http://a1518.v.phobos.apple.com/us/r1000/015/Video/ad/a9/58/mzm.ndoeeusn..640x480.h264lc.d2.p.m4v\", \"artworkUrl30\":\"http://a1.phobos.apple.com/us/r30/Video/e6/f5/54/mzl.xrciclpo.jpg\", \"artworkUrl60\":\"http://a1.phobos.apple.com/us/r30/Video/e6/f5/54/mzl.xrciclpo.80x60-75.jpg\", \"artworkUrl100\":\"http://a1.phobos.apple.com/us/r30/Video/e6/f5/54/mzl.xrciclpo.133x100-99.jpg\", \"collectionPrice\":34.99, \"trackPrice\":1.99, \"releaseDate\":\"2007-05-02 07:00:00 Etc/GMT\", \"collectionExplicitness\":\"notExplicit\", \"trackExplicitness\":\"notExplicit\", \"discCount\":1, \"discNumber\":1, \"trackCount\":23, \"trackNumber\":19, \"trackTimeMillis\":2607670.0, \"country\":\"USA\", \"currency\":\"USD\", \"primaryGenreName\":\"Drama\", \"contentAdvisoryRating\":\"TV-14\"}, \n\ - {\"wrapperType\":\"track\", \"kind\":\"tv-episode\", \"artistId\":66012553, \"collectionId\":200507719, \"trackId\":220100200, \"artistName\":\"LOST\", \"collectionName\":\"LOST, Season 3\", \"trackName\":\"Left Behind\", \"collectionCensoredName\":\"LOST, Season 3\", \"trackCensoredName\":\"Left Behind\", \"artistViewUrl\":\"http://itunes.apple.com/WebObjects/MZStore.woa/wa/viewTVShow?id=66012553&uo=4\", \"collectionViewUrl\":\"http://itunes.apple.com/WebObjects/MZStore.woa/wa/viewTVSeason?i=220100200&id=200507719&s=143441&uo=4\", \"trackViewUrl\":\"http://itunes.apple.com/WebObjects/MZStore.woa/wa/viewTVSeason?i=220100200&id=200507719&s=143441&uo=4\", \"previewUrl\":\"http://a732.v.phobos.apple.com/us/r1000/014/Video/f3/a5/ae/mzm.cqjerumd..640x480.h264lc.d2.p.m4v\", \"artworkUrl30\":\"http://a1.phobos.apple.com/us/r30/Video/e6/f5/54/mzl.xrciclpo.jpg\", \"artworkUrl60\":\"http://a1.phobos.apple.com/us/r30/Video/e6/f5/54/mzl.xrciclpo.80x60-75.jpg\", \"artworkUrl100\":\"http://a1.phobos.apple.com/us/r30/Video/e6/f5/54/mzl.xrciclpo.133x100-99.jpg\", \"collectionPrice\":34.99, \"trackPrice\":1.99, \"releaseDate\":\"2007-04-04 07:00:00 Etc/GMT\", \"collectionExplicitness\":\"notExplicit\", \"trackExplicitness\":\"notExplicit\", \"discCount\":1, \"discNumber\":1, \"trackCount\":23, \"trackNumber\":15, \"trackTimeMillis\":2604303.0, \"country\":\"USA\", \"currency\":\"USD\", \"primaryGenreName\":\"Drama\", \"contentAdvisoryRating\":\"TV-14\"}, \n\ - {\"wrapperType\":\"track\", \"kind\":\"tv-episode\", \"artistId\":66012553, \"collectionId\":200507719, \"trackId\":252900928, \"artistName\":\"LOST\", \"collectionName\":\"LOST, Season 3\", \"trackName\":\"The Man Behind the Curtain\", \"collectionCensoredName\":\"LOST, Season 3\", \"trackCensoredName\":\"The Man Behind the Curtain\", \"artistViewUrl\":\"http://itunes.apple.com/WebObjects/MZStore.woa/wa/viewTVShow?id=66012553&uo=4\", \"collectionViewUrl\":\"http://itunes.apple.com/WebObjects/MZStore.woa/wa/viewTVSeason?i=252900928&id=200507719&s=143441&uo=4\", \"trackViewUrl\":\"http://itunes.apple.com/WebObjects/MZStore.woa/wa/viewTVSeason?i=252900928&id=200507719&s=143441&uo=4\", \"previewUrl\":\"http://a1961.v.phobos.apple.com/us/r1000/059/Video/4d/1b/ac/mzm.knqnrelq..640x480.h264lc.d2.p.m4v\", \"artworkUrl30\":\"http://a1.phobos.apple.com/us/r30/Video/e6/f5/54/mzl.xrciclpo.jpg\", \"artworkUrl60\":\"http://a1.phobos.apple.com/us/r30/Video/e6/f5/54/mzl.xrciclpo.80x60-75.jpg\", \"artworkUrl100\":\"http://a1.phobos.apple.com/us/r30/Video/e6/f5/54/mzl.xrciclpo.133x100-99.jpg\", \"collectionPrice\":34.99, \"trackPrice\":1.99, \"releaseDate\":\"2007-05-09 07:00:00 Etc/GMT\", \"collectionExplicitness\":\"notExplicit\", \"trackExplicitness\":\"notExplicit\", \"discCount\":1, \"discNumber\":1, \"trackCount\":23, \"trackNumber\":20, \"trackTimeMillis\":2605348.0, \"country\":\"USA\", \"currency\":\"USD\", \"primaryGenreName\":\"Drama\", \"contentAdvisoryRating\":\"TV-14\"}, \n\ - {\"wrapperType\":\"track\", \"kind\":\"tv-episode\", \"artistId\":66012553, \"collectionId\":200507719, \"trackId\":250671308, \"artistName\":\"LOST\", \"collectionName\":\"LOST, Season 3\", \"trackName\":\"One of Us\", \"collectionCensoredName\":\"LOST, Season 3\", \"trackCensoredName\":\"One of Us\", \"artistViewUrl\":\"http://itunes.apple.com/WebObjects/MZStore.woa/wa/viewTVShow?id=66012553&uo=4\", \"collectionViewUrl\":\"http://itunes.apple.com/WebObjects/MZStore.woa/wa/viewTVSeason?i=250671308&id=200507719&s=143441&uo=4\", \"trackViewUrl\":\"http://itunes.apple.com/WebObjects/MZStore.woa/wa/viewTVSeason?i=250671308&id=200507719&s=143441&uo=4\", \"previewUrl\":\"http://a778.v.phobos.apple.com/us/r1000/033/Video/4d/3e/a7/mzm.dfgghhuf..640x480.h264lc.d2.p.m4v\", \"artworkUrl30\":\"http://a1.phobos.apple.com/us/r30/Video/e6/f5/54/mzl.xrciclpo.jpg\", \"artworkUrl60\":\"http://a1.phobos.apple.com/us/r30/Video/e6/f5/54/mzl.xrciclpo.80x60-75.jpg\", \"artworkUrl100\":\"http://a1.phobos.apple.com/us/r30/Video/e6/f5/54/mzl.xrciclpo.133x100-99.jpg\", \"collectionPrice\":34.99, \"trackPrice\":1.99, \"releaseDate\":\"2007-04-11 07:00:00 Etc/GMT\", \"collectionExplicitness\":\"notExplicit\", \"trackExplicitness\":\"notExplicit\", \"discCount\":1, \"discNumber\":1, \"trackCount\":23, \"trackNumber\":16, \"trackTimeMillis\":2610431.0, \"country\":\"USA\", \"currency\":\"USD\", \"primaryGenreName\":\"Drama\", \"contentAdvisoryRating\":\"TV-PG\"}, \n\ - {\"wrapperType\":\"track\", \"kind\":\"tv-episode\", \"artistId\":66012553, \"collectionId\":200507719, \"trackId\":251892476, \"artistName\":\"LOST\", \"collectionName\":\"LOST, Season 3\", \"trackName\":\"D.O.C.\", \"collectionCensoredName\":\"LOST, Season 3\", \"trackCensoredName\":\"D.O.C.\", \"artistViewUrl\":\"http://itunes.apple.com/WebObjects/MZStore.woa/wa/viewTVShow?id=66012553&uo=4\", \"collectionViewUrl\":\"http://itunes.apple.com/WebObjects/MZStore.woa/wa/viewTVSeason?i=251892476&id=200507719&s=143441&uo=4\", \"trackViewUrl\":\"http://itunes.apple.com/WebObjects/MZStore.woa/wa/viewTVSeason?i=251892476&id=200507719&s=143441&uo=4\", \"previewUrl\":\"http://a691.v.phobos.apple.com/us/r1000/013/Video/01/a2/96/mzm.tcglavgc..640x480.h264lc.d2.p.m4v\", \"artworkUrl30\":\"http://a1.phobos.apple.com/us/r30/Video/e6/f5/54/mzl.xrciclpo.jpg\", \"artworkUrl60\":\"http://a1.phobos.apple.com/us/r30/Video/e6/f5/54/mzl.xrciclpo.80x60-75.jpg\", \"artworkUrl100\":\"http://a1.phobos.apple.com/us/r30/Video/e6/f5/54/mzl.xrciclpo.133x100-99.jpg\", \"collectionPrice\":34.99, \"trackPrice\":1.99, \"releaseDate\":\"2007-04-25 07:00:00 Etc/GMT\", \"collectionExplicitness\":\"notExplicit\", \"trackExplicitness\":\"notExplicit\", \"discCount\":1, \"discNumber\":1, \"trackCount\":23, \"trackNumber\":18, \"trackTimeMillis\":2606184.0, \"country\":\"USA\", \"currency\":\"USD\", \"primaryGenreName\":\"Drama\", \"contentAdvisoryRating\":\"TV-14\"}, \n\ - {\"wrapperType\":\"track\", \"kind\":\"tv-episode\", \"artistId\":66012553, \"collectionId\":200507719, \"trackId\":251892474, \"artistName\":\"LOST\", \"collectionName\":\"LOST, Season 3\", \"trackName\":\"Catch-22\", \"collectionCensoredName\":\"LOST, Season 3\", \"trackCensoredName\":\"Catch-22\", \"artistViewUrl\":\"http://itunes.apple.com/WebObjects/MZStore.woa/wa/viewTVShow?id=66012553&uo=4\", \"collectionViewUrl\":\"http://itunes.apple.com/WebObjects/MZStore.woa/wa/viewTVSeason?i=251892474&id=200507719&s=143441&uo=4\", \"trackViewUrl\":\"http://itunes.apple.com/WebObjects/MZStore.woa/wa/viewTVSeason?i=251892474&id=200507719&s=143441&uo=4\", \"previewUrl\":\"http://a1019.v.phobos.apple.com/us/r1000/047/Video/df/c5/0e/mzm.pnbrrmxr..640x480.h264lc.d2.p.m4v\", \"artworkUrl30\":\"http://a1.phobos.apple.com/us/r30/Video/e6/f5/54/mzl.xrciclpo.jpg\", \"artworkUrl60\":\"http://a1.phobos.apple.com/us/r30/Video/e6/f5/54/mzl.xrciclpo.80x60-75.jpg\", \"artworkUrl100\":\"http://a1.phobos.apple.com/us/r30/Video/e6/f5/54/mzl.xrciclpo.133x100-99.jpg\", \"collectionPrice\":34.99, \"trackPrice\":1.99, \"releaseDate\":\"2007-04-18 07:00:00 Etc/GMT\", \"collectionExplicitness\":\"notExplicit\", \"trackExplicitness\":\"notExplicit\", \"discCount\":1, \"discNumber\":1, \"trackCount\":23, \"trackNumber\":17, \"trackTimeMillis\":2551041.0, \"country\":\"USA\", \"currency\":\"USD\", \"primaryGenreName\":\"Drama\", \"contentAdvisoryRating\":\"TV-14\"}, \n\ - {\"wrapperType\":\"track\", \"kind\":\"tv-episode\", \"artistId\":66012553, \"collectionId\":200507719, \"trackId\":258597093, \"artistName\":\"LOST\", \"collectionName\":\"LOST, Season 3\", \"trackName\":\"Through the Looking Glass, Pt. 2\", \"collectionCensoredName\":\"LOST, Season 3\", \"trackCensoredName\":\"Through the Looking Glass, Pt. 2\", \"artistViewUrl\":\"http://itunes.apple.com/WebObjects/MZStore.woa/wa/viewTVShow?id=66012553&uo=4\", \"collectionViewUrl\":\"http://itunes.apple.com/WebObjects/MZStore.woa/wa/viewTVSeason?i=258597093&id=200507719&s=143441&uo=4\", \"trackViewUrl\":\"http://itunes.apple.com/WebObjects/MZStore.woa/wa/viewTVSeason?i=258597093&id=200507719&s=143441&uo=4\", \"previewUrl\":\"http://a253.v.phobos.apple.com/us/r1000/022/Video/bf/28/82/mzm.qwiuqvai..640x480.h264lc.d2.p.m4v\", \"artworkUrl30\":\"http://a1.phobos.apple.com/us/r30/Video/e6/f5/54/mzl.xrciclpo.jpg\", \"artworkUrl60\":\"http://a1.phobos.apple.com/us/r30/Video/e6/f5/54/mzl.xrciclpo.80x60-75.jpg\", \"artworkUrl100\":\"http://a1.phobos.apple.com/us/r30/Video/e6/f5/54/mzl.xrciclpo.133x100-99.jpg\", \"collectionPrice\":34.99, \"trackPrice\":1.99, \"releaseDate\":\"2007-05-23 07:00:00 Etc/GMT\", \"collectionExplicitness\":\"notExplicit\", \"trackExplicitness\":\"notExplicit\", \"discCount\":1, \"discNumber\":1, \"trackCount\":23, \"trackNumber\":23, \"trackTimeMillis\":2607666.0, \"country\":\"USA\", \"currency\":\"USD\", \"primaryGenreName\":\"Drama\", \"contentAdvisoryRating\":\"TV-14\"}, \n\ - {\"wrapperType\":\"track\", \"kind\":\"tv-episode\", \"artistId\":66012553, \"collectionId\":271230907, \"trackId\":273109898, \"artistName\":\"LOST\", \"collectionName\":\"LOST, Season 4\", \"trackName\":\"The Beginning of the End\", \"collectionCensoredName\":\"LOST, Season 4\", \"trackCensoredName\":\"The Beginning of the End\", \"artistViewUrl\":\"http://itunes.apple.com/WebObjects/MZStore.woa/wa/viewTVShow?id=66012553&uo=4\", \"collectionViewUrl\":\"http://itunes.apple.com/WebObjects/MZStore.woa/wa/viewTVSeason?i=273109898&id=271230907&s=143441&uo=4\", \"trackViewUrl\":\"http://itunes.apple.com/WebObjects/MZStore.woa/wa/viewTVSeason?i=273109898&id=271230907&s=143441&uo=4\", \"previewUrl\":\"http://a149.v.phobos.apple.com/us/r1000/039/Video/d9/be/e2/mzm.ymjtaciv..640x480.h264lc.d2.p.m4v\", \"artworkUrl30\":\"http://a1.phobos.apple.com/us/r1000/024/Video/7c/70/47/mzl.bxzxwvhu.jpg\", \"artworkUrl60\":\"http://a1.phobos.apple.com/us/r1000/024/Video/7c/70/47/mzl.bxzxwvhu.80x60-75.jpg\", \"artworkUrl100\":\"http://a1.phobos.apple.com/us/r1000/024/Video/7c/70/47/mzl.bxzxwvhu.133x100-99.jpg\", \"collectionPrice\":26.99, \"trackPrice\":1.99, \"releaseDate\":\"2008-01-31 08:00:00 Etc/GMT\", \"collectionExplicitness\":\"notExplicit\", \"trackExplicitness\":\"notExplicit\", \"discCount\":1, \"discNumber\":1, \"trackCount\":14, \"trackNumber\":1, \"trackTimeMillis\":2589856.0, \"country\":\"USA\", \"currency\":\"USD\", \"primaryGenreName\":\"Drama\", \"contentAdvisoryRating\":\"TV-14\"}, \n\ - {\"wrapperType\":\"track\", \"kind\":\"tv-episode\", \"artistId\":66012553, \"collectionId\":81864976, \"trackId\":81826878, \"artistName\":\"LOST\", \"collectionName\":\"LOST, Season 1\", \"trackName\":\"Pilot, Pt. 2\", \"collectionCensoredName\":\"LOST, Season 1\", \"trackCensoredName\":\"Pilot, Pt. 2\", \"artistViewUrl\":\"http://itunes.apple.com/WebObjects/MZStore.woa/wa/viewTVShow?id=66012553&uo=4\", \"collectionViewUrl\":\"http://itunes.apple.com/WebObjects/MZStore.woa/wa/viewTVSeason?i=81826878&id=81864976&s=143441&uo=4\", \"trackViewUrl\":\"http://itunes.apple.com/WebObjects/MZStore.woa/wa/viewTVSeason?i=81826878&id=81864976&s=143441&uo=4\", \"previewUrl\":\"http://a1104.v.phobos.apple.com/us/r1000/014/Video/22/0c/75/mzm.kpbfijaj..640x480.h264lc.d2.p.m4v\", \"artworkUrl30\":\"http://a1.phobos.apple.com/us/r1000/004/Features/f1/c6/64/dj.ksjwcoow.jpg\", \"artworkUrl60\":\"http://a1.phobos.apple.com/us/r1000/004/Features/f1/c6/64/dj.ksjwcoow.80x60-75.jpg\", \"artworkUrl100\":\"http://a1.phobos.apple.com/us/r1000/004/Features/f1/c6/64/dj.ksjwcoow.133x100-99.jpg\", \"collectionPrice\":34.99, \"trackPrice\":1.99, \"releaseDate\":\"2004-09-29 07:00:00 Etc/GMT\", \"collectionExplicitness\":\"notExplicit\", \"trackExplicitness\":\"notExplicit\", \"discCount\":1, \"discNumber\":1, \"trackCount\":25, \"trackNumber\":2, \"trackTimeMillis\":2424466.0, \"country\":\"USA\", \"currency\":\"USD\", \"primaryGenreName\":\"Drama\", \"contentAdvisoryRating\":\"TV-14\"}, \n\ - {\"wrapperType\":\"track\", \"kind\":\"tv-episode\", \"artistId\":66012553, \"collectionId\":200507719, \"trackId\":258597091, \"artistName\":\"LOST\", \"collectionName\":\"LOST, Season 3\", \"trackName\":\"Through the Looking Glass, Pt. 1\", \"collectionCensoredName\":\"LOST, Season 3\", \"trackCensoredName\":\"Through the Looking Glass, Pt. 1\", \"artistViewUrl\":\"http://itunes.apple.com/WebObjects/MZStore.woa/wa/viewTVShow?id=66012553&uo=4\", \"collectionViewUrl\":\"http://itunes.apple.com/WebObjects/MZStore.woa/wa/viewTVSeason?i=258597091&id=200507719&s=143441&uo=4\", \"trackViewUrl\":\"http://itunes.apple.com/WebObjects/MZStore.woa/wa/viewTVSeason?i=258597091&id=200507719&s=143441&uo=4\", \"previewUrl\":\"http://a530.v.phobos.apple.com/us/r1000/037/Video/2a/70/ba/mzm.yzkfesdo..640x480.h264lc.d2.p.m4v\", \"artworkUrl30\":\"http://a1.phobos.apple.com/us/r30/Video/e6/f5/54/mzl.xrciclpo.jpg\", \"artworkUrl60\":\"http://a1.phobos.apple.com/us/r30/Video/e6/f5/54/mzl.xrciclpo.80x60-75.jpg\", \"artworkUrl100\":\"http://a1.phobos.apple.com/us/r30/Video/e6/f5/54/mzl.xrciclpo.133x100-99.jpg\", \"collectionPrice\":34.99, \"trackPrice\":1.99, \"releaseDate\":\"2007-05-23 07:00:00 Etc/GMT\", \"collectionExplicitness\":\"notExplicit\", \"trackExplicitness\":\"notExplicit\", \"discCount\":1, \"discNumber\":1, \"trackCount\":23, \"trackNumber\":22, \"trackTimeMillis\":2601517.0, \"country\":\"USA\", \"currency\":\"USD\", \"primaryGenreName\":\"Drama\", \"contentAdvisoryRating\":\"TV-14\"}]\n\ - }\n\n\n" - http_version: "1.1" diff --git a/spec/fixtures/ITunes_Client.yml b/spec/fixtures/ITunes_Client.yml deleted file mode 100644 index 04cf86b..0000000 --- a/spec/fixtures/ITunes_Client.yml +++ /dev/null @@ -1,1537 +0,0 @@ ---- -- !ruby/struct:VCR::HTTPInteraction - request: !ruby/struct:VCR::Request - method: :get - uri: http://ax.itunes.apple.com:80/WebObjects/MZStoreServices.woa/wa/wsLookup?id=396405320 - body: - headers: - accept: - - application/json - user-agent: - - ITunes Ruby Gem 0.4.1 - response: !ruby/struct:VCR::Response - status: !ruby/struct:VCR::ResponseStatus - code: 200 - message: OK - headers: - x-webobjects-loadaverage: - - "0" - x-apple-orig-url-path: - - /WebObjects/MZStoreServices.woa/wa/wsLookup?id=396405320 - x-apple-application-site: - - NWK - x-apple-partner: - - origin.0 - expires: - - Mon, 30 May 2011 02:37:02 GMT - content-type: - - text/javascript; charset=utf-8 - x-apple-max-age: - - "3600" - date: - - Mon, 30 May 2011 02:37:02 GMT - content-length: - - "873" - x-apple-application-instance: - - "1010004" - x-apple-woa-inbound-url: - - /WebObjects/MZStoreServices.woa/wa/wsLookup?id=396405320 - vary: - - X-Apple-Store-Front - cache-control: - - max-age=0, no-cache - pragma: - - no-cache - body: |+ - - - - { - "resultCount":1, - "results": [ - {"wrapperType":"collection", "collectionType":"Album", "artistId":79924040, "collectionId":396405320, "amgArtistId":null, "amgVideoArtistId":null, "artistName":"Various Artists", "collectionName":"Hold it Down - Single", "collectionCensoredName":"Hold it Down - Single", "artistViewUrl":null, "collectionViewUrl":"http://itunes.apple.com/us/album/hold-it-down-single/id396405320?uo=4", "artworkUrl60":"http://a3.mzstatic.com/us/r1000/023/Music/b2/fe/38/mzi.gtazuzmz.60x60-50.jpg", "artworkUrl100":"http://a1.mzstatic.com/us/r1000/023/Music/b2/fe/38/mzi.gtazuzmz.100x100-75.jpg", "collectionPrice":1.98, "collectionExplicitness":"notExplicit", "contentAdvisoryRating":null, "trackCount":2, "copyright":"2010 Well Rounded Records", "country":"USA", "currency":"USD", "releaseDate":"2010-10-25T07:00:00Z", "primaryGenreName":"Dance"}] - } - - - http_version: "1.1" -- !ruby/struct:VCR::HTTPInteraction - request: !ruby/struct:VCR::Request - method: :get - uri: http://ax.itunes.apple.com:80/WebObjects/MZStoreServices.woa/wa/wsLookup?amgArtistId=792844 - body: - headers: - accept: - - application/json - user-agent: - - ITunes Ruby Gem 0.4.1 - response: !ruby/struct:VCR::Response - status: !ruby/struct:VCR::ResponseStatus - code: 200 - message: OK - headers: - x-apple-orig-url-path: - - /WebObjects/MZStoreServices.woa/wa/wsLookup?amgArtistId=792844 - x-webobjects-loadaverage: - - "0" - x-apple-application-site: - - NWK - expires: - - Mon, 30 May 2011 02:37:02 GMT - x-apple-partner: - - origin.0 - content-type: - - text/javascript; charset=utf-8 - date: - - Mon, 30 May 2011 02:37:02 GMT - x-apple-max-age: - - "3600" - x-apple-woa-inbound-url: - - /WebObjects/MZStoreServices.woa/wa/wsLookup?amgArtistId=792844 - x-apple-application-instance: - - "1018003" - content-length: - - "312" - cache-control: - - max-age=0, no-cache - vary: - - X-Apple-Store-Front - pragma: - - no-cache - body: |+ - - - - { - "resultCount":1, - "results": [ - {"wrapperType":"artist", "artistType":"Artist", "artistName":"Burial", "artistLinkUrl":"http://itunes.apple.com/us/artist/burial/id203195653?uo=4", "artistId":203195653, "amgArtistId":792844, "amgVideoArtistId":null, "primaryGenreName":"Electronic", "primaryGenreId":7}] - } - - - http_version: "1.1" -- !ruby/struct:VCR::HTTPInteraction - request: !ruby/struct:VCR::Request - method: :get - uri: http://ax.itunes.apple.com:80/WebObjects/MZStoreServices.woa/wa/wsLookup?amgArtistId=468749,5723 - body: - headers: - accept: - - application/json - user-agent: - - ITunes Ruby Gem 0.4.1 - response: !ruby/struct:VCR::Response - status: !ruby/struct:VCR::ResponseStatus - code: 200 - message: OK - headers: - x-webobjects-loadaverage: - - "0" - x-apple-orig-url-path: - - /WebObjects/MZStoreServices.woa/wa/wsLookup?amgArtistId=468749%2C5723 - x-apple-application-site: - - NWK - x-apple-partner: - - origin.0 - expires: - - Mon, 30 May 2011 02:37:05 GMT - content-type: - - text/javascript; charset=utf-8 - x-apple-max-age: - - "3600" - date: - - Mon, 30 May 2011 02:37:05 GMT - content-length: - - "562" - x-apple-application-instance: - - "1025005" - x-apple-woa-inbound-url: - - /WebObjects/MZStoreServices.woa/wa/wsLookup?amgArtistId=468749%2C5723 - vary: - - X-Apple-Store-Front - cache-control: - - max-age=0, no-cache - pragma: - - no-cache - body: |+ - - - - { - "resultCount":2, - "results": [ - {"wrapperType":"artist", "artistType":"Artist", "artistName":"Jack Johnson", "artistLinkUrl":"http://itunes.apple.com/us/artist/jack-johnson/id909253?uo=4", "artistId":909253, "amgArtistId":468749, "amgVideoArtistId":null, "primaryGenreName":"Rock", "primaryGenreId":21}, - {"wrapperType":"artist", "artistType":"Artist", "artistName":"U2", "artistLinkUrl":"http://itunes.apple.com/us/artist/u2/id78500?uo=4", "artistId":78500, "amgArtistId":5723, "amgVideoArtistId":null, "primaryGenreName":"Rock", "primaryGenreId":21}] - } - - - http_version: "1.1" -- !ruby/struct:VCR::HTTPInteraction - request: !ruby/struct:VCR::Request - method: :get - uri: http://ax.itunes.apple.com:80/WebObjects/MZStoreServices.woa/wa/wsLookup?amgAlbumId=15197 - body: - headers: - accept: - - application/json - user-agent: - - ITunes Ruby Gem 0.4.1 - response: !ruby/struct:VCR::Response - status: !ruby/struct:VCR::ResponseStatus - code: 200 - message: OK - headers: - x-apple-orig-url-path: - - /WebObjects/MZStoreServices.woa/wa/wsLookup?amgAlbumId=15197 - x-webobjects-loadaverage: - - "0" - x-apple-application-site: - - NWK - expires: - - Mon, 30 May 2011 02:37:05 GMT - x-apple-partner: - - origin.0 - content-type: - - text/javascript; charset=utf-8 - date: - - Mon, 30 May 2011 02:37:05 GMT - x-apple-max-age: - - "3600" - x-apple-woa-inbound-url: - - /WebObjects/MZStoreServices.woa/wa/wsLookup?amgAlbumId=15197 - x-apple-application-instance: - - "1012004" - content-length: - - "905" - cache-control: - - max-age=0, no-cache - vary: - - X-Apple-Store-Front - pragma: - - no-cache - body: |+ - - - - { - "resultCount":1, - "results": [ - {"wrapperType":"collection", "collectionType":"Album", "artistId":577675, "collectionId":265615609, "amgArtistId":5142, "amgVideoArtistId":null, "artistName":"Wilson Pickett", "collectionName":"Hey Jude", "collectionCensoredName":"Hey Jude", "artistViewUrl":"http://itunes.apple.com/us/artist/wilson-pickett/id577675?uo=4", "collectionViewUrl":"http://itunes.apple.com/us/album/hey-jude/id265615609?uo=4", "artworkUrl60":"http://a2.mzstatic.com/us/r1000/008/Music/79/b3/3f/mzi.asgqsmzl.60x60-50.jpg", "artworkUrl100":"http://a4.mzstatic.com/us/r1000/008/Music/79/b3/3f/mzi.asgqsmzl.100x100-75.jpg", "collectionPrice":7.99, "collectionExplicitness":"notExplicit", "contentAdvisoryRating":null, "trackCount":11, "copyright":"1969 Atlantic Records Corporation", "country":"USA", "currency":"USD", "releaseDate":"2007-10-16T07:00:00Z", "primaryGenreName":"R&B/Soul"}] - } - - - http_version: "1.1" -- !ruby/struct:VCR::HTTPInteraction - request: !ruby/struct:VCR::Request - method: :get - uri: http://ax.itunes.apple.com:80/WebObjects/MZStoreServices.woa/wa/wsLookup?amgAlbumId=15197,15198 - body: - headers: - accept: - - application/json - user-agent: - - ITunes Ruby Gem 0.4.1 - response: !ruby/struct:VCR::Response - status: !ruby/struct:VCR::ResponseStatus - code: 200 - message: OK - headers: - x-webobjects-loadaverage: - - "0" - x-apple-orig-url-path: - - /WebObjects/MZStoreServices.woa/wa/wsLookup?amgAlbumId=15197%2C15198 - x-apple-application-site: - - NWK - x-apple-partner: - - origin.0 - expires: - - Mon, 30 May 2011 02:37:05 GMT - content-type: - - text/javascript; charset=utf-8 - x-apple-max-age: - - "3600" - date: - - Mon, 30 May 2011 02:37:05 GMT - content-length: - - "905" - x-apple-application-instance: - - "1038004" - x-apple-woa-inbound-url: - - /WebObjects/MZStoreServices.woa/wa/wsLookup?amgAlbumId=15197%2C15198 - vary: - - X-Apple-Store-Front - cache-control: - - max-age=0, no-cache - pragma: - - no-cache - body: |+ - - - - { - "resultCount":1, - "results": [ - {"wrapperType":"collection", "collectionType":"Album", "artistId":577675, "collectionId":265615609, "amgArtistId":5142, "amgVideoArtistId":null, "artistName":"Wilson Pickett", "collectionName":"Hey Jude", "collectionCensoredName":"Hey Jude", "artistViewUrl":"http://itunes.apple.com/us/artist/wilson-pickett/id577675?uo=4", "collectionViewUrl":"http://itunes.apple.com/us/album/hey-jude/id265615609?uo=4", "artworkUrl60":"http://a2.mzstatic.com/us/r1000/008/Music/79/b3/3f/mzi.asgqsmzl.60x60-50.jpg", "artworkUrl100":"http://a4.mzstatic.com/us/r1000/008/Music/79/b3/3f/mzi.asgqsmzl.100x100-75.jpg", "collectionPrice":7.99, "collectionExplicitness":"notExplicit", "contentAdvisoryRating":null, "trackCount":11, "copyright":"1969 Atlantic Records Corporation", "country":"USA", "currency":"USD", "releaseDate":"2007-10-16T07:00:00Z", "primaryGenreName":"R&B/Soul"}] - } - - - http_version: "1.1" -- !ruby/struct:VCR::HTTPInteraction - request: !ruby/struct:VCR::Request - method: :get - uri: http://ax.itunes.apple.com:80/WebObjects/MZStoreServices.woa/wa/wsLookup?upc=5024545486520 - body: - headers: - accept: - - application/json - user-agent: - - ITunes Ruby Gem 0.4.1 - response: !ruby/struct:VCR::Response - status: !ruby/struct:VCR::ResponseStatus - code: 200 - message: OK - headers: - x-apple-orig-url-path: - - /WebObjects/MZStoreServices.woa/wa/wsLookup?upc=5024545486520 - x-webobjects-loadaverage: - - "0" - x-apple-application-site: - - NWK - expires: - - Mon, 30 May 2011 02:37:06 GMT - x-apple-partner: - - origin.0 - content-type: - - text/javascript; charset=utf-8 - date: - - Mon, 30 May 2011 02:37:06 GMT - x-apple-max-age: - - "3600" - x-apple-woa-inbound-url: - - /WebObjects/MZStoreServices.woa/wa/wsLookup?upc=5024545486520 - x-apple-application-instance: - - "1031004" - content-length: - - "861" - cache-control: - - max-age=0, no-cache - vary: - - X-Apple-Store-Front - pragma: - - no-cache - body: |+ - - - - { - "resultCount":1, - "results": [ - {"wrapperType":"collection", "collectionType":"Album", "artistId":203195653, "collectionId":266624253, "amgArtistId":792844, "amgVideoArtistId":null, "artistName":"Burial", "collectionName":"Untrue", "collectionCensoredName":"Untrue", "artistViewUrl":"http://itunes.apple.com/us/artist/burial/id203195653?uo=4", "collectionViewUrl":"http://itunes.apple.com/us/album/untrue/id266624253?uo=4", "artworkUrl60":"http://a5.mzstatic.com/us/r30/Music/7b/dc/b0/mzi.beujtbms.60x60-50.jpg", "artworkUrl100":"http://a2.mzstatic.com/us/r30/Music/7b/dc/b0/mzi.beujtbms.100x100-75.jpg", "collectionPrice":9.99, "collectionExplicitness":"notExplicit", "contentAdvisoryRating":null, "trackCount":13, "copyright":"2007 Hyperdub", "country":"USA", "currency":"USD", "releaseDate":"2007-11-05T08:00:00Z", "primaryGenreName":"Electronic"}] - } - - - http_version: "1.1" -- !ruby/struct:VCR::HTTPInteraction - request: !ruby/struct:VCR::Request - method: :get - uri: http://ax.itunes.apple.com:80/WebObjects/MZStoreServices.woa/wa/wsLookup?isbn=9780316069359 - body: - headers: - accept: - - application/json - user-agent: - - ITunes Ruby Gem 0.4.1 - response: !ruby/struct:VCR::Response - status: !ruby/struct:VCR::ResponseStatus - code: 200 - message: OK - headers: - x-webobjects-loadaverage: - - "0" - x-apple-orig-url-path: - - /WebObjects/MZStoreServices.woa/wa/wsLookup?isbn=9780316069359 - x-apple-application-site: - - NWK - x-apple-partner: - - origin.0 - expires: - - Mon, 30 May 2011 02:37:06 GMT - content-type: - - text/javascript; charset=utf-8 - x-apple-max-age: - - "3600" - date: - - Mon, 30 May 2011 02:37:06 GMT - content-length: - - "801" - x-apple-application-instance: - - "1024001" - x-apple-woa-inbound-url: - - /WebObjects/MZStoreServices.woa/wa/wsLookup?isbn=9780316069359 - vary: - - X-Apple-Store-Front - cache-control: - - max-age=0, no-cache - pragma: - - no-cache - body: |+ - - - - { - "resultCount":1, - "results": [ - {"kind":"ebook", "artistId":2087642, "artistName":"Michael Connelly", "price":12.99, "description":null, "genreIds":["9032"], "releaseDate":"2011-04-05T07:00:00Z", "currency":"USD", "trackId":395519191, "trackName":"The Fifth Witness", "genres":["Mysteries & Thrillers"], "artistIds":[2087642], "artworkUrl60":"http://a2.mzstatic.com/us/r30/Publication/0e/42/e2/mzi.myhvxjuf.60x60-50.jpg", "artworkUrl100":"http://a5.mzstatic.com/us/r30/Publication/0e/42/e2/mzi.myhvxjuf.100x100-75.jpg", "artistViewUrl":"http://itunes.apple.com/us/artist/michael-connelly/id2087642?mt=11&uo=4", "trackCensoredName":"The Fifth Witness", "trackViewUrl":"http://itunes.apple.com/us/book/the-fifth-witness/id395519191?mt=11&uo=4", "averageUserRating":4.0, "userRatingCount":413}] - } - - - http_version: "1.1" -- !ruby/struct:VCR::HTTPInteraction - request: !ruby/struct:VCR::Request - method: :get - uri: http://ax.itunes.apple.com:80/WebObjects/MZStoreServices.woa/wa/wsSearch?limit=2&media=all&term=Michael%20Jackson - body: - headers: - accept: - - application/json - user-agent: - - ITunes Ruby Gem 0.4.1 - response: !ruby/struct:VCR::Response - status: !ruby/struct:VCR::ResponseStatus - code: 200 - message: OK - headers: - x-apple-orig-url-path: - - /WebObjects/MZStoreServices.woa/wa/wsSearch?term=Michael%20Jackson&media=all&limit=2 - x-webobjects-loadaverage: - - "0" - x-apple-application-site: - - NWK - expires: - - Mon, 30 May 2011 02:37:07 GMT - x-apple-partner: - - origin.0 - content-type: - - text/javascript; charset=utf-8 - date: - - Mon, 30 May 2011 02:37:07 GMT - x-apple-max-age: - - "3600" - x-apple-woa-inbound-url: - - /WebObjects/MZStoreServices.woa/wa/wsSearch?term=Michael%20Jackson&media=all&limit=2 - x-apple-application-instance: - - "1020001" - content-length: - - "2909" - cache-control: - - max-age=0, no-cache - vary: - - X-Apple-Store-Front - pragma: - - no-cache - body: |+ - - - - { - "resultCount":2, - "results": [ - {"wrapperType":"track", "kind":"feature-movie", "artistId":null, "collectionId":null, "trackId":336434787, "artistName":"Kenny Ortega", "collectionName":null, "trackName":"Michael Jackson's This Is It", "collectionCensoredName":null, "trackCensoredName":"Michael Jackson's This Is It", "artistViewUrl":null, "collectionViewUrl":null, "trackViewUrl":"http://itunes.apple.com/us/movie/michael-jacksons-this-is-it/id336434787?uo=4", "previewUrl":"http://a827.v.phobos.apple.com/us/r1000/042/Video/d1/58/2f/mzm.hpsxuujy..640x478.h264lc.d2.p.m4v", "artworkUrl30":"http://a4.mzstatic.com/us/r1000/048/Video/f7/5a/70/mzi.lscbhwnt.30x30-50.jpg", "artworkUrl60":"http://a1.mzstatic.com/us/r1000/048/Video/f7/5a/70/mzi.lscbhwnt.60x60-50.jpg", "artworkUrl100":"http://a3.mzstatic.com/us/r1000/048/Video/f7/5a/70/mzi.lscbhwnt.100x100-75.jpg", "collectionPrice":9.99, "trackPrice":9.99, "releaseDate":"2010-01-26T08:00:00Z", "collectionExplicitness":"notExplicit", "trackExplicitness":"notExplicit", "discCount":null, "discNumber":null, "trackCount":null, "trackNumber":null, "trackTimeMillis":6676927.0, "country":"USA", "currency":"USD", "primaryGenreName":"Music Documentaries", "contentAdvisoryRating":"PG", "shortDescription":null, "longDescription":null}, - {"wrapperType":"track", "kind":"feature-movie", "artistId":null, "collectionId":null, "trackId":303297833, "artistName":"Sidney Lumet", "collectionName":null, "trackName":"The Wiz", "collectionCensoredName":null, "trackCensoredName":"The Wiz", "artistViewUrl":null, "collectionViewUrl":null, "trackViewUrl":"http://itunes.apple.com/us/movie/the-wiz/id303297833?uo=4", "previewUrl":"http://a1168.v.phobos.apple.com/us/r1000/030/Video/aa/01/a7/mzm.ynvopckp..640x480.h264lc.d2.p.m4v", "artworkUrl30":"http://a4.mzstatic.com/us/r1000/034/Video/7e/29/e7/mzi.nthrhtzu.30x30-50.jpg", "artworkUrl60":"http://a1.mzstatic.com/us/r1000/034/Video/7e/29/e7/mzi.nthrhtzu.60x60-50.jpg", "artworkUrl100":"http://a3.mzstatic.com/us/r1000/034/Video/7e/29/e7/mzi.nthrhtzu.100x100-75.jpg", "collectionPrice":9.99, "trackPrice":9.99, "releaseDate":"1999-04-13T07:00:00Z", "collectionExplicitness":"notExplicit", "trackExplicitness":"notExplicit", "discCount":null, "discNumber":null, "trackCount":null, "trackNumber":null, "trackTimeMillis":8049440.0, "country":"USA", "currency":"USD", "primaryGenreName":"Musicals", "contentAdvisoryRating":"G", "shortDescription":null, - "longDescription":"Ease on down the yellow-brick road with The Wiz, starring superstars Diana Ross and Michael Jackson! Relive all of the magic of this beloved musical when Dorothy is whisked away to the enchanting wonderland of Oz, where she encounters the Scarecrow, the Tinman and the Lion. The Wiz features spectacular musical numbers from legendary producer Quincy Jones and an all-star cast including Lena Horne, Richard Pryor, Nipsey Russell and Ted Ross."}] - } - - - http_version: "1.1" -- !ruby/struct:VCR::HTTPInteraction - request: !ruby/struct:VCR::Request - method: :get - uri: http://ax.itunes.apple.com:80/WebObjects/MZStoreServices.woa/wa/wsSearch?media=all&term=Michael%20Jackson - body: - headers: - accept: - - application/json - user-agent: - - ITunes Ruby Gem 0.4.1 - response: !ruby/struct:VCR::Response - status: !ruby/struct:VCR::ResponseStatus - code: 200 - message: OK - headers: - x-webobjects-loadaverage: - - "0" - x-apple-orig-url-path: - - /WebObjects/MZStoreServices.woa/wa/wsSearch?term=Michael%20Jackson&media=all - x-apple-application-site: - - NWK - x-apple-partner: - - origin.0 - expires: - - Mon, 30 May 2011 02:37:08 GMT - content-type: - - text/javascript; charset=utf-8 - connection: - - Transfer-Encoding - x-apple-max-age: - - "3600" - date: - - Mon, 30 May 2011 02:37:08 GMT - x-apple-application-instance: - - "1014002" - x-apple-woa-inbound-url: - - /WebObjects/MZStoreServices.woa/wa/wsSearch?term=Michael%20Jackson&media=all - vary: - - X-Apple-Store-Front - cache-control: - - max-age=0, no-cache - transfer-encoding: - - chunked - pragma: - - no-cache - body: |+ - - - - { - "resultCount":50, - "results": [ - {"wrapperType":"track", "kind":"music-video", "artistId":32940, "collectionId":273047558, "trackId":273047865, "artistName":"Michael Jackson", "collectionName":"Thriller (25th Anniversary, Zombie Cover)", "trackName":"Thriller", "collectionCensoredName":"Thriller (25th Anniversary, Zombie Cover)", "trackCensoredName":"Thriller", "artistViewUrl":"http://itunes.apple.com/us/artist/michael-jackson/id32940?mt=11&uo=4", "collectionViewUrl":"http://itunes.apple.com/us/music-video/thriller/id273047865?uo=4", "trackViewUrl":"http://itunes.apple.com/us/music-video/thriller/id273047865?uo=4", "previewUrl":"http://a678.v.phobos.apple.com/us/r1000/026/Video/76/c5/30/mzm.dirycydw..640x464.h264lc.u.p.m4v", "artworkUrl30":"http://a2.mzstatic.com/us/r1000/059/Music/ff/ad/55/mzi.hkawbdou.40x30-75.jpg", "artworkUrl60":"http://a3.mzstatic.com/us/r1000/059/Music/ff/ad/55/mzi.hkawbdou.80x60-75.jpg", "artworkUrl100":"http://a2.mzstatic.com/us/r1000/059/Music/ff/ad/55/mzi.hkawbdou.100x100-75.jpg", "collectionPrice":13.99, "trackPrice":-1.00, "releaseDate":"2008-02-11T08:00:00Z", "collectionExplicitness":"notExplicit", "trackExplicitness":"notExplicit", "discCount":1, "discNumber":1, "trackCount":21, "trackNumber":20, "trackTimeMillis":813113.0, "country":"USA", "currency":"USD", "primaryGenreName":"Pop", "contentAdvisoryRating":null, "shortDescription":null, "longDescription":null}, - {"wrapperType":"track", "kind":"music-video", "artistId":32940, "collectionId":273047558, "trackId":273047584, "artistName":"Michael Jackson", "collectionName":"Thriller (25th Anniversary, Zombie Cover)", "trackName":"Billie Jean", "collectionCensoredName":"Thriller (25th Anniversary, Zombie Cover)", "trackCensoredName":"Billie Jean", "artistViewUrl":"http://itunes.apple.com/us/artist/michael-jackson/id32940?mt=11&uo=4", "collectionViewUrl":"http://itunes.apple.com/us/music-video/billie-jean/id273047584?uo=4", "trackViewUrl":"http://itunes.apple.com/us/music-video/billie-jean/id273047584?uo=4", "previewUrl":"http://a1775.v.phobos.apple.com/us/r1000/032/Video/9c/00/7f/mzm.elmvrhkw..640x464.h264lc.u.p.m4v", "artworkUrl30":"http://a4.mzstatic.com/us/r1000/039/Music/c7/b3/1d/mzi.daodeivd.40x30-75.jpg", "artworkUrl60":"http://a2.mzstatic.com/us/r1000/039/Music/c7/b3/1d/mzi.daodeivd.80x60-75.jpg", "artworkUrl100":"http://a5.mzstatic.com/us/r1000/039/Music/c7/b3/1d/mzi.daodeivd.100x100-75.jpg", "collectionPrice":13.99, "trackPrice":-1.00, "releaseDate":"2008-02-11T08:00:00Z", "collectionExplicitness":"notExplicit", "trackExplicitness":"notExplicit", "discCount":1, "discNumber":1, "trackCount":21, "trackNumber":18, "trackTimeMillis":294289.0, "country":"USA", "currency":"USD", "primaryGenreName":"Pop", "contentAdvisoryRating":null, "shortDescription":null, "longDescription":null}, - {"wrapperType":"track", "kind":"music-video", "artistId":32940, "collectionId":273047558, "trackId":273047811, "artistName":"Michael Jackson", "collectionName":"Thriller (25th Anniversary, Zombie Cover)", "trackName":"Beat It", "collectionCensoredName":"Thriller (25th Anniversary, Zombie Cover)", "trackCensoredName":"Beat It (Restored Version)", "artistViewUrl":"http://itunes.apple.com/us/artist/michael-jackson/id32940?mt=11&uo=4", "collectionViewUrl":"http://itunes.apple.com/us/music-video/beat-it-restored-version/id273047811?uo=4", "trackViewUrl":"http://itunes.apple.com/us/music-video/beat-it-restored-version/id273047811?uo=4", "previewUrl":"http://a1413.v.phobos.apple.com/us/r1000/017/Video/e5/56/44/mzm.jmnoukiv..640x464.h264lc.u.p.m4v", "artworkUrl30":"http://a4.mzstatic.com/us/r1000/017/Music/1d/64/a0/mzi.clyayzus.40x30-75.jpg", "artworkUrl60":"http://a2.mzstatic.com/us/r1000/017/Music/1d/64/a0/mzi.clyayzus.80x60-75.jpg", "artworkUrl100":"http://a3.mzstatic.com/us/r1000/017/Music/1d/64/a0/mzi.clyayzus.100x100-75.jpg", "collectionPrice":13.99, "trackPrice":-1.00, "releaseDate":"2008-02-11T08:00:00Z", "collectionExplicitness":"notExplicit", "trackExplicitness":"notExplicit", "discCount":1, "discNumber":1, "trackCount":21, "trackNumber":19, "trackTimeMillis":296751.0, "country":"USA", "currency":"USD", "primaryGenreName":"Pop", "contentAdvisoryRating":null, "shortDescription":null, "longDescription":null}, - {"wrapperType":"track", "kind":"music-video", "artistId":32940, "collectionId":273047558, "trackId":273047868, "artistName":"Michael Jackson", "collectionName":"Thriller (25th Anniversary, Zombie Cover)", "trackName":"Billie Jean", "collectionCensoredName":"Thriller (25th Anniversary, Zombie Cover)", "trackCensoredName":"Billie Jean (Live)", "artistViewUrl":"http://itunes.apple.com/us/artist/michael-jackson/id32940?mt=11&uo=4", "collectionViewUrl":"http://itunes.apple.com/us/music-video/billie-jean-live/id273047868?uo=4", "trackViewUrl":"http://itunes.apple.com/us/music-video/billie-jean-live/id273047868?uo=4", "previewUrl":"http://a736.v.phobos.apple.com/us/r1000/057/Video/9b/08/c2/mzi.etduegua..640x464.h264lc.d2.p.m4v", "artworkUrl30":"http://a3.mzstatic.com/us/r1000/009/Music/9e/4b/a6/mzi.hemlymxt.40x30-75.jpg", "artworkUrl60":"http://a1.mzstatic.com/us/r1000/009/Music/9e/4b/a6/mzi.hemlymxt.80x60-75.jpg", "artworkUrl100":"http://a3.mzstatic.com/us/r1000/009/Music/9e/4b/a6/mzi.hemlymxt.100x100-75.jpg", "collectionPrice":13.99, "trackPrice":-1.00, "releaseDate":"2008-02-11T08:00:00Z", "collectionExplicitness":"notExplicit", "trackExplicitness":"notExplicit", "discCount":1, "discNumber":1, "trackCount":21, "trackNumber":21, "trackTimeMillis":296983.0, "country":"USA", "currency":"USD", "primaryGenreName":"Pop", "contentAdvisoryRating":null, "shortDescription":null, "longDescription":null}, - {"wrapperType":"track", "kind":"music-video", "artistId":32940, "collectionId":null, "trackId":287857650, "artistName":"Michael Jackson", "collectionName":null, "trackName":"Thriller", "collectionCensoredName":null, "trackCensoredName":"Thriller", "artistViewUrl":"http://itunes.apple.com/us/artist/michael-jackson/id32940?mt=11&uo=4", "collectionViewUrl":null, "trackViewUrl":"http://itunes.apple.com/us/music-video/thriller/id287857650?uo=4", "previewUrl":"http://a1801.v.phobos.apple.com/us/r1000/025/Video/8e/c6/ed/mzm.nuczommy..640x464.h264lc.u.p.m4v", "artworkUrl30":"http://a3.mzstatic.com/us/r1000/036/Music/0c/5b/49/mzi.kqivnzja.40x30-75.jpg", "artworkUrl60":"http://a4.mzstatic.com/us/r1000/036/Music/0c/5b/49/mzi.kqivnzja.80x60-75.jpg", "artworkUrl100":"http://a1.mzstatic.com/us/r1000/036/Music/0c/5b/49/mzi.kqivnzja.100x100-75.jpg", "collectionPrice":1.99, "trackPrice":1.99, "releaseDate":"2004-09-01T07:00:00Z", "collectionExplicitness":"notExplicit", "trackExplicitness":"notExplicit", "discCount":null, "discNumber":null, "trackCount":null, "trackNumber":null, "trackTimeMillis":822241.0, "country":"USA", "currency":"USD", "primaryGenreName":"Pop", "contentAdvisoryRating":null, "shortDescription":null, "longDescription":null}, - {"wrapperType":"track", "kind":"music-video", "artistId":32940, "collectionId":273048762, "trackId":273048822, "artistName":"Michael Jackson", "collectionName":"Thriller (25th Anniversary) [Deluxe Edition]", "trackName":"Thriller", "collectionCensoredName":"Thriller (25th Anniversary) [Deluxe Edition]", "trackCensoredName":"Thriller", "artistViewUrl":"http://itunes.apple.com/us/artist/michael-jackson/id32940?mt=11&uo=4", "collectionViewUrl":"http://itunes.apple.com/us/music-video/thriller/id273048822?uo=4", "trackViewUrl":"http://itunes.apple.com/us/music-video/thriller/id273048822?uo=4", "previewUrl":"http://a1081.v.phobos.apple.com/us/r1000/040/Video/a4/8d/b9/mzm.fmjavkev..640x464.h264lc.u.p.m4v", "artworkUrl30":"http://a4.mzstatic.com/us/r1000/043/Video/90/a4/e6/dj.iubeccha.40x30-75.jpg", "artworkUrl60":"http://a5.mzstatic.com/us/r1000/043/Video/90/a4/e6/dj.iubeccha.80x60-75.jpg", "artworkUrl100":"http://a4.mzstatic.com/us/r1000/043/Video/90/a4/e6/dj.iubeccha.100x100-75.jpg", "collectionPrice":19.99, "trackPrice":-1.00, "releaseDate":"2008-02-11T08:00:00Z", "collectionExplicitness":"notExplicit", "trackExplicitness":"notExplicit", "discCount":1, "discNumber":1, "trackCount":35, "trackNumber":34, "trackTimeMillis":813213.0, "country":"USA", "currency":"USD", "primaryGenreName":"Pop", "contentAdvisoryRating":null, "shortDescription":null, "longDescription":null}, - {"wrapperType":"track", "kind":"music-video", "artistId":32940, "collectionId":273048762, "trackId":273048821, "artistName":"Michael Jackson", "collectionName":"Thriller (25th Anniversary) [Deluxe Edition]", "trackName":"Beat It", "collectionCensoredName":"Thriller (25th Anniversary) [Deluxe Edition]", "trackCensoredName":"Beat It (Digitally Restored Version)", "artistViewUrl":"http://itunes.apple.com/us/artist/michael-jackson/id32940?mt=11&uo=4", "collectionViewUrl":"http://itunes.apple.com/us/music-video/beat-it-digitally-restored/id273048821?uo=4", "trackViewUrl":"http://itunes.apple.com/us/music-video/beat-it-digitally-restored/id273048821?uo=4", "previewUrl":"http://a1564.v.phobos.apple.com/us/r1000/022/Video/05/c0/da/mzm.zwvuabfc..640x464.h264lc.u.p.m4v", "artworkUrl30":"http://a2.mzstatic.com/us/r1000/002/Video/00/58/71/dj.kftbbggw.40x30-75.jpg", "artworkUrl60":"http://a5.mzstatic.com/us/r1000/002/Video/00/58/71/dj.kftbbggw.80x60-75.jpg", "artworkUrl100":"http://a4.mzstatic.com/us/r1000/002/Video/00/58/71/dj.kftbbggw.100x100-75.jpg", "collectionPrice":19.99, "trackPrice":-1.00, "releaseDate":"2008-02-11T08:00:00Z", "collectionExplicitness":"notExplicit", "trackExplicitness":"notExplicit", "discCount":1, "discNumber":1, "trackCount":35, "trackNumber":33, "trackTimeMillis":296796.0, "country":"USA", "currency":"USD", "primaryGenreName":"Pop", "contentAdvisoryRating":null, "shortDescription":null, "longDescription":null}, - {"wrapperType":"track", "kind":"music-video", "artistId":32940, "collectionId":null, "trackId":254019450, "artistName":"Michael Jackson", "collectionName":null, "trackName":"Remember the Time", "collectionCensoredName":null, "trackCensoredName":"Remember the Time", "artistViewUrl":"http://itunes.apple.com/us/artist/michael-jackson/id32940?mt=11&uo=4", "collectionViewUrl":null, "trackViewUrl":"http://itunes.apple.com/us/music-video/remember-the-time/id254019450?uo=4", "previewUrl":"http://a297.v.phobos.apple.com/us/r1000/005/Video/f7/97/81/mzm.biyzupkb..640x344.h264lc.u.p.m4v", "artworkUrl30":"http://a5.mzstatic.com/us/r1000/008/Music/64/a4/88/mzi.xgvlmnfo.40x30-75.jpg", "artworkUrl60":"http://a3.mzstatic.com/us/r1000/008/Music/64/a4/88/mzi.xgvlmnfo.80x60-75.jpg", "artworkUrl100":"http://a3.mzstatic.com/us/r1000/008/Music/64/a4/88/mzi.xgvlmnfo.100x100-75.jpg", "collectionPrice":1.99, "trackPrice":1.99, "releaseDate":"2003-04-28T07:00:00Z", "collectionExplicitness":"notExplicit", "trackExplicitness":"notExplicit", "discCount":null, "discNumber":null, "trackCount":null, "trackNumber":null, "trackTimeMillis":550984.0, "country":"USA", "currency":"USD", "primaryGenreName":"Pop", "contentAdvisoryRating":null, "shortDescription":null, "longDescription":null}, - {"wrapperType":"track", "kind":"music-video", "artistId":32940, "collectionId":405410751, "trackId":405410806, "artistName":"Michael Jackson", "collectionName":"Michael Jackson's Vision", "trackName":"Smooth Criminal", "collectionCensoredName":"Michael Jackson's Vision", "trackCensoredName":"Smooth Criminal (Michael Jackson's Vision)", "artistViewUrl":"http://itunes.apple.com/us/artist/michael-jackson/id32940?mt=11&uo=4", "collectionViewUrl":"http://itunes.apple.com/us/music-video/smooth-criminal-michael-jacksons/id405410806?uo=4", "trackViewUrl":"http://itunes.apple.com/us/music-video/smooth-criminal-michael-jacksons/id405410806?uo=4", "previewUrl":"http://a1760.v.phobos.apple.com/us/r1000/043/Video/df/80/bb/mzm.vteusexm..640x344.h264lc.u.p.m4v", "artworkUrl30":"http://a3.mzstatic.com/us/r1000/050/Video/65/dd/d6/mzi.xfandoof.40x30-75.jpg", "artworkUrl60":"http://a1.mzstatic.com/us/r1000/050/Video/65/dd/d6/mzi.xfandoof.80x60-75.jpg", "artworkUrl100":"http://a1.mzstatic.com/us/r1000/050/Video/65/dd/d6/mzi.xfandoof.100x100-75.jpg", "collectionPrice":29.99, "trackPrice":1.99, "releaseDate":"2010-11-19T08:00:00Z", "collectionExplicitness":"notExplicit", "trackExplicitness":"notExplicit", "discCount":1, "discNumber":1, "trackCount":43, "trackNumber":11, "trackTimeMillis":588254.0, "country":"USA", "currency":"USD", "primaryGenreName":"Pop", "contentAdvisoryRating":null, "shortDescription":null, "longDescription":null}, - {"wrapperType":"track", "kind":"music-video", "artistId":32940, "collectionId":273048762, "trackId":273048816, "artistName":"Michael Jackson", "collectionName":"Thriller (25th Anniversary) [Deluxe Edition]", "trackName":"Billie Jean", "collectionCensoredName":"Thriller (25th Anniversary) [Deluxe Edition]", "trackCensoredName":"Billie Jean", "artistViewUrl":"http://itunes.apple.com/us/artist/michael-jackson/id32940?mt=11&uo=4", "collectionViewUrl":"http://itunes.apple.com/us/music-video/billie-jean/id273048816?uo=4", "trackViewUrl":"http://itunes.apple.com/us/music-video/billie-jean/id273048816?uo=4", "previewUrl":"http://a940.v.phobos.apple.com/us/r1000/060/Video/17/82/3c/mzm.ariaqgbj..640x464.h264lc.u.p.m4v", "artworkUrl30":"http://a4.mzstatic.com/us/r1000/016/Video/39/85/25/dj.akikrmmk.40x30-75.jpg", "artworkUrl60":"http://a5.mzstatic.com/us/r1000/016/Video/39/85/25/dj.akikrmmk.80x60-75.jpg", "artworkUrl100":"http://a2.mzstatic.com/us/r1000/016/Video/39/85/25/dj.akikrmmk.100x100-75.jpg", "collectionPrice":19.99, "trackPrice":-1.00, "releaseDate":"2008-02-11T08:00:00Z", "collectionExplicitness":"notExplicit", "trackExplicitness":"notExplicit", "discCount":1, "discNumber":1, "trackCount":35, "trackNumber":32, "trackTimeMillis":294361.0, "country":"USA", "currency":"USD", "primaryGenreName":"Pop", "contentAdvisoryRating":null, "shortDescription":null, "longDescription":null}, - {"wrapperType":"track", "kind":"music-video", "artistId":32940, "collectionId":273048762, "trackId":273048848, "artistName":"Michael Jackson", "collectionName":"Thriller (25th Anniversary) [Deluxe Edition]", "trackName":"Billie Jean", "collectionCensoredName":"Thriller (25th Anniversary) [Deluxe Edition]", "trackCensoredName":"Billie Jean (Live)", "artistViewUrl":"http://itunes.apple.com/us/artist/michael-jackson/id32940?mt=11&uo=4", "collectionViewUrl":"http://itunes.apple.com/us/music-video/billie-jean-live/id273048848?uo=4", "trackViewUrl":"http://itunes.apple.com/us/music-video/billie-jean-live/id273048848?uo=4", "previewUrl":"http://a1862.v.phobos.apple.com/us/r1000/051/Video/e1/d6/37/mzi.rtdapdxa..640x464.h264lc.d2.p.m4v", "artworkUrl30":"http://a1.mzstatic.com/us/r1000/053/Video/2f/bb/dd/dj.ipoupavy.40x30-75.jpg", "artworkUrl60":"http://a2.mzstatic.com/us/r1000/053/Video/2f/bb/dd/dj.ipoupavy.80x60-75.jpg", "artworkUrl100":"http://a5.mzstatic.com/us/r1000/053/Video/2f/bb/dd/dj.ipoupavy.100x100-75.jpg", "collectionPrice":19.99, "trackPrice":-1.00, "releaseDate":"2008-02-11T08:00:00Z", "collectionExplicitness":"notExplicit", "trackExplicitness":"notExplicit", "discCount":1, "discNumber":1, "trackCount":35, "trackNumber":35, "trackTimeMillis":296997.0, "country":"USA", "currency":"USD", "primaryGenreName":"Pop", "contentAdvisoryRating":null, "shortDescription":null, "longDescription":null}, - {"wrapperType":"track", "kind":"music-video", "artistId":32940, "collectionId":null, "trackId":281281727, "artistName":"Michael Jackson", "collectionName":null, "trackName":"Bad", "collectionCensoredName":null, "trackCensoredName":"Bad", "artistViewUrl":"http://itunes.apple.com/us/artist/michael-jackson/id32940?mt=11&uo=4", "collectionViewUrl":null, "trackViewUrl":"http://itunes.apple.com/us/music-video/bad/id281281727?uo=4", "previewUrl":"http://a208.v.phobos.apple.com/us/r1000/023/Video/19/c1/69/mzm.gxitrsbz..640x464.h264lc.u.p.m4v", "artworkUrl30":"http://a5.mzstatic.com/us/r1000/037/Music/80/46/91/mzi.bdxyutvm.40x30-75.jpg", "artworkUrl60":"http://a1.mzstatic.com/us/r1000/037/Music/80/46/91/mzi.bdxyutvm.80x60-75.jpg", "artworkUrl100":"http://a3.mzstatic.com/us/r1000/037/Music/80/46/91/mzi.bdxyutvm.100x100-75.jpg", "collectionPrice":1.99, "trackPrice":1.99, "releaseDate":"2004-09-01T07:00:00Z", "collectionExplicitness":"notExplicit", "trackExplicitness":"notExplicit", "discCount":null, "discNumber":null, "trackCount":null, "trackNumber":null, "trackTimeMillis":259761.0, "country":"USA", "currency":"USD", "primaryGenreName":"Music Videos", "contentAdvisoryRating":null, "shortDescription":null, "longDescription":null}, - {"wrapperType":"track", "kind":"music-video", "artistId":32940, "collectionId":null, "trackId":408741542, "artistName":"Michael Jackson", "collectionName":null, "trackName":"Hold My Hand (Duet With Akon)", "collectionCensoredName":null, "trackCensoredName":"Hold My Hand (Duet With Akon)", "artistViewUrl":"http://itunes.apple.com/us/artist/michael-jackson/id32940?mt=11&uo=4", "collectionViewUrl":null, "trackViewUrl":"http://itunes.apple.com/us/music-video/hold-my-hand-duet-with-akon/id408741542?uo=4", "previewUrl":"http://a786.v.phobos.apple.com/us/r1000/018/Video/a9/76/a3/mzm.ykzewrrt..640x360.h264lc.u.p.m4v", "artworkUrl30":"http://a2.mzstatic.com/us/r1000/043/Video/1a/45/39/mzi.zbcqwvid.40x30-75.jpg", "artworkUrl60":"http://a5.mzstatic.com/us/r1000/043/Video/1a/45/39/mzi.zbcqwvid.80x60-75.jpg", "artworkUrl100":"http://a5.mzstatic.com/us/r1000/043/Video/1a/45/39/mzi.zbcqwvid.100x100-75.jpg", "collectionPrice":1.99, "trackPrice":1.99, "releaseDate":"2010-12-10T08:00:00Z", "collectionExplicitness":"notExplicit", "trackExplicitness":"notExplicit", "discCount":null, "discNumber":null, "trackCount":null, "trackNumber":null, "trackTimeMillis":223181.0, "country":"USA", "currency":"USD", "primaryGenreName":"Pop", "contentAdvisoryRating":null, "shortDescription":null, "longDescription":null}, - {"wrapperType":"track", "kind":"music-video", "artistId":32940, "collectionId":405410751, "trackId":405410791, "artistName":"Michael Jackson", "collectionName":"Michael Jackson's Vision", "trackName":"Beat It", "collectionCensoredName":"Michael Jackson's Vision", "trackCensoredName":"Beat It (Michael Jackson's Vision)", "artistViewUrl":"http://itunes.apple.com/us/artist/michael-jackson/id32940?mt=11&uo=4", "collectionViewUrl":"http://itunes.apple.com/us/music-video/beat-it-michael-jacksons-vision/id405410791?uo=4", "trackViewUrl":"http://itunes.apple.com/us/music-video/beat-it-michael-jacksons-vision/id405410791?uo=4", "previewUrl":"http://a433.v.phobos.apple.com/us/r1000/041/Video/28/95/bb/mzm.vigophns..640x344.h264lc.u.p.m4v", "artworkUrl30":"http://a1.mzstatic.com/us/r1000/036/Video/ea/ce/6a/mzi.hidgxdfd.40x30-75.jpg", "artworkUrl60":"http://a2.mzstatic.com/us/r1000/036/Video/ea/ce/6a/mzi.hidgxdfd.80x60-75.jpg", "artworkUrl100":"http://a5.mzstatic.com/us/r1000/036/Video/ea/ce/6a/mzi.hidgxdfd.100x100-75.jpg", "collectionPrice":29.99, "trackPrice":1.99, "releaseDate":"2010-11-19T08:00:00Z", "collectionExplicitness":"notExplicit", "trackExplicitness":"notExplicit", "discCount":1, "discNumber":1, "trackCount":43, "trackNumber":5, "trackTimeMillis":307040.0, "country":"USA", "currency":"USD", "primaryGenreName":"Pop", "contentAdvisoryRating":null, "shortDescription":null, "longDescription":null}, - {"wrapperType":"track", "kind":"music-video", "artistId":32940, "collectionId":405410751, "trackId":405411252, "artistName":"Michael Jackson", "collectionName":"Michael Jackson's Vision", "trackName":"You Rock My World", "collectionCensoredName":"Michael Jackson's Vision", "trackCensoredName":"You Rock My World (Michael Jackson's Vision)", "artistViewUrl":"http://itunes.apple.com/us/artist/michael-jackson/id32940?mt=11&uo=4", "collectionViewUrl":"http://itunes.apple.com/us/music-video/you-rock-my-world-michael/id405411252?uo=4", "trackViewUrl":"http://itunes.apple.com/us/music-video/you-rock-my-world-michael/id405411252?uo=4", "previewUrl":"http://a1895.v.phobos.apple.com/us/r1000/011/Video/47/da/04/mzm.zglsvtfi..640x360.h264lc.u.p.m4v", "artworkUrl30":"http://a4.mzstatic.com/us/r1000/057/Video/34/c8/ca/mzi.eayfants.40x30-75.jpg", "artworkUrl60":"http://a2.mzstatic.com/us/r1000/057/Video/34/c8/ca/mzi.eayfants.80x60-75.jpg", "artworkUrl100":"http://a1.mzstatic.com/us/r1000/057/Video/34/c8/ca/mzi.eayfants.100x100-75.jpg", "collectionPrice":29.99, "trackPrice":1.99, "releaseDate":"2010-11-19T08:00:00Z", "collectionExplicitness":"notExplicit", "trackExplicitness":"notExplicit", "discCount":1, "discNumber":1, "trackCount":43, "trackNumber":34, "trackTimeMillis":832699.0, "country":"USA", "currency":"USD", "primaryGenreName":"Pop", "contentAdvisoryRating":null, "shortDescription":null, "longDescription":null}, - {"wrapperType":"track", "kind":"music-video", "artistId":32940, "collectionId":405410751, "trackId":405410792, "artistName":"Michael Jackson", "collectionName":"Michael Jackson's Vision", "trackName":"Thriller", "collectionCensoredName":"Michael Jackson's Vision", "trackCensoredName":"Thriller (Michael Jackson's Vision)", "artistViewUrl":"http://itunes.apple.com/us/artist/michael-jackson/id32940?mt=11&uo=4", "collectionViewUrl":"http://itunes.apple.com/us/music-video/thriller-michael-jacksons/id405410792?uo=4", "trackViewUrl":"http://itunes.apple.com/us/music-video/thriller-michael-jacksons/id405410792?uo=4", "previewUrl":"http://a1663.v.phobos.apple.com/us/r1000/013/Video/9f/06/45/mzm.cykppjis..640x344.h264lc.u.p.m4v", "artworkUrl30":"http://a4.mzstatic.com/us/r1000/000/Video/79/bf/2e/mzi.dntwzaaw.40x30-75.jpg", "artworkUrl60":"http://a5.mzstatic.com/us/r1000/000/Video/79/bf/2e/mzi.dntwzaaw.80x60-75.jpg", "artworkUrl100":"http://a1.mzstatic.com/us/r1000/000/Video/79/bf/2e/mzi.dntwzaaw.100x100-75.jpg", "collectionPrice":29.99, "trackPrice":1.99, "releaseDate":"2010-11-19T08:00:00Z", "collectionExplicitness":"notExplicit", "trackExplicitness":"notExplicit", "discCount":1, "discNumber":1, "trackCount":43, "trackNumber":6, "trackTimeMillis":832932.0, "country":"USA", "currency":"USD", "primaryGenreName":"Pop", "contentAdvisoryRating":null, "shortDescription":null, "longDescription":null}, - {"wrapperType":"track", "kind":"music-video", "artistId":32940, "collectionId":405410751, "trackId":405410813, "artistName":"Michael Jackson", "collectionName":"Michael Jackson's Vision", "trackName":"Black or White", "collectionCensoredName":"Michael Jackson's Vision", "trackCensoredName":"Black or White (Michael Jackson's Vision)", "artistViewUrl":"http://itunes.apple.com/us/artist/michael-jackson/id32940?mt=11&uo=4", "collectionViewUrl":"http://itunes.apple.com/us/music-video/black-or-white-michael-jacksons/id405410813?uo=4", "trackViewUrl":"http://itunes.apple.com/us/music-video/black-or-white-michael-jacksons/id405410813?uo=4", "previewUrl":"http://a1538.v.phobos.apple.com/us/r1000/058/Video/b7/7c/c8/mzm.uduuwbgd..640x344.h264lc.u.p.m4v", "artworkUrl30":"http://a3.mzstatic.com/us/r1000/025/Video/c6/d7/dd/mzi.ciyunske.40x30-75.jpg", "artworkUrl60":"http://a4.mzstatic.com/us/r1000/025/Video/c6/d7/dd/mzi.ciyunske.80x60-75.jpg", "artworkUrl100":"http://a5.mzstatic.com/us/r1000/025/Video/c6/d7/dd/mzi.ciyunske.100x100-75.jpg", "collectionPrice":29.99, "trackPrice":1.99, "releaseDate":"2010-11-19T08:00:00Z", "collectionExplicitness":"notExplicit", "trackExplicitness":"notExplicit", "discCount":1, "discNumber":1, "trackCount":43, "trackNumber":17, "trackTimeMillis":669069.0, "country":"USA", "currency":"USD", "primaryGenreName":"Pop", "contentAdvisoryRating":null, "shortDescription":null, "longDescription":null}, - {"wrapperType":"track", "kind":"music-video", "artistId":32940, "collectionId":405410751, "trackId":405411220, "artistName":"Michael Jackson", "collectionName":"Michael Jackson's Vision", "trackName":"Earth Song", "collectionCensoredName":"Michael Jackson's Vision", "trackCensoredName":"Earth Song (Michael Jackson's Vision)", "artistViewUrl":"http://itunes.apple.com/us/artist/michael-jackson/id32940?mt=11&uo=4", "collectionViewUrl":"http://itunes.apple.com/us/music-video/earth-song-michael-jacksons/id405411220?uo=4", "trackViewUrl":"http://itunes.apple.com/us/music-video/earth-song-michael-jacksons/id405411220?uo=4", "previewUrl":"http://a1689.v.phobos.apple.com/us/r1000/025/Video/ec/f6/3b/mzm.utiycgku..640x344.h264lc.u.p.m4v", "artworkUrl30":"http://a3.mzstatic.com/us/r1000/030/Video/ba/c0/7e/mzi.cvtqvren.40x30-75.jpg", "artworkUrl60":"http://a4.mzstatic.com/us/r1000/030/Video/ba/c0/7e/mzi.cvtqvren.80x60-75.jpg", "artworkUrl100":"http://a5.mzstatic.com/us/r1000/030/Video/ba/c0/7e/mzi.cvtqvren.100x100-75.jpg", "collectionPrice":29.99, "trackPrice":1.99, "releaseDate":"2010-11-19T08:00:00Z", "collectionExplicitness":"notExplicit", "trackExplicitness":"notExplicit", "discCount":1, "discNumber":1, "trackCount":43, "trackNumber":29, "trackTimeMillis":428662.0, "country":"USA", "currency":"USD", "primaryGenreName":"Pop", "contentAdvisoryRating":null, "shortDescription":null, "longDescription":null}, - {"wrapperType":"track", "kind":"music-video", "artistId":32940, "collectionId":405410751, "trackId":405410795, "artistName":"Michael Jackson", "collectionName":"Michael Jackson's Vision", "trackName":"The Way You Make Me Feel", "collectionCensoredName":"Michael Jackson's Vision", "trackCensoredName":"The Way You Make Me Feel", "artistViewUrl":"http://itunes.apple.com/us/artist/michael-jackson/id32940?mt=11&uo=4", "collectionViewUrl":"http://itunes.apple.com/us/music-video/the-way-you-make-me-feel/id405410795?uo=4", "trackViewUrl":"http://itunes.apple.com/us/music-video/the-way-you-make-me-feel/id405410795?uo=4", "previewUrl":"http://a992.v.phobos.apple.com/us/r1000/050/Video/1d/0c/e3/mzm.wzusjdce..640x344.h264lc.u.p.m4v", "artworkUrl30":"http://a5.mzstatic.com/us/r1000/043/Video/6a/ee/83/mzi.npzecgpo.40x30-75.jpg", "artworkUrl60":"http://a3.mzstatic.com/us/r1000/043/Video/6a/ee/83/mzi.npzecgpo.80x60-75.jpg", "artworkUrl100":"http://a3.mzstatic.com/us/r1000/043/Video/6a/ee/83/mzi.npzecgpo.100x100-75.jpg", "collectionPrice":29.99, "trackPrice":1.99, "releaseDate":"2010-11-19T08:00:00Z", "collectionExplicitness":"notExplicit", "trackExplicitness":"notExplicit", "discCount":1, "discNumber":1, "trackCount":43, "trackNumber":8, "trackTimeMillis":573340.0, "country":"USA", "currency":"USD", "primaryGenreName":"Pop", "contentAdvisoryRating":null, "shortDescription":null, "longDescription":null}, - {"wrapperType":"track", "kind":"music-video", "artistId":32940, "collectionId":405410751, "trackId":405411114, "artistName":"Michael Jackson", "collectionName":"Michael Jackson's Vision", "trackName":"Scream", "collectionCensoredName":"Michael Jackson's Vision", "trackCensoredName":"Scream (Michael Jackson's Vision)", "artistViewUrl":"http://itunes.apple.com/us/artist/michael-jackson/id32940?mt=11&uo=4", "collectionViewUrl":"http://itunes.apple.com/us/music-video/scream-michael-jacksons-vision/id405411114?uo=4", "trackViewUrl":"http://itunes.apple.com/us/music-video/scream-michael-jacksons-vision/id405411114?uo=4", "previewUrl":"http://a67.v.phobos.apple.com/us/r1000/007/Video/22/1e/d5/mzm.hcmronca..640x360.h264lc.u.p.m4v", "artworkUrl30":"http://a4.mzstatic.com/us/r1000/058/Video/cb/04/d0/mzi.lscciuie.40x30-75.jpg", "artworkUrl60":"http://a5.mzstatic.com/us/r1000/058/Video/cb/04/d0/mzi.lscciuie.80x60-75.jpg", "artworkUrl100":"http://a3.mzstatic.com/us/r1000/058/Video/cb/04/d0/mzi.lscciuie.100x100-75.jpg", "collectionPrice":29.99, "trackPrice":1.99, "releaseDate":"2010-11-19T08:00:00Z", "collectionExplicitness":"notExplicit", "trackExplicitness":"notExplicit", "discCount":1, "discNumber":1, "trackCount":43, "trackNumber":26, "trackTimeMillis":306506.0, "country":"USA", "currency":"USD", "primaryGenreName":"Pop", "contentAdvisoryRating":null, "shortDescription":null, "longDescription":null}, - {"wrapperType":"track", "kind":"music-video", "artistId":32940, "collectionId":405410751, "trackId":405411221, "artistName":"Michael Jackson", "collectionName":"Michael Jackson's Vision", "trackName":"They Don't Care About Us", "collectionCensoredName":"Michael Jackson's Vision", "trackCensoredName":"They Don't Care About Us", "artistViewUrl":"http://itunes.apple.com/us/artist/michael-jackson/id32940?mt=11&uo=4", "collectionViewUrl":"http://itunes.apple.com/us/music-video/they-dont-care-about-us/id405411221?uo=4", "trackViewUrl":"http://itunes.apple.com/us/music-video/they-dont-care-about-us/id405411221?uo=4", "previewUrl":"http://a1233.v.phobos.apple.com/us/r1000/036/Video/07/c9/e1/mzm.pzvqxkqx..640x360.h264lc.u.p.m4v", "artworkUrl30":"http://a2.mzstatic.com/us/r1000/034/Video/22/bb/de/mzi.qcolcfmv.40x30-75.jpg", "artworkUrl60":"http://a5.mzstatic.com/us/r1000/034/Video/22/bb/de/mzi.qcolcfmv.80x60-75.jpg", "artworkUrl100":"http://a2.mzstatic.com/us/r1000/034/Video/22/bb/de/mzi.qcolcfmv.100x100-75.jpg", "collectionPrice":29.99, "trackPrice":1.99, "releaseDate":"2010-11-19T08:00:00Z", "collectionExplicitness":"notExplicit", "trackExplicitness":"notExplicit", "discCount":1, "discNumber":1, "trackCount":43, "trackNumber":30, "trackTimeMillis":449482.0, "country":"USA", "currency":"USD", "primaryGenreName":"Pop", "contentAdvisoryRating":null, "shortDescription":null, "longDescription":null}, - {"wrapperType":"track", "kind":"music-video", "artistId":32940, "collectionId":405410751, "trackId":405411251, "artistName":"Michael Jackson", "collectionName":"Michael Jackson's Vision", "trackName":"Ghosts", "collectionCensoredName":"Michael Jackson's Vision", "trackCensoredName":"Ghosts (Michael Jackson's Vision)", "artistViewUrl":"http://itunes.apple.com/us/artist/michael-jackson/id32940?mt=11&uo=4", "collectionViewUrl":"http://itunes.apple.com/us/music-video/ghosts-michael-jacksons-vision/id405411251?uo=4", "trackViewUrl":"http://itunes.apple.com/us/music-video/ghosts-michael-jacksons-vision/id405411251?uo=4", "previewUrl":"http://a1472.v.phobos.apple.com/us/r1000/032/Video/da/4f/21/mzm.brssszom..640x344.h264lc.u.p.m4v", "artworkUrl30":"http://a3.mzstatic.com/us/r1000/059/Video/0f/be/52/mzi.koaxgkhl.40x30-75.jpg", "artworkUrl60":"http://a4.mzstatic.com/us/r1000/059/Video/0f/be/52/mzi.koaxgkhl.80x60-75.jpg", "artworkUrl100":"http://a2.mzstatic.com/us/r1000/059/Video/0f/be/52/mzi.koaxgkhl.100x100-75.jpg", "collectionPrice":29.99, "trackPrice":1.99, "releaseDate":"2010-11-19T08:00:00Z", "collectionExplicitness":"notExplicit", "trackExplicitness":"notExplicit", "discCount":1, "discNumber":1, "trackCount":43, "trackNumber":33, "trackTimeMillis":258091.0, "country":"USA", "currency":"USD", "primaryGenreName":"Pop", "contentAdvisoryRating":null, "shortDescription":null, "longDescription":null}, - {"wrapperType":"track", "kind":"music-video", "artistId":32940, "collectionId":405410751, "trackId":405410790, "artistName":"Michael Jackson", "collectionName":"Michael Jackson's Vision", "trackName":"Billie Jean", "collectionCensoredName":"Michael Jackson's Vision", "trackCensoredName":"Billie Jean (Michael Jackson's Vision)", "artistViewUrl":"http://itunes.apple.com/us/artist/michael-jackson/id32940?mt=11&uo=4", "collectionViewUrl":"http://itunes.apple.com/us/music-video/billie-jean-michael-jacksons/id405410790?uo=4", "trackViewUrl":"http://itunes.apple.com/us/music-video/billie-jean-michael-jacksons/id405410790?uo=4", "previewUrl":"http://a503.v.phobos.apple.com/us/r1000/009/Video/4f/97/84/mzm.ukxvkwvn..640x344.h264lc.u.p.m4v", "artworkUrl30":"http://a3.mzstatic.com/us/r1000/003/Video/f8/ed/9f/mzi.bhpqxqhc.40x30-75.jpg", "artworkUrl60":"http://a1.mzstatic.com/us/r1000/003/Video/f8/ed/9f/mzi.bhpqxqhc.80x60-75.jpg", "artworkUrl100":"http://a5.mzstatic.com/us/r1000/003/Video/f8/ed/9f/mzi.bhpqxqhc.100x100-75.jpg", "collectionPrice":29.99, "trackPrice":1.99, "releaseDate":"2010-11-19T08:00:00Z", "collectionExplicitness":"notExplicit", "trackExplicitness":"notExplicit", "discCount":1, "discNumber":1, "trackCount":43, "trackNumber":4, "trackTimeMillis":316850.0, "country":"USA", "currency":"USD", "primaryGenreName":"Pop", "contentAdvisoryRating":null, "shortDescription":null, "longDescription":null}, - {"wrapperType":"track", "kind":"music-video", "artistId":32940, "collectionId":null, "trackId":425270835, "artistName":"Michael Jackson", "collectionName":null, "trackName":"Hollywood Tonight", "collectionCensoredName":null, "trackCensoredName":"Hollywood Tonight", "artistViewUrl":"http://itunes.apple.com/us/artist/michael-jackson/id32940?mt=11&uo=4", "collectionViewUrl":null, "trackViewUrl":"http://itunes.apple.com/us/music-video/hollywood-tonight/id425270835?uo=4", "previewUrl":"http://a1102.v.phobos.apple.com/us/r1000/010/Video/7e/c6/f0/mzm.zrjzsmhv..640x478.h264lc.u.p.m4v", "artworkUrl30":"http://a4.mzstatic.com/us/r1000/019/Video/db/e7/39/mzi.edoeytfu.40x30-75.jpg", "artworkUrl60":"http://a2.mzstatic.com/us/r1000/019/Video/db/e7/39/mzi.edoeytfu.80x60-75.jpg", "artworkUrl100":"http://a5.mzstatic.com/us/r1000/019/Video/db/e7/39/mzi.edoeytfu.100x100-75.jpg", "collectionPrice":1.99, "trackPrice":1.99, "releaseDate":"2011-03-11T08:00:00Z", "collectionExplicitness":"notExplicit", "trackExplicitness":"notExplicit", "discCount":null, "discNumber":null, "trackCount":null, "trackNumber":null, "trackTimeMillis":241408.0, "country":"USA", "currency":"USD", "primaryGenreName":"Pop", "contentAdvisoryRating":null, "shortDescription":null, "longDescription":null}, - {"wrapperType":"track", "kind":"music-video", "artistId":32940, "collectionId":405410751, "trackId":405410804, "artistName":"Michael Jackson", "collectionName":"Michael Jackson's Vision", "trackName":"Man In the Mirror", "collectionCensoredName":"Michael Jackson's Vision", "trackCensoredName":"Man In the Mirror (Michael Jackson's Vision)", "artistViewUrl":"http://itunes.apple.com/us/artist/michael-jackson/id32940?mt=11&uo=4", "collectionViewUrl":"http://itunes.apple.com/us/music-video/man-in-mirror-michael-jacksons/id405410804?uo=4", "trackViewUrl":"http://itunes.apple.com/us/music-video/man-in-mirror-michael-jacksons/id405410804?uo=4", "previewUrl":"http://a1588.v.phobos.apple.com/us/r1000/039/Video/2f/ba/c6/mzm.ezfjzpfw..640x344.h264lc.u.p.m4v", "artworkUrl30":"http://a3.mzstatic.com/us/r1000/045/Video/00/e2/91/mzi.otucwdjd.40x30-75.jpg", "artworkUrl60":"http://a1.mzstatic.com/us/r1000/045/Video/00/e2/91/mzi.otucwdjd.80x60-75.jpg", "artworkUrl100":"http://a1.mzstatic.com/us/r1000/045/Video/00/e2/91/mzi.otucwdjd.100x100-75.jpg", "collectionPrice":29.99, "trackPrice":1.99, "releaseDate":"2010-11-19T08:00:00Z", "collectionExplicitness":"notExplicit", "trackExplicitness":"notExplicit", "discCount":1, "discNumber":1, "trackCount":43, "trackNumber":9, "trackTimeMillis":324524.0, "country":"USA", "currency":"USD", "primaryGenreName":"Pop", "contentAdvisoryRating":null, "shortDescription":null, "longDescription":null}, - {"wrapperType":"track", "kind":"music-video", "artistId":32940, "collectionId":405410751, "trackId":405410831, "artistName":"Michael Jackson", "collectionName":"Michael Jackson's Vision", "trackName":"In the Closet", "collectionCensoredName":"Michael Jackson's Vision", "trackCensoredName":"In the Closet (Michael Jackson's Vision)", "artistViewUrl":"http://itunes.apple.com/us/artist/michael-jackson/id32940?mt=11&uo=4", "collectionViewUrl":"http://itunes.apple.com/us/music-video/in-closet-michael-jacksons/id405410831?uo=4", "trackViewUrl":"http://itunes.apple.com/us/music-video/in-closet-michael-jacksons/id405410831?uo=4", "previewUrl":"http://a1163.v.phobos.apple.com/us/r1000/004/Video/17/67/54/mzm.bofojmhd..640x344.h264lc.u.p.m4v", "artworkUrl30":"http://a5.mzstatic.com/us/r1000/037/Video/f4/06/f2/mzi.bmebzuif.40x30-75.jpg", "artworkUrl60":"http://a3.mzstatic.com/us/r1000/037/Video/f4/06/f2/mzi.bmebzuif.80x60-75.jpg", "artworkUrl100":"http://a2.mzstatic.com/us/r1000/037/Video/f4/06/f2/mzi.bmebzuif.100x100-75.jpg", "collectionPrice":29.99, "trackPrice":1.99, "releaseDate":"2010-11-19T08:00:00Z", "collectionExplicitness":"notExplicit", "trackExplicitness":"notExplicit", "discCount":1, "discNumber":1, "trackCount":43, "trackNumber":19, "trackTimeMillis":384017.0, "country":"USA", "currency":"USD", "primaryGenreName":"Pop", "contentAdvisoryRating":null, "shortDescription":null, "longDescription":null}, - {"wrapperType":"track", "kind":"music-video", "artistId":32940, "collectionId":405410751, "trackId":405410805, "artistName":"Michael Jackson", "collectionName":"Michael Jackson's Vision", "trackName":"Dirty Diana", "collectionCensoredName":"Michael Jackson's Vision", "trackCensoredName":"Dirty Diana (Michael Jackson's Vision)", "artistViewUrl":"http://itunes.apple.com/us/artist/michael-jackson/id32940?mt=11&uo=4", "collectionViewUrl":"http://itunes.apple.com/us/music-video/dirty-diana-michael-jacksons/id405410805?uo=4", "trackViewUrl":"http://itunes.apple.com/us/music-video/dirty-diana-michael-jacksons/id405410805?uo=4", "previewUrl":"http://a1580.v.phobos.apple.com/us/r1000/013/Video/ea/d1/9f/mzm.dxxxwcyy..640x344.h264lc.u.p.m4v", "artworkUrl30":"http://a3.mzstatic.com/us/r1000/027/Video/0d/cf/05/mzi.ncbigyxi.40x30-75.jpg", "artworkUrl60":"http://a1.mzstatic.com/us/r1000/027/Video/0d/cf/05/mzi.ncbigyxi.80x60-75.jpg", "artworkUrl100":"http://a2.mzstatic.com/us/r1000/027/Video/0d/cf/05/mzi.ncbigyxi.100x100-75.jpg", "collectionPrice":29.99, "trackPrice":1.99, "releaseDate":"2010-11-19T08:00:00Z", "collectionExplicitness":"notExplicit", "trackExplicitness":"notExplicit", "discCount":1, "discNumber":1, "trackCount":43, "trackNumber":10, "trackTimeMillis":329729.0, "country":"USA", "currency":"USD", "primaryGenreName":"Pop", "contentAdvisoryRating":null, "shortDescription":null, "longDescription":null}, - {"wrapperType":"track", "kind":"music-video", "artistId":32940, "collectionId":405410751, "trackId":405410793, "artistName":"Michael Jackson", "collectionName":"Michael Jackson's Vision", "trackName":"Bad", "collectionCensoredName":"Michael Jackson's Vision", "trackCensoredName":"Bad (Michael Jackson's Vision)", "artistViewUrl":"http://itunes.apple.com/us/artist/michael-jackson/id32940?mt=11&uo=4", "collectionViewUrl":"http://itunes.apple.com/us/music-video/bad-michael-jacksons-vision/id405410793?uo=4", "trackViewUrl":"http://itunes.apple.com/us/music-video/bad-michael-jacksons-vision/id405410793?uo=4", "previewUrl":"http://a817.v.phobos.apple.com/us/r1000/033/Video/35/6e/f4/mzm.oerxehly..640x344.h264lc.u.p.m4v", "artworkUrl30":"http://a3.mzstatic.com/us/r1000/057/Video/f8/1e/2b/mzi.jugzuead.40x30-75.jpg", "artworkUrl60":"http://a1.mzstatic.com/us/r1000/057/Video/f8/1e/2b/mzi.jugzuead.80x60-75.jpg", "artworkUrl100":"http://a3.mzstatic.com/us/r1000/057/Video/f8/1e/2b/mzi.jugzuead.100x100-75.jpg", "collectionPrice":29.99, "trackPrice":1.99, "releaseDate":"2010-11-19T08:00:00Z", "collectionExplicitness":"notExplicit", "trackExplicitness":"notExplicit", "discCount":1, "discNumber":1, "trackCount":43, "trackNumber":7, "trackTimeMillis":1108174.0, "country":"USA", "currency":"USD", "primaryGenreName":"Pop", "contentAdvisoryRating":null, "shortDescription":null, "longDescription":null}, - {"wrapperType":"track", "kind":"music-video", "artistId":32940, "collectionId":405410751, "trackId":405410829, "artistName":"Michael Jackson", "collectionName":"Michael Jackson's Vision", "trackName":"Remember the Time", "collectionCensoredName":"Michael Jackson's Vision", "trackCensoredName":"Remember the Time (Michael Jackson's Vision)", "artistViewUrl":"http://itunes.apple.com/us/artist/michael-jackson/id32940?mt=11&uo=4", "collectionViewUrl":"http://itunes.apple.com/us/music-video/remember-time-michael-jacksons/id405410829?uo=4", "trackViewUrl":"http://itunes.apple.com/us/music-video/remember-time-michael-jacksons/id405410829?uo=4", "previewUrl":"http://a35.v.phobos.apple.com/us/r1000/001/Video/3c/96/4d/mzm.vfanqfbi..640x360.h264lc.u.p.m4v", "artworkUrl30":"http://a2.mzstatic.com/us/r1000/038/Video/95/1d/8a/mzi.okxtxjae.40x30-75.jpg", "artworkUrl60":"http://a5.mzstatic.com/us/r1000/038/Video/95/1d/8a/mzi.okxtxjae.80x60-75.jpg", "artworkUrl100":"http://a1.mzstatic.com/us/r1000/038/Video/95/1d/8a/mzi.okxtxjae.100x100-75.jpg", "collectionPrice":29.99, "trackPrice":1.99, "releaseDate":"2010-11-19T08:00:00Z", "collectionExplicitness":"notExplicit", "trackExplicitness":"notExplicit", "discCount":1, "discNumber":1, "trackCount":43, "trackNumber":18, "trackTimeMillis":581915.0, "country":"USA", "currency":"USD", "primaryGenreName":"Pop", "contentAdvisoryRating":null, "shortDescription":null, "longDescription":null}, - {"wrapperType":"track", "kind":"music-video", "artistId":32940, "collectionId":405410751, "trackId":405410786, "artistName":"Michael Jackson", "collectionName":"Michael Jackson's Vision", "trackName":"Don't Stop 'Til You Get Enough", "collectionCensoredName":"Michael Jackson's Vision", "trackCensoredName":"Don't Stop 'Til You Get Enough", "artistViewUrl":"http://itunes.apple.com/us/artist/michael-jackson/id32940?mt=11&uo=4", "collectionViewUrl":"http://itunes.apple.com/us/music-video/dont-stop-til-you-get-enough/id405410786?uo=4", "trackViewUrl":"http://itunes.apple.com/us/music-video/dont-stop-til-you-get-enough/id405410786?uo=4", "previewUrl":"http://a1187.v.phobos.apple.com/us/r1000/009/Video/f6/6a/3a/mzm.ccvxhszt..640x344.h264lc.u.p.m4v", "artworkUrl30":"http://a5.mzstatic.com/us/r1000/018/Video/2b/5f/23/mzi.vnvfgcuj.40x30-75.jpg", "artworkUrl60":"http://a1.mzstatic.com/us/r1000/018/Video/2b/5f/23/mzi.vnvfgcuj.80x60-75.jpg", "artworkUrl100":"http://a2.mzstatic.com/us/r1000/018/Video/2b/5f/23/mzi.vnvfgcuj.100x100-75.jpg", "collectionPrice":29.99, "trackPrice":1.99, "releaseDate":"2010-11-19T08:00:00Z", "collectionExplicitness":"notExplicit", "trackExplicitness":"notExplicit", "discCount":1, "discNumber":1, "trackCount":43, "trackNumber":1, "trackTimeMillis":273006.0, "country":"USA", "currency":"USD", "primaryGenreName":"Pop", "contentAdvisoryRating":null, "shortDescription":null, "longDescription":null}, - {"wrapperType":"track", "kind":"music-video", "artistId":32940, "collectionId":405410751, "trackId":405410808, "artistName":"Michael Jackson", "collectionName":"Michael Jackson's Vision", "trackName":"Speed Demon", "collectionCensoredName":"Michael Jackson's Vision", "trackCensoredName":"Speed Demon (Michael Jackson's Vision)", "artistViewUrl":"http://itunes.apple.com/us/artist/michael-jackson/id32940?mt=11&uo=4", "collectionViewUrl":"http://itunes.apple.com/us/music-video/speed-demon-michael-jacksons/id405410808?uo=4", "trackViewUrl":"http://itunes.apple.com/us/music-video/speed-demon-michael-jacksons/id405410808?uo=4", "previewUrl":"http://a1.v.phobos.apple.com/us/r1000/033/Video/49/f3/28/mzm.yxmaqddg..640x344.h264lc.u.p.m4v", "artworkUrl30":"http://a4.mzstatic.com/us/r1000/051/Video/52/68/71/mzi.ycwcxkma.40x30-75.jpg", "artworkUrl60":"http://a5.mzstatic.com/us/r1000/051/Video/52/68/71/mzi.ycwcxkma.80x60-75.jpg", "artworkUrl100":"http://a5.mzstatic.com/us/r1000/051/Video/52/68/71/mzi.ycwcxkma.100x100-75.jpg", "collectionPrice":29.99, "trackPrice":1.99, "releaseDate":"2010-11-19T08:00:00Z", "collectionExplicitness":"notExplicit", "trackExplicitness":"notExplicit", "discCount":1, "discNumber":1, "trackCount":43, "trackNumber":13, "trackTimeMillis":616282.0, "country":"USA", "currency":"USD", "primaryGenreName":"Pop", "contentAdvisoryRating":null, "shortDescription":null, "longDescription":null}, - {"wrapperType":"track", "kind":"music-video", "artistId":32940, "collectionId":405410751, "trackId":405410844, "artistName":"Michael Jackson", "collectionName":"Michael Jackson's Vision", "trackName":"Jam", "collectionCensoredName":"Michael Jackson's Vision", "trackCensoredName":"Jam (Michael Jackson's Vision)", "artistViewUrl":"http://itunes.apple.com/us/artist/michael-jackson/id32940?mt=11&uo=4", "collectionViewUrl":"http://itunes.apple.com/us/music-video/jam-michael-jacksons-vision/id405410844?uo=4", "trackViewUrl":"http://itunes.apple.com/us/music-video/jam-michael-jacksons-vision/id405410844?uo=4", "previewUrl":"http://a224.v.phobos.apple.com/us/r1000/025/Video/44/b5/90/mzm.qjqbpanh..640x360.h264lc.u.p.m4v", "artworkUrl30":"http://a4.mzstatic.com/us/r1000/006/Video/c9/75/50/mzi.hifmehdn.40x30-75.jpg", "artworkUrl60":"http://a2.mzstatic.com/us/r1000/006/Video/c9/75/50/mzi.hifmehdn.80x60-75.jpg", "artworkUrl100":"http://a3.mzstatic.com/us/r1000/006/Video/c9/75/50/mzi.hifmehdn.100x100-75.jpg", "collectionPrice":29.99, "trackPrice":1.99, "releaseDate":"2010-11-19T08:00:00Z", "collectionExplicitness":"notExplicit", "trackExplicitness":"notExplicit", "discCount":1, "discNumber":1, "trackCount":43, "trackNumber":20, "trackTimeMillis":493026.0, "country":"USA", "currency":"USD", "primaryGenreName":"Pop", "contentAdvisoryRating":null, "shortDescription":null, "longDescription":null}, - {"wrapperType":"track", "kind":"music-video", "artistId":32940, "collectionId":405410751, "trackId":405410807, "artistName":"Michael Jackson", "collectionName":"Michael Jackson's Vision", "trackName":"Another Part of Me", "collectionCensoredName":"Michael Jackson's Vision", "trackCensoredName":"Another Part of Me", "artistViewUrl":"http://itunes.apple.com/us/artist/michael-jackson/id32940?mt=11&uo=4", "collectionViewUrl":"http://itunes.apple.com/us/music-video/another-part-of-me/id405410807?uo=4", "trackViewUrl":"http://itunes.apple.com/us/music-video/another-part-of-me/id405410807?uo=4", "previewUrl":"http://a171.v.phobos.apple.com/us/r1000/003/Video/07/3f/a7/mzm.oovynbhm..640x344.h264lc.u.p.m4v", "artworkUrl30":"http://a4.mzstatic.com/us/r1000/059/Video/ad/fa/13/mzi.xemscnvi.40x30-75.jpg", "artworkUrl60":"http://a5.mzstatic.com/us/r1000/059/Video/ad/fa/13/mzi.xemscnvi.80x60-75.jpg", "artworkUrl100":"http://a3.mzstatic.com/us/r1000/059/Video/ad/fa/13/mzi.xemscnvi.100x100-75.jpg", "collectionPrice":29.99, "trackPrice":1.99, "releaseDate":"2010-11-19T08:00:00Z", "collectionExplicitness":"notExplicit", "trackExplicitness":"notExplicit", "discCount":1, "discNumber":1, "trackCount":43, "trackNumber":12, "trackTimeMillis":292726.0, "country":"USA", "currency":"USD", "primaryGenreName":"Pop", "contentAdvisoryRating":null, "shortDescription":null, "longDescription":null}, - {"wrapperType":"track", "kind":"music-video", "artistId":32940, "collectionId":405410751, "trackId":405410788, "artistName":"Michael Jackson", "collectionName":"Michael Jackson's Vision", "trackName":"Rock With You", "collectionCensoredName":"Michael Jackson's Vision", "trackCensoredName":"Rock With You (Michael Jackson's Vision)", "artistViewUrl":"http://itunes.apple.com/us/artist/michael-jackson/id32940?mt=11&uo=4", "collectionViewUrl":"http://itunes.apple.com/us/music-video/rock-with-you-michael-jacksons/id405410788?uo=4", "trackViewUrl":"http://itunes.apple.com/us/music-video/rock-with-you-michael-jacksons/id405410788?uo=4", "previewUrl":"http://a1538.v.phobos.apple.com/us/r1000/054/Video/d2/44/d1/mzm.npinyzll..640x344.h264lc.u.p.m4v", "artworkUrl30":"http://a1.mzstatic.com/us/r1000/006/Video/75/64/11/mzi.xixkmdjs.40x30-75.jpg", "artworkUrl60":"http://a2.mzstatic.com/us/r1000/006/Video/75/64/11/mzi.xixkmdjs.80x60-75.jpg", "artworkUrl100":"http://a2.mzstatic.com/us/r1000/006/Video/75/64/11/mzi.xixkmdjs.100x100-75.jpg", "collectionPrice":29.99, "trackPrice":1.99, "releaseDate":"2010-11-19T08:00:00Z", "collectionExplicitness":"notExplicit", "trackExplicitness":"notExplicit", "discCount":1, "discNumber":1, "trackCount":43, "trackNumber":2, "trackTimeMillis":224290.0, "country":"USA", "currency":"USD", "primaryGenreName":"Pop", "contentAdvisoryRating":null, "shortDescription":null, "longDescription":null}, - {"wrapperType":"track", "kind":"tv-episode", "artistId":102874655, "collectionId":108606658, "trackId":125566889, "artistName":"Conan O'Brien", "collectionName":"Triumph the Insult Comic Dog", "trackName":"Triumph At the Michael Jackson Trial", "collectionCensoredName":"Triumph the Insult Comic Dog", "trackCensoredName":"Triumph At the Michael Jackson Trial", "artistViewUrl":"http://itunes.apple.com/us/tv-show/conan-obrien/id102874655?uo=4", "collectionViewUrl":"http://itunes.apple.com/us/tv-season/triumph-at-michael-jackson/id108606658?i=125566889&uo=4", "trackViewUrl":"http://itunes.apple.com/us/tv-season/triumph-at-michael-jackson/id108606658?i=125566889&uo=4", "previewUrl":"http://a1327.v.phobos.apple.com/us/r1000/058/Video/7c/11/2b/mzi.qmvxgbfa..640x480.h264lc.D2.p.m4v", "artworkUrl30":"http://a4.mzstatic.com/us/r1000/031/Music/97/bc/d8/mzi.wpbvxumm.40x30-75.jpg", "artworkUrl60":"http://a5.mzstatic.com/us/r1000/031/Music/97/bc/d8/mzi.wpbvxumm.80x60-75.jpg", "artworkUrl100":"http://a4.mzstatic.com/us/r1000/031/Music/97/bc/d8/mzi.wpbvxumm.100x100-75.jpg", "collectionPrice":9.96, "trackPrice":0.99, "releaseDate":"2005-06-09T07:00:00Z", "collectionExplicitness":"notExplicit", "trackExplicitness":"notExplicit", "discCount":1, "discNumber":1, "trackCount":4, "trackNumber":4, "trackTimeMillis":559225.0, "country":"USA", "currency":"USD", "primaryGenreName":"Comedy", "contentAdvisoryRating":null, "shortDescription":"Triumph the Insult Comic Dog pays a visit to fans gathered outside the courthouse during the Michael Jackson trial.", "longDescription":"Triumph the Insult Comic Dog pays a visit to fans gathered outside the courthouse during the Michael Jackson trial."}, - {"wrapperType":"audiobook", "artistId":3677747, "collectionId":327266078, "amgArtistId":null, "amgVideoArtistId":null, "artistName":"J. Randy Taraborrelli", "collectionName":"Michael Jackson: The Final Years: A Selection from Michael Jackson: The Magic, the Madness, the Whole Story, 1958-2009 (Unabridged)", "collectionCensoredName":"Michael Jackson: The Final Years: A Selection from Michael Jackson: The Magic, the Madness, the Whole Story, 1958-2009 (Unabridged)", "artistViewUrl":"http://itunes.apple.com/us/artist/j-randy-taraborrelli/id3677747?mt=11&uo=4", "collectionViewUrl":"http://itunes.apple.com/WebObjects/MZStore.woa/wa/viewAudiobook?id=327266078&s=143441&uo=4", "artworkUrl60":"http://a4.mzstatic.com/us/r1000/016/Music/8d/d0/3a/mzi.nojybdru.60x60-50.jpg", "artworkUrl100":"http://a3.mzstatic.com/us/r1000/016/Music/8d/d0/3a/mzi.nojybdru.100x100-75.jpg", "collectionPrice":9.95, "collectionExplicitness":"notExplicit", "trackCount":1, "copyright":"2009 Hachette Audio", "country":"USA", "currency":"USD", "releaseDate":"2009-08-10T07:00:00Z", "primaryGenreName":"Audiobooks"}, - {"wrapperType":"audiobook", "artistId":334315255, "collectionId":334315109, "amgArtistId":null, "amgVideoArtistId":null, "artistName":"John Boslough", "collectionName":"Stephen Hawking's Universe (Unabridged)", "collectionCensoredName":"Stephen Hawking's Universe (Unabridged)", "artistViewUrl":"http://itunes.apple.com/us/artist/john-boslough/id334315255?uo=4", "collectionViewUrl":"http://itunes.apple.com/WebObjects/MZStore.woa/wa/viewAudiobook?id=334315109&s=143441&uo=4", "artworkUrl60":"http://a3.mzstatic.com/us/r1000/057/Music/8e/9d/95/mzi.trsnskxt.60x60-50.jpg", "artworkUrl100":"http://a3.mzstatic.com/us/r1000/057/Music/8e/9d/95/mzi.trsnskxt.100x100-75.jpg", "collectionPrice":14.95, "collectionExplicitness":"notExplicit", "trackCount":1, "copyright":"1991 Phoenix Books", "country":"USA", "currency":"USD", "releaseDate":"1991-07-01T07:00:00Z", "primaryGenreName":"Audiobooks"}, - {"wrapperType":"audiobook", "artistId":331662102, "collectionId":331661954, "amgArtistId":null, "amgVideoArtistId":null, "artistName":"Charles Highman, Ray Mosely", "collectionName":"Elizabeth and Philip: The Untold Story of the Queen of England and Her Prince", "collectionCensoredName":"Elizabeth and Philip: The Untold Story of the Queen of England and Her Prince", "artistViewUrl":"http://itunes.apple.com/us/artist/charles-highman-ray-mosely/id331662102?uo=4", "collectionViewUrl":"http://itunes.apple.com/WebObjects/MZStore.woa/wa/viewAudiobook?id=331661954&s=143441&uo=4", "artworkUrl60":"http://a5.mzstatic.com/us/r1000/049/Music/93/84/b2/mzi.oxopjuxm.60x60-50.jpg", "artworkUrl100":"http://a2.mzstatic.com/us/r1000/049/Music/93/84/b2/mzi.oxopjuxm.100x100-75.jpg", "collectionPrice":9.95, "collectionExplicitness":"notExplicit", "trackCount":1, "copyright":"1991 Phoenix Books", "country":"USA", "currency":"USD", "releaseDate":"1991-04-01T08:00:00Z", "primaryGenreName":"Audiobooks"}, - {"wrapperType":"audiobook", "artistId":325247920, "collectionId":325247764, "amgArtistId":1550298, "amgVideoArtistId":null, "artistName":"Ian Halperin", "collectionName":"Unmasked: the Final Years of Michael Jackson (Unabridged)", "collectionCensoredName":"Unmasked: the Final Years of Michael Jackson (Unabridged)", "artistViewUrl":"http://itunes.apple.com/us/artist/ian-halperin/id325247920?mt=11&uo=4", "collectionViewUrl":"http://itunes.apple.com/WebObjects/MZStore.woa/wa/viewAudiobook?id=325247764&s=143441&uo=4", "artworkUrl60":"http://a5.mzstatic.com/us/r1000/021/Features/23/c0/b0/dj.cynwfuzv.60x60-50.jpg", "artworkUrl100":"http://a2.mzstatic.com/us/r1000/021/Features/23/c0/b0/dj.cynwfuzv.100x100-75.jpg", "collectionPrice":17.95, "collectionExplicitness":"notExplicit", "trackCount":1, "copyright":"2009 Tantor Audio", "country":"USA", "currency":"USD", "releaseDate":"2009-07-27T07:00:00Z", "primaryGenreName":"Audiobooks"}, - {"wrapperType":"audiobook", "artistId":422498507, "collectionId":423916633, "amgArtistId":null, "amgVideoArtistId":null, "artistName":"Beate Stocker", "collectionName":"Zeitscheibe 03/2011", "collectionCensoredName":"Zeitscheibe 03/2011", "artistViewUrl":"http://itunes.apple.com/us/artist/beate-stocker/id422498507?uo=4", "collectionViewUrl":"http://itunes.apple.com/WebObjects/MZStore.woa/wa/viewAudiobook?id=423916633&s=143441&uo=4", "artworkUrl60":"http://a1.mzstatic.com/us/r1000/022/Music/e6/a4/8e/mzi.lwvbegtg.60x60-50.jpg", "artworkUrl100":"http://a1.mzstatic.com/us/r1000/022/Music/e6/a4/8e/mzi.lwvbegtg.100x100-75.jpg", "collectionPrice":4.95, "collectionExplicitness":"notExplicit", "trackCount":1, "copyright":"2011 Audiomagazine Beate Stocker", "country":"USA", "currency":"USD", "releaseDate":"2011-02-23T08:00:00Z", "primaryGenreName":"Audiobooks"}, - {"wrapperType":"audiobook", "artistId":2087060, "collectionId":323637862, "amgArtistId":null, "amgVideoArtistId":null, "artistName":"Michael Beschloss", "collectionName":"Presidential Courage: Brave Leaders and How They Changed America 1789-1989", "collectionCensoredName":"Presidential Courage: Brave Leaders and How They Changed America 1789-1989", "artistViewUrl":"http://itunes.apple.com/us/artist/michael-beschloss/id2087060?uo=4", "collectionViewUrl":"http://itunes.apple.com/WebObjects/MZStore.woa/wa/viewAudiobook?id=323637862&s=143441&uo=4", "artworkUrl60":"http://a5.mzstatic.com/us/r1000/058/Music/6e/08/99/mzi.vkegvydh.60x60-50.jpg", "artworkUrl100":"http://a4.mzstatic.com/us/r1000/058/Music/6e/08/99/mzi.vkegvydh.100x100-75.jpg", "collectionPrice":17.95, "collectionExplicitness":"notExplicit", "trackCount":1, "copyright":"2007 Simon & Schuster Audio", "country":"USA", "currency":"USD", "releaseDate":"2007-05-08T07:00:00Z", "primaryGenreName":"Audiobooks"}, - {"wrapperType":"audiobook", "artistId":120669034, "collectionId":365999340, "amgArtistId":null, "amgVideoArtistId":null, "artistName":"Nancy Grace and Diana Clehane", "collectionName":"Objection! (Unabridged)", "collectionCensoredName":"Objection! (Unabridged)", "artistViewUrl":"http://itunes.apple.com/us/artist/nancy-grace-and-diana-clehane/id120669034?uo=4", "collectionViewUrl":"http://itunes.apple.com/WebObjects/MZStore.woa/wa/viewAudiobook?id=365999340&s=143441&uo=4", "artworkUrl60":"http://a2.mzstatic.com/us/r1000/030/Music/c9/a7/7a/mzi.xglrtqtl.60x60-50.jpg", "artworkUrl100":"http://a4.mzstatic.com/us/r1000/030/Music/c9/a7/7a/mzi.xglrtqtl.100x100-75.jpg", "collectionPrice":17.95, "collectionExplicitness":"notExplicit", "trackCount":1, "copyright":"2006 Blackstone Audiobooks", "country":"USA", "currency":"USD", "releaseDate":"2006-01-23T08:00:00Z", "primaryGenreName":"Audiobooks"}, - {"wrapperType":"audiobook", "artistId":338620792, "collectionId":338620641, "amgArtistId":null, "amgVideoArtistId":null, "artistName":"Emily Herbert", "collectionName":"Michael Jackson: King of Pop 1958 - 2009 (Unabridged)", "collectionCensoredName":"Michael Jackson: King of Pop 1958 - 2009 (Unabridged)", "artistViewUrl":"http://itunes.apple.com/us/artist/emily-herbert/id338620792?uo=4", "collectionViewUrl":"http://itunes.apple.com/WebObjects/MZStore.woa/wa/viewAudiobook?id=338620641&s=143441&uo=4", "artworkUrl60":"http://a4.mzstatic.com/us/r1000/041/Music/a3/ed/e5/mzi.yvsyfvib.60x60-50.jpg", "artworkUrl100":"http://a4.mzstatic.com/us/r1000/041/Music/a3/ed/e5/mzi.yvsyfvib.100x100-75.jpg", "collectionPrice":22.95, "collectionExplicitness":"notExplicit", "trackCount":1, "copyright":"2009 Bolinda Publishing Pty Ltd.", "country":"USA", "currency":"USD", "releaseDate":"2009-10-30T07:00:00Z", "primaryGenreName":"Audiobooks"}, - {"wrapperType":"audiobook", "artistId":324999931, "collectionId":324999724, "amgArtistId":null, "amgVideoArtistId":null, "artistName":"Calvin Trillin, Malcolm Gladwell, Nicholas Lemann", "collectionName":"The New Yorker, July 27, 2009 (Calvin Trillin, Malcolm Gladwell, Nicholas Lemann)", "collectionCensoredName":"The New Yorker, July 27, 2009 (Calvin Trillin, Malcolm Gladwell, Nicholas Lemann)", "artistViewUrl":"http://itunes.apple.com/us/artist/calvin-trillin-malcolm-gladwell/id324999931?uo=4", "collectionViewUrl":"http://itunes.apple.com/WebObjects/MZStore.woa/wa/viewAudiobook?id=324999724&s=143441&uo=4", "artworkUrl60":"http://a1.mzstatic.com/us/r1000/029/Music/09/82/be/mzi.omtvrkmz.60x60-50.jpg", "artworkUrl100":"http://a5.mzstatic.com/us/r1000/029/Music/09/82/be/mzi.omtvrkmz.100x100-75.jpg", "collectionPrice":6.95, "collectionExplicitness":"notExplicit", "trackCount":1, "copyright":"2009 The New Yorker", "country":"USA", "currency":"USD", "releaseDate":"2009-07-22T07:00:00Z", "primaryGenreName":"Audiobooks"}, - {"wrapperType":"audiobook", "artistId":314744101, "collectionId":389226676, "amgArtistId":null, "amgVideoArtistId":null, "artistName":"Carl W Hart", "collectionName":"Michael Jackson: King of Pop", "collectionCensoredName":"Michael Jackson: King of Pop", "artistViewUrl":"http://itunes.apple.com/us/artist/carl-w-hart/id314744101?uo=4", "collectionViewUrl":"http://itunes.apple.com/WebObjects/MZStore.woa/wa/viewAudiobook?id=389226676&s=143441&uo=4", "artworkUrl60":"http://a3.mzstatic.com/us/r1000/024/Music/4d/07/46/mzi.liihagyp.60x60-50.jpg", "artworkUrl100":"http://a1.mzstatic.com/us/r1000/024/Music/4d/07/46/mzi.liihagyp.100x100-75.jpg", "collectionPrice":14.95, "collectionExplicitness":"notExplicit", "trackCount":1, "copyright":"2010 Pan Macmillan Publishers Ltd.", "country":"USA", "currency":"USD", "releaseDate":"2010-09-03T07:00:00Z", "primaryGenreName":"Audiobooks"}, - {"wrapperType":"audiobook", "artistId":329423915, "collectionId":329423898, "amgArtistId":null, "amgVideoArtistId":null, "artistName":"Sabine Scheffer", "collectionName":"Michael Jackson. Das Leben Und Sterben Des King of Pop", "collectionCensoredName":"Michael Jackson. Das Leben Und Sterben Des King of Pop", "artistViewUrl":"http://itunes.apple.com/us/artist/sabine-scheffer/id329423915?uo=4", "collectionViewUrl":"http://itunes.apple.com/WebObjects/MZStore.woa/wa/viewAudiobook?id=329423898&s=143441&uo=4", "artworkUrl60":"http://a5.mzstatic.com/us/r1000/003/Music/d2/4c/04/mzi.warhvazo.60x60-50.jpg", "artworkUrl100":"http://a2.mzstatic.com/us/r1000/003/Music/d2/4c/04/mzi.warhvazo.100x100-75.jpg", "collectionPrice":6.95, "collectionExplicitness":"notExplicit", "trackCount":1, "copyright":"2009 CDA Verlags- und Handelsgesellschaft m.b.H.", "country":"USA", "currency":"USD", "releaseDate":"2009-08-26T07:00:00Z", "primaryGenreName":"Audiobooks"}, - {"wrapperType":"audiobook", "artistId":326758322, "collectionId":332337960, "amgArtistId":null, "amgVideoArtistId":null, "artistName":"Monika Elisa Schurr", "collectionName":"Mchael Jackson SAD. Leben In Licht Und Schatten", "collectionCensoredName":"Mchael Jackson SAD. Leben In Licht Und Schatten", "artistViewUrl":"http://itunes.apple.com/us/artist/monika-elisa-schurr/id326758322?uo=4", "collectionViewUrl":"http://itunes.apple.com/WebObjects/MZStore.woa/wa/viewAudiobook?id=332337960&s=143441&uo=4", "artworkUrl60":"http://a3.mzstatic.com/us/r1000/045/Music/da/b5/b9/mzi.eqlfarft.60x60-50.jpg", "artworkUrl100":"http://a1.mzstatic.com/us/r1000/045/Music/da/b5/b9/mzi.eqlfarft.100x100-75.jpg", "collectionPrice":5.95, "collectionExplicitness":"notExplicit", "trackCount":1, "copyright":"2009 NAVARRA Verlagsgesellschaft mbH", "country":"USA", "currency":"USD", "releaseDate":"2009-09-16T07:00:00Z", "primaryGenreName":"Audiobooks"}, - {"wrapperType":"audiobook", "artistId":2065398, "collectionId":369902297, "amgArtistId":null, "amgVideoArtistId":null, "artistName":"Geoffrey Giuliano", "collectionName":"Elizabeth Taylor: A Tribute", "collectionCensoredName":"Elizabeth Taylor: A Tribute", "artistViewUrl":"http://itunes.apple.com/us/artist/geoffrey-giuliano/id2065398?uo=4", "collectionViewUrl":"http://itunes.apple.com/WebObjects/MZStore.woa/wa/viewAudiobook?id=369902297&s=143441&uo=4", "artworkUrl60":"http://a5.mzstatic.com/us/r1000/008/Music/59/5d/0d/mzi.rzoqbvqd.60x60-50.jpg", "artworkUrl100":"http://a1.mzstatic.com/us/r1000/008/Music/59/5d/0d/mzi.rzoqbvqd.100x100-75.jpg", "collectionPrice":10.95, "collectionExplicitness":"notExplicit", "trackCount":1, "copyright":"2004 Random House Audio", "country":"USA", "currency":"USD", "releaseDate":"1999-04-06T07:00:00Z", "primaryGenreName":"Audiobooks"}, - {"wrapperType":"audiobook", "artistId":118978627, "collectionId":367849774, "amgArtistId":null, "amgVideoArtistId":null, "artistName":"Margo Jefferson", "collectionName":"On Michael Jackson (Unabridged)", "collectionCensoredName":"On Michael Jackson (Unabridged)", "artistViewUrl":"http://itunes.apple.com/us/artist/margo-jefferson/id118978627?uo=4", "collectionViewUrl":"http://itunes.apple.com/WebObjects/MZStore.woa/wa/viewAudiobook?id=367849774&s=143441&uo=4", "artworkUrl60":"http://a1.mzstatic.com/us/r1000/043/Music/06/a3/c0/mzi.hvoiwnve.60x60-50.jpg", "artworkUrl100":"http://a5.mzstatic.com/us/r1000/043/Music/06/a3/c0/mzi.hvoiwnve.100x100-75.jpg", "collectionPrice":21.95, "collectionExplicitness":"notExplicit", "trackCount":1, "copyright":"2006 Books on Tape", "country":"USA", "currency":"USD", "releaseDate":"2006-01-18T08:00:00Z", "primaryGenreName":"Audiobooks"}, - {"wrapperType":"audiobook", "artistId":376748833, "collectionId":376748832, "amgArtistId":null, "amgVideoArtistId":null, "artistName":"Caryl Westmore", "collectionName":"Michael Jackson: 5 Lessons to Heal or Change Your Life (Unabridged)", "collectionCensoredName":"Michael Jackson: 5 Lessons to Heal or Change Your Life (Unabridged)", "artistViewUrl":"http://itunes.apple.com/us/artist/caryl-westmore/id376748833?uo=4", "collectionViewUrl":"http://itunes.apple.com/WebObjects/MZStore.woa/wa/viewAudiobook?id=376748832&s=143441&uo=4", "artworkUrl60":"http://a5.mzstatic.com/us/r1000/022/Music/82/ea/ed/mzi.gvluhxgi.60x60-50.jpg", "artworkUrl100":"http://a3.mzstatic.com/us/r1000/022/Music/82/ea/ed/mzi.gvluhxgi.100x100-75.jpg", "collectionPrice":6.95, "collectionExplicitness":"notExplicit", "trackCount":1, "copyright":"2010 Hudson Audio Publishing", "country":"USA", "currency":"USD", "releaseDate":"2010-06-04T07:00:00Z", "primaryGenreName":"Audiobooks"}] - } - - - http_version: "1.1" -- !ruby/struct:VCR::HTTPInteraction - request: !ruby/struct:VCR::Request - method: :get - uri: http://ax.itunes.apple.com:80/WebObjects/MZStoreServices.woa/wa/wsSearch?media=music&term=Jose%20James - body: - headers: - accept: - - application/json - user-agent: - - ITunes Ruby Gem 0.4.1 - response: !ruby/struct:VCR::Response - status: !ruby/struct:VCR::ResponseStatus - code: 200 - message: OK - headers: - x-apple-orig-url-path: - - /WebObjects/MZStoreServices.woa/wa/wsSearch?term=Jose%20James&media=music - x-webobjects-loadaverage: - - "0" - x-apple-application-site: - - NWK - expires: - - Mon, 30 May 2011 02:37:09 GMT - x-apple-partner: - - origin.0 - connection: - - Transfer-Encoding - content-type: - - text/javascript; charset=utf-8 - date: - - Mon, 30 May 2011 02:37:09 GMT - x-apple-max-age: - - "3600" - x-apple-woa-inbound-url: - - /WebObjects/MZStoreServices.woa/wa/wsSearch?term=Jose%20James&media=music - x-apple-application-instance: - - "1036001" - cache-control: - - max-age=0, no-cache - vary: - - X-Apple-Store-Front - pragma: - - no-cache - transfer-encoding: - - chunked - body: |+ - - - - { - "resultCount":50, - "results": [ - {"wrapperType":"track", "kind":"song", "artistId":123113553, "collectionId":365350903, "trackId":365353942, "artistName":"Jos\u00e9 James", "collectionName":"Blackmagic (Deluxe Version)", "trackName":"Blackmagic", "collectionCensoredName":"Blackmagic (Deluxe Version)", "trackCensoredName":"Blackmagic (Izmabad 118 Remix)", "artistViewUrl":"http://itunes.apple.com/us/artist/jose-james/id123113553?uo=4", "collectionViewUrl":"http://itunes.apple.com/us/album/blackmagic-izmabad-118-remix/id365350903?i=365353942&uo=4", "trackViewUrl":"http://itunes.apple.com/us/album/blackmagic-izmabad-118-remix/id365350903?i=365353942&uo=4", "previewUrl":"http://a1.mzstatic.com/us/r1000/022/Music/fe/5b/38/mzi.bypadvdp.aac.p.m4a", "artworkUrl30":"http://a1.mzstatic.com/us/r1000/043/Music/a2/bf/7f/mzi.ulkgzsyt.30x30-50.jpg", "artworkUrl60":"http://a5.mzstatic.com/us/r1000/043/Music/a2/bf/7f/mzi.ulkgzsyt.60x60-50.jpg", "artworkUrl100":"http://a2.mzstatic.com/us/r1000/043/Music/a2/bf/7f/mzi.ulkgzsyt.100x100-75.jpg", "collectionPrice":9.99, "trackPrice":0.99, "releaseDate":"2010-04-12T07:00:00Z", "collectionExplicitness":"notExplicit", "trackExplicitness":"notExplicit", "discCount":1, "discNumber":1, "trackCount":20, "trackNumber":17, "trackTimeMillis":357855, "country":"USA", "currency":"USD", "primaryGenreName":"Jazz", "contentAdvisoryRating":null, "shortDescription":null, "longDescription":null}, - {"wrapperType":"track", "kind":"song", "artistId":123113553, "collectionId":365350903, "trackId":365354086, "artistName":"Jos\u00e9 James", "collectionName":"Blackmagic (Deluxe Version)", "trackName":"Blackmagic", "collectionCensoredName":"Blackmagic (Deluxe Version)", "trackCensoredName":"Blackmagic (Joy Orbison's Recreation)", "artistViewUrl":"http://itunes.apple.com/us/artist/jose-james/id123113553?uo=4", "collectionViewUrl":"http://itunes.apple.com/us/album/blackmagic-joy-orbisons-recreation/id365350903?i=365354086&uo=4", "trackViewUrl":"http://itunes.apple.com/us/album/blackmagic-joy-orbisons-recreation/id365350903?i=365354086&uo=4", "previewUrl":"http://a2.mzstatic.com/us/r1000/035/Music/71/ce/42/mzi.rghmjmht.aac.p.m4a", "artworkUrl30":"http://a1.mzstatic.com/us/r1000/043/Music/a2/bf/7f/mzi.ulkgzsyt.30x30-50.jpg", "artworkUrl60":"http://a5.mzstatic.com/us/r1000/043/Music/a2/bf/7f/mzi.ulkgzsyt.60x60-50.jpg", "artworkUrl100":"http://a2.mzstatic.com/us/r1000/043/Music/a2/bf/7f/mzi.ulkgzsyt.100x100-75.jpg", "collectionPrice":9.99, "trackPrice":0.99, "releaseDate":"2010-04-12T07:00:00Z", "collectionExplicitness":"notExplicit", "trackExplicitness":"notExplicit", "discCount":1, "discNumber":1, "trackCount":20, "trackNumber":19, "trackTimeMillis":355804, "country":"USA", "currency":"USD", "primaryGenreName":"Jazz", "contentAdvisoryRating":null, "shortDescription":null, "longDescription":null}, - {"wrapperType":"track", "kind":"song", "artistId":5117774, "collectionId":287805088, "trackId":287805642, "artistName":"Jose James", "collectionName":"The Dreamer", "trackName":"Desire", "collectionCensoredName":"The Dreamer", "trackCensoredName":"Desire", "artistViewUrl":"http://itunes.apple.com/us/artist/jose-james/id5117774?uo=4", "collectionViewUrl":"http://itunes.apple.com/us/album/desire/id287805088?i=287805642&uo=4", "trackViewUrl":"http://itunes.apple.com/us/album/desire/id287805088?i=287805642&uo=4", "previewUrl":"http://a5.mzstatic.com/us/r1000/024/Music/4f/63/2c/mzm.dvfzxuyi.aac.p.m4a", "artworkUrl30":"http://a5.mzstatic.com/us/r1000/001/Music/8f/6d/26/mzi.elifbnfk.30x30-50.jpg", "artworkUrl60":"http://a2.mzstatic.com/us/r1000/001/Music/8f/6d/26/mzi.elifbnfk.60x60-50.jpg", "artworkUrl100":"http://a4.mzstatic.com/us/r1000/001/Music/8f/6d/26/mzi.elifbnfk.100x100-75.jpg", "collectionPrice":9.90, "trackPrice":0.99, "releaseDate":"2008-03-26T07:00:00Z", "collectionExplicitness":"notExplicit", "trackExplicitness":"notExplicit", "discCount":1, "discNumber":1, "trackCount":10, "trackNumber":9, "trackTimeMillis":449267, "country":"USA", "currency":"USD", "primaryGenreName":"Jazz", "contentAdvisoryRating":null, "shortDescription":null, "longDescription":null}, - {"wrapperType":"track", "kind":"song", "artistId":123113553, "collectionId":365350903, "trackId":365353461, "artistName":"Jos\u00e9 James", "collectionName":"Blackmagic (Deluxe Version)", "trackName":"Love Conversation", "collectionCensoredName":"Blackmagic (Deluxe Version)", "trackCensoredName":"Love Conversation", "artistViewUrl":"http://itunes.apple.com/us/artist/jose-james/id123113553?uo=4", "collectionViewUrl":"http://itunes.apple.com/us/album/love-conversation/id365350903?i=365353461&uo=4", "trackViewUrl":"http://itunes.apple.com/us/album/love-conversation/id365350903?i=365353461&uo=4", "previewUrl":"http://a3.mzstatic.com/us/r1000/044/Music/ac/58/68/mzi.ipmfrtvw.aac.p.m4a", "artworkUrl30":"http://a1.mzstatic.com/us/r1000/043/Music/a2/bf/7f/mzi.ulkgzsyt.30x30-50.jpg", "artworkUrl60":"http://a5.mzstatic.com/us/r1000/043/Music/a2/bf/7f/mzi.ulkgzsyt.60x60-50.jpg", "artworkUrl100":"http://a2.mzstatic.com/us/r1000/043/Music/a2/bf/7f/mzi.ulkgzsyt.100x100-75.jpg", "collectionPrice":9.99, "trackPrice":0.99, "releaseDate":"2010-04-12T07:00:00Z", "collectionExplicitness":"notExplicit", "trackExplicitness":"notExplicit", "discCount":1, "discNumber":1, "trackCount":20, "trackNumber":11, "trackTimeMillis":316332, "country":"USA", "currency":"USD", "primaryGenreName":"Jazz", "contentAdvisoryRating":null, "shortDescription":null, "longDescription":null}, - {"wrapperType":"track", "kind":"song", "artistId":123113553, "collectionId":365350903, "trackId":365352887, "artistName":"Jos\u00e9 James", "collectionName":"Blackmagic (Deluxe Version)", "trackName":"Save Your Love for Me", "collectionCensoredName":"Blackmagic (Deluxe Version)", "trackCensoredName":"Save Your Love for Me", "artistViewUrl":"http://itunes.apple.com/us/artist/jose-james/id123113553?uo=4", "collectionViewUrl":"http://itunes.apple.com/us/album/save-your-love-for-me/id365350903?i=365352887&uo=4", "trackViewUrl":"http://itunes.apple.com/us/album/save-your-love-for-me/id365350903?i=365352887&uo=4", "previewUrl":"http://a4.mzstatic.com/us/r1000/004/Music/2a/f4/9c/mzi.tnducphq.aac.p.m4a", "artworkUrl30":"http://a1.mzstatic.com/us/r1000/043/Music/a2/bf/7f/mzi.ulkgzsyt.30x30-50.jpg", "artworkUrl60":"http://a5.mzstatic.com/us/r1000/043/Music/a2/bf/7f/mzi.ulkgzsyt.60x60-50.jpg", "artworkUrl100":"http://a2.mzstatic.com/us/r1000/043/Music/a2/bf/7f/mzi.ulkgzsyt.100x100-75.jpg", "collectionPrice":9.99, "trackPrice":0.99, "releaseDate":"2010-04-12T07:00:00Z", "collectionExplicitness":"notExplicit", "trackExplicitness":"notExplicit", "discCount":1, "discNumber":1, "trackCount":20, "trackNumber":7, "trackTimeMillis":212571, "country":"USA", "currency":"USD", "primaryGenreName":"Jazz", "contentAdvisoryRating":null, "shortDescription":null, "longDescription":null}, - {"wrapperType":"track", "kind":"song", "artistId":123113553, "collectionId":365350903, "trackId":365351515, "artistName":"Jos\u00e9 James", "collectionName":"Blackmagic (Deluxe Version)", "trackName":"Code", "collectionCensoredName":"Blackmagic (Deluxe Version)", "trackCensoredName":"Code", "artistViewUrl":"http://itunes.apple.com/us/artist/jose-james/id123113553?uo=4", "collectionViewUrl":"http://itunes.apple.com/us/album/code/id365350903?i=365351515&uo=4", "trackViewUrl":"http://itunes.apple.com/us/album/code/id365350903?i=365351515&uo=4", "previewUrl":"http://a4.mzstatic.com/us/r1000/015/Music/80/f1/f2/mzi.xotjcehb.aac.p.m4a", "artworkUrl30":"http://a1.mzstatic.com/us/r1000/043/Music/a2/bf/7f/mzi.ulkgzsyt.30x30-50.jpg", "artworkUrl60":"http://a5.mzstatic.com/us/r1000/043/Music/a2/bf/7f/mzi.ulkgzsyt.60x60-50.jpg", "artworkUrl100":"http://a2.mzstatic.com/us/r1000/043/Music/a2/bf/7f/mzi.ulkgzsyt.100x100-75.jpg", "collectionPrice":9.99, "trackPrice":0.99, "releaseDate":"2010-04-12T07:00:00Z", "collectionExplicitness":"notExplicit", "trackExplicitness":"notExplicit", "discCount":1, "discNumber":1, "trackCount":20, "trackNumber":1, "trackTimeMillis":294666, "country":"USA", "currency":"USD", "primaryGenreName":"Jazz", "contentAdvisoryRating":null, "shortDescription":null, "longDescription":null}, - {"wrapperType":"track", "kind":"song", "artistId":123113553, "collectionId":365350903, "trackId":365352155, "artistName":"Jos\u00e9 James", "collectionName":"Blackmagic (Deluxe Version)", "trackName":"Promise In Love", "collectionCensoredName":"Blackmagic (Deluxe Version)", "trackCensoredName":"Promise In Love", "artistViewUrl":"http://itunes.apple.com/us/artist/jose-james/id123113553?uo=4", "collectionViewUrl":"http://itunes.apple.com/us/album/promise-in-love/id365350903?i=365352155&uo=4", "trackViewUrl":"http://itunes.apple.com/us/album/promise-in-love/id365350903?i=365352155&uo=4", "previewUrl":"http://a1.mzstatic.com/us/r1000/001/Music/1c/41/f7/mzi.ltwhimkd.aac.p.m4a", "artworkUrl30":"http://a1.mzstatic.com/us/r1000/043/Music/a2/bf/7f/mzi.ulkgzsyt.30x30-50.jpg", "artworkUrl60":"http://a5.mzstatic.com/us/r1000/043/Music/a2/bf/7f/mzi.ulkgzsyt.60x60-50.jpg", "artworkUrl100":"http://a2.mzstatic.com/us/r1000/043/Music/a2/bf/7f/mzi.ulkgzsyt.100x100-75.jpg", "collectionPrice":9.99, "trackPrice":0.99, "releaseDate":"2010-04-12T07:00:00Z", "collectionExplicitness":"notExplicit", "trackExplicitness":"notExplicit", "discCount":1, "discNumber":1, "trackCount":20, "trackNumber":4, "trackTimeMillis":275666, "country":"USA", "currency":"USD", "primaryGenreName":"Jazz", "contentAdvisoryRating":null, "shortDescription":null, "longDescription":null}, - {"wrapperType":"track", "kind":"song", "artistId":123113553, "collectionId":365350903, "trackId":365352479, "artistName":"Jos\u00e9 James", "collectionName":"Blackmagic (Deluxe Version)", "trackName":"Warrior", "collectionCensoredName":"Blackmagic (Deluxe Version)", "trackCensoredName":"Warrior", "artistViewUrl":"http://itunes.apple.com/us/artist/jose-james/id123113553?uo=4", "collectionViewUrl":"http://itunes.apple.com/us/album/warrior/id365350903?i=365352479&uo=4", "trackViewUrl":"http://itunes.apple.com/us/album/warrior/id365350903?i=365352479&uo=4", "previewUrl":"http://a2.mzstatic.com/us/r1000/029/Music/09/0d/d5/mzi.euzhdjhi.aac.p.m4a", "artworkUrl30":"http://a1.mzstatic.com/us/r1000/043/Music/a2/bf/7f/mzi.ulkgzsyt.30x30-50.jpg", "artworkUrl60":"http://a5.mzstatic.com/us/r1000/043/Music/a2/bf/7f/mzi.ulkgzsyt.60x60-50.jpg", "artworkUrl100":"http://a2.mzstatic.com/us/r1000/043/Music/a2/bf/7f/mzi.ulkgzsyt.100x100-75.jpg", "collectionPrice":9.99, "trackPrice":0.99, "releaseDate":"2010-04-12T07:00:00Z", "collectionExplicitness":"notExplicit", "trackExplicitness":"notExplicit", "discCount":1, "discNumber":1, "trackCount":20, "trackNumber":5, "trackTimeMillis":355094, "country":"USA", "currency":"USD", "primaryGenreName":"Jazz", "contentAdvisoryRating":null, "shortDescription":null, "longDescription":null}, - {"wrapperType":"track", "kind":"song", "artistId":123113553, "collectionId":365350903, "trackId":365354103, "artistName":"Jos\u00e9 James", "collectionName":"Blackmagic (Deluxe Version)", "trackName":"Warrior", "collectionCensoredName":"Blackmagic (Deluxe Version)", "trackCensoredName":"Warrior (Rockwell Remix)", "artistViewUrl":"http://itunes.apple.com/us/artist/jose-james/id123113553?uo=4", "collectionViewUrl":"http://itunes.apple.com/us/album/warrior-rockwell-remix/id365350903?i=365354103&uo=4", "trackViewUrl":"http://itunes.apple.com/us/album/warrior-rockwell-remix/id365350903?i=365354103&uo=4", "previewUrl":"http://a3.mzstatic.com/us/r1000/004/Music/6c/dd/f1/mzi.ckyvqfuq.aac.p.m4a", "artworkUrl30":"http://a1.mzstatic.com/us/r1000/043/Music/a2/bf/7f/mzi.ulkgzsyt.30x30-50.jpg", "artworkUrl60":"http://a5.mzstatic.com/us/r1000/043/Music/a2/bf/7f/mzi.ulkgzsyt.60x60-50.jpg", "artworkUrl100":"http://a2.mzstatic.com/us/r1000/043/Music/a2/bf/7f/mzi.ulkgzsyt.100x100-75.jpg", "collectionPrice":9.99, "trackPrice":0.99, "releaseDate":"2010-04-12T07:00:00Z", "collectionExplicitness":"notExplicit", "trackExplicitness":"notExplicit", "discCount":1, "discNumber":1, "trackCount":20, "trackNumber":20, "trackTimeMillis":353098, "country":"USA", "currency":"USD", "primaryGenreName":"Jazz", "contentAdvisoryRating":null, "shortDescription":null, "longDescription":null}, - {"wrapperType":"track", "kind":"song", "artistId":123113553, "collectionId":365350903, "trackId":365352707, "artistName":"Jos\u00e9 James", "collectionName":"Blackmagic (Deluxe Version)", "trackName":"Made for Love", "collectionCensoredName":"Blackmagic (Deluxe Version)", "trackCensoredName":"Made for Love", "artistViewUrl":"http://itunes.apple.com/us/artist/jose-james/id123113553?uo=4", "collectionViewUrl":"http://itunes.apple.com/us/album/made-for-love/id365350903?i=365352707&uo=4", "trackViewUrl":"http://itunes.apple.com/us/album/made-for-love/id365350903?i=365352707&uo=4", "previewUrl":"http://a3.mzstatic.com/us/r1000/032/Music/04/47/d2/mzi.zevlzzuk.aac.p.m4a", "artworkUrl30":"http://a1.mzstatic.com/us/r1000/043/Music/a2/bf/7f/mzi.ulkgzsyt.30x30-50.jpg", "artworkUrl60":"http://a5.mzstatic.com/us/r1000/043/Music/a2/bf/7f/mzi.ulkgzsyt.60x60-50.jpg", "artworkUrl100":"http://a2.mzstatic.com/us/r1000/043/Music/a2/bf/7f/mzi.ulkgzsyt.100x100-75.jpg", "collectionPrice":9.99, "trackPrice":0.99, "releaseDate":"2010-04-12T07:00:00Z", "collectionExplicitness":"notExplicit", "trackExplicitness":"notExplicit", "discCount":1, "discNumber":1, "trackCount":20, "trackNumber":6, "trackTimeMillis":230928, "country":"USA", "currency":"USD", "primaryGenreName":"Jazz", "contentAdvisoryRating":null, "shortDescription":null, "longDescription":null}, - {"wrapperType":"track", "kind":"song", "artistId":123113553, "collectionId":365350903, "trackId":365353883, "artistName":"Jos\u00e9 James", "collectionName":"Blackmagic (Deluxe Version)", "trackName":"Visions of Violet (feat. Flying Lotus)", "collectionCensoredName":"Blackmagic (Deluxe Version)", "trackCensoredName":"Visions of Violet (feat. Flying Lotus)", "artistViewUrl":"http://itunes.apple.com/us/artist/jose-james/id123113553?uo=4", "collectionViewUrl":"http://itunes.apple.com/us/album/visions-violet-feat-flying/id365350903?i=365353883&uo=4", "trackViewUrl":"http://itunes.apple.com/us/album/visions-violet-feat-flying/id365350903?i=365353883&uo=4", "previewUrl":"http://a1.mzstatic.com/us/r1000/044/Music/f3/e4/64/mzi.yipsrvwd.aac.p.m4a", "artworkUrl30":"http://a1.mzstatic.com/us/r1000/043/Music/a2/bf/7f/mzi.ulkgzsyt.30x30-50.jpg", "artworkUrl60":"http://a5.mzstatic.com/us/r1000/043/Music/a2/bf/7f/mzi.ulkgzsyt.60x60-50.jpg", "artworkUrl100":"http://a2.mzstatic.com/us/r1000/043/Music/a2/bf/7f/mzi.ulkgzsyt.100x100-75.jpg", "collectionPrice":9.99, "trackPrice":0.99, "releaseDate":"2010-04-12T07:00:00Z", "collectionExplicitness":"notExplicit", "trackExplicitness":"notExplicit", "discCount":1, "discNumber":1, "trackCount":20, "trackNumber":16, "trackTimeMillis":140447, "country":"USA", "currency":"USD", "primaryGenreName":"Jazz", "contentAdvisoryRating":null, "shortDescription":null, "longDescription":null}, - {"wrapperType":"track", "kind":"song", "artistId":123113553, "collectionId":365350903, "trackId":365351658, "artistName":"Jos\u00e9 James", "collectionName":"Blackmagic (Deluxe Version)", "trackName":"Touch", "collectionCensoredName":"Blackmagic (Deluxe Version)", "trackCensoredName":"Touch", "artistViewUrl":"http://itunes.apple.com/us/artist/jose-james/id123113553?uo=4", "collectionViewUrl":"http://itunes.apple.com/us/album/touch/id365350903?i=365351658&uo=4", "trackViewUrl":"http://itunes.apple.com/us/album/touch/id365350903?i=365351658&uo=4", "previewUrl":"http://a5.mzstatic.com/us/r1000/026/Music/6b/0f/50/mzi.mlcnmhnr.aac.p.m4a", "artworkUrl30":"http://a1.mzstatic.com/us/r1000/043/Music/a2/bf/7f/mzi.ulkgzsyt.30x30-50.jpg", "artworkUrl60":"http://a5.mzstatic.com/us/r1000/043/Music/a2/bf/7f/mzi.ulkgzsyt.60x60-50.jpg", "artworkUrl100":"http://a2.mzstatic.com/us/r1000/043/Music/a2/bf/7f/mzi.ulkgzsyt.100x100-75.jpg", "collectionPrice":9.99, "trackPrice":0.99, "releaseDate":"2010-04-12T07:00:00Z", "collectionExplicitness":"notExplicit", "trackExplicitness":"notExplicit", "discCount":1, "discNumber":1, "trackCount":20, "trackNumber":2, "trackTimeMillis":258864, "country":"USA", "currency":"USD", "primaryGenreName":"Jazz", "contentAdvisoryRating":null, "shortDescription":null, "longDescription":null}, - {"wrapperType":"track", "kind":"song", "artistId":5117774, "collectionId":287805088, "trackId":287805379, "artistName":"Jose James", "collectionName":"The Dreamer", "trackName":"Park Bench People", "collectionCensoredName":"The Dreamer", "trackCensoredName":"Park Bench People", "artistViewUrl":"http://itunes.apple.com/us/artist/jose-james/id5117774?uo=4", "collectionViewUrl":"http://itunes.apple.com/us/album/park-bench-people/id287805088?i=287805379&uo=4", "trackViewUrl":"http://itunes.apple.com/us/album/park-bench-people/id287805088?i=287805379&uo=4", "previewUrl":"http://a5.mzstatic.com/us/r1000/054/Music/8f/1b/34/mzm.pjdrzrbi.aac.p.m4a", "artworkUrl30":"http://a5.mzstatic.com/us/r1000/001/Music/8f/6d/26/mzi.elifbnfk.30x30-50.jpg", "artworkUrl60":"http://a2.mzstatic.com/us/r1000/001/Music/8f/6d/26/mzi.elifbnfk.60x60-50.jpg", "artworkUrl100":"http://a4.mzstatic.com/us/r1000/001/Music/8f/6d/26/mzi.elifbnfk.100x100-75.jpg", "collectionPrice":9.90, "trackPrice":0.99, "releaseDate":"2008-03-26T07:00:00Z", "collectionExplicitness":"notExplicit", "trackExplicitness":"notExplicit", "discCount":1, "discNumber":1, "trackCount":10, "trackNumber":4, "trackTimeMillis":363320, "country":"USA", "currency":"USD", "primaryGenreName":"Jazz", "contentAdvisoryRating":null, "shortDescription":null, "longDescription":null}, - {"wrapperType":"track", "kind":"song", "artistId":123113553, "collectionId":365350903, "trackId":365353658, "artistName":"Jos\u00e9 James", "collectionName":"Blackmagic (Deluxe Version)", "trackName":"No Tellin' (I Need You)", "collectionCensoredName":"Blackmagic (Deluxe Version)", "trackCensoredName":"No Tellin' (I Need You)", "artistViewUrl":"http://itunes.apple.com/us/artist/jose-james/id123113553?uo=4", "collectionViewUrl":"http://itunes.apple.com/us/album/no-tellin-i-need-you/id365350903?i=365353658&uo=4", "trackViewUrl":"http://itunes.apple.com/us/album/no-tellin-i-need-you/id365350903?i=365353658&uo=4", "previewUrl":"http://a2.mzstatic.com/us/r1000/010/Music/f3/84/c7/mzi.owscastu.aac.p.m4a", "artworkUrl30":"http://a1.mzstatic.com/us/r1000/043/Music/a2/bf/7f/mzi.ulkgzsyt.30x30-50.jpg", "artworkUrl60":"http://a5.mzstatic.com/us/r1000/043/Music/a2/bf/7f/mzi.ulkgzsyt.60x60-50.jpg", "artworkUrl100":"http://a2.mzstatic.com/us/r1000/043/Music/a2/bf/7f/mzi.ulkgzsyt.100x100-75.jpg", "collectionPrice":9.99, "trackPrice":0.99, "releaseDate":"2010-04-12T07:00:00Z", "collectionExplicitness":"notExplicit", "trackExplicitness":"notExplicit", "discCount":1, "discNumber":1, "trackCount":20, "trackNumber":13, "trackTimeMillis":159432, "country":"USA", "currency":"USD", "primaryGenreName":"Jazz", "contentAdvisoryRating":null, "shortDescription":null, "longDescription":null}, - {"wrapperType":"track", "kind":"song", "artistId":123113553, "collectionId":365350903, "trackId":365351841, "artistName":"Jos\u00e9 James", "collectionName":"Blackmagic (Deluxe Version)", "trackName":"Lay You Down", "collectionCensoredName":"Blackmagic (Deluxe Version)", "trackCensoredName":"Lay You Down", "artistViewUrl":"http://itunes.apple.com/us/artist/jose-james/id123113553?uo=4", "collectionViewUrl":"http://itunes.apple.com/us/album/lay-you-down/id365350903?i=365351841&uo=4", "trackViewUrl":"http://itunes.apple.com/us/album/lay-you-down/id365350903?i=365351841&uo=4", "previewUrl":"http://a2.mzstatic.com/us/r1000/010/Music/10/ee/e1/mzi.dngalaji.aac.p.m4a", "artworkUrl30":"http://a1.mzstatic.com/us/r1000/043/Music/a2/bf/7f/mzi.ulkgzsyt.30x30-50.jpg", "artworkUrl60":"http://a5.mzstatic.com/us/r1000/043/Music/a2/bf/7f/mzi.ulkgzsyt.60x60-50.jpg", "artworkUrl100":"http://a2.mzstatic.com/us/r1000/043/Music/a2/bf/7f/mzi.ulkgzsyt.100x100-75.jpg", "collectionPrice":9.99, "trackPrice":0.99, "releaseDate":"2010-04-12T07:00:00Z", "collectionExplicitness":"notExplicit", "trackExplicitness":"notExplicit", "discCount":1, "discNumber":1, "trackCount":20, "trackNumber":3, "trackTimeMillis":305492, "country":"USA", "currency":"USD", "primaryGenreName":"Jazz", "contentAdvisoryRating":null, "shortDescription":null, "longDescription":null}, - {"wrapperType":"track", "kind":"song", "artistId":123113553, "collectionId":365350903, "trackId":365353042, "artistName":"Jos\u00e9 James", "collectionName":"Blackmagic (Deluxe Version)", "trackName":"The Greater Good", "collectionCensoredName":"Blackmagic (Deluxe Version)", "trackCensoredName":"The Greater Good", "artistViewUrl":"http://itunes.apple.com/us/artist/jose-james/id123113553?uo=4", "collectionViewUrl":"http://itunes.apple.com/us/album/the-greater-good/id365350903?i=365353042&uo=4", "trackViewUrl":"http://itunes.apple.com/us/album/the-greater-good/id365350903?i=365353042&uo=4", "previewUrl":"http://a2.mzstatic.com/us/r1000/049/Music/fe/03/99/mzi.dekqfrkm.aac.p.m4a", "artworkUrl30":"http://a1.mzstatic.com/us/r1000/043/Music/a2/bf/7f/mzi.ulkgzsyt.30x30-50.jpg", "artworkUrl60":"http://a5.mzstatic.com/us/r1000/043/Music/a2/bf/7f/mzi.ulkgzsyt.60x60-50.jpg", "artworkUrl100":"http://a2.mzstatic.com/us/r1000/043/Music/a2/bf/7f/mzi.ulkgzsyt.100x100-75.jpg", "collectionPrice":9.99, "trackPrice":0.99, "releaseDate":"2010-04-12T07:00:00Z", "collectionExplicitness":"notExplicit", "trackExplicitness":"notExplicit", "discCount":1, "discNumber":1, "trackCount":20, "trackNumber":8, "trackTimeMillis":259172, "country":"USA", "currency":"USD", "primaryGenreName":"Jazz", "contentAdvisoryRating":null, "shortDescription":null, "longDescription":null}, - {"wrapperType":"track", "kind":"song", "artistId":123113553, "collectionId":365350903, "trackId":365353980, "artistName":"Jos\u00e9 James", "collectionName":"Blackmagic (Deluxe Version)", "trackName":"Warrior", "collectionCensoredName":"Blackmagic (Deluxe Version)", "trackCensoredName":"Warrior (Sbtrkt Remix)", "artistViewUrl":"http://itunes.apple.com/us/artist/jose-james/id123113553?uo=4", "collectionViewUrl":"http://itunes.apple.com/us/album/warrior-sbtrkt-remix/id365350903?i=365353980&uo=4", "trackViewUrl":"http://itunes.apple.com/us/album/warrior-sbtrkt-remix/id365350903?i=365353980&uo=4", "previewUrl":"http://a5.mzstatic.com/us/r1000/024/Music/8e/df/93/mzi.qgdgxket.aac.p.m4a", "artworkUrl30":"http://a1.mzstatic.com/us/r1000/043/Music/a2/bf/7f/mzi.ulkgzsyt.30x30-50.jpg", "artworkUrl60":"http://a5.mzstatic.com/us/r1000/043/Music/a2/bf/7f/mzi.ulkgzsyt.60x60-50.jpg", "artworkUrl100":"http://a2.mzstatic.com/us/r1000/043/Music/a2/bf/7f/mzi.ulkgzsyt.100x100-75.jpg", "collectionPrice":9.99, "trackPrice":0.99, "releaseDate":"2010-04-12T07:00:00Z", "collectionExplicitness":"notExplicit", "trackExplicitness":"notExplicit", "discCount":1, "discNumber":1, "trackCount":20, "trackNumber":18, "trackTimeMillis":272852, "country":"USA", "currency":"USD", "primaryGenreName":"Jazz", "contentAdvisoryRating":null, "shortDescription":null, "longDescription":null}, - {"wrapperType":"track", "kind":"song", "artistId":123113553, "collectionId":365350903, "trackId":365353129, "artistName":"Jos\u00e9 James", "collectionName":"Blackmagic (Deluxe Version)", "trackName":"Blackmagic", "collectionCensoredName":"Blackmagic (Deluxe Version)", "trackCensoredName":"Blackmagic", "artistViewUrl":"http://itunes.apple.com/us/artist/jose-james/id123113553?uo=4", "collectionViewUrl":"http://itunes.apple.com/us/album/blackmagic/id365350903?i=365353129&uo=4", "trackViewUrl":"http://itunes.apple.com/us/album/blackmagic/id365350903?i=365353129&uo=4", "previewUrl":"http://a3.mzstatic.com/us/r1000/035/Music/a9/d8/f0/mzi.qzpytsme.aac.p.m4a", "artworkUrl30":"http://a1.mzstatic.com/us/r1000/043/Music/a2/bf/7f/mzi.ulkgzsyt.30x30-50.jpg", "artworkUrl60":"http://a5.mzstatic.com/us/r1000/043/Music/a2/bf/7f/mzi.ulkgzsyt.60x60-50.jpg", "artworkUrl100":"http://a2.mzstatic.com/us/r1000/043/Music/a2/bf/7f/mzi.ulkgzsyt.100x100-75.jpg", "collectionPrice":9.99, "trackPrice":0.99, "releaseDate":"2010-04-12T07:00:00Z", "collectionExplicitness":"notExplicit", "trackExplicitness":"notExplicit", "discCount":1, "discNumber":1, "trackCount":20, "trackNumber":9, "trackTimeMillis":243429, "country":"USA", "currency":"USD", "primaryGenreName":"Jazz", "contentAdvisoryRating":null, "shortDescription":null, "longDescription":null}, - {"wrapperType":"track", "kind":"song", "artistId":123113553, "collectionId":365350903, "trackId":365353493, "artistName":"Jos\u00e9 James", "collectionName":"Blackmagic (Deluxe Version)", "trackName":"Beauty", "collectionCensoredName":"Blackmagic (Deluxe Version)", "trackCensoredName":"Beauty", "artistViewUrl":"http://itunes.apple.com/us/artist/jose-james/id123113553?uo=4", "collectionViewUrl":"http://itunes.apple.com/us/album/beauty/id365350903?i=365353493&uo=4", "trackViewUrl":"http://itunes.apple.com/us/album/beauty/id365350903?i=365353493&uo=4", "previewUrl":"http://a3.mzstatic.com/us/r1000/002/Music/32/ff/6f/mzi.xleezrzq.aac.p.m4a", "artworkUrl30":"http://a1.mzstatic.com/us/r1000/043/Music/a2/bf/7f/mzi.ulkgzsyt.30x30-50.jpg", "artworkUrl60":"http://a5.mzstatic.com/us/r1000/043/Music/a2/bf/7f/mzi.ulkgzsyt.60x60-50.jpg", "artworkUrl100":"http://a2.mzstatic.com/us/r1000/043/Music/a2/bf/7f/mzi.ulkgzsyt.100x100-75.jpg", "collectionPrice":9.99, "trackPrice":0.99, "releaseDate":"2010-04-12T07:00:00Z", "collectionExplicitness":"notExplicit", "trackExplicitness":"notExplicit", "discCount":1, "discNumber":1, "trackCount":20, "trackNumber":12, "trackTimeMillis":250021, "country":"USA", "currency":"USD", "primaryGenreName":"Jazz", "contentAdvisoryRating":null, "shortDescription":null, "longDescription":null}, - {"wrapperType":"track", "kind":"song", "artistId":123113553, "collectionId":365350903, "trackId":365353269, "artistName":"Jos\u00e9 James", "collectionName":"Blackmagic (Deluxe Version)", "trackName":"Detroit Loveletter", "collectionCensoredName":"Blackmagic (Deluxe Version)", "trackCensoredName":"Detroit Loveletter", "artistViewUrl":"http://itunes.apple.com/us/artist/jose-james/id123113553?uo=4", "collectionViewUrl":"http://itunes.apple.com/us/album/detroit-loveletter/id365350903?i=365353269&uo=4", "trackViewUrl":"http://itunes.apple.com/us/album/detroit-loveletter/id365350903?i=365353269&uo=4", "previewUrl":"http://a3.mzstatic.com/us/r1000/010/Music/4d/8c/d4/mzi.arqaexng.aac.p.m4a", "artworkUrl30":"http://a1.mzstatic.com/us/r1000/043/Music/a2/bf/7f/mzi.ulkgzsyt.30x30-50.jpg", "artworkUrl60":"http://a5.mzstatic.com/us/r1000/043/Music/a2/bf/7f/mzi.ulkgzsyt.60x60-50.jpg", "artworkUrl100":"http://a2.mzstatic.com/us/r1000/043/Music/a2/bf/7f/mzi.ulkgzsyt.100x100-75.jpg", "collectionPrice":9.99, "trackPrice":0.99, "releaseDate":"2010-04-12T07:00:00Z", "collectionExplicitness":"notExplicit", "trackExplicitness":"notExplicit", "discCount":1, "discNumber":1, "trackCount":20, "trackNumber":10, "trackTimeMillis":241540, "country":"USA", "currency":"USD", "primaryGenreName":"Jazz", "contentAdvisoryRating":null, "shortDescription":null, "longDescription":null}, - {"wrapperType":"track", "kind":"song", "artistId":5117774, "collectionId":287805088, "trackId":287805308, "artistName":"Jose James", "collectionName":"The Dreamer", "trackName":"Blackeyedsusan", "collectionCensoredName":"The Dreamer", "trackCensoredName":"Blackeyedsusan", "artistViewUrl":"http://itunes.apple.com/us/artist/jose-james/id5117774?uo=4", "collectionViewUrl":"http://itunes.apple.com/us/album/blackeyedsusan/id287805088?i=287805308&uo=4", "trackViewUrl":"http://itunes.apple.com/us/album/blackeyedsusan/id287805088?i=287805308&uo=4", "previewUrl":"http://a3.mzstatic.com/us/r1000/021/Music/a1/d8/e1/mzm.brvmkudk.aac.p.m4a", "artworkUrl30":"http://a5.mzstatic.com/us/r1000/001/Music/8f/6d/26/mzi.elifbnfk.30x30-50.jpg", "artworkUrl60":"http://a2.mzstatic.com/us/r1000/001/Music/8f/6d/26/mzi.elifbnfk.60x60-50.jpg", "artworkUrl100":"http://a4.mzstatic.com/us/r1000/001/Music/8f/6d/26/mzi.elifbnfk.100x100-75.jpg", "collectionPrice":9.90, "trackPrice":0.99, "releaseDate":"2008-03-26T07:00:00Z", "collectionExplicitness":"notExplicit", "trackExplicitness":"notExplicit", "discCount":1, "discNumber":1, "trackCount":10, "trackNumber":3, "trackTimeMillis":296787, "country":"USA", "currency":"USD", "primaryGenreName":"Jazz", "contentAdvisoryRating":null, "shortDescription":null, "longDescription":null}, - {"wrapperType":"track", "kind":"song", "artistId":123113553, "collectionId":365350903, "trackId":365353833, "artistName":"Jos\u00e9 James", "collectionName":"Blackmagic (Deluxe Version)", "trackName":"Evidence of Existence", "collectionCensoredName":"Blackmagic (Deluxe Version)", "trackCensoredName":"Evidence of Existence", "artistViewUrl":"http://itunes.apple.com/us/artist/jose-james/id123113553?uo=4", "collectionViewUrl":"http://itunes.apple.com/us/album/evidence-of-existence/id365350903?i=365353833&uo=4", "trackViewUrl":"http://itunes.apple.com/us/album/evidence-of-existence/id365350903?i=365353833&uo=4", "previewUrl":"http://a1.mzstatic.com/us/r1000/046/Music/23/0f/16/mzi.enywxruq.aac.p.m4a", "artworkUrl30":"http://a1.mzstatic.com/us/r1000/043/Music/a2/bf/7f/mzi.ulkgzsyt.30x30-50.jpg", "artworkUrl60":"http://a5.mzstatic.com/us/r1000/043/Music/a2/bf/7f/mzi.ulkgzsyt.60x60-50.jpg", "artworkUrl100":"http://a2.mzstatic.com/us/r1000/043/Music/a2/bf/7f/mzi.ulkgzsyt.100x100-75.jpg", "collectionPrice":9.99, "trackPrice":0.99, "releaseDate":"2010-04-12T07:00:00Z", "collectionExplicitness":"notExplicit", "trackExplicitness":"notExplicit", "discCount":1, "discNumber":1, "trackCount":20, "trackNumber":15, "trackTimeMillis":326327, "country":"USA", "currency":"USD", "primaryGenreName":"Jazz", "contentAdvisoryRating":null, "shortDescription":null, "longDescription":null}, - {"wrapperType":"track", "kind":"song", "artistId":123113553, "collectionId":365350903, "trackId":365353801, "artistName":"Jos\u00e9 James", "collectionName":"Blackmagic (Deluxe Version)", "trackName":"The Light", "collectionCensoredName":"Blackmagic (Deluxe Version)", "trackCensoredName":"The Light", "artistViewUrl":"http://itunes.apple.com/us/artist/jose-james/id123113553?uo=4", "collectionViewUrl":"http://itunes.apple.com/us/album/the-light/id365350903?i=365353801&uo=4", "trackViewUrl":"http://itunes.apple.com/us/album/the-light/id365350903?i=365353801&uo=4", "previewUrl":"http://a3.mzstatic.com/us/r1000/044/Music/bc/8f/37/mzi.istzgbtp.aac.p.m4a", "artworkUrl30":"http://a1.mzstatic.com/us/r1000/043/Music/a2/bf/7f/mzi.ulkgzsyt.30x30-50.jpg", "artworkUrl60":"http://a5.mzstatic.com/us/r1000/043/Music/a2/bf/7f/mzi.ulkgzsyt.60x60-50.jpg", "artworkUrl100":"http://a2.mzstatic.com/us/r1000/043/Music/a2/bf/7f/mzi.ulkgzsyt.100x100-75.jpg", "collectionPrice":9.99, "trackPrice":-1.00, "releaseDate":"2010-04-12T07:00:00Z", "collectionExplicitness":"notExplicit", "trackExplicitness":"notExplicit", "discCount":1, "discNumber":1, "trackCount":20, "trackNumber":14, "trackTimeMillis":631591, "country":"USA", "currency":"USD", "primaryGenreName":"Jazz", "contentAdvisoryRating":null, "shortDescription":null, "longDescription":null}, - {"wrapperType":"track", "kind":"song", "artistId":5117774, "collectionId":287805088, "trackId":287805552, "artistName":"Jose James", "collectionName":"The Dreamer", "trackName":"Red", "collectionCensoredName":"The Dreamer", "trackCensoredName":"Red", "artistViewUrl":"http://itunes.apple.com/us/artist/jose-james/id5117774?uo=4", "collectionViewUrl":"http://itunes.apple.com/us/album/red/id287805088?i=287805552&uo=4", "trackViewUrl":"http://itunes.apple.com/us/album/red/id287805088?i=287805552&uo=4", "previewUrl":"http://a1.mzstatic.com/us/r1000/011/Music/4f/f8/13/mzm.wkwlppfi.aac.p.m4a", "artworkUrl30":"http://a5.mzstatic.com/us/r1000/001/Music/8f/6d/26/mzi.elifbnfk.30x30-50.jpg", "artworkUrl60":"http://a2.mzstatic.com/us/r1000/001/Music/8f/6d/26/mzi.elifbnfk.60x60-50.jpg", "artworkUrl100":"http://a4.mzstatic.com/us/r1000/001/Music/8f/6d/26/mzi.elifbnfk.100x100-75.jpg", "collectionPrice":9.90, "trackPrice":0.99, "releaseDate":"2008-03-26T07:00:00Z", "collectionExplicitness":"notExplicit", "trackExplicitness":"notExplicit", "discCount":1, "discNumber":1, "trackCount":10, "trackNumber":7, "trackTimeMillis":315907, "country":"USA", "currency":"USD", "primaryGenreName":"Jazz", "contentAdvisoryRating":null, "shortDescription":null, "longDescription":null}, - {"wrapperType":"track", "kind":"song", "artistId":5117774, "collectionId":287805088, "trackId":287805689, "artistName":"Jose James", "collectionName":"The Dreamer", "trackName":"Love", "collectionCensoredName":"The Dreamer", "trackCensoredName":"Love", "artistViewUrl":"http://itunes.apple.com/us/artist/jose-james/id5117774?uo=4", "collectionViewUrl":"http://itunes.apple.com/us/album/love/id287805088?i=287805689&uo=4", "trackViewUrl":"http://itunes.apple.com/us/album/love/id287805088?i=287805689&uo=4", "previewUrl":"http://a4.mzstatic.com/us/r1000/048/Music/d8/53/2e/mzm.bhfufryc.aac.p.m4a", "artworkUrl30":"http://a5.mzstatic.com/us/r1000/001/Music/8f/6d/26/mzi.elifbnfk.30x30-50.jpg", "artworkUrl60":"http://a2.mzstatic.com/us/r1000/001/Music/8f/6d/26/mzi.elifbnfk.60x60-50.jpg", "artworkUrl100":"http://a4.mzstatic.com/us/r1000/001/Music/8f/6d/26/mzi.elifbnfk.100x100-75.jpg", "collectionPrice":9.90, "trackPrice":0.99, "releaseDate":"2008-03-26T07:00:00Z", "collectionExplicitness":"notExplicit", "trackExplicitness":"notExplicit", "discCount":1, "discNumber":1, "trackCount":10, "trackNumber":10, "trackTimeMillis":324013, "country":"USA", "currency":"USD", "primaryGenreName":"Jazz", "contentAdvisoryRating":null, "shortDescription":null, "longDescription":null}, - {"wrapperType":"track", "kind":"song", "artistId":5117774, "collectionId":287805088, "trackId":287805225, "artistName":"Jose James", "collectionName":"The Dreamer", "trackName":"The Dreamer", "collectionCensoredName":"The Dreamer", "trackCensoredName":"The Dreamer", "artistViewUrl":"http://itunes.apple.com/us/artist/jose-james/id5117774?uo=4", "collectionViewUrl":"http://itunes.apple.com/us/album/the-dreamer/id287805088?i=287805225&uo=4", "trackViewUrl":"http://itunes.apple.com/us/album/the-dreamer/id287805088?i=287805225&uo=4", "previewUrl":"http://a3.mzstatic.com/us/r1000/043/Music/81/7e/1c/mzm.viszqyno.aac.p.m4a", "artworkUrl30":"http://a5.mzstatic.com/us/r1000/001/Music/8f/6d/26/mzi.elifbnfk.30x30-50.jpg", "artworkUrl60":"http://a2.mzstatic.com/us/r1000/001/Music/8f/6d/26/mzi.elifbnfk.60x60-50.jpg", "artworkUrl100":"http://a4.mzstatic.com/us/r1000/001/Music/8f/6d/26/mzi.elifbnfk.100x100-75.jpg", "collectionPrice":9.90, "trackPrice":0.99, "releaseDate":"2008-03-26T07:00:00Z", "collectionExplicitness":"notExplicit", "trackExplicitness":"notExplicit", "discCount":1, "discNumber":1, "trackCount":10, "trackNumber":1, "trackTimeMillis":425280, "country":"USA", "currency":"USD", "primaryGenreName":"Jazz", "contentAdvisoryRating":null, "shortDescription":null, "longDescription":null}, - {"wrapperType":"track", "kind":"song", "artistId":5117774, "collectionId":287805088, "trackId":287805606, "artistName":"Jose James", "collectionName":"The Dreamer", "trackName":"Winter Wind", "collectionCensoredName":"The Dreamer", "trackCensoredName":"Winter Wind", "artistViewUrl":"http://itunes.apple.com/us/artist/jose-james/id5117774?uo=4", "collectionViewUrl":"http://itunes.apple.com/us/album/winter-wind/id287805088?i=287805606&uo=4", "trackViewUrl":"http://itunes.apple.com/us/album/winter-wind/id287805088?i=287805606&uo=4", "previewUrl":"http://a5.mzstatic.com/us/r1000/034/Music/dd/3d/26/mzm.lzxzqjaz.aac.p.m4a", "artworkUrl30":"http://a5.mzstatic.com/us/r1000/001/Music/8f/6d/26/mzi.elifbnfk.30x30-50.jpg", "artworkUrl60":"http://a2.mzstatic.com/us/r1000/001/Music/8f/6d/26/mzi.elifbnfk.60x60-50.jpg", "artworkUrl100":"http://a4.mzstatic.com/us/r1000/001/Music/8f/6d/26/mzi.elifbnfk.100x100-75.jpg", "collectionPrice":9.90, "trackPrice":0.99, "releaseDate":"2008-03-26T07:00:00Z", "collectionExplicitness":"notExplicit", "trackExplicitness":"notExplicit", "discCount":1, "discNumber":1, "trackCount":10, "trackNumber":8, "trackTimeMillis":427333, "country":"USA", "currency":"USD", "primaryGenreName":"Jazz", "contentAdvisoryRating":null, "shortDescription":null, "longDescription":null}, - {"wrapperType":"track", "kind":"song", "artistId":5117774, "collectionId":287805088, "trackId":287805493, "artistName":"Jose James", "collectionName":"The Dreamer", "trackName":"Spirits Up Above", "collectionCensoredName":"The Dreamer", "trackCensoredName":"Spirits Up Above", "artistViewUrl":"http://itunes.apple.com/us/artist/jose-james/id5117774?uo=4", "collectionViewUrl":"http://itunes.apple.com/us/album/spirits-up-above/id287805088?i=287805493&uo=4", "trackViewUrl":"http://itunes.apple.com/us/album/spirits-up-above/id287805088?i=287805493&uo=4", "previewUrl":"http://a5.mzstatic.com/us/r1000/009/Music/33/df/63/mzm.qqrxsszt.aac.p.m4a", "artworkUrl30":"http://a5.mzstatic.com/us/r1000/001/Music/8f/6d/26/mzi.elifbnfk.30x30-50.jpg", "artworkUrl60":"http://a2.mzstatic.com/us/r1000/001/Music/8f/6d/26/mzi.elifbnfk.60x60-50.jpg", "artworkUrl100":"http://a4.mzstatic.com/us/r1000/001/Music/8f/6d/26/mzi.elifbnfk.100x100-75.jpg", "collectionPrice":9.90, "trackPrice":0.99, "releaseDate":"2008-03-26T07:00:00Z", "collectionExplicitness":"notExplicit", "trackExplicitness":"notExplicit", "discCount":1, "discNumber":1, "trackCount":10, "trackNumber":5, "trackTimeMillis":300693, "country":"USA", "currency":"USD", "primaryGenreName":"Jazz", "contentAdvisoryRating":null, "shortDescription":null, "longDescription":null}, - {"wrapperType":"track", "kind":"song", "artistId":5117774, "collectionId":287805088, "trackId":287805233, "artistName":"Jose James", "collectionName":"The Dreamer", "trackName":"Velvet", "collectionCensoredName":"The Dreamer", "trackCensoredName":"Velvet", "artistViewUrl":"http://itunes.apple.com/us/artist/jose-james/id5117774?uo=4", "collectionViewUrl":"http://itunes.apple.com/us/album/velvet/id287805088?i=287805233&uo=4", "trackViewUrl":"http://itunes.apple.com/us/album/velvet/id287805088?i=287805233&uo=4", "previewUrl":"http://a3.mzstatic.com/us/r1000/042/Music/c8/53/2d/mzm.whwgbwlm.aac.p.m4a", "artworkUrl30":"http://a5.mzstatic.com/us/r1000/001/Music/8f/6d/26/mzi.elifbnfk.30x30-50.jpg", "artworkUrl60":"http://a2.mzstatic.com/us/r1000/001/Music/8f/6d/26/mzi.elifbnfk.60x60-50.jpg", "artworkUrl100":"http://a4.mzstatic.com/us/r1000/001/Music/8f/6d/26/mzi.elifbnfk.100x100-75.jpg", "collectionPrice":9.90, "trackPrice":0.99, "releaseDate":"2008-03-26T07:00:00Z", "collectionExplicitness":"notExplicit", "trackExplicitness":"notExplicit", "discCount":1, "discNumber":1, "trackCount":10, "trackNumber":2, "trackTimeMillis":241467, "country":"USA", "currency":"USD", "primaryGenreName":"Jazz", "contentAdvisoryRating":null, "shortDescription":null, "longDescription":null}, - {"wrapperType":"track", "kind":"song", "artistId":5117774, "collectionId":287805088, "trackId":287805505, "artistName":"Jose James", "collectionName":"The Dreamer", "trackName":"Nola", "collectionCensoredName":"The Dreamer", "trackCensoredName":"Nola", "artistViewUrl":"http://itunes.apple.com/us/artist/jose-james/id5117774?uo=4", "collectionViewUrl":"http://itunes.apple.com/us/album/nola/id287805088?i=287805505&uo=4", "trackViewUrl":"http://itunes.apple.com/us/album/nola/id287805088?i=287805505&uo=4", "previewUrl":"http://a1.mzstatic.com/us/r1000/039/Music/3a/a1/53/mzm.jqbyidpn.aac.p.m4a", "artworkUrl30":"http://a5.mzstatic.com/us/r1000/001/Music/8f/6d/26/mzi.elifbnfk.30x30-50.jpg", "artworkUrl60":"http://a2.mzstatic.com/us/r1000/001/Music/8f/6d/26/mzi.elifbnfk.60x60-50.jpg", "artworkUrl100":"http://a4.mzstatic.com/us/r1000/001/Music/8f/6d/26/mzi.elifbnfk.100x100-75.jpg", "collectionPrice":9.90, "trackPrice":0.99, "releaseDate":"2008-03-26T07:00:00Z", "collectionExplicitness":"notExplicit", "trackExplicitness":"notExplicit", "discCount":1, "discNumber":1, "trackCount":10, "trackNumber":6, "trackTimeMillis":236173, "country":"USA", "currency":"USD", "primaryGenreName":"Jazz", "contentAdvisoryRating":null, "shortDescription":null, "longDescription":null}, - {"wrapperType":"track", "kind":"song", "artistId":123113553, "collectionId":370608373, "trackId":370611848, "artistName":"Jos\u00e9 James & Jef Neve", "collectionName":"For All We Know (Bonus Track Version)", "trackName":"For All We Know", "collectionCensoredName":"For All We Know (Bonus Track Version)", "trackCensoredName":"For All We Know", "artistViewUrl":"http://itunes.apple.com/us/artist/jose-james/id123113553?uo=4", "collectionViewUrl":"http://itunes.apple.com/us/album/for-all-we-know/id370608373?i=370611848&uo=4", "trackViewUrl":"http://itunes.apple.com/us/album/for-all-we-know/id370608373?i=370611848&uo=4", "previewUrl":"http://a1.mzstatic.com/us/r1000/037/Music/54/e4/af/mzi.nrzlwozg.aac.p.m4a", "artworkUrl30":"http://a4.mzstatic.com/us/r1000/018/Music/0e/66/cb/mzi.lfccwird.30x30-50.jpg", "artworkUrl60":"http://a3.mzstatic.com/us/r1000/018/Music/0e/66/cb/mzi.lfccwird.60x60-50.jpg", "artworkUrl100":"http://a4.mzstatic.com/us/r1000/018/Music/0e/66/cb/mzi.lfccwird.100x100-75.jpg", "collectionPrice":9.99, "trackPrice":0.99, "releaseDate":"2010-05-11T07:00:00Z", "collectionExplicitness":"notExplicit", "trackExplicitness":"notExplicit", "discCount":1, "discNumber":1, "trackCount":10, "trackNumber":9, "trackTimeMillis":312727, "country":"USA", "currency":"USD", "primaryGenreName":"Jazz", "contentAdvisoryRating":null, "shortDescription":null, "longDescription":null}, - {"wrapperType":"track", "kind":"song", "artistId":123113553, "collectionId":370608373, "trackId":370611252, "artistName":"Jos\u00e9 James & Jef Neve", "collectionName":"For All We Know (Bonus Track Version)", "trackName":"When I Fall In Love", "collectionCensoredName":"For All We Know (Bonus Track Version)", "trackCensoredName":"When I Fall In Love", "artistViewUrl":"http://itunes.apple.com/us/artist/jose-james/id123113553?uo=4", "collectionViewUrl":"http://itunes.apple.com/us/album/when-i-fall-in-love/id370608373?i=370611252&uo=4", "trackViewUrl":"http://itunes.apple.com/us/album/when-i-fall-in-love/id370608373?i=370611252&uo=4", "previewUrl":"http://a4.mzstatic.com/us/r1000/050/Music/5d/58/5f/mzi.olitylaw.aac.p.m4a", "artworkUrl30":"http://a4.mzstatic.com/us/r1000/018/Music/0e/66/cb/mzi.lfccwird.30x30-50.jpg", "artworkUrl60":"http://a3.mzstatic.com/us/r1000/018/Music/0e/66/cb/mzi.lfccwird.60x60-50.jpg", "artworkUrl100":"http://a4.mzstatic.com/us/r1000/018/Music/0e/66/cb/mzi.lfccwird.100x100-75.jpg", "collectionPrice":9.99, "trackPrice":0.99, "releaseDate":"2010-05-11T07:00:00Z", "collectionExplicitness":"notExplicit", "trackExplicitness":"notExplicit", "discCount":1, "discNumber":1, "trackCount":10, "trackNumber":5, "trackTimeMillis":314054, "country":"USA", "currency":"USD", "primaryGenreName":"Jazz", "contentAdvisoryRating":null, "shortDescription":null, "longDescription":null}, - {"wrapperType":"track", "kind":"song", "artistId":123113553, "collectionId":370608373, "trackId":370608586, "artistName":"Jos\u00e9 James & Jef Neve", "collectionName":"For All We Know (Bonus Track Version)", "trackName":"Autumn In New York", "collectionCensoredName":"For All We Know (Bonus Track Version)", "trackCensoredName":"Autumn In New York", "artistViewUrl":"http://itunes.apple.com/us/artist/jose-james/id123113553?uo=4", "collectionViewUrl":"http://itunes.apple.com/us/album/autumn-in-new-york/id370608373?i=370608586&uo=4", "trackViewUrl":"http://itunes.apple.com/us/album/autumn-in-new-york/id370608373?i=370608586&uo=4", "previewUrl":"http://a2.mzstatic.com/us/r1000/024/Music/44/ec/f2/mzi.rmytqwwt.aac.p.m4a", "artworkUrl30":"http://a4.mzstatic.com/us/r1000/018/Music/0e/66/cb/mzi.lfccwird.30x30-50.jpg", "artworkUrl60":"http://a3.mzstatic.com/us/r1000/018/Music/0e/66/cb/mzi.lfccwird.60x60-50.jpg", "artworkUrl100":"http://a4.mzstatic.com/us/r1000/018/Music/0e/66/cb/mzi.lfccwird.100x100-75.jpg", "collectionPrice":9.99, "trackPrice":0.99, "releaseDate":"2010-05-11T07:00:00Z", "collectionExplicitness":"notExplicit", "trackExplicitness":"notExplicit", "discCount":1, "discNumber":1, "trackCount":10, "trackNumber":1, "trackTimeMillis":200071, "country":"USA", "currency":"USD", "primaryGenreName":"Jazz", "contentAdvisoryRating":null, "shortDescription":null, "longDescription":null}, - {"wrapperType":"track", "kind":"song", "artistId":123113553, "collectionId":370608373, "trackId":370608986, "artistName":"Jos\u00e9 James & Jef Neve", "collectionName":"For All We Know (Bonus Track Version)", "trackName":"Embraceable You", "collectionCensoredName":"For All We Know (Bonus Track Version)", "trackCensoredName":"Embraceable You", "artistViewUrl":"http://itunes.apple.com/us/artist/jose-james/id123113553?uo=4", "collectionViewUrl":"http://itunes.apple.com/us/album/embraceable-you/id370608373?i=370608986&uo=4", "trackViewUrl":"http://itunes.apple.com/us/album/embraceable-you/id370608373?i=370608986&uo=4", "previewUrl":"http://a1.mzstatic.com/us/r1000/006/Music/79/38/b1/mzi.bkhfjjst.aac.p.m4a", "artworkUrl30":"http://a4.mzstatic.com/us/r1000/018/Music/0e/66/cb/mzi.lfccwird.30x30-50.jpg", "artworkUrl60":"http://a3.mzstatic.com/us/r1000/018/Music/0e/66/cb/mzi.lfccwird.60x60-50.jpg", "artworkUrl100":"http://a4.mzstatic.com/us/r1000/018/Music/0e/66/cb/mzi.lfccwird.100x100-75.jpg", "collectionPrice":9.99, "trackPrice":0.99, "releaseDate":"2010-05-11T07:00:00Z", "collectionExplicitness":"notExplicit", "trackExplicitness":"notExplicit", "discCount":1, "discNumber":1, "trackCount":10, "trackNumber":2, "trackTimeMillis":375153, "country":"USA", "currency":"USD", "primaryGenreName":"Jazz", "contentAdvisoryRating":null, "shortDescription":null, "longDescription":null}, - {"wrapperType":"track", "kind":"song", "artistId":123113553, "collectionId":370608373, "trackId":370609436, "artistName":"Jos\u00e9 James & Jef Neve", "collectionName":"For All We Know (Bonus Track Version)", "trackName":"Gee Baby, Ain't I Good to You", "collectionCensoredName":"For All We Know (Bonus Track Version)", "trackCensoredName":"Gee Baby, Ain't I Good to You", "artistViewUrl":"http://itunes.apple.com/us/artist/jose-james/id123113553?uo=4", "collectionViewUrl":"http://itunes.apple.com/us/album/gee-baby-aint-i-good-to-you/id370608373?i=370609436&uo=4", "trackViewUrl":"http://itunes.apple.com/us/album/gee-baby-aint-i-good-to-you/id370608373?i=370609436&uo=4", "previewUrl":"http://a1.mzstatic.com/us/r1000/003/Music/b5/c3/a9/mzi.xumxkdmi.aac.p.m4a", "artworkUrl30":"http://a4.mzstatic.com/us/r1000/018/Music/0e/66/cb/mzi.lfccwird.30x30-50.jpg", "artworkUrl60":"http://a3.mzstatic.com/us/r1000/018/Music/0e/66/cb/mzi.lfccwird.60x60-50.jpg", "artworkUrl100":"http://a4.mzstatic.com/us/r1000/018/Music/0e/66/cb/mzi.lfccwird.100x100-75.jpg", "collectionPrice":9.99, "trackPrice":0.99, "releaseDate":"2010-05-11T07:00:00Z", "collectionExplicitness":"notExplicit", "trackExplicitness":"notExplicit", "discCount":1, "discNumber":1, "trackCount":10, "trackNumber":3, "trackTimeMillis":319293, "country":"USA", "currency":"USD", "primaryGenreName":"Jazz", "contentAdvisoryRating":null, "shortDescription":null, "longDescription":null}, - {"wrapperType":"track", "kind":"song", "artistId":123113553, "collectionId":370608373, "trackId":370610685, "artistName":"Jos\u00e9 James & Jef Neve", "collectionName":"For All We Know (Bonus Track Version)", "trackName":"Body and Soul", "collectionCensoredName":"For All We Know (Bonus Track Version)", "trackCensoredName":"Body and Soul", "artistViewUrl":"http://itunes.apple.com/us/artist/jose-james/id123113553?uo=4", "collectionViewUrl":"http://itunes.apple.com/us/album/body-and-soul/id370608373?i=370610685&uo=4", "trackViewUrl":"http://itunes.apple.com/us/album/body-and-soul/id370608373?i=370610685&uo=4", "previewUrl":"http://a3.mzstatic.com/us/r1000/033/Music/67/18/a1/mzi.hdcilbqn.aac.p.m4a", "artworkUrl30":"http://a4.mzstatic.com/us/r1000/018/Music/0e/66/cb/mzi.lfccwird.30x30-50.jpg", "artworkUrl60":"http://a3.mzstatic.com/us/r1000/018/Music/0e/66/cb/mzi.lfccwird.60x60-50.jpg", "artworkUrl100":"http://a4.mzstatic.com/us/r1000/018/Music/0e/66/cb/mzi.lfccwird.100x100-75.jpg", "collectionPrice":9.99, "trackPrice":0.99, "releaseDate":"2010-05-11T07:00:00Z", "collectionExplicitness":"notExplicit", "trackExplicitness":"notExplicit", "discCount":1, "discNumber":1, "trackCount":10, "trackNumber":4, "trackTimeMillis":386380, "country":"USA", "currency":"USD", "primaryGenreName":"Jazz", "contentAdvisoryRating":null, "shortDescription":null, "longDescription":null}, - {"wrapperType":"track", "kind":"song", "artistId":123113553, "collectionId":370608373, "trackId":370611631, "artistName":"Jos\u00e9 James & Jef Neve", "collectionName":"For All We Know (Bonus Track Version)", "trackName":"Lush Life", "collectionCensoredName":"For All We Know (Bonus Track Version)", "trackCensoredName":"Lush Life", "artistViewUrl":"http://itunes.apple.com/us/artist/jose-james/id123113553?uo=4", "collectionViewUrl":"http://itunes.apple.com/us/album/lush-life/id370608373?i=370611631&uo=4", "trackViewUrl":"http://itunes.apple.com/us/album/lush-life/id370608373?i=370611631&uo=4", "previewUrl":"http://a2.mzstatic.com/us/r1000/049/Music/52/54/c7/mzi.zhswfzwh.aac.p.m4a", "artworkUrl30":"http://a4.mzstatic.com/us/r1000/018/Music/0e/66/cb/mzi.lfccwird.30x30-50.jpg", "artworkUrl60":"http://a3.mzstatic.com/us/r1000/018/Music/0e/66/cb/mzi.lfccwird.60x60-50.jpg", "artworkUrl100":"http://a4.mzstatic.com/us/r1000/018/Music/0e/66/cb/mzi.lfccwird.100x100-75.jpg", "collectionPrice":9.99, "trackPrice":-1.00, "releaseDate":"2010-05-11T07:00:00Z", "collectionExplicitness":"notExplicit", "trackExplicitness":"notExplicit", "discCount":1, "discNumber":1, "trackCount":10, "trackNumber":8, "trackTimeMillis":448028, "country":"USA", "currency":"USD", "primaryGenreName":"Jazz", "contentAdvisoryRating":null, "shortDescription":null, "longDescription":null}, - {"wrapperType":"track", "kind":"song", "artistId":123113553, "collectionId":370608373, "trackId":370611570, "artistName":"Jos\u00e9 James & Jef Neve", "collectionName":"For All We Know (Bonus Track Version)", "trackName":"Just Squeeze Me", "collectionCensoredName":"For All We Know (Bonus Track Version)", "trackCensoredName":"Just Squeeze Me", "artistViewUrl":"http://itunes.apple.com/us/artist/jose-james/id123113553?uo=4", "collectionViewUrl":"http://itunes.apple.com/us/album/just-squeeze-me/id370608373?i=370611570&uo=4", "trackViewUrl":"http://itunes.apple.com/us/album/just-squeeze-me/id370608373?i=370611570&uo=4", "previewUrl":"http://a4.mzstatic.com/us/r1000/054/Music/9a/4f/8d/mzi.qxbtzmav.aac.p.m4a", "artworkUrl30":"http://a4.mzstatic.com/us/r1000/018/Music/0e/66/cb/mzi.lfccwird.30x30-50.jpg", "artworkUrl60":"http://a3.mzstatic.com/us/r1000/018/Music/0e/66/cb/mzi.lfccwird.60x60-50.jpg", "artworkUrl100":"http://a4.mzstatic.com/us/r1000/018/Music/0e/66/cb/mzi.lfccwird.100x100-75.jpg", "collectionPrice":9.99, "trackPrice":0.99, "releaseDate":"2010-05-11T07:00:00Z", "collectionExplicitness":"notExplicit", "trackExplicitness":"notExplicit", "discCount":1, "discNumber":1, "trackCount":10, "trackNumber":7, "trackTimeMillis":255247, "country":"USA", "currency":"USD", "primaryGenreName":"Jazz", "contentAdvisoryRating":null, "shortDescription":null, "longDescription":null}, - {"wrapperType":"track", "kind":"song", "artistId":123113553, "collectionId":370608373, "trackId":370611538, "artistName":"Jos\u00e9 James & Jef Neve", "collectionName":"For All We Know (Bonus Track Version)", "trackName":"Tenderly", "collectionCensoredName":"For All We Know (Bonus Track Version)", "trackCensoredName":"Tenderly", "artistViewUrl":"http://itunes.apple.com/us/artist/jose-james/id123113553?uo=4", "collectionViewUrl":"http://itunes.apple.com/us/album/tenderly/id370608373?i=370611538&uo=4", "trackViewUrl":"http://itunes.apple.com/us/album/tenderly/id370608373?i=370611538&uo=4", "previewUrl":"http://a1.mzstatic.com/us/r1000/027/Music/78/89/68/mzi.wxudstde.aac.p.m4a", "artworkUrl30":"http://a4.mzstatic.com/us/r1000/018/Music/0e/66/cb/mzi.lfccwird.30x30-50.jpg", "artworkUrl60":"http://a3.mzstatic.com/us/r1000/018/Music/0e/66/cb/mzi.lfccwird.60x60-50.jpg", "artworkUrl100":"http://a4.mzstatic.com/us/r1000/018/Music/0e/66/cb/mzi.lfccwird.100x100-75.jpg", "collectionPrice":9.99, "trackPrice":-1.00, "releaseDate":"2010-05-11T07:00:00Z", "collectionExplicitness":"notExplicit", "trackExplicitness":"notExplicit", "discCount":1, "discNumber":1, "trackCount":10, "trackNumber":6, "trackTimeMillis":445817, "country":"USA", "currency":"USD", "primaryGenreName":"Jazz", "contentAdvisoryRating":null, "shortDescription":null, "longDescription":null}, - {"wrapperType":"track", "kind":"song", "artistId":123113553, "collectionId":370608373, "trackId":370611857, "artistName":"Jos\u00e9 James & Jef Neve", "collectionName":"For All We Know (Bonus Track Version)", "trackName":"Georgia On My Mind", "collectionCensoredName":"For All We Know (Bonus Track Version)", "trackCensoredName":"Georgia On My Mind", "artistViewUrl":"http://itunes.apple.com/us/artist/jose-james/id123113553?uo=4", "collectionViewUrl":"http://itunes.apple.com/us/album/georgia-on-my-mind/id370608373?i=370611857&uo=4", "trackViewUrl":"http://itunes.apple.com/us/album/georgia-on-my-mind/id370608373?i=370611857&uo=4", "previewUrl":"http://a5.mzstatic.com/us/r1000/050/Music/c8/e3/6b/mzi.dbxncbgm.aac.p.m4a", "artworkUrl30":"http://a4.mzstatic.com/us/r1000/018/Music/0e/66/cb/mzi.lfccwird.30x30-50.jpg", "artworkUrl60":"http://a3.mzstatic.com/us/r1000/018/Music/0e/66/cb/mzi.lfccwird.60x60-50.jpg", "artworkUrl100":"http://a4.mzstatic.com/us/r1000/018/Music/0e/66/cb/mzi.lfccwird.100x100-75.jpg", "collectionPrice":9.99, "trackPrice":-1.00, "releaseDate":"2010-05-11T07:00:00Z", "collectionExplicitness":"notExplicit", "trackExplicitness":"notExplicit", "discCount":1, "discNumber":1, "trackCount":10, "trackNumber":10, "trackTimeMillis":433665, "country":"USA", "currency":"USD", "primaryGenreName":"Jazz", "contentAdvisoryRating":null, "shortDescription":null, "longDescription":null}, - {"wrapperType":"track", "kind":"song", "artistId":5117774, "collectionId":394049927, "trackId":394050366, "artistName":"Jose James", "collectionName":"Saint-Germain-des-Pr\u00e9s Caf\u00e9 (The Blue Edition by Mr. Scruff)", "trackName":"Desire (Moodyman Remix)", "collectionCensoredName":"Saint-Germain-des-Pr\u00e9s Caf\u00e9 (The Blue Edition by Mr. Scruff)", "trackCensoredName":"Desire (Moodyman Remix)", "artistViewUrl":"http://itunes.apple.com/us/artist/jose-james/id5117774?uo=4", "collectionViewUrl":"http://itunes.apple.com/us/album/desire-moodyman-remix/id394049927?i=394050366&uo=4", "trackViewUrl":"http://itunes.apple.com/us/album/desire-moodyman-remix/id394049927?i=394050366&uo=4", "previewUrl":"http://a2.mzstatic.com/us/r1000/049/Music/28/5f/55/mzi.sewnbcsw.aac.p.m4a", "artworkUrl30":"http://a5.mzstatic.com/us/r1000/002/Music/21/0d/28/mzi.ojpdsoax.30x30-50.jpg", "artworkUrl60":"http://a4.mzstatic.com/us/r1000/002/Music/21/0d/28/mzi.ojpdsoax.60x60-50.jpg", "artworkUrl100":"http://a4.mzstatic.com/us/r1000/002/Music/21/0d/28/mzi.ojpdsoax.100x100-75.jpg", "collectionPrice":15.99, "trackPrice":-1.00, "releaseDate":"2010-10-11T07:00:00Z", "collectionExplicitness":"notExplicit", "trackExplicitness":"notExplicit", "discCount":2, "discNumber":1, "trackCount":19, "trackNumber":18, "trackTimeMillis":306214, "country":"USA", "currency":"USD", "primaryGenreName":"Electronic", "contentAdvisoryRating":null, "shortDescription":null, "longDescription":null}, - {"wrapperType":"track", "kind":"song", "artistId":5117774, "collectionId":288906052, "trackId":288906069, "artistName":"Jose James", "collectionName":"Desire & Love - Single", "trackName":"Desire", "collectionCensoredName":"Desire & Love - Single", "trackCensoredName":"Desire (Moodymann Remix)", "artistViewUrl":"http://itunes.apple.com/us/artist/jose-james/id5117774?uo=4", "collectionViewUrl":"http://itunes.apple.com/us/album/desire-moodymann-remix/id288906052?i=288906069&uo=4", "trackViewUrl":"http://itunes.apple.com/us/album/desire-moodymann-remix/id288906052?i=288906069&uo=4", "previewUrl":"http://a3.mzstatic.com/us/r1000/013/Music/28/9b/e7/mzm.djwbtrju.aac.p.m4a", "artworkUrl30":"http://a1.mzstatic.com/us/r1000/045/Features/77/b8/9f/dj.qqmyenao.30x30-50.jpg", "artworkUrl60":"http://a3.mzstatic.com/us/r1000/045/Features/77/b8/9f/dj.qqmyenao.60x60-50.jpg", "artworkUrl100":"http://a4.mzstatic.com/us/r1000/045/Features/77/b8/9f/dj.qqmyenao.100x100-75.jpg", "collectionPrice":1.98, "trackPrice":0.99, "releaseDate":"2008-09-21T07:00:00Z", "collectionExplicitness":"notExplicit", "trackExplicitness":"notExplicit", "discCount":1, "discNumber":1, "trackCount":2, "trackNumber":1, "trackTimeMillis":340507, "country":"USA", "currency":"USD", "primaryGenreName":"Dance", "contentAdvisoryRating":null, "shortDescription":null, "longDescription":null}, - {"wrapperType":"track", "kind":"song", "artistId":5117774, "collectionId":286264618, "trackId":286264685, "artistName":"Jose James & Flying Lotus", "collectionName":"Park Bench People - EP", "trackName":"Visions of Violet", "collectionCensoredName":"Park Bench People - EP", "trackCensoredName":"Visions of Violet", "artistViewUrl":"http://itunes.apple.com/us/artist/jose-james/id5117774?uo=4", "collectionViewUrl":"http://itunes.apple.com/us/album/visions-of-violet/id286264618?i=286264685&uo=4", "trackViewUrl":"http://itunes.apple.com/us/album/visions-of-violet/id286264618?i=286264685&uo=4", "previewUrl":"http://a2.mzstatic.com/us/r1000/047/Music/25/3d/19/mzm.dsstwydd.aac.p.m4a", "artworkUrl30":"http://a3.mzstatic.com/us/r1000/058/Features/4e/f9/7f/dj.yzdqoree.30x30-50.jpg", "artworkUrl60":"http://a5.mzstatic.com/us/r1000/058/Features/4e/f9/7f/dj.yzdqoree.60x60-50.jpg", "artworkUrl100":"http://a3.mzstatic.com/us/r1000/058/Features/4e/f9/7f/dj.yzdqoree.100x100-75.jpg", "collectionPrice":1.99, "trackPrice":0.99, "releaseDate":"2008-08-24T07:00:00Z", "collectionExplicitness":"notExplicit", "trackExplicitness":"notExplicit", "discCount":1, "discNumber":1, "trackCount":2, "trackNumber":2, "trackTimeMillis":139307, "country":"USA", "currency":"USD", "primaryGenreName":"Jazz", "contentAdvisoryRating":null, "shortDescription":null, "longDescription":null}, - {"wrapperType":"track", "kind":"song", "artistId":5117774, "collectionId":282084350, "trackId":282084363, "artistName":"Jose James", "collectionName":"Gilles Peterson In the House", "trackName":"Spirits Above", "collectionCensoredName":"Gilles Peterson In the House", "trackCensoredName":"Spirits Above", "artistViewUrl":"http://itunes.apple.com/us/artist/jose-james/id5117774?uo=4", "collectionViewUrl":"http://itunes.apple.com/us/album/spirits-above/id282084350?i=282084363&uo=4", "trackViewUrl":"http://itunes.apple.com/us/album/spirits-above/id282084350?i=282084363&uo=4", "previewUrl":"http://a3.mzstatic.com/us/r1000/037/Music/e1/eb/f4/mzm.arzoanfi.aac.p.m4a", "artworkUrl30":"http://a1.mzstatic.com/us/r1000/048/Music/f2/c6/0d/mzi.jupqudrd.30x30-50.jpg", "artworkUrl60":"http://a5.mzstatic.com/us/r1000/048/Music/f2/c6/0d/mzi.jupqudrd.60x60-50.jpg", "artworkUrl100":"http://a5.mzstatic.com/us/r1000/048/Music/f2/c6/0d/mzi.jupqudrd.100x100-75.jpg", "collectionPrice":3.99, "trackPrice":0.99, "releaseDate":"2008-01-28T08:00:00Z", "collectionExplicitness":"notExplicit", "trackExplicitness":"notExplicit", "discCount":1, "discNumber":1, "trackCount":12, "trackNumber":4, "trackTimeMillis":410587, "country":"USA", "currency":"USD", "primaryGenreName":"Dance", "contentAdvisoryRating":null, "shortDescription":null, "longDescription":null}, - {"wrapperType":"track", "kind":"song", "artistId":5117774, "collectionId":395704841, "trackId":395704962, "artistName":"Jose James", "collectionName":"Gilles Peterson: Worldwide - A Celebration of His Snydicated Radio Show", "trackName":"The Dreamer", "collectionCensoredName":"Gilles Peterson: Worldwide - A Celebration of His Snydicated Radio Show", "trackCensoredName":"The Dreamer", "artistViewUrl":"http://itunes.apple.com/us/artist/jose-james/id5117774?uo=4", "collectionViewUrl":"http://itunes.apple.com/us/album/the-dreamer/id395704841?i=395704962&uo=4", "trackViewUrl":"http://itunes.apple.com/us/album/the-dreamer/id395704841?i=395704962&uo=4", "previewUrl":"http://a1.mzstatic.com/us/r1000/025/Music/ed/ff/1c/mzi.bmkfrqyo.aac.p.m4a", "artworkUrl30":"http://a4.mzstatic.com/us/r1000/035/Music/01/2b/c8/mzi.zffvkmva.30x30-50.jpg", "artworkUrl60":"http://a3.mzstatic.com/us/r1000/035/Music/01/2b/c8/mzi.zffvkmva.60x60-50.jpg", "artworkUrl100":"http://a5.mzstatic.com/us/r1000/035/Music/01/2b/c8/mzi.zffvkmva.100x100-75.jpg", "collectionPrice":9.99, "trackPrice":0.99, "releaseDate":"2010-10-08T07:00:00Z", "collectionExplicitness":"notExplicit", "trackExplicitness":"notExplicit", "discCount":1, "discNumber":1, "trackCount":17, "trackNumber":15, "trackTimeMillis":422149, "country":"USA", "currency":"USD", "primaryGenreName":"R&B/Soul", "contentAdvisoryRating":null, "shortDescription":null, "longDescription":null}, - {"wrapperType":"track", "kind":"song", "artistId":5117774, "collectionId":291596901, "trackId":291597047, "artistName":"Jose James", "collectionName":"Brownswood Bubblers Two", "trackName":"The Dreamer", "collectionCensoredName":"Brownswood Bubblers Two", "trackCensoredName":"The Dreamer", "artistViewUrl":"http://itunes.apple.com/us/artist/jose-james/id5117774?uo=4", "collectionViewUrl":"http://itunes.apple.com/us/album/the-dreamer/id291596901?i=291597047&uo=4", "trackViewUrl":"http://itunes.apple.com/us/album/the-dreamer/id291596901?i=291597047&uo=4", "previewUrl":"http://a5.mzstatic.com/us/r1000/039/Music/89/60/db/mzm.wpcdjonl.aac.p.m4a", "artworkUrl30":"http://a3.mzstatic.com/us/r1000/025/Music/f9/bd/6d/mzi.qagrzrgg.30x30-50.jpg", "artworkUrl60":"http://a2.mzstatic.com/us/r1000/025/Music/f9/bd/6d/mzi.qagrzrgg.60x60-50.jpg", "artworkUrl100":"http://a2.mzstatic.com/us/r1000/025/Music/f9/bd/6d/mzi.qagrzrgg.100x100-75.jpg", "collectionPrice":10.99, "trackPrice":0.99, "releaseDate":"2007-07-06T07:00:00Z", "collectionExplicitness":"notExplicit", "trackExplicitness":"notExplicit", "discCount":1, "discNumber":1, "trackCount":16, "trackNumber":16, "trackTimeMillis":420453, "country":"USA", "currency":"USD", "primaryGenreName":"Dance", "contentAdvisoryRating":null, "shortDescription":null, "longDescription":null}, - {"wrapperType":"track", "kind":"song", "artistId":123113553, "collectionId":334904540, "trackId":334904562, "artistName":"Jos\u00e9 James", "collectionName":"Blackmagic Remixes - EP", "trackName":"Blackmagic", "collectionCensoredName":"Blackmagic Remixes - EP", "trackCensoredName":"Blackmagic (Joy Orbison's Recreation)", "artistViewUrl":"http://itunes.apple.com/us/artist/jose-james/id123113553?uo=4", "collectionViewUrl":"http://itunes.apple.com/us/album/blackmagic-joy-orbisons-recreation/id334904540?i=334904562&uo=4", "trackViewUrl":"http://itunes.apple.com/us/album/blackmagic-joy-orbisons-recreation/id334904540?i=334904562&uo=4", "previewUrl":"http://a1.mzstatic.com/us/r1000/048/Music/ef/76/00/mzm.xqhwytnx.aac.p.m4a", "artworkUrl30":"http://a5.mzstatic.com/us/r1000/002/Music/7b/c5/a7/mzi.kgvrbwuh.30x30-50.jpg", "artworkUrl60":"http://a4.mzstatic.com/us/r1000/002/Music/7b/c5/a7/mzi.kgvrbwuh.60x60-50.jpg", "artworkUrl100":"http://a1.mzstatic.com/us/r1000/002/Music/7b/c5/a7/mzi.kgvrbwuh.100x100-75.jpg", "collectionPrice":3.96, "trackPrice":0.99, "releaseDate":"2009-11-01T07:00:00Z", "collectionExplicitness":"notExplicit", "trackExplicitness":"notExplicit", "discCount":1, "discNumber":1, "trackCount":4, "trackNumber":1, "trackTimeMillis":355804, "country":"USA", "currency":"USD", "primaryGenreName":"Dance", "contentAdvisoryRating":null, "shortDescription":null, "longDescription":null}, - {"wrapperType":"track", "kind":"song", "artistId":123113553, "collectionId":363155640, "trackId":363155680, "artistName":"Jos\u00e9 James & Jef Neve", "collectionName":"Gee Baby, Ain't I Good to You - Single", "trackName":"Gee Baby, Ain't I Good to You", "collectionCensoredName":"Gee Baby, Ain't I Good to You - Single", "trackCensoredName":"Gee Baby, Ain't I Good to You", "artistViewUrl":"http://itunes.apple.com/us/artist/jose-james/id123113553?uo=4", "collectionViewUrl":"http://itunes.apple.com/us/album/gee-baby-aint-i-good-to-you/id363155640?i=363155680&uo=4", "trackViewUrl":"http://itunes.apple.com/us/album/gee-baby-aint-i-good-to-you/id363155640?i=363155680&uo=4", "previewUrl":"http://a4.mzstatic.com/us/r1000/046/Music/d8/ce/0d/mzi.qujjwrum.aac.p.m4a", "artworkUrl30":"http://a5.mzstatic.com/us/r1000/009/Music/c1/63/b0/mzi.dwvbcher.30x30-50.jpg", "artworkUrl60":"http://a4.mzstatic.com/us/r1000/009/Music/c1/63/b0/mzi.dwvbcher.60x60-50.jpg", "artworkUrl100":"http://a4.mzstatic.com/us/r1000/009/Music/c1/63/b0/mzi.dwvbcher.100x100-75.jpg", "collectionPrice":0.99, "trackPrice":0.99, "releaseDate":"2010-03-30T07:00:00Z", "collectionExplicitness":"notExplicit", "trackExplicitness":"notExplicit", "discCount":1, "discNumber":1, "trackCount":1, "trackNumber":1, "trackTimeMillis":319628, "country":"USA", "currency":"USD", "primaryGenreName":"Jazz", "contentAdvisoryRating":null, "shortDescription":null, "longDescription":null}, - {"wrapperType":"track", "kind":"song", "artistId":5117774, "collectionId":286264618, "trackId":286264650, "artistName":"Jose James", "collectionName":"Park Bench People - EP", "trackName":"Park Bench People", "collectionCensoredName":"Park Bench People - EP", "trackCensoredName":"Park Bench People", "artistViewUrl":"http://itunes.apple.com/us/artist/jose-james/id5117774?uo=4", "collectionViewUrl":"http://itunes.apple.com/us/album/park-bench-people/id286264618?i=286264650&uo=4", "trackViewUrl":"http://itunes.apple.com/us/album/park-bench-people/id286264618?i=286264650&uo=4", "previewUrl":"http://a1.mzstatic.com/us/r1000/024/Music/e6/5d/4d/mzm.esgofptq.aac.p.m4a", "artworkUrl30":"http://a3.mzstatic.com/us/r1000/058/Features/4e/f9/7f/dj.yzdqoree.30x30-50.jpg", "artworkUrl60":"http://a5.mzstatic.com/us/r1000/058/Features/4e/f9/7f/dj.yzdqoree.60x60-50.jpg", "artworkUrl100":"http://a3.mzstatic.com/us/r1000/058/Features/4e/f9/7f/dj.yzdqoree.100x100-75.jpg", "collectionPrice":1.99, "trackPrice":0.99, "releaseDate":"2008-08-24T07:00:00Z", "collectionExplicitness":"notExplicit", "trackExplicitness":"notExplicit", "discCount":1, "discNumber":1, "trackCount":2, "trackNumber":1, "trackTimeMillis":364107, "country":"USA", "currency":"USD", "primaryGenreName":"Jazz", "contentAdvisoryRating":null, "shortDescription":null, "longDescription":null}, - {"wrapperType":"track", "kind":"song", "artistId":5117774, "collectionId":288906052, "trackId":288906119, "artistName":"Jose James", "collectionName":"Desire & Love - Single", "trackName":"Love", "collectionCensoredName":"Desire & Love - Single", "trackCensoredName":"Love (Ben Westbeech Remix)", "artistViewUrl":"http://itunes.apple.com/us/artist/jose-james/id5117774?uo=4", "collectionViewUrl":"http://itunes.apple.com/us/album/love-ben-westbeech-remix/id288906052?i=288906119&uo=4", "trackViewUrl":"http://itunes.apple.com/us/album/love-ben-westbeech-remix/id288906052?i=288906119&uo=4", "previewUrl":"http://a3.mzstatic.com/us/r1000/014/Music/1e/53/68/mzm.tunaxzvb.aac.p.m4a", "artworkUrl30":"http://a1.mzstatic.com/us/r1000/045/Features/77/b8/9f/dj.qqmyenao.30x30-50.jpg", "artworkUrl60":"http://a3.mzstatic.com/us/r1000/045/Features/77/b8/9f/dj.qqmyenao.60x60-50.jpg", "artworkUrl100":"http://a4.mzstatic.com/us/r1000/045/Features/77/b8/9f/dj.qqmyenao.100x100-75.jpg", "collectionPrice":1.98, "trackPrice":0.99, "releaseDate":"2008-09-21T07:00:00Z", "collectionExplicitness":"notExplicit", "trackExplicitness":"notExplicit", "discCount":1, "discNumber":1, "trackCount":2, "trackNumber":2, "trackTimeMillis":460107, "country":"USA", "currency":"USD", "primaryGenreName":"Dance", "contentAdvisoryRating":null, "shortDescription":null, "longDescription":null}] - } - - - http_version: "1.1" -- !ruby/struct:VCR::HTTPInteraction - request: !ruby/struct:VCR::Request - method: :get - uri: http://ax.itunes.apple.com:80/WebObjects/MZStoreServices.woa/wa/wsSearch?media=podcast&term=Beyondjazz - body: - headers: - accept: - - application/json - user-agent: - - ITunes Ruby Gem 0.4.1 - response: !ruby/struct:VCR::Response - status: !ruby/struct:VCR::ResponseStatus - code: 200 - message: OK - headers: - x-webobjects-loadaverage: - - "0" - x-apple-orig-url-path: - - /WebObjects/MZStoreServices.woa/wa/wsSearch?term=Beyondjazz&media=podcast - x-apple-application-site: - - NWK - x-apple-partner: - - origin.0 - expires: - - Mon, 30 May 2011 02:37:10 GMT - content-type: - - text/javascript; charset=utf-8 - x-apple-max-age: - - "3600" - date: - - Mon, 30 May 2011 02:37:10 GMT - content-length: - - "1187" - x-apple-application-instance: - - "1020002" - x-apple-woa-inbound-url: - - /WebObjects/MZStoreServices.woa/wa/wsSearch?term=Beyondjazz&media=podcast - vary: - - X-Apple-Store-Front - cache-control: - - max-age=0, no-cache - pragma: - - no-cache - body: |+ - - - - { - "resultCount":1, - "results": [ - {"wrapperType":"track", "kind":"podcast", "artistId":null, "collectionId":337994101, "trackId":337994101, "artistName":"Julie Kummer", "collectionName":"s i s t a k", "trackName":"s i s t a k", "collectionCensoredName":"s i s t a k", "trackCensoredName":"s i s t a k", "artistViewUrl":null, "collectionViewUrl":"http://itunes.apple.com/us/podcast/s-i-s-t-a-k/id337994101?uo=4", "trackViewUrl":"http://itunes.apple.com/us/podcast/s-i-s-t-a-k/id337994101?uo=4", "previewUrl":null, "artworkUrl30":"http://a3.mzstatic.com/us/r30/Podcasts/d6/e9/23/ps.zoppkizk.30x30-50.jpg", "artworkUrl60":"http://a5.mzstatic.com/us/r30/Podcasts/d6/e9/23/ps.zoppkizk.60x60-50.jpg", "artworkUrl100":"http://a5.mzstatic.com/us/r30/Podcasts/d6/e9/23/ps.zoppkizk.100x100-75.jpg", "collectionPrice":0.00, "trackPrice":0.00, "releaseDate":"2010-11-23T01:25:00Z", "collectionExplicitness":"cleaned", "trackExplicitness":"cleaned", "discCount":null, "discNumber":null, "trackCount":5, "trackNumber":null, "trackTimeMillis":null, "country":"USA", "currency":"USD", "primaryGenreName":"Music", "contentAdvisoryRating":"Clean", "shortDescription":null, "longDescription":null}] - } - - - http_version: "1.1" -- !ruby/struct:VCR::HTTPInteraction - request: !ruby/struct:VCR::Request - method: :get - uri: http://ax.itunes.apple.com:80/WebObjects/MZStoreServices.woa/wa/wsSearch?media=movie&term=Blade%20Runner - body: - headers: - accept: - - application/json - user-agent: - - ITunes Ruby Gem 0.4.1 - response: !ruby/struct:VCR::Response - status: !ruby/struct:VCR::ResponseStatus - code: 200 - message: OK - headers: - x-apple-orig-url-path: - - /WebObjects/MZStoreServices.woa/wa/wsSearch?term=Blade%20Runner&media=movie - x-webobjects-loadaverage: - - "0" - x-apple-application-site: - - NWK - expires: - - Mon, 30 May 2011 02:37:10 GMT - x-apple-partner: - - origin.0 - content-type: - - text/javascript; charset=utf-8 - date: - - Mon, 30 May 2011 02:37:10 GMT - x-apple-max-age: - - "3600" - x-apple-woa-inbound-url: - - /WebObjects/MZStoreServices.woa/wa/wsSearch?term=Blade%20Runner&media=movie - x-apple-application-instance: - - "1011003" - content-length: - - "4534" - cache-control: - - max-age=0, no-cache - vary: - - X-Apple-Store-Front - pragma: - - no-cache - body: |+ - - - - { - "resultCount":2, - "results": [ - {"wrapperType":"track", "kind":"feature-movie", "artistId":null, "collectionId":null, "trackId":273857038, "artistName":"Ridley Scott", "collectionName":null, "trackName":"Blade Runner (Director's Cut)", "collectionCensoredName":null, "trackCensoredName":"Blade Runner (Director's Cut)", "artistViewUrl":null, "collectionViewUrl":null, "trackViewUrl":"http://itunes.apple.com/us/movie/blade-runner-directors-cut/id273857038?uo=4", "previewUrl":"http://a1764.v.phobos.apple.com/us/r1000/056/Video/19/b7/d3/mzm.xmrjnvye..640x354.h264lc.d2.p.m4v", "artworkUrl30":"http://a4.mzstatic.com/us/r1000/026/Music/d1/3d/db/dj.ehpnqsxx.30x30-50.jpg", "artworkUrl60":"http://a3.mzstatic.com/us/r1000/026/Music/d1/3d/db/dj.ehpnqsxx.60x60-50.jpg", "artworkUrl100":"http://a4.mzstatic.com/us/r1000/026/Music/d1/3d/db/dj.ehpnqsxx.100x100-75.jpg", "collectionPrice":9.99, "trackPrice":9.99, "releaseDate":"2007-12-18T08:00:00Z", "collectionExplicitness":"notExplicit", "trackExplicitness":"notExplicit", "discCount":null, "discNumber":null, "trackCount":null, "trackNumber":null, "trackTimeMillis":7048715.0, "country":"USA", "currency":"USD", "primaryGenreName":"Action & Adventure", "contentAdvisoryRating":"R", - "shortDescription":"From the director of \"Alien\" comes one of the most popular, gripping and visually stunning science-fiction thrillers of all time. Superstar Harrison Ford is an ex-cop hired to track down five mutinous androids.", - "longDescription":"From the director of \"Alien\" comes one of the most popular, gripping and visually stunning science-fiction thrillers of all time. Superstar Harrison Ford is an ex-cop hired to track down five mutinous androids. Navigating his way through a sprawling metropolis of the future, he hunts them down one by one -- climaxing in a final showdown with their leader. Starring Oscar-nominee Ford (\"The Fugitive,\" \"Air Force One\"), Golden Globe-winner Rutger Hauer (\"The Hitcher\"), Sean Young (\"No Way Out\"), Daryl Hannah (\"Roxanne,\" \"Splash\") and Emmy and Golden Globe-winner Edward James Olmos (\"Stand and Deliver,\" TV's \"Miami Vice\"). Directed by Oscar-nominee Ridley Scott (\"Alien,\" \"Thelma & Louise\"). Nominated for two Academy Awards, including Best Visual Effects, inducted into the National Film Registry and voted one of the top films of all time by the AFI. \"...the world of 'Blade Runner' has undeniably become one of the visual touchstones of modern movies...\" - Roger Ebert. \"...eyeball popping thriller..."}, - {"wrapperType":"track", "kind":"feature-movie", "artistId":null, "collectionId":null, "trackId":295142421, "artistName":"Ridley Scott", "collectionName":null, "trackName":"Blade Runner (The Final Cut)", "collectionCensoredName":null, "trackCensoredName":"Blade Runner (The Final Cut)", "artistViewUrl":null, "collectionViewUrl":null, "trackViewUrl":"http://itunes.apple.com/us/movie/blade-runner-the-final-cut/id295142421?uo=4", "previewUrl":"http://a1017.v.phobos.apple.com/us/r1000/039/Video/b5/91/31/mzm.zcyquwhc..640x266.h264lc.d2.p.m4v", "artworkUrl30":"http://a1.mzstatic.com/us/r1000/038/Video/4c/0a/b1/mzl.wbjcflpt.30x30-50.jpg", "artworkUrl60":"http://a5.mzstatic.com/us/r1000/038/Video/4c/0a/b1/mzl.wbjcflpt.60x60-50.jpg", "artworkUrl100":"http://a1.mzstatic.com/us/r1000/038/Video/4c/0a/b1/mzl.wbjcflpt.100x100-75.jpg", "collectionPrice":9.99, "trackPrice":9.99, "releaseDate":"1982-06-25T07:00:00Z", "collectionExplicitness":"notExplicit", "trackExplicitness":"notExplicit", "discCount":null, "discNumber":null, "trackCount":null, "trackNumber":null, "trackTimeMillis":7049440.0, "country":"USA", "currency":"USD", "primaryGenreName":"Sci-Fi & Fantasy", "contentAdvisoryRating":"R", "shortDescription":null, - "longDescription":"Visually spectacular, intensely action-packed and powerfully prophetic since its debut, Blade Runner returns in Ridley Scott's definitive Final Cut, including extended scenes and never-before-seen special effects. In a signature role as 21st-century detective Rick Deckard, Harrison Ford brings his masculine-yet-vulnerable presence to this stylish noir thriller. In a future of high-tech possibility soured by urban and social decay, Deckard hunts for fugitive, murderous replicants - and is drawn to a mystery woman whose secrets may undermine his soul. This incredible version features the definitive Final Cut of Ridley Scott's legendary Sci-Fi classic and the in-depth feature length documentary \"Dangerous Days\" and features all new 5.1 Audio."}] - } - - - http_version: "1.1" -- !ruby/struct:VCR::HTTPInteraction - request: !ruby/struct:VCR::Request - method: :get - uri: http://ax.itunes.apple.com:80/WebObjects/MZStoreServices.woa/wa/wsSearch?media=musicVideo&term=Sabotage - body: - headers: - accept: - - application/json - user-agent: - - ITunes Ruby Gem 0.4.1 - response: !ruby/struct:VCR::Response - status: !ruby/struct:VCR::ResponseStatus - code: 200 - message: OK - headers: - x-webobjects-loadaverage: - - "0" - x-apple-orig-url-path: - - /WebObjects/MZStoreServices.woa/wa/wsSearch?term=Sabotage&media=musicVideo - x-apple-application-site: - - NWK - x-apple-partner: - - origin.0 - expires: - - Mon, 30 May 2011 02:37:11 GMT - content-type: - - text/javascript; charset=utf-8 - x-apple-max-age: - - "3600" - date: - - Mon, 30 May 2011 02:37:11 GMT - content-length: - - "3933" - x-apple-application-instance: - - "1027003" - x-apple-woa-inbound-url: - - /WebObjects/MZStoreServices.woa/wa/wsSearch?term=Sabotage&media=musicVideo - vary: - - X-Apple-Store-Front - cache-control: - - max-age=0, no-cache - pragma: - - no-cache - body: |+ - - - - { - "resultCount":3, - "results": [ - {"wrapperType":"track", "kind":"music-video", "artistId":1971863, "collectionId":null, "trackId":394290559, "artistName":"Beastie Boys", "collectionName":null, "trackName":"Sabotage", "collectionCensoredName":null, "trackCensoredName":"Sabotage", "artistViewUrl":"http://itunes.apple.com/us/artist/beastie-boys/id1971863?uo=4", "collectionViewUrl":null, "trackViewUrl":"http://itunes.apple.com/us/music-video/sabotage/id394290559?uo=4", "previewUrl":"http://a1304.v.phobos.apple.com/us/r1000/042/Video/55/54/53/mzm.lyxcojle..640x480.h264lc.u.p.m4v", "artworkUrl30":"http://a5.mzstatic.com/us/r1000/018/Video/f1/ed/a9/mzi.guaxeujq.40x30-75.jpg", "artworkUrl60":"http://a3.mzstatic.com/us/r1000/018/Video/f1/ed/a9/mzi.guaxeujq.80x60-75.jpg", "artworkUrl100":"http://a4.mzstatic.com/us/r1000/018/Video/f1/ed/a9/mzi.guaxeujq.100x100-75.jpg", "collectionPrice":1.99, "trackPrice":1.99, "releaseDate":"2009-07-14T07:00:00Z", "collectionExplicitness":"notExplicit", "trackExplicitness":"notExplicit", "discCount":null, "discNumber":null, "trackCount":null, "trackNumber":null, "trackTimeMillis":181600.0, "country":"USA", "currency":"USD", "primaryGenreName":"Hip Hop/Rap", "contentAdvisoryRating":null, "shortDescription":null, "longDescription":null}, - {"wrapperType":"track", "kind":"music-video", "artistId":310238369, "collectionId":null, "trackId":328089666, "artistName":"Kristinia DeBarge", "collectionName":null, "trackName":"Sabotage", "collectionCensoredName":null, "trackCensoredName":"Sabotage", "artistViewUrl":"http://itunes.apple.com/us/artist/kristinia-debarge/id310238369?uo=4", "collectionViewUrl":null, "trackViewUrl":"http://itunes.apple.com/us/music-video/sabotage/id328089666?uo=4", "previewUrl":"http://a556.v.phobos.apple.com/us/r1000/045/Video/02/4d/e0/mzm.evunkjmt..640x320.h264lc.u.p.m4v", "artworkUrl30":"http://a4.mzstatic.com/us/r1000/034/Video/54/4b/10/mzi.hdhqzwwg.40x30-75.jpg", "artworkUrl60":"http://a2.mzstatic.com/us/r1000/034/Video/54/4b/10/mzi.hdhqzwwg.80x60-75.jpg", "artworkUrl100":"http://a5.mzstatic.com/us/r1000/034/Video/54/4b/10/mzi.hdhqzwwg.100x100-75.jpg", "collectionPrice":1.99, "trackPrice":1.99, "releaseDate":"2009-08-18T07:00:00Z", "collectionExplicitness":"notExplicit", "trackExplicitness":"notExplicit", "discCount":null, "discNumber":null, "trackCount":null, "trackNumber":null, "trackTimeMillis":197731.0, "country":"USA", "currency":"USD", "primaryGenreName":"Pop", "contentAdvisoryRating":null, "shortDescription":null, "longDescription":null}, - {"wrapperType":"track", "kind":"music-video", "artistId":310238369, "collectionId":345189786, "trackId":345190056, "artistName":"Kristinia DeBarge", "collectionName":"Exposed (Deluxe Edition)", "trackName":"Sabotage", "collectionCensoredName":"Exposed (Deluxe Edition)", "trackCensoredName":"Sabotage (Bonus Track)", "artistViewUrl":"http://itunes.apple.com/us/artist/kristinia-debarge/id310238369?uo=4", "collectionViewUrl":"http://itunes.apple.com/us/music-video/sabotage-bonus-track/id345190056?uo=4", "trackViewUrl":"http://itunes.apple.com/us/music-video/sabotage-bonus-track/id345190056?uo=4", "previewUrl":"http://a261.v.phobos.apple.com/us/r1000/048/Video/e0/a5/ae/mzm.ekyfxsvl..640x320.h264lc.u.p.m4v", "artworkUrl30":"http://a5.mzstatic.com/us/r1000/040/Video/54/4b/10/mzi.intpumcm.40x30-75.jpg", "artworkUrl60":"http://a3.mzstatic.com/us/r1000/040/Video/54/4b/10/mzi.intpumcm.80x60-75.jpg", "artworkUrl100":"http://a2.mzstatic.com/us/r1000/040/Video/54/4b/10/mzi.intpumcm.100x100-75.jpg", "collectionPrice":9.99, "trackPrice":1.99, "releaseDate":"2009-12-15T08:00:00Z", "collectionExplicitness":"notExplicit", "trackExplicitness":"notExplicit", "discCount":1, "discNumber":1, "trackCount":15, "trackNumber":15, "trackTimeMillis":201901.0, "country":"USA", "currency":"USD", "primaryGenreName":"Pop", "contentAdvisoryRating":null, "shortDescription":null, "longDescription":null}] - } - - - http_version: "1.1" -- !ruby/struct:VCR::HTTPInteraction - request: !ruby/struct:VCR::Request - method: :get - uri: http://ax.itunes.apple.com:80/WebObjects/MZStoreServices.woa/wa/wsSearch?media=audiobook&term=Ernest%20Hemingway - body: - headers: - accept: - - application/json - user-agent: - - ITunes Ruby Gem 0.4.1 - response: !ruby/struct:VCR::Response - status: !ruby/struct:VCR::ResponseStatus - code: 200 - message: OK - headers: - x-apple-orig-url-path: - - /WebObjects/MZStoreServices.woa/wa/wsSearch?term=Ernest%20Hemingway&media=audiobook - x-webobjects-loadaverage: - - "0" - x-apple-application-site: - - NWK - expires: - - Mon, 30 May 2011 02:37:11 GMT - x-apple-partner: - - origin.0 - connection: - - Transfer-Encoding - content-type: - - text/javascript; charset=utf-8 - date: - - Mon, 30 May 2011 02:37:11 GMT - x-apple-max-age: - - "3600" - x-apple-woa-inbound-url: - - /WebObjects/MZStoreServices.woa/wa/wsSearch?term=Ernest%20Hemingway&media=audiobook - x-apple-application-instance: - - "1012005" - cache-control: - - max-age=0, no-cache - vary: - - X-Apple-Store-Front - pragma: - - no-cache - transfer-encoding: - - chunked - body: |+ - - - - { - "resultCount":40, - "results": [ - {"wrapperType":"audiobook", "artistId":2122513, "collectionId":202323080, "amgArtistId":null, "amgVideoArtistId":null, "artistName":"Ernest Hemingway", "collectionName":"The Sun Also Rises (Unabridged)", "collectionCensoredName":"The Sun Also Rises (Unabridged)", "artistViewUrl":"http://itunes.apple.com/us/artist/ernest-hemingway/id2122513?mt=11&uo=4", "collectionViewUrl":"http://itunes.apple.com/WebObjects/MZStore.woa/wa/viewAudiobook?id=202323080&s=143441&uo=4", "artworkUrl60":"http://a4.mzstatic.com/us/r1000/032/Music/64/c5/53/mzi.wrpbhyvo.60x60-50.jpg", "artworkUrl100":"http://a3.mzstatic.com/us/r1000/032/Music/64/c5/53/mzi.wrpbhyvo.100x100-75.jpg", "collectionPrice":19.95, "collectionExplicitness":"notExplicit", "trackCount":1, "copyright":"2003 Simon & Schuster Audio", "country":"USA", "currency":"USD", "releaseDate":"2003-04-28T07:00:00Z", "primaryGenreName":"Audiobooks"}, - {"wrapperType":"audiobook", "artistId":2122513, "collectionId":371691193, "amgArtistId":null, "amgVideoArtistId":null, "artistName":"Ernest Hemingway", "collectionName":"The Old Man and the Sea (Unabridged)", "collectionCensoredName":"The Old Man and the Sea (Unabridged)", "artistViewUrl":"http://itunes.apple.com/us/artist/ernest-hemingway/id2122513?mt=11&uo=4", "collectionViewUrl":"http://itunes.apple.com/WebObjects/MZStore.woa/wa/viewAudiobook?id=371691193&s=143441&uo=4", "artworkUrl60":"http://a5.mzstatic.com/us/r1000/045/Music/b7/05/bb/mzi.lgdeplrz.60x60-50.jpg", "artworkUrl100":"http://a2.mzstatic.com/us/r1000/045/Music/b7/05/bb/mzi.lgdeplrz.100x100-75.jpg", "collectionPrice":11.95, "collectionExplicitness":"notExplicit", "trackCount":1, "copyright":"2006 Simon & Schuster Audio", "country":"USA", "currency":"USD", "releaseDate":"2006-05-01T07:00:00Z", "primaryGenreName":"Audiobooks"}, - {"wrapperType":"audiobook", "artistId":2122513, "collectionId":286444210, "amgArtistId":null, "amgVideoArtistId":null, "artistName":"Ernest Hemingway", "collectionName":"Hemingway Short Stories (Unabridged)", "collectionCensoredName":"Hemingway Short Stories (Unabridged)", "artistViewUrl":"http://itunes.apple.com/us/artist/ernest-hemingway/id2122513?mt=11&uo=4", "collectionViewUrl":"http://itunes.apple.com/WebObjects/MZStore.woa/wa/viewAudiobook?id=286444210&s=143441&uo=4", "artworkUrl60":"http://a4.mzstatic.com/us/r1000/001/Music/8d/da/31/mzi.wrysqysb.60x60-50.jpg", "artworkUrl100":"http://a3.mzstatic.com/us/r1000/001/Music/8d/da/31/mzi.wrysqysb.100x100-75.jpg", "collectionPrice":3.95, "collectionExplicitness":"notExplicit", "trackCount":1, "copyright":"2007 Listener's Digest Inc.", "country":"USA", "currency":"USD", "releaseDate":"2007-04-01T07:00:00Z", "primaryGenreName":"Audiobooks"}, - {"wrapperType":"audiobook", "artistId":2122513, "collectionId":371691060, "amgArtistId":null, "amgVideoArtistId":null, "artistName":"Ernest Hemingway", "collectionName":"A Farewell to Arms (Unabridged)", "collectionCensoredName":"A Farewell to Arms (Unabridged)", "artistViewUrl":"http://itunes.apple.com/us/artist/ernest-hemingway/id2122513?mt=11&uo=4", "collectionViewUrl":"http://itunes.apple.com/WebObjects/MZStore.woa/wa/viewAudiobook?id=371691060&s=143441&uo=4", "artworkUrl60":"http://a4.mzstatic.com/us/r1000/039/Music/1c/02/93/mzi.sygejvpg.60x60-50.jpg", "artworkUrl100":"http://a1.mzstatic.com/us/r1000/039/Music/1c/02/93/mzi.sygejvpg.100x100-75.jpg", "collectionPrice":23.95, "collectionExplicitness":"notExplicit", "trackCount":1, "copyright":"2006 Simon & Schuster Audio", "country":"USA", "currency":"USD", "releaseDate":"2006-05-01T07:00:00Z", "primaryGenreName":"Audiobooks"}, - {"wrapperType":"audiobook", "artistId":2122513, "collectionId":175126080, "amgArtistId":null, "amgVideoArtistId":null, "artistName":"Ernest Hemingway", "collectionName":"To Have and Have Not (Unabridged)", "collectionCensoredName":"To Have and Have Not (Unabridged)", "artistViewUrl":"http://itunes.apple.com/us/artist/ernest-hemingway/id2122513?mt=11&uo=4", "collectionViewUrl":"http://itunes.apple.com/WebObjects/MZStore.woa/wa/viewAudiobook?id=175126080&s=143441&uo=4", "artworkUrl60":"http://a2.mzstatic.com/us/r1000/045/Music/52/ad/7a/mzi.pquctbso.60x60-50.jpg", "artworkUrl100":"http://a3.mzstatic.com/us/r1000/045/Music/52/ad/7a/mzi.pquctbso.100x100-75.jpg", "collectionPrice":15.95, "collectionExplicitness":"notExplicit", "trackCount":1, "copyright":"2003 Simon & Schuster Audio", "country":"USA", "currency":"USD", "releaseDate":"2003-04-28T07:00:00Z", "primaryGenreName":"Audiobooks"}, - {"wrapperType":"audiobook", "artistId":2122513, "collectionId":371425813, "amgArtistId":null, "amgVideoArtistId":null, "artistName":"Ernest Hemingway", "collectionName":"For Whom the Bell Tolls (Unabridged)", "collectionCensoredName":"For Whom the Bell Tolls (Unabridged)", "artistViewUrl":"http://itunes.apple.com/us/artist/ernest-hemingway/id2122513?mt=11&uo=4", "collectionViewUrl":"http://itunes.apple.com/WebObjects/MZStore.woa/wa/viewAudiobook?id=371425813&s=143441&uo=4", "artworkUrl60":"http://a4.mzstatic.com/us/r1000/007/Music/da/57/e9/mzi.bcydmkdr.60x60-50.jpg", "artworkUrl100":"http://a4.mzstatic.com/us/r1000/007/Music/da/57/e9/mzi.bcydmkdr.100x100-75.jpg", "collectionPrice":29.95, "collectionExplicitness":"notExplicit", "trackCount":1, "copyright":"2006 Simon & Schuster Audio", "country":"USA", "currency":"USD", "releaseDate":"2006-05-01T07:00:00Z", "primaryGenreName":"Audiobooks"}, - {"wrapperType":"audiobook", "artistId":2122513, "collectionId":357710921, "amgArtistId":null, "amgVideoArtistId":null, "artistName":"Ernest Hemingway", "collectionName":"A Moveable Feast (Unabridged)", "collectionCensoredName":"A Moveable Feast (Unabridged)", "artistViewUrl":"http://itunes.apple.com/us/artist/ernest-hemingway/id2122513?mt=11&uo=4", "collectionViewUrl":"http://itunes.apple.com/WebObjects/MZStore.woa/wa/viewAudiobook?id=357710921&s=143441&uo=4", "artworkUrl60":"http://a3.mzstatic.com/us/r1000/047/Music/61/ba/42/mzi.cqubegty.60x60-50.jpg", "artworkUrl100":"http://a4.mzstatic.com/us/r1000/047/Music/61/ba/42/mzi.cqubegty.100x100-75.jpg", "collectionPrice":17.95, "collectionExplicitness":"notExplicit", "trackCount":1, "copyright":"2006 Simon & Schuster Audio", "country":"USA", "currency":"USD", "releaseDate":"2006-06-01T07:00:00Z", "primaryGenreName":"Audiobooks"}, - {"wrapperType":"audiobook", "artistId":2122513, "collectionId":166789619, "amgArtistId":null, "amgVideoArtistId":null, "artistName":"Ernest Hemingway", "collectionName":"Islands In the Stream (Unabridged)", "collectionCensoredName":"Islands In the Stream (Unabridged)", "artistViewUrl":"http://itunes.apple.com/us/artist/ernest-hemingway/id2122513?mt=11&uo=4", "collectionViewUrl":"http://itunes.apple.com/WebObjects/MZStore.woa/wa/viewAudiobook?id=166789619&s=143441&uo=4", "artworkUrl60":"http://a3.mzstatic.com/us/r1000/013/Music/25/42/a6/mzi.vzrbcewp.60x60-50.jpg", "artworkUrl100":"http://a4.mzstatic.com/us/r1000/013/Music/25/42/a6/mzi.vzrbcewp.100x100-75.jpg", "collectionPrice":26.95, "collectionExplicitness":"notExplicit", "trackCount":1, "copyright":"2003 Simon & Schuster Audio", "country":"USA", "currency":"USD", "releaseDate":"2003-04-28T07:00:00Z", "primaryGenreName":"Audiobooks"}, - {"wrapperType":"audiobook", "artistId":2122513, "collectionId":285352764, "amgArtistId":null, "amgVideoArtistId":null, "artistName":"Ernest Hemingway", "collectionName":"The Snows of Kilimanjaro and Other Stories (Abridged Fiction)", "collectionCensoredName":"The Snows of Kilimanjaro and Other Stories (Abridged Fiction)", "artistViewUrl":"http://itunes.apple.com/us/artist/ernest-hemingway/id2122513?mt=11&uo=4", "collectionViewUrl":"http://itunes.apple.com/WebObjects/MZStore.woa/wa/viewAudiobook?id=285352764&s=143441&uo=4", "artworkUrl60":"http://a5.mzstatic.com/us/r1000/041/Music/5e/e9/40/mzi.fefelctt.60x60-50.jpg", "artworkUrl100":"http://a3.mzstatic.com/us/r1000/041/Music/5e/e9/40/mzi.fefelctt.100x100-75.jpg", "collectionPrice":17.95, "collectionExplicitness":"notExplicit", "trackCount":1, "copyright":"2008 Simon & Schuster Audio", "country":"USA", "currency":"USD", "releaseDate":"2008-03-08T08:00:00Z", "primaryGenreName":"Audiobooks"}, - {"wrapperType":"audiobook", "artistId":2122513, "collectionId":320476914, "amgArtistId":null, "amgVideoArtistId":null, "artistName":"Ernest Hemingway", "collectionName":"Ernest Hemingway: The Short Stories, Volume 1 (Unabridged)", "collectionCensoredName":"Ernest Hemingway: The Short Stories, Volume 1 (Unabridged)", "artistViewUrl":"http://itunes.apple.com/us/artist/ernest-hemingway/id2122513?mt=11&uo=4", "collectionViewUrl":"http://itunes.apple.com/WebObjects/MZStore.woa/wa/viewAudiobook?id=320476914&s=143441&uo=4", "artworkUrl60":"http://a5.mzstatic.com/us/r1000/015/Music/8f/9c/8b/mzi.qxxmrsnm.60x60-50.jpg", "artworkUrl100":"http://a3.mzstatic.com/us/r1000/015/Music/8f/9c/8b/mzi.qxxmrsnm.100x100-75.jpg", "collectionPrice":16.95, "collectionExplicitness":"notExplicit", "trackCount":1, "copyright":"2002 Simon & Schuster Audio", "country":"USA", "currency":"USD", "releaseDate":"2002-11-15T08:00:00Z", "primaryGenreName":"Audiobooks"}, - {"wrapperType":"audiobook", "artistId":2122513, "collectionId":323416660, "amgArtistId":null, "amgVideoArtistId":null, "artistName":"Ernest Hemingway", "collectionName":"A Moveable Feast: The Restored Edition (Unabridged)", "collectionCensoredName":"A Moveable Feast: The Restored Edition (Unabridged)", "artistViewUrl":"http://itunes.apple.com/us/artist/ernest-hemingway/id2122513?mt=11&uo=4", "collectionViewUrl":"http://itunes.apple.com/WebObjects/MZStore.woa/wa/viewAudiobook?id=323416660&s=143441&uo=4", "artworkUrl60":"http://a3.mzstatic.com/us/r1000/050/Music/39/71/5f/mzi.vusrurxd.60x60-50.jpg", "artworkUrl100":"http://a5.mzstatic.com/us/r1000/050/Music/39/71/5f/mzi.vusrurxd.100x100-75.jpg", "collectionPrice":17.95, "collectionExplicitness":"notExplicit", "trackCount":1, "copyright":"2009 Simon & Schuster Audio", "country":"USA", "currency":"USD", "releaseDate":"2009-07-14T07:00:00Z", "primaryGenreName":"Audiobooks"}, - {"wrapperType":"audiobook", "artistId":2122513, "collectionId":362763865, "amgArtistId":null, "amgVideoArtistId":null, "artistName":"Ernest Hemingway", "collectionName":"Green Hills of Africa (Unabridged)", "collectionCensoredName":"Green Hills of Africa (Unabridged)", "artistViewUrl":"http://itunes.apple.com/us/artist/ernest-hemingway/id2122513?mt=11&uo=4", "collectionViewUrl":"http://itunes.apple.com/WebObjects/MZStore.woa/wa/viewAudiobook?id=362763865&s=143441&uo=4", "artworkUrl60":"http://a4.mzstatic.com/us/r1000/023/Music/e0/81/ca/mzi.eldmlzei.60x60-50.jpg", "artworkUrl100":"http://a4.mzstatic.com/us/r1000/023/Music/e0/81/ca/mzi.eldmlzei.100x100-75.jpg", "collectionPrice":17.95, "collectionExplicitness":"notExplicit", "trackCount":1, "copyright":"2006 Simon & Schuster Audio", "country":"USA", "currency":"USD", "releaseDate":"2006-12-05T08:00:00Z", "primaryGenreName":"Audiobooks"}, - {"wrapperType":"audiobook", "artistId":2122513, "collectionId":305785741, "amgArtistId":null, "amgVideoArtistId":null, "artistName":"Ernest Hemingway", "collectionName":"For Whom the Bell Tolls: Retro Audio (Dramatised): Retro Audio", "collectionCensoredName":"For Whom the Bell Tolls: Retro Audio (Dramatised): Retro Audio", "artistViewUrl":"http://itunes.apple.com/us/artist/ernest-hemingway/id2122513?mt=11&uo=4", "collectionViewUrl":"http://itunes.apple.com/WebObjects/MZStore.woa/wa/viewAudiobook?id=305785741&s=143441&uo=4", "artworkUrl60":"http://a3.mzstatic.com/us/r1000/039/Music/10/24/b8/mzi.typspyuu.60x60-50.jpg", "artworkUrl100":"http://a4.mzstatic.com/us/r1000/039/Music/10/24/b8/mzi.typspyuu.100x100-75.jpg", "collectionPrice":9.95, "collectionExplicitness":"notExplicit", "trackCount":1, "copyright":"2008 Entain 8: Retro and Blakes7", "country":"USA", "currency":"USD", "releaseDate":"2008-01-01T08:00:00Z", "primaryGenreName":"Audiobooks"}, - {"wrapperType":"audiobook", "artistId":2122513, "collectionId":275710993, "amgArtistId":null, "amgVideoArtistId":null, "artistName":"Ernest Hemingway", "collectionName":"The Short Stories, Volume III (Unabridged)", "collectionCensoredName":"The Short Stories, Volume III (Unabridged)", "artistViewUrl":"http://itunes.apple.com/us/artist/ernest-hemingway/id2122513?mt=11&uo=4", "collectionViewUrl":"http://itunes.apple.com/WebObjects/MZStore.woa/wa/viewAudiobook?id=275710993&s=143441&uo=4", "artworkUrl60":"http://a4.mzstatic.com/us/r1000/031/Music/5c/e8/ac/mzi.tragznfg.60x60-50.jpg", "artworkUrl100":"http://a4.mzstatic.com/us/r1000/031/Music/5c/e8/ac/mzi.tragznfg.100x100-75.jpg", "collectionPrice":17.95, "collectionExplicitness":"notExplicit", "trackCount":1, "copyright":"2006 Simon & Schuster Audio", "country":"USA", "currency":"USD", "releaseDate":"2006-05-01T07:00:00Z", "primaryGenreName":"Audiobooks"}, - {"wrapperType":"audiobook", "artistId":2122513, "collectionId":213481375, "amgArtistId":null, "amgVideoArtistId":null, "artistName":"Ernest Hemingway", "collectionName":"True At First Light: A Fictional Memoir (Unabridged)", "collectionCensoredName":"True At First Light: A Fictional Memoir (Unabridged)", "artistViewUrl":"http://itunes.apple.com/us/artist/ernest-hemingway/id2122513?mt=11&uo=4", "collectionViewUrl":"http://itunes.apple.com/WebObjects/MZStore.woa/wa/viewAudiobook?id=213481375&s=143441&uo=4", "artworkUrl60":"http://a5.mzstatic.com/us/r1000/034/Music/0f/7c/3d/mzi.sbtqgpuz.60x60-50.jpg", "artworkUrl100":"http://a4.mzstatic.com/us/r1000/034/Music/0f/7c/3d/mzi.sbtqgpuz.100x100-75.jpg", "collectionPrice":20.95, "collectionExplicitness":"notExplicit", "trackCount":1, "copyright":"2003 Simon & Schuster Audio", "country":"USA", "currency":"USD", "releaseDate":"2003-04-28T07:00:00Z", "primaryGenreName":"Audiobooks"}, - {"wrapperType":"audiobook", "artistId":2122513, "collectionId":281744539, "amgArtistId":null, "amgVideoArtistId":null, "artistName":"Ernest Hemingway", "collectionName":"In Our Time (Abridged Fiction)", "collectionCensoredName":"In Our Time (Abridged Fiction)", "artistViewUrl":"http://itunes.apple.com/us/artist/ernest-hemingway/id2122513?mt=11&uo=4", "collectionViewUrl":"http://itunes.apple.com/WebObjects/MZStore.woa/wa/viewAudiobook?id=281744539&s=143441&uo=4", "artworkUrl60":"http://a5.mzstatic.com/us/r1000/045/Music/4e/c5/45/mzi.yfwmawka.60x60-50.jpg", "artworkUrl100":"http://a5.mzstatic.com/us/r1000/045/Music/4e/c5/45/mzi.yfwmawka.100x100-75.jpg", "collectionPrice":15.95, "collectionExplicitness":"notExplicit", "trackCount":1, "copyright":"2008 Simon & Schuster Audio", "country":"USA", "currency":"USD", "releaseDate":"2008-05-01T07:00:00Z", "primaryGenreName":"Audiobooks"}, - {"wrapperType":"audiobook", "artistId":2122513, "collectionId":356410196, "amgArtistId":null, "amgVideoArtistId":null, "artistName":"Ernest Hemingway", "collectionName":"The Garden of Eden (Unabridged)", "collectionCensoredName":"The Garden of Eden (Unabridged)", "artistViewUrl":"http://itunes.apple.com/us/artist/ernest-hemingway/id2122513?mt=11&uo=4", "collectionViewUrl":"http://itunes.apple.com/WebObjects/MZStore.woa/wa/viewAudiobook?id=356410196&s=143441&uo=4", "artworkUrl60":"http://a5.mzstatic.com/us/r1000/005/Music/fd/f5/69/mzi.oeakzfej.60x60-50.jpg", "artworkUrl100":"http://a3.mzstatic.com/us/r1000/005/Music/fd/f5/69/mzi.oeakzfej.100x100-75.jpg", "collectionPrice":17.95, "collectionExplicitness":"explicit", "trackCount":1, "copyright":"2006 Simon & Schuster Audio", "country":"USA", "currency":"USD", "releaseDate":"2006-10-31T08:00:00Z", "primaryGenreName":"Audiobooks"}, - {"wrapperType":"audiobook", "artistId":2122513, "collectionId":358367069, "amgArtistId":null, "amgVideoArtistId":null, "artistName":"Ernest Hemingway", "collectionName":"Ernest Hemingway: The Short Stories, Volume 2 (Unabridged)", "collectionCensoredName":"Ernest Hemingway: The Short Stories, Volume 2 (Unabridged)", "artistViewUrl":"http://itunes.apple.com/us/artist/ernest-hemingway/id2122513?mt=11&uo=4", "collectionViewUrl":"http://itunes.apple.com/WebObjects/MZStore.woa/wa/viewAudiobook?id=358367069&s=143441&uo=4", "artworkUrl60":"http://a2.mzstatic.com/us/r1000/044/Music/0e/06/22/mzi.okkcepvr.60x60-50.jpg", "artworkUrl100":"http://a5.mzstatic.com/us/r1000/044/Music/0e/06/22/mzi.okkcepvr.100x100-75.jpg", "collectionPrice":16.95, "collectionExplicitness":"notExplicit", "trackCount":1, "copyright":"2003 Simon & Schuster Audio", "country":"USA", "currency":"USD", "releaseDate":"2003-12-19T08:00:00Z", "primaryGenreName":"Audiobooks"}, - {"wrapperType":"audiobook", "artistId":2122513, "collectionId":381374862, "amgArtistId":null, "amgVideoArtistId":null, "artistName":"Ernest Hemingway", "collectionName":"Adios a Las Armas [Farewell to Arms]", "collectionCensoredName":"Adios a Las Armas [Farewell to Arms]", "artistViewUrl":"http://itunes.apple.com/us/artist/ernest-hemingway/id2122513?mt=11&uo=4", "collectionViewUrl":"http://itunes.apple.com/WebObjects/MZStore.woa/wa/viewAudiobook?id=381374862&s=143441&uo=4", "artworkUrl60":"http://a1.mzstatic.com/us/r1000/039/Music/32/39/c9/mzi.ulnshmtg.60x60-50.jpg", "artworkUrl100":"http://a1.mzstatic.com/us/r1000/039/Music/32/39/c9/mzi.ulnshmtg.100x100-75.jpg", "collectionPrice":3.95, "collectionExplicitness":"notExplicit", "trackCount":1, "copyright":"2006 Yoyo USA, Inc", "country":"USA", "currency":"USD", "releaseDate":"2006-04-12T07:00:00Z", "primaryGenreName":"Audiobooks"}, - {"wrapperType":"audiobook", "artistId":2122513, "collectionId":364235362, "amgArtistId":null, "amgVideoArtistId":null, "artistName":"Ernest Hemingway", "collectionName":"Across the River and Into the Trees (Unabridged)", "collectionCensoredName":"Across the River and Into the Trees (Unabridged)", "artistViewUrl":"http://itunes.apple.com/us/artist/ernest-hemingway/id2122513?mt=11&uo=4", "collectionViewUrl":"http://itunes.apple.com/WebObjects/MZStore.woa/wa/viewAudiobook?id=364235362&s=143441&uo=4", "artworkUrl60":"http://a5.mzstatic.com/us/r1000/014/Music/fd/ab/84/mzi.gixnpmtd.60x60-50.jpg", "artworkUrl100":"http://a2.mzstatic.com/us/r1000/014/Music/fd/ab/84/mzi.gixnpmtd.100x100-75.jpg", "collectionPrice":17.95, "collectionExplicitness":"notExplicit", "trackCount":1, "copyright":"2006 Simon & Schuster Audio", "country":"USA", "currency":"USD", "releaseDate":"2006-08-24T07:00:00Z", "primaryGenreName":"Audiobooks"}, - {"wrapperType":"audiobook", "artistId":2122513, "collectionId":285352940, "amgArtistId":null, "amgVideoArtistId":null, "artistName":"Ernest Hemingway", "collectionName":"Men Without Women (Abridged Fiction)", "collectionCensoredName":"Men Without Women (Abridged Fiction)", "artistViewUrl":"http://itunes.apple.com/us/artist/ernest-hemingway/id2122513?mt=11&uo=4", "collectionViewUrl":"http://itunes.apple.com/WebObjects/MZStore.woa/wa/viewAudiobook?id=285352940&s=143441&uo=4", "artworkUrl60":"http://a1.mzstatic.com/us/r1000/058/Music/27/30/49/mzi.aphtftnv.60x60-50.jpg", "artworkUrl100":"http://a2.mzstatic.com/us/r1000/058/Music/27/30/49/mzi.aphtftnv.100x100-75.jpg", "collectionPrice":15.95, "collectionExplicitness":"notExplicit", "trackCount":1, "copyright":"2008 Simon & Schuster Audio", "country":"USA", "currency":"USD", "releaseDate":"2008-04-08T07:00:00Z", "primaryGenreName":"Audiobooks"}, - {"wrapperType":"audiobook", "artistId":2122513, "collectionId":364236334, "amgArtistId":null, "amgVideoArtistId":null, "artistName":"Ernest Hemingway", "collectionName":"The Nick Adams Stories (Unabridged)", "collectionCensoredName":"The Nick Adams Stories (Unabridged)", "artistViewUrl":"http://itunes.apple.com/us/artist/ernest-hemingway/id2122513?mt=11&uo=4", "collectionViewUrl":"http://itunes.apple.com/WebObjects/MZStore.woa/wa/viewAudiobook?id=364236334&s=143441&uo=4", "artworkUrl60":"http://a2.mzstatic.com/us/r1000/027/Music/8a/eb/d7/mzi.ddkyubgm.60x60-50.jpg", "artworkUrl100":"http://a3.mzstatic.com/us/r1000/027/Music/8a/eb/d7/mzi.ddkyubgm.100x100-75.jpg", "collectionPrice":17.95, "collectionExplicitness":"notExplicit", "trackCount":1, "copyright":"2007 Simon & Schuster Audio", "country":"USA", "currency":"USD", "releaseDate":"2007-06-12T07:00:00Z", "primaryGenreName":"Audiobooks"}, - {"wrapperType":"audiobook", "artistId":2122513, "collectionId":355192063, "amgArtistId":null, "amgVideoArtistId":null, "artistName":"Ernest Hemingway", "collectionName":"Death in the Afternoon (Unabridged)", "collectionCensoredName":"Death in the Afternoon (Unabridged)", "artistViewUrl":"http://itunes.apple.com/us/artist/ernest-hemingway/id2122513?mt=11&uo=4", "collectionViewUrl":"http://itunes.apple.com/WebObjects/MZStore.woa/wa/viewAudiobook?id=355192063&s=143441&uo=4", "artworkUrl60":"http://a4.mzstatic.com/us/r1000/033/Music/9b/3b/54/mzi.ayrmtlyi.60x60-50.jpg", "artworkUrl100":"http://a3.mzstatic.com/us/r1000/033/Music/9b/3b/54/mzi.ayrmtlyi.100x100-75.jpg", "collectionPrice":23.95, "collectionExplicitness":"notExplicit", "trackCount":1, "copyright":"2007 Simon & Schuster Audio", "country":"USA", "currency":"USD", "releaseDate":"2007-01-02T08:00:00Z", "primaryGenreName":"Audiobooks"}, - {"wrapperType":"audiobook", "artistId":2122513, "collectionId":256425746, "amgArtistId":null, "amgVideoArtistId":null, "artistName":"Ernest Hemingway", "collectionName":"By-Line Ernest Hemingway: Selected Articles and Dispatches of Four Decades (Abridged Nonfiction)", "collectionCensoredName":"By-Line Ernest Hemingway: Selected Articles and Dispatches of Four Decades (Abridged Nonfiction)", "artistViewUrl":"http://itunes.apple.com/us/artist/ernest-hemingway/id2122513?mt=11&uo=4", "collectionViewUrl":"http://itunes.apple.com/WebObjects/MZStore.woa/wa/viewAudiobook?id=256425746&s=143441&uo=4", "artworkUrl60":"http://a2.mzstatic.com/us/r1000/054/Music/50/f7/b5/mzi.mbyfytpi.60x60-50.jpg", "artworkUrl100":"http://a4.mzstatic.com/us/r1000/054/Music/50/f7/b5/mzi.mbyfytpi.100x100-75.jpg", "collectionPrice":26.95, "collectionExplicitness":"notExplicit", "trackCount":1, "copyright":"2003 Simon & Schuster Audio", "country":"USA", "currency":"USD", "releaseDate":"2003-04-28T07:00:00Z", "primaryGenreName":"Audiobooks"}, - {"wrapperType":"audiobook", "artistId":2122513, "collectionId":407602218, "amgArtistId":null, "amgVideoArtistId":null, "artistName":"Ernest Hemingway", "collectionName":"Death in the Afternoon (Unabridged)", "collectionCensoredName":"Death in the Afternoon (Unabridged)", "artistViewUrl":"http://itunes.apple.com/us/artist/ernest-hemingway/id2122513?mt=11&uo=4", "collectionViewUrl":"http://itunes.apple.com/WebObjects/MZStore.woa/wa/viewAudiobook?id=407602218&s=143441&uo=4", "artworkUrl60":"http://a1.mzstatic.com/us/r1000/006/Music/65/11/02/mzi.nvaxweld.60x60-50.jpg", "artworkUrl100":"http://a4.mzstatic.com/us/r1000/006/Music/65/11/02/mzi.nvaxweld.100x100-75.jpg", "collectionPrice":23.95, "collectionExplicitness":"notExplicit", "trackCount":1, "copyright":"2010 Simon & Schuster Audio", "country":"USA", "currency":"USD", "releaseDate":"2010-11-17T08:00:00Z", "primaryGenreName":"Audiobooks"}, - {"wrapperType":"audiobook", "artistId":2122513, "collectionId":328602875, "amgArtistId":null, "amgVideoArtistId":null, "artistName":"Ernest Hemingway", "collectionName":"Winner Take Nothing", "collectionCensoredName":"Winner Take Nothing", "artistViewUrl":"http://itunes.apple.com/us/artist/ernest-hemingway/id2122513?mt=11&uo=4", "collectionViewUrl":"http://itunes.apple.com/WebObjects/MZStore.woa/wa/viewAudiobook?id=328602875&s=143441&uo=4", "artworkUrl60":"http://a2.mzstatic.com/us/r1000/045/Music/8c/f5/76/mzi.cdotnxpj.60x60-50.jpg", "artworkUrl100":"http://a5.mzstatic.com/us/r1000/045/Music/8c/f5/76/mzi.cdotnxpj.100x100-75.jpg", "collectionPrice":15.95, "collectionExplicitness":"notExplicit", "trackCount":1, "copyright":"2008 Simon & Schuster Audio", "country":"USA", "currency":"USD", "releaseDate":"2008-04-08T07:00:00Z", "primaryGenreName":"Audiobooks"}, - {"wrapperType":"audiobook", "artistId":81501406, "collectionId":353414760, "amgArtistId":null, "amgVideoArtistId":null, "artistName":"Robert Murray", "collectionName":"A Study Guide to Ernest Hemingway's the Sun Also Rises", "collectionCensoredName":"A Study Guide to Ernest Hemingway's the Sun Also Rises", "artistViewUrl":"http://itunes.apple.com/us/artist/robert-murray/id81501406?uo=4", "collectionViewUrl":"http://itunes.apple.com/WebObjects/MZStore.woa/wa/viewAudiobook?id=353414760&s=143441&uo=4", "artworkUrl60":"http://a2.mzstatic.com/us/r1000/012/Music/58/5b/1f/mzi.mueffnsa.60x60-50.jpg", "artworkUrl100":"http://a1.mzstatic.com/us/r1000/012/Music/58/5b/1f/mzi.mueffnsa.100x100-75.jpg", "collectionPrice":5.95, "collectionExplicitness":"notExplicit", "trackCount":1, "copyright":"1997 Hachette Audio", "country":"USA", "currency":"USD", "releaseDate":"1997-02-14T08:00:00Z", "primaryGenreName":"Audiobooks"}, - {"wrapperType":"audiobook", "artistId":354101279, "collectionId":354101249, "amgArtistId":null, "amgVideoArtistId":null, "artistName":"The New Yorker", "collectionName":"The New Yorker, February 8, 2010 (Patrick Radden Keefe, John McPhee, Paul Goldberger)", "collectionCensoredName":"The New Yorker, February 8, 2010 (Patrick Radden Keefe, John McPhee, Paul Goldberger)", "artistViewUrl":"http://itunes.apple.com/us/artist/the-new-yorker/id354101279?uo=4", "collectionViewUrl":"http://itunes.apple.com/WebObjects/MZStore.woa/wa/viewAudiobook?id=354101249&s=143441&uo=4", "artworkUrl60":"http://a3.mzstatic.com/us/r1000/003/Music/ee/26/da/mzi.hnqhwaet.60x60-50.jpg", "artworkUrl100":"http://a4.mzstatic.com/us/r1000/003/Music/ee/26/da/mzi.hnqhwaet.100x100-75.jpg", "collectionPrice":6.95, "collectionExplicitness":"notExplicit", "trackCount":1, "copyright":"2010 The New Yorker", "country":"USA", "currency":"USD", "releaseDate":"2010-02-03T08:00:00Z", "primaryGenreName":"Audiobooks"}, - {"wrapperType":"audiobook", "artistId":320801480, "collectionId":320801467, "amgArtistId":null, "amgVideoArtistId":null, "artistName":"Catherine Reef", "collectionName":"Ernest Hemingway: A Writer's Life (Unabridged)", "collectionCensoredName":"Ernest Hemingway: A Writer's Life (Unabridged)", "artistViewUrl":"http://itunes.apple.com/us/artist/catherine-reef/id320801480?uo=4", "collectionViewUrl":"http://itunes.apple.com/WebObjects/MZStore.woa/wa/viewAudiobook?id=320801467&s=143441&uo=4", "artworkUrl60":"http://a4.mzstatic.com/us/r1000/035/Music/5c/94/24/mzi.ujaytdci.60x60-50.jpg", "artworkUrl100":"http://a5.mzstatic.com/us/r1000/035/Music/5c/94/24/mzi.ujaytdci.100x100-75.jpg", "collectionPrice":10.95, "collectionExplicitness":"notExplicit", "trackCount":1, "copyright":"2009 Oasis Audio", "country":"USA", "currency":"USD", "releaseDate":"2009-07-22T07:00:00Z", "primaryGenreName":"Audiobooks"}, - {"wrapperType":"audiobook", "artistId":2122513, "collectionId":359270850, "amgArtistId":null, "amgVideoArtistId":null, "artistName":"Ernest Hemingway", "collectionName":"Den gamle mand og havet [The Old Man and the Sea] (Unabridged)", "collectionCensoredName":"Den gamle mand og havet [The Old Man and the Sea] (Unabridged)", "artistViewUrl":"http://itunes.apple.com/us/artist/ernest-hemingway/id2122513?mt=11&uo=4", "collectionViewUrl":"http://itunes.apple.com/WebObjects/MZStore.woa/wa/viewAudiobook?id=359270850&s=143441&uo=4", "artworkUrl60":"http://a5.mzstatic.com/us/r1000/012/Music/8a/7e/ef/mzi.sfqmhqkn.60x60-50.jpg", "artworkUrl100":"http://a5.mzstatic.com/us/r1000/012/Music/8a/7e/ef/mzi.sfqmhqkn.100x100-75.jpg", "collectionPrice":17.95, "collectionExplicitness":"notExplicit", "trackCount":1, "copyright":"2010 Viatone", "country":"USA", "currency":"USD", "releaseDate":"2010-03-01T08:00:00Z", "primaryGenreName":"Audiobooks"}, - {"wrapperType":"audiobook", "artistId":40784606, "collectionId":364186718, "amgArtistId":null, "amgVideoArtistId":null, "artistName":"Winston Conrad", "collectionName":"Hemingway's France: Images of the Lost Generation (Unabridged)", "collectionCensoredName":"Hemingway's France: Images of the Lost Generation (Unabridged)", "artistViewUrl":"http://itunes.apple.com/us/artist/winston-conrad/id40784606?uo=4", "collectionViewUrl":"http://itunes.apple.com/WebObjects/MZStore.woa/wa/viewAudiobook?id=364186718&s=143441&uo=4", "artworkUrl60":"http://a5.mzstatic.com/us/r1000/052/Music/5e/8d/8a/mzi.oztveoip.60x60-50.jpg", "artworkUrl100":"http://a3.mzstatic.com/us/r1000/052/Music/5e/8d/8a/mzi.oztveoip.100x100-75.jpg", "collectionPrice":9.95, "collectionExplicitness":"notExplicit", "trackCount":1, "copyright":"2004 Blackstone Audiobooks", "country":"USA", "currency":"USD", "releaseDate":"2004-12-31T08:00:00Z", "primaryGenreName":"Audiobooks"}, - {"wrapperType":"audiobook", "artistId":2122513, "collectionId":397563313, "amgArtistId":null, "amgVideoArtistId":null, "artistName":"Ernest Hemingway", "collectionName":"Der er ingen ende p\u00e5 Paris [There Is No End in Paris] (Unabridged)", "collectionCensoredName":"Der er ingen ende p\u00e5 Paris [There Is No End in Paris] (Unabridged)", "artistViewUrl":"http://itunes.apple.com/us/artist/ernest-hemingway/id2122513?mt=11&uo=4", "collectionViewUrl":"http://itunes.apple.com/WebObjects/MZStore.woa/wa/viewAudiobook?id=397563313&s=143441&uo=4", "artworkUrl60":"http://a1.mzstatic.com/us/r1000/016/Music/58/a5/9c/mzi.wxmofflh.60x60-50.jpg", "artworkUrl100":"http://a5.mzstatic.com/us/r1000/016/Music/58/a5/9c/mzi.wxmofflh.100x100-75.jpg", "collectionPrice":21.95, "collectionExplicitness":"notExplicit", "trackCount":1, "copyright":"2010 Viatone", "country":"USA", "currency":"USD", "releaseDate":"2010-10-07T07:00:00Z", "primaryGenreName":"Audiobooks"}, - {"wrapperType":"audiobook", "artistId":2122513, "collectionId":359553423, "amgArtistId":null, "amgVideoArtistId":null, "artistName":"Ernest Hemingway", "collectionName":"Hvem ringer klokkerne for [For Whom the Bell Tolls] (Unabridged)", "collectionCensoredName":"Hvem ringer klokkerne for [For Whom the Bell Tolls] (Unabridged)", "artistViewUrl":"http://itunes.apple.com/us/artist/ernest-hemingway/id2122513?mt=11&uo=4", "collectionViewUrl":"http://itunes.apple.com/WebObjects/MZStore.woa/wa/viewAudiobook?id=359553423&s=143441&uo=4", "artworkUrl60":"http://a1.mzstatic.com/us/r1000/052/Music/36/e7/a8/mzi.wvyhggsl.60x60-50.jpg", "artworkUrl100":"http://a5.mzstatic.com/us/r1000/052/Music/36/e7/a8/mzi.wvyhggsl.100x100-75.jpg", "collectionPrice":33.95, "collectionExplicitness":"notExplicit", "trackCount":1, "copyright":"2010 Viatone", "country":"USA", "currency":"USD", "releaseDate":"2010-03-01T08:00:00Z", "primaryGenreName":"Audiobooks"}, - {"wrapperType":"audiobook", "artistId":2122513, "collectionId":359562700, "amgArtistId":null, "amgVideoArtistId":null, "artistName":"Ernest Hemingway", "collectionName":"At have og ikke have [To Have and Have Not] (Unabridged)", "collectionCensoredName":"At have og ikke have [To Have and Have Not] (Unabridged)", "artistViewUrl":"http://itunes.apple.com/us/artist/ernest-hemingway/id2122513?mt=11&uo=4", "collectionViewUrl":"http://itunes.apple.com/WebObjects/MZStore.woa/wa/viewAudiobook?id=359562700&s=143441&uo=4", "artworkUrl60":"http://a4.mzstatic.com/us/r1000/023/Music/da/67/bb/mzi.byhgirdi.60x60-50.jpg", "artworkUrl100":"http://a1.mzstatic.com/us/r1000/023/Music/da/67/bb/mzi.byhgirdi.100x100-75.jpg", "collectionPrice":21.95, "collectionExplicitness":"notExplicit", "trackCount":1, "copyright":"2010 Viatone", "country":"USA", "currency":"USD", "releaseDate":"2010-03-01T08:00:00Z", "primaryGenreName":"Audiobooks"}, - {"wrapperType":"audiobook", "artistId":2122513, "collectionId":359269728, "amgArtistId":null, "amgVideoArtistId":null, "artistName":"Ernest Hemingway", "collectionName":"Solen g\u00e5r sin gang [The Sun Also Rises] (Unabridged)", "collectionCensoredName":"Solen g\u00e5r sin gang [The Sun Also Rises] (Unabridged)", "artistViewUrl":"http://itunes.apple.com/us/artist/ernest-hemingway/id2122513?mt=11&uo=4", "collectionViewUrl":"http://itunes.apple.com/WebObjects/MZStore.woa/wa/viewAudiobook?id=359269728&s=143441&uo=4", "artworkUrl60":"http://a1.mzstatic.com/us/r1000/043/Music/d2/f9/87/mzi.lbcfmvfv.60x60-50.jpg", "artworkUrl100":"http://a1.mzstatic.com/us/r1000/043/Music/d2/f9/87/mzi.lbcfmvfv.100x100-75.jpg", "collectionPrice":22.95, "collectionExplicitness":"notExplicit", "trackCount":1, "copyright":"2010 Viatone", "country":"USA", "currency":"USD", "releaseDate":"2010-03-01T08:00:00Z", "primaryGenreName":"Audiobooks"}, - {"wrapperType":"audiobook", "artistId":2122513, "collectionId":378960843, "amgArtistId":null, "amgVideoArtistId":null, "artistName":"Ernest Hemingway", "collectionName":"Farvel til v\u00e5bnene [A Farewell to Arms] (Unabridged)", "collectionCensoredName":"Farvel til v\u00e5bnene [A Farewell to Arms] (Unabridged)", "artistViewUrl":"http://itunes.apple.com/us/artist/ernest-hemingway/id2122513?mt=11&uo=4", "collectionViewUrl":"http://itunes.apple.com/WebObjects/MZStore.woa/wa/viewAudiobook?id=378960843&s=143441&uo=4", "artworkUrl60":"http://a4.mzstatic.com/us/r1000/021/Music/f4/17/12/mzi.ishqonff.60x60-50.jpg", "artworkUrl100":"http://a1.mzstatic.com/us/r1000/021/Music/f4/17/12/mzi.ishqonff.100x100-75.jpg", "collectionPrice":27.95, "collectionExplicitness":"notExplicit", "trackCount":1, "copyright":"2010 Viatone", "country":"USA", "currency":"USD", "releaseDate":"2010-06-18T07:00:00Z", "primaryGenreName":"Audiobooks"}, - {"wrapperType":"audiobook", "artistId":2030421, "collectionId":366950565, "amgArtistId":null, "amgVideoArtistId":null, "artistName":"E.L. Doctorow", "collectionName":"Creationists: Selected Essays 1993-2006 (Unabridged)", "collectionCensoredName":"Creationists: Selected Essays 1993-2006 (Unabridged)", "artistViewUrl":"http://itunes.apple.com/us/artist/e-l-doctorow/id2030421?uo=4", "collectionViewUrl":"http://itunes.apple.com/WebObjects/MZStore.woa/wa/viewAudiobook?id=366950565&s=143441&uo=4", "artworkUrl60":"http://a4.mzstatic.com/us/r1000/040/Music/01/b1/78/mzi.slycheij.60x60-50.jpg", "artworkUrl100":"http://a1.mzstatic.com/us/r1000/040/Music/01/b1/78/mzi.slycheij.100x100-75.jpg", "collectionPrice":17.95, "collectionExplicitness":"notExplicit", "trackCount":1, "copyright":"2006 Random House Audio", "country":"USA", "currency":"USD", "releaseDate":"2006-09-19T07:00:00Z", "primaryGenreName":"Audiobooks"}, - {"wrapperType":"audiobook", "artistId":7370232, "collectionId":367864634, "amgArtistId":null, "amgVideoArtistId":null, "artistName":"Stuart M. Kaminsky", "collectionName":"High Midnight (Unabridged)", "collectionCensoredName":"High Midnight (Unabridged)", "artistViewUrl":"http://itunes.apple.com/us/artist/stuart-m-kaminsky/id7370232?mt=11&uo=4", "collectionViewUrl":"http://itunes.apple.com/WebObjects/MZStore.woa/wa/viewAudiobook?id=367864634&s=143441&uo=4", "artworkUrl60":"http://a4.mzstatic.com/us/r1000/044/Music/23/93/73/mzi.aclpfqwm.60x60-50.jpg", "artworkUrl100":"http://a4.mzstatic.com/us/r1000/044/Music/23/93/73/mzi.aclpfqwm.100x100-75.jpg", "collectionPrice":11.95, "collectionExplicitness":"notExplicit", "trackCount":1, "copyright":"2006 Blackstone Audio, Inc.", "country":"USA", "currency":"USD", "releaseDate":"2006-03-23T08:00:00Z", "primaryGenreName":"Audiobooks"}, - {"wrapperType":"audiobook", "artistId":368124523, "collectionId":368124519, "amgArtistId":null, "amgVideoArtistId":null, "artistName":"Sara Paretsky, Lawrence Block, Edgar Allan Poe, Georges Simenon, Ernest Hemingway, A.A. Milne, Robert Barr", "collectionName":"The Greatest Mysteries of All Time, Volume 4 (Unabridged)", "collectionCensoredName":"The Greatest Mysteries of All Time, Volume 4 (Unabridged)", "artistViewUrl":"http://itunes.apple.com/us/artist/sara-paretsky-lawrence-block/id368124523?uo=4", "collectionViewUrl":"http://itunes.apple.com/WebObjects/MZStore.woa/wa/viewAudiobook?id=368124519&s=143441&uo=4", "artworkUrl60":"http://a4.mzstatic.com/us/r1000/052/Music/42/79/e8/mzi.xfngvtgk.60x60-50.jpg", "artworkUrl100":"http://a2.mzstatic.com/us/r1000/052/Music/42/79/e8/mzi.xfngvtgk.100x100-75.jpg", "collectionPrice":14.95, "collectionExplicitness":"notExplicit", "trackCount":1, "copyright":"2010 Phoenix Audio", "country":"USA", "currency":"USD", "releaseDate":"2010-04-14T07:00:00Z", "primaryGenreName":"Audiobooks"}, - {"wrapperType":"audiobook", "artistId":404108611, "collectionId":404109347, "amgArtistId":null, "amgVideoArtistId":null, "artistName":"Annegret Augustin", "collectionName":"Bedeutende Personen der Weltgeschichte: Kemal Atat\u00fcrk / Pablo Picasso / Charlie Chaplin / Ernest Hemingway", "collectionCensoredName":"Bedeutende Personen der Weltgeschichte: Kemal Atat\u00fcrk / Pablo Picasso / Charlie Chaplin / Ernest Hemingway", "artistViewUrl":"http://itunes.apple.com/us/artist/annegret-augustin/id404108611?uo=4", "collectionViewUrl":"http://itunes.apple.com/WebObjects/MZStore.woa/wa/viewAudiobook?id=404109347&s=143441&uo=4", "artworkUrl60":"http://a1.mzstatic.com/us/r1000/019/Music/4e/75/97/mzi.pgfhejyi.60x60-50.jpg", "artworkUrl100":"http://a5.mzstatic.com/us/r1000/019/Music/4e/75/97/mzi.pgfhejyi.100x100-75.jpg", "collectionPrice":6.95, "collectionExplicitness":"notExplicit", "trackCount":1, "copyright":"2010 audio media verlag", "country":"USA", "currency":"USD", "releaseDate":"2010-11-10T08:00:00Z", "primaryGenreName":"Audiobooks"}] - } - - - http_version: "1.1" -- !ruby/struct:VCR::HTTPInteraction - request: !ruby/struct:VCR::Request - method: :get - uri: http://ax.itunes.apple.com:80/WebObjects/MZStoreServices.woa/wa/wsSearch?media=shortFilm&term=Pixar - body: - headers: - accept: - - application/json - user-agent: - - ITunes Ruby Gem 0.4.1 - response: !ruby/struct:VCR::Response - status: !ruby/struct:VCR::ResponseStatus - code: 200 - message: OK - headers: - x-webobjects-loadaverage: - - "0" - x-apple-orig-url-path: - - /WebObjects/MZStoreServices.woa/wa/wsSearch?term=Pixar&media=shortFilm - x-apple-application-site: - - NWK - x-apple-partner: - - origin.0 - expires: - - Mon, 30 May 2011 02:37:13 GMT - content-type: - - text/javascript; charset=utf-8 - x-apple-max-age: - - "3600" - date: - - Mon, 30 May 2011 02:37:13 GMT - content-length: - - "26898" - x-apple-application-instance: - - "1020004" - x-apple-woa-inbound-url: - - /WebObjects/MZStoreServices.woa/wa/wsSearch?term=Pixar&media=shortFilm - vary: - - X-Apple-Store-Front - cache-control: - - max-age=0, no-cache - pragma: - - no-cache - body: |+ - - - - { - "resultCount":17, - "results": [ - {"wrapperType":"track", "kind":"feature-movie", "artistId":81758682, "collectionId":null, "trackId":81758685, "artistName":"Pixar", "collectionName":null, "trackName":"For the Birds", "collectionCensoredName":null, "trackCensoredName":"For the Birds", "artistViewUrl":"http://itunes.apple.com/us/studio/pixar/id81758682?uo=4", "collectionViewUrl":null, "trackViewUrl":"http://itunes.apple.com/us/movie/for-the-birds/id81758685?uo=4", "previewUrl":"http://a1949.v.phobos.apple.com/us/r1000/051/Video/0f/96/2c/mzi.eruazfvl..640x480.h264lc.D2.p.m4v", "artworkUrl30":"http://a5.mzstatic.com/us/r1000/005/Features/90/d3/c4/dj.zzvxxnqt.30x30-50.jpg", "artworkUrl60":"http://a2.mzstatic.com/us/r1000/005/Features/90/d3/c4/dj.zzvxxnqt.60x60-50.jpg", "artworkUrl100":"http://a2.mzstatic.com/us/r1000/005/Features/90/d3/c4/dj.zzvxxnqt.100x100-75.jpg", "collectionPrice":1.99, "trackPrice":1.99, "releaseDate":"2003-04-28T07:00:00Z", "collectionExplicitness":"notExplicit", "trackExplicitness":"notExplicit", "discCount":null, "discNumber":null, "trackCount":null, "trackNumber":null, "trackTimeMillis":204625.0, "country":"USA", "currency":"USD", "primaryGenreName":"Short Films", "contentAdvisoryRating":null, "shortDescription":null, "longDescription":null}, - {"wrapperType":"track", "kind":"feature-movie", "artistId":81758682, "collectionId":null, "trackId":94600947, "artistName":"Pixar", "collectionName":null, "trackName":"Knick Knack", "collectionCensoredName":null, "trackCensoredName":"Knick Knack", "artistViewUrl":"http://itunes.apple.com/us/studio/pixar/id81758682?uo=4", "collectionViewUrl":null, "trackViewUrl":"http://itunes.apple.com/us/movie/knick-knack/id94600947?uo=4", "previewUrl":"http://a1398.v.phobos.apple.com/us/r1000/017/Video/36/0d/e3/mzi.rosublik..640x480.h264lc.D2.p.m4v", "artworkUrl30":"http://a2.mzstatic.com/us/r1000/016/Features/fc/f4/2e/dj.hkwlcwmx.30x30-50.jpg", "artworkUrl60":"http://a1.mzstatic.com/us/r1000/016/Features/fc/f4/2e/dj.hkwlcwmx.60x60-50.jpg", "artworkUrl100":"http://a1.mzstatic.com/us/r1000/016/Features/fc/f4/2e/dj.hkwlcwmx.100x100-75.jpg", "collectionPrice":1.99, "trackPrice":1.99, "releaseDate":"2003-04-28T07:00:00Z", "collectionExplicitness":"notExplicit", "trackExplicitness":"notExplicit", "discCount":null, "discNumber":null, "trackCount":null, "trackNumber":null, "trackTimeMillis":217458.0, "country":"USA", "currency":"USD", "primaryGenreName":"Short Films", "contentAdvisoryRating":null, "shortDescription":null, "longDescription":null}, - {"wrapperType":"track", "kind":"feature-movie", "artistId":81758682, "collectionId":null, "trackId":81758680, "artistName":"Pixar", "collectionName":null, "trackName":"Boundin'", "collectionCensoredName":null, "trackCensoredName":"Boundin'", "artistViewUrl":"http://itunes.apple.com/us/studio/pixar/id81758682?uo=4", "collectionViewUrl":null, "trackViewUrl":"http://itunes.apple.com/us/movie/boundin/id81758680?uo=4", "previewUrl":"http://a442.v.phobos.apple.com/us/r1000/020/Video/f6/ae/68/mzi.yfyrdvdl..640x480.h264lc.D2.p.m4v", "artworkUrl30":"http://a1.mzstatic.com/us/r1000/028/Features/dc/23/92/dj.afewymrp.30x30-50.jpg", "artworkUrl60":"http://a5.mzstatic.com/us/r1000/028/Features/dc/23/92/dj.afewymrp.60x60-50.jpg", "artworkUrl100":"http://a3.mzstatic.com/us/r1000/028/Features/dc/23/92/dj.afewymrp.100x100-75.jpg", "collectionPrice":1.99, "trackPrice":1.99, "releaseDate":"2003-04-28T07:00:00Z", "collectionExplicitness":"notExplicit", "trackExplicitness":"notExplicit", "discCount":null, "discNumber":null, "trackCount":null, "trackNumber":null, "trackTimeMillis":283458.0, "country":"USA", "currency":"USD", "primaryGenreName":"Short Films", "contentAdvisoryRating":null, "shortDescription":null, "longDescription":null}, - {"wrapperType":"track", "kind":"feature-movie", "artistId":81758682, "collectionId":null, "trackId":81758687, "artistName":"Pixar", "collectionName":null, "trackName":"Geri's Game", "collectionCensoredName":null, "trackCensoredName":"Geri's Game", "artistViewUrl":"http://itunes.apple.com/us/studio/pixar/id81758682?uo=4", "collectionViewUrl":null, "trackViewUrl":"http://itunes.apple.com/us/movie/geris-game/id81758687?uo=4", "previewUrl":"http://a1769.v.phobos.apple.com/us/r1000/048/Video/8e/8a/b3/mzi.lqdidvxn..640x480.h264lc.D2.p.m4v", "artworkUrl30":"http://a5.mzstatic.com/us/r1000/059/Features/e7/ee/39/dj.tlksjlck.30x30-50.jpg", "artworkUrl60":"http://a4.mzstatic.com/us/r1000/059/Features/e7/ee/39/dj.tlksjlck.60x60-50.jpg", "artworkUrl100":"http://a4.mzstatic.com/us/r1000/059/Features/e7/ee/39/dj.tlksjlck.100x100-75.jpg", "collectionPrice":1.99, "trackPrice":1.99, "releaseDate":"2003-04-28T07:00:00Z", "collectionExplicitness":"notExplicit", "trackExplicitness":"notExplicit", "discCount":null, "discNumber":null, "trackCount":null, "trackNumber":null, "trackTimeMillis":299833.0, "country":"USA", "currency":"USD", "primaryGenreName":"Short Films", "contentAdvisoryRating":null, "shortDescription":null, "longDescription":null}, - {"wrapperType":"track", "kind":"feature-movie", "artistId":81758682, "collectionId":null, "trackId":259311591, "artistName":"Pixar", "collectionName":null, "trackName":"Lifted", "collectionCensoredName":null, "trackCensoredName":"Lifted", "artistViewUrl":"http://itunes.apple.com/us/studio/pixar/id81758682?uo=4", "collectionViewUrl":null, "trackViewUrl":"http://itunes.apple.com/us/movie/lifted/id259311591?uo=4", "previewUrl":"http://a297.v.phobos.apple.com/us/r1000/018/Video/d2/9d/04/mzi.cgfbzhly..640x336.h264lc.D2.p.m4v", "artworkUrl30":"http://a1.mzstatic.com/us/r1000/019/Features/01/b4/c4/dj.vrqdndhh.30x30-50.jpg", "artworkUrl60":"http://a3.mzstatic.com/us/r1000/019/Features/01/b4/c4/dj.vrqdndhh.60x60-50.jpg", "artworkUrl100":"http://a3.mzstatic.com/us/r1000/019/Features/01/b4/c4/dj.vrqdndhh.100x100-75.jpg", "collectionPrice":1.99, "trackPrice":1.99, "releaseDate":"2007-06-29T07:00:00Z", "collectionExplicitness":"notExplicit", "trackExplicitness":"notExplicit", "discCount":null, "discNumber":null, "trackCount":null, "trackNumber":null, "trackTimeMillis":299916.0, "country":"USA", "currency":"USD", "primaryGenreName":"Short Films", "contentAdvisoryRating":null, - "shortDescription":"When an overconfident teen alien gets behind the controls of a spaceship, he must attempt to abduct a slumbering farmer under the watchful eye of a critical instructor. But abducting humans requires precision and a gentle touch, and within a few missteps it's painfully clear why more humans don\u2019t go missing every year.", - "longDescription":"When an overconfident teen alien gets behind the controls of a spaceship, he must attempt to abduct a slumbering farmer under the watchful eye of a critical instructor. But abducting humans requires precision and a gentle touch, and within a few missteps it's painfully clear why more humans don\u2019t go missing every year."}, - {"wrapperType":"track", "kind":"feature-movie", "artistId":81758682, "collectionId":null, "trackId":159489047, "artistName":"Pixar", "collectionName":null, "trackName":"One Man Band", "collectionCensoredName":null, "trackCensoredName":"One Man Band", "artistViewUrl":"http://itunes.apple.com/us/studio/pixar/id81758682?uo=4", "collectionViewUrl":null, "trackViewUrl":"http://itunes.apple.com/us/movie/one-man-band/id159489047?uo=4", "previewUrl":"http://a477.v.phobos.apple.com/us/r1000/032/Video/ee/b1/19/mzi.qrasbuar..640x480.h264lc.D2.p.m4v", "artworkUrl30":"http://a4.mzstatic.com/us/r1000/059/Features/d6/4d/2b/dj.jkkraltz.30x30-50.jpg", "artworkUrl60":"http://a3.mzstatic.com/us/r1000/059/Features/d6/4d/2b/dj.jkkraltz.60x60-50.jpg", "artworkUrl100":"http://a5.mzstatic.com/us/r1000/059/Features/d6/4d/2b/dj.jkkraltz.100x100-75.jpg", "collectionPrice":1.99, "trackPrice":1.99, "releaseDate":"2006-06-07T07:00:00Z", "collectionExplicitness":"notExplicit", "trackExplicitness":"notExplicit", "discCount":null, "discNumber":null, "trackCount":null, "trackNumber":null, "trackTimeMillis":274166.0, "country":"USA", "currency":"USD", "primaryGenreName":"Short Films", "contentAdvisoryRating":null, "shortDescription":null, "longDescription":null}, - {"wrapperType":"track", "kind":"feature-movie", "artistId":81758682, "collectionId":null, "trackId":81939954, "artistName":"Pixar", "collectionName":null, "trackName":"Luxo Jr.", "collectionCensoredName":null, "trackCensoredName":"Luxo Jr.", "artistViewUrl":"http://itunes.apple.com/us/studio/pixar/id81758682?uo=4", "collectionViewUrl":null, "trackViewUrl":"http://itunes.apple.com/us/movie/luxo-jr/id81939954?uo=4", "previewUrl":"http://a1421.v.phobos.apple.com/us/r1000/007/Video/8a/21/40/mzi.dzbgwvvh..640x480.h264lc.D2.p.m4v", "artworkUrl30":"http://a5.mzstatic.com/us/r1000/003/Features/40/99/6b/dj.ozgghlnl.30x30-50.jpg", "artworkUrl60":"http://a4.mzstatic.com/us/r1000/003/Features/40/99/6b/dj.ozgghlnl.60x60-50.jpg", "artworkUrl100":"http://a4.mzstatic.com/us/r1000/003/Features/40/99/6b/dj.ozgghlnl.100x100-75.jpg", "collectionPrice":1.99, "trackPrice":1.99, "releaseDate":"2003-04-28T07:00:00Z", "collectionExplicitness":"notExplicit", "trackExplicitness":"notExplicit", "discCount":null, "discNumber":null, "trackCount":null, "trackNumber":null, "trackTimeMillis":145958.0, "country":"USA", "currency":"USD", "primaryGenreName":"Short Films", "contentAdvisoryRating":null, "shortDescription":null, "longDescription":null}, - {"wrapperType":"track", "kind":"feature-movie", "artistId":81758682, "collectionId":null, "trackId":282546512, "artistName":"Pixar", "collectionName":null, "trackName":"Presto", "collectionCensoredName":null, "trackCensoredName":"Presto", "artistViewUrl":"http://itunes.apple.com/us/studio/pixar/id81758682?uo=4", "collectionViewUrl":null, "trackViewUrl":"http://itunes.apple.com/us/movie/presto/id282546512?uo=4", "previewUrl":"http://a454.v.phobos.apple.com/us/r1000/059/Video/0e/1b/d8/mzi.lmffvhnd..640x360.h264lc.D2.p.m4v", "artworkUrl30":"http://a5.mzstatic.com/us/r1000/025/Music/dd/10/3f/dj.egvtswop.30x30-50.jpg", "artworkUrl60":"http://a2.mzstatic.com/us/r1000/025/Music/dd/10/3f/dj.egvtswop.60x60-50.jpg", "artworkUrl100":"http://a3.mzstatic.com/us/r1000/025/Music/dd/10/3f/dj.egvtswop.100x100-75.jpg", "collectionPrice":1.99, "trackPrice":1.99, "releaseDate":"2008-06-27T07:00:00Z", "collectionExplicitness":"notExplicit", "trackExplicitness":"notExplicit", "discCount":null, "discNumber":null, "trackCount":null, "trackNumber":null, "trackTimeMillis":317108.0, "country":"USA", "currency":"USD", "primaryGenreName":"Short Films", "contentAdvisoryRating":null, - "shortDescription":"Dignity. Poise. Mystery. We expect nothing less from the great, turn-of-the-century magician, Presto. But, when Presto forgets to feed his rabbit one too many times, well, there's really no telling what to expect! This latest comical short film from Pixar Animation Studios follows the escalating high jinx of the amazing Presto, his rabbit Alec, and what happens onstage when a star magician's ego provokes some clever revenge from his neglected costar.", "longDescription":null}, - {"wrapperType":"track", "kind":"feature-movie", "artistId":81758682, "collectionId":null, "trackId":81939958, "artistName":"Pixar", "collectionName":null, "trackName":"Tin Toy", "collectionCensoredName":null, "trackCensoredName":"Tin Toy", "artistViewUrl":"http://itunes.apple.com/us/studio/pixar/id81758682?uo=4", "collectionViewUrl":null, "trackViewUrl":"http://itunes.apple.com/us/movie/tin-toy/id81939958?uo=4", "previewUrl":"http://a910.v.phobos.apple.com/us/r1000/049/Video/87/16/44/mzi.vauqkvix..640x480.h264lc.D2.p.m4v", "artworkUrl30":"http://a1.mzstatic.com/us/r1000/058/Features/89/60/e1/dj.tvvjvyfv.30x30-50.jpg", "artworkUrl60":"http://a5.mzstatic.com/us/r1000/058/Features/89/60/e1/dj.tvvjvyfv.60x60-50.jpg", "artworkUrl100":"http://a1.mzstatic.com/us/r1000/058/Features/89/60/e1/dj.tvvjvyfv.100x100-75.jpg", "collectionPrice":1.99, "trackPrice":1.99, "releaseDate":"2003-04-28T07:00:00Z", "collectionExplicitness":"notExplicit", "trackExplicitness":"notExplicit", "discCount":null, "discNumber":null, "trackCount":null, "trackNumber":null, "trackTimeMillis":309916.0, "country":"USA", "currency":"USD", "primaryGenreName":"Short Films", "contentAdvisoryRating":null, "shortDescription":null, "longDescription":null}, - {"wrapperType":"track", "kind":"feature-movie", "artistId":81758682, "collectionId":null, "trackId":81939956, "artistName":"Pixar", "collectionName":null, "trackName":"Red's Dream", "collectionCensoredName":null, "trackCensoredName":"Red's Dream", "artistViewUrl":"http://itunes.apple.com/us/studio/pixar/id81758682?uo=4", "collectionViewUrl":null, "trackViewUrl":"http://itunes.apple.com/us/movie/reds-dream/id81939956?uo=4", "previewUrl":"http://a1642.v.phobos.apple.com/us/r1000/003/Video/f6/f0/f8/mzi.jqjcpryl..640x480.h264lc.D2.p.m4v", "artworkUrl30":"http://a1.mzstatic.com/us/r1000/036/Features/0e/60/5f/dj.zezykinx.30x30-50.jpg", "artworkUrl60":"http://a5.mzstatic.com/us/r1000/036/Features/0e/60/5f/dj.zezykinx.60x60-50.jpg", "artworkUrl100":"http://a2.mzstatic.com/us/r1000/036/Features/0e/60/5f/dj.zezykinx.100x100-75.jpg", "collectionPrice":1.99, "trackPrice":1.99, "releaseDate":"2003-04-28T07:00:00Z", "collectionExplicitness":"notExplicit", "trackExplicitness":"notExplicit", "discCount":null, "discNumber":null, "trackCount":null, "trackNumber":null, "trackTimeMillis":253666.0, "country":"USA", "currency":"USD", "primaryGenreName":"Short Films", "contentAdvisoryRating":null, "shortDescription":null, "longDescription":null}, - {"wrapperType":"track", "kind":"feature-movie", "artistId":81758682, "collectionId":null, "trackId":299568053, "artistName":"Pixar", "collectionName":null, "trackName":"Jack-Jack Attack", "collectionCensoredName":null, "trackCensoredName":"Jack-Jack Attack", "artistViewUrl":"http://itunes.apple.com/us/studio/pixar/id81758682?uo=4", "collectionViewUrl":null, "trackViewUrl":"http://itunes.apple.com/us/movie/jack-jack-attack/id299568053?uo=4", "previewUrl":"http://a1949.v.phobos.apple.com/us/r1000/020/Video/7d/ad/ea/mzm.cbwhowqs..640x360.h264lc.d2.p.m4v", "artworkUrl30":"http://a3.mzstatic.com/us/r1000/039/Video/d3/ca/90/mzi.lajysyhn.30x30-50.jpg", "artworkUrl60":"http://a5.mzstatic.com/us/r1000/039/Video/d3/ca/90/mzi.lajysyhn.60x60-50.jpg", "artworkUrl100":"http://a1.mzstatic.com/us/r1000/039/Video/d3/ca/90/mzi.lajysyhn.100x100-75.jpg", "collectionPrice":1.99, "trackPrice":1.99, "releaseDate":"2007-11-06T08:00:00Z", "collectionExplicitness":"notExplicit", "trackExplicitness":"notExplicit", "discCount":null, "discNumber":null, "trackCount":null, "trackNumber":null, "trackTimeMillis":285535.0, "country":"USA", "currency":"USD", "primaryGenreName":"Short Films", "contentAdvisoryRating":null, "shortDescription":null, - "longDescription":"Kari the babysitter thinks she's in for a night of routine babysitting.\u00a0She\u2019s prepared to provide neurological stimulation with some soothing musical accompaniment for little Jack-Jack, the smallest member of the incredible Parr family.\u00a0Little does she know that Jack-Jack will teach her a thing or two about babies with \"special needs.\"\u00a0True to her word, Kari proves she can handle anything Jack-Jack can dish out - just barely.\u00a0And Jack-Jack proves that listening to Mozart truly does make babies smarter. Or, in his case, discover his super powers. The idea behind Jack-Jack Attack was originally a sequence in The Incredibles, but was cut when director Brad Bird decided to reveal the baby's powers at the end of the movie. By expanding the babysitting misadventure to a short film, the creative team elevated to hilarious heights Kari's frantic calls to Helen Parr."}, - {"wrapperType":"track", "kind":"feature-movie", "artistId":81758682, "collectionId":null, "trackId":317100593, "artistName":"Pixar", "collectionName":null, "trackName":"Partly Cloudy", "collectionCensoredName":null, "trackCensoredName":"Partly Cloudy", "artistViewUrl":"http://itunes.apple.com/us/studio/pixar/id81758682?uo=4", "collectionViewUrl":null, "trackViewUrl":"http://itunes.apple.com/us/movie/partly-cloudy/id317100593?uo=4", "previewUrl":"http://a861.v.phobos.apple.com/us/r1000/049/Video/1c/45/ea/mzm.azlmttgv..640x480.h264lc.d2.p.m4v", "artworkUrl30":"http://a2.mzstatic.com/us/r1000/006/Video/e8/ee/2d/mzi.xtqdjdfx.30x30-50.jpg", "artworkUrl60":"http://a1.mzstatic.com/us/r1000/006/Video/e8/ee/2d/mzi.xtqdjdfx.60x60-50.jpg", "artworkUrl100":"http://a4.mzstatic.com/us/r1000/006/Video/e8/ee/2d/mzi.xtqdjdfx.100x100-75.jpg", "collectionPrice":1.99, "trackPrice":1.99, "releaseDate":"2009-06-02T07:00:00Z", "collectionExplicitness":"notExplicit", "trackExplicitness":"notExplicit", "discCount":null, "discNumber":null, "trackCount":null, "trackNumber":null, "trackTimeMillis":349891.0, "country":"USA", "currency":"USD", "primaryGenreName":"Short Films", "contentAdvisoryRating":null, "shortDescription":null, - "longDescription":"Everyone knows that the stork delivers babies, but where do the storks get the babies from? The answer lies up in the stratosphere, where cloud people sculpt babies from clouds and bring them to life. Gus, a lonely and insecure grey cloud, is a master at creating \"dangerous\" babies. Crocodiles, porcupines, rams and more - Gus's beloved creations are works of art, but more than a handful for his loyal delivery stork partner, Peck. As Gus's creations become more and more rambunctious, Peck's job gets harder and harder. How will Peck manage to handle both his hazardous cargo and his friend's fiery treatment?"}, - {"wrapperType":"track", "kind":"feature-movie", "artistId":81758682, "collectionId":null, "trackId":378141736, "artistName":"Pixar", "collectionName":null, "trackName":"Day & Night", "collectionCensoredName":null, "trackCensoredName":"Day & Night", "artistViewUrl":"http://itunes.apple.com/us/studio/pixar/id81758682?uo=4", "collectionViewUrl":null, "trackViewUrl":"http://itunes.apple.com/us/movie/day-night/id378141736?uo=4", "previewUrl":"http://a1360.v.phobos.apple.com/us/r1000/054/Video/a7/58/c0/mzm.clwumdku..640x478.h264lc.d2.p.m4v", "artworkUrl30":"http://a3.mzstatic.com/us/r1000/008/Video/a8/1d/45/mzi.aqozcmgw.30x30-50.jpg", "artworkUrl60":"http://a2.mzstatic.com/us/r1000/008/Video/a8/1d/45/mzi.aqozcmgw.60x60-50.jpg", "artworkUrl100":"http://a5.mzstatic.com/us/r1000/008/Video/a8/1d/45/mzi.aqozcmgw.100x100-75.jpg", "collectionPrice":1.99, "trackPrice":1.99, "releaseDate":"2010-06-22T07:00:00Z", "collectionExplicitness":"notExplicit", "trackExplicitness":"notExplicit", "discCount":null, "discNumber":null, "trackCount":null, "trackNumber":null, "trackTimeMillis":363294.0, "country":"USA", "currency":"USD", "primaryGenreName":"Short Films", "contentAdvisoryRating":null, "shortDescription":null, - "longDescription":"When Day, a sunny fellow, encounters Night, a stranger of distinctly darker moods, sparks fly! Day and Night are frightened and suspicious of each other at first, and quickly get off on the wrong foot. But as they discover each other's unique qualities\u2013and come to realize that each of them offers a different window onto the same world\u2013the friendship helps both to gain a new perspective."}, - {"wrapperType":"track", "kind":"feature-movie", "artistId":81758682, "collectionId":null, "trackId":299568535, "artistName":"Pixar", "collectionName":null, "trackName":"Mater & The Ghostlight", "collectionCensoredName":null, "trackCensoredName":"Mater & The Ghostlight", "artistViewUrl":"http://itunes.apple.com/us/studio/pixar/id81758682?uo=4", "collectionViewUrl":null, "trackViewUrl":"http://itunes.apple.com/us/movie/mater-the-ghostlight/id299568535?uo=4", "previewUrl":"http://a1569.v.phobos.apple.com/us/r1000/028/Video/e9/8f/de/mzm.quvryhiy..640x360.h264lc.d2.p.m4v", "artworkUrl30":"http://a2.mzstatic.com/us/r1000/032/Video/52/32/b6/mzi.whyxzcwz.30x30-50.jpg", "artworkUrl60":"http://a1.mzstatic.com/us/r1000/032/Video/52/32/b6/mzi.whyxzcwz.60x60-50.jpg", "artworkUrl100":"http://a1.mzstatic.com/us/r1000/032/Video/52/32/b6/mzi.whyxzcwz.100x100-75.jpg", "collectionPrice":1.99, "trackPrice":1.99, "releaseDate":"2007-11-06T08:00:00Z", "collectionExplicitness":"notExplicit", "trackExplicitness":"notExplicit", "discCount":null, "discNumber":null, "trackCount":null, "trackNumber":null, "trackTimeMillis":430430.0, "country":"USA", "currency":"USD", "primaryGenreName":"Short Films", "contentAdvisoryRating":null, "shortDescription":null, - "longDescription":"In the short film\u00a0Mater and the Ghostlight, appearing on the forthcoming release of Disney\u00d7Pixar's animated feature film\u00a0Cars, Mater - the rusty but trusty tow truck - spends the day playing scary pranks on the townsfolk of Radiator Springs. That night at Flo's V8 Caf\u00e9, Sheriff tells everyone about the legend of the Ghostlight, a mysterious blue light that haunts those very parts. As his friends head home, Mater is left alone in the dark to ponder whether the legend of the fabled Ghostlight is true."}, - {"wrapperType":"track", "kind":"feature-movie", "artistId":81758682, "collectionId":null, "trackId":299553177, "artistName":"Pixar", "collectionName":null, "trackName":"Mike's New Car", "collectionCensoredName":null, "trackCensoredName":"Mike's New Car", "artistViewUrl":"http://itunes.apple.com/us/studio/pixar/id81758682?uo=4", "collectionViewUrl":null, "trackViewUrl":"http://itunes.apple.com/us/movie/mikes-new-car/id299553177?uo=4", "previewUrl":"http://a1663.v.phobos.apple.com/us/r1000/057/Video/fa/f6/68/mzm.zowmkldb..640x480.h264lc.d2.p.m4v", "artworkUrl30":"http://a2.mzstatic.com/us/r1000/051/Video/f0/44/45/mzi.krgtoakq.30x30-50.jpg", "artworkUrl60":"http://a4.mzstatic.com/us/r1000/051/Video/f0/44/45/mzi.krgtoakq.60x60-50.jpg", "artworkUrl100":"http://a4.mzstatic.com/us/r1000/051/Video/f0/44/45/mzi.krgtoakq.100x100-75.jpg", "collectionPrice":1.99, "trackPrice":1.99, "releaseDate":"2007-11-06T08:00:00Z", "collectionExplicitness":"notExplicit", "trackExplicitness":"notExplicit", "discCount":null, "discNumber":null, "trackCount":null, "trackNumber":null, "trackTimeMillis":229895.0, "country":"USA", "currency":"USD", "primaryGenreName":"Short Films", "contentAdvisoryRating":null, "shortDescription":null, - "longDescription":"Mike discovers that being the top-ranking laugh collector at Monsters, Inc. has its benefits, such as earning enough money to buy a six-wheel drive car that's loaded with gadgets.\u00a0That new car smell doesn't last long enough, however, as Sulley jump-starts an ill-fated road test that teaches Mike the true meaning of buyer's remorse. Since ending the energy crisis in Monstropolis, this pair can still get into quite a predicament. Mike's pride in his new wheels is only surpassed by Sulley's lack of skills at the control panel. The two eventually agree on one thing: walking to work might be the best, at least today. Director Pete Docter came up with the idea for Mike's New Car long before directing Monsters, Inc. When the opportunity arose to create a short film featuring Mike and Sulley, Docter dusted off his shelved idea, put Mike in the driver's seat, and added some classic Laurel and Hardy moments to create a curbside comedy that puts the pedal to the metal."}, - {"wrapperType":"track", "kind":"feature-movie", "artistId":81758682, "collectionId":null, "trackId":299555824, "artistName":"Pixar", "collectionName":null, "trackName":"Your Friend the Rat", "collectionCensoredName":null, "trackCensoredName":"Your Friend the Rat", "artistViewUrl":"http://itunes.apple.com/us/studio/pixar/id81758682?uo=4", "collectionViewUrl":null, "trackViewUrl":"http://itunes.apple.com/us/movie/your-friend-the-rat/id299555824?uo=4", "previewUrl":"http://a136.v.phobos.apple.com/us/r1000/007/Video/d6/10/24/mzm.yvbxbxjv..640x360.h264lc.d2.p.m4v", "artworkUrl30":"http://a1.mzstatic.com/us/r1000/032/Video/b7/b5/8e/mzi.wuygkuzg.30x30-50.jpg", "artworkUrl60":"http://a3.mzstatic.com/us/r1000/032/Video/b7/b5/8e/mzi.wuygkuzg.60x60-50.jpg", "artworkUrl100":"http://a5.mzstatic.com/us/r1000/032/Video/b7/b5/8e/mzi.wuygkuzg.100x100-75.jpg", "collectionPrice":1.99, "trackPrice":1.99, "releaseDate":"2007-11-06T08:00:00Z", "collectionExplicitness":"notExplicit", "trackExplicitness":"notExplicit", "discCount":null, "discNumber":null, "trackCount":null, "trackNumber":null, "trackTimeMillis":676843.0, "country":"USA", "currency":"USD", "primaryGenreName":"Short Films", "contentAdvisoryRating":null, "shortDescription":null, - "longDescription":"An animated tongue-in-cheek documentary presented by Remy and Emile to state their case as to why humans and rats should just get along. Remy starts off as our guide through the history man and rat have shared. Emile then provides us with a lot of fun rat facts to help the viewer better appreciate the rat. The two pull out all the stops and end with a song describing a rat and human utopia."}, - {"wrapperType":"track", "kind":"feature-movie", "artistId":81758682, "collectionId":null, "trackId":299556204, "artistName":"Pixar", "collectionName":null, "trackName":"The Adventures of Andr\u00e9 & Wally B.", "collectionCensoredName":null, "trackCensoredName":"The Adventures of Andr\u00e9 & Wally B.", "artistViewUrl":"http://itunes.apple.com/us/studio/pixar/id81758682?uo=4", "collectionViewUrl":null, "trackViewUrl":"http://itunes.apple.com/us/movie/the-adventures-andre-wally/id299556204?uo=4", "previewUrl":"http://a1719.v.phobos.apple.com/us/r1000/046/Video/25/17/bb/mzm.srakbbha..640x480.h264lc.d2.p.m4v", "artworkUrl30":"http://a5.mzstatic.com/us/r1000/013/Video/57/d3/d4/mzi.cdodecfu.30x30-50.jpg", "artworkUrl60":"http://a2.mzstatic.com/us/r1000/013/Video/57/d3/d4/mzi.cdodecfu.60x60-50.jpg", "artworkUrl100":"http://a1.mzstatic.com/us/r1000/013/Video/57/d3/d4/mzi.cdodecfu.100x100-75.jpg", "collectionPrice":1.99, "trackPrice":1.99, "releaseDate":"2007-11-06T08:00:00Z", "collectionExplicitness":"notExplicit", "trackExplicitness":"notExplicit", "discCount":null, "discNumber":null, "trackCount":null, "trackNumber":null, "trackTimeMillis":112986.0, "country":"USA", "currency":"USD", "primaryGenreName":"Short Films", "contentAdvisoryRating":null, "shortDescription":null, - "longDescription":"There's nothing like a restful nap in a pleasant wooded valley. But when Andre awakens and is greeted by a pesky yellow and black striped insect with a nasty stinger, he ends up taking a quick - and painful - hike.\u00a0Andre thinks he's a clever guy, able to outsmart and outrun a bee. But like all stinging insects, Wally B. knows better and can chase down any target in a matter of seconds. Though this film was produced at Lucasfilm Ltd., it was the first time John Lasseter worked on a 3D animated film. Andre and Wally B. was very restrictive - only geometric shapes could be animated - but Lasseter pushed the envelope by asking the technical team for a tear-dropped shape that could be bent several ways."}] - } - - - http_version: "1.1" -- !ruby/struct:VCR::HTTPInteraction - request: !ruby/struct:VCR::Request - method: :get - uri: http://ax.itunes.apple.com:80/WebObjects/MZStoreServices.woa/wa/wsSearch?media=tvShow&term=Lost - body: - headers: - accept: - - application/json - user-agent: - - ITunes Ruby Gem 0.4.1 - response: !ruby/struct:VCR::Response - status: !ruby/struct:VCR::ResponseStatus - code: 200 - message: OK - headers: - x-apple-orig-url-path: - - /WebObjects/MZStoreServices.woa/wa/wsSearch?term=Lost&media=tvShow - x-webobjects-loadaverage: - - "0" - x-apple-application-site: - - NWK - expires: - - Mon, 30 May 2011 02:37:13 GMT - x-apple-partner: - - origin.0 - connection: - - Transfer-Encoding - content-type: - - text/javascript; charset=utf-8 - date: - - Mon, 30 May 2011 02:37:13 GMT - x-apple-max-age: - - "3600" - x-apple-woa-inbound-url: - - /WebObjects/MZStoreServices.woa/wa/wsSearch?term=Lost&media=tvShow - x-apple-application-instance: - - "1010002" - cache-control: - - max-age=0, no-cache - vary: - - X-Apple-Store-Front - pragma: - - no-cache - transfer-encoding: - - chunked - body: |+ - - - - { - "resultCount":50, - "results": [ - {"wrapperType":"track", "kind":"tv-episode", "artistId":66012553, "collectionId":82050675, "trackId":81947350, "artistName":"LOST", "collectionName":"LOST, Season 2", "trackName":"Man of Science, Man of Faith", "collectionCensoredName":"LOST, Season 2", "trackCensoredName":"Man of Science, Man of Faith", "artistViewUrl":"http://itunes.apple.com/us/tv-show/lost/id66012553?uo=4", "collectionViewUrl":"http://itunes.apple.com/us/tv-season/man-of-science-man-of-faith/id82050675?i=81947350&uo=4", "trackViewUrl":"http://itunes.apple.com/us/tv-season/man-of-science-man-of-faith/id82050675?i=81947350&uo=4", "previewUrl":"http://a1078.v.phobos.apple.com/us/r1000/018/Video/a7/db/23/mzm.iqosfrrt..640x480.h264lc.d2.p.m4v", "artworkUrl30":"http://a1.mzstatic.com/us/r1000/059/Music/0c/1a/a2/mzi.hxpsjqiz.40x30-75.jpg", "artworkUrl60":"http://a4.mzstatic.com/us/r1000/059/Music/0c/1a/a2/mzi.hxpsjqiz.80x60-75.jpg", "artworkUrl100":"http://a3.mzstatic.com/us/r1000/059/Music/0c/1a/a2/mzi.hxpsjqiz.100x100-75.jpg", "collectionPrice":-1.00, "trackPrice":1.99, "releaseDate":"2005-09-21T07:00:00Z", "collectionExplicitness":"notExplicit", "trackExplicitness":"notExplicit", "discCount":1, "discNumber":1, "trackCount":24, "trackNumber":1, "trackTimeMillis":2607750.0, "country":"USA", "currency":"USD", "primaryGenreName":"Drama", "contentAdvisoryRating":"TV-14", - "shortDescription":"In the season premiere episode, \"Man of Science, Man of Faith,\" one of the castaways is chosen to descend into the mysterious hatch, and Shannon stumbles upon a shockingly familiar face in the jungle.", - "longDescription":"In the season premiere episode, \"Man of Science, Man of Faith,\" one of the castaways is chosen to descend into the mysterious hatch, and Shannon stumbles upon a shockingly familiar face in the jungle. The band of friends, family, enemies, and strangers must continue to work together against the cruel weather and harsh terrain if they want to stay alive. But, as they have discovered during their 40-plus days on the island, danger and mystery loom behind every corner, and those they thought could be trusted may turn against them. Even heroes have secrets."}, - {"wrapperType":"track", "kind":"tv-episode", "artistId":66012553, "collectionId":200507719, "trackId":196354978, "artistName":"LOST", "collectionName":"LOST, Season 3", "trackName":"A Tale of Two Cities", "collectionCensoredName":"LOST, Season 3", "trackCensoredName":"A Tale of Two Cities", "artistViewUrl":"http://itunes.apple.com/us/tv-show/lost/id66012553?uo=4", "collectionViewUrl":"http://itunes.apple.com/us/tv-season/a-tale-of-two-cities/id200507719?i=196354978&uo=4", "trackViewUrl":"http://itunes.apple.com/us/tv-season/a-tale-of-two-cities/id200507719?i=196354978&uo=4", "previewUrl":"http://a1320.v.phobos.apple.com/us/r1000/024/Video/2f/74/f6/mzm.lulvwuqk..640x480.h264lc.d2.p.m4v", "artworkUrl30":"http://a3.mzstatic.com/us/r30/Video/e6/f5/54/mzl.xrciclpo.40x30-75.jpg", "artworkUrl60":"http://a4.mzstatic.com/us/r30/Video/e6/f5/54/mzl.xrciclpo.80x60-75.jpg", "artworkUrl100":"http://a1.mzstatic.com/us/r30/Video/e6/f5/54/mzl.xrciclpo.100x100-75.jpg", "collectionPrice":34.99, "trackPrice":1.99, "releaseDate":"2006-10-04T07:00:00Z", "collectionExplicitness":"notExplicit", "trackExplicitness":"notExplicit", "discCount":1, "discNumber":1, "trackCount":23, "trackNumber":1, "trackTimeMillis":2606541.0, "country":"USA", "currency":"USD", "primaryGenreName":"Drama", "contentAdvisoryRating":"TV-14", - "shortDescription":"In the season premiere episode, \"A Tale of Two Cities,\" Jack, Kate and Sawyer begin to discover what they are up against as prisoners of \"The Others.\"", - "longDescription":"In the season premiere episode, \"A Tale of Two Cities,\" Jack, Kate and Sawyer begin to discover what they are up against as prisoners of \"The Others.\""}, - {"wrapperType":"track", "kind":"tv-episode", "artistId":66012553, "collectionId":200507719, "trackId":201576443, "artistName":"LOST", "collectionName":"LOST, Season 3", "trackName":"The Glass Ballerina", "collectionCensoredName":"LOST, Season 3", "trackCensoredName":"The Glass Ballerina", "artistViewUrl":"http://itunes.apple.com/us/tv-show/lost/id66012553?uo=4", "collectionViewUrl":"http://itunes.apple.com/us/tv-season/the-glass-ballerina/id200507719?i=201576443&uo=4", "trackViewUrl":"http://itunes.apple.com/us/tv-season/the-glass-ballerina/id200507719?i=201576443&uo=4", "previewUrl":"http://a195.v.phobos.apple.com/us/r1000/057/Video/cf/bc/70/mzm.busyjshz..640x480.h264lc.d2.p.m4v", "artworkUrl30":"http://a3.mzstatic.com/us/r30/Video/e6/f5/54/mzl.xrciclpo.40x30-75.jpg", "artworkUrl60":"http://a4.mzstatic.com/us/r30/Video/e6/f5/54/mzl.xrciclpo.80x60-75.jpg", "artworkUrl100":"http://a1.mzstatic.com/us/r30/Video/e6/f5/54/mzl.xrciclpo.100x100-75.jpg", "collectionPrice":34.99, "trackPrice":1.99, "releaseDate":"2006-10-11T07:00:00Z", "collectionExplicitness":"notExplicit", "trackExplicitness":"notExplicit", "discCount":1, "discNumber":1, "trackCount":23, "trackNumber":2, "trackTimeMillis":2607765.0, "country":"USA", "currency":"USD", "primaryGenreName":"Drama", "contentAdvisoryRating":"TV-14", - "shortDescription":"Sayid's plan to locate Jack places Sun and Jin's lives in grave danger. Meanwhile, Kate and Sawyer are forced to work in harsh conditions by their captors, and Henry makes a very tempting offer to Jack that may prove difficult to refuse.", - "longDescription":"Sayid's plan to locate Jack places Sun and Jin's lives in grave danger. Meanwhile, Kate and Sawyer are forced to work in harsh conditions by their captors, and Henry makes a very tempting offer to Jack that may prove difficult to refuse."}, - {"wrapperType":"track", "kind":"tv-episode", "artistId":66012553, "collectionId":82050675, "trackId":81947353, "artistName":"LOST", "collectionName":"LOST, Season 2", "trackName":"Adrift", "collectionCensoredName":"LOST, Season 2", "trackCensoredName":"Adrift", "artistViewUrl":"http://itunes.apple.com/us/tv-show/lost/id66012553?uo=4", "collectionViewUrl":"http://itunes.apple.com/us/tv-season/adrift/id82050675?i=81947353&uo=4", "trackViewUrl":"http://itunes.apple.com/us/tv-season/adrift/id82050675?i=81947353&uo=4", "previewUrl":"http://a766.v.phobos.apple.com/us/r1000/037/Video/5a/e1/63/mzm.lmfflxkg..640x480.h264lc.d2.p.m4v", "artworkUrl30":"http://a1.mzstatic.com/us/r1000/018/Music/0c/1a/a2/mzi.xgfstyqw.40x30-75.jpg", "artworkUrl60":"http://a2.mzstatic.com/us/r1000/018/Music/0c/1a/a2/mzi.xgfstyqw.80x60-75.jpg", "artworkUrl100":"http://a4.mzstatic.com/us/r1000/018/Music/0c/1a/a2/mzi.xgfstyqw.100x100-75.jpg", "collectionPrice":-1.00, "trackPrice":1.99, "releaseDate":"2005-09-28T07:00:00Z", "collectionExplicitness":"notExplicit", "trackExplicitness":"notExplicit", "discCount":1, "discNumber":1, "trackCount":24, "trackNumber":2, "trackTimeMillis":2547588.0, "country":"USA", "currency":"USD", "primaryGenreName":"Drama", "contentAdvisoryRating":"TV-14", - "shortDescription":"With the abduction of Walt fresh on their minds and their raft destroyed, Michael, Sawyer, and Jin fight for their lives and discover a new predator in the roiling ocean.", - "longDescription":"With the abduction of Walt fresh on their minds and their raft destroyed, Michael, Sawyer, and Jin fight for their lives and discover a new predator in the roiling ocean. Meanwhile on land, Locke must descend into the hatch when one castaway goes missing inside. Jolene Blalock guest stars."}, - {"wrapperType":"track", "kind":"tv-episode", "artistId":66012553, "collectionId":82050675, "trackId":95691988, "artistName":"LOST", "collectionName":"LOST, Season 2", "trackName":"What Kate Did", "collectionCensoredName":"LOST, Season 2", "trackCensoredName":"What Kate Did", "artistViewUrl":"http://itunes.apple.com/us/tv-show/lost/id66012553?uo=4", "collectionViewUrl":"http://itunes.apple.com/us/tv-season/what-kate-did/id82050675?i=95691988&uo=4", "trackViewUrl":"http://itunes.apple.com/us/tv-season/what-kate-did/id82050675?i=95691988&uo=4", "previewUrl":"http://a1308.v.phobos.apple.com/us/r1000/004/Video/f0/bd/54/mzm.zfutadkr..640x480.h264lc.d2.p.m4v", "artworkUrl30":"http://a3.mzstatic.com/us/r1000/043/Music/0c/1a/a2/mzi.swtkyhen.40x30-75.jpg", "artworkUrl60":"http://a1.mzstatic.com/us/r1000/043/Music/0c/1a/a2/mzi.swtkyhen.80x60-75.jpg", "artworkUrl100":"http://a5.mzstatic.com/us/r1000/043/Music/0c/1a/a2/mzi.swtkyhen.100x100-75.jpg", "collectionPrice":-1.00, "trackPrice":1.99, "releaseDate":"2005-11-30T08:00:00Z", "collectionExplicitness":"notExplicit", "trackExplicitness":"notExplicit", "discCount":1, "discNumber":1, "trackCount":24, "trackNumber":9, "trackTimeMillis":2752793.0, "country":"USA", "currency":"USD", "primaryGenreName":"Drama", "contentAdvisoryRating":"TV-14", "shortDescription":"Kate's original crime that started her life on the run is revealed.", - "longDescription":"Kate's original crime that started her life on the run is revealed. Meanwhile, the survivors lay one of their own to rest, Kate sleeplessly watches over a feverish Sawyer, and Mr. Eko has a surprise for Locke regarding the hatch."}, - {"wrapperType":"track", "kind":"tv-episode", "artistId":66012553, "collectionId":82050675, "trackId":118430749, "artistName":"LOST", "collectionName":"LOST, Season 2", "trackName":"The Hunting Party", "collectionCensoredName":"LOST, Season 2", "trackCensoredName":"The Hunting Party", "artistViewUrl":"http://itunes.apple.com/us/tv-show/lost/id66012553?uo=4", "collectionViewUrl":"http://itunes.apple.com/us/tv-season/the-hunting-party/id82050675?i=118430749&uo=4", "trackViewUrl":"http://itunes.apple.com/us/tv-season/the-hunting-party/id82050675?i=118430749&uo=4", "previewUrl":"http://a1183.v.phobos.apple.com/us/r1000/039/Video/c3/cd/9f/mzm.nqkqcdhs..640x480.h264lc.d2.p.m4v", "artworkUrl30":"http://a2.mzstatic.com/us/r1000/023/Music/0c/1a/a2/mzi.kpcqopam.40x30-75.jpg", "artworkUrl60":"http://a5.mzstatic.com/us/r1000/023/Music/0c/1a/a2/mzi.kpcqopam.80x60-75.jpg", "artworkUrl100":"http://a5.mzstatic.com/us/r1000/023/Music/0c/1a/a2/mzi.kpcqopam.100x100-75.jpg", "collectionPrice":-1.00, "trackPrice":1.99, "releaseDate":"2006-01-18T08:00:00Z", "collectionExplicitness":"notExplicit", "trackExplicitness":"notExplicit", "discCount":1, "discNumber":1, "trackCount":24, "trackNumber":11, "trackTimeMillis":2592966.0, "country":"USA", "currency":"USD", "primaryGenreName":"Drama", "contentAdvisoryRating":"TV-PG", "shortDescription":"Jack, Locke and Sawyer pursue a determined Michael after he heads into the jungle toward the dreaded \"Others\" in search of Walt.", - "longDescription":"Jack, Locke and Sawyer pursue a determined Michael after he heads into the jungle toward the dreaded \"Others\" in search of Walt. Meanwhile, Sun has a surprising reaction to Jin's desire to join the search party, and Hurley and Charlie commiserate over the age-old conundrum of \"what women want\"."}, - {"wrapperType":"track", "kind":"tv-episode", "artistId":66012553, "collectionId":82050675, "trackId":82229755, "artistName":"LOST", "collectionName":"LOST, Season 2", "trackName":"Orientation", "collectionCensoredName":"LOST, Season 2", "trackCensoredName":"Orientation", "artistViewUrl":"http://itunes.apple.com/us/tv-show/lost/id66012553?uo=4", "collectionViewUrl":"http://itunes.apple.com/us/tv-season/orientation/id82050675?i=82229755&uo=4", "trackViewUrl":"http://itunes.apple.com/us/tv-season/orientation/id82050675?i=82229755&uo=4", "previewUrl":"http://a1655.v.phobos.apple.com/us/r1000/000/Video/9c/df/dc/mzm.tiyjckrb..640x480.h264lc.d2.p.m4v", "artworkUrl30":"http://a5.mzstatic.com/us/r1000/013/Music/0c/1a/a2/mzi.lzpmvtic.40x30-75.jpg", "artworkUrl60":"http://a3.mzstatic.com/us/r1000/013/Music/0c/1a/a2/mzi.lzpmvtic.80x60-75.jpg", "artworkUrl100":"http://a5.mzstatic.com/us/r1000/013/Music/0c/1a/a2/mzi.lzpmvtic.100x100-75.jpg", "collectionPrice":-1.00, "trackPrice":1.99, "releaseDate":"2005-10-05T07:00:00Z", "collectionExplicitness":"notExplicit", "trackExplicitness":"notExplicit", "discCount":1, "discNumber":1, "trackCount":24, "trackNumber":3, "trackTimeMillis":2592633.0, "country":"USA", "currency":"USD", "primaryGenreName":"Drama", "contentAdvisoryRating":"TV-14", - "shortDescription":"Jack, Locke, and Kate learn more secrets about the hatch. Meanwhile, after being beaten and taken captive, Sawyer, Michael, and Jin wonder if their captors are fellow survivors or the dreaded \"Others.\"", - "longDescription":"Jack, Locke, and Kate learn more secrets about the hatch. Meanwhile, after being beaten and taken captive, Sawyer, Michael, and Jin wonder if their captors are fellow survivors or the dreaded \"Others.\""}, - {"wrapperType":"track", "kind":"tv-episode", "artistId":66012553, "collectionId":82050675, "trackId":129240376, "artistName":"LOST", "collectionName":"LOST, Season 2", "trackName":"Maternity Leave", "collectionCensoredName":"LOST, Season 2", "trackCensoredName":"Maternity Leave", "artistViewUrl":"http://itunes.apple.com/us/tv-show/lost/id66012553?uo=4", "collectionViewUrl":"http://itunes.apple.com/us/tv-season/maternity-leave/id82050675?i=129240376&uo=4", "trackViewUrl":"http://itunes.apple.com/us/tv-season/maternity-leave/id82050675?i=129240376&uo=4", "previewUrl":"http://a634.v.phobos.apple.com/us/r1000/053/Video/1a/73/3b/mzm.daetwrdv..640x480.h264lc.d2.p.m4v", "artworkUrl30":"http://a3.mzstatic.com/us/r1000/028/Music/0c/1a/a2/mzi.nthjgcdl.40x30-75.jpg", "artworkUrl60":"http://a1.mzstatic.com/us/r1000/028/Music/0c/1a/a2/mzi.nthjgcdl.80x60-75.jpg", "artworkUrl100":"http://a5.mzstatic.com/us/r1000/028/Music/0c/1a/a2/mzi.nthjgcdl.100x100-75.jpg", "collectionPrice":-1.00, "trackPrice":1.99, "releaseDate":"2006-03-01T08:00:00Z", "collectionExplicitness":"notExplicit", "trackExplicitness":"notExplicit", "discCount":1, "discNumber":1, "trackCount":24, "trackNumber":15, "trackTimeMillis":2766808.0, "country":"USA", "currency":"USD", "primaryGenreName":"Drama", "contentAdvisoryRating":"TV-14", - "shortDescription":"A desperate Claire, along with Kate and Rousseau, attempts a return to the scene of her kidnapping where she believes she might find the cure for Baby Aaron\u2019s mysterious illness.", - "longDescription":"A desperate Claire, along with Kate and Rousseau, attempts a return to the scene of her kidnapping where she believes she might find the cure for Baby Aaron's mysterious illness. Meanwhile, Jack and Locke must keep their prisoner a secret from the rest of the survivors"}, - {"wrapperType":"track", "kind":"tv-episode", "artistId":66012553, "collectionId":82050675, "trackId":125648552, "artistName":"LOST", "collectionName":"LOST, Season 2", "trackName":"One of Them", "collectionCensoredName":"LOST, Season 2", "trackCensoredName":"One of Them", "artistViewUrl":"http://itunes.apple.com/us/tv-show/lost/id66012553?uo=4", "collectionViewUrl":"http://itunes.apple.com/us/tv-season/one-of-them/id82050675?i=125648552&uo=4", "trackViewUrl":"http://itunes.apple.com/us/tv-season/one-of-them/id82050675?i=125648552&uo=4", "previewUrl":"http://a53.v.phobos.apple.com/us/r1000/051/Video/8a/14/31/mzm.cumfpsqd..640x480.h264lc.d2.p.m4v", "artworkUrl30":"http://a3.mzstatic.com/us/r1000/025/Features/a2/78/bf/dj.vkvpvhkw.40x30-75.jpg", "artworkUrl60":"http://a1.mzstatic.com/us/r1000/025/Features/a2/78/bf/dj.vkvpvhkw.80x60-75.jpg", "artworkUrl100":"http://a5.mzstatic.com/us/r1000/025/Features/a2/78/bf/dj.vkvpvhkw.100x100-75.jpg", "collectionPrice":-1.00, "trackPrice":1.99, "releaseDate":"2006-02-15T08:00:00Z", "collectionExplicitness":"notExplicit", "trackExplicitness":"notExplicit", "discCount":1, "discNumber":1, "trackCount":24, "trackNumber":14, "trackTimeMillis":2683808.0, "country":"USA", "currency":"USD", "primaryGenreName":"Drama", "contentAdvisoryRating":"TV-14", "shortDescription":"When Rousseau leads Sayid to a mysterious captive in the jungle, he becomes determined to find out if he is one of the \"Others.\"", - "longDescription":"When Rousseau leads Sayid to a mysterious captive in the jungle, he becomes determined to find out if he is one of the \"Others.\" Meanwhile, Sawyer discovers Hurley's potentially devastating breech of the survivors' trust and blackmails him into helping track an elusive island creature that won't leave Sawyer alone."}, - {"wrapperType":"track", "kind":"tv-episode", "artistId":66012553, "collectionId":82050675, "trackId":152461938, "artistName":"LOST", "collectionName":"LOST, Season 2", "trackName":"Live Together, Die Alone, Pt. 2", "collectionCensoredName":"LOST, Season 2", "trackCensoredName":"Live Together, Die Alone, Pt. 2", "artistViewUrl":"http://itunes.apple.com/us/tv-show/lost/id66012553?uo=4", "collectionViewUrl":"http://itunes.apple.com/us/tv-season/live-together-die-alone-pt-2/id82050675?i=152461938&uo=4", "trackViewUrl":"http://itunes.apple.com/us/tv-season/live-together-die-alone-pt-2/id82050675?i=152461938&uo=4", "previewUrl":"http://a1875.v.phobos.apple.com/us/r1000/028/Video/42/46/48/mzm.nxqxmnna..640x480.h264lc.d2.p.m4v", "artworkUrl30":"http://a3.mzstatic.com/us/r1000/015/Features/0c/1a/a2/dj.shywrpgj.40x30-75.jpg", "artworkUrl60":"http://a1.mzstatic.com/us/r1000/015/Features/0c/1a/a2/dj.shywrpgj.80x60-75.jpg", "artworkUrl100":"http://a1.mzstatic.com/us/r1000/015/Features/0c/1a/a2/dj.shywrpgj.100x100-75.jpg", "collectionPrice":-1.00, "trackPrice":1.99, "releaseDate":"2006-05-24T07:00:00Z", "collectionExplicitness":"notExplicit", "trackExplicitness":"notExplicit", "discCount":1, "discNumber":1, "trackCount":24, "trackNumber":24, "trackTimeMillis":2598640.0, "country":"USA", "currency":"USD", "primaryGenreName":"Drama", "contentAdvisoryRating":"TV-14", - "shortDescription":"After discovering something odd just offshore, Jack and Sayid\u00a0come up with a plan to\u00a0confront\u00a0\"The Others\"\u00a0and hopefully get Walt back. Meanwhile,\u00a0Eko and Locke come to blows as Locke makes a\u00a0potentially cataclysmic\u00a0decision regarding the \"button\" and the hatch, on the season finale.", - "longDescription":"After discovering something odd just offshore, Jack and Sayid\u00a0come up with a plan to\u00a0confront\u00a0\"The Others\"\u00a0and hopefully get Walt back. Meanwhile,\u00a0Eko and Locke come to blows as Locke makes a\u00a0potentially cataclysmic\u00a0decision regarding the \"button\" and the hatch, on the season finale."}, - {"wrapperType":"track", "kind":"tv-episode", "artistId":66012553, "collectionId":200507719, "trackId":200749249, "artistName":"LOST", "collectionName":"LOST, Season 3", "trackName":"Further Instructions", "collectionCensoredName":"LOST, Season 3", "trackCensoredName":"Further Instructions", "artistViewUrl":"http://itunes.apple.com/us/tv-show/lost/id66012553?uo=4", "collectionViewUrl":"http://itunes.apple.com/us/tv-season/further-instructions/id200507719?i=200749249&uo=4", "trackViewUrl":"http://itunes.apple.com/us/tv-season/further-instructions/id200507719?i=200749249&uo=4", "previewUrl":"http://a1529.v.phobos.apple.com/us/r1000/028/Video/4c/9b/2b/mzm.vyjuvlpq..640x480.h264lc.d2.p.m4v", "artworkUrl30":"http://a3.mzstatic.com/us/r30/Video/e6/f5/54/mzl.xrciclpo.40x30-75.jpg", "artworkUrl60":"http://a4.mzstatic.com/us/r30/Video/e6/f5/54/mzl.xrciclpo.80x60-75.jpg", "artworkUrl100":"http://a1.mzstatic.com/us/r30/Video/e6/f5/54/mzl.xrciclpo.100x100-75.jpg", "collectionPrice":34.99, "trackPrice":1.99, "releaseDate":"2006-10-18T07:00:00Z", "collectionExplicitness":"notExplicit", "trackExplicitness":"notExplicit", "discCount":1, "discNumber":1, "trackCount":23, "trackNumber":3, "trackTimeMillis":2534046.0, "country":"USA", "currency":"USD", "primaryGenreName":"Drama", "contentAdvisoryRating":"TV-14", - "shortDescription":"The fates of Locke, Eko and Desmond are revealed after the implosion of the hatch, while\u00a0Hurley returns to\u00a0the beach camp to tell\u00a0the\u00a0tale of\u00a0what happened when he, Jack, Kate and Sawyer encountered \"The Others.\" Meanwhile, Claire is shocked to find Nikki and Paulo in Jack's tent.", - "longDescription":"The fates of Locke, Eko and Desmond are revealed after the implosion of the hatch, while\u00a0Hurley returns to\u00a0the beach camp to tell\u00a0the\u00a0tale of\u00a0what happened when he, Jack, Kate and Sawyer encountered \"The Others.\" Meanwhile, Claire is shocked to find Nikki and Paulo in Jack's tent."}, - {"wrapperType":"track", "kind":"tv-episode", "artistId":66012553, "collectionId":82050675, "trackId":122580239, "artistName":"LOST", "collectionName":"LOST, Season 2", "trackName":"The Long Con", "collectionCensoredName":"LOST, Season 2", "trackCensoredName":"The Long Con", "artistViewUrl":"http://itunes.apple.com/us/tv-show/lost/id66012553?uo=4", "collectionViewUrl":"http://itunes.apple.com/us/tv-season/the-long-con/id82050675?i=122580239&uo=4", "trackViewUrl":"http://itunes.apple.com/us/tv-season/the-long-con/id82050675?i=122580239&uo=4", "previewUrl":"http://a893.v.phobos.apple.com/us/r1000/058/Video/8b/69/ba/mzm.bruiikxv..640x480.h264lc.d2.p.m4v", "artworkUrl30":"http://a2.mzstatic.com/us/r1000/007/Music/0c/1a/a2/mzi.sparrfol.40x30-75.jpg", "artworkUrl60":"http://a3.mzstatic.com/us/r1000/007/Music/0c/1a/a2/mzi.sparrfol.80x60-75.jpg", "artworkUrl100":"http://a5.mzstatic.com/us/r1000/007/Music/0c/1a/a2/mzi.sparrfol.100x100-75.jpg", "collectionPrice":-1.00, "trackPrice":1.99, "releaseDate":"2006-02-08T08:00:00Z", "collectionExplicitness":"notExplicit", "trackExplicitness":"notExplicit", "discCount":1, "discNumber":1, "trackCount":24, "trackNumber":13, "trackTimeMillis":2663830.0, "country":"USA", "currency":"USD", "primaryGenreName":"Drama", "contentAdvisoryRating":"TV-14", - "shortDescription":"Survivors fear that \"The Others\" may have returned when Sun is injured during a failed kidnapping attempt. Meanwhile, Sawyer is an amused but highly interested bystander when tension escalates between Jack, Locke, Kate and Ana Lucia, on \"Lost.\"", - "longDescription":"Survivors fear that \"The Others\" may have returned when Sun is injured during a failed kidnapping attempt. Meanwhile, Sawyer is an amused but highly interested bystander when tension escalates between Jack, Locke, Kate and Ana Lucia, on \"Lost.\""}, - {"wrapperType":"track", "kind":"tv-episode", "artistId":66012553, "collectionId":82050675, "trackId":95691986, "artistName":"LOST", "collectionName":"LOST, Season 2", "trackName":"Collision", "collectionCensoredName":"LOST, Season 2", "trackCensoredName":"Collision", "artistViewUrl":"http://itunes.apple.com/us/tv-show/lost/id66012553?uo=4", "collectionViewUrl":"http://itunes.apple.com/us/tv-season/collision/id82050675?i=95691986&uo=4", "trackViewUrl":"http://itunes.apple.com/us/tv-season/collision/id82050675?i=95691986&uo=4", "previewUrl":"http://a53.v.phobos.apple.com/us/r1000/018/Video/e1/70/cf/mzm.iwshpcce..640x480.h264lc.d2.p.m4v", "artworkUrl30":"http://a4.mzstatic.com/us/r1000/024/Music/0c/1a/a2/mzi.rluuquqr.40x30-75.jpg", "artworkUrl60":"http://a2.mzstatic.com/us/r1000/024/Music/0c/1a/a2/mzi.rluuquqr.80x60-75.jpg", "artworkUrl100":"http://a4.mzstatic.com/us/r1000/024/Music/0c/1a/a2/mzi.rluuquqr.100x100-75.jpg", "collectionPrice":-1.00, "trackPrice":1.99, "releaseDate":"2005-11-23T08:00:00Z", "collectionExplicitness":"notExplicit", "trackExplicitness":"notExplicit", "discCount":1, "discNumber":1, "trackCount":24, "trackNumber":8, "trackTimeMillis":2548340.0, "country":"USA", "currency":"USD", "primaryGenreName":"Drama", "contentAdvisoryRating":"TV-14", "shortDescription":"Tempers flare when Ana Lucia and her group stumble upon Sayid and the other castaways.", "longDescription":"Tempers flare when Ana Lucia and her group stumble upon Sayid and the other castaways."}, - {"wrapperType":"track", "kind":"tv-episode", "artistId":66012553, "collectionId":82050675, "trackId":135645891, "artistName":"LOST", "collectionName":"LOST, Season 2", "trackName":"Dave", "collectionCensoredName":"LOST, Season 2", "trackCensoredName":"Dave", "artistViewUrl":"http://itunes.apple.com/us/tv-show/lost/id66012553?uo=4", "collectionViewUrl":"http://itunes.apple.com/us/tv-season/dave/id82050675?i=135645891&uo=4", "trackViewUrl":"http://itunes.apple.com/us/tv-season/dave/id82050675?i=135645891&uo=4", "previewUrl":"http://a1399.v.phobos.apple.com/us/r1000/037/Video/0d/1b/e9/mzm.uwxztqgp..640x480.h264lc.d2.p.m4v", "artworkUrl30":"http://a3.mzstatic.com/us/r1000/015/Features/0c/1a/a2/dj.shywrpgj.40x30-75.jpg", "artworkUrl60":"http://a1.mzstatic.com/us/r1000/015/Features/0c/1a/a2/dj.shywrpgj.80x60-75.jpg", "artworkUrl100":"http://a1.mzstatic.com/us/r1000/015/Features/0c/1a/a2/dj.shywrpgj.100x100-75.jpg", "collectionPrice":-1.00, "trackPrice":1.99, "releaseDate":"2006-04-05T07:00:00Z", "collectionExplicitness":"notExplicit", "trackExplicitness":"notExplicit", "discCount":1, "discNumber":1, "trackCount":24, "trackNumber":18, "trackTimeMillis":2779820.0, "country":"USA", "currency":"USD", "primaryGenreName":"Drama", "contentAdvisoryRating":"TV-14", - "shortDescription":"Libby lends Hurley support when he begins to think the island is having a strange effect on him, and Locke's sense of purpose is shaken when the prisoner provides new information about the hatch.", - "longDescription":"Libby lends Hurley support when he begins to think the island is having a strange effect on him, and Locke's sense of purpose is shaken when the prisoner provides new information about the hatch."}, - {"wrapperType":"track", "kind":"tv-episode", "artistId":66012553, "collectionId":82050675, "trackId":146691552, "artistName":"LOST", "collectionName":"LOST, Season 2", "trackName":"S.O.S.", "collectionCensoredName":"LOST, Season 2", "trackCensoredName":"S.O.S.", "artistViewUrl":"http://itunes.apple.com/us/tv-show/lost/id66012553?uo=4", "collectionViewUrl":"http://itunes.apple.com/us/tv-season/s-o-s/id82050675?i=146691552&uo=4", "trackViewUrl":"http://itunes.apple.com/us/tv-season/s-o-s/id82050675?i=146691552&uo=4", "previewUrl":"http://a367.v.phobos.apple.com/us/r1000/057/Video/95/b2/8a/mzm.kspaixtn..640x480.h264lc.d2.p.m4v", "artworkUrl30":"http://a3.mzstatic.com/us/r1000/015/Features/0c/1a/a2/dj.shywrpgj.40x30-75.jpg", "artworkUrl60":"http://a1.mzstatic.com/us/r1000/015/Features/0c/1a/a2/dj.shywrpgj.80x60-75.jpg", "artworkUrl100":"http://a1.mzstatic.com/us/r1000/015/Features/0c/1a/a2/dj.shywrpgj.100x100-75.jpg", "collectionPrice":-1.00, "trackPrice":1.99, "releaseDate":"2006-04-12T07:00:00Z", "collectionExplicitness":"notExplicit", "trackExplicitness":"notExplicit", "discCount":1, "discNumber":1, "trackCount":24, "trackNumber":19, "trackTimeMillis":2595636.0, "country":"USA", "currency":"USD", "primaryGenreName":"Drama", "contentAdvisoryRating":"TV-PG", - "shortDescription":"Rose is surprisingly and vehemently opposed to Bernard\u2019s plan to create an S.O.S. signal; romantic sparks are rekindled between Jack and Kate when they trek into the jungle to propose a \"trade\" with \"The Others\".", - "longDescription":"Rose is surprisingly and vehemently opposed to Bernard's plan to create an S.O.S. signal; romantic sparks are rekindled between Jack and Kate when they trek into the jungle to propose a \"trade\" with \"The Others\"; and Locke begins to question his faith in the island."}, - {"wrapperType":"track", "kind":"tv-episode", "artistId":66012553, "collectionId":82050675, "trackId":135645889, "artistName":"LOST", "collectionName":"LOST, Season 2", "trackName":"Lockdown", "collectionCensoredName":"LOST, Season 2", "trackCensoredName":"Lockdown", "artistViewUrl":"http://itunes.apple.com/us/tv-show/lost/id66012553?uo=4", "collectionViewUrl":"http://itunes.apple.com/us/tv-season/lockdown/id82050675?i=135645889&uo=4", "trackViewUrl":"http://itunes.apple.com/us/tv-season/lockdown/id82050675?i=135645889&uo=4", "previewUrl":"http://a551.v.phobos.apple.com/us/r1000/017/Video/41/24/52/mzm.hcsojnmk..640x480.h264lc.d2.p.m4v", "artworkUrl30":"http://a3.mzstatic.com/us/r1000/015/Features/0c/1a/a2/dj.shywrpgj.40x30-75.jpg", "artworkUrl60":"http://a1.mzstatic.com/us/r1000/015/Features/0c/1a/a2/dj.shywrpgj.80x60-75.jpg", "artworkUrl100":"http://a1.mzstatic.com/us/r1000/015/Features/0c/1a/a2/dj.shywrpgj.100x100-75.jpg", "collectionPrice":-1.00, "trackPrice":1.99, "releaseDate":"2006-03-29T08:00:00Z", "collectionExplicitness":"notExplicit", "trackExplicitness":"notExplicit", "discCount":1, "discNumber":1, "trackCount":24, "trackNumber":17, "trackTimeMillis":2595636.0, "country":"USA", "currency":"USD", "primaryGenreName":"Drama", "contentAdvisoryRating":"TV-PG", - "shortDescription":"When the hatch suddenly takes on a life of its own, Locke is forced to enlist the help of an unlikely ally. Meanwhile, Ana Lucia, Sayid and Charlie go off into the jungle to find out the truth about Henry.", - "longDescription":"When the hatch suddenly takes on a life of its own, Locke is forced to enlist the help of an unlikely ally. Meanwhile, Ana Lucia, Sayid and Charlie go off into the jungle to find out the truth about Henry."}, - {"wrapperType":"track", "kind":"tv-episode", "artistId":66012553, "collectionId":82050675, "trackId":115069169, "artistName":"LOST", "collectionName":"LOST, Season 2", "trackName":"The 23rd Psalm", "collectionCensoredName":"LOST, Season 2", "trackCensoredName":"The 23rd Psalm", "artistViewUrl":"http://itunes.apple.com/us/tv-show/lost/id66012553?uo=4", "collectionViewUrl":"http://itunes.apple.com/us/tv-season/the-23rd-psalm/id82050675?i=115069169&uo=4", "trackViewUrl":"http://itunes.apple.com/us/tv-season/the-23rd-psalm/id82050675?i=115069169&uo=4", "previewUrl":"http://a1913.v.phobos.apple.com/us/r1000/023/Video/08/21/f3/mzm.octunhmx..640x480.h264lc.d2.p.m4v", "artworkUrl30":"http://a3.mzstatic.com/us/r1000/025/Music/0c/1a/a2/mzi.vxmnvjnt.40x30-75.jpg", "artworkUrl60":"http://a1.mzstatic.com/us/r1000/025/Music/0c/1a/a2/mzi.vxmnvjnt.80x60-75.jpg", "artworkUrl100":"http://a2.mzstatic.com/us/r1000/025/Music/0c/1a/a2/mzi.vxmnvjnt.100x100-75.jpg", "collectionPrice":-1.00, "trackPrice":1.99, "releaseDate":"2006-01-11T08:00:00Z", "collectionExplicitness":"notExplicit", "trackExplicitness":"notExplicit", "discCount":1, "discNumber":1, "trackCount":24, "trackNumber":10, "trackTimeMillis":2595720.0, "country":"USA", "currency":"USD", "primaryGenreName":"Drama", "contentAdvisoryRating":"TV-14", - "shortDescription":"Mr. Eko interrogates Charlie about the Virgin Mary statue, Claire begins to lose faith in Charlie when she discovers his secret, and Jack is an interested observer when Kate gives the recovering Sawyer a much-needed haircut.", - "longDescription":"Mr. Eko interrogates Charlie about the Virgin Mary statue, Claire begins to lose faith in Charlie when she discovers his secret, and Jack is an interested observer when Kate gives the recovering Sawyer a much-needed haircut."}, - {"wrapperType":"track", "kind":"tv-episode", "artistId":66012553, "collectionId":82050675, "trackId":82680684, "artistName":"LOST", "collectionName":"LOST, Season 2", "trackName":"Everybody Hates Hugo", "collectionCensoredName":"LOST, Season 2", "trackCensoredName":"Everybody Hates Hugo", "artistViewUrl":"http://itunes.apple.com/us/tv-show/lost/id66012553?uo=4", "collectionViewUrl":"http://itunes.apple.com/us/tv-season/everybody-hates-hugo/id82050675?i=82680684&uo=4", "trackViewUrl":"http://itunes.apple.com/us/tv-season/everybody-hates-hugo/id82050675?i=82680684&uo=4", "previewUrl":"http://a539.v.phobos.apple.com/us/r1000/023/Video/0a/26/80/mzm.uokedxgf..640x480.h264lc.d2.p.m4v", "artworkUrl30":"http://a3.mzstatic.com/us/r1000/015/Features/0c/1a/a2/dj.shywrpgj.40x30-75.jpg", "artworkUrl60":"http://a1.mzstatic.com/us/r1000/015/Features/0c/1a/a2/dj.shywrpgj.80x60-75.jpg", "artworkUrl100":"http://a1.mzstatic.com/us/r1000/015/Features/0c/1a/a2/dj.shywrpgj.100x100-75.jpg", "collectionPrice":-1.00, "trackPrice":1.99, "releaseDate":"2005-10-12T07:00:00Z", "collectionExplicitness":"notExplicit", "trackExplicitness":"notExplicit", "discCount":1, "discNumber":1, "trackCount":24, "trackNumber":4, "trackTimeMillis":2605823.0, "country":"USA", "currency":"USD", "primaryGenreName":"Drama", "contentAdvisoryRating":"TV-14", "shortDescription":"Disturbing memories from Hurley\u2019s past cause him to struggle with a task he\u2019s assigned inside the hatch.", - "longDescription":"Disturbing memories from Hurley\u2019s past cause him to struggle with a task he\u2019s assigned inside the hatch. Meanwhile Sawyer, Michael and Jin discover the identities of their captors, and Claire uncovers a shocking piece of information about the fate of the raft."}, - {"wrapperType":"track", "kind":"tv-episode", "artistId":66012553, "collectionId":82050675, "trackId":83325441, "artistName":"LOST", "collectionName":"LOST, Season 2", "trackName":"...And Found", "collectionCensoredName":"LOST, Season 2", "trackCensoredName":"...And Found", "artistViewUrl":"http://itunes.apple.com/us/tv-show/lost/id66012553?uo=4", "collectionViewUrl":"http://itunes.apple.com/us/tv-season/and-found/id82050675?i=83325441&uo=4", "trackViewUrl":"http://itunes.apple.com/us/tv-season/and-found/id82050675?i=83325441&uo=4", "previewUrl":"http://a201.v.phobos.apple.com/us/r1000/019/Video/ac/d5/63/mzm.okeqnuso..640x480.h264lc.d2.p.m4v", "artworkUrl30":"http://a5.mzstatic.com/us/r1000/024/Music/0c/1a/a2/mzi.ncjjtqif.40x30-75.jpg", "artworkUrl60":"http://a3.mzstatic.com/us/r1000/024/Music/0c/1a/a2/mzi.ncjjtqif.80x60-75.jpg", "artworkUrl100":"http://a2.mzstatic.com/us/r1000/024/Music/0c/1a/a2/mzi.ncjjtqif.100x100-75.jpg", "collectionPrice":-1.00, "trackPrice":1.99, "releaseDate":"2005-10-19T07:00:00Z", "collectionExplicitness":"notExplicit", "trackExplicitness":"notExplicit", "discCount":1, "discNumber":1, "trackCount":24, "trackNumber":5, "trackTimeMillis":2545586.0, "country":"USA", "currency":"USD", "primaryGenreName":"Drama", "contentAdvisoryRating":"TV-PG", "shortDescription":"Michael sets off into the jungle by himself determined to find Walt, but discovers that he is not alone.", - "longDescription":"Michael sets off into the jungle by himself determined to find Walt, but discovers that he is not alone. Meanwhile, Sawyer and Jin are ordered by their captors to take them to their camp, and Sun frantically searches for her missing wedding ring."}, - {"wrapperType":"track", "kind":"tv-episode", "artistId":66012553, "collectionId":82050675, "trackId":156764015, "artistName":"LOST", "collectionName":"LOST, Season 2", "trackName":"Live Together, Die Alone, Pt. 1", "collectionCensoredName":"LOST, Season 2", "trackCensoredName":"Live Together, Die Alone, Pt. 1", "artistViewUrl":"http://itunes.apple.com/us/tv-show/lost/id66012553?uo=4", "collectionViewUrl":"http://itunes.apple.com/us/tv-season/live-together-die-alone-pt-1/id82050675?i=156764015&uo=4", "trackViewUrl":"http://itunes.apple.com/us/tv-season/live-together-die-alone-pt-1/id82050675?i=156764015&uo=4", "previewUrl":"http://a119.v.phobos.apple.com/us/r1000/002/Video/4c/9d/66/mzm.epqqcdur..640x480.h264lc.d2.p.m4v", "artworkUrl30":"http://a3.mzstatic.com/us/r1000/015/Features/0c/1a/a2/dj.shywrpgj.40x30-75.jpg", "artworkUrl60":"http://a1.mzstatic.com/us/r1000/015/Features/0c/1a/a2/dj.shywrpgj.80x60-75.jpg", "artworkUrl100":"http://a1.mzstatic.com/us/r1000/015/Features/0c/1a/a2/dj.shywrpgj.100x100-75.jpg", "collectionPrice":-1.00, "trackPrice":1.99, "releaseDate":"2006-05-24T07:00:00Z", "collectionExplicitness":"notExplicit", "trackExplicitness":"notExplicit", "discCount":1, "discNumber":1, "trackCount":24, "trackNumber":23, "trackTimeMillis":2596636.0, "country":"USA", "currency":"USD", "primaryGenreName":"Drama", "contentAdvisoryRating":"TV-14", - "shortDescription":"After discovering something odd just offshore, Jack and Sayid\u00a0come up with a plan to\u00a0confront\u00a0\"The Others\"\u00a0and hopefully get Walt back. Meanwhile,\u00a0Eko and Locke come to blows as Locke makes a\u00a0potentially cataclysmic\u00a0decision regarding the \"button\" and the hatch, on the season finale.", - "longDescription":"After discovering something odd just offshore, Jack and Sayid\u00a0come up with a plan to\u00a0confront\u00a0\"The Others\"\u00a0and hopefully get Walt back. Meanwhile,\u00a0Eko and Locke come to blows as Locke makes a\u00a0potentially cataclysmic\u00a0decision regarding the \"button\" and the hatch, on the season finale."}, - {"wrapperType":"track", "kind":"tv-episode", "artistId":66012553, "collectionId":82050675, "trackId":129860775, "artistName":"LOST", "collectionName":"LOST, Season 2", "trackName":"The Whole Truth", "collectionCensoredName":"LOST, Season 2", "trackCensoredName":"The Whole Truth", "artistViewUrl":"http://itunes.apple.com/us/tv-show/lost/id66012553?uo=4", "collectionViewUrl":"http://itunes.apple.com/us/tv-season/the-whole-truth/id82050675?i=129860775&uo=4", "trackViewUrl":"http://itunes.apple.com/us/tv-season/the-whole-truth/id82050675?i=129860775&uo=4", "previewUrl":"http://a316.v.phobos.apple.com/us/r1000/050/Video/c6/1d/bd/mzm.bdkcdzqz..640x480.h264lc.d2.p.m4v", "artworkUrl30":"http://a3.mzstatic.com/us/r1000/015/Features/0c/1a/a2/dj.shywrpgj.40x30-75.jpg", "artworkUrl60":"http://a1.mzstatic.com/us/r1000/015/Features/0c/1a/a2/dj.shywrpgj.80x60-75.jpg", "artworkUrl100":"http://a1.mzstatic.com/us/r1000/015/Features/0c/1a/a2/dj.shywrpgj.100x100-75.jpg", "collectionPrice":-1.00, "trackPrice":1.99, "releaseDate":"2006-03-22T08:00:00Z", "collectionExplicitness":"notExplicit", "trackExplicitness":"notExplicit", "discCount":1, "discNumber":1, "trackCount":24, "trackNumber":16, "trackTimeMillis":2610400.0, "country":"USA", "currency":"USD", "primaryGenreName":"Drama", "contentAdvisoryRating":"TV-PG", "shortDescription":"Sun wrestles with the thought of telling Jin a newfound secret that threatens to upset the entire balance of the survivors' community.", - "longDescription":"Sun wrestles with the thought of telling Jin a newfound secret that threatens to upset the entire balance of the survivors' community. Meanwhile, Locke enlists Ana Lucia to interrogate the prisoner in order to extract more information than he, Jack or Sayid could."}, - {"wrapperType":"track", "kind":"tv-episode", "artistId":66012553, "collectionId":82050675, "trackId":118430756, "artistName":"LOST", "collectionName":"LOST, Season 2", "trackName":"Fire + Water", "collectionCensoredName":"LOST, Season 2", "trackCensoredName":"Fire + Water", "artistViewUrl":"http://itunes.apple.com/us/tv-show/lost/id66012553?uo=4", "collectionViewUrl":"http://itunes.apple.com/us/tv-season/fire-water/id82050675?i=118430756&uo=4", "trackViewUrl":"http://itunes.apple.com/us/tv-season/fire-water/id82050675?i=118430756&uo=4", "previewUrl":"http://a1169.v.phobos.apple.com/us/r1000/056/Video/6d/cb/a5/mzm.edcwpewn..640x480.h264lc.d2.p.m4v", "artworkUrl30":"http://a3.mzstatic.com/us/r1000/034/Music/0c/1a/a2/mzi.zigrzjga.40x30-75.jpg", "artworkUrl60":"http://a1.mzstatic.com/us/r1000/034/Music/0c/1a/a2/mzi.zigrzjga.80x60-75.jpg", "artworkUrl100":"http://a1.mzstatic.com/us/r1000/034/Music/0c/1a/a2/mzi.zigrzjga.100x100-75.jpg", "collectionPrice":-1.00, "trackPrice":1.99, "releaseDate":"2006-01-25T08:00:00Z", "collectionExplicitness":"notExplicit", "trackExplicitness":"notExplicit", "discCount":1, "discNumber":1, "trackCount":24, "trackNumber":12, "trackTimeMillis":2599903.0, "country":"USA", "currency":"USD", "primaryGenreName":"Drama", "contentAdvisoryRating":"TV-PG", - "shortDescription":"When Charlie's vividly surreal dreams lead him to believe Claire's baby, Aaron, is in danger, Locke suspects Charlie may be using again. Meanwhile, Sawyer encourages Hurley to act on his attraction to Libby, on \"Lost.\"", - "longDescription":"When Charlie's vividly surreal dreams lead him to believe Claire's baby, Aaron, is in danger, Locke suspects Charlie may be using again. Meanwhile, Sawyer encourages Hurley to act on his attraction to Libby, on \"Lost.\""}, - {"wrapperType":"track", "kind":"tv-episode", "artistId":66012553, "collectionId":82050675, "trackId":150194795, "artistName":"LOST", "collectionName":"LOST, Season 2", "trackName":"Two for the Road", "collectionCensoredName":"LOST, Season 2", "trackCensoredName":"Two for the Road", "artistViewUrl":"http://itunes.apple.com/us/tv-show/lost/id66012553?uo=4", "collectionViewUrl":"http://itunes.apple.com/us/tv-season/two-for-the-road/id82050675?i=150194795&uo=4", "trackViewUrl":"http://itunes.apple.com/us/tv-season/two-for-the-road/id82050675?i=150194795&uo=4", "previewUrl":"http://a1038.v.phobos.apple.com/us/r1000/035/Video/40/5d/24/mzm.xldokyrr..640x480.h264lc.d2.p.m4v", "artworkUrl30":"http://a3.mzstatic.com/us/r1000/015/Features/0c/1a/a2/dj.shywrpgj.40x30-75.jpg", "artworkUrl60":"http://a1.mzstatic.com/us/r1000/015/Features/0c/1a/a2/dj.shywrpgj.80x60-75.jpg", "artworkUrl100":"http://a1.mzstatic.com/us/r1000/015/Features/0c/1a/a2/dj.shywrpgj.100x100-75.jpg", "collectionPrice":-1.00, "trackPrice":1.99, "releaseDate":"2006-05-03T07:00:00Z", "collectionExplicitness":"notExplicit", "trackExplicitness":"notExplicit", "discCount":1, "discNumber":1, "trackCount":24, "trackNumber":20, "trackTimeMillis":2596636.0, "country":"USA", "currency":"USD", "primaryGenreName":"Drama", "contentAdvisoryRating":"TV-14", - "shortDescription":"Jack and Kate bring an exhausted Michael back to the camp, and with him, news about \"The Others.\" Meanwhile, Ana Lucia attempts to get the prisoner to confess, and Hurley plans a surprise date for Libby.", - "longDescription":"Jack and Kate bring an exhausted Michael back to the camp, and with him, news about \"The Others.\" Meanwhile, Ana Lucia attempts to get the prisoner to confess, and Hurley plans a surprise date for Libby."}, - {"wrapperType":"track", "kind":"tv-episode", "artistId":66012553, "collectionId":200507719, "trackId":201175874, "artistName":"LOST", "collectionName":"LOST, Season 3", "trackName":"Every Man for Himself", "collectionCensoredName":"LOST, Season 3", "trackCensoredName":"Every Man for Himself", "artistViewUrl":"http://itunes.apple.com/us/tv-show/lost/id66012553?uo=4", "collectionViewUrl":"http://itunes.apple.com/us/tv-season/every-man-for-himself/id200507719?i=201175874&uo=4", "trackViewUrl":"http://itunes.apple.com/us/tv-season/every-man-for-himself/id200507719?i=201175874&uo=4", "previewUrl":"http://a842.v.phobos.apple.com/us/r1000/006/Video/27/b2/c3/mzm.lhirqulf..640x480.h264lc.d2.p.m4v", "artworkUrl30":"http://a3.mzstatic.com/us/r30/Video/e6/f5/54/mzl.xrciclpo.40x30-75.jpg", "artworkUrl60":"http://a4.mzstatic.com/us/r30/Video/e6/f5/54/mzl.xrciclpo.80x60-75.jpg", "artworkUrl100":"http://a1.mzstatic.com/us/r30/Video/e6/f5/54/mzl.xrciclpo.100x100-75.jpg", "collectionPrice":34.99, "trackPrice":1.99, "releaseDate":"2006-10-25T07:00:00Z", "collectionExplicitness":"notExplicit", "trackExplicitness":"notExplicit", "discCount":1, "discNumber":1, "trackCount":23, "trackNumber":4, "trackTimeMillis":2607416.0, "country":"USA", "currency":"USD", "primaryGenreName":"Drama", "contentAdvisoryRating":"TV-14", - "shortDescription":"Sawyer discovers just how far his captors will go to thwart any plans of escape he and Kate might have, and Jack is called upon to scrub up in order to save the life of one of \"The Others.\" Meanwhile, Desmond's behavior begins to perplex the survivors when he starts construction on an unknown device.", - "longDescription":"Sawyer discovers just how far his captors will go to thwart any plans of escape he and Kate might have, and Jack is called upon to scrub up in order to save the life of one of \"The Others.\" Meanwhile, Desmond's behavior begins to perplex the survivors when he starts construction on an unknown device."}, - {"wrapperType":"track", "kind":"tv-episode", "artistId":66012553, "collectionId":200507719, "trackId":204121612, "artistName":"LOST", "collectionName":"LOST, Season 3", "trackName":"I Do", "collectionCensoredName":"LOST, Season 3", "trackCensoredName":"I Do", "artistViewUrl":"http://itunes.apple.com/us/tv-show/lost/id66012553?uo=4", "collectionViewUrl":"http://itunes.apple.com/us/tv-season/i-do/id200507719?i=204121612&uo=4", "trackViewUrl":"http://itunes.apple.com/us/tv-season/i-do/id200507719?i=204121612&uo=4", "previewUrl":"http://a1091.v.phobos.apple.com/us/r1000/058/Video/7f/d0/d0/mzm.mmpltysi..640x480.h264lc.d2.p.m4v", "artworkUrl30":"http://a3.mzstatic.com/us/r30/Video/e6/f5/54/mzl.xrciclpo.40x30-75.jpg", "artworkUrl60":"http://a4.mzstatic.com/us/r30/Video/e6/f5/54/mzl.xrciclpo.80x60-75.jpg", "artworkUrl100":"http://a1.mzstatic.com/us/r30/Video/e6/f5/54/mzl.xrciclpo.100x100-75.jpg", "collectionPrice":34.99, "trackPrice":1.99, "releaseDate":"2006-11-08T08:00:00Z", "collectionExplicitness":"notExplicit", "trackExplicitness":"notExplicit", "discCount":1, "discNumber":1, "trackCount":23, "trackNumber":6, "trackTimeMillis":2598500.0, "country":"USA", "currency":"USD", "primaryGenreName":"Drama", "contentAdvisoryRating":"TV-14", - "shortDescription":"Jack makes a decision regarding Ben's offer, Kate feels helpless when it looks like an angry Pickett is going to make good on his threat to kill Sawyer, and Locke discovers a hidden message that may guide him through the next steps of his journey to unlocking the secrets of the island.", - "longDescription":"Jack makes a decision regarding Ben's offer, Kate feels helpless when it looks like an angry Pickett is going to make good on his threat to kill Sawyer, and Locke discovers a hidden message that may guide him through the next steps of his journey to unlocking the secrets of the island."}, - {"wrapperType":"track", "kind":"tv-episode", "artistId":66012553, "collectionId":82050675, "trackId":83324779, "artistName":"LOST", "collectionName":"LOST, Season 2", "trackName":"Abandoned", "collectionCensoredName":"LOST, Season 2", "trackCensoredName":"Abandoned", "artistViewUrl":"http://itunes.apple.com/us/tv-show/lost/id66012553?uo=4", "collectionViewUrl":"http://itunes.apple.com/us/tv-season/abandoned/id82050675?i=83324779&uo=4", "trackViewUrl":"http://itunes.apple.com/us/tv-season/abandoned/id82050675?i=83324779&uo=4", "previewUrl":"http://a373.v.phobos.apple.com/us/r1000/042/Video/a6/56/d1/mzm.bnejluxj..640x480.h264lc.d2.p.m4v", "artworkUrl30":"http://a1.mzstatic.com/us/r1000/058/Music/0c/1a/a2/mzi.rainnewf.40x30-75.jpg", "artworkUrl60":"http://a2.mzstatic.com/us/r1000/058/Music/0c/1a/a2/mzi.rainnewf.80x60-75.jpg", "artworkUrl100":"http://a2.mzstatic.com/us/r1000/058/Music/0c/1a/a2/mzi.rainnewf.100x100-75.jpg", "collectionPrice":-1.00, "trackPrice":1.99, "releaseDate":"2005-11-09T08:00:00Z", "collectionExplicitness":"notExplicit", "trackExplicitness":"notExplicit", "discCount":1, "discNumber":1, "trackCount":24, "trackNumber":6, "trackTimeMillis":2573823.0, "country":"USA", "currency":"USD", "primaryGenreName":"Drama", "contentAdvisoryRating":"TV-PG", "shortDescription":"Sawyer's wound becomes life-threatening as he, Michael and Jin make their way through the interior of the island with the tail section survivors.", - "longDescription":"Sawyer's wound becomes life-threatening as he, Michael and Jin make their way through the interior of the island with the tail section survivors. Meanwhile, Shannon is once again haunted by visions of Walt, and Charlie becomes jealous of Locke's interest in Claire."}, - {"wrapperType":"track", "kind":"tv-episode", "artistId":66012553, "collectionId":82050675, "trackId":151947814, "artistName":"LOST", "collectionName":"LOST, Season 2", "trackName":"\"?\"", "collectionCensoredName":"LOST, Season 2", "trackCensoredName":"\"?\"", "artistViewUrl":"http://itunes.apple.com/us/tv-show/lost/id66012553?uo=4", "collectionViewUrl":"http://itunes.apple.com/us/tv-season/id82050675?i=151947814&uo=4", "trackViewUrl":"http://itunes.apple.com/us/tv-season/id82050675?i=151947814&uo=4", "previewUrl":"http://a167.v.phobos.apple.com/us/r1000/035/Video/c7/d4/de/mzm.dbfshtfy..640x480.h264lc.d2.p.m4v", "artworkUrl30":"http://a3.mzstatic.com/us/r1000/015/Features/0c/1a/a2/dj.shywrpgj.40x30-75.jpg", "artworkUrl60":"http://a1.mzstatic.com/us/r1000/015/Features/0c/1a/a2/dj.shywrpgj.80x60-75.jpg", "artworkUrl100":"http://a1.mzstatic.com/us/r1000/015/Features/0c/1a/a2/dj.shywrpgj.100x100-75.jpg", "collectionPrice":-1.00, "trackPrice":1.99, "releaseDate":"2006-05-10T07:00:00Z", "collectionExplicitness":"notExplicit", "trackExplicitness":"notExplicit", "discCount":1, "discNumber":1, "trackCount":24, "trackNumber":21, "trackTimeMillis":2768810.0, "country":"USA", "currency":"USD", "primaryGenreName":"Drama", "contentAdvisoryRating":"TV-14", - "shortDescription":"Mr. Eko enlists Locke to help find a secret location he believes houses answers to the island's mysteries. Meanwhile, Jack and the other survivors struggle to cope with the horrific situation in the hatch.", - "longDescription":"Mr. Eko enlists Locke to help find a secret location he believes houses answers to the island's mysteries. Meanwhile, Jack and the other survivors struggle to cope with the horrific situation in the hatch."}, - {"wrapperType":"track", "kind":"tv-episode", "artistId":66012553, "collectionId":82050675, "trackId":152461935, "artistName":"LOST", "collectionName":"LOST, Season 2", "trackName":"Three Minutes", "collectionCensoredName":"LOST, Season 2", "trackCensoredName":"Three Minutes", "artistViewUrl":"http://itunes.apple.com/us/tv-show/lost/id66012553?uo=4", "collectionViewUrl":"http://itunes.apple.com/us/tv-season/three-minutes/id82050675?i=152461935&uo=4", "trackViewUrl":"http://itunes.apple.com/us/tv-season/three-minutes/id82050675?i=152461935&uo=4", "previewUrl":"http://a89.v.phobos.apple.com/us/r1000/025/Video/c2/5f/15/mzm.eyeqttpt..640x480.h264lc.d2.p.m4v", "artworkUrl30":"http://a3.mzstatic.com/us/r1000/015/Features/0c/1a/a2/dj.shywrpgj.40x30-75.jpg", "artworkUrl60":"http://a1.mzstatic.com/us/r1000/015/Features/0c/1a/a2/dj.shywrpgj.80x60-75.jpg", "artworkUrl100":"http://a1.mzstatic.com/us/r1000/015/Features/0c/1a/a2/dj.shywrpgj.100x100-75.jpg", "collectionPrice":-1.00, "trackPrice":1.99, "releaseDate":"2006-05-17T07:00:00Z", "collectionExplicitness":"notExplicit", "trackExplicitness":"notExplicit", "discCount":1, "discNumber":1, "trackCount":24, "trackNumber":22, "trackTimeMillis":2717758.0, "country":"USA", "currency":"USD", "primaryGenreName":"Drama", "contentAdvisoryRating":"TV-14", - "shortDescription":"A determined Michael convinces Jack and several castaways to help him rescue Walt from \"The Others.\" With Jack away, Locke is left in charge of the hatch and must decide if he should believe Henry and not push the button, risking everyone's safety.", - "longDescription":"A determined Michael convinces Jack and several castaways to help him rescue Walt from \"The Others.\" With Jack away, Locke is left in charge of the hatch and must decide if he should believe Henry and not push the button, risking everyone's safety. Meanwhile, the events that happened to Michael after he left are finally revealed. Meanwhile, Charlie struggles with Eko's decision to discontinue building the church."}, - {"wrapperType":"track", "kind":"tv-episode", "artistId":66012553, "collectionId":200507719, "trackId":203968378, "artistName":"LOST", "collectionName":"LOST, Season 3", "trackName":"The Cost of Living", "collectionCensoredName":"LOST, Season 3", "trackCensoredName":"The Cost of Living", "artistViewUrl":"http://itunes.apple.com/us/tv-show/lost/id66012553?uo=4", "collectionViewUrl":"http://itunes.apple.com/us/tv-season/the-cost-of-living/id200507719?i=203968378&uo=4", "trackViewUrl":"http://itunes.apple.com/us/tv-season/the-cost-of-living/id200507719?i=203968378&uo=4", "previewUrl":"http://a1072.v.phobos.apple.com/us/r1000/044/Video/d8/1a/23/mzm.chkgsaqe..640x480.h264lc.d2.p.m4v", "artworkUrl30":"http://a3.mzstatic.com/us/r30/Video/e6/f5/54/mzl.xrciclpo.40x30-75.jpg", "artworkUrl60":"http://a4.mzstatic.com/us/r30/Video/e6/f5/54/mzl.xrciclpo.80x60-75.jpg", "artworkUrl100":"http://a1.mzstatic.com/us/r30/Video/e6/f5/54/mzl.xrciclpo.100x100-75.jpg", "collectionPrice":34.99, "trackPrice":1.99, "releaseDate":"2006-11-01T08:00:00Z", "collectionExplicitness":"notExplicit", "trackExplicitness":"notExplicit", "discCount":1, "discNumber":1, "trackCount":23, "trackNumber":5, "trackTimeMillis":2607875.0, "country":"USA", "currency":"USD", "primaryGenreName":"Drama", "contentAdvisoryRating":"TV-14", - "shortDescription":"A delirious Eko wrestles with demons from his past, while Locke and some of the other castaways head\u00a0back to\u00a0The Pearl -- one of the\u00a0Dharma Initiative's island stations -- hoping to find a computer that\u00a0they can use to locate Jack, Kate and Sawyer. Meanwhile, Jack doesn't know whom to trust when two of \"The Others\" seem at odds with one another.", - "longDescription":"A delirious Eko wrestles with demons from his past, while Locke and some of the other castaways head\u00a0back to\u00a0The Pearl -- one of the\u00a0Dharma Initiative's island stations -- hoping to find a computer that\u00a0they can use to locate Jack, Kate and Sawyer. Meanwhile, Jack doesn't know whom to trust when two of \"The Others\" seem at odds with one another."}, - {"wrapperType":"track", "kind":"tv-episode", "artistId":66012553, "collectionId":81864976, "trackId":81826874, "artistName":"LOST", "collectionName":"LOST, Season 1", "trackName":"Pilot, Pt. 1", "collectionCensoredName":"LOST, Season 1", "trackCensoredName":"Pilot, Pt. 1", "artistViewUrl":"http://itunes.apple.com/us/tv-show/lost/id66012553?uo=4", "collectionViewUrl":"http://itunes.apple.com/us/tv-season/pilot-pt-1/id81864976?i=81826874&uo=4", "trackViewUrl":"http://itunes.apple.com/us/tv-season/pilot-pt-1/id81864976?i=81826874&uo=4", "previewUrl":"http://a1669.v.phobos.apple.com/us/r1000/035/Video/01/ec/6a/mzm.ezdtahle..640x480.h264lc.d2.p.m4v", "artworkUrl30":"http://a1.mzstatic.com/us/r1000/004/Features/f1/c6/64/dj.ksjwcoow.40x30-75.jpg", "artworkUrl60":"http://a4.mzstatic.com/us/r1000/004/Features/f1/c6/64/dj.ksjwcoow.80x60-75.jpg", "artworkUrl100":"http://a4.mzstatic.com/us/r1000/004/Features/f1/c6/64/dj.ksjwcoow.100x100-75.jpg", "collectionPrice":34.99, "trackPrice":1.99, "releaseDate":"2004-09-22T07:00:00Z", "collectionExplicitness":"notExplicit", "trackExplicitness":"notExplicit", "discCount":1, "discNumber":1, "trackCount":25, "trackNumber":1, "trackTimeMillis":2540498.0, "country":"USA", "currency":"USD", "primaryGenreName":"Drama", "contentAdvisoryRating":"TV-14", "shortDescription":"Out of the blackness, the first thing Jack (Matthew Fox) senses is pain. Then burning sun. A bamboo forest. Smoke. Screams.", - "longDescription":"Out of the blackness, the first thing Jack (Matthew Fox) senses is pain. Then burning sun. A bamboo forest. Smoke. Screams. With a rush comes the horrible awareness that the plane he was on tore apart in mid-air and crashed on a Pacific island. From there it's a blur, as his doctor's instinct kicks in: people need his help."}, - {"wrapperType":"track", "kind":"tv-episode", "artistId":66012553, "collectionId":200507719, "trackId":215048742, "artistName":"LOST", "collectionName":"LOST, Season 3", "trackName":"Flashes Before Your Eyes", "collectionCensoredName":"LOST, Season 3", "trackCensoredName":"Flashes Before Your Eyes", "artistViewUrl":"http://itunes.apple.com/us/tv-show/lost/id66012553?uo=4", "collectionViewUrl":"http://itunes.apple.com/us/tv-season/flashes-before-your-eyes/id200507719?i=215048742&uo=4", "trackViewUrl":"http://itunes.apple.com/us/tv-season/flashes-before-your-eyes/id200507719?i=215048742&uo=4", "previewUrl":"http://a1032.v.phobos.apple.com/us/r1000/045/Video/b7/50/75/mzm.qjlqqvic..640x480.h264lc.d2.p.m4v", "artworkUrl30":"http://a3.mzstatic.com/us/r30/Video/e6/f5/54/mzl.xrciclpo.40x30-75.jpg", "artworkUrl60":"http://a4.mzstatic.com/us/r30/Video/e6/f5/54/mzl.xrciclpo.80x60-75.jpg", "artworkUrl100":"http://a1.mzstatic.com/us/r30/Video/e6/f5/54/mzl.xrciclpo.100x100-75.jpg", "collectionPrice":34.99, "trackPrice":1.99, "releaseDate":"2007-02-14T08:00:00Z", "collectionExplicitness":"notExplicit", "trackExplicitness":"notExplicit", "discCount":1, "discNumber":1, "trackCount":23, "trackNumber":8, "trackTimeMillis":2606430.0, "country":"USA", "currency":"USD", "primaryGenreName":"Drama", "contentAdvisoryRating":"TV-14", - "shortDescription":"A suspicious and determined Hurley enlists Charlie to help him wrangle the truth out of Desmond, who has been acting strangely ever since the implosion of the hatch.", - "longDescription":"A suspicious and determined Hurley enlists Charlie to help him wrangle the truth out of Desmond, who has been acting strangely ever since the implosion of the hatch."}, - {"wrapperType":"track", "kind":"tv-episode", "artistId":66012553, "collectionId":200507719, "trackId":215048740, "artistName":"LOST", "collectionName":"LOST, Season 3", "trackName":"Not In Portland", "collectionCensoredName":"LOST, Season 3", "trackCensoredName":"Not In Portland", "artistViewUrl":"http://itunes.apple.com/us/tv-show/lost/id66012553?uo=4", "collectionViewUrl":"http://itunes.apple.com/us/tv-season/not-in-portland/id200507719?i=215048740&uo=4", "trackViewUrl":"http://itunes.apple.com/us/tv-season/not-in-portland/id200507719?i=215048740&uo=4", "previewUrl":"http://a3.v.phobos.apple.com/us/r1000/036/Video/e9/f1/17/mzm.drywldxk..640x480.h264lc.d2.p.m4v", "artworkUrl30":"http://a3.mzstatic.com/us/r30/Video/e6/f5/54/mzl.xrciclpo.40x30-75.jpg", "artworkUrl60":"http://a4.mzstatic.com/us/r30/Video/e6/f5/54/mzl.xrciclpo.80x60-75.jpg", "artworkUrl100":"http://a1.mzstatic.com/us/r30/Video/e6/f5/54/mzl.xrciclpo.100x100-75.jpg", "collectionPrice":34.99, "trackPrice":1.99, "releaseDate":"2007-02-07T08:00:00Z", "collectionExplicitness":"notExplicit", "trackExplicitness":"notExplicit", "discCount":1, "discNumber":1, "trackCount":23, "trackNumber":7, "trackTimeMillis":2607666.0, "country":"USA", "currency":"USD", "primaryGenreName":"Drama", "contentAdvisoryRating":"TV-14", - "shortDescription":"Jack is in command as the fate of Ben's life literally rests in his hands. Meanwhile, Kate and Sawyer find an ally in one of \"The Others,\" and Juliet makes a shocking decision that could endanger her standing with her people.", - "longDescription":"Jack is in command as the fate of Ben's life literally rests in his hands. Meanwhile, Kate and Sawyer find an ally in one of \"The Others,\" and Juliet makes a shocking decision that could endanger her standing with her people."}, - {"wrapperType":"track", "kind":"tv-episode", "artistId":66012553, "collectionId":200507719, "trackId":216753701, "artistName":"LOST", "collectionName":"LOST, Season 3", "trackName":"Enter 77", "collectionCensoredName":"LOST, Season 3", "trackCensoredName":"Enter 77", "artistViewUrl":"http://itunes.apple.com/us/tv-show/lost/id66012553?uo=4", "collectionViewUrl":"http://itunes.apple.com/us/tv-season/enter-77/id200507719?i=216753701&uo=4", "trackViewUrl":"http://itunes.apple.com/us/tv-season/enter-77/id200507719?i=216753701&uo=4", "previewUrl":"http://a266.v.phobos.apple.com/us/r1000/030/Video/ec/54/10/mzm.anzgtahf..640x480.h264lc.d2.p.m4v", "artworkUrl30":"http://a3.mzstatic.com/us/r30/Video/e6/f5/54/mzl.xrciclpo.40x30-75.jpg", "artworkUrl60":"http://a4.mzstatic.com/us/r30/Video/e6/f5/54/mzl.xrciclpo.80x60-75.jpg", "artworkUrl100":"http://a1.mzstatic.com/us/r30/Video/e6/f5/54/mzl.xrciclpo.100x100-75.jpg", "collectionPrice":34.99, "trackPrice":1.99, "releaseDate":"2007-03-07T08:00:00Z", "collectionExplicitness":"notExplicit", "trackExplicitness":"notExplicit", "discCount":1, "discNumber":1, "trackCount":23, "trackNumber":11, "trackTimeMillis":2599930.0, "country":"USA", "currency":"USD", "primaryGenreName":"Drama", "contentAdvisoryRating":"TV-14", - "shortDescription":"Locke, Sayid and Kate investigate a strange structure and its mysterious inhabitant. Meanwhile, Sawyer competes in a ping-pong competition to get back his belongings.", - "longDescription":"Locke, Sayid and Kate investigate a strange structure and its mysterious inhabitant. Meanwhile, Sawyer competes in a ping-pong competition to get back his belongings."}, - {"wrapperType":"track", "kind":"tv-episode", "artistId":66012553, "collectionId":200507719, "trackId":215048744, "artistName":"LOST", "collectionName":"LOST, Season 3", "trackName":"Stranger In a Strange Land", "collectionCensoredName":"LOST, Season 3", "trackCensoredName":"Stranger In a Strange Land", "artistViewUrl":"http://itunes.apple.com/us/tv-show/lost/id66012553?uo=4", "collectionViewUrl":"http://itunes.apple.com/us/tv-season/stranger-in-a-strange-land/id200507719?i=215048744&uo=4", "trackViewUrl":"http://itunes.apple.com/us/tv-season/stranger-in-a-strange-land/id200507719?i=215048744&uo=4", "previewUrl":"http://a867.v.phobos.apple.com/us/r1000/056/Video/6f/3b/0f/mzm.ewmcioru..640x480.h264lc.d2.p.m4v", "artworkUrl30":"http://a3.mzstatic.com/us/r30/Video/e6/f5/54/mzl.xrciclpo.40x30-75.jpg", "artworkUrl60":"http://a4.mzstatic.com/us/r30/Video/e6/f5/54/mzl.xrciclpo.80x60-75.jpg", "artworkUrl100":"http://a1.mzstatic.com/us/r30/Video/e6/f5/54/mzl.xrciclpo.100x100-75.jpg", "collectionPrice":34.99, "trackPrice":1.99, "releaseDate":"2007-02-21T08:00:00Z", "collectionExplicitness":"notExplicit", "trackExplicitness":"notExplicit", "discCount":1, "discNumber":1, "trackCount":23, "trackNumber":9, "trackTimeMillis":2606750.0, "country":"USA", "currency":"USD", "primaryGenreName":"Drama", "contentAdvisoryRating":"TV-14", - "shortDescription":"A power play ensues between Jack and \"The Others\" as Juliet's future hangs in the balance. Meanwhile, Kate, Sawyer and Karl continue on their journey away from \"Alcatraz.\"", - "longDescription":"A power play ensues between Jack and \"The Others\" as Juliet's future hangs in the balance. Meanwhile, Kate, Sawyer and Karl continue on their journey away from \"Alcatraz.\""}, - {"wrapperType":"track", "kind":"tv-episode", "artistId":66012553, "collectionId":200507719, "trackId":216753135, "artistName":"LOST", "collectionName":"LOST, Season 3", "trackName":"Tricia Tanaka Is Dead", "collectionCensoredName":"LOST, Season 3", "trackCensoredName":"Tricia Tanaka Is Dead", "artistViewUrl":"http://itunes.apple.com/us/tv-show/lost/id66012553?uo=4", "collectionViewUrl":"http://itunes.apple.com/us/tv-season/tricia-tanaka-is-dead/id200507719?i=216753135&uo=4", "trackViewUrl":"http://itunes.apple.com/us/tv-season/tricia-tanaka-is-dead/id200507719?i=216753135&uo=4", "previewUrl":"http://a27.v.phobos.apple.com/us/r1000/021/Video/04/27/66/mzm.tuioicsu..640x480.h264lc.d2.p.m4v", "artworkUrl30":"http://a3.mzstatic.com/us/r30/Video/e6/f5/54/mzl.xrciclpo.40x30-75.jpg", "artworkUrl60":"http://a4.mzstatic.com/us/r30/Video/e6/f5/54/mzl.xrciclpo.80x60-75.jpg", "artworkUrl100":"http://a1.mzstatic.com/us/r30/Video/e6/f5/54/mzl.xrciclpo.100x100-75.jpg", "collectionPrice":34.99, "trackPrice":1.99, "releaseDate":"2007-02-28T08:00:00Z", "collectionExplicitness":"notExplicit", "trackExplicitness":"notExplicit", "discCount":1, "discNumber":1, "trackCount":23, "trackNumber":10, "trackTimeMillis":2608191.0, "country":"USA", "currency":"USD", "primaryGenreName":"Drama", "contentAdvisoryRating":"TV-PG", - "shortDescription":"Hurley's discovery of an old, wrecked car on the island leads him on a mission of hope not only for himself, but for a fellow survivor in need of some faith. Meanwhile, Kate and Sawyer reunite with their fellow castaways, but Kate is still torn about leaving Jack behind with \"The Others.\"", - "longDescription":"Hurley's discovery of an old, wrecked car on the island leads him on a mission of hope not only for himself, but for a fellow survivor in need of some faith. Meanwhile, Kate and Sawyer reunite with their fellow castaways, but Kate is still torn about leaving Jack behind with \"The Others.\""}, - {"wrapperType":"track", "kind":"tv-episode", "artistId":66012553, "collectionId":200507719, "trackId":219123803, "artistName":"LOST", "collectionName":"LOST, Season 3", "trackName":"Par Avion", "collectionCensoredName":"LOST, Season 3", "trackCensoredName":"Par Avion", "artistViewUrl":"http://itunes.apple.com/us/tv-show/lost/id66012553?uo=4", "collectionViewUrl":"http://itunes.apple.com/us/tv-season/par-avion/id200507719?i=219123803&uo=4", "trackViewUrl":"http://itunes.apple.com/us/tv-season/par-avion/id200507719?i=219123803&uo=4", "previewUrl":"http://a1485.v.phobos.apple.com/us/r1000/032/Video/8a/7f/ce/mzm.bcqxmaeg..640x480.h264lc.d2.p.m4v", "artworkUrl30":"http://a3.mzstatic.com/us/r30/Video/e6/f5/54/mzl.xrciclpo.40x30-75.jpg", "artworkUrl60":"http://a4.mzstatic.com/us/r30/Video/e6/f5/54/mzl.xrciclpo.80x60-75.jpg", "artworkUrl100":"http://a1.mzstatic.com/us/r30/Video/e6/f5/54/mzl.xrciclpo.100x100-75.jpg", "collectionPrice":34.99, "trackPrice":1.99, "releaseDate":"2007-03-14T07:00:00Z", "collectionExplicitness":"notExplicit", "trackExplicitness":"notExplicit", "discCount":1, "discNumber":1, "trackCount":23, "trackNumber":12, "trackTimeMillis":2599930.0, "country":"USA", "currency":"USD", "primaryGenreName":"Drama", "contentAdvisoryRating":"TV-14", - "shortDescription":"Claire becomes suspicious of Charlie when he exhibits peculiar behavior after she comes up with an idea that could get everybody rescued. Meanwhile, tensions mount between Sayid and Locke as they continue their trek to rescue Jack.", - "longDescription":"Claire becomes suspicious of Charlie when he exhibits peculiar behavior after she comes up with an idea that could get everybody rescued. Meanwhile, tensions mount between Sayid and Locke as they continue their trek to rescue Jack."}, - {"wrapperType":"track", "kind":"tv-episode", "artistId":66012553, "collectionId":200507719, "trackId":219123809, "artistName":"LOST", "collectionName":"LOST, Season 3", "trackName":"The Man from Tallahassee", "collectionCensoredName":"LOST, Season 3", "trackCensoredName":"The Man from Tallahassee", "artistViewUrl":"http://itunes.apple.com/us/tv-show/lost/id66012553?uo=4", "collectionViewUrl":"http://itunes.apple.com/us/tv-season/the-man-from-tallahassee/id200507719?i=219123809&uo=4", "trackViewUrl":"http://itunes.apple.com/us/tv-season/the-man-from-tallahassee/id200507719?i=219123809&uo=4", "previewUrl":"http://a379.v.phobos.apple.com/us/r1000/051/Video/75/42/05/mzm.omyorjaa..640x480.h264lc.d2.p.m4v", "artworkUrl30":"http://a3.mzstatic.com/us/r30/Video/e6/f5/54/mzl.xrciclpo.40x30-75.jpg", "artworkUrl60":"http://a4.mzstatic.com/us/r30/Video/e6/f5/54/mzl.xrciclpo.80x60-75.jpg", "artworkUrl100":"http://a1.mzstatic.com/us/r30/Video/e6/f5/54/mzl.xrciclpo.100x100-75.jpg", "collectionPrice":34.99, "trackPrice":1.99, "releaseDate":"2007-03-21T07:00:00Z", "collectionExplicitness":"notExplicit", "trackExplicitness":"notExplicit", "discCount":1, "discNumber":1, "trackCount":23, "trackNumber":13, "trackTimeMillis":2610431.0, "country":"USA", "currency":"USD", "primaryGenreName":"Drama", "contentAdvisoryRating":"TV-14", - "shortDescription":"Ben tries to persuade a determined Locke to call off his destructive plan by offering him some of the secrets of the island, and Kate's reunion with Jack does not go off as planned when she discovers that he has made a deal with \"The Others.\"", - "longDescription":"Ben tries to persuade a determined Locke to call off his destructive plan by offering him some of the secrets of the island, and Kate's reunion with Jack does not go off as planned when she discovers that he has made a deal with \"The Others.\""}, - {"wrapperType":"track", "kind":"tv-episode", "artistId":66012553, "collectionId":200507719, "trackId":220100195, "artistName":"LOST", "collectionName":"LOST, Season 3", "trackName":"Expos\u00e9", "collectionCensoredName":"LOST, Season 3", "trackCensoredName":"Expos\u00e9", "artistViewUrl":"http://itunes.apple.com/us/tv-show/lost/id66012553?uo=4", "collectionViewUrl":"http://itunes.apple.com/us/tv-season/expose/id200507719?i=220100195&uo=4", "trackViewUrl":"http://itunes.apple.com/us/tv-season/expose/id200507719?i=220100195&uo=4", "previewUrl":"http://a1438.v.phobos.apple.com/us/r1000/047/Video/4a/e6/92/mzm.rkendrdf..640x480.h264lc.d2.p.m4v", "artworkUrl30":"http://a3.mzstatic.com/us/r30/Video/e6/f5/54/mzl.xrciclpo.40x30-75.jpg", "artworkUrl60":"http://a4.mzstatic.com/us/r30/Video/e6/f5/54/mzl.xrciclpo.80x60-75.jpg", "artworkUrl100":"http://a1.mzstatic.com/us/r30/Video/e6/f5/54/mzl.xrciclpo.100x100-75.jpg", "collectionPrice":34.99, "trackPrice":1.99, "releaseDate":"2007-03-28T07:00:00Z", "collectionExplicitness":"notExplicit", "trackExplicitness":"notExplicit", "discCount":1, "discNumber":1, "trackCount":23, "trackNumber":14, "trackTimeMillis":2563333.0, "country":"USA", "currency":"USD", "primaryGenreName":"Drama", "contentAdvisoryRating":"TV-14", - "shortDescription":"Hurley begins to suspect that Sawyer may be involved in an island mystery surrounding two fellow survivors, and Sun learns the truth about her past kidnapping attempt by \"The Others.\"", - "longDescription":"Hurley begins to suspect that Sawyer may be involved in an island mystery surrounding two fellow survivors, and Sun learns the truth about her past kidnapping attempt by \"The Others.\""}, - {"wrapperType":"track", "kind":"tv-episode", "artistId":66012553, "collectionId":200507719, "trackId":254531399, "artistName":"LOST", "collectionName":"LOST, Season 3", "trackName":"Greatest Hits", "collectionCensoredName":"LOST, Season 3", "trackCensoredName":"Greatest Hits", "artistViewUrl":"http://itunes.apple.com/us/tv-show/lost/id66012553?uo=4", "collectionViewUrl":"http://itunes.apple.com/us/tv-season/greatest-hits/id200507719?i=254531399&uo=4", "trackViewUrl":"http://itunes.apple.com/us/tv-season/greatest-hits/id200507719?i=254531399&uo=4", "previewUrl":"http://a1002.v.phobos.apple.com/us/r1000/011/Video/7c/df/f0/mzm.ygcivqyr..640x480.h264lc.d2.p.m4v", "artworkUrl30":"http://a3.mzstatic.com/us/r30/Video/e6/f5/54/mzl.xrciclpo.40x30-75.jpg", "artworkUrl60":"http://a4.mzstatic.com/us/r30/Video/e6/f5/54/mzl.xrciclpo.80x60-75.jpg", "artworkUrl100":"http://a1.mzstatic.com/us/r30/Video/e6/f5/54/mzl.xrciclpo.100x100-75.jpg", "collectionPrice":34.99, "trackPrice":1.99, "releaseDate":"2007-05-16T07:00:00Z", "collectionExplicitness":"notExplicit", "trackExplicitness":"notExplicit", "discCount":1, "discNumber":1, "trackCount":23, "trackNumber":21, "trackTimeMillis":2607103.0, "country":"USA", "currency":"USD", "primaryGenreName":"Drama", "contentAdvisoryRating":"TV-14", - "shortDescription":"While Jack devises a plan to do away with \"The Others\" once and for all, Sayid uncovers a flaw in \"The Others'\" system that could lead to everyone's rescue. But it requires Charlie to take on a dangerous task that may make Desmond's premonition come true.", - "longDescription":"While Jack devises a plan to do away with \"The Others\" once and for all, Sayid uncovers a flaw in \"The Others'\" system that could lead to everyone's rescue. But it requires Charlie to take on a dangerous task that may make Desmond's premonition come true."}, - {"wrapperType":"track", "kind":"tv-episode", "artistId":66012553, "collectionId":200507719, "trackId":252901095, "artistName":"LOST", "collectionName":"LOST, Season 3", "trackName":"The Brig", "collectionCensoredName":"LOST, Season 3", "trackCensoredName":"The Brig", "artistViewUrl":"http://itunes.apple.com/us/tv-show/lost/id66012553?uo=4", "collectionViewUrl":"http://itunes.apple.com/us/tv-season/the-brig/id200507719?i=252901095&uo=4", "trackViewUrl":"http://itunes.apple.com/us/tv-season/the-brig/id200507719?i=252901095&uo=4", "previewUrl":"http://a1985.v.phobos.apple.com/us/r1000/015/Video/ad/a9/58/mzm.ndoeeusn..640x480.h264lc.d2.p.m4v", "artworkUrl30":"http://a3.mzstatic.com/us/r30/Video/e6/f5/54/mzl.xrciclpo.40x30-75.jpg", "artworkUrl60":"http://a4.mzstatic.com/us/r30/Video/e6/f5/54/mzl.xrciclpo.80x60-75.jpg", "artworkUrl100":"http://a1.mzstatic.com/us/r30/Video/e6/f5/54/mzl.xrciclpo.100x100-75.jpg", "collectionPrice":34.99, "trackPrice":1.99, "releaseDate":"2007-05-02T07:00:00Z", "collectionExplicitness":"notExplicit", "trackExplicitness":"notExplicit", "discCount":1, "discNumber":1, "trackCount":23, "trackNumber":19, "trackTimeMillis":2607666.0, "country":"USA", "currency":"USD", "primaryGenreName":"Drama", "contentAdvisoryRating":"TV-14", - "shortDescription":"A newly focused Locke breaks away from \"The Others\" in an attempt to persuade Sawyer to help rid them of a great nemesis that has caused nothing but pain in both of their lives. Meanwhile, a new island inhabitant discloses some shocking information about Oceanic Flight 815.", - "longDescription":"A newly focused Locke breaks away from \"The Others\" in an attempt to persuade Sawyer to help rid them of a great nemesis that has caused nothing but pain in both of their lives. Meanwhile, a new island inhabitant discloses some shocking information about Oceanic Flight 815."}, - {"wrapperType":"track", "kind":"tv-episode", "artistId":66012553, "collectionId":200507719, "trackId":220100200, "artistName":"LOST", "collectionName":"LOST, Season 3", "trackName":"Left Behind", "collectionCensoredName":"LOST, Season 3", "trackCensoredName":"Left Behind", "artistViewUrl":"http://itunes.apple.com/us/tv-show/lost/id66012553?uo=4", "collectionViewUrl":"http://itunes.apple.com/us/tv-season/left-behind/id200507719?i=220100200&uo=4", "trackViewUrl":"http://itunes.apple.com/us/tv-season/left-behind/id200507719?i=220100200&uo=4", "previewUrl":"http://a1861.v.phobos.apple.com/us/r1000/014/Video/f3/a5/ae/mzm.cqjerumd..640x480.h264lc.d2.p.m4v", "artworkUrl30":"http://a3.mzstatic.com/us/r30/Video/e6/f5/54/mzl.xrciclpo.40x30-75.jpg", "artworkUrl60":"http://a4.mzstatic.com/us/r30/Video/e6/f5/54/mzl.xrciclpo.80x60-75.jpg", "artworkUrl100":"http://a1.mzstatic.com/us/r30/Video/e6/f5/54/mzl.xrciclpo.100x100-75.jpg", "collectionPrice":34.99, "trackPrice":1.99, "releaseDate":"2007-04-04T07:00:00Z", "collectionExplicitness":"notExplicit", "trackExplicitness":"notExplicit", "discCount":1, "discNumber":1, "trackCount":23, "trackNumber":15, "trackTimeMillis":2604298.0, "country":"USA", "currency":"USD", "primaryGenreName":"Drama", "contentAdvisoryRating":"TV-14", - "shortDescription":"After discovering that one of her own has betrayed her to \"The Others,\" Kate is left to fend for herself in the jungle with Juliet. Meanwhile, Hurley warns Sawyer to change his selfish ways and make amends with his fellow survivors or he may face a vote of banishment.", - "longDescription":"After discovering that one of her own has betrayed her to \"The Others,\" Kate is left to fend for herself in the jungle with Juliet. Meanwhile, Hurley warns Sawyer to change his selfish ways and make amends with his fellow survivors or he may face a vote of banishment."}, - {"wrapperType":"track", "kind":"tv-episode", "artistId":66012553, "collectionId":200507719, "trackId":252900928, "artistName":"LOST", "collectionName":"LOST, Season 3", "trackName":"The Man Behind the Curtain", "collectionCensoredName":"LOST, Season 3", "trackCensoredName":"The Man Behind the Curtain", "artistViewUrl":"http://itunes.apple.com/us/tv-show/lost/id66012553?uo=4", "collectionViewUrl":"http://itunes.apple.com/us/tv-season/the-man-behind-the-curtain/id200507719?i=252900928&uo=4", "trackViewUrl":"http://itunes.apple.com/us/tv-season/the-man-behind-the-curtain/id200507719?i=252900928&uo=4", "previewUrl":"http://a1235.v.phobos.apple.com/us/r1000/059/Video/4d/1b/ac/mzm.knqnrelq..640x480.h264lc.d2.p.m4v", "artworkUrl30":"http://a3.mzstatic.com/us/r30/Video/e6/f5/54/mzl.xrciclpo.40x30-75.jpg", "artworkUrl60":"http://a4.mzstatic.com/us/r30/Video/e6/f5/54/mzl.xrciclpo.80x60-75.jpg", "artworkUrl100":"http://a1.mzstatic.com/us/r30/Video/e6/f5/54/mzl.xrciclpo.100x100-75.jpg", "collectionPrice":34.99, "trackPrice":1.99, "releaseDate":"2007-05-09T07:00:00Z", "collectionExplicitness":"notExplicit", "trackExplicitness":"notExplicit", "discCount":1, "discNumber":1, "trackCount":23, "trackNumber":20, "trackTimeMillis":2605333.0, "country":"USA", "currency":"USD", "primaryGenreName":"Drama", "contentAdvisoryRating":"TV-14", - "shortDescription":"Ben begrudgingly begins to introduce Locke to the secrets of the island, beginning with the mysterious Jacob. Meanwhile, Juliet's secret goes public.", - "longDescription":"Ben begrudgingly begins to introduce Locke to the secrets of the island, beginning with the mysterious Jacob. Meanwhile, Juliet's secret goes public."}, - {"wrapperType":"track", "kind":"tv-episode", "artistId":66012553, "collectionId":200507719, "trackId":250671308, "artistName":"LOST", "collectionName":"LOST, Season 3", "trackName":"One of Us", "collectionCensoredName":"LOST, Season 3", "trackCensoredName":"One of Us", "artistViewUrl":"http://itunes.apple.com/us/tv-show/lost/id66012553?uo=4", "collectionViewUrl":"http://itunes.apple.com/us/tv-season/one-of-us/id200507719?i=250671308&uo=4", "trackViewUrl":"http://itunes.apple.com/us/tv-season/one-of-us/id200507719?i=250671308&uo=4", "previewUrl":"http://a111.v.phobos.apple.com/us/r1000/033/Video/4d/3e/a7/mzm.dfgghhuf..640x480.h264lc.d2.p.m4v", "artworkUrl30":"http://a3.mzstatic.com/us/r30/Video/e6/f5/54/mzl.xrciclpo.40x30-75.jpg", "artworkUrl60":"http://a4.mzstatic.com/us/r30/Video/e6/f5/54/mzl.xrciclpo.80x60-75.jpg", "artworkUrl100":"http://a1.mzstatic.com/us/r30/Video/e6/f5/54/mzl.xrciclpo.100x100-75.jpg", "collectionPrice":34.99, "trackPrice":1.99, "releaseDate":"2007-04-11T07:00:00Z", "collectionExplicitness":"notExplicit", "trackExplicitness":"notExplicit", "discCount":1, "discNumber":1, "trackCount":23, "trackNumber":16, "trackTimeMillis":2610431.0, "country":"USA", "currency":"USD", "primaryGenreName":"Drama", "contentAdvisoryRating":"TV-PG", - "shortDescription":"Jack's joyous reunion with his fellow survivors is cut short when they realize that accompanying him is one of \"The Others,\" and Claire is stricken by a mysterious, life-threatening illness.", - "longDescription":"Jack's joyous reunion with his fellow survivors is cut short when they realize that accompanying him is one of \"The Others,\" and Claire is stricken by a mysterious, life-threatening illness."}, - {"wrapperType":"track", "kind":"tv-episode", "artistId":66012553, "collectionId":200507719, "trackId":251892476, "artistName":"LOST", "collectionName":"LOST, Season 3", "trackName":"D.O.C.", "collectionCensoredName":"LOST, Season 3", "trackCensoredName":"D.O.C.", "artistViewUrl":"http://itunes.apple.com/us/tv-show/lost/id66012553?uo=4", "collectionViewUrl":"http://itunes.apple.com/us/tv-season/d-o-c/id200507719?i=251892476&uo=4", "trackViewUrl":"http://itunes.apple.com/us/tv-season/d-o-c/id200507719?i=251892476&uo=4", "previewUrl":"http://a1716.v.phobos.apple.com/us/r1000/013/Video/01/a2/96/mzm.tcglavgc..640x480.h264lc.d2.p.m4v", "artworkUrl30":"http://a3.mzstatic.com/us/r30/Video/e6/f5/54/mzl.xrciclpo.40x30-75.jpg", "artworkUrl60":"http://a4.mzstatic.com/us/r30/Video/e6/f5/54/mzl.xrciclpo.80x60-75.jpg", "artworkUrl100":"http://a1.mzstatic.com/us/r30/Video/e6/f5/54/mzl.xrciclpo.100x100-75.jpg", "collectionPrice":34.99, "trackPrice":1.99, "releaseDate":"2007-04-25T07:00:00Z", "collectionExplicitness":"notExplicit", "trackExplicitness":"notExplicit", "discCount":1, "discNumber":1, "trackCount":23, "trackNumber":18, "trackTimeMillis":2606175.0, "country":"USA", "currency":"USD", "primaryGenreName":"Drama", "contentAdvisoryRating":"TV-14", - "shortDescription":"After discovering that all of \"The Others\" pregnant women died before giving birth on the island, an extremely reticent Sun allows Juliet to examine her -- and uncovers the identity of the unborn child's father. Meanwhile, Desmond allows an unlikely nemesis to help save the life of a new, mysterious island inhabitant.", - "longDescription":"After discovering that all of \"The Others\" pregnant women died before giving birth on the island, an extremely reticent Sun allows Juliet to examine her -- and uncovers the identity of the unborn child's father. Meanwhile, Desmond allows an unlikely nemesis to help save the life of a new, mysterious island inhabitant."}, - {"wrapperType":"track", "kind":"tv-episode", "artistId":66012553, "collectionId":200507719, "trackId":251892474, "artistName":"LOST", "collectionName":"LOST, Season 3", "trackName":"Catch-22", "collectionCensoredName":"LOST, Season 3", "trackCensoredName":"Catch-22", "artistViewUrl":"http://itunes.apple.com/us/tv-show/lost/id66012553?uo=4", "collectionViewUrl":"http://itunes.apple.com/us/tv-season/catch-22/id200507719?i=251892474&uo=4", "trackViewUrl":"http://itunes.apple.com/us/tv-season/catch-22/id200507719?i=251892474&uo=4", "previewUrl":"http://a1789.v.phobos.apple.com/us/r1000/047/Video/df/c5/0e/mzm.pnbrrmxr..640x480.h264lc.d2.p.m4v", "artworkUrl30":"http://a3.mzstatic.com/us/r30/Video/e6/f5/54/mzl.xrciclpo.40x30-75.jpg", "artworkUrl60":"http://a4.mzstatic.com/us/r30/Video/e6/f5/54/mzl.xrciclpo.80x60-75.jpg", "artworkUrl100":"http://a1.mzstatic.com/us/r30/Video/e6/f5/54/mzl.xrciclpo.100x100-75.jpg", "collectionPrice":34.99, "trackPrice":1.99, "releaseDate":"2007-04-18T07:00:00Z", "collectionExplicitness":"notExplicit", "trackExplicitness":"notExplicit", "discCount":1, "discNumber":1, "trackCount":23, "trackNumber":17, "trackTimeMillis":2551041.0, "country":"USA", "currency":"USD", "primaryGenreName":"Drama", "contentAdvisoryRating":"TV-14", - "shortDescription":"Desmond coaxes Charlie, Hurley and Jin on a trek across the jungle after experiencing one of his future-prophesizing \"flashes\" -- but is he purposely placing Charlie's life in harm's way? Meanwhile, Kate turns to an unwitting Sawyer after seeing Jack alone with Juliet.", - "longDescription":"Desmond coaxes Charlie, Hurley and Jin on a trek across the jungle after experiencing one of his future-prophesizing \"flashes\" -- but is he purposely placing Charlie's life in harm's way? Meanwhile, Kate turns to an unwitting Sawyer after seeing Jack alone with Juliet."}, - {"wrapperType":"track", "kind":"tv-episode", "artistId":66012553, "collectionId":200507719, "trackId":258597093, "artistName":"LOST", "collectionName":"LOST, Season 3", "trackName":"Through the Looking Glass, Pt. 2", "collectionCensoredName":"LOST, Season 3", "trackCensoredName":"Through the Looking Glass, Pt. 2", "artistViewUrl":"http://itunes.apple.com/us/tv-show/lost/id66012553?uo=4", "collectionViewUrl":"http://itunes.apple.com/us/tv-season/through-the-looking-glass-pt-2/id200507719?i=258597093&uo=4", "trackViewUrl":"http://itunes.apple.com/us/tv-season/through-the-looking-glass-pt-2/id200507719?i=258597093&uo=4", "previewUrl":"http://a407.v.phobos.apple.com/us/r1000/022/Video/bf/28/82/mzm.qwiuqvai..640x480.h264lc.d2.p.m4v", "artworkUrl30":"http://a3.mzstatic.com/us/r30/Video/e6/f5/54/mzl.xrciclpo.40x30-75.jpg", "artworkUrl60":"http://a4.mzstatic.com/us/r30/Video/e6/f5/54/mzl.xrciclpo.80x60-75.jpg", "artworkUrl100":"http://a1.mzstatic.com/us/r30/Video/e6/f5/54/mzl.xrciclpo.100x100-75.jpg", "collectionPrice":34.99, "trackPrice":1.99, "releaseDate":"2007-05-23T07:00:00Z", "collectionExplicitness":"notExplicit", "trackExplicitness":"notExplicit", "discCount":1, "discNumber":1, "trackCount":23, "trackNumber":23, "trackTimeMillis":2607666.0, "country":"USA", "currency":"USD", "primaryGenreName":"Drama", "contentAdvisoryRating":"TV-14", "shortDescription":"Continuation of Jack and the castaways beginning their efforts to make contact with Naomi's rescue ship.", "longDescription":"Continuation of Jack and the castaways beginning their efforts to make contact with Naomi's rescue ship."}, - {"wrapperType":"track", "kind":"tv-episode", "artistId":66012553, "collectionId":81864976, "trackId":81826878, "artistName":"LOST", "collectionName":"LOST, Season 1", "trackName":"Pilot, Pt. 2", "collectionCensoredName":"LOST, Season 1", "trackCensoredName":"Pilot, Pt. 2", "artistViewUrl":"http://itunes.apple.com/us/tv-show/lost/id66012553?uo=4", "collectionViewUrl":"http://itunes.apple.com/us/tv-season/pilot-pt-2/id81864976?i=81826878&uo=4", "trackViewUrl":"http://itunes.apple.com/us/tv-season/pilot-pt-2/id81864976?i=81826878&uo=4", "previewUrl":"http://a1587.v.phobos.apple.com/us/r1000/014/Video/22/0c/75/mzm.kpbfijaj..640x480.h264lc.d2.p.m4v", "artworkUrl30":"http://a1.mzstatic.com/us/r1000/004/Features/f1/c6/64/dj.ksjwcoow.40x30-75.jpg", "artworkUrl60":"http://a4.mzstatic.com/us/r1000/004/Features/f1/c6/64/dj.ksjwcoow.80x60-75.jpg", "artworkUrl100":"http://a4.mzstatic.com/us/r1000/004/Features/f1/c6/64/dj.ksjwcoow.100x100-75.jpg", "collectionPrice":34.99, "trackPrice":1.99, "releaseDate":"2004-09-29T07:00:00Z", "collectionExplicitness":"notExplicit", "trackExplicitness":"notExplicit", "discCount":1, "discNumber":1, "trackCount":25, "trackNumber":2, "trackTimeMillis":2424466.0, "country":"USA", "currency":"USD", "primaryGenreName":"Drama", "contentAdvisoryRating":"TV-14", "shortDescription":"The discovery of a transceiver among the plane's wreckage and the thought that rescue could be imminent temporarily raises the castaways' spirits.", - "longDescription":"The discovery of a transceiver among the plane's wreckage and the thought that rescue could be imminent temporarily raises the castaways' spirits. The island's mysteries continue to baffle with the discovery of handcuffs, a gun, and an animal that shouldn't be able to survive in a tropical climate."}, - {"wrapperType":"track", "kind":"tv-episode", "artistId":66012553, "collectionId":271230907, "trackId":273109898, "artistName":"LOST", "collectionName":"LOST, Season 4", "trackName":"The Beginning of the End", "collectionCensoredName":"LOST, Season 4", "trackCensoredName":"The Beginning of the End", "artistViewUrl":"http://itunes.apple.com/us/tv-show/lost/id66012553?uo=4", "collectionViewUrl":"http://itunes.apple.com/us/tv-season/the-beginning-of-the-end/id271230907?i=273109898&uo=4", "trackViewUrl":"http://itunes.apple.com/us/tv-season/the-beginning-of-the-end/id271230907?i=273109898&uo=4", "previewUrl":"http://a1450.v.phobos.apple.com/us/r1000/039/Video/d9/be/e2/mzm.ymjtaciv..640x480.h264lc.d2.p.m4v", "artworkUrl30":"http://a5.mzstatic.com/us/r1000/024/Video/7c/70/47/mzl.bxzxwvhu.40x30-75.jpg", "artworkUrl60":"http://a3.mzstatic.com/us/r1000/024/Video/7c/70/47/mzl.bxzxwvhu.80x60-75.jpg", "artworkUrl100":"http://a1.mzstatic.com/us/r1000/024/Video/7c/70/47/mzl.bxzxwvhu.100x100-75.jpg", "collectionPrice":26.99, "trackPrice":1.99, "releaseDate":"2008-01-31T08:00:00Z", "collectionExplicitness":"notExplicit", "trackExplicitness":"notExplicit", "discCount":1, "discNumber":1, "trackCount":14, "trackNumber":1, "trackTimeMillis":2589855.0, "country":"USA", "currency":"USD", "primaryGenreName":"Drama", "contentAdvisoryRating":"TV-14", - "shortDescription":"Feeling that their rescue is close at hand, the survivors don't know whether to believe Charlie's final message that the people claiming to liberate them are not who they seem to be.", - "longDescription":"Feeling that their rescue is close at hand, the survivors don't know whether to believe Charlie's final message that the people claiming to liberate them are not who they seem to be."}, - {"wrapperType":"track", "kind":"tv-episode", "artistId":66012553, "collectionId":200507719, "trackId":258597091, "artistName":"LOST", "collectionName":"LOST, Season 3", "trackName":"Through the Looking Glass, Pt. 1", "collectionCensoredName":"LOST, Season 3", "trackCensoredName":"Through the Looking Glass, Pt. 1", "artistViewUrl":"http://itunes.apple.com/us/tv-show/lost/id66012553?uo=4", "collectionViewUrl":"http://itunes.apple.com/us/tv-season/through-the-looking-glass-pt-1/id200507719?i=258597091&uo=4", "trackViewUrl":"http://itunes.apple.com/us/tv-season/through-the-looking-glass-pt-1/id200507719?i=258597091&uo=4", "previewUrl":"http://a10.v.phobos.apple.com/us/r1000/037/Video/2a/70/ba/mzm.yzkfesdo..640x480.h264lc.d2.p.m4v", "artworkUrl30":"http://a3.mzstatic.com/us/r30/Video/e6/f5/54/mzl.xrciclpo.40x30-75.jpg", "artworkUrl60":"http://a4.mzstatic.com/us/r30/Video/e6/f5/54/mzl.xrciclpo.80x60-75.jpg", "artworkUrl100":"http://a1.mzstatic.com/us/r30/Video/e6/f5/54/mzl.xrciclpo.100x100-75.jpg", "collectionPrice":34.99, "trackPrice":1.99, "releaseDate":"2007-05-23T07:00:00Z", "collectionExplicitness":"notExplicit", "trackExplicitness":"notExplicit", "discCount":1, "discNumber":1, "trackCount":23, "trackNumber":22, "trackTimeMillis":2601500.0, "country":"USA", "currency":"USD", "primaryGenreName":"Drama", "contentAdvisoryRating":"TV-14", "shortDescription":"Jack and the castaways begin their efforts to make contact with Naomi's rescue ship.", "longDescription":"Jack and the castaways begin their efforts to make contact with Naomi's rescue ship."}, - {"wrapperType":"track", "kind":"tv-episode", "artistId":66012553, "collectionId":271230907, "trackId":273802173, "artistName":"LOST", "collectionName":"LOST, Season 4", "trackName":"Confirmed Dead", "collectionCensoredName":"LOST, Season 4", "trackCensoredName":"Confirmed Dead", "artistViewUrl":"http://itunes.apple.com/us/tv-show/lost/id66012553?uo=4", "collectionViewUrl":"http://itunes.apple.com/us/tv-season/confirmed-dead/id271230907?i=273802173&uo=4", "trackViewUrl":"http://itunes.apple.com/us/tv-season/confirmed-dead/id271230907?i=273802173&uo=4", "previewUrl":"http://a113.v.phobos.apple.com/us/r1000/027/Video/55/c9/88/mzm.oovxpyyp..640x480.h264lc.d2.p.m4v", "artworkUrl30":"http://a5.mzstatic.com/us/r1000/024/Video/7c/70/47/mzl.bxzxwvhu.40x30-75.jpg", "artworkUrl60":"http://a3.mzstatic.com/us/r1000/024/Video/7c/70/47/mzl.bxzxwvhu.80x60-75.jpg", "artworkUrl100":"http://a1.mzstatic.com/us/r1000/024/Video/7c/70/47/mzl.bxzxwvhu.100x100-75.jpg", "collectionPrice":26.99, "trackPrice":1.99, "releaseDate":"2008-02-07T08:00:00Z", "collectionExplicitness":"notExplicit", "trackExplicitness":"notExplicit", "discCount":1, "discNumber":1, "trackCount":14, "trackNumber":2, "trackTimeMillis":2588383.0, "country":"USA", "currency":"USD", "primaryGenreName":"Drama", "contentAdvisoryRating":"TV-14", "shortDescription":"The survivors begin to question the intentions of their supposed rescuers when four strangers arrive on the island.", "longDescription":"The survivors begin to question the intentions of their supposed rescuers when four strangers arrive on the island."}] - } - - - http_version: "1.1" -- !ruby/struct:VCR::HTTPInteraction - request: !ruby/struct:VCR::Request - method: :get - uri: http://ax.itunes.apple.com:80/WebObjects/MZStoreServices.woa/wa/wsSearch?media=software&term=Doodle%20Jump - body: - headers: - accept: - - application/json - user-agent: - - ITunes Ruby Gem 0.4.1 - response: !ruby/struct:VCR::Response - status: !ruby/struct:VCR::ResponseStatus - code: 200 - message: OK - headers: - x-webobjects-loadaverage: - - "0" - x-apple-orig-url-path: - - /WebObjects/MZStoreServices.woa/wa/wsSearch?term=Doodle%20Jump&media=software - x-apple-application-site: - - NWK - x-apple-partner: - - origin.0 - expires: - - Mon, 30 May 2011 02:37:15 GMT - content-type: - - text/javascript; charset=utf-8 - connection: - - Transfer-Encoding - x-apple-max-age: - - "3600" - date: - - Mon, 30 May 2011 02:37:15 GMT - x-apple-application-instance: - - "1034001" - x-apple-woa-inbound-url: - - /WebObjects/MZStoreServices.woa/wa/wsSearch?term=Doodle%20Jump&media=software - vary: - - X-Apple-Store-Front - cache-control: - - max-age=0, no-cache - transfer-encoding: - - chunked - pragma: - - no-cache - body: |+ - - - - { - "resultCount":50, - "results": [ - {"version":"2.3", "kind":"software", "artistId":285874818, "artistName":"Lima Sky", "price":0.99, - "description":"Now with MULTIPLAYER*!!!!! Race to the top against other Doodle Jumpers!\n\nDoodle Jump\u00ae is: \n- one of ALL-TIME TOP SELLING iPhone apps\n- THE KING OF CASUAL GAMES \n- THE MOST ADDICTIVE App Store game\n- POSSIBLY THE BEST iPHONE GAME EVER \n- A MUST HAVE!\n\nEasy to learn, difficult to master - there is no better title to introduce an iPhone or iPod touch to a new gamer!\n\nFrom prime-time sitcoms (BIG BANG THEORY) to late night TV (JIMMY FALLON) to a fashion accessory for pop stars (LADY GAGA), Doodle Jump is EVERYWHERE! It's a cultural craze, a hot new trend!\n\nDoodle Jump is the WINNER of 2010 APPLE DESIGN AWARD for excellence in design, user experience, innovation, performance, technology adoption, and quality! This is the OSCAR/ACADEMY AWARD of iPhone Apps!\n\n\"Doodle Jump is to the iPhone what Super Mario Bros was to the NES\" - player review\n\n\"possibly the best iPhone game ever created\" - Touch Arcade\n\n**********\nOver 30 FREE UPDATES (and counting), 8 INCREDIBLE WORLDS including SPACE, JUNGLE, UNDERWATER, WINTER, HALLOWEEN, SOCCER..., 3 SECRET MODES, HOURS and HOURS of gameplay, and much, much more!\n**********\n\niTunes reviews (US) \n****\n\"I just got dumped cuz I wouldn't put this game down! And I just kept playing while she walked away... ITS THAT GOOD!\"\n\n\"Somehow it's better than sleep for me. I am sick, sleep deprived, and achy, and yet I cannot put it down\"\n\n\"Coming from someone who owns a PS3, Wii, and Xbox 360, I play this game more!! This game is amazing!!\"\n\n\nMedia reviews:\n****\n\"Doodle Jump is a perfect micro-game, insanely addictive, and deliciously replayable. Go get it.\" - MacWorld.com\n\n\"the most addicting iPhone game yet?\" -GIZMODO\n\n\"...the king of casual games on the App Store ...tons of updates and lots and lots of gameplay in a super simple and accessible package.\" - TUAW\n\n\nSo, what is it? \n****\nIn Doodle Jump, you guide Doodle the Doodler\u2014using some of the most subtle and accurate tilt controls in existence\u2014on a springy journey up, up, up a sheet of graph paper, picking up jet packs, avoiding black holes, and blasting baddies with nose balls along the way.\n\nLaugh with delight as Doodle\u2122 blows past other players' actual score markers scribbled in the margins. And be warned: this game is insanely addictive.\n\n\nFEATURES:\n- 8 incredible worlds + 3 SECRET easter eggs\n- broken, moving, disappearing, moveable, and EXPLODING platforms\n- JET PACKs, PROPELLER HATS, ROCKETS, and springs that fly you higher\n- UFOs, black holes, monsters!\n- jump on monsters to bring them down MARIO-style\n- Submit score to Facebook & Twitter\n- Compete agains Facbook friends!\n- Global leaderboards, achievements!\n\nHow to play:\nTilt to move left or right, tap the screen to shoot.\n\n*Please don't Doodle Jump and drive, and BE WARNED: Doodle Jump is Insanely Addictive!\n\n* --------------------------------\nMULTIPLAYER requires: \n- Game Center\n- Wi-Fi connection\n- at least iPhone 3GS or 2g iPod touch\n- at least iOS 4.1", "genreIds":["6014", "6016", "7001", "7002"], "releaseDate":"2009-03-27T02:01:56Z", "sellerName":"Lima Sky", "currency":"USD", "trackId":307727765, "trackName":"Doodle Jump - BE WARNED: Insanely Addictive!", "genres":["Games", "Entertainment", "Action", "Adventure"], - "releaseNotes":"NEW multiplayer racing achievements! Can you become the Racing Legend by winning 1000 races? or a Racing Hero by winning 500? Win 100 races and you'll be the Racing Champ!\n\nKeep on Doodle Jumping, now with your friends! \u2665 \n\n***** \nIf you like Doodle Jump, please rate it 5-stars in iTunes every time an update comes out! \nAs always, your 5-star iTunes ratings and reviews keep the updates coming! \nThanks for playing Doodle Jump!!!!! \n***** \n\n\n... AND, if you LOVE popping BUBBLE WRAP, be sure to check out our latest app: BUBBLE WRAP http://bit.ly/bubble-wrap-game \n\nFollow us on Twitter for updates on Doodle Jump: \n@LimaSky ( http://twitter.com/LimaSky ) \n\nBecome a Doodle Jump fan on facebook: \nhttp://facebook.com/DoodleJump", "primaryGenreName":"Games", "primaryGenreId":6014, "isGameCenterEnabled":true, "supportedDevices":["all"], "wrapperType":"software", "artworkUrl60":"http://a2.mzstatic.com/us/r1000/042/Purple/78/17/a0/mzi.yujiimub.png", "artworkUrl100":"http://a1.mzstatic.com/us/r1000/003/Purple/54/7d/7b/mzl.ruscbbir.jpg", "artistViewUrl":"http://itunes.apple.com/us/artist/lima-sky/id285874818?uo=4", "contentAdvisoryRating":"4+", "trackCensoredName":"Doodle Jump - BE WARNED: Insanely Addictive!", "trackViewUrl":"http://itunes.apple.com/us/app/doodle-jump-be-warned-insanely/id307727765?mt=8&uo=4", "languageCodesISO2A":["EN"], "fileSizeBytes":"19610515", - "screenshotUrls":["http://a4.mzstatic.com/us/r1000/057/Purple/5b/c4/38/mzl.qgoaroqj.jpg", "http://a5.mzstatic.com/us/r1000/033/Purple/37/dd/84/mzl.vpyrlcom.jpg", "http://a1.mzstatic.com/us/r1000/009/Purple/e4/95/15/mzl.mtxcppsf.jpg", "http://a2.mzstatic.com/us/r1000/033/Purple/e1/22/46/mzl.nrecunmv.jpg", "http://a4.mzstatic.com/us/r1000/047/Purple/8c/43/47/mzl.frlxtyic.jpg"], "ipadScreenshotUrls":[], "sellerUrl":"http://www.LimaSky.com", "averageUserRatingForCurrentVersion":4.5, "userRatingCountForCurrentVersion":1480, "artworkUrl512":"http://a1.mzstatic.com/us/r1000/003/Purple/54/7d/7b/mzl.ruscbbir.jpg", "trackContentRating":"4+", "averageUserRating":4.5, "userRatingCount":195969}, - {"version":"13.0.1", "kind":"software", "artistId":335928800, "artistName":"Get Set Games", "price":0.00, - "description":"Mega Jump is OpenFeint\u2019s Free Game of the Day - download today and get 1500 Free Mega Points! Download the Game Channel app to get a FREE game every day!\n\n\u201CMega Jump is a standard-bearer for mobile gaming.\u201D - Destructoid\n\n\u2605 \u2605 Over 13 Million Players! Join in! \u2605 \u2605 \n\n\n\u201CThe best casual endless game in the App Store\u201D - AppAdvice.com\n\n\"Superb\" - Slide to Play\n\n\"Incredibly addictive\" - Gamezebo\n\n\u201CYou\u2019ll be amazed with how long you\u2019re going to be playing!\u201D - Appmodo\n\n\nGet ready to blast off on an epic jumping journey with Mega Jump! \n\nCollect coins, grab crazy powerups, and evade monsters to boost yourself to the edge of the Universe and beyond!\n\nMega Jump has got what you need:\n\n\u2605 Eye-popping cartoon graphics and beautiful multi-layered backdrops\n\n\u2605 Grab the Fireball and Super Nova Mega Boosts and hang on for a fiery ride!\n\n\u2605 Collect coins and stars for big points and huge combo boosts!\n\n\u2605 Upgradable powerups! Use the coins you collect to unlock items that make your player bigger, better and faster!\n\n\u2605 Turn into a Balloon! Strap on some Jump Boots! Become a Coin Magnet! Hover with the Action Umbrella or zap enemies with the Power Shield!\n\n\u2605 Multiple stages - try to reach the edge of space and beyond! \n\n\u2605 Reached the final stage? Try the Hard stages for an extra challenge!\n\n\u2605 Watch out for killer items and monsters that'll stop you dead in your tracks!\n\n\u2605 Use Remote Control mode to control your iPad using your iPhone!\n\n\u2605 TV-out support!\n\n\u2605 Unlock all kinds of awesome new characters to play with!\n\n\u2605 Hilarious sound effects and a bumping sound track!\n\n\u2605 Regular updates with new features and upgrades!\n\n\u2605 Dozens of unlockable achievements for maximum gamerscore!\n\n\u2605 Online worldwide leaderboards with Openfeint and Game Center!\n\n\u2605 Compete with your friends on Facebook and Twitter!\n\nWhat are you waiting for? Grab Mega Jump and start jumping! \n\nHonors:\nMega Jump has over 13 million players and counting, and reached the #1 App spot in 28 countries! Thanks to all the Mega Jumpers out there!\n\nJoin us on the Mega Jump Facebook page:\nhttp://www.facebook.com/MegaJump\n\nFollow us on Twitter:\nhttp://twitter.com/getsetgames", "genreIds":["6014", "7001", "6016", "7003"], "releaseDate":"2010-05-05T11:20:31Z", "sellerName":"Get Set Games Inc.", "currency":"USD", "trackId":370398167, "trackName":"Mega Jump", "genres":["Games", "Action", "Entertainment", "Arcade"], - "releaseNotes":"Hey Mega Jumpers! Thanks again for making Mega Jump one of the most popular iOS games on Earth! Your support and feedback has meant the world to us. Now get ready for another huge update! Here's what is new in Mega Jump Update 13:\n\nNew Character: Pepper!\n- Who says penguins can't fly? Pepper just wants to stretch her wings and reach higher than any penguin has before!\n- You asked for it: we made this character based on another very successful Facebook poll!\n\nBackup All of Your Progress to OpenFeint!\n- Thanks to some fantastic advances from OpenFeint, we're now able to backup your progress, unlocked items and Mega Points to your OpenFeint account!\n- If you haven't already created an OpenFeint account, do it now in the settings menu!\n- Never lose your progress again!\n\nAnd More!\n- The game now performs better on all devices!\n- Fixed the stuttering problem when no internet connection is present!\n\nThank you for being one of the millions of people playing Mega Jump! Mega Jump has the best players in the world and we want to thank you for making Mega Jump such a massive hit!\n\nIf you like Mega Jump and want to see more of these awesome updates, please rate it 5 stars in iTunes after every update!\n\nUntil next time: keep on jumping!\n\nJoin us on the Mega Jump Facebook page:\nhttp://www.facebook.com/MegaJump\n\nFollow us on Twitter:\nhttp://twitter.com/getsetgames", "primaryGenreName":"Games", "primaryGenreId":6014, "isGameCenterEnabled":true, "supportedDevices":["all"], "wrapperType":"software", "artworkUrl60":"http://a4.mzstatic.com/us/r1000/050/Purple/1a/4a/0c/mzi.wwogbriw.png", "artworkUrl100":"http://a2.mzstatic.com/us/r1000/054/Purple/41/18/c7/mzl.aibxevtp.png", "artistViewUrl":"http://itunes.apple.com/us/artist/get-set-games/id335928800?uo=4", "contentAdvisoryRating":"4+", "trackCensoredName":"Mega Jump", "trackViewUrl":"http://itunes.apple.com/us/app/mega-jump/id370398167?mt=8&uo=4", "languageCodesISO2A":["EN"], "fileSizeBytes":"20173539", - "screenshotUrls":["http://a3.mzstatic.com/us/r1000/040/Purple/32/f2/81/mzl.jsdkgozs.png", "http://a3.mzstatic.com/us/r1000/028/Purple/23/6c/28/mzl.vocvexgz.png", "http://a1.mzstatic.com/us/r1000/038/Purple/ba/d8/54/mzl.fotcwhrk.png", "http://a4.mzstatic.com/us/r1000/014/Purple/9b/7e/57/mzl.nsudeobl.png", "http://a4.mzstatic.com/us/r1000/041/Purple/23/d7/72/mzl.bvgayewq.png"], "ipadScreenshotUrls":[], "sellerUrl":"http://getsetgames.com", "averageUserRatingForCurrentVersion":4.0, "userRatingCountForCurrentVersion":2127, "artworkUrl512":"http://a2.mzstatic.com/us/r1000/054/Purple/41/18/c7/mzl.aibxevtp.png", "trackContentRating":"4+", "averageUserRating":3.5, "userRatingCount":89386}, - {"version":"1.0.0", "kind":"software", "artistId":326456443, "artistName":"J-Park", "price":0.00, - "description":"******************** OMG it's free! *******************\nAOF2: Jump Jump IS NOW FREE FOR A LIMITED TIME ONLY!\nOne of the Top Best App.\nGet it now while it stays Free!!\n*********************************************************\n\nGame Description:\n\nJump is newly added based on the actions that were implemented in AngerOfStick 2.\nWhen player get to Jump, enemies will try to interrupt. Then player has to avoid or attack the enemies to go up higher.\nThe best score will be determined according to the height.\n\nHow to play Game:\n\nPlayer has to go up higher with defeating enemies By using the buttons for Direction turn, Attack and Jump.\nAlso two step jump is available to climb faster. \nPipe edge can be caught by jump and player can climb with grabbing the end of pipe when he couldn't climb the pipe by jump.\nVarious weapons can be purchased if player get money by killing enemies.\n\n\nSupport Information: \nFor additional support, please contact: \nE-mail : pjh097@gmail.com", "genreIds":["6014", "7002", "6016", "7014"], "releaseDate":"2011-05-13T04:11:27Z", "sellerName":"junghyun park", "currency":"USD", "trackId":435883923, "trackName":"AngerOfStick2: Jump Jump", "genres":["Games", "Adventure", "Entertainment", "Role Playing"], "releaseNotes":"", "primaryGenreName":"Games", "primaryGenreId":6014, "isGameCenterEnabled":true, "supportedDevices":["all"], "wrapperType":"software", "artworkUrl60":"http://a2.mzstatic.com/us/r1000/048/Purple/85/30/76/mzi.qzyzlwut.png", "artworkUrl100":"http://a2.mzstatic.com/us/r1000/049/Purple/54/24/b5/mzm.pdjlvdtm.jpg", "artistViewUrl":"http://itunes.apple.com/us/artist/j-park/id326456443?uo=4", "contentAdvisoryRating":"9+", "trackCensoredName":"AngerOfStick2: Jump Jump", "trackViewUrl":"http://itunes.apple.com/us/app/angerofstick2-jump-jump/id435883923?mt=8&uo=4", "languageCodesISO2A":["EN"], "fileSizeBytes":"7628301", - "screenshotUrls":["http://a2.mzstatic.com/us/r1000/016/Purple/ff/8b/8c/mzl.dbjromar.jpg", "http://a1.mzstatic.com/us/r1000/056/Purple/91/c0/1b/mzl.ogzwupoo.jpg", "http://a3.mzstatic.com/us/r1000/010/Purple/8e/bb/47/mzl.cevjfrsd.jpg", "http://a5.mzstatic.com/us/r1000/039/Purple/17/b7/d9/mzl.wbeydmqv.jpg", "http://a1.mzstatic.com/us/r1000/058/Purple/33/68/8e/mzl.xwaflhst.jpg"], "ipadScreenshotUrls":[], "sellerUrl":"http://appgame.blogspot.com", "averageUserRatingForCurrentVersion":4.0, "userRatingCountForCurrentVersion":2286, "artworkUrl512":"http://a2.mzstatic.com/us/r1000/049/Purple/54/24/b5/mzm.pdjlvdtm.jpg", "trackContentRating":"9+", "averageUserRating":4.0, "userRatingCount":2286}, - {"version":"1.9.0", "kind":"software", "artistId":306939927, "artistName":"Chad Towns", "price":0.99, - "description":"The Doodle Army wants you!\nEnlist today and cut down wave after wave of enemies in this endless shooting adventure! Hear the sweet screams of your victims as you strafe them with submachine gun fire or explode them with grenades and roast their remains with the flamethrower.\n\nThe in game tutorial \"Drill Sergeant\" will guide you through the basics in Boot Camp. Soon you will be on your way to creating your very own heaping piles of bloody bad guy parts. See how far you can go before the enemy overwhelms you.\n\n-Employ over 40 different weapons including:\npistols, submachine guns, sniper rifles, shotguns, grenade launchers,assault rifles, chainsaws, lasers, grenades, and the dreaded flamethrower\n\n-Play as one of over 40 unlock-able characters in one of six battle zones. \n\nZombie Town\nVietnam\nNormandy\nBoot Camp\nEgypt\nMars\n\n-Two control styles available.\n-Continue your progress with checkpoint auto saving.\n\nPast Updates:\nNov 3rd - Zombie Survival\nSept 19th - Space Jump\nAug 10th - Doodle Camel Attack\nJuly 3rd - Boats, Planes and Submarines\nMay 21st - Rescue Chopper\nApr 28th - ATV Ride\nMar 17th - Mars Mine Mission \nFeb 12th - Urban Undead Mission \n\nNow with Cheat Mode to unlock all missions.\n\nFor gameplay videos youTube search: \"Doodle Army\"\n\nAlso try:\nGlobs\nBastion\nPocket Kite\nJonah & the Whale\n\nSUPPORT EMAIL: \niPhoneGlobs@gmail.com\n\nTHANK YOU:\n Thank you to the users for your support and feedback. We read and respond to all legitimate suggestions and issues.\n\nSpecial Thanks:\nsid187, da shiz wiz 19, Kunning, Jacques B. (jak56), Umang J. Shah (ultimo), Cody R. (iPro), jchampl, The Bat Outta Hell, Asaki Tay (Aspargusman), derek420, Fernando (felnan), Scott Lanoue (the prez) and LordGek", "genreIds":["6014", "7002", "7001"], "releaseDate":"2010-01-14T05:42:41Z", "sellerName":"Chad Towns", "currency":"USD", "trackId":349276209, "trackName":"Doodle Army", "genres":["Games", "Adventure", "Action"], "releaseNotes":"*Added new mini game* Urban Undead - Survival\n\nMake a final stand and defend your bunker against the undead army!", "primaryGenreName":"Games", "primaryGenreId":6014, "isGameCenterEnabled":false, "supportedDevices":["all"], "wrapperType":"software", "artworkUrl60":"http://a3.mzstatic.com/us/r1000/059/Purple/1e/31/6b/mzi.qbbwyibn.png", "artworkUrl100":"http://a5.mzstatic.com/us/r1000/038/Purple/78/87/62/mzi.mltagvog.png", "artistViewUrl":"http://itunes.apple.com/us/artist/chad-towns/id306939927?uo=4", "contentAdvisoryRating":"9+", "trackCensoredName":"Doodle Army", "trackViewUrl":"http://itunes.apple.com/us/app/doodle-army/id349276209?mt=8&uo=4", "languageCodesISO2A":["EN"], "fileSizeBytes":"13632135", - "screenshotUrls":["http://a3.mzstatic.com/us/r1000/046/Purple/3e/dc/15/mzl.fkoppyti.png", "http://a5.mzstatic.com/us/r1000/042/Purple/69/79/57/mzl.buuxdfsg.png", "http://a5.mzstatic.com/us/r1000/017/Purple/f3/f0/b9/mzl.ibjdcwzq.png", "http://a2.mzstatic.com/us/r1000/045/Purple/aa/8a/ce/mzl.vlymxwcm.png", "http://a2.mzstatic.com/us/r1000/012/Purple/42/a2/c9/mzl.qfyxhnus.png"], "ipadScreenshotUrls":[], "sellerUrl":"http://bigstickgames.atspace.com/doodlehome.htm", "averageUserRatingForCurrentVersion":4.0, "userRatingCountForCurrentVersion":1579, "artworkUrl512":"http://a5.mzstatic.com/us/r1000/038/Purple/78/87/62/mzi.mltagvog.png", "trackContentRating":"9+", "averageUserRating":4.0, "userRatingCount":9104}, - {"version":"1.0", "kind":"software", "artistId":285874818, "artistName":"Lima Sky", "price":0.99, - "description":"An amazingly beautiful special Christmas version of one of the most addictive and best-selling iOS apps of all time, Doodle Jump\u00ae!\n\n\"Lima Sky has done it again! This is a really fun game to play!!! A must have for any Doodle Jump fan!!!\" - iTunes review\n\nCan you help Doodle\u2122 jump up all the way to the North Pole?\n\nDoodle Jump Christmas Special features all NEW STUNNING GRAPHICS, all NEW paths and challenges, all NEW monsters, a SUPER COOL ROCKET power-up, and much, much more!\n\nIt's all you LOVE about the original Doodle Jump and then some! There's no better way to get into the CHRISTMAS SPIRIT this year than playing Doodle Jump Christmas Special!\n\nAND, if you're looking for a LAST MINUTE CHRISTMAS GIFT, don't forget you can GIFT THIS APP - (at the bottom of this page on iPhone/iPod or just click on the arrow next to \"Buy App\" in iTunes)\n\n-----\nJust like the original, FREE updates will be coming to this one as well!\n\nNO OTHER app (except maybe for the AWESOME Pocket God) has given away more FREE updates than Doodle Jump, and we WILL continue to do so!\n-----\n\n\u2665 MERRY CHRISTMAS, HAPPY HOLIDAYS, AND A SUPER-AWESOME-HAPPY 2011 TO ALL YOU DOODLE JUMPERS! THANK YOU FOR MAKING DOODLE JUMP SUCH AN INCREDIBLE PHENOMENON! \u2665", "genreIds":["6014", "7002", "7003"], "releaseDate":"2010-12-15T11:23:24Z", "sellerName":"Lima Sky", "currency":"USD", "trackId":409673985, "trackName":"Doodle Jump Christmas Special", "genres":["Games", "Adventure", "Arcade"], "releaseNotes":"", "primaryGenreName":"Games", "primaryGenreId":6014, "isGameCenterEnabled":true, "supportedDevices":["all"], "wrapperType":"software", "artworkUrl60":"http://a2.mzstatic.com/us/r1000/007/Purple/e7/32/ad/mzi.vwvftcvr.png", "artworkUrl100":"http://a1.mzstatic.com/us/r1000/038/Purple/f8/e1/fb/mzi.drgcioou.png", "artistViewUrl":"http://itunes.apple.com/us/artist/lima-sky/id285874818?uo=4", "contentAdvisoryRating":"4+", "trackCensoredName":"Doodle Jump Christmas Special", "trackViewUrl":"http://itunes.apple.com/us/app/doodle-jump-christmas-special/id409673985?mt=8&uo=4", "languageCodesISO2A":["EN"], "fileSizeBytes":"18023160", - "screenshotUrls":["http://a5.mzstatic.com/us/r1000/051/Purple/ea/7e/c6/mzl.bzeacfro.jpg", "http://a4.mzstatic.com/us/r1000/015/Purple/5d/dd/a0/mzl.xjbpyqgu.png", "http://a2.mzstatic.com/us/r1000/011/Purple/7e/19/9d/mzl.fgvsttao.png", "http://a3.mzstatic.com/us/r1000/008/Purple/f8/70/93/mzl.eowlfflu.png", "http://a2.mzstatic.com/us/r1000/033/Purple/4d/1c/59/mzl.hiyxctya.png"], "ipadScreenshotUrls":[], "sellerUrl":null, "averageUserRatingForCurrentVersion":4.0, "userRatingCountForCurrentVersion":860, "artworkUrl512":"http://a1.mzstatic.com/us/r1000/038/Purple/f8/e1/fb/mzi.drgcioou.png", "trackContentRating":"4+", "averageUserRating":4.0, "userRatingCount":1681}, - {"version":"1.2", "kind":"software", "artistId":317975787, "artistName":"OMGmode Software Inc.", "price":0.99, - "description":"Cheats and Tips Guide for Doodle Jump AND Pocket God! \n\n*This app is unofficial, please read Disclaimer at bottom of description* \n\nNeed some help in Doodle Jump or Pocket God. Included in this app is a full cheat list for both games. More cheats than any other app for either of these games!\n\nYou can carry your guide around easily to a friends house and e-mail your friends specific sections right from your iPhone or iPod Touch.\n\n\nAlso check out these Combo Packs:\n\u2022 Sims World Adventures and Sims 3 Cheats\n\u2022 Doodle God and Angry Birds Cheats\n\u2022 SimCity & Flight Control Cheats\n\u2022 Bejeweled 2 & Plants vs. Zombies Cheats\n\u2022 GTA: Chinatown Wars & Gangstar Cheats\n\nOr search for omgmode for more cheat and guide apps! Do not accept any imitation apps.\n\n\nDisclaimer:\n---------\n - This is an unofficial guide to Doodle Jump and Pocket God. This unofficial guide was created by OMGmode Software Inc. I am not affiliated with Lima Sky and Bolt Creative in any manner. Neither Lima Sky and Bolt Creative nor has anyone else authorized, sponsored or sanctioned this unofficial guide. It is the sole creation and responsibility of OMGmode Software Inc.\n\n- All characters and their names and all places and events and all other aspects concerning Doodle Jump and Pocket God are the property of their respective owners. All trademark and copyright concerning Doodle Jump and Pocket God are the property of their respective owners. I make no claim to and do not have any rights to any of the foregoing.\n\n- In creating this unofficial guide to Doodle Jump and Pocket God, I assert its rights under the \"fair use\" doctrine pursuant to United States copyright law and the equivalent in other jurisdictions. If you believe that there has been a contravention of your proprietary rights then email details to legal@omgmode.com.", "genreIds":["6006", "6014", "7002", "7001"], "releaseDate":"2010-04-09T07:00:00Z", "sellerName":"OMGmode Software Inc.", "currency":"USD", "trackId":363633501, "trackName":"Doodle Jump & Pocket God Cheats (Combo Pack)", "genres":["Reference", "Games", "Adventure", "Action"], "releaseNotes":"-New tip guide for doodle jump", "primaryGenreName":"Reference", "primaryGenreId":6006, "isGameCenterEnabled":false, "supportedDevices":["all"], "wrapperType":"software", "artworkUrl60":"http://a2.mzstatic.com/us/r1000/005/Purple/2c/87/91/mzl.estkymki.png", "artworkUrl100":"http://a3.mzstatic.com/us/r1000/010/Purple/c2/f2/83/mzl.rxunmcqv.png", "artistViewUrl":"http://itunes.apple.com/us/artist/omgmode-software-inc/id317975787?uo=4", "contentAdvisoryRating":"4+", "trackCensoredName":"Doodle Jump & Pocket God Cheats (Combo Pack)", "trackViewUrl":"http://itunes.apple.com/us/app/doodle-jump-pocket-god-cheats/id363633501?mt=8&uo=4", "languageCodesISO2A":["EN"], "fileSizeBytes":"481472", - "screenshotUrls":["http://a1.mzstatic.com/us/r1000/019/Purple/9b/58/ff/mzl.pvmivldx.png", "http://a1.mzstatic.com/us/r1000/031/Purple/f6/69/a2/mzl.dwhmxqct.png", "http://a5.mzstatic.com/us/r1000/029/Purple/50/45/c8/mzl.vxkazlya.png", "http://a5.mzstatic.com/us/r1000/057/Purple/d0/b1/fa/mzl.omvemnkv.png"], "ipadScreenshotUrls":[], "sellerUrl":"http://www.omgmode.com", "averageUserRatingForCurrentVersion":3.0, "userRatingCountForCurrentVersion":617, "artworkUrl512":"http://a3.mzstatic.com/us/r1000/010/Purple/c2/f2/83/mzl.rxunmcqv.png", "trackContentRating":"4+", "averageUserRating":3.0, "userRatingCount":1025}, - {"version":"2.0.0", "kind":"software", "artistId":388519250, "artistName":"Bluepepper, Inc.", "price":0.99, - "description":"In Doodle Bouncing Star, you can create your own character to jump up the platforms! Use the editor tool to draw and create your own bouncing stars - You can even import photos from your camera album and edit them using the editor. Help the disposed robots escape from the scrapyard by making them jump as high as possible. Collect Blue points to unlock more characters and costumes! \n\n--------\nFeatures\n--------\n- Create your own characters \n- Editor tool to draw and edit pictures from your photo album \n- Moving, springy, broken, electric platforms \n- Items to temporarily enhance characters abilities to jump higher! \n- Points to unlock more characters and costumes\n- Items to Avoid: Mirror, Ice, Weight\n- Submit score to Facebook\n- Game Center support\n\nIf you experience an app crash we're very sorry about this, we will fix this problem asap. Please send us an email to tell us the iOS version of your device. It will help with our next update. \nEmail: support@bluepepper.co.kr \n\n-----------\n\niTunes reviews (US)\n****\n\"it looks sleek, easier than doodle jump, many character to play, various costumes to put on I love it\"\n\n\"This is my favorite app!! It is so unique and awesome!!!\"\n\n\"I like this game better than doodle jump\"\n\n-----------\niTunes reviews (UK)\n****\n\"Great! This app is amazing. It kept me and my little brother entertained for ages. I have over a 100 apps however, I use this one more often! I would rate this to anyone who loves games. It is fabulous.\"\n\n\"Awesome gameplay - This game has a lot going for it when you consider that it builds on the success of games like Doodle Jump with unique additions and a solid commitment to further updates. I'm looking forward to future content but am totally enjoying creating my own characters for now using the ingame editor. Update:Update has added the challenge that I was looking forward to! I've already showed this game to people who love putting on their favorite avatars as their jumping star. Funny how the people who say doodle jump is better likely have no personal effects to customize their character with.\"\n\n-----------\niTunes reviews (Canada)\n****\n\"Great fun! - Awesome graphics, challenging, reliable (no crashes) and ad free! I definitely recommend this app!\"\n\n-----------\niTunes reviews (FRANCE)\n****\n\u201CSuper game. Very similar to froggy and mega jump but better because you can design and draw your personal character and you can add costumes like angel /wings /demon /antennas\u2026 The characters have different strengths so the game play is unique; it\u2019s ONE OF THE BEST APPS FROM ALL THE JUMPING GAMES!\u201D\n\n\u201CI think it\u2019s a very good game, this game can be competed with doodle jump. I love the music, the fact that I can customize my own character. I love doodling.\u201D\n\n\u201CLove this game and all the features on it\u201D\n\n-----------\n\n\"Sick of Doodle Jump? Then Checkout Doodle Bouncing Star\" - appadvice\n\n-----------\nHow To Play\n-----------\nTilt to move left or right. Play with your favorite character that you've created! Import photos from your album and doodle on them. Doodle as many characters as you want and show it off to everyone!\n-----------", "genreIds":["6014", "7001", "6016", "7002"], "releaseDate":"2010-12-15T07:23:38Z", "sellerName":"Bluepepper, Inc.", "currency":"USD", "trackId":403728364, "trackName":"Doodle Bouncing Star", "genres":["Games", "Action", "Entertainment", "Adventure"], "releaseNotes":"\u2605You can now unlock your characters for free!\n\u2605Character Editor fixed\n\u2605New Mode added (Extreme Mode!!!)", "primaryGenreName":"Games", "primaryGenreId":6014, "isGameCenterEnabled":true, "supportedDevices":["all"], "wrapperType":"software", "artworkUrl60":"http://a2.mzstatic.com/us/r1000/051/Purple/95/d0/50/mzi.ponxstkd.png", "artworkUrl100":"http://a1.mzstatic.com/us/r1000/003/Purple/73/af/b8/mzl.hufgtcgu.png", "artistViewUrl":"http://itunes.apple.com/us/artist/bluepepper-inc/id388519250?uo=4", "contentAdvisoryRating":"4+", "trackCensoredName":"Doodle Bouncing Star", "trackViewUrl":"http://itunes.apple.com/us/app/doodle-bouncing-star/id403728364?mt=8&uo=4", "languageCodesISO2A":["EN"], "fileSizeBytes":"16422355", - "screenshotUrls":["http://a5.mzstatic.com/us/r1000/053/Purple/9f/ee/37/mzl.hawpirbj.png", "http://a5.mzstatic.com/us/r1000/000/Purple/99/bf/70/mzl.newsrcpo.png", "http://a5.mzstatic.com/us/r1000/054/Purple/d7/1d/0b/mzl.gvlpcvmz.png", "http://a4.mzstatic.com/us/r1000/035/Purple/ec/9c/e1/mzl.rhpvfcuk.png", "http://a2.mzstatic.com/us/r1000/040/Purple/50/c3/3c/mzl.nsyzfzgb.png"], "ipadScreenshotUrls":[], "sellerUrl":"http://facebook.com/doodlebs", "averageUserRatingForCurrentVersion":3.0, "userRatingCountForCurrentVersion":34, "artworkUrl512":"http://a1.mzstatic.com/us/r1000/003/Purple/73/af/b8/mzl.hufgtcgu.png", "trackContentRating":"4+", "averageUserRating":2.5, "userRatingCount":2247}, - {"version":"1.0.3", "kind":"software", "artistId":284419051, "artistName":"Glu Games Inc.", "price":0.99, - "description":"WARNING! HIGHLY ADDICTIVE GAMING CONTENT!\n\n\u201CGraphically, Jump O\u2019Clock utilizes a beautiful steampunk style that is both visually appealing and quite fitting for the environment in which the game occurs.\u201D\n- App Smile 5/5\n\n\"one of the most polished and easy-to-play platform jumpers on the iPhone\" \n- TouchGen 4/5\n____________________________________\n\nPlaying Jump O'Clock can lead to severely extended sessions of gameplay! Take control of the lovable steampunk robot LE0 and jump from gear to gear while avoiding hazards in an endless upward world. Collect bolts to fill your SUPER-JUMP METER, and BOOST the height of your jumps. Timing is crucial to keep from winding up on the wrong side of the razor-sharp teeth, scalding steam, electrified wires or broken pipes. Connect to OpenFeint and compete for the dizzying heights of high-score greatness. If you've got time, Jump O'Clock has your challenge - an endless platform adventure which never plays the same twice. Why try and beat a clock when you can JUMP O'CLOCK?\n\nFEATURES\n\u2713Endless vertical platform game - LIKE DOODLE JUMP - jump from gear to gear in an effort to climb as high as possible\n\n\u2713The infinite adventure is NEVER THE SAME GAME TWICE!\n\n\u2713OPENFEINT ENABLED! Challenge friends and post and share the highest scores with other players, TWITTER and FACEBOOK. \n\n\u2713Earn more points as LE0 climbs higher and higher in the clockworks. COLLECT BOLTS for extra points and to fill the SUPER-JUMP METER, earning BOOSTS to jump HIGHER.\n\n\u271315 additional CHALLENGES ranging from mildly tricky to devilishly difficult.\n\nFOLLOW US at\ntwitter.com/glumobile\nfacebook.com/glumobile", "genreIds":["6014", "7002", "6016", "7001"], "releaseDate":"2010-05-20T02:10:10Z", "sellerName":"Glu Games Inc", "currency":"USD", "trackId":372410289, "trackName":"Jump O'Clock", "genres":["Games", "Adventure", "Entertainment", "Action"], - "releaseNotes":"Bug fixes and other improvements to game performance.\n_________________________________\n\nCheck out our latest game:\n\n\u2713Build-a-lot 2: Town of the Year!\nhttp://bit.glu.com/cJIVR0\n\n\u2713World Series of Poker Hold'em Legend - http://bit.ly/aUDwhp\n\nFOLLOW US at\ntwitter.com/glumobile\nfacebook.com/glumobile", "primaryGenreName":"Games", "primaryGenreId":6014, "isGameCenterEnabled":false, "supportedDevices":["all"], "wrapperType":"software", "artworkUrl60":"http://a3.mzstatic.com/us/r1000/043/Purple/58/bc/d8/mzl.effliwdi.png", "artworkUrl100":"http://a4.mzstatic.com/us/r1000/055/Purple/59/eb/de/mzl.aupixtbw.jpg", "artistViewUrl":"http://itunes.apple.com/us/artist/glu-games-inc/id284419051?uo=4", "contentAdvisoryRating":"4+", "trackCensoredName":"Jump O'Clock", "trackViewUrl":"http://itunes.apple.com/us/app/jump-oclock/id372410289?mt=8&uo=4", "languageCodesISO2A":["EN"], "fileSizeBytes":"16038263", - "screenshotUrls":["http://a4.mzstatic.com/us/r1000/007/Purple/47/37/6e/mzl.enxeuakd.jpg", "http://a1.mzstatic.com/us/r1000/027/Purple/7d/41/eb/mzl.ntsprkwx.jpg", "http://a2.mzstatic.com/us/r1000/029/Purple/e8/c6/e4/mzl.kqhsddgw.jpg", "http://a4.mzstatic.com/us/r1000/014/Purple/30/2e/30/mzl.cgdqwwuh.jpg", "http://a2.mzstatic.com/us/r1000/008/Purple/aa/7a/70/mzl.szeefugx.jpg"], "ipadScreenshotUrls":[], "sellerUrl":"http://www.glu.com", "averageUserRatingForCurrentVersion":3.5, "userRatingCountForCurrentVersion":3269, "artworkUrl512":"http://a4.mzstatic.com/us/r1000/055/Purple/59/eb/de/mzl.aupixtbw.jpg", "trackContentRating":"4+", "averageUserRating":3.5, "userRatingCount":3798}, - {"version":"1.0", "kind":"software", "artistId":363707253, "artistName":"Guo Lingfeng", "price":1.99, - "description":"Cheats and Tips Guide for Plants vs.Zombies! \n\n*This app is unofficial, please read Disclaimer at bottom of description* \n\nNeed some help in Plants vs.Zombies. \n\nYou can carry your guide around easily to a friends house and e-mail your friends specific sections right from your iPhone or iPod Touch.\n\n\nDisclaimer:\n---------\n- This is an unofficial guide to Plants vs.Zombies. This unofficial guide was created by Doodle Stick Software Inc. I am not affiliated with PopCap games Inc. in any manner. Neither PopCap games Inc. has anyone else authorized, sponsored or sanctioned this unofficial guide. It is the sole creation and responsibility of Doodle Stick Software Inc.\n\n- All characters and their names and all places and events and all other aspects concerning Plants vs.Zombies are the property of their respective owners. All trademark and copyright concerning Plants vs.Zombies are the property of their respective owners. I make no claim to and do not have any rights to any of the foregoing.\n\n- In creating this unofficial guide to Plants vs.Zombies, I assert its rights under the \"fair use\" doctrine pursuant to United States copyright law and the equivalent in other jurisdictions. If you believe that there has been a contravention of your proprietary rights then email details to raydownraydown4@gmail.com.", "genreIds":["6016", "6014", "7003", "7001"], "releaseDate":"2010-05-08T05:37:17Z", "sellerName":"Guo Lingfeng", "currency":"USD", "trackId":369854242, "trackName":"Doodle Jump & Zombie Farm & Plants vs.Zombies Cheats (Combo Pack)", "genres":["Entertainment", "Games", "Arcade", "Action"], "releaseNotes":"", "primaryGenreName":"Entertainment", "primaryGenreId":6016, "isGameCenterEnabled":false, "supportedDevices":["all"], "wrapperType":"software", "artworkUrl60":"http://a1.mzstatic.com/us/r1000/055/Purple/ae/6c/62/mzl.wouosbaw.png", "artworkUrl100":"http://a2.mzstatic.com/us/r1000/004/Purple/22/f6/57/mzl.dkuouxta.png", "artistViewUrl":"http://itunes.apple.com/us/artist/guo-lingfeng/id363707253?uo=4", "contentAdvisoryRating":"4+", "trackCensoredName":"Doodle Jump & Zombie Farm & Plants vs.Zombies Cheats (Combo Pack)", "trackViewUrl":"http://itunes.apple.com/us/app/doodle-jump-zombie-farm-plants/id369854242?mt=8&uo=4", "languageCodesISO2A":["EN"], "fileSizeBytes":"362425", - "screenshotUrls":["http://a1.mzstatic.com/us/r1000/050/Purple/b2/8f/d2/mzl.tdxcsvvg.png", "http://a4.mzstatic.com/us/r1000/032/Purple/7b/b0/20/mzl.ckqtgtxn.png", "http://a1.mzstatic.com/us/r1000/055/Purple/31/e4/1c/mzl.gglwhxcc.png", "http://a4.mzstatic.com/us/r1000/046/Purple/7e/ad/b1/mzl.rlkywglx.png", "http://a3.mzstatic.com/us/r1000/003/Purple/b9/8c/7f/mzl.grbsrnbm.png"], "ipadScreenshotUrls":[], "sellerUrl":"http://www.e383kjfdl.com", "averageUserRatingForCurrentVersion":3.0, "userRatingCountForCurrentVersion":560, "artworkUrl512":"http://a2.mzstatic.com/us/r1000/004/Purple/22/f6/57/mzl.dkuouxta.png", "trackContentRating":"4+", "averageUserRating":3.0, "userRatingCount":569}, - {"version":"1.0", "kind":"software", "artistId":336886915, "artistName":"InTekOne, LLC", "price":0.99, - "description":"Doodle Jump Cheats 1.0\n***TAKE YOUR GAME FURTHER***\n\nDoodle Jump is one of the top selling games. \n\nNow you have cheats that will get you ahead of the game. Play the game in a whole new light.\n\nFavorite Reviews:\nLenro writes:\"These are really cool to have!!\"\n\nRobomidget writes: \"I thought I know it all. Some of these tricks I didn't even know!!! Keep them coming\"\n\nDisclaimer:\nThis guide is not endorsed by or affiliated with the creator of this video game or its licensors. This application complies with the US Copyright law guidelines of \"fair use\". All images were cropped with lower resolution and used only to convey what the application is about. All characters, their names, places, and other aspects of the video game described within this application are trademarked by their respective owners. This application does not copy any portion of the game, nor does it contain screenshots of the game, only original text descriptions. If you feel there is a direct copyright or trademark volition that doesn't follow within the \"fair use\" guidelines, please contact us directly to discuss. \n\nRate us 5 star so we can continue sending you update with latest codes.", "genreIds":["6006", "6018"], "releaseDate":"2010-04-13T04:17:40Z", "sellerName":"IntekOne, LLC", "currency":"USD", "trackId":366912977, "trackName":"Doodle Jump Cheats 1.0", "genres":["Reference", "Books"], "releaseNotes":"", "primaryGenreName":"Reference", "primaryGenreId":6006, "isGameCenterEnabled":false, "supportedDevices":["all"], "wrapperType":"software", "artworkUrl60":"http://a1.mzstatic.com/us/r1000/002/Purple/4e/33/8b/mzl.yxipstpm.png", "artworkUrl100":"http://a4.mzstatic.com/us/r1000/002/Purple/b7/94/f9/mzl.alaahfxm.jpg", "artistViewUrl":"http://itunes.apple.com/us/artist/intekone-llc/id336886915?uo=4", "contentAdvisoryRating":"4+", "trackCensoredName":"Doodle Jump Cheats 1.0", "trackViewUrl":"http://itunes.apple.com/us/app/doodle-jump-cheats-1-0/id366912977?mt=8&uo=4", "languageCodesISO2A":["EN"], "fileSizeBytes":"129866", "screenshotUrls":["http://a3.mzstatic.com/us/r1000/035/Purple/12/ac/3d/mzl.awtmztnf.jpg"], "ipadScreenshotUrls":[], "sellerUrl":null, "averageUserRatingForCurrentVersion":2.5, "userRatingCountForCurrentVersion":159, "artworkUrl512":"http://a4.mzstatic.com/us/r1000/002/Purple/b7/94/f9/mzl.alaahfxm.jpg", "trackContentRating":"4+", "averageUserRating":2.5, "userRatingCount":159}, - {"version":"2.0", "kind":"software", "artistId":379064801, "artistName":"Angry Doodle", "price":1.99, - "description":"-------- Total Free ------- \n Doodle Stick War is a fast-paced, action-packed game animation that requires lightning-fast fingers and cunning strategy. Defend your kingdom against the invading stick figure army. Tap, flick, and shake your way to victory in the top castle defense game for iPhone/iPod touch Enjoy the best stick animation in this app!!!!", "genreIds":["6016", "6012"], "releaseDate":"2010-08-06T05:05:36Z", "sellerName":"Jiao Dong", "currency":"USD", "trackId":385251814, "trackName":"Doodle Cartoon Wars Free!!", "genres":["Entertainment", "Lifestyle"], "releaseNotes":"1.fixed a bug\n 2.add 1 movie", "primaryGenreName":"Entertainment", "primaryGenreId":6016, "isGameCenterEnabled":false, "supportedDevices":["all"], "wrapperType":"software", "artworkUrl60":"http://a4.mzstatic.com/us/r1000/006/Purple/72/4b/63/mzi.usgvtqbe.png", "artworkUrl100":"http://a5.mzstatic.com/us/r1000/055/Purple/e8/62/32/mzi.dmrdwrbz.png", "artistViewUrl":"http://itunes.apple.com/us/artist/angry-doodle/id379064801?uo=4", "contentAdvisoryRating":"9+", "trackCensoredName":"Doodle Cartoon Wars Free!!", "trackViewUrl":"http://itunes.apple.com/us/app/doodle-cartoon-wars-free/id385251814?mt=8&uo=4", "languageCodesISO2A":["EN"], "fileSizeBytes":"30372732", - "screenshotUrls":["http://a2.mzstatic.com/us/r1000/054/Purple/aa/6e/1b/mzl.gzcxcfah.jpg", "http://a4.mzstatic.com/us/r1000/018/Purple/6b/b6/13/mzl.sdyjlqyq.jpg", "http://a2.mzstatic.com/us/r1000/051/Purple/dc/1a/7c/mzl.oqoizxqj.jpg", "http://a5.mzstatic.com/us/r1000/047/Purple/5e/7a/16/mzl.qmprffhc.jpg"], "ipadScreenshotUrls":[], "sellerUrl":"http://www.e383kjfdl.com", "averageUserRatingForCurrentVersion":1.0, "userRatingCountForCurrentVersion":6, "artworkUrl512":"http://a5.mzstatic.com/us/r1000/055/Purple/e8/62/32/mzi.dmrdwrbz.png", "trackContentRating":"9+", "averageUserRating":1.0, "userRatingCount":6}, - {"version":"1.2", "kind":"software", "artistId":285874818, "artistName":"Lima Sky", "price":0.00, - "description":"E.B., the Easter Bunny's son, is about to take over the family business. However, before E.B. can become the Easter Bunny himself, he needs to become super-proficient in jumping, and who better to help him sharpen his jumping skills than the best jumper in the entire universe and beyond, Doodle the Doodler! \n\nHop your way through the Easter Bunny\u2019s top-secret candy factory. Save Easter from a chick revolt led by Carlos and his fellow fluffy workers and earn the privilege of becoming a true Easter Bunny by completing all 25 levels. Gather different Easter eggs on each level as you spring up to towering heights.\n\nFEATURES:\n- 25 unlockable levels\n- moving, disappearing, exploding, and breakable platforms\n- candy, chicks, and jump 'n' hop!\n\nHOT TO PLAY:\n-Tilt your device left or right to move in that direction\n-Tap the screen to shoot\n- Collect the egg at the end of each level\n\n\n-----\nDoodle Jump is a mega hit game by Lima Sky. bit.ly/doodle-jump\n\nHOP is a live action/CG animated comedy by Universal Pictures and Illumination Entertainment. www.iwantcandy.com\n\nMovie tickets link is only valid for AMC Theatres in the U.S.", "genreIds":["6014", "7009", "7010"], "releaseDate":"2011-03-15T11:33:13Z", "sellerName":"Lima Sky", "currency":"USD", "trackId":424660922, "trackName":"Doodle Jump: HOP The Movie", "genres":["Games", "Family", "Kids"], "releaseNotes":"- performance improvements\n- instructions (how to play)\n- bug fixes", "primaryGenreName":"Games", "primaryGenreId":6014, "isGameCenterEnabled":true, "supportedDevices":["all"], "wrapperType":"software", "artworkUrl60":"http://a2.mzstatic.com/us/r1000/051/Purple/41/05/9b/mzi.vcdbucdx.png", "artworkUrl100":"http://a5.mzstatic.com/us/r1000/006/Purple/4f/86/8d/mzl.izocqjbz.jpg", "artistViewUrl":"http://itunes.apple.com/us/artist/lima-sky/id285874818?uo=4", "contentAdvisoryRating":"4+", "trackCensoredName":"Doodle Jump: HOP The Movie", "trackViewUrl":"http://itunes.apple.com/us/app/doodle-jump-hop-the-movie/id424660922?mt=8&uo=4", "languageCodesISO2A":["EN"], "fileSizeBytes":"22102821", - "screenshotUrls":["http://a4.mzstatic.com/us/r1000/001/Purple/ad/79/b6/mzl.kwqqhcjd.jpg", "http://a5.mzstatic.com/us/r1000/039/Purple/a8/9c/42/mzl.trcopjpj.jpg", "http://a3.mzstatic.com/us/r1000/051/Purple/67/ee/c8/mzl.fmttanij.jpg", "http://a5.mzstatic.com/us/r1000/004/Purple/5a/32/06/mzl.tfnmshpc.jpg", "http://a3.mzstatic.com/us/r1000/010/Purple/cb/12/c6/mzl.jzfncipb.jpg"], - "ipadScreenshotUrls":["http://a4.mzstatic.com/us/r1000/058/Purple/0d/00/54/mzl.lbjwqqnf.1024x1024-65.jpg", "http://a1.mzstatic.com/us/r1000/051/Purple/7f/71/e2/mzl.nsfvshrd.1024x1024-65.jpg", "http://a3.mzstatic.com/us/r1000/023/Purple/71/e8/88/mzl.kifvaxlu.1024x1024-65.jpg"], "sellerUrl":"http://", "averageUserRatingForCurrentVersion":3.5, "userRatingCountForCurrentVersion":415, "artworkUrl512":"http://a5.mzstatic.com/us/r1000/006/Purple/4f/86/8d/mzl.izocqjbz.jpg", "trackContentRating":"4+", "averageUserRating":3.5, "userRatingCount":3536}, - {"version":"1.2.0", "kind":"software", "artistId":306939927, "artistName":"Chad Towns", "price":0.00, - "description":"The Doodle Army wants you!\nEnlist today and cut down wave after wave of enemies in this endless shooting adventure! Hear the sweet screams of your victims as you strafe them with submachine gun fire or explode them with grenades.\n\nDoodle Army Boot Camp contains the first level of Doodle Army with an in game tutorial to guide you through the basics. Soon you will be on your way to creating your very own heaping piles of bloody bad guy parts. See how far you can go before the enemies overwhelm you.\n\n-Employ several different weapons including pistols, submachine guns, sniper rifles, shot guns, grenade launchers, assault riles and machine guns. \n-Play as one of 10 unlock-able characters. \n-Two control styles available.\n-Continue your progress with checkpoint auto saving.\n\nMore weapons, doodles and missions are available in the full version!\n\nFor gameplay videos youTube search: \"Doodle Army\"\n\nAlso try:\nGlobs\nBastion\nPocket Kite\n\nSUPPORT EMAIL: \niPhoneGlobs@gmail.com\n\nTHANK YOU:\n Thank you to the users for your support and feedback. We read and respond to all legitimate suggestions and issues.", "genreIds":["6014", "6016", "7003", "7002"], "releaseDate":"2010-02-23T12:39:03Z", "sellerName":"Chad Towns", "currency":"USD", "trackId":357413655, "trackName":"Doodle Army Boot Camp", "genres":["Games", "Entertainment", "Arcade", "Adventure"], "releaseNotes":"Added Chopper Mission\nAdded Doodle Selector\nAdded New Doodles", "primaryGenreName":"Games", "primaryGenreId":6014, "isGameCenterEnabled":false, "supportedDevices":["all"], "wrapperType":"software", "artworkUrl60":"http://a3.mzstatic.com/us/r1000/033/Purple/1e/31/6b/mzl.raghnddr.png", "artworkUrl100":"http://a1.mzstatic.com/us/r1000/017/Purple/83/64/a2/mzl.qfiibcqz.png", "artistViewUrl":"http://itunes.apple.com/us/artist/chad-towns/id306939927?uo=4", "contentAdvisoryRating":"9+", "trackCensoredName":"Doodle Army Boot Camp", "trackViewUrl":"http://itunes.apple.com/us/app/doodle-army-boot-camp/id357413655?mt=8&uo=4", "languageCodesISO2A":["EN"], "fileSizeBytes":"9720903", - "screenshotUrls":["http://a2.mzstatic.com/us/r1000/040/Purple/31/fc/58/mzl.obmenpkm.png", "http://a5.mzstatic.com/us/r1000/040/Purple/57/e6/9b/mzl.rqdvylfz.png", "http://a5.mzstatic.com/us/r1000/019/Purple/09/c7/62/mzl.dgovqnjp.png", "http://a3.mzstatic.com/us/r1000/041/Purple/80/73/37/mzl.hqjnchwa.png", "http://a2.mzstatic.com/us/r1000/047/Purple/0c/d7/c5/mzl.ksooghuw.png"], "ipadScreenshotUrls":[], "sellerUrl":"http://bigstickgames.atspace.com/doodlehome.htm", "averageUserRatingForCurrentVersion":4.0, "userRatingCountForCurrentVersion":20720, "artworkUrl512":"http://a1.mzstatic.com/us/r1000/017/Purple/83/64/a2/mzl.qfiibcqz.png", "trackContentRating":"9+", "averageUserRating":3.5, "userRatingCount":57388}, - {"version":"1.1", "kind":"software", "artistId":323623239, "artistName":"RB", "price":0.99, - "description":"**This guide is unofficial, please read the disclaimer at the bottom of this description**\n\nDoodle Jump is a game for the iPhone / iPod Touch developed by Lima Sky. It was the most-downloaded paid app in 5 countries during various months of 2009. This application is a Cheat Guide of the game.\n\n\nDisclaimer\n=============== \n- This is an unofficial guide. It is not created, endorsed by or affiliated with the creators of this game or its licensors. We are not associated with the owners of this game in any manner. No one has authorized, sponsored or sanctioned this unofficial guide.\n\n- All characters and their names and all places and events and all other aspects are the property of their respective owners. All trademark and copyright are the property of their respective owners. We make no claim to and do not have any rights to any of the foregoing.\n\n- In creating this unofficial guide, we assert its rights under the \"fair use\" doctrine pursuant to United States copyright law and the equivalent in other jurisdictions. If you feel there has been a contravention of your proprietary rights then please contact us directly to discuss on mobileappsupport@gmail.com", "genreIds":["6006", "6018"], "releaseDate":"2010-03-09T11:54:02Z", "sellerName":"Rashmi Bajaj", "currency":"USD", "trackId":360569287, "trackName":"Doodle Jump Cheats", "genres":["Reference", "Books"], "releaseNotes":"- Added new code for Easter Bunny\n- Added beginner tips on battling monsters", "primaryGenreName":"Reference", "primaryGenreId":6006, "isGameCenterEnabled":false, "supportedDevices":["all"], "wrapperType":"software", "artworkUrl60":"http://a5.mzstatic.com/us/r1000/026/Purple/b8/90/50/mzl.wscggoyx.png", "artworkUrl100":"http://a4.mzstatic.com/us/r1000/027/Purple/c0/82/b6/mzl.aflsrkvk.png", "artistViewUrl":"http://itunes.apple.com/us/artist/rb/id323623239?uo=4", "contentAdvisoryRating":"4+", "trackCensoredName":"Doodle Jump Cheats", "trackViewUrl":"http://itunes.apple.com/us/app/doodle-jump-cheats/id360569287?mt=8&uo=4", "languageCodesISO2A":["EN"], "fileSizeBytes":"27170", "screenshotUrls":["http://a5.mzstatic.com/us/r1000/025/Purple/64/4a/1b/mzl.hvssmxon.png"], "ipadScreenshotUrls":[], "sellerUrl":"http://mobileapplicationsupport.blogspot.com/", "averageUserRatingForCurrentVersion":3.0, "userRatingCountForCurrentVersion":1496, "artworkUrl512":"http://a4.mzstatic.com/us/r1000/027/Purple/c0/82/b6/mzl.aflsrkvk.png", "trackContentRating":"4+", "averageUserRating":3.0, "userRatingCount":1828}, - {"version":"1.1", "kind":"software", "artistId":323623239, "artistName":"RB", "price":0.99, - "description":"**This guide is unofficial, please read the disclaimer at the bottom of this description**\n\nThis application is a cheat guide with tips and tricks to win at the games \"The Impossible Test\" & \"Doodle Jump\".\n\n\nDisclaimer\n=============== \n- This is an unofficial guide. It is not created, endorsed by or affiliated with the creators of this game or its licensors. We are not associated with the owners of this game in any manner. No one has authorized, sponsored or sanctioned this unofficial guide.\n\n- All characters and their names and all places and events and all other aspects are the property of their respective owners. All trademark and copyright are the property of their respective owners. We make no claim to and do not have any rights to any of the foregoing.\n\n- In creating this unofficial guide, we assert its rights under the \"fair use\" doctrine pursuant to United States copyright law and the equivalent in other jurisdictions. If you feel there has been a contravention of your proprietary rights then please contact us directly to discuss on mobileappsupport@gmail.com", "genreIds":["6006", "6014", "7017", "7003"], "releaseDate":"2010-04-23T12:29:02Z", "sellerName":"Rashmi Bajaj", "currency":"USD", "trackId":368435737, "trackName":"The Impossible Test & Doodle Jump Cheats (Combo Pack)", "genres":["Reference", "Games", "Strategy", "Arcade"], "releaseNotes":"- Added complete walkthrough for the impossible test", "primaryGenreName":"Reference", "primaryGenreId":6006, "isGameCenterEnabled":false, "supportedDevices":["all"], "wrapperType":"software", "artworkUrl60":"http://a2.mzstatic.com/us/r1000/044/Purple/13/ed/de/mzi.flahpqjz.png", "artworkUrl100":"http://a3.mzstatic.com/us/r1000/015/Purple/de/b5/20/mzi.mufqvttn.png", "artistViewUrl":"http://itunes.apple.com/us/artist/rb/id323623239?uo=4", "contentAdvisoryRating":"4+", "trackCensoredName":"The Impossible Test & Doodle Jump Cheats (Combo Pack)", "trackViewUrl":"http://itunes.apple.com/us/app/the-impossible-test-doodle/id368435737?mt=8&uo=4", "languageCodesISO2A":["EN"], "fileSizeBytes":"47478", "screenshotUrls":["http://a3.mzstatic.com/us/r1000/052/Purple/ea/47/cd/mzl.iuswucnl.png", "http://a5.mzstatic.com/us/r1000/000/Purple/14/83/e7/mzl.yxpqxkhe.png"], "ipadScreenshotUrls":[], "sellerUrl":"http://mobileapplicationsupport.blogspot.com/", "averageUserRatingForCurrentVersion":4.0, "userRatingCountForCurrentVersion":5, "artworkUrl512":"http://a3.mzstatic.com/us/r1000/015/Purple/de/b5/20/mzi.mufqvttn.png", "trackContentRating":"4+", "averageUserRating":3.0, "userRatingCount":82}, - {"version":"1.0", "kind":"software", "artistId":334009256, "artistName":"Global Game Holdings Co., Limited", "price":1.99, - "description":"This game is more like CartoonWars.\n To be the hero of the USA doodles.FIGHT FOR HONOR!!!!\n Doodle USA hero is an arcade war game that combined \u201CDefence Genre\u201D and \u201CRTS\u201D.\n\nScenario:\n- In the Doodle Cartoon World, there were two tribes: \u201Cblack and white cartoon\u201D tribe and \u201Ccolortribe. For thousands of years, \u201Cblack and white cartoon\u201D were the slaves of \u201Ccolor\u201D tribe. Heroes of \u201Cblack and white cartoon\u201D tribe united to overcome the violent oppression and to free the tribe. So the war begins\u2026\n- You must become a hero of the \u201Cblack and white cartoon\u201D tribe to free your cartoons.\n\nGoal: \nYou must create special and unique units and must conquer the enemy\u2019s castle.\n\nControl:\n-Right button:Adjust angle of the bow and Shoot arrow\n-Mid button: Produce units", "genreIds":["6014", "7003", "6016", "7001"], "releaseDate":"2010-04-30T05:47:10Z", "sellerName":"Global Game Holdings Co., Limited", "currency":"USD", "trackId":369308179, "trackName":"4-IN-1 Doodle USA hero", "genres":["Games", "Arcade", "Entertainment", "Action"], "releaseNotes":"", "primaryGenreName":"Games", "primaryGenreId":6014, "isGameCenterEnabled":false, "supportedDevices":["all"], "wrapperType":"software", "artworkUrl60":"http://a4.mzstatic.com/us/r1000/000/Purple/92/16/1f/mzl.qtmepbxo.png", "artworkUrl100":"http://a4.mzstatic.com/us/r1000/002/Purple/65/36/04/mzl.tsiggdwj.png", "artistViewUrl":"http://itunes.apple.com/us/artist/global-game-holdings-co-limited/id334009256?uo=4", "contentAdvisoryRating":"4+", "trackCensoredName":"4-IN-1 Doodle USA hero", "trackViewUrl":"http://itunes.apple.com/us/app/4-in-1-doodle-usa-hero/id369308179?mt=8&uo=4", "languageCodesISO2A":["EN"], "fileSizeBytes":"19435077", - "screenshotUrls":["http://a4.mzstatic.com/us/r1000/055/Purple/db/6d/55/mzl.qigldfme.jpg", "http://a2.mzstatic.com/us/r1000/006/Purple/6e/c4/a4/mzl.jgdtggid.jpg", "http://a4.mzstatic.com/us/r1000/032/Purple/76/7e/a8/mzl.rvjfgbnq.jpg", "http://a5.mzstatic.com/us/r1000/010/Purple/d1/a9/1b/mzl.eupljjnh.jpg"], "ipadScreenshotUrls":[], "sellerUrl":"http://www.e383kjfdl.com", "averageUserRatingForCurrentVersion":2.5, "userRatingCountForCurrentVersion":530, "artworkUrl512":"http://a4.mzstatic.com/us/r1000/002/Purple/65/36/04/mzl.tsiggdwj.png", "trackContentRating":"4+", "averageUserRating":2.5, "userRatingCount":533}, - {"version":"1.18.0", "kind":"software", "artistId":321262193, "artistName":"Invictus", "price":0.00, - "description":"\u2605\u2605\u2605 ! Froggy Jump is 1 year old !\u2605\u2605\u2605\nThis calls for a Celebration with your cute little jumping Frog!\n\nReach the Candyland Theme at 105k height to join Froggy's Birthday party!\nCollect him delicious cakes and win new golden party items for Free!\nWhat's more! Collect all the party items to give a special effect to your Froggy!\n\nWant more? Up to 11 EXTRA THEMES are waiting for you, all for FREE:\n\u2605 reach 3k and unlock the SOCCER CUP theme with a soccer player frog\n\u2605 reach 32k and unlock the UNDERWATER theme with a clown-fish frog\n\u2605 reach 50k to unlock the INFERNAL theme with a skeleton frog\n\u2605 reach 60k to unlock the SNOW theme with a yeti frog\n\u2605 reach 70k to unlock the ROCKSTAR theme with your singer frog and !!! collect your own rock band in this mode!!!\n\u2605 reach 80k to unlock the HALLOWEEN theme with a ghost frog\n\u2605 reach 85k to unlock the BUNNY theme with a Bunny-dressed Froggy for FREE\n\u2605 reach 90k to unlock the CHRISTMAS theme with a gingerbread frog\n\u2605 reach 95k to unlock the VALENTINE theme with a pink frog\n\u2605 reach 100k to unlock the JUNGLE theme with a poison-arrow jungle frog\n\nHOW TO PLAY? \nJust jump with your Frog into the air and begin the journey to the galaxy and beyond!\nTilt to move left or right and tap the screen to launch your space-rocket.\nDO YOU WANT TO BE IMMORTAL? BE THE FIRST TO REACH THE ALIEN PLANETS AND THEY WILL BE NAMED AFTER YOU IN THE NEXT UPDATE!\nTwo new planets are still waiting for you.\n\nDAILY WORD GAME:\nThere's a new Word Game every day. Be online and collect the letters daily to win Gems easily!\n\nFEATURES:\n- bouncy, moving, disappearing and spiky platforms and more surprises\n- space rockets, shields, head-bucket, safety laser, magnets and many more items to use\n- air-balloons and bio gas-fire to fly you higher\n- tens of achievements to collect in Openfeint and Game Center\n- numerous enemies to beat and avoid\n- you can jump on monsters to bring them down\n- ingame shop to pimp your frog and to get higher than infinity\n- choose from the clothes in the shop to dress your frog as you like and to show him off in multiplayer\n- find free coins and gems ingame or buy online to be the number one\n- OpenFeint and Game Center support to compare your score to others and track your achievements\n- Easy to play hard to master gameplay\n- New Word game every day\n- numerous themes with different platforms and special skills\n- collect-able gold bars to improve your coin rate and to show off how rich you are\n- mystery boxes to win something unique in every 12 hours!\n- and many, many more\n\nWarning: extreme addiction is inevitable!\n\n________________________________________\nCheck out our other games:\nFly Fu, 4x4 Jam, PinFrog, Brim, Grim Filler, Picosaic, Blastwave, Rollit Smartly, The Escapee, Fly Control, Fly Control HD, Picosaic HD & Truck Jam!\n\nFollow us on Twitter @InvictusGames", "genreIds":["6014", "7003", "6016", "7002"], "releaseDate":"2010-04-21T07:00:00Z", "sellerName":"Invictus Games Ltd.", "currency":"USD", "trackId":364355046, "trackName":"Froggy Jump", "genres":["Games", "Arcade", "Entertainment", "Adventure"], - "releaseNotes":"\u2605\u2605\u2605 Froggy's Birthday Theme is here! \u2605\u2605\u2605\n\nReach the Candyland Theme at 105k height to join Froggy's Birthday party!\nCollect him delicious cakes and win new golden party items for Free!\nWhat's more! Collect all the party items to give a special effect to your Froggy!\n\n_________________________________________\nIf you like Froggy Jump and want to get more free themes and more items, please rate it 5 stars in iTunes after every update!\n\nWe cannot answer review notes in iTunes! Should you have a comment or question, please send us a mail at support@invictus.hu instead of leaving a bad review at iTunes.", "primaryGenreName":"Games", "primaryGenreId":6014, "isGameCenterEnabled":true, "supportedDevices":["all"], "wrapperType":"software", "artworkUrl60":"http://a3.mzstatic.com/us/r1000/036/Purple/4f/c5/8a/mzi.nzjksquq.png", "artworkUrl100":"http://a5.mzstatic.com/us/r1000/026/Purple/57/fc/2f/mzm.ltzhsexm.png", "artistViewUrl":"http://itunes.apple.com/us/artist/invictus/id321262193?uo=4", "contentAdvisoryRating":"4+", "trackCensoredName":"Froggy Jump", "trackViewUrl":"http://itunes.apple.com/us/app/froggy-jump/id364355046?mt=8&uo=4", "languageCodesISO2A":["EN"], "fileSizeBytes":"33370073", - "screenshotUrls":["http://a4.mzstatic.com/us/r1000/056/Purple/ec/cc/ce/mzl.uxoioyhq.jpg", "http://a2.mzstatic.com/us/r1000/029/Purple/ba/97/eb/mzl.unmlbrzl.jpg", "http://a5.mzstatic.com/us/r1000/029/Purple/89/e7/87/mzl.guiabkes.jpg", "http://a3.mzstatic.com/us/r1000/047/Purple/fc/93/e1/mzl.pyoslnwb.jpg", "http://a4.mzstatic.com/us/r1000/022/Purple/ab/1d/a2/mzl.thyabrwc.jpg"], "ipadScreenshotUrls":[], "sellerUrl":"http://www.invictus-games.com/games/iphone-games/froggy-jump", "averageUserRatingForCurrentVersion":4.5, "userRatingCountForCurrentVersion":101, "artworkUrl512":"http://a5.mzstatic.com/us/r1000/026/Purple/57/fc/2f/mzm.ltzhsexm.png", "trackContentRating":"4+", "averageUserRating":3.0, "userRatingCount":39792}, - {"version":"1.0", "kind":"software", "artistId":379064801, "artistName":"Angry Doodle", "price":1.99, - "description":"--------ALL 100 levels-------- \n Cut the rope Best ULTD version guide and Walkthrough!!!! Contain all levels from 1-100 in this app. One of the most popular games at appstore,has finally arrived to the iPhone! *This app is unofficial, please read Disclaimer at bottom of description* With this video walkthrough,you can pass all the levels easily and comfortable. Legal Notice \n Notice \n / Disclaimer: =========== This guide is an unofficial version and is not endorsed by \n\nor affiliated with the creator of this video game or its licensors. This application \n\ncomplies with the US Copyright law guidelines of \"fair use\". All images were cropped \n\nwith lower resolution and used only to convey what the application is about. All \n\ncharacters, their names, places, and other aspects of the video game described within \n\nthis application are trademarked by their respective owners. This application does not \n\ncopy any portion of the game, nor does it contain screenshots of the game, only original \n\ntext descriptions. If you feel there is a direct copyright or trademark violation that \n\ndoesn't follow within the \"fair use\" guidelines, please contact us directly to discuss \n\non our email raydownraydown4@gmail.com.", "genreIds":["6006", "7001", "7003", "6014"], "releaseDate":"2010-11-05T04:05:50Z", "sellerName":"Jiao Dong", "currency":"USD", "trackId":400836195, "trackName":"Cut the Rope ULTD Guide and Cheats", "genres":["Reference", "Action", "Arcade", "Games"], "releaseNotes":"", "primaryGenreName":"Reference", "primaryGenreId":6006, "isGameCenterEnabled":false, "supportedDevices":["all"], "wrapperType":"software", "artworkUrl60":"http://a1.mzstatic.com/us/r1000/016/Purple/40/50/0c/mzi.myyqdraq.png", "artworkUrl100":"http://a5.mzstatic.com/us/r1000/012/Purple/2d/68/7c/mzi.knznqyrj.png", "artistViewUrl":"http://itunes.apple.com/us/artist/angry-doodle/id379064801?uo=4", "contentAdvisoryRating":"4+", "trackCensoredName":"Cut the Rope ULTD Guide and Cheats", "trackViewUrl":"http://itunes.apple.com/us/app/cut-rope-ultd-guide-cheats/id400836195?mt=8&uo=4", "languageCodesISO2A":["EN"], "fileSizeBytes":"17219291", - "screenshotUrls":["http://a3.mzstatic.com/us/r1000/028/Purple/f2/c6/37/mzl.prrtdxof.png", "http://a3.mzstatic.com/us/r1000/000/Purple/56/5b/4b/mzl.kgznxlkg.png", "http://a3.mzstatic.com/us/r1000/048/Purple/34/10/e3/mzl.frkyazdb.png", "http://a4.mzstatic.com/us/r1000/027/Purple/0f/7c/4b/mzl.jujivhrm.png", "http://a2.mzstatic.com/us/r1000/017/Purple/23/77/26/mzl.smzvzucc.jpg"], "ipadScreenshotUrls":[], "sellerUrl":"http://www.e383kjfdl.com", "averageUserRatingForCurrentVersion":2.0, "userRatingCountForCurrentVersion":67, "artworkUrl512":"http://a5.mzstatic.com/us/r1000/012/Purple/2d/68/7c/mzi.knznqyrj.png", "trackContentRating":"4+", "averageUserRating":2.0, "userRatingCount":67}, - {"version":"1.0", "kind":"software", "artistId":379064801, "artistName":"Angry Doodle", "price":1.99, - "description":"--------All game details,cheats,ALL levels Perfact Passed-------- \n\n Plants Vs. Zombies Best pictures Walkthrough and cheats!!!! Contain all levels in this app. One of the most popular games at appstore,has finally arrived to the iPhone! *This app is unofficial, please read Disclaimer at bottom of description* With this video walkthrough,you can pass all the levels easily and comfortable. \n\nLegal Notice \n/ Disclaimer: =========== This guide is an unofficial version and is not endorsed by or affiliated with the creator of this video game or its licensors. This application complies with the US Copyright law guidelines of \"fair use\". All images were cropped with lower resolution and used only to convey what the application is about. All characters, their names, places, and other aspects of the video game described within this application are trademarked by their respective owners. This application does not copy any portion of the game, nor does it contain screenshots of the game, only original text descriptions. If you feel there is a direct copyright or trademark violation that doesn't follow within the \"fair use\" guidelines, please contact us directly to discuss on our email raydownraydown4@gmail.com.", "genreIds":["6006", "7003", "6014", "7001"], "releaseDate":"2010-11-12T06:20:55Z", "sellerName":"Jiao Dong", "currency":"USD", "trackId":401074587, "trackName":"Cheats for Plants vs.Zombies", "genres":["Reference", "Arcade", "Games", "Action"], "releaseNotes":"", "primaryGenreName":"Reference", "primaryGenreId":6006, "isGameCenterEnabled":false, "supportedDevices":["all"], "wrapperType":"software", "artworkUrl60":"http://a2.mzstatic.com/us/r1000/012/Purple/65/5b/78/mzi.boakqjab.png", "artworkUrl100":"http://a4.mzstatic.com/us/r1000/014/Purple/6c/7a/d1/mzi.fosxwsnl.png", "artistViewUrl":"http://itunes.apple.com/us/artist/angry-doodle/id379064801?uo=4", "contentAdvisoryRating":"9+", "trackCensoredName":"Cheats for Plants vs.Zombies", "trackViewUrl":"http://itunes.apple.com/us/app/cheats-for-plants-vs-zombies/id401074587?mt=8&uo=4", "languageCodesISO2A":["EN"], "fileSizeBytes":"14159656", - "screenshotUrls":["http://a5.mzstatic.com/us/r1000/005/Purple/12/08/e6/mzl.ngcnynwh.png", "http://a3.mzstatic.com/us/r1000/020/Purple/c7/02/d9/mzl.vhxdcifq.png", "http://a5.mzstatic.com/us/r1000/023/Purple/6a/c6/4b/mzl.dmundjno.png", "http://a5.mzstatic.com/us/r1000/004/Purple/42/4c/79/mzl.objbhrxd.png"], "ipadScreenshotUrls":[], "sellerUrl":null, "averageUserRatingForCurrentVersion":2.0, "userRatingCountForCurrentVersion":86, "artworkUrl512":"http://a4.mzstatic.com/us/r1000/014/Purple/6c/7a/d1/mzi.fosxwsnl.png", "trackContentRating":"9+", "averageUserRating":2.0, "userRatingCount":89}, - {"version":"1.0", "kind":"software", "artistId":385253248, "artistName":"Angry Sticks", "price":1.99, "description":"--------- Totally Free --------\n Enjoy the best stick animation in this app!!!!", "genreIds":["6016", "7003", "7001", "6014"], "releaseDate":"2010-08-22T02:40:26Z", "sellerName":"YAN SHI", "currency":"USD", "trackId":385253245, "trackName":"Doodle StickWar Free", "genres":["Entertainment", "Arcade", "Action", "Games"], "releaseNotes":"", "primaryGenreName":"Entertainment", "primaryGenreId":6016, "isGameCenterEnabled":false, "supportedDevices":["all"], "wrapperType":"software", "artworkUrl60":"http://a3.mzstatic.com/us/r1000/000/Purple/63/cc/93/mzi.owgitkat.png", "artworkUrl100":"http://a3.mzstatic.com/us/r1000/038/Purple/ce/b4/85/mzi.qtwqkmwn.png", "artistViewUrl":"http://itunes.apple.com/us/artist/angry-sticks/id385253248?uo=4", "contentAdvisoryRating":"9+", "trackCensoredName":"Doodle StickWar Free", "trackViewUrl":"http://itunes.apple.com/us/app/doodle-stickwar-free/id385253245?mt=8&uo=4", "languageCodesISO2A":["EN"], "fileSizeBytes":"19386908", - "screenshotUrls":["http://a4.mzstatic.com/us/r1000/034/Purple/c5/d8/2a/mzl.ptexfxxn.jpg", "http://a1.mzstatic.com/us/r1000/038/Purple/6b/b6/13/mzl.uyodovyh.jpg", "http://a1.mzstatic.com/us/r1000/044/Purple/11/a0/60/mzl.aosjwlqc.jpg", "http://a5.mzstatic.com/us/r1000/016/Purple/85/5c/6f/mzl.jucseuqh.jpg", "http://a3.mzstatic.com/us/r1000/030/Purple/d2/22/97/mzl.cefjmrkg.jpg"], "ipadScreenshotUrls":[], "sellerUrl":"http://www.384334.com", "averageUserRatingForCurrentVersion":2.0, "userRatingCountForCurrentVersion":12, "artworkUrl512":"http://a3.mzstatic.com/us/r1000/038/Purple/ce/b4/85/mzi.qtwqkmwn.png", "trackContentRating":"9+", "averageUserRating":2.0, "userRatingCount":12}, - {"version":"1.9", "kind":"software", "artistId":288257889, "artistName":"Egerter Software", "price":0.00, - "description":"Puppet Jump 3D is a cross between Little Big Planet and Doodle Jump. NEWS: Be sure to get the other two games in the puppet series, Puppet Sprint and Puppet Labyrinth!\n\nUSER QUOTES\n\"Kicks Doodle Jump's butt!\"\n\"Fantastic take on the whole jump genre\"\n\"Graphics and art style are some of the best on iPhone\"\n\"League of its own\"\n\nFEATURES\nJump ever higher on platforms while collecting Puppet Points which can be used to customize your puppet and surroundings. As you get higher you'll encounter moving and breakable platforms to test your leaping skills.\n\nCustomization is extensive with the ability to change your puppet's body, hat, eyes, mouth, material and choose from 10 different backgrounds to give almost a million unique combinations.\n\nPuppet Jump is also an impressive technical achievement, with full per pixel shadow mapping even though it is not natively supported on the iPhone. Custom shaders were written for 3GS that let objects cast shadows on themselves and everything in the scene. This is the same shadow technique found in console games on Xbox 360 and PS3.\n\nOnline global leaderboards and forums through OpenFeint are included. \n\nRESPONSES TO REVIEWS\nThe Troop, Horse freak girl, Stickey tape - It doesn't save your puppet points until you pay for the full game. Resetting to 0 is how it was designed, not a bug!\nTwiggy - You can customize the puppet. See the big customize button on the main menu? Use it! Seriously?!\nMcgroth1 - It's not a ripoff of Doodle Jump, it's a big leap (pun intended) over Doodle Jump. 3D+Customize FTW!\n\nMORE GAMES:\nDoodle Chopper, Puppet Jump, Puppet Sprint, Puppet Labyrinth, Super Soccer Kick 3D, Super Football Kick 3D, Pocket Farm, iFishing, iFishing Saltwater, Dark Raider, Dark Raider S, Blue Skies, Blue Skies 3GS, The Guy Game, The Girl Game, Asteroids 3K\n\nJOIN THE FAN COMMUNITY\n-On Facebook at www.facebook.com/RockingPocketGames\n-On Twitter at twitter.com/RockingPocket", "genreIds":["6014", "7003", "7010", "6016"], "releaseDate":"2010-02-20T02:42:53Z", "sellerName":"Chris Egerter", "currency":"USD", "trackId":352779383, "trackName":"Puppet Jump 3D Lite (bluetooth multiplayer)", "genres":["Games", "Arcade", "Kids", "Entertainment"], "releaseNotes":"-Added community forums in Catalog", "primaryGenreName":"Games", "primaryGenreId":6014, "isGameCenterEnabled":true, "supportedDevices":["all"], "wrapperType":"software", "artworkUrl60":"http://a3.mzstatic.com/us/r1000/022/Purple/f0/a3/70/mzi.pviuwuvi.png", "artworkUrl100":"http://a5.mzstatic.com/us/r1000/032/Purple/8d/e6/0c/mzi.tyockfuf.png", "artistViewUrl":"http://itunes.apple.com/us/artist/egerter-software/id288257889?uo=4", "contentAdvisoryRating":"4+", "trackCensoredName":"Puppet Jump 3D Lite (bluetooth multiplayer)", "trackViewUrl":"http://itunes.apple.com/us/app/puppet-jump-3d-lite-bluetooth/id352779383?mt=8&uo=4", "languageCodesISO2A":["EN"], "fileSizeBytes":"27745934", - "screenshotUrls":["http://a4.mzstatic.com/us/r1000/059/Purple/03/0c/1a/mzl.mysypgtj.jpg", "http://a2.mzstatic.com/us/r1000/038/Purple/de/33/43/mzl.itpyfpjn.jpg", "http://a1.mzstatic.com/us/r1000/021/Purple/0d/e8/34/mzl.ztmtqiqk.jpg", "http://a4.mzstatic.com/us/r1000/027/Purple/7a/1f/18/mzl.cbkxxgox.jpg", "http://a4.mzstatic.com/us/r1000/012/Purple/92/18/13/mzl.ogrglnbj.jpg"], "ipadScreenshotUrls":[], "sellerUrl":"http://www.RockingPocketGames.com", "averageUserRatingForCurrentVersion":4.0, "userRatingCountForCurrentVersion":25, "artworkUrl512":"http://a5.mzstatic.com/us/r1000/032/Purple/8d/e6/0c/mzi.tyockfuf.png", "trackContentRating":"4+", "averageUserRating":3.0, "userRatingCount":6081}, - {"version":"1.0", "kind":"software", "artistId":302877209, "artistName":"Robert Szeleney", "price":0.99, - "description":"**** 50% OFF INTRODUCTORY SALE **** Surf beautiful designed waves, perform incredible stunts and use all your skills to avoid obstacles and execute perfect landings.\n\nFrom the makers of Stick Stunt Biker, Stickman Cliff Diving, Line Runner, Line Jumper, Rope'n'Fly and more\u2026.\n\nLine Surfer is #1 app in various countries! Thank you guys so much, we will of course continue providing updates and adding new features!\n\nFEATURES:\n- Beautiful designed dynamic waves\n- Simple \"one touch\" and fast paced gameplay\n- Uses accelerometer for agil stunt control\n- Various game modes\n- Time modes, Stunt modes and Free mode\n- Free mode for 'Just for fun' surfing\n- Online and Offline highscores and leaderboards\n\nUPDATES\nv1.1 submitted for review:\n- fixed jump off bug where surfer flickered and stayed on ground\n- adjusted jump height\n- improved performance\n- added social elements\n- added fishes\n- new icon\n- updated more games with line birds\n\nFeel free to post your ideas, we will try to implement them as soon as possible.\n\nThank you very much for all your support in our games! We would love to hear your suggestions!\n\nREVIEW and VIDEO\nhttp://www.youtube.com/watch?v=aL6RRQZvO9c\n\n\n****NOTE****\n\nTouch and hold while in air to slow down / brake for perfect landings.\n\n****NOTE****", "genreIds":["6014", "7001", "7003"], "releaseDate":"2011-05-17T06:47:22Z", "sellerName":"Robert Szeleney", "currency":"USD", "trackId":435932375, "trackName":"Line Surfer", "genres":["Games", "Action", "Arcade"], "releaseNotes":"", "primaryGenreName":"Games", "primaryGenreId":6014, "isGameCenterEnabled":true, "supportedDevices":["all"], "wrapperType":"software", "artworkUrl60":"http://a4.mzstatic.com/us/r1000/041/Purple/30/f4/e7/mzi.aivhajlb.png", "artworkUrl100":"http://a1.mzstatic.com/us/r1000/043/Purple/85/ee/32/mzm.wtjshggo.png", "artistViewUrl":"http://itunes.apple.com/us/artist/robert-szeleney/id302877209?mt=8&uo=4", "contentAdvisoryRating":"4+", "trackCensoredName":"Line Surfer", "trackViewUrl":"http://itunes.apple.com/us/app/line-surfer/id435932375?mt=8&uo=4", "languageCodesISO2A":["EN"], "fileSizeBytes":"12187507", - "screenshotUrls":["http://a5.mzstatic.com/us/r1000/054/Purple/6c/00/b3/mzl.xqjqxfrj.png", "http://a3.mzstatic.com/us/r1000/026/Purple/07/c0/12/mzl.zskenubj.png", "http://a5.mzstatic.com/us/r1000/037/Purple/9c/6c/18/mzl.sciengph.png", "http://a3.mzstatic.com/us/r1000/006/Purple/be/54/21/mzl.lqyypapq.png", "http://a5.mzstatic.com/us/r1000/003/Purple/00/40/e3/mzl.spbbpixo.png"], "ipadScreenshotUrls":[], "sellerUrl":"http://www.djinnworks.at", "averageUserRatingForCurrentVersion":3.0, "userRatingCountForCurrentVersion":103, "artworkUrl512":"http://a1.mzstatic.com/us/r1000/043/Purple/85/ee/32/mzm.wtjshggo.png", "trackContentRating":"4+", "averageUserRating":3.0, "userRatingCount":103}, - {"version":"1.2.1", "kind":"software", "artistId":315155009, "artistName":"Karma World LLC", "price":0.00, - "description":"- We are aware of crashes occurring on iOS devices with 4.1 firmware. We're working on the update and it should be out very soon. We are very sorry about it. In the meantime if you update your device to the latest version you shouldn't experience any problem.\n\nIt's a nuts & bolts meetup! A very addictive doodle physics puzzle! Guide a nut (AKA screw) to a bolt (AKA screw) as fast as possible. Erase objects, combine things and more! You even get a cannon to shoot! Addictive and tons of fun!\n\niPhone and HD iPad all-in-one version includes:\n\u2014 Hi-res graphics for retina display and HD on iPad! \n\u2014 70+ unique levels with physics puzzles, increasingly complex!\n\u2014 Unique game atmosphere that will keep you and your kids hooked on for days!\n\u2014 Most challenging levels with gravity cannon!\n\u2014 Even more levels coming soon in the next update!\n\u2014 Game Center & Open Feint\n\u2014 Over 30 achievements\n\u2014 Share your results on Facebook and Twitter\n\n\n\"There are lots of Doodle games in the App Store. Most aren\u2019t any good. But you\u2019ll be impressed with the gameplay idea of Doodle Screw the moment you start the first level. ... well designed levels make Doodle Screw one of the great physics based puzzle game in the App Store.\" -appchronicles.com (10/11)\n\n\"Amazingly Addictive!! You won't put it down!\" - deanbayley, UK\n\n\"Good use of gravity and timing makes this a truly unique game. It is a game that makes you think, it will challenge you to figure out the puzzles and you may find it hard to put it down!\" -Roskel, Canada\n\n\"Simple concept, great execution. Fun game!\" - Scleland, USA\n\n\"Pretty good game! Kind of like cut the rope with it's own twist to it! A lot of logic and thinking required. Would recommend!\" - Soccerdude018, Canada", "genreIds":["6014", "7012", "7015", "6016"], "releaseDate":"2010-10-27T10:54:27Z", "sellerName":"Karma World LLC", "currency":"USD", "trackId":384800542, "trackName":"Doodle Screw", "genres":["Games", "Puzzle", "Simulation", "Entertainment"], "releaseNotes":"Fixed crash on launch on iOS < 4.2", "primaryGenreName":"Games", "primaryGenreId":6014, "isGameCenterEnabled":true, "supportedDevices":["all"], "wrapperType":"software", "artworkUrl60":"http://a3.mzstatic.com/us/r1000/049/Purple/c0/86/2b/mzi.tbhmrqni.png", "artworkUrl100":"http://a5.mzstatic.com/us/r1000/005/Purple/ec/bd/5e/mzl.jztqfdsk.png", "artistViewUrl":"http://itunes.apple.com/us/artist/karma-world-llc/id315155009?uo=4", "contentAdvisoryRating":"4+", "trackCensoredName":"Doodle Screw", "trackViewUrl":"http://itunes.apple.com/us/app/doodle-screw/id384800542?mt=8&uo=4", "languageCodesISO2A":["EN"], "fileSizeBytes":"15887442", - "screenshotUrls":["http://a3.mzstatic.com/us/r1000/045/Purple/f2/78/94/mzl.uumjtdye.png", "http://a2.mzstatic.com/us/r1000/056/Purple/f8/2c/4e/mzl.gdlxsnmm.png", "http://a5.mzstatic.com/us/r1000/012/Purple/0e/4b/da/mzl.fozcbics.png", "http://a5.mzstatic.com/us/r1000/040/Purple/c6/f0/b3/mzl.beitwlpe.png", "http://a4.mzstatic.com/us/r1000/047/Purple/38/a2/a0/mzl.fylxfdzm.png"], - "ipadScreenshotUrls":["http://a2.mzstatic.com/us/r1000/020/Purple/6b/92/33/mzl.bbqzulug.1024x1024-65.jpg", "http://a2.mzstatic.com/us/r1000/043/Purple/46/7e/5e/mzl.xquvljbj.1024x1024-65.jpg", "http://a2.mzstatic.com/us/r1000/058/Purple/fb/b3/75/mzl.ngfczzhz.1024x1024-65.jpg", "http://a3.mzstatic.com/us/r1000/029/Purple/4f/a5/7c/mzl.nbitqrpo.1024x1024-65.jpg", "http://a5.mzstatic.com/us/r1000/057/Purple/db/55/60/mzl.yojqhkzh.1024x1024-65.jpg"], "sellerUrl":"http://", "averageUserRatingForCurrentVersion":2.5, "userRatingCountForCurrentVersion":110, "artworkUrl512":"http://a5.mzstatic.com/us/r1000/005/Purple/ec/bd/5e/mzl.jztqfdsk.png", "trackContentRating":"4+", "averageUserRating":3.5, "userRatingCount":780}, - {"version":"1.0", "kind":"software", "artistId":363707253, "artistName":"Guo Lingfeng", "price":1.99, - "description":"Cheats and Tips Guide for Doodle Jump & Plants vs Zombies & Zombie Farm & We Rule & Tap Tap 3 Revenge! \n\n *This app is unofficial, please read Disclaimer at bottom of description* \n\n Need some help in Doodle Jump & Plants vs Zombies & Zombie Farm & We Rule & Tap Tap 3 Revenge. \n\n You can carry your guide around easily to a friends house and e-mail your friends specific sections right from your iPhone or iPod Touch.\n\n\nDisclaimer:\n---------\n- This is an unofficial guide to Doodle Jump & Plants vs Zombies & Zombie Farm & We Rule & Tap Tap 3 Revenge. This unofficial guide was created by Doodle Stick Software Inc. I am not affiliated with PopCap games Inc. in any manner. Neither PopCap games Inc. has anyone else authorized, sponsored or sanctioned this unofficial guide. It is the sole creation and responsibility of Doodle Stick Software Inc.\n\n- All characters and their names and all places and events and all other aspects concerning Doodle Jump & Plants vs Zombies & Zombie Farm & We Rule & Tap Tap 3 Revenge are the property of their respective owners. All trademark and copyright concerning Doodle Jump & Plants vs Zombies & Zombie Farm & We Rule & Tap Tap 3 Revenge are the property of their respective owners. I make no claim to and do not have any rights to any of the foregoing.\n\n- In creating this unofficial guide to Doodle Jump & Plants vs Zombies & Zombie Farm & We Rule & Tap Tap 3 Revenge, I assert its rights under the \"fair use\" doctrine pursuant to United States copyright law and the equivalent in other jurisdictions. If you believe that there has been a contravention of your proprietary rights then email details to raydownraydown4@gmail.com.", "genreIds":["6006", "7001", "7003", "6014"], "releaseDate":"2010-05-08T05:36:59Z", "sellerName":"Guo Lingfeng", "currency":"USD", "trackId":370827369, "trackName":"Doodle Jump & Plants vs Zombies & Zombie Farm & We Rule & Tap Tap 3 Revenge Cheats", "genres":["Reference", "Action", "Arcade", "Games"], "releaseNotes":"", "primaryGenreName":"Reference", "primaryGenreId":6006, "isGameCenterEnabled":false, "supportedDevices":["all"], "wrapperType":"software", "artworkUrl60":"http://a5.mzstatic.com/us/r1000/032/Purple/d2/20/c2/mzl.tcydarbd.png", "artworkUrl100":"http://a1.mzstatic.com/us/r1000/031/Purple/86/c6/fb/mzl.wbzbzbxc.png", "artistViewUrl":"http://itunes.apple.com/us/artist/guo-lingfeng/id363707253?uo=4", "contentAdvisoryRating":"4+", "trackCensoredName":"Doodle Jump & Plants vs Zombies & Zombie Farm & We Rule & Tap Tap 3 Revenge Cheats", "trackViewUrl":"http://itunes.apple.com/us/app/doodle-jump-plants-vs-zombies/id370827369?mt=8&uo=4", "languageCodesISO2A":["EN"], "fileSizeBytes":"371884", - "screenshotUrls":["http://a3.mzstatic.com/us/r1000/048/Purple/f0/6c/ad/mzl.ioaodidg.png", "http://a2.mzstatic.com/us/r1000/050/Purple/7b/b0/20/mzl.raovkftc.png", "http://a1.mzstatic.com/us/r1000/003/Purple/31/e4/1c/mzl.pjeduqsq.png", "http://a3.mzstatic.com/us/r1000/034/Purple/7e/ad/b1/mzl.wxgwedfs.png"], "ipadScreenshotUrls":[], "sellerUrl":"http://www.e383kjfdl.com", "averageUserRatingForCurrentVersion":2.5, "userRatingCountForCurrentVersion":347, "artworkUrl512":"http://a1.mzstatic.com/us/r1000/031/Purple/86/c6/fb/mzl.wbzbzbxc.png", "trackContentRating":"4+", "averageUserRating":2.5, "userRatingCount":347}, - {"version":"1.1", "kind":"software", "artistId":314585015, "artistName":"chenpengkun", "price":0.99, - "description":"Drop the egg into the basket - if you can! Use springs, boards, pulleys, and portals to get the egg into the basket in this fun physics game.\n\nFEATURES\n- Simple and fun gameplay\n- Realistic physics \n- 30 challenging levels\n- Level editor: ability to create and share levels with friends\n- OpenFeint supported\n\nWANT MORE DOODLE EGG?\nCheck out Doodle Egg: High Elasticity of a Springboard!", "genreIds":["6014", "6016", "7012", "7009"], "releaseDate":"2010-07-16T08:53:21Z", "sellerName":"chen pengkun", "currency":"USD", "trackId":381328821, "trackName":"Doodle Egg", "genres":["Games", "Entertainment", "Puzzle", "Family"], "releaseNotes":"add Leaderboards", "primaryGenreName":"Games", "primaryGenreId":6014, "isGameCenterEnabled":false, "supportedDevices":["all"], "wrapperType":"software", "artworkUrl60":"http://a1.mzstatic.com/us/r1000/006/Purple/6c/1c/df/mzi.xmwpjkat.png", "artworkUrl100":"http://a2.mzstatic.com/us/r1000/023/Purple/69/fa/ad/mzi.lvaqfmqr.png", "artistViewUrl":"http://itunes.apple.com/us/artist/chenpengkun/id314585015?uo=4", "contentAdvisoryRating":"4+", "trackCensoredName":"Doodle Egg", "trackViewUrl":"http://itunes.apple.com/us/app/doodle-egg/id381328821?mt=8&uo=4", "languageCodesISO2A":["EN", "ZH"], "fileSizeBytes":"6710871", - "screenshotUrls":["http://a4.mzstatic.com/us/r1000/003/Purple/54/95/53/mzl.asfucmvt.png", "http://a1.mzstatic.com/us/r1000/020/Purple/24/e7/59/mzl.kpyptbhk.png", "http://a1.mzstatic.com/us/r1000/059/Purple/88/75/4c/mzl.dhqqjzbu.png", "http://a3.mzstatic.com/us/r1000/012/Purple/83/67/12/mzl.zketdhfr.png", "http://a2.mzstatic.com/us/r1000/043/Purple/f6/28/a0/mzl.scawpgee.png"], "ipadScreenshotUrls":[], "sellerUrl":"http://www.c22277.com", "averageUserRatingForCurrentVersion":4.0, "userRatingCountForCurrentVersion":50, "artworkUrl512":"http://a2.mzstatic.com/us/r1000/023/Purple/69/fa/ad/mzi.lvaqfmqr.png", "trackContentRating":"4+", "averageUserRating":3.5, "userRatingCount":258}, - {"version":"1.2.1", "kind":"software", "artistId":315155009, "artistName":"Karma World LLC", "price":0.00, - "description":"FREE version with 14 levels (paid has 50+) of a new addictive doodle puzzle. Guide a female screw (AKA nut) to a screw (AKA bolt) as fast as it possible. Erase objects, combine things and so on. It's a nuts & bolts meetup! You even get a cannon to shoot! It is really addictive and so much fun! \n\nBuy full version if you like the game - there are 50+ levels and more to come!\n\nFree version includes:\n\u2014 Hi-res graphics for retina display and HD on iPad!\n\u2014 14 unique levels with physics puzzles that become increasingly complex (paid version has 50+ and level packs in updates).\n\u2014 A unique game atmosphere that will keep you and your kids entertained\n\u2014 Different objects from rectangles and circles to cannons and more\n\u2014 Open Feint (full version adds GameCenter!)\n\u2014 Some achievements (paid version has more!)\n\u2014 Share your results on Facebook and Twitter\n\n\n\"There are lots of Doodle games in the App Store. Most aren\u2019t any good. But you\u2019ll be impressed with the gameplay idea of Doodle Screw the moment you start the first level. ... well designed levels make Doodle Screw one of the great physics based puzzle game in the App Store.\" -appchronicles.com (10/11)", "genreIds":["6014", "6016", "7015", "7012"], "releaseDate":"2010-10-27T10:54:40Z", "sellerName":"Karma World LLC", "currency":"USD", "trackId":385160028, "trackName":"Doodle Screw Lite", "genres":["Games", "Entertainment", "Simulation", "Puzzle"], "releaseNotes":"Minor bug fixes.", "primaryGenreName":"Games", "primaryGenreId":6014, "isGameCenterEnabled":false, "supportedDevices":["all"], "wrapperType":"software", "artworkUrl60":"http://a3.mzstatic.com/us/r1000/002/Purple/be/e8/83/mzi.hbgkqxzl.png", "artworkUrl100":"http://a3.mzstatic.com/us/r1000/008/Purple/7d/1a/38/mzl.kpwzvixw.png", "artistViewUrl":"http://itunes.apple.com/us/artist/karma-world-llc/id315155009?uo=4", "contentAdvisoryRating":"4+", "trackCensoredName":"Doodle Screw Lite", "trackViewUrl":"http://itunes.apple.com/us/app/doodle-screw-lite/id385160028?mt=8&uo=4", "languageCodesISO2A":["EN"], "fileSizeBytes":"13273834", - "screenshotUrls":["http://a2.mzstatic.com/us/r1000/019/Purple/8f/7b/1c/mzl.rjfmhlhn.png", "http://a3.mzstatic.com/us/r1000/020/Purple/14/ed/89/mzl.plbkpmfw.png", "http://a4.mzstatic.com/us/r1000/022/Purple/31/ff/41/mzl.uoamjzku.png", "http://a4.mzstatic.com/us/r1000/025/Purple/82/28/15/mzl.jksggyui.png", "http://a2.mzstatic.com/us/r1000/024/Purple/e9/33/0d/mzl.zybduikh.png"], - "ipadScreenshotUrls":["http://a3.mzstatic.com/us/r1000/019/Purple/56/f2/a6/mzl.iliotplm.1024x1024-65.jpg", "http://a4.mzstatic.com/us/r1000/039/Purple/5a/03/d4/mzl.mofzitoa.1024x1024-65.jpg", "http://a2.mzstatic.com/us/r1000/022/Purple/13/8f/be/mzl.pzuefqaa.1024x1024-65.jpg", "http://a5.mzstatic.com/us/r1000/059/Purple/0c/11/ee/mzl.lzxbkjkx.1024x1024-65.jpg", "http://a1.mzstatic.com/us/r1000/042/Purple/7c/b7/12/mzl.wcifezwd.1024x1024-65.jpg"], "sellerUrl":"http://", "averageUserRatingForCurrentVersion":3.0, "userRatingCountForCurrentVersion":150, "artworkUrl512":"http://a3.mzstatic.com/us/r1000/008/Purple/7d/1a/38/mzl.kpwzvixw.png", "trackContentRating":"4+", "averageUserRating":3.5, "userRatingCount":1879}, - {"version":"1.3", "kind":"software", "artistId":326092412, "artistName":"Walnut JZ", "price":0.99, - "description":"Very simply yet very addicting, tile your iPhone/iPod Touch to guide the doodle dog drop the page and see how far you can get!\n\nFeatures:\n- Suitable for both young and old\n- Beautiful hand drawn graphics,smooth animations,fair-sounding music\n- Super easy to user interface\n- High scores - Enjoy trying to beat your best scores!\n\nWe will keep updating this game, a lot more interesting elements will be added at the next version of Doodle Drop!", "genreIds":["6014", "7003", "7002", "6016"], "releaseDate":"2010-04-02T07:00:00Z", "sellerName":"jiang zhi", "currency":"USD", "trackId":364922182, "trackName":"Doodle Drop - Ultimate Addictive!", "genres":["Games", "Arcade", "Adventure", "Entertainment"], "releaseNotes":"- add new scene\n- improve sound", "primaryGenreName":"Games", "primaryGenreId":6014, "isGameCenterEnabled":false, "supportedDevices":["all"], "wrapperType":"software", "artworkUrl60":"http://a3.mzstatic.com/us/r1000/059/Purple/6f/ec/a3/mzl.wagyglhb.png", "artworkUrl100":"http://a4.mzstatic.com/us/r1000/037/Purple/09/80/c6/mzl.uugunygs.png", "artistViewUrl":"http://itunes.apple.com/us/artist/walnut-jz/id326092412?uo=4", "contentAdvisoryRating":"9+", "trackCensoredName":"Doodle Drop - Ultimate Addictive!", "trackViewUrl":"http://itunes.apple.com/us/app/doodle-drop-ultimate-addictive/id364922182?mt=8&uo=4", "languageCodesISO2A":["EN"], "fileSizeBytes":"555992", - "screenshotUrls":["http://a4.mzstatic.com/us/r1000/053/Purple/e3/37/a0/mzl.zclaqipz.png", "http://a2.mzstatic.com/us/r1000/051/Purple/87/41/fe/mzl.vzzuzycy.png", "http://a3.mzstatic.com/us/r1000/054/Purple/7a/8e/8c/mzl.uqkepftf.png", "http://a3.mzstatic.com/us/r1000/007/Purple/0e/e2/7e/mzl.nzztlkrw.png", "http://a4.mzstatic.com/us/r1000/040/Purple/d6/7b/5b/mzl.kgditouq.png"], "ipadScreenshotUrls":[], "sellerUrl":"http://blog.sina.com.cn/castleincloud", "averageUserRatingForCurrentVersion":2.5, "userRatingCountForCurrentVersion":491, "artworkUrl512":"http://a4.mzstatic.com/us/r1000/037/Purple/09/80/c6/mzl.uugunygs.png", "trackContentRating":"9+", "averageUserRating":2.5, "userRatingCount":768}, - {"version":"1.12", "kind":"software", "artistId":310068844, "artistName":"Donut Games", "price":0.99, - "description":"WARNING! Considered one of the most addictive games on the App Store... if you start playing you may have a hard time to stop.\n\n*** #1 Downloaded Game in 33 COUNTRIES\n*** Chosen as APPLE STAFF FAVORITE\n\nPeople are reporting that they are buying iPhones/iPod Touch devices just to play Scooter XL!\n\n- - - - - - - - - - - - - - - - - -\n\n** The beloved RAT is BACK! **\n\nKick start the scooter and head down to the abandoned suburbs to BURN SOME SERIOUS RUBBER.\n\nPerforms dangerous STUNTS and jumps on top of the scaffolds in Ratty's boldest adventure ever.\n\n- - - - - - - - - - - - - - - - - -\n\nFEATURES:\n\n- FOUR game modes\n- 1: \"Super Cheese XL\"\n- 2: \"Fuel Depot\"\n- 3: \"Skill Course\"\n- 4: \"Power Rider\" with SPECIAL POWER-UPS\n- Perform STUNTS and receive bonus points\n- Rock solid controls\n- New \"Mid-air\" jumps\n- Global High Score support\n- Donut Games' Collectors Icon #17\n- And much more...\n\n- - - - - - - - - - - - - - - - - -\n\nUPDATES:\n\nv1.11 - Added new GAME MODE \"Power Rider\" + added one POWER-UP: Rubber Ball\n\nv1.10 - Added 4 POWER-UPS: Jet Pack, Cheese Doodle Rain, Platform Expander / Shrinker\n\nv1.01 - Support for playing your own iTunes music in the background\n\n- - - - - - - - - - - - - - - - - -\n\nEnjoy another Donut Games release!", "genreIds":["6014", "7003", "7009"], "releaseDate":"2009-12-07T08:18:05Z", "sellerName":"Swedish Game Development AB", "currency":"USD", "trackId":342699962, "trackName":"Rat On A Scooter XL", "genres":["Games", "Arcade", "Family"], - "releaseNotes":"- iOS 4 support: Fast app switching and Hi-Res icons (Retina + iPad)\n\n- OPTION added: Ability to toggle music and sound effects separately\n\nThanks to all fans who encourage us with your 5-star ratings.\n\nDon't forget to join our Facebook page, so that you DON'T MISS OUT ON PROMOTIONS, pre-release info, level solutions, etc:\nhttp://www.facebook.com/pages/Donut-Games/122708577763825", "primaryGenreName":"Games", "primaryGenreId":6014, "isGameCenterEnabled":false, "supportedDevices":["all"], "wrapperType":"software", "artworkUrl60":"http://a4.mzstatic.com/us/r1000/045/Purple/ba/74/62/mzi.rktbvwig.png", "artworkUrl100":"http://a3.mzstatic.com/us/r1000/000/Purple/5a/d0/38/mzi.ypzqmxvc.jpg", "artistViewUrl":"http://itunes.apple.com/us/artist/donut-games/id310068844?uo=4", "contentAdvisoryRating":"4+", "trackCensoredName":"Rat On A Scooter XL", "trackViewUrl":"http://itunes.apple.com/us/app/rat-on-a-scooter-xl/id342699962?mt=8&uo=4", "languageCodesISO2A":["EN"], "fileSizeBytes":"5016189", - "screenshotUrls":["http://a2.mzstatic.com/us/r1000/026/Purple/fc/70/fc/mzl.umbaftnl.jpg", "http://a3.mzstatic.com/us/r1000/000/Purple/d7/c2/13/mzl.ucatwquq.jpg", "http://a1.mzstatic.com/us/r1000/023/Purple/a1/4f/64/mzl.ijwynnyg.jpg", "http://a5.mzstatic.com/us/r1000/007/Purple/c6/fc/db/mzl.dkhgyzja.jpg"], "ipadScreenshotUrls":[], "sellerUrl":"http://www.donutgames.com", "averageUserRatingForCurrentVersion":3.5, "userRatingCountForCurrentVersion":7810, "artworkUrl512":"http://a3.mzstatic.com/us/r1000/000/Purple/5a/d0/38/mzi.ypzqmxvc.jpg", "trackContentRating":"4+", "averageUserRating":3.5, "userRatingCount":11136}, - {"version":"1.9.e", "kind":"software", "artistId":326478818, "artistName":"NER Brothers", "price":0.00, - "description":"Itunes reviews (US) \n******************* \n\u201CAn ideal game for a 5 minute break\u201D \n\u201CI can\u2019t stop playing\u201D \n\nReviews (others) \n******************* \n\"very good game concept! Control is the oddity but you get used to it.\" - (AUT app store)\n\"i like that game because it's so colorful\" - customer review (facebook)\n\n\nWhat is \"Jump Away\" at all? \n***************************\n\"Jump Away\" is a simple but addictive Jump \u201an\u2019 Run game. The character \"Major\" must jump away over several platforms, and so escape from the hot lava. Multiple jumps in a row gives a Combo. These combos get more points than simple jumps. The higher the combo, the more points you get. Attempt to reach the widest possible range of points and let friends break your personal high score - whether they will succeed? \n\nHow does \"Jump Away\" work? \n***************************\nThere are three different jumps to bring the different number of points. The easiest way is to run the normal \"Jump.\" With a little start-up succeeds and the \"Middle Jump\" and with a lot of practice and the \"Super Jump\" works, which brings the most points in the game. If the score is too low, then try to execute your jumps as often as possible in succession to get a combo on. The more jumps the better the combo!\n\n\nFeatures: \n**********\n*) highscore \n*) multiple platforms \n*) video - tutorial \n*) endless mode", "genreIds":["6014", "7010", "7003", "6016"], "releaseDate":"2009-09-15T01:59:42Z", "sellerName":"Alexander Nedoma", "currency":"USD", "trackId":326595704, "trackName":"Jump Away - An awesome addictive PapiJump remake!", "genres":["Games", "Kids", "Arcade", "Entertainment"], "releaseNotes":"bug fixes", "primaryGenreName":"Games", "primaryGenreId":6014, "isGameCenterEnabled":false, "supportedDevices":["all"], "wrapperType":"software", "artworkUrl60":"http://a2.mzstatic.com/us/r1000/035/Purple/98/40/57/mzi.zinwcwfu.png", "artworkUrl100":"http://a3.mzstatic.com/us/r1000/034/Purple/74/ee/21/mzm.oznfdcxt.png", "artistViewUrl":"http://itunes.apple.com/us/artist/ner-brothers/id326478818?uo=4", "contentAdvisoryRating":"4+", "trackCensoredName":"Jump Away - An awesome addictive PapiJump remake!", "trackViewUrl":"http://itunes.apple.com/us/app/jump-away-an-awesome-addictive/id326595704?mt=8&uo=4", "languageCodesISO2A":["EN"], "fileSizeBytes":"8288303", - "screenshotUrls":["http://a4.mzstatic.com/us/r1000/026/Purple/b3/a9/dc/mzl.mtohciax.png", "http://a2.mzstatic.com/us/r1000/024/Purple/23/3f/72/mzl.nwywjfyk.png", "http://a5.mzstatic.com/us/r1000/015/Purple/d5/0d/e5/mzl.tgxosonv.png", "http://a5.mzstatic.com/us/r1000/039/Purple/53/5e/36/mzl.mhgvmivn.png"], "ipadScreenshotUrls":[], "sellerUrl":"http://www.ner-brothers.com/mobile/jumpawayhome.html", "averageUserRatingForCurrentVersion":3.0, "userRatingCountForCurrentVersion":213, "artworkUrl512":"http://a3.mzstatic.com/us/r1000/034/Purple/74/ee/21/mzm.oznfdcxt.png", "trackContentRating":"4+", "averageUserRating":2.5, "userRatingCount":5909}, - {"version":"2.1", "kind":"software", "artistId":335541424, "artistName":"Tyler Weitzman", "price":0.99, - "description":"Glow Neon Doodle is a must for every human.\nThose who love art can use their talent to create amazing drawings. \nThose who aren't that good in art will still be able to create amazing drawings using the new Advanced Mode! (Unique Feature).\n\n1. Choose a color by clicking on it\n\n2. Choose if you want to use advanced or basic mode\n Basic = Normal Glow Doodle\n Advanced = Extreme Glow Art! Duplicate hundreds of neon/glow lines all over the screen with the swipe of your finger!\n\n3. Save to your photo album and share with all your friends!\n Simply tap either the \"Save\" or \"Email\" buttons directly on the doodle screen (New Features). Share your creations with all your friends.\n\n4. Shake to erase, and start all over!\n\nHundreds of hours of glow neon fun!\n\nNew in version 2.0:\u2028\n\u2022 Send a doodle email message to your friends instantly with one-click!\n\u2028\u2022 Save your creation to your photo gallery instantly with one-click (a new save button on the main doodle screen).\u2028\n\u2022 Send a doodle text message if your device supports MMS", "genreIds":["6016", "6012"], "releaseDate":"2010-03-03T12:40:57Z", "sellerName":"Hadar Weitzman Group Inc.", "currency":"USD", "trackId":359018165, "trackName":"Glow Neon Doodle", "genres":["Entertainment", "Lifestyle"], "releaseNotes":"Screenshots Updated\nKeywords Updated", "primaryGenreName":"Entertainment", "primaryGenreId":6016, "isGameCenterEnabled":false, "supportedDevices":["all"], "wrapperType":"software", "artworkUrl60":"http://a1.mzstatic.com/us/r1000/040/Purple/01/df/46/mzi.kdibyzwo.png", "artworkUrl100":"http://a4.mzstatic.com/us/r1000/036/Purple/29/07/dc/mzi.ktpggwyo.png", "artistViewUrl":"http://itunes.apple.com/us/artist/tyler-weitzman/id335541424?uo=4", "contentAdvisoryRating":"4+", "trackCensoredName":"Glow Neon Doodle", "trackViewUrl":"http://itunes.apple.com/us/app/glow-neon-doodle/id359018165?mt=8&uo=4", "languageCodesISO2A":["EN"], "fileSizeBytes":"148717", - "screenshotUrls":["http://a2.mzstatic.com/us/r1000/041/Purple/46/27/65/mzl.egqqlkuv.png", "http://a3.mzstatic.com/us/r1000/020/Purple/87/1d/62/mzl.vpwmeknl.png", "http://a2.mzstatic.com/us/r1000/057/Purple/7d/56/2c/mzl.mamlotmd.png", "http://a4.mzstatic.com/us/r1000/050/Purple/1b/3f/ba/mzl.wuqzethv.png", "http://a4.mzstatic.com/us/r1000/048/Purple/4f/11/56/mzl.wpopfqfw.png"], "ipadScreenshotUrls":[], "sellerUrl":"http://tylerweitzman.tk", "averageUserRatingForCurrentVersion":3.5, "userRatingCountForCurrentVersion":44, "artworkUrl512":"http://a4.mzstatic.com/us/r1000/036/Purple/29/07/dc/mzi.ktpggwyo.png", "trackContentRating":"4+", "averageUserRating":3.5, "userRatingCount":140}, - {"version":"1.0.9", "kind":"software", "artistId":289719244, "artistName":"EnsenaSoft", "price":0.99, - "description":"Yo-ho-ho - a pirate's life for me. Lead the pirate on a treasure hunt by tilting your device to control his direction as he jumps from platform to platform. Capture the treasures for extra points and a jumping boost! Great Caribbean theme and music accompany you on your journey.\n\nNow with moving platforms, platforms that break, cannons, pistols, flying birds and pirate bombers! Nice music and sound effects from SomaTone Interactive Audio.\n\nThar be doubloons awaitin' ye lily-livered landlubber!", "genreIds":["6014", "7002", "7003", "6016"], "releaseDate":"2010-03-27T01:25:53Z", "sellerName":"SAM L DENHARTOG", "currency":"USD", "trackId":364392485, "trackName":"Pirate Jump", "genres":["Games", "Adventure", "Arcade", "Entertainment"], - "releaseNotes":"Added in tilt calibration so you can play Pirate Jump in any position.\nAdded in support for Game Center.\n\n*****\nWe appreciate your ratings and reviews!\nThanks for playing Pirate Jump!!!\n*****", "primaryGenreName":"Games", "primaryGenreId":6014, "isGameCenterEnabled":true, "supportedDevices":["all"], "wrapperType":"software", "artworkUrl60":"http://a4.mzstatic.com/us/r1000/017/Purple/1e/89/85/mzi.zlfozcjn.png", "artworkUrl100":"http://a1.mzstatic.com/us/r1000/037/Purple/d4/e4/95/mzi.irndclpv.png", "artistViewUrl":"http://itunes.apple.com/us/artist/ensenasoft/id289719244?mt=8&uo=4", "contentAdvisoryRating":"9+", "trackCensoredName":"Pirate Jump", "trackViewUrl":"http://itunes.apple.com/us/app/pirate-jump/id364392485?mt=8&uo=4", "languageCodesISO2A":["EN"], "fileSizeBytes":"17530244", - "screenshotUrls":["http://a5.mzstatic.com/us/r1000/057/Purple/0a/c7/98/mzl.drgdumzj.png", "http://a4.mzstatic.com/us/r1000/043/Purple/18/8d/fd/mzl.xylulycz.png", "http://a3.mzstatic.com/us/r1000/033/Purple/28/0d/fa/mzl.ujvlrayn.png", "http://a1.mzstatic.com/us/r1000/002/Purple/e1/4d/60/mzl.xwfiqwjw.png", "http://a4.mzstatic.com/us/r1000/031/Purple/3a/b8/00/mzl.ftwbwhdd.png"], - "ipadScreenshotUrls":["http://a4.mzstatic.com/us/r1000/057/Purple/50/ee/df/mzl.dtajbwmk.1024x1024-65.jpg", "http://a2.mzstatic.com/us/r1000/004/Purple/31/75/47/mzl.ozclapsh.1024x1024-65.jpg"], "sellerUrl":"http://www.ensenasoft.com/", "averageUserRatingForCurrentVersion":3.5, "userRatingCountForCurrentVersion":49, "artworkUrl512":"http://a1.mzstatic.com/us/r1000/037/Purple/d4/e4/95/mzi.irndclpv.png", "trackContentRating":"9+", "averageUserRating":3.0, "userRatingCount":622}, - {"version":"1.1", "kind":"software", "artistId":298779208, "artistName":"iTECH DEVELOPMENT SYSTEMS INC.", "price":0.99, - "description":"Featured by Apple under \"New & Noteworthy\".\nJoin Orange Boy and his friends in a new great adventure, iRaft Wars Doodle Wars.\nHelp them conquer this new word of Doodle Land and beat all 30 levels of this new amazing game.\nImproved Doodle graphics, Game Center and OpenFeint integration.\niRaft Wars Doodle Wars will keep you entertained for hours, challenging new levels with new blocking objects that will make this game even more challenging.\nA new Shield protection weapon that will keep you safe from your enemies.\nImprove gaming experience.\nNew multiplayer mode, now you can use all the weapons that are available on Single Player mode.\nComing soon more amazing levels and weapons and most important Online Multiplayer option to play against other people all around the world.\n\n***********************************************************************\nBuy iRaft Wars Doodle Wars today at the introductory price!!!!!!!\n***********************************************************************", "genreIds":["6014", "7002", "7003"], "releaseDate":"2010-11-25T01:38:45Z", "sellerName":"iTECH DEVELOPMENT SYSTEMS INC.", "currency":"USD", "trackId":391457071, "trackName":"iRaft Wars Doodle World", "genres":["Games", "Adventure", "Arcade"], "releaseNotes":"Performance enhancements.\nNew sound effects.\nNew music.", "primaryGenreName":"Games", "primaryGenreId":6014, "isGameCenterEnabled":true, "supportedDevices":["all"], "wrapperType":"software", "artworkUrl60":"http://a1.mzstatic.com/us/r1000/027/Purple/4e/71/c3/mzi.ssanolqh.png", "artworkUrl100":"http://a5.mzstatic.com/us/r1000/006/Purple/c3/12/9e/mzi.excqhddn.png", "artistViewUrl":"http://itunes.apple.com/us/artist/itech-development-systems/id298779208?uo=4", "contentAdvisoryRating":"4+", "trackCensoredName":"iRaft Wars Doodle World", "trackViewUrl":"http://itunes.apple.com/us/app/iraft-wars-doodle-world/id391457071?mt=8&uo=4", "languageCodesISO2A":["EN"], "fileSizeBytes":"25580241", - "screenshotUrls":["http://a5.mzstatic.com/us/r1000/055/Purple/2c/f5/b1/mzl.byxtabnv.png", "http://a5.mzstatic.com/us/r1000/054/Purple/5a/57/25/mzl.tdplpnwl.png", "http://a2.mzstatic.com/us/r1000/011/Purple/58/c2/87/mzl.tykjnvkl.png", "http://a5.mzstatic.com/us/r1000/040/Purple/d3/9a/a0/mzl.gkfqvjxf.png", "http://a5.mzstatic.com/us/r1000/050/Purple/3a/bd/d0/mzl.ixwcxqzd.png"], "ipadScreenshotUrls":[], "sellerUrl":"http://itechdevelopmentsystems.com/iraft-wars-doodle-world_1_1_s_4_19.html", "averageUserRatingForCurrentVersion":4.0, "userRatingCountForCurrentVersion":18, "artworkUrl512":"http://a5.mzstatic.com/us/r1000/006/Purple/c3/12/9e/mzi.excqhddn.png", "trackContentRating":"4+", "averageUserRating":4.0, "userRatingCount":40}, - {"version":"1.45", "kind":"software", "artistId":363707253, "artistName":"Guo Lingfeng", "price":1.99, - "description":"Doodle Stick War is a fast-paced, action-packed game animation that requires lightning-fast fingers and cunning strategy. Defend your kingdom against the invading stick figure army. Tap, flick, and shake your way to victory in the top castle defense game for iPhone/iPod touch Enjoy the best stick animation in this app!!!!", "genreIds":["6014", "6016", "7001", "7003"], "releaseDate":"2010-04-16T05:42:13Z", "sellerName":"Guo Lingfeng", "currency":"USD", "trackId":366830708, "trackName":"Doodle Cartoon Wars", "genres":["Games", "Entertainment", "Action", "Arcade"], "releaseNotes":"1.reduce appsize\n 2.add 2 movies", "primaryGenreName":"Games", "primaryGenreId":6014, "isGameCenterEnabled":false, "supportedDevices":["all"], "wrapperType":"software", "artworkUrl60":"http://a2.mzstatic.com/us/r1000/000/Purple/61/d2/65/mzl.loppqgkv.png", "artworkUrl100":"http://a4.mzstatic.com/us/r1000/016/Purple/71/c0/d1/mzl.jtolnvkr.png", "artistViewUrl":"http://itunes.apple.com/us/artist/guo-lingfeng/id363707253?uo=4", "contentAdvisoryRating":"12+", "trackCensoredName":"Doodle Cartoon Wars", "trackViewUrl":"http://itunes.apple.com/us/app/doodle-cartoon-wars/id366830708?mt=8&uo=4", "languageCodesISO2A":["EN"], "fileSizeBytes":"19919202", - "screenshotUrls":["http://a4.mzstatic.com/us/r1000/037/Purple/54/13/74/mzl.unkvrxoh.jpg", "http://a4.mzstatic.com/us/r1000/022/Purple/cc/1f/e3/mzl.cxogbbip.jpg", "http://a1.mzstatic.com/us/r1000/017/Purple/dc/1a/7c/mzl.haxjdeuc.jpg", "http://a4.mzstatic.com/us/r1000/021/Purple/5e/7a/16/mzl.rrxhhibb.jpg"], "ipadScreenshotUrls":[], "sellerUrl":"http://www.e383kjfdl.com", "averageUserRatingForCurrentVersion":2.0, "userRatingCountForCurrentVersion":339, "artworkUrl512":"http://a4.mzstatic.com/us/r1000/016/Purple/71/c0/d1/mzl.jtolnvkr.png", "trackContentRating":"12+", "averageUserRating":2.0, "userRatingCount":374}, - {"version":"1.0", "kind":"software", "artistId":382022346, "artistName":"Tatvasoft", "price":0.99, - "description":"iMonkey Jump is simple iphone game developed by TatvaSoft. \n\nFeatures:\n1) Easy to play.\n2) Simple and user friendly graphics.\n\nHow to play:\nJust tap on screen to jump. \n\nHave a fun!!", "genreIds":["6014", "7010"], "releaseDate":"2010-08-21T05:09:49Z", "sellerName":"Tatvasoft", "currency":"USD", "trackId":387355584, "trackName":"iMonkey Jump", "genres":["Games", "Kids"], "releaseNotes":"", "primaryGenreName":"Games", "primaryGenreId":6014, "isGameCenterEnabled":false, "supportedDevices":["all"], "wrapperType":"software", "artworkUrl60":"http://a4.mzstatic.com/us/r1000/014/Purple/8c/9c/9f/mzi.ifprsmyh.png", "artworkUrl100":"http://a5.mzstatic.com/us/r1000/002/Purple/80/d3/30/mzi.qpawlxsg.png", "artistViewUrl":"http://itunes.apple.com/us/artist/tatvasoft/id382022346?uo=4", "contentAdvisoryRating":"4+", "trackCensoredName":"iMonkey Jump", "trackViewUrl":"http://itunes.apple.com/us/app/imonkey-jump/id387355584?mt=8&uo=4", "languageCodesISO2A":["EN"], "fileSizeBytes":"2584643", "screenshotUrls":["http://a3.mzstatic.com/us/r1000/006/Purple/25/80/1a/mzl.qyhqwpcm.png", "http://a2.mzstatic.com/us/r1000/010/Purple/c3/3e/6f/mzl.pioqyxjm.png"], "ipadScreenshotUrls":[], "sellerUrl":"http://www.tatvasoft.com/iphone-applications.asp", "averageUserRatingForCurrentVersion":3.0, "userRatingCountForCurrentVersion":62, "artworkUrl512":"http://a5.mzstatic.com/us/r1000/002/Purple/80/d3/30/mzi.qpawlxsg.png", "trackContentRating":"4+", "averageUserRating":3.0, "userRatingCount":64}, - {"version":"2.0", "kind":"software", "artistId":326478818, "artistName":"NER Brothers", "price":0.00, - "description":"#######################################\n!!!!free for limited time - 48 hours!!!!\n#######################################\n\nTop 1 Games \u2013 US, UK, Germany, Canada, France, Italy, ... \n\n\u2605 \u2605 Over 6 Million Players! Join in! \u2605 \u2605 \n\n\n-\"Jesus Christ! The perfect game for me. I love Snake, doodle graphics and glow in the dark stuff. Put three together and consider my mind blown.\" - theappera.com\n\n- \"Best game ever!\" - blippy.com\n\n-\"Please friends just download this game and play it\u2026 It is a wonderful game\u2026 The Glow Doodle Snake provides a very easy and most effective game play strategy that makes as addictive towards it\" - 1888freeonlinegames.com\n\n- \" I would recommend this to anyone looking for a simple game!\" - freesmartphoneapps.org\n\n- \"This is ... aaaawwwweeessssooooommmmeeee!!! BEST APP EVER!!\" - itunes Review\n\n\nGlow Doodle Snake is an iPhone version of the classic snake game which was popular on the original Nokia phones. \n\n\u2605 Facebook\n\n\u2605 3 great game modes\n\n\u2605 3 control types\n\n\u2605 Global High Scores - Game Center\n\n\u2605 4 texture styles \u2013 Doodle & Glow & Winter & Wood\n\n\u2605 Pause option\n\n\u2605 Retina support\n\n\u2605 Warning - Highly Addictive \u2605", "genreIds":["6014", "6016", "7010", "7003"], "releaseDate":"2010-04-27T02:10:53Z", "sellerName":"Alexander Nedoma", "currency":"USD", "trackId":368732592, "trackName":"Glow Doodle Snake - Highly Addictive", "genres":["Games", "Entertainment", "Kids", "Arcade"], - "releaseNotes":"Hello, Version 2.0 is now ready!!!\n\nThanks for your new reviews! :D Please give us more feedback in iTunes! - The best review will be posted in the app description!\nPlease give us also feedback in Facebook!\n\n\n+ 2 new Achievements (Game Center)\n+ ingame Game Center Achievements\n+ snake has now more than one belly ;)\n+ bug fix - crash at change to glow style\n+ small other bug fixes\n\n\nnew in version 2.1 (coming soon!)\n+ Game Center Multiplayer\n\n\n++++++++++++++++++++++\nGlow Doole Snake is now available for the iPad!\n++++++++++++++++++++++\n\n++++++++++++++++++++++\nIf you like Glow Doodle Snake, please rate it with 5 stars!\n++++++++++++++++++++++", "primaryGenreName":"Games", "primaryGenreId":6014, "isGameCenterEnabled":true, "supportedDevices":["all"], "wrapperType":"software", "artworkUrl60":"http://a4.mzstatic.com/us/r1000/054/Purple/24/45/76/mzi.pybaovez.png", "artworkUrl100":"http://a5.mzstatic.com/us/r1000/004/Purple/79/ff/b9/mzl.ucotcylv.png", "artistViewUrl":"http://itunes.apple.com/us/artist/ner-brothers/id326478818?uo=4", "contentAdvisoryRating":"4+", "trackCensoredName":"Glow Doodle Snake - Highly Addictive", "trackViewUrl":"http://itunes.apple.com/us/app/glow-doodle-snake-highly-addictive/id368732592?mt=8&uo=4", "languageCodesISO2A":["EN"], "fileSizeBytes":"11269493", - "screenshotUrls":["http://a3.mzstatic.com/us/r1000/026/Purple/e3/4b/07/mzl.aqcdtpmn.png", "http://a3.mzstatic.com/us/r1000/059/Purple/72/fa/92/mzl.qvvjstgh.png", "http://a3.mzstatic.com/us/r1000/050/Purple/b6/c2/23/mzl.lwjsnuef.png", "http://a1.mzstatic.com/us/r1000/031/Purple/26/e1/41/mzl.fccsxloj.png", "http://a5.mzstatic.com/us/r1000/018/Purple/ba/99/eb/mzl.dihhlpyi.png"], "ipadScreenshotUrls":[], "sellerUrl":"http://www.ner-brothers.com/mobile/nersnake/doodlesnakehome.html", "averageUserRatingForCurrentVersion":3.5, "userRatingCountForCurrentVersion":453, "artworkUrl512":"http://a5.mzstatic.com/us/r1000/004/Purple/79/ff/b9/mzl.ucotcylv.png", "trackContentRating":"4+", "averageUserRating":3.0, "userRatingCount":27741}, - {"version":"1.0", "kind":"software", "artistId":379064801, "artistName":"Angry Doodle", "price":1.99, - "description":"0.99$ only time limit!!!\n Enjoy 1000 free stick hunter animations in this app! \n After you see all the movies. plese don't remove your app from the device. all the movie content will update every week. \n You can see new movies everyweek!!!\n We will listen to you and only you!!", "genreIds":["6016", "6012"], "releaseDate":"2010-09-21T09:14:03Z", "sellerName":"Jiao Dong", "currency":"USD", "trackId":392476965, "trackName":"Stick Hunter - Ultimate", "genres":["Entertainment", "Lifestyle"], "releaseNotes":"", "primaryGenreName":"Entertainment", "primaryGenreId":6016, "isGameCenterEnabled":false, "supportedDevices":["all"], "wrapperType":"software", "artworkUrl60":"http://a2.mzstatic.com/us/r1000/015/Purple/d9/71/85/mzi.iovszrfi.png", "artworkUrl100":"http://a5.mzstatic.com/us/r1000/017/Purple/d2/64/02/mzi.roiejzzo.png", "artistViewUrl":"http://itunes.apple.com/us/artist/angry-doodle/id379064801?uo=4", "contentAdvisoryRating":"9+", "trackCensoredName":"Stick Hunter - Ultimate", "trackViewUrl":"http://itunes.apple.com/us/app/stick-hunter-ultimate/id392476965?mt=8&uo=4", "languageCodesISO2A":["EN"], "fileSizeBytes":"32637883", - "screenshotUrls":["http://a1.mzstatic.com/us/r1000/016/Purple/c3/81/b6/mzl.hqmsuchr.png", "http://a5.mzstatic.com/us/r1000/026/Purple/0c/d4/bc/mzl.ehvqqtdw.jpg", "http://a2.mzstatic.com/us/r1000/055/Purple/be/32/d7/mzl.mwpplqii.jpg", "http://a5.mzstatic.com/us/r1000/006/Purple/26/79/7b/mzl.qamwieif.jpg", "http://a2.mzstatic.com/us/r1000/046/Purple/a4/98/ff/mzl.lmkhimhi.jpg"], "ipadScreenshotUrls":[], "sellerUrl":"http://www.e383kjfdl.com", "averageUserRatingForCurrentVersion":2.0, "userRatingCountForCurrentVersion":46, "artworkUrl512":"http://a5.mzstatic.com/us/r1000/017/Purple/d2/64/02/mzi.roiejzzo.png", "trackContentRating":"9+", "averageUserRating":2.0, "userRatingCount":46}, - {"version":"2.0", "kind":"software", "artistId":284938424, "artistName":"Y Lau", "price":0.99, - "description":"\"Skateboard Doodle 3D\" allows you to design the graphics for the deck of your own 3D skateboard. You can also make the skateboard perform stunts in response to finger touch tricks.\n\nYou can decorate both the top and bottom of the 3D Skateboard deck using photos of, e.g, your beloved ones or drawings of your own.\n\nAfter applying your design to the 3D skateboard, you can touch to rotate and pose your 3D skateboard so that you can enjoy or export your 3D masterpiece skateboard in virtually any perspective.\n\n\"Skateboard Doodle 3D\" also has an \"Interactive Stunt Mode\". The 3D skateboard perform stunts in response to your finger rubbing direction and speed. If you press the \"Save\" button while the skateboard is stunting in the air, \"Skateboard Doodle 3D\" will \"freeze\" the stunting skateboard in the air, capture the moment to Photo Albums, and then resumes the stunting. It's a Fantastic experience you shouldn't miss!\n\nAnd don't forget that with the photo insertion feature, you can definitely decorate your 3D skateboard using drawings you created from any other special doodle apps!\n\n\n\nDESIGN MODE:\n- Insert photo from Photos Album to compose skateboard art\n- Rotate, resize and move the inserted photo anywhere on the skateboard deck\n- Sketch with different colors and brush sizes\n- Pick virtually unlimited number of color using the RGB sliders, or use the 6 default color buttons for instant color access\n- Eraser that allows you to erase even part of the inserted photos\n- Create, save and load multiple sets of skateboard designs\n\n3D MODE:\n- Insert backdrop photo from your Photos Albums\n- Touch to rotate and pose your 3D skateboard\n- Export the 3D scene to Photo Albums to share\n\n\n3D INTERACTIVE STUNT MODE:\n- The 3D skateboard perform stunts in response to you rubbing direction and speed\n- Rub on the middle part of the deck to make the skateboard stunt in the air\n- Press either end of the skateboard may push the stunting skateboard immediately to the ground and perform another stunt. \n- True physics based performance\n- Capture the moment when the skateboard is stunting in the air: Press the \"Save\" button while the skateboard is stunting\n\n\nQUICK TIPS:\n- Press the top or bottom views at the top of the screen to enter Design Mode\n- While in Design Mode, press the \"3D Now\" button to apply your artwork and enter 3D Mode\n- While in 3D Mode, press the \"Stunt\" button to enter 3D Interactive Stunt Mode\n- While in Stunt Mode, press the \"3D Now\" button to switch back to 3D Mode", "genreIds":["6016", "6014", "7016", "7015"], "releaseDate":"2010-08-05T11:10:37Z", "sellerName":"Yin Ki Lau", "currency":"USD", "trackId":382809834, "trackName":"Skateboard Doodle 3D", "genres":["Entertainment", "Games", "Sports", "Simulation"], "releaseNotes":"- Skateboard Doodle 3D is now universal\n- Improved sketching performance on iPhone 4", "primaryGenreName":"Entertainment", "primaryGenreId":6016, "isGameCenterEnabled":false, "supportedDevices":["all"], "wrapperType":"software", "artworkUrl60":"http://a4.mzstatic.com/us/r1000/059/Purple/ba/f3/c0/mzi.ohifsbmw.png", "artworkUrl100":"http://a2.mzstatic.com/us/r1000/004/Purple/93/78/e8/mzi.zehnpjgl.jpg", "artistViewUrl":"http://itunes.apple.com/us/artist/y-lau/id284938424?uo=4", "contentAdvisoryRating":"4+", "trackCensoredName":"Skateboard Doodle 3D", "trackViewUrl":"http://itunes.apple.com/us/app/skateboard-doodle-3d/id382809834?mt=8&uo=4", "languageCodesISO2A":["EN"], "fileSizeBytes":"3706155", - "screenshotUrls":["http://a5.mzstatic.com/us/r1000/006/Purple/d8/8f/61/mzl.acwaevqj.jpg", "http://a5.mzstatic.com/us/r1000/018/Purple/ab/59/c3/mzl.gnxskhvw.jpg", "http://a1.mzstatic.com/us/r1000/018/Purple/31/05/17/mzl.slyamixs.jpg", "http://a4.mzstatic.com/us/r1000/038/Purple/d0/59/ff/mzl.etjwitej.jpg", "http://a5.mzstatic.com/us/r1000/036/Purple/2f/cc/62/mzl.fsbvwiyb.jpg"], - "ipadScreenshotUrls":["http://a3.mzstatic.com/us/r1000/023/Purple/cd/9b/d7/mzl.qpkatzgv.1024x1024-65.jpg", "http://a2.mzstatic.com/us/r1000/007/Purple/ff/df/04/mzl.ccptsugl.1024x1024-65.jpg", "http://a1.mzstatic.com/us/r1000/011/Purple/4d/10/b8/mzl.kxjqemhg.1024x1024-65.jpg", "http://a5.mzstatic.com/us/r1000/050/Purple/41/8a/71/mzl.wgqzfewq.1024x1024-65.jpg", "http://a2.mzstatic.com/us/r1000/041/Purple/f4/c4/ee/mzl.akpirpia.1024x1024-65.jpg"], "sellerUrl":"http://www.oodot.com", "averageUserRatingForCurrentVersion":2.5, "userRatingCountForCurrentVersion":29, "artworkUrl512":"http://a2.mzstatic.com/us/r1000/004/Purple/93/78/e8/mzi.zehnpjgl.jpg", "trackContentRating":"4+", "averageUserRating":2.5, "userRatingCount":58}, - {"version":"1.2", "kind":"software", "artistId":409057868, "artistName":"Rinovi Apps", "price":0.00, - "description":"Doodle Board is a fantastic app for sketching and drawing. You can choose from millions of pen and background colors, which makes this a creative app to draw with. It has 15 preset coloring images. Set your own photos as backgrounds and draw on your friends. Doodle away your stress, have fun with colors, draw on your own photos...the opportunities are endless. Super easy to use!\n\nPlease send feedback and suggestions:\n\nRinoviapps@gmail.com", "genreIds":["6016", "6002"], "releaseDate":"2010-12-19T01:54:10Z", "sellerName":"olga servan-schreiber", "currency":"USD", "trackId":409928450, "trackName":"Doodle Board", "genres":["Entertainment", "Utilities"], "releaseNotes":"-All new Graffiti Mode!", "primaryGenreName":"Entertainment", "primaryGenreId":6016, "isGameCenterEnabled":false, "supportedDevices":["iPodTouchThirdGen", "iPad3G", "iPodTouchourthGen", "iPadWifi", "iPad2Wifi", "iPhone-3GS", "iPad23G", "iPhone4"], "wrapperType":"software", "artworkUrl60":"http://a2.mzstatic.com/us/r1000/012/Purple/eb/71/17/mzi.ermophup.png", "artworkUrl100":"http://a1.mzstatic.com/us/r1000/004/Purple/db/d5/da/mzi.ikppsrhk.png", "artistViewUrl":"http://itunes.apple.com/us/artist/rinovi-apps/id409057868?uo=4", "contentAdvisoryRating":"4+", "trackCensoredName":"Doodle Board", "trackViewUrl":"http://itunes.apple.com/us/app/doodle-board/id409928450?mt=8&uo=4", "languageCodesISO2A":["EN"], "fileSizeBytes":"2930611", - "screenshotUrls":["http://a1.mzstatic.com/us/r1000/029/Purple/2f/65/ff/mzl.uqsbgizo.png", "http://a1.mzstatic.com/us/r1000/021/Purple/50/d7/2e/mzl.iwcdxxrz.png", "http://a5.mzstatic.com/us/r1000/021/Purple/5c/66/cb/mzl.bgnezbmy.png", "http://a3.mzstatic.com/us/r1000/022/Purple/e3/fc/8a/mzl.cwqqibnb.png", "http://a2.mzstatic.com/us/r1000/041/Purple/bf/ee/6a/mzl.ytuuxtzq.png"], "ipadScreenshotUrls":[], "sellerUrl":null, "averageUserRatingForCurrentVersion":3.5, "userRatingCountForCurrentVersion":6, "artworkUrl512":"http://a1.mzstatic.com/us/r1000/004/Purple/db/d5/da/mzi.ikppsrhk.png", "trackContentRating":"4+", "averageUserRating":3.5, "userRatingCount":14}, - {"version":"1.8", "kind":"software", "artistId":311964337, "artistName":"ITIW", "price":0.00, - "description":"Your challenge is to help Glow Doodle fall and escape the spike that is trying to close in every moment. There will be some negative powers which will make the journey more difficult as well as some positive ones which will help you to go down easily. Just tilt your iPhone to move Glow doodle right or left to fall down through the holes and avoid getting spiked at the top. Score points by staying alive as long as possible.\n\nFeatures\n\n\u2022 Easy to play but tough to master\n\u2022 Super addictive gameplay\n\u2022 Cute character design with customization option (unlockable)\n\u2022 The ability to listen to iPod music whilst playing (unlockable)\n\u2022 Share your scores through Twitter.\n\u2022 OpenFeint enabled", "genreIds":["6014", "6016", "7009", "7003"], "releaseDate":"2010-04-15T08:14:56Z", "sellerName":"ITIW", "currency":"USD", "trackId":355266672, "trackName":"Glow Doodle Fall", "genres":["Games", "Entertainment", "Family", "Arcade"], "releaseNotes":"-Two new themes: Monster and Dino", "primaryGenreName":"Games", "primaryGenreId":6014, "isGameCenterEnabled":false, "supportedDevices":["all"], "wrapperType":"software", "artworkUrl60":"http://a1.mzstatic.com/us/r1000/023/Purple/de/89/b3/mzi.crxdiuya.png", "artworkUrl100":"http://a4.mzstatic.com/us/r1000/022/Purple/dd/b4/7d/mzi.wbxbcjxk.jpg", "artistViewUrl":"http://itunes.apple.com/us/artist/itiw/id311964337?uo=4", "contentAdvisoryRating":"4+", "trackCensoredName":"Glow Doodle Fall", "trackViewUrl":"http://itunes.apple.com/us/app/glow-doodle-fall/id355266672?mt=8&uo=4", "languageCodesISO2A":["EN"], "fileSizeBytes":"18649991", - "screenshotUrls":["http://a3.mzstatic.com/us/r1000/043/Purple/3b/aa/13/mzl.fxggxfga.png", "http://a5.mzstatic.com/us/r1000/003/Purple/f9/96/8e/mzl.ouhdsnep.jpg", "http://a4.mzstatic.com/us/r1000/048/Purple/ea/f6/d3/mzl.hlcgohaw.jpg", "http://a4.mzstatic.com/us/r1000/043/Purple/1d/e2/ce/mzl.mqesesck.png", "http://a5.mzstatic.com/us/r1000/003/Purple/18/44/18/mzl.bgpdtiih.png"], "ipadScreenshotUrls":[], "sellerUrl":"http://www.itiw-webdev.com/iphone", "averageUserRatingForCurrentVersion":3.5, "userRatingCountForCurrentVersion":2098, "artworkUrl512":"http://a4.mzstatic.com/us/r1000/022/Purple/dd/b4/7d/mzi.wbxbcjxk.jpg", "trackContentRating":"4+", "averageUserRating":3.0, "userRatingCount":42276}, - {"version":"1.4", "kind":"software", "artistId":364577326, "artistName":"Kids Addicting Games", "price":0.00, - "description":">>> FREE FOR LIMITED TIME ONLY <<<\nFeatured under \"What's Hot\" and \"New and Noteworthy\" - in Games, June 2010.\nCustomer Reviews on First Day: \"must play this who like doodle jump\" - US Store.\n\"Addictive Awesome\u2026 Good idea and making. I Highly recommend this game\" - US Store.\n\"Can't stop playing and its very challenging. Good initiative to do something different\" - US Store.\n\"Every now and then you buy an app that isn't greatly advertised and it turns out to be really good. This is one of those apps! Trust me, you will not be dissapointed. Great job!!\" - US Store.\n***************************************\n\nInstead of price increase basic theme made free with option of other awesome unlockable themes.\n\n***************************************\nIf you are bored with playing hundreds of similar platform based jumping games this one is completely different taste and challenge for you. Jump higher as you can but finding gaps, take fruits/coins, avoid bombs and power jump by rocket. Completely new idea of jumping game.\n\nSimple and easy rule to find gaps between platforms and jump through that. Tilt your iPhone to run left or right and when you are under gap just tap to jump. Screen is moving up also and if you reach bottom of screen than you fall down and game is over.\n\n>> Enjoy jumping and explore sky, planets and dark environment.\n>> Openfeint score board and achievements.\n>> Take fruits and coins to run and jump faster.\n>> Avoid bombs which will decrease your running and jumping speed.\n>> 5 bomb blast will over your game. \n>> Jump and touch rocket for power jump.\n>> Explore as higher as you can and enjoy exploring dark night sky and planets.\n\nDownload it now and enjoy best jumping game. Take it now since introductory free offer running for limited time.", "genreIds":["6014", "7010", "6016", "7015"], "releaseDate":"2010-06-04T05:16:54Z", "sellerName":"ertan akgul", "currency":"USD", "trackId":374332697, "trackName":"Jump Above", "genres":["Games", "Kids", "Entertainment", "Simulation"], "releaseNotes":">> New themes - Robot and Dog (Unlockable) added.", "primaryGenreName":"Games", "primaryGenreId":6014, "isGameCenterEnabled":false, "supportedDevices":["all"], "wrapperType":"software", "artworkUrl60":"http://a1.mzstatic.com/us/r1000/018/Purple/cc/8f/2a/mzi.gesynrnd.png", "artworkUrl100":"http://a4.mzstatic.com/us/r1000/024/Purple/27/73/83/mzi.jfuxvppl.png", "artistViewUrl":"http://itunes.apple.com/us/artist/kids-addicting-games/id364577326?uo=4", "contentAdvisoryRating":"4+", "trackCensoredName":"Jump Above", "trackViewUrl":"http://itunes.apple.com/us/app/jump-above/id374332697?mt=8&uo=4", "languageCodesISO2A":["EN"], "fileSizeBytes":"13027211", - "screenshotUrls":["http://a4.mzstatic.com/us/r1000/036/Purple/b1/1a/0b/mzl.ctirtynn.png", "http://a5.mzstatic.com/us/r1000/013/Purple/d7/a6/30/mzl.feqpnpcg.png", "http://a2.mzstatic.com/us/r1000/026/Purple/c9/37/e8/mzl.agvbexow.png", "http://a2.mzstatic.com/us/r1000/043/Purple/b2/f1/60/mzl.ypgvaxba.png", "http://a1.mzstatic.com/us/r1000/043/Purple/b1/40/1f/mzl.ciglbqnb.png"], "ipadScreenshotUrls":[], "sellerUrl":"http://iphoneappdevelopmentco.wordpress.com/", "averageUserRatingForCurrentVersion":2.5, "userRatingCountForCurrentVersion":150, "artworkUrl512":"http://a4.mzstatic.com/us/r1000/024/Purple/27/73/83/mzi.jfuxvppl.png", "trackContentRating":"4+", "averageUserRating":2.5, "userRatingCount":2756}, - {"version":"4.0", "kind":"software", "artistId":350741588, "artistName":"Robots Vs. Wizards, LLC", "price":0.99, - "description":"-\u2605- Nearly a half MILLION downloads -\u2605-\nDoodle monster combines the challenge of a running game with smaller more traditional platformer elements rather than huge chunks of land.\n-\u2605-\u2605--\u2605FEATURES-\u2605-\u2605--\u2605\n\u2022\u2022Hi Res Retina Support for iphone4\n\u2022\u2022Now unlock new monsters as you earn higher scores.\n\u2022\u2022Unlock new themes to spice up gameplay. \n\u2022\u2022Game Center enabled. Have more fun with online leader boards and achievements.\n\u2022\u2022Facebook enabled for posting directly on your wall from in game.", "genreIds":["6014", "7002", "6016", "7009"], "releaseDate":"2010-02-09T12:15:54Z", "sellerName":"Robots Vs. Wizards, LLC", "currency":"USD", "trackId":352972243, "trackName":"Doodle Monster", "genres":["Games", "Adventure", "Entertainment", "Family"], - "releaseNotes":"----BIG update to celebrate the games anniversary-----\n\u2022Universal Support for iPads!!!! \n\u2022Huge control overhaul - One side jumps the other boosts. No more need to touch tiny buttons.\n\u2022Autorotate has been added (not just iPad)\n\u2022Performance increase on all devices. (YES... even 1st gen!!)\n\u2022New 100 point GC achievement for those high scoring folks. Some of you are just insane... In a good way so, here is 100 points!!\n\n----If you enjoy the update PLEASE take a minute to update your REVIEW or RATING. We appreciate each and every one. And We appreciate everyone who has watched this game evolve over the last year. \nThanks, \nJames - RVWgames.com", "primaryGenreName":"Games", "primaryGenreId":6014, "isGameCenterEnabled":true, "supportedDevices":["all"], "wrapperType":"software", "artworkUrl60":"http://a4.mzstatic.com/us/r1000/015/Purple/6e/32/d7/mzi.tdzbkpfs.png", "artworkUrl100":"http://a1.mzstatic.com/us/r1000/057/Purple/4a/54/fe/mzl.oymuivrv.png", "artistViewUrl":"http://itunes.apple.com/us/artist/robots-vs-wizards-llc/id350741588?uo=4", "contentAdvisoryRating":"4+", "trackCensoredName":"Doodle Monster", "trackViewUrl":"http://itunes.apple.com/us/app/doodle-monster/id352972243?mt=8&uo=4", "languageCodesISO2A":["EN"], "fileSizeBytes":"31618699", - "screenshotUrls":["http://a3.mzstatic.com/us/r1000/020/Purple/60/13/eb/mzl.hbojxmbl.png", "http://a2.mzstatic.com/us/r1000/017/Purple/76/33/9c/mzl.jpcdkzqr.png", "http://a1.mzstatic.com/us/r1000/048/Purple/35/f8/84/mzl.wviucgrd.png", "http://a5.mzstatic.com/us/r1000/043/Purple/1d/07/ec/mzl.delfymou.png", "http://a1.mzstatic.com/us/r1000/044/Purple/47/d7/22/mzl.iixadgsn.png"], - "ipadScreenshotUrls":["http://a2.mzstatic.com/us/r1000/014/Purple/8c/9e/af/mzl.mzyijoha.1024x1024-65.jpg", "http://a2.mzstatic.com/us/r1000/050/Purple/dd/70/b0/mzl.xugyzlct.1024x1024-65.jpg", "http://a3.mzstatic.com/us/r1000/009/Purple/b9/25/b9/mzl.vwxelgsa.1024x1024-65.jpg", "http://a1.mzstatic.com/us/r1000/032/Purple/0e/ff/c0/mzl.eyjixpyk.1024x1024-65.jpg"], "sellerUrl":"http://robotsvswizards.com", "averageUserRatingForCurrentVersion":3.0, "userRatingCountForCurrentVersion":38, "artworkUrl512":"http://a1.mzstatic.com/us/r1000/057/Purple/4a/54/fe/mzl.oymuivrv.png", "trackContentRating":"4+", "averageUserRating":2.5, "userRatingCount":6077}, - {"version":"1.2.9", "kind":"software", "artistId":306585995, "artistName":"Happylatte", "price":0.99, - "description":"Pee Monkey Toilet Trainer reaches 2 million downloads!\n\n\u2022 Top #1 game in many countries, including the US\n\u2022 Top 100 game in almost all countries around the world\n\u2022 14 years of accumulated pee time and counting...\nThanks everyone, and happy peeing :D\n\n\u00b7 \u00b7 \u00b7 \u00b7 \u00b7 \u00b7 \u00b7 \u00b7 \u00b7 \u00b7 \u00b7 \u00b7 \u00b7 \u00b7 \u00b7 \u00b7 \u00b7 \u00b7 \u00b7 \u00b7 \u00b7 \u00b7 \u00b7 \u00b7 \u00b7 \u00b7 \u00b7 \u00b7 \u00b7 \u00b7 \u00b7 \u00b7 \u00b7 \u00b7 \u00b7 \u00b7 \u00b7 \u00b7\n\nTest your precision peeing skills in a familiar environment: the toilet!\n\nYour task sounds easy: help PeeMonkey pee into the toilet, but there are some complications:\n\u2022 Due to some medical mystery, PeeMonkey can't stop peeing! \n\u2022 He's sliding back and forth on a bar of soap at neck-breaking speeds! \n\u2022 The pee-level in the room is getting dangerously close to that power outlet! \n\nFeatures include:\n\u2022 Easy controls\u2014tilt your device to aim your pee\n\u2022 Pee perfectly and get superflow combos for each full toilet\n\u2022 Record your best peeing results on global scoreboard and challenge your friends to a pee-duel\n\u2022 Atmospheric sounds and animations\n\nThis monkey toilet game is great for kids of all ages.\n\n\u2022\u2022\u2022 NEW VERSION AVAILABLE \u2022\u2022\u2022\nPee Monkey Toilet Trainer 2, also known as \"Gold Edition\", features:\n \u2022 pee in all the colors of the rainbow (literally)\n \u2022 easy & hard levels (bath tub and chamber pot)\n \u2022 luxurious new golden graphics\n\n\u00b7 \u00b7 \u00b7 \u00b7 \u00b7 \u00b7 \u00b7 \u00b7 \u00b7 \u00b7 \u00b7 \u00b7 \u00b7 \u00b7 \u00b7 \u00b7 \u00b7 \u00b7 \u00b7 \u00b7 \u00b7 \u00b7 \u00b7 \u00b7 \u00b7 \u00b7 \u00b7 \u00b7 \u00b7 \u00b7 \u00b7 \u00b7 \u00b7 \u00b7 \u00b7 \u00b7 \u00b7 \u00b7\n\nSUPPORT THE PEE MONKEYS\n\nIf you you like Pee Monkey Toilet Trainer please check out these:\n\n\u25b6 Pee Monkey Toilet Trainer 2\u2014 also on the AppStore\nPee in all the colors of the rainbow (literally), take it easy by peeing into the tub, or challenge yourself on the pot, check out the \"Gold Edition\" at\nhttp://peemonkey.com/tt2\n\n\u25b6 Pee Monkey Jungle Fire \u2014 also on the AppStore\nIf you think you've mastered superflow, try a completely different adventure with Pee Monkey Jungle Fire \u2014 fly & pee at the same time! Just search for Pee Monkey on the app store, or go to \nhttp://peemonkey.com/jf\n\n\u25b6 Pee Monkey Pee Straight t-shirts\nShow your love with these outrageous t-shirts\nhttp://happylatte.com/store\n\n\u25b6 Follow us on Twitter\nhttp://twitter.com/happylatte\n\n\u25b6 Fan Pee Monkey on Facebook\nhttp://happylatte.com/facebook", "genreIds":["6014", "7003", "7001", "6016"], "releaseDate":"2009-04-08T02:22:45Z", "sellerName":"Exoweb Ltd.", "currency":"USD", "trackId":308239400, "trackName":"Pee Monkey Toilet Trainer", "genres":["Games", "Arcade", "Action", "Entertainment"], - "releaseNotes":"\u2022 Fix rare crash on iOS4.1 and related compatibility issues.\n\u2022 Fix low graphic memory causing Cocos2D stop refreshing problem on iOS4 machines", "primaryGenreName":"Games", "primaryGenreId":6014, "isGameCenterEnabled":false, "supportedDevices":["all"], "wrapperType":"software", "artworkUrl60":"http://a1.mzstatic.com/us/r1000/017/Purple/c2/93/80/mzi.jhsznqdd.png", "artworkUrl100":"http://a5.mzstatic.com/us/r1000/006/Purple/5b/b2/b1/mzl.kpuogobh.jpg", "artistViewUrl":"http://itunes.apple.com/us/artist/happylatte/id306585995?mt=8&uo=4", "contentAdvisoryRating":"9+", "trackCensoredName":"Pee Monkey Toilet Trainer", "trackViewUrl":"http://itunes.apple.com/us/app/pee-monkey-toilet-trainer/id308239400?mt=8&uo=4", "languageCodesISO2A":["EN"], "fileSizeBytes":"5065013", - "screenshotUrls":["http://a1.mzstatic.com/us/r1000/045/Purple/c0/53/3d/mzl.ecaejgpz.tiff", "http://a1.mzstatic.com/us/r1000/058/Purple/e1/69/9b/mzl.fwzffywa.tif", "http://a1.mzstatic.com/us/r1000/037/Purple/2b/c1/25/mzl.wbehznaj.tif", "http://a1.mzstatic.com/us/r1000/056/Purple/2a/66/79/mzl.qjszvakn.tif"], "ipadScreenshotUrls":[], "sellerUrl":"http://happylatte.com/", "averageUserRatingForCurrentVersion":3.5, "userRatingCountForCurrentVersion":464, "artworkUrl512":"http://a5.mzstatic.com/us/r1000/006/Purple/5b/b2/b1/mzl.kpuogobh.jpg", "trackContentRating":"9+", "averageUserRating":3.0, "userRatingCount":84280}, - {"version":"2.0", "kind":"software", "artistId":334009256, "artistName":"Global Game Holdings Co., Limited", "price":1.99, - "description":"Get ready to rumble with 2 mad heroes in this fighting game. Learn the moves, craft your strategy, and unleash devastating combinations on your opponent.\n Features:\n 1.Amazing stick action \n 2.Blood effect is amazing.", "genreIds":["6014", "7003", "7001", "6016"], "releaseDate":"2010-04-12T09:51:25Z", "sellerName":"Global Game Holdings Co., Limited", "currency":"USD", "trackId":366798069, "trackName":"Doodle Stick Fighters", "genres":["Games", "Arcade", "Action", "Entertainment"], "releaseNotes":"1.add one movie\n 2.fixed some bugs", "primaryGenreName":"Games", "primaryGenreId":6014, "isGameCenterEnabled":false, "supportedDevices":["all"], "wrapperType":"software", "artworkUrl60":"http://a1.mzstatic.com/us/r1000/049/Purple/b0/a9/96/mzi.audwkggw.png", "artworkUrl100":"http://a5.mzstatic.com/us/r1000/021/Purple/02/1e/90/mzi.uuqfszcm.png", "artistViewUrl":"http://itunes.apple.com/us/artist/global-game-holdings-co-limited/id334009256?uo=4", "contentAdvisoryRating":"12+", "trackCensoredName":"Doodle Stick Fighters", "trackViewUrl":"http://itunes.apple.com/us/app/doodle-stick-fighters/id366798069?mt=8&uo=4", "languageCodesISO2A":["EN"], "fileSizeBytes":"19925433", - "screenshotUrls":["http://a1.mzstatic.com/us/r1000/027/Purple/26/79/7b/mzl.abqyqoti.jpg", "http://a5.mzstatic.com/us/r1000/021/Purple/d2/21/52/mzl.uoixywhl.jpg", "http://a3.mzstatic.com/us/r1000/005/Purple/e9/4b/43/mzl.djqlkawf.jpg"], "ipadScreenshotUrls":[], "sellerUrl":"http://www.facebook.com", "averageUserRatingForCurrentVersion":3.0, "userRatingCountForCurrentVersion":28, "artworkUrl512":"http://a5.mzstatic.com/us/r1000/021/Purple/02/1e/90/mzi.uuqfszcm.png", "trackContentRating":"12+", "averageUserRating":2.5, "userRatingCount":1036}, - {"version":"1.4", "kind":"software", "artistId":363557146, "artistName":"WEN CHENG CHUNG", "price":1.99, - "description":"* Primary Objective *\n1: Fly over as many cars as possible\n2: Dodge all missile and aircraft\n3: Land on a car when your energy is low\n4. Land on ambulance when your HP is low\n5. Survive at all cost!\n\n* Secondary Objective *\n1. Get items flying in the sky\n2. Hit missile/aircraft when you have a shield\n3. Land on cars to check out bonus\n4. Tell your friends to join (e.g. Facebook, Twitter)\n\n* How your comrade die *\n1. Dropped to the ground\n2. Hit by missiles/aircraft when they have no shield\n3. Touched something with nuke sign\n4. Hit by cars/trucks head-on\n5. Killed by mystery force\n\n*** YOUTUBE ***\nhttp://www.youtube.com/watch?v=d-lXkK2UPZM\n\n*** RATINGS AND REVIEWS***\n- Rated as 4/5 by web.meet-i.com and was ranked #1 best selling paid application in mid of May\n- Rated as \"Good\" by gamesuncovered.com and their comments are \"There\u2019s a surprising amount here to like; three modes of varying difficulty, OpenFeint high scoring and fun, challenging gameplay. \", \"fun enough to play through over again\"\n\n*** COMMENTS FROM PLAYERS ***\n- \"Once you try it, you can not stop\" @iTune\n- \"This game is excellent even more addictive than doodle jump with plus 3 different modes for its small price it is useless to hesitate...\" @iTune\n\n*** FEATURES ***\nThis is a game that is easy to play but hard to master\n- game with world-class physics\n- nice cartoon graphics with stunning effects\n- 3 different characters (DLC4)\n- increasing number of enemies along your flying route\n- enemies range from missiles to airships and something unexpected!\n- over 10 types of car for landing\n- 5 different items to assist your flying journey\n- 3 different modes provide great replay values \n- 3 different areas\n- global and local leaderboard\n- Submit score to facebook and twitter \n- leaderboards and achievement with openfeint\n- hear your own mp3 while flying\n\n*** HOW TO PLAY ***\n- tap right of the screen to fly higher, tap left of the screen to drop\n- If you land on a car after a long flying time, you will receive bonus score. You will receive this bonus only when you land successfully. The longer flight before landing, the more the bonus. If you die before landing, sorry, no bonus score.\n- I recommend to play this game with 2 hands, but play with single hand is also possible (^^)\n\n*** OTHER GAMES ***\n- Stunt Carz\n- Math Alchemist \n- HangZombie\n\n*** Your 5 stars rating will make DLC 5 come earlier! ***\n*** Don't forget to twitter or facebook your friends that you like this game and our other games \"Stunt Carz\", \"Math Alchemist\" and \"HangZombie\" ***", "genreIds":["6014", "6016", "7010", "7009"], "releaseDate":"2010-05-11T12:27:22Z", "sellerName":"WEN CHENG CHUNG", "currency":"USD", "trackId":370933494, "trackName":"Doodle Flying Hero - DLC4 Masker", "genres":["Games", "Entertainment", "Kids", "Family"], - "releaseNotes":"DLC4 - A major update\n- New character: masker\n- Updated user interface\n- Updated game balance\n- Shorter initial loading time\n- Improved memory management\n\nUpcoming DLC5 will include a new area, please leave your suggestion in review of itune, thanks!", "primaryGenreName":"Games", "primaryGenreId":6014, "isGameCenterEnabled":false, "supportedDevices":["all"], "wrapperType":"software", "artworkUrl60":"http://a4.mzstatic.com/us/r1000/027/Purple/1f/a0/5f/mzi.gpvyqsfo.png", "artworkUrl100":"http://a4.mzstatic.com/us/r1000/033/Purple/e8/7b/7e/mzi.ajvxfxki.png", "artistViewUrl":"http://itunes.apple.com/us/artist/wen-cheng-chung/id363557146?uo=4", "contentAdvisoryRating":"4+", "trackCensoredName":"Doodle Flying Hero - DLC4 Masker", "trackViewUrl":"http://itunes.apple.com/us/app/doodle-flying-hero-dlc4-masker/id370933494?mt=8&uo=4", "languageCodesISO2A":["EN"], "fileSizeBytes":"10890992", - "screenshotUrls":["http://a4.mzstatic.com/us/r1000/026/Purple/9d/f5/8e/mzl.uvqmdjii.png", "http://a4.mzstatic.com/us/r1000/027/Purple/4c/dc/05/mzl.auvabmwo.png", "http://a1.mzstatic.com/us/r1000/050/Purple/55/03/29/mzl.zuzkwgoj.png", "http://a2.mzstatic.com/us/r1000/038/Purple/71/46/37/mzl.fccylpjw.png", "http://a3.mzstatic.com/us/r1000/007/Purple/0c/6e/d6/mzl.afzecmnb.png"], "ipadScreenshotUrls":[], "sellerUrl":"http://keobrothers.blogspot.com/2010/06/doodle-flying-hero-dlc3-nuker.html", "averageUserRatingForCurrentVersion":1.5, "userRatingCountForCurrentVersion":3, "artworkUrl512":"http://a4.mzstatic.com/us/r1000/033/Purple/e8/7b/7e/mzi.ajvxfxki.png", "trackContentRating":"4+", "averageUserRating":3.0, "userRatingCount":301}, - {"version":"2.0", "kind":"software", "artistId":385044417, "artistName":"Kitri Software, LLC", "price":0.00, - "description":"Our Promise \"It will always be Free\". Please join Our Facebook Page by Clicking On the Support Button! Thanks\n\nLook for our first update which contains the first duck jump theme \"City Sky\" later this week.\n\nDuck Jump is quickly becoming one of the most popular Iphone Applications because of its cute graphics and unique gameplay. \n\nWe will be constantly updating this application. Please join us on the official duck jump facebook page to see updates about new themes and content.", "genreIds":["6014", "7008", "6017", "7010"], "releaseDate":"2011-01-07T08:02:13Z", "sellerName":"Kitri Software, LLC", "currency":"USD", "trackId":413305110, "trackName":"Baby Duck Jump for Little Kids", "genres":["Games", "Educational", "Education", "Kids"], "releaseNotes":"Added Entirely New Graphics \nParallax Scrolling Background\nFirst Theme of Many (City Theme)\nNew Menu and High Scores Design", "primaryGenreName":"Games", "primaryGenreId":6014, "isGameCenterEnabled":false, "supportedDevices":["all"], "wrapperType":"software", "artworkUrl60":"http://a1.mzstatic.com/us/r1000/058/Purple/ee/87/d4/mzi.zyzniztp.png", "artworkUrl100":"http://a5.mzstatic.com/us/r1000/059/Purple/9f/0f/a2/mzi.shmnbhwv.png", "artistViewUrl":"http://itunes.apple.com/us/artist/kitri-software-llc/id385044417?uo=4", "contentAdvisoryRating":"4+", "trackCensoredName":"Baby Duck Jump for Little Kids", "trackViewUrl":"http://itunes.apple.com/us/app/baby-duck-jump-for-little-kids/id413305110?mt=8&uo=4", "languageCodesISO2A":["EN"], "fileSizeBytes":"3807773", - "screenshotUrls":["http://a4.mzstatic.com/us/r1000/035/Purple/b9/67/58/mzl.snxehxdo.png", "http://a2.mzstatic.com/us/r1000/049/Purple/a0/57/c1/mzl.lhrzvjxx.png", "http://a4.mzstatic.com/us/r1000/050/Purple/7b/a4/d8/mzl.ljebhzps.png", "http://a2.mzstatic.com/us/r1000/015/Purple/d0/87/c6/mzl.wvquhbbb.png"], "ipadScreenshotUrls":[], "sellerUrl":null, "averageUserRatingForCurrentVersion":3.0, "userRatingCountForCurrentVersion":19, "artworkUrl512":"http://a5.mzstatic.com/us/r1000/059/Purple/9f/0f/a2/mzi.shmnbhwv.png", "trackContentRating":"4+", "averageUserRating":3.5, "userRatingCount":37}, - {"version":"1.0", "kind":"software", "artistId":348586730, "artistName":"ESCAPP", "price":0.99, - "description":"Wonderful and addictive cheats . Accept No Immitations\n\nDoodle Jump is one of the top selling games of all time. It has the average rating of 9/10 at most of the review sites.\n\nDiscover secret fun codes and screens and tricks that help beat opponents quickly.\n\nSecret tricks from top players all OVER THE WORLD! \nGet the most out of your play.\n\nTHESE ARE POPULAR TRICKS, AND CHEATS RESEARCHED FOR YOU.\n\nDisclaimer: This guide is not endorsed by or affiliated with the creator of this video game or its licensors. This application complies with the US Copyright law guidelines of \"fair use\". All images were cropped with lower resolution and used only to convey what the application is about. All characters, their names, places, and other aspects of the video game described within this application are trademarked by their respective owners. This application does not copy any portion of the game, nor does it contain screenshots of the game, only original text descriptions. If you feel there is a direct copyright or trademark volition that doesn't follow within the \"fair use\" guidelines, please contact us directly to discuss. \n\n\nUpdates are frequent as players learn and reveal new tricks and loop holes that open your play experience to a completely new world!\n\nReviews:\n\nEdfoot45 \"These cheats are great! know i won't play it any other way.\" \n\n8boye:\" love this, i don't use it for cheating, i like the extra screens\"", "genreIds":["6016", "6018"], "releaseDate":"2010-03-18T12:15:30Z", "sellerName":"Escoth LLC", "currency":"USD", "trackId":361990629, "trackName":"Doodle Jump Cheats For iPhone", "genres":["Entertainment", "Books"], "releaseNotes":"", "primaryGenreName":"Entertainment", "primaryGenreId":6016, "isGameCenterEnabled":false, "supportedDevices":["all"], "wrapperType":"software", "artworkUrl60":"http://a3.mzstatic.com/us/r1000/042/Purple/91/de/55/mzl.buahiaph.png", "artworkUrl100":"http://a1.mzstatic.com/us/r1000/027/Purple/63/33/c9/mzl.hvypswks.jpg", "artistViewUrl":"http://itunes.apple.com/us/artist/escapp/id348586730?uo=4", "contentAdvisoryRating":"4+", "trackCensoredName":"Doodle Jump Cheats For iPhone", "trackViewUrl":"http://itunes.apple.com/us/app/doodle-jump-cheats-for-iphone/id361990629?mt=8&uo=4", "languageCodesISO2A":["EN"], "fileSizeBytes":"301962", "screenshotUrls":["http://a2.mzstatic.com/us/r1000/033/Purple/77/4d/ea/mzl.yyznztoz.jpg"], "ipadScreenshotUrls":[], "sellerUrl":null, "averageUserRatingForCurrentVersion":2.0, "userRatingCountForCurrentVersion":119, "artworkUrl512":"http://a1.mzstatic.com/us/r1000/027/Purple/63/33/c9/mzl.hvypswks.jpg", "trackContentRating":"4+", "averageUserRating":2.0, "userRatingCount":119}, - {"version":"1.0", "kind":"software", "artistId":379064801, "artistName":"Angry Doodle", "price":1.99, - "description":"Walkthrough For Monster Trucks Nitro!!!!\n With full tracks!!!!\n The best video walkthrough for Monster Trucks.\n thes best walkthrough for monster trucks", "genreIds":["6006", "6014", "7003", "7001"], "releaseDate":"2010-09-21T09:09:19Z", "sellerName":"Jiao Dong", "currency":"USD", "trackId":389903888, "trackName":"Walkthrough For Monster Trucks", "genres":["Reference", "Games", "Arcade", "Action"], "releaseNotes":"", "primaryGenreName":"Reference", "primaryGenreId":6006, "isGameCenterEnabled":false, "supportedDevices":["all"], "wrapperType":"software", "artworkUrl60":"http://a5.mzstatic.com/us/r1000/027/Purple/d7/b3/6f/mzi.trgkugon.png", "artworkUrl100":"http://a4.mzstatic.com/us/r1000/033/Purple/7c/ed/20/mzi.fgbqkvio.png", "artistViewUrl":"http://itunes.apple.com/us/artist/angry-doodle/id379064801?uo=4", "contentAdvisoryRating":"4+", "trackCensoredName":"Walkthrough For Monster Trucks", "trackViewUrl":"http://itunes.apple.com/us/app/walkthrough-for-monster-trucks/id389903888?mt=8&uo=4", "languageCodesISO2A":["EN"], "fileSizeBytes":"17964924", - "screenshotUrls":["http://a4.mzstatic.com/us/r1000/025/Purple/71/f1/f0/mzl.xbwarrcc.png", "http://a1.mzstatic.com/us/r1000/008/Purple/c8/50/00/mzl.wrlfngyw.png", "http://a5.mzstatic.com/us/r1000/036/Purple/bc/11/a2/mzl.qvvyfuxn.png", "http://a4.mzstatic.com/us/r1000/027/Purple/48/1c/01/mzl.nceeduay.png", "http://a4.mzstatic.com/us/r1000/030/Purple/24/66/62/mzl.jszdrrlo.png"], "ipadScreenshotUrls":[], "sellerUrl":"http://www.e383kjfdl.com", "averageUserRatingForCurrentVersion":2.0, "userRatingCountForCurrentVersion":15, "artworkUrl512":"http://a4.mzstatic.com/us/r1000/033/Purple/7c/ed/20/mzi.fgbqkvio.png", "trackContentRating":"4+", "averageUserRating":2.0, "userRatingCount":15}, - {"version":"2.2", "kind":"software", "artistId":351166772, "artistName":"PixOwl", "price":0.00, - "description":"\u2605 Simply the best Snake game on iPhone (rated 5 stars in iTunes by the users) \u2605 \n\u2605 More than 1.2 million downloads so far! \u2605 \n\u2605 Featured as \"What's Hot\" by Apple under Action & Arcade Games \u2605\n\n*************************************************************\n\n\u2605 VERY ADDICTIVE GAME ! \u2605 \nDoodle Grub is a very addictive game with tight controls and cute visuals inspired by Snake, the famous video game from the mid 1970s. \n\nTilt your iPhone to control the worm, eat apples to grow and increase your score. \nAvoid the enemies! \n\n\u2605 FEATURES \u2605\n- 5 free default themes available (you can unlock 6 more)\n- Full retina display HD graphics designed by Laurel (www.bloglaurel.com)\n- Game Center support (online leaderboards & achievements)\n- Online & local (Bluetooth) multiplayer mode\n- Lots of fun!\n\n\u2605 USER REVIEWS \u2605\nTrust all other users 5 stars reviews and try it yourself, it\u2019s FREE!\n- \u201CThe best snake game for the iPhone!\u201D \n- \u201CBest worm-based game on the app store!\u201D\n- \u201CIt is addictive, entertaining, and loads of dang F.U.N!\u201D\n- \u201CProps to u guys I rarely leave feedback but this game deserves it \u201C \n- \u201COmg best game ever never thought it would be this addictive I love all the themes\u201D \n- \u201CAbsolutely love this game! it is so addicting and fun.\u201D\n- \u201CLove it! I don't play many games on iPhone, but I found myself addicted to this game!\u201D\n- \u201CSimply amazing, controls are smooth, game runs perfectly and fun graphics. Also themes are a great addition, you'll never get bored with the same thing over and over again\u201D\nand many more!\n\n\n\u2605 FOLLOW US \u2605 \nWebsite: www.doodlegrub.com - Twitter: http://twitter.com/DoodleGrub - Facebook: http://www.facebook.com/pages/Doodle-Grub-/132502440110107 \n\nSuggestions? Drop an email at doodlegrub@pixowl.com \n\n*************************************************************\n\nABOUT PIXOWL INC.\n\nPixowl is a mobile videogame studio created to build funny casual games for everyone. \nOur vision is to provide people with a brief escape of fun during the course of their normal day.\n\nWebpage : http://www.pixowl.com/\nFollow us on Twitter for the latest updates on our games, previews and hints: http://twitter.com/pixowl", "genreIds":["6014", "6016", "7003", "7001"], "releaseDate":"2010-06-08T09:04:25Z", "sellerName":"Adrien Duermael", "currency":"USD", "trackId":375749524, "trackName":"Doodle Grub", "genres":["Games", "Entertainment", "Arcade", "Action"], "releaseNotes":"- A underwater theme\n- A jurassic theme: beware of lava!\n- Tweaked the game to load much faster!\n- Fixed minor bugs", "primaryGenreName":"Games", "primaryGenreId":6014, "isGameCenterEnabled":true, "supportedDevices":["all"], "wrapperType":"software", "artworkUrl60":"http://a1.mzstatic.com/us/r1000/007/Purple/d0/f4/4d/mzi.mgsedgdw.png", "artworkUrl100":"http://a5.mzstatic.com/us/r1000/035/Purple/73/89/f7/mzm.gaztzhiy.png", "artistViewUrl":"http://itunes.apple.com/us/artist/pixowl/id351166772?uo=4", "contentAdvisoryRating":"4+", "trackCensoredName":"Doodle Grub", "trackViewUrl":"http://itunes.apple.com/us/app/doodle-grub/id375749524?mt=8&uo=4", - "languageCodesISO2A":["CS", "DA", "DE", "EL", "EN", "ES", "FI", "FR", "HR", "ID", "IT", "HE", "JA", "KO", "NL", "PL", "PT", "RO", "RU", "SK", "SV", "TH", "TR", "UK", "ZH", "NB"], "fileSizeBytes":"18950207", - "screenshotUrls":["http://a2.mzstatic.com/us/r1000/017/Purple/8d/b6/3b/mzl.irzztplr.png", "http://a4.mzstatic.com/us/r1000/041/Purple/26/13/e2/mzl.irqkhjlm.png", "http://a3.mzstatic.com/us/r1000/027/Purple/39/24/cd/mzl.xuyfgpbd.png", "http://a4.mzstatic.com/us/r1000/043/Purple/4d/ee/04/mzl.jkzhmiwd.png", "http://a4.mzstatic.com/us/r1000/041/Purple/a2/14/bb/mzl.gwrbcany.png"], "ipadScreenshotUrls":[], "sellerUrl":"http://www.doodlegrub.com/", "averageUserRatingForCurrentVersion":4.5, "userRatingCountForCurrentVersion":9, "artworkUrl512":"http://a5.mzstatic.com/us/r1000/035/Purple/73/89/f7/mzm.gaztzhiy.png", "trackContentRating":"4+", "averageUserRating":3.5, "userRatingCount":567}, - {"version":"1.0", "kind":"software", "artistId":386871037, "artistName":"John Adey", "price":0.99, - "description":"Ever want to play a game like doodle jump with a halo character?\n\nHere it is!! Halo Jump!\n\nSee who out of your friends can get the highest score!", "genreIds":["6014", "7001", "7002", "6016"], "releaseDate":"2010-10-15T01:56:06Z", "sellerName":"John Adey", "currency":"USD", "trackId":397154987, "trackName":"Halo Jump", "genres":["Games", "Action", "Adventure", "Entertainment"], "releaseNotes":"", "primaryGenreName":"Games", "primaryGenreId":6014, "isGameCenterEnabled":false, "supportedDevices":["all"], "wrapperType":"software", "artworkUrl60":"http://a4.mzstatic.com/us/r1000/025/Purple/47/75/aa/mzi.uusgpjlj.png", "artworkUrl100":"http://a4.mzstatic.com/us/r1000/024/Purple/0c/4d/fb/mzi.klvzucgn.png", "artistViewUrl":"http://itunes.apple.com/us/artist/john-adey/id386871037?uo=4", "contentAdvisoryRating":"4+", "trackCensoredName":"Halo Jump", "trackViewUrl":"http://itunes.apple.com/us/app/halo-jump/id397154987?mt=8&uo=4", "languageCodesISO2A":["EN"], "fileSizeBytes":"741043", "screenshotUrls":["http://a1.mzstatic.com/us/r1000/047/Purple/b1/30/83/mzl.pkoxfnvt.png"], "ipadScreenshotUrls":[], "sellerUrl":null, "averageUserRatingForCurrentVersion":3.0, "userRatingCountForCurrentVersion":21, "artworkUrl512":"http://a4.mzstatic.com/us/r1000/024/Purple/0c/4d/fb/mzi.klvzucgn.png", "trackContentRating":"4+", "averageUserRating":3.0, "userRatingCount":21}, - {"version":"2.1", "kind":"software", "artistId":370860339, "artistName":"Amin Zabihi", "price":0.99, - "description":"This application is a guide for Doodle Jump game and contains all the cheats, guides, hints and walk through, updated based on the latest version of the game.\n\n\nDisclaimer:\n\n-This application is an unofficial guide and not affiliated with Lima Sky in any manner.\n-All aspects like names, image and places concerning Doodle Jump are the property of their respective owners. the images just used to show the aim of this application and I make no claim about that.", "genreIds":["6006", "6014", "7002", "7001"], "releaseDate":"2010-06-22T08:45:10Z", "sellerName":"Amin Zabihi", "currency":"USD", "trackId":377818945, "trackName":"Doodle Jump Bible", "genres":["Reference", "Games", "Adventure", "Action"], "releaseNotes":"Minor changes", "primaryGenreName":"Reference", "primaryGenreId":6006, "isGameCenterEnabled":false, "supportedDevices":["all"], "wrapperType":"software", "artworkUrl60":"http://a3.mzstatic.com/us/r1000/048/Purple/eb/1d/60/mzi.kgfvitwp.png", "artworkUrl100":"http://a1.mzstatic.com/us/r1000/048/Purple/60/58/54/mzl.pdydnmni.png", "artistViewUrl":"http://itunes.apple.com/us/artist/amin-zabihi/id370860339?uo=4", "contentAdvisoryRating":"4+", "trackCensoredName":"Doodle Jump Bible", "trackViewUrl":"http://itunes.apple.com/us/app/doodle-jump-bible/id377818945?mt=8&uo=4", "languageCodesISO2A":["EN"], "fileSizeBytes":"4527567", - "screenshotUrls":["http://a4.mzstatic.com/us/r1000/044/Purple/cb/72/ba/mzl.yhenwgjy.png", "http://a4.mzstatic.com/us/r1000/002/Purple/a0/72/fb/mzl.cwwxbyse.png", "http://a5.mzstatic.com/us/r1000/045/Purple/a1/8b/16/mzl.avxialtp.png"], "ipadScreenshotUrls":["http://a2.mzstatic.com/us/r1000/047/Purple/1f/28/5e/mzl.atqaktpz.1024x1024-65.jpg"], "sellerUrl":"http://", "averageUserRatingForCurrentVersion":5.0, "userRatingCountForCurrentVersion":4, "artworkUrl512":"http://a1.mzstatic.com/us/r1000/048/Purple/60/58/54/mzl.pdydnmni.png", "trackContentRating":"4+", "averageUserRating":2.5, "userRatingCount":118}] - } - - - http_version: "1.1" -- !ruby/struct:VCR::HTTPInteraction - request: !ruby/struct:VCR::Request - method: :get - uri: http://ax.itunes.apple.com:80/WebObjects/MZStoreServices.woa/wa/wsSearch?media=ebook&term=Alice%20in%20Wonderland - body: - headers: - accept: - - application/json - user-agent: - - ITunes Ruby Gem 0.4.1 - response: !ruby/struct:VCR::Response - status: !ruby/struct:VCR::ResponseStatus - code: 200 - message: OK - headers: - x-apple-orig-url-path: - - /WebObjects/MZStoreServices.woa/wa/wsSearch?term=Alice%20in%20Wonderland&media=ebook - x-webobjects-loadaverage: - - "0" - x-apple-application-site: - - ST11 - expires: - - Mon, 30 May 2011 02:37:17 GMT - x-apple-partner: - - origin.0 - connection: - - Transfer-Encoding - content-type: - - text/javascript; charset=utf-8 - date: - - Mon, 30 May 2011 02:37:17 GMT - x-apple-max-age: - - "3600" - x-apple-woa-inbound-url: - - /WebObjects/MZStoreServices.woa/wa/wsSearch?term=Alice%20in%20Wonderland&media=ebook - x-apple-application-instance: - - "2060003" - cache-control: - - max-age=0, no-cache - vary: - - X-Apple-Store-Front - pragma: - - no-cache - transfer-encoding: - - chunked - body: |+ - - - - { - "resultCount":40, - "results": [ - {"kind":"ebook", "artistId":366199153, "artistName":"J.C. Gorham", "price":0.00, "description":null, "genreIds":["9031"], "releaseDate":"2010-10-04T11:30:28Z", "currency":"USD", "trackId":395687613, "trackName":"Alice in Wonderland", "genres":["Fiction & Literature"], "artistIds":[366199153], "artworkUrl60":"http://a3.mzstatic.com/us/r30/Publication/0b/4f/85/mzi.txsgsvzz.60x60-50.jpg", "artworkUrl100":"http://a2.mzstatic.com/us/r30/Publication/0b/4f/85/mzi.txsgsvzz.100x100-75.jpg", "artistViewUrl":"http://itunes.apple.com/us/artist/j-c-gorham/id366199153?mt=11&uo=4", "trackCensoredName":"Alice in Wonderland", "trackViewUrl":"http://itunes.apple.com/us/book/alice-in-wonderland/id395687613?mt=11&uo=4", "averageUserRating":4.0, "userRatingCount":66}, - {"kind":"ebook", "artistId":372243782, "artistName":"Disney Press", "price":1.99, "description":"A story based on the Disney film, Alice in Wonderland<\/font>", "genreIds":["10081"], "releaseDate":"2010-12-21T08:00:00Z", "currency":"USD", "trackId":411742754, "trackName":"Alice in Wonderland", "genres":["Children's Fiction"], "artistIds":[372243782], "artworkUrl60":"http://a3.mzstatic.com/us/r30/Publication/bb/88/51/mzi.ntsjpjgo.60x60-50.jpg", "artworkUrl100":"http://a4.mzstatic.com/us/r30/Publication/bb/88/51/mzi.ntsjpjgo.100x100-75.jpg", "artistViewUrl":"http://itunes.apple.com/us/artist/disney-press/id372243782?mt=11&uo=4", "trackCensoredName":"Alice in Wonderland", "trackViewUrl":"http://itunes.apple.com/us/book/alice-in-wonderland/id411742754?mt=11&uo=4", "averageUserRating":4.0, "userRatingCount":75}, - {"kind":"ebook", "artistId":2683818, "artistName":"Lewis Carroll", "price":0.99, - "description":"Alice in Wonderland is a novel written by Lewis Carroll. It tells the story of a girl named Alice who falls down a rabbit hole into a fantasy world populated by peculiar and anthropomorphic creatures. The tale plays with logic  in ways that have given the story lasting popularity with adults as well as children.<\/font>", "genreIds":["10039"], "releaseDate":"2010-06-23T07:00:00Z", "currency":"USD", "trackId":379221860, "trackName":"Alice in Wonderland", "genres":["Action & Adventure"], "artistIds":[2683818], "artworkUrl60":"http://a5.mzstatic.com/us/r30/Publication/c7/30/d3/mzi.kjzhvdek.60x60-50.jpg", "artworkUrl100":"http://a1.mzstatic.com/us/r30/Publication/c7/30/d3/mzi.kjzhvdek.100x100-75.jpg", "artistViewUrl":"http://itunes.apple.com/us/artist/lewis-carroll/id2683818?mt=11&uo=4", "trackCensoredName":"Alice in Wonderland", "trackViewUrl":"http://itunes.apple.com/us/book/alice-in-wonderland/id379221860?mt=11&uo=4", "averageUserRating":3.5, "userRatingCount":23}, - {"kind":"ebook", "artistId":2683818, "artistName":"Lewis Carroll", "price":3.99, - "description":"Alice in Wonderland (also known as Alice's Adventures in Wonderland), from 1865, is the peculiar and imaginative tale of a girl who falls down a rabbit-hole into a bizarre world of eccentric and unusual creatures. Lewis Carroll's prominent example of the genre of \"literary nonsense\" has endured in popularity with its clever way of playing with logic and a narrative structure that has influence generations of fiction writing.", "genreIds":["10042"], "releaseDate":"2009-01-01T08:00:00Z", "currency":"USD", "trackId":376761277, "trackName":"Alice in Wonderland", "genres":["Classics"], "artistIds":[2683818], "artworkUrl60":"http://a4.mzstatic.com/us/r30/Publication/f7/bb/88/mzi.wtgvvlsi.60x60-50.jpg", "artworkUrl100":"http://a3.mzstatic.com/us/r30/Publication/f7/bb/88/mzi.wtgvvlsi.100x100-75.jpg", "artistViewUrl":"http://itunes.apple.com/us/artist/lewis-carroll/id2683818?mt=11&uo=4", "trackCensoredName":"Alice in Wonderland", "trackViewUrl":"http://itunes.apple.com/us/book/alice-in-wonderland/id376761277?mt=11&uo=4", "averageUserRating":4.5, "userRatingCount":18}, - {"kind":"ebook", "artistId":365835204, "artistName":"T.T. Sutherland & Lewis Carroll", "price":10.99, - "description":"Join Alice as she disappears down a rabbit hole one more time and emerges in the topsy-turvy world of Wonderland! Magical escapades highlight Alice's journey, including a wild encounter with the Queen, the Mad Hatter, the Jabberwocky, and many others!<\/font>", "genreIds":["10081"], "releaseDate":"2010-02-02T08:00:00Z", "currency":"USD", "trackId":365835203, "trackName":"Alice in Wonderland", "genres":["Children's Fiction"], "artistIds":[365835204, 2683818], "artworkUrl60":"http://a5.mzstatic.com/us/r30/Publication/53/d7/11/mzi.lgovxowz.60x60-50.jpg", "artworkUrl100":"http://a1.mzstatic.com/us/r30/Publication/53/d7/11/mzi.lgovxowz.100x100-75.jpg", "artistViewUrl":"http://itunes.apple.com/us/artist/t-t-sutherland-lewis-carroll/id365835204?mt=11&uo=4", "trackCensoredName":"Alice in Wonderland", "trackViewUrl":"http://itunes.apple.com/us/book/alice-in-wonderland/id365835203?mt=11&uo=4", "averageUserRating":4.0, "userRatingCount":51}, - {"kind":"ebook", "artistId":428251384, "artistName":"Lewis Carroll & John Tenniel", "price":1.99, - "description":"This is a beautiful book redesigned for iPad and iPhone. This book features the original text and illustrations with information about humor, wit, logic, nonsense, word play, Tom Swifty, song parodies, and the sources for all of the original poems. Notes next to the text provide amazing information about what is happening within the book. The beautiful design and layout make it easy to read and pleasing to the eye. <\/font>", "genreIds":["10081"], "releaseDate":"2011-03-24T07:00:00Z", "currency":"USD", "trackId":428251383, "trackName":"Alice in Wonderland", "genres":["Children's Fiction"], "artistIds":[428251384, 428251389], "artworkUrl60":"http://a2.mzstatic.com/us/r30/Publication/4e/53/97/mzi.ryllhwai.60x60-50.jpg", "artworkUrl100":"http://a2.mzstatic.com/us/r30/Publication/4e/53/97/mzi.ryllhwai.100x100-75.jpg", "artistViewUrl":"http://itunes.apple.com/us/artist/lewis-carroll-john-tenniel/id428251384?mt=11&uo=4", "trackCensoredName":"Alice in Wonderland", "trackViewUrl":"http://itunes.apple.com/us/book/alice-in-wonderland/id428251383?mt=11&uo=4", "averageUserRating":4.5, "userRatingCount":6}, - {"kind":"ebook", "artistId":2683818, "artistName":"Lewis Carroll", "price":0.00, "description":null, "genreIds":["9031"], "releaseDate":"2010-05-14T06:09:18Z", "currency":"USD", "trackId":361558484, "trackName":"Alice's Adventures in Wonderland", "genres":["Fiction & Literature"], "artistIds":[2683818], "artworkUrl60":"http://a3.mzstatic.com/us/r30/Publication/1c/2a/74/mzi.mrzpqpse.60x60-50.jpg", "artworkUrl100":"http://a1.mzstatic.com/us/r30/Publication/1c/2a/74/mzi.mrzpqpse.100x100-75.jpg", "artistViewUrl":"http://itunes.apple.com/us/artist/lewis-carroll/id2683818?mt=11&uo=4", "trackCensoredName":"Alice's Adventures in Wonderland", "trackViewUrl":"http://itunes.apple.com/us/book/alices-adventures-in-wonderland/id361558484?mt=11&uo=4", "averageUserRating":4.0, "userRatingCount":302}, - {"kind":"ebook", "artistId":420038287, "artistName":"Lewis Carroll", "price":0.00, - "description":"Includes Sir John Tenniel\u2019s classic illustrations, along with a gallery of art from six different artists\u2019 interpretations!
\nMix equal parts creativity, bewilderment, and complete nonsense and you have Alice\u2019s Adventures in Wonderland. <\/i>On a day that begins like any other, Alice notices a rabbit\u2014a rabbit with a pocket watch. She chases after it and stumbles down a hole\u2026 and keeps falling and falling and falling. That\u2019s when things start to get weird. She encounters a bizarre cast of characters \u2014 the Mad Hatter, the March Hare, a pipe-smoking caterpillar, the Pigeon, a Duchess, the Cook, and the decapitation-happy Queen of Hearts. It\u2019s an adventure of completely intolerable logic, as witty as it is completely insane.", "genreIds":["10042", "9031", "10044"], "releaseDate":"2011-03-29T07:00:00Z", "currency":"USD", "trackId":429223235, "trackName":"Alice's Adventures in Wonderland", "genres":["Classics", "Fiction & Literature", "Fantasy"], "artistIds":[420038287], "artworkUrl60":"http://a1.mzstatic.com/us/r30/Publication/5e/e6/4f/mzi.rynugbdv.60x60-50.jpg", "artworkUrl100":"http://a1.mzstatic.com/us/r30/Publication/5e/e6/4f/mzi.rynugbdv.100x100-75.jpg", "artistViewUrl":"http://itunes.apple.com/us/artist/lewis-carroll/id420038287?mt=11&uo=4", "trackCensoredName":"Alice's Adventures in Wonderland", "trackViewUrl":"http://itunes.apple.com/us/book/alices-adventures-in-wonderland/id429223235?mt=11&uo=4", "averageUserRating":3.5, "userRatingCount":46}, - {"kind":"ebook", "artistId":2683818, "artistName":"Lewis Carroll", "price":0.00, "description":null, "genreIds":["9031"], "releaseDate":"2010-04-03T07:00:00Z", "currency":"USD", "trackId":361699751, "trackName":"Alice's Adventures Under Ground", "genres":["Fiction & Literature"], "artistIds":[2683818], "artworkUrl60":"http://a3.mzstatic.com/us/r30/Publication/7f/a1/a7/mzi.ikeziarc.60x60-50.jpg", "artworkUrl100":"http://a1.mzstatic.com/us/r30/Publication/7f/a1/a7/mzi.ikeziarc.100x100-75.jpg", "artistViewUrl":"http://itunes.apple.com/us/artist/lewis-carroll/id2683818?mt=11&uo=4", "trackCensoredName":"Alice's Adventures Under Ground", "trackViewUrl":"http://itunes.apple.com/us/book/alices-adventures-under-ground/id361699751?mt=11&uo=4", "averageUserRating":3.5, "userRatingCount":39}, - {"kind":"ebook", "artistId":382482232, "artistName":"Shmoop", "price":2.99, - "description":"You get the full original text of Alice's Adventures in Wonderland and Through the Looking-Glass by Lewis Carroll interwoven with a smart, plain-spoken guide to the characters, quotes, themes, symbols, and more from Shmoop. Shmoop Classics offer the original text of some of the greatest works of literature with a built-in interactive guide to help you dig deep into the characters, symbols, themes, and big questions of the book. For the student and the life-long learner alike, take your classroom on the road and build your brain muscles daily. No need to weigh your backpack down, no need to waste paper, no need to get sleepy in class. Shmoop is here to make you a better lover of literature and to help you discover connections to other works of literature, history, current events, and pop culture. You'll find thought-provoking character analyses, quotes, summaries, themes, symbols, trivia, and lots of insightful commentary. Key quotes from the original text are linked to deep analysis from Shmoop. Academics from top universities, including Stanford, Berkeley, Harvard, and Columbia, have written content designed to engage you and to get your brain bubbling. With Shmoop-s fun, conversational, and accessible tone, you'll feel as though you are chatting with friends over coffee. These interactive study guides will help you discover and rediscover some of the greatest works of all time. \"Best of the Internet\" - PC Magazine\"Shmoop impresses me because it is intentionally about learning, and the joy of learning, not just about passing courses and jumping through educational hoops.\" - Paul Hamilton, teacher and education blogger \"Shmoop features deep analysis of topics in history and literature, sprinkled with a heavy dose of wry humor.\" - eSchoolNews\u00a0", "genreIds":["10136"], "releaseDate":"2011-05-24T07:00:00Z", "currency":"USD", "trackId":436170994, "trackName":"Alice's Adventures in Wonderland and Through the Looking-Glass: Complete Text with Integrated Study Guide from Shmoop", "genres":["Study Aids"], "artistIds":[382482232], "artworkUrl60":"http://a5.mzstatic.com/us/r30/Publication/13/77/ff/mzi.rjbokcgs.60x60-50.jpg", "artworkUrl100":"http://a5.mzstatic.com/us/r30/Publication/13/77/ff/mzi.rjbokcgs.100x100-75.jpg", "artistViewUrl":"http://itunes.apple.com/us/artist/shmoop/id382482232?mt=11&uo=4", "trackCensoredName":"Alice's Adventures in Wonderland and Through the Looking-Glass: Complete Text with Integrated Study Guide from Shmoop", "trackViewUrl":"http://itunes.apple.com/us/book/alices-adventures-in-wonderland/id436170994?mt=11&uo=4", "averageUserRating":null, "userRatingCount":null}, - {"kind":"ebook", "artistId":420038287, "artistName":"Lewis Carroll & Mallory Loehr", "price":4.99, - "description":"Alice can't believe her eyes when a white rabbit wearing a waistcoat and carrying a pocket watch dashes by her. She chases after him, down a rabbit hole to a strange land full of exotic creatures, like the Mad Hatter and March Hare, a smiling Cheshire cat, a philosophical caterpillar, and a tempermental croquet-playing queen. Alice can hardly keep track of all the curious characters, let alone herself!

Lewis Carroll's classic Alice's Adventures in Wonderland has been adapted to an easier reading level for Stepping Stones, while keeping all the fun, nonsense, and fantastic twists of the original book.


From the Trade Paperback edition.<\/i>", "genreIds":["10081"], "releaseDate":"2009-12-22T08:00:00Z", "currency":"USD", "trackId":421585876, "trackName":"Alice in Wonderland", "genres":["Children's Fiction"], "artistIds":[420038287, 420522712], "artworkUrl60":"http://a2.mzstatic.com/us/r30/Publication/c7/a3/28/mzi.xwlvscyh.60x60-50.jpg", "artworkUrl100":"http://a3.mzstatic.com/us/r30/Publication/c7/a3/28/mzi.xwlvscyh.100x100-75.jpg", "artistViewUrl":"http://itunes.apple.com/us/artist/lewis-carroll-mallory-loehr/id420038287?mt=11&uo=4", "trackCensoredName":"Alice in Wonderland", "trackViewUrl":"http://itunes.apple.com/us/book/alice-in-wonderland/id421585876?mt=11&uo=4", "averageUserRating":4.5, "userRatingCount":2}, - {"kind":"ebook", "artistId":2683818, "artistName":"Lewis Carroll", "price":3.99, - "description":"The Mad Hatter, the Ugly Duchess, the Mock Turtle, the Queen of Hearts, the Cheshire Cat-characters each more eccentric than the last, and that could only have come from Lewis Carroll, the master of sublime nonsense. In these two brilliant burlesques he created two of the most famous and fantastic novels of all time that not only stirred our imagination but revolutionized literature.", "genreIds":["10042"], "releaseDate":"2000-12-01T08:00:00Z", "currency":"USD", "trackId":357921222, "trackName":"Alice's Adventures in Wonderland and Through the Looking Glass", "genres":["Classics"], "artistIds":[2683818], "artworkUrl60":"http://a3.mzstatic.com/us/r30/Publication/5a/80/bb/mzi.toerwhje.60x60-50.jpg", "artworkUrl100":"http://a2.mzstatic.com/us/r30/Publication/5a/80/bb/mzi.toerwhje.100x100-75.jpg", "artistViewUrl":"http://itunes.apple.com/us/artist/lewis-carroll/id2683818?mt=11&uo=4", "trackCensoredName":"Alice's Adventures in Wonderland and Through the Looking Glass", "trackViewUrl":"http://itunes.apple.com/us/book/alices-adventures-in-wonderland/id357921222?mt=11&uo=4", "averageUserRating":4.0, "userRatingCount":88}, - {"kind":"ebook", "artistId":2683818, "artistName":"Lewis Carroll", "price":0.99, - "description":"The complete tales of Alice by Lewis Carroll. Includes both works that contain Alice's Adventures (\"Alice's Adventures through Wonderland\" and \"Through the Looking Glass\"). This edition is not illustrated.<\/font>", "genreIds":["10044"], "releaseDate":"2010-06-18T07:00:00Z", "currency":"USD", "trackId":378705094, "trackName":"The Complete Adventures of Alice in Wonderland", "genres":["Fantasy"], "artistIds":[2683818], "artworkUrl60":"http://a1.mzstatic.com/us/r30/Publication/9b/db/6e/mzi.krhgyjlr.60x60-50.jpg", "artworkUrl100":"http://a5.mzstatic.com/us/r30/Publication/9b/db/6e/mzi.krhgyjlr.100x100-75.jpg", "artistViewUrl":"http://itunes.apple.com/us/artist/lewis-carroll/id2683818?mt=11&uo=4", "trackCensoredName":"The Complete Adventures of Alice in Wonderland", "trackViewUrl":"http://itunes.apple.com/us/book/the-complete-adventures-alice/id378705094?mt=11&uo=4", "averageUserRating":4.0, "userRatingCount":11}, - {"kind":"ebook", "artistId":2683818, "artistName":"Lewis Carroll", "price":1.99, - "description":"One day Alice follows a rabbit into a large hole under the hedge, and a magical adventure begins. She meets the Mad Hatter and the March Hare at an unconventional tea party, the mysterious Cheshire Cat in the woods, and other enchanting characters. Discover the extraordinary world of Wonderland in Lewis Carroll\u0092s classic novel.", "genreIds":["10081"], "releaseDate":"2010-06-08T07:00:00Z", "currency":"USD", "trackId":373351549, "trackName":"Alice in Wonderland Complete Text", "genres":["Children's Fiction"], "artistIds":[2683818], "artworkUrl60":"http://a2.mzstatic.com/us/r30/Publication/26/e5/ba/mzi.ayusprva.60x60-50.jpg", "artworkUrl100":"http://a2.mzstatic.com/us/r30/Publication/26/e5/ba/mzi.ayusprva.100x100-75.jpg", "artistViewUrl":"http://itunes.apple.com/us/artist/lewis-carroll/id2683818?mt=11&uo=4", "trackCensoredName":"Alice in Wonderland Complete Text", "trackViewUrl":"http://itunes.apple.com/us/book/alice-in-wonderland-complete/id373351549?mt=11&uo=4", "averageUserRating":3.5, "userRatingCount":12}, - {"kind":"ebook", "artistId":2683818, "artistName":"Lewis Carroll", "price":1.99, - "description":"

Alice's Adventures in Wonderland<\/b><\/i> (1865) is a work of literary nonsense written by English author Charles Lutwidge Dodgson under the pseudonym Lewis Carroll, considered a classic example of the genre and of English literature in general. It tells the story of a girl named Alice who falls down a rabbit-hole into a fantastic realm populated by peculiar and anthropomorphic creatures. The tale is filled with allusions to Dodgson's friends (and enemies), and to the lessons that British schoolchildren were expected to memorize. The tale plays with logic in ways that have made the story of lasting popularity with adults as well as children. It is considered to be one of the most characteristic examples of the genre of literary nonsense, and its narrative course and structure has been enormously influential, mainly in the fantasy genre. The book is commonly referred to by the abbreviated title Alice in Wonderland<\/b><\/i>. This alternative title was popularized by the numerous film and television adaptations of the story produced over the years.<\/p>\n

Through the Looking-Glass, and What Alice Found There<\/b><\/i> (1871) is a work of children's literature by Lewis Carroll (Charles Lutwidge Dodgson), generally categorized as literary nonsense. It is the sequel to Alice's Adventures in Wonderland<\/i> (1865). Although it makes no reference to the events in the earlier book, the themes and settings of Through the Looking-Glass<\/i> make it a kind of mirror image of Wonderland<\/i>: the first book begins outdoors, in the warm month of May, on Alice's birthday (May 4), uses frequent changes in size as a plot device, and draws on the imagery of playing cards; the second opens indoors on a snowy, wintry night exactly six months later, on November 4 (the day before Guy Fawkes Night), uses frequent changes in time and spatial directions as a plot device, and draws on the imagery of chess. In it, there are many mirror themes, including opposites, time running backwards, and so on.<\/p>\n

- Excerpted from Wikipedia, <\/i>the free encyclopedia.<\/p>", "genreIds":["10081"], "releaseDate":"2010-01-01T08:00:00Z", "currency":"USD", "trackId":370193313, "trackName":"Alice's Adventures in Wonderland and Through the Looking Glass. ILLUSTRATED.", "genres":["Children's Fiction"], "artistIds":[2683818], "artworkUrl60":"http://a3.mzstatic.com/us/r30/Publication/4e/ef/28/mzi.yrwbgtrm.60x60-50.jpg", "artworkUrl100":"http://a5.mzstatic.com/us/r30/Publication/4e/ef/28/mzi.yrwbgtrm.100x100-75.jpg", "artistViewUrl":"http://itunes.apple.com/us/artist/lewis-carroll/id2683818?mt=11&uo=4", "trackCensoredName":"Alice's Adventures in Wonderland and Through the Looking Glass. ILLUSTRATED.", "trackViewUrl":"http://itunes.apple.com/us/book/alices-adventures-in-wonderland/id370193313?mt=11&uo=4", "averageUserRating":4.5, "userRatingCount":7}, - {"kind":"ebook", "artistId":2683818, "artistName":"Lewis Carroll", "price":9.99, - "description":"'Down, down, down. Would the fall never come to an end!' Since its publication in 1865, Lewis Carroll's Alice's Adventures in Wonderland has delighted the world with a wildly imaginative and unforgettable journey, inspiring children of all ages to suspend disbelief and follow Alice into her fantasy worlds. This new gift edition presents Carroll's tale fully unabridged with a unique visual interpretation by renowned artist Camille Rose Garcia.", "genreIds":["9031"], "releaseDate":"2010-07-20T07:00:00Z", "currency":"USD", "trackId":381184048, "trackName":"Alice's Adventures in Wonderland", "genres":["Fiction & Literature"], "artistIds":[2683818], "artworkUrl60":"http://a1.mzstatic.com/us/r30/Publication/72/4f/92/mzi.qwqfmnnp.60x60-50.jpg", "artworkUrl100":"http://a2.mzstatic.com/us/r30/Publication/72/4f/92/mzi.qwqfmnnp.100x100-75.jpg", "artistViewUrl":"http://itunes.apple.com/us/artist/lewis-carroll/id2683818?mt=11&uo=4", "trackCensoredName":"Alice's Adventures in Wonderland", "trackViewUrl":"http://itunes.apple.com/us/book/alices-adventures-in-wonderland/id381184048?mt=11&uo=4", "averageUserRating":3.5, "userRatingCount":19}, - {"kind":"ebook", "artistId":2683818, "artistName":"Lewis Carroll", "price":2.99, - "description":"Contained in this volume are the two classics by Lewis Carroll, \"Alice's Adventures in Wonderland\" and \"Through the Looking Glass.\" We are first introduced to Alice in \"Alice's Adventures in Wonderland\" where we find Alice idly passing away the time next to a river when she sees a white rabbit pass by in a waistcoat. She follows the rabbit down the rabbit hole and ends up in the fantasy world of Wonderland. Alice's adventures are continued in \"Through the Looking Glass\" when Alice passes through a mirror to find herself in yet another magical place. Carroll's Alice novels are ripe with fantastical imagery that will delight readers both young and old.", "genreIds":["9031"], "releaseDate":"2010-01-01T08:00:00Z", "currency":"USD", "trackId":378143234, "trackName":"Alice's Adventures In Wonderland and Through the Looking Glass", "genres":["Fiction & Literature"], "artistIds":[2683818], "artworkUrl60":"http://a1.mzstatic.com/us/r30/Publication/37/86/3e/mzi.wvnjyhku.60x60-50.jpg", "artworkUrl100":"http://a5.mzstatic.com/us/r30/Publication/37/86/3e/mzi.wvnjyhku.100x100-75.jpg", "artistViewUrl":"http://itunes.apple.com/us/artist/lewis-carroll/id2683818?mt=11&uo=4", "trackCensoredName":"Alice's Adventures In Wonderland and Through the Looking Glass", "trackViewUrl":"http://itunes.apple.com/us/book/alices-adventures-in-wonderland/id378143234?mt=11&uo=4", "averageUserRating":2.5, "userRatingCount":5}, - {"kind":"ebook", "artistId":2683818, "artistName":"Lewis Carroll", "price":3.99, - "description":"A Vigo Classics book<\/font>
\n<\/font>
\nAfter following a white rabbit in a waistcoat down a hole, Alice enters the absurd and fantastical world of Wonderland \u2013 a place where meeting hookah-smoking caterpillars and joining a crazed tea party is as normal as it gets.<\/font>", "genreIds":["10042"], "releaseDate":"2010-08-04T07:00:00Z", "currency":"USD", "trackId":386022738, "trackName":"Alice's Adventures in Wonderland", "genres":["Classics"], "artistIds":[2683818], "artworkUrl60":"http://a5.mzstatic.com/us/r30/Publication/74/3a/3a/mzi.ismmbdev.60x60-50.jpg", "artworkUrl100":"http://a1.mzstatic.com/us/r30/Publication/74/3a/3a/mzi.ismmbdev.100x100-75.jpg", "artistViewUrl":"http://itunes.apple.com/us/artist/lewis-carroll/id2683818?mt=11&uo=4", "trackCensoredName":"Alice's Adventures in Wonderland", "trackViewUrl":"http://itunes.apple.com/us/book/alices-adventures-in-wonderland/id386022738?mt=11&uo=4", "averageUserRating":3.5, "userRatingCount":16}, - {"kind":"ebook", "artistId":366113315, "artistName":"Charles Edward Carryl", "price":0.00, "description":null, "genreIds":["9031"], "releaseDate":"2010-04-03T07:00:00Z", "currency":"USD", "trackId":361541874, "trackName":"Davy and The Goblin", "genres":["Fiction & Literature"], "artistIds":[366113315], "artworkUrl60":"http://a5.mzstatic.com/us/r30/Publication/0e/db/35/mzi.tqtcxniq.60x60-50.jpg", "artworkUrl100":"http://a1.mzstatic.com/us/r30/Publication/0e/db/35/mzi.tqtcxniq.100x100-75.jpg", "artistViewUrl":"http://itunes.apple.com/us/artist/charles-edward-carryl/id366113315?mt=11&uo=4", "trackCensoredName":"Davy and The Goblin", "trackViewUrl":"http://itunes.apple.com/us/book/davy-and-the-goblin/id361541874?mt=11&uo=4", "averageUserRating":4.0, "userRatingCount":3}, - {"kind":"ebook", "artistId":2683818, "artistName":"Lewis Carroll", "price":2.99, "description":"This title has been removed from sale by Penguin Group, USA.", "genreIds":["10042"], "releaseDate":"2000-12-01T08:00:00Z", "currency":"USD", "trackId":367458133, "trackName":"Alice's Adventures in Wonderland and Through the Looking Glass", "genres":["Classics"], "artistIds":[2683818], "artworkUrl60":"http://a5.mzstatic.com/us/r30/Publication/5a/80/bb/mzi.yzdtapvs.60x60-50.jpg", "artworkUrl100":"http://a1.mzstatic.com/us/r30/Publication/5a/80/bb/mzi.yzdtapvs.100x100-75.jpg", "artistViewUrl":"http://itunes.apple.com/us/artist/lewis-carroll/id2683818?mt=11&uo=4", "trackCensoredName":"Alice's Adventures in Wonderland and Through the Looking Glass", "trackViewUrl":"http://itunes.apple.com/us/book/alices-adventures-in-wonderland/id367458133?mt=11&uo=4", "averageUserRating":2.0, "userRatingCount":13}, - {"kind":"ebook", "artistId":2683818, "artistName":"Lewis Carroll", "price":8.99, - "description":"When Alice's Adventures in Wonderland was first published in 1865, it set critics awry: here was a book for children written for the pure pleasure of reading. It has since become one of the most famous children's books ever, translated into many different languages, performed as a play, and made into a popular Disney animated film.@AliceInTheSkyWithDiamonds Is it OK to drink from a mysterious bottle that’s been opened? What if there are Ruffies in it?From Twitterature: The World's Greatest Books in Twenty Tweets or Less\"", "genreIds":["10081"], "releaseDate":"2003-04-29T07:00:00Z", "currency":"USD", "trackId":401067726, "trackName":"Alice's Adventures in Wonderland and Through the Looking-Glass", "genres":["Children's Fiction"], "artistIds":[2683818], "artworkUrl60":"http://a1.mzstatic.com/us/r30/Publication/72/ee/03/mzi.ciclhcpo.60x60-50.jpg", "artworkUrl100":"http://a4.mzstatic.com/us/r30/Publication/72/ee/03/mzi.ciclhcpo.100x100-75.jpg", "artistViewUrl":"http://itunes.apple.com/us/artist/lewis-carroll/id2683818?mt=11&uo=4", "trackCensoredName":"Alice's Adventures in Wonderland and Through the Looking-Glass", "trackViewUrl":"http://itunes.apple.com/us/book/alices-adventures-in-wonderland/id401067726?mt=11&uo=4", "averageUserRating":3.5, "userRatingCount":3}, - {"kind":"ebook", "artistId":2683818, "artistName":"Lewis Carroll", "price":1.99, - "description":"Alice's Adventures in Wonderland is a 1865 novel written by English author Charles Lutwidge Dodgson under the pseudonym Lewis Carroll. The story follows a young girl named Alice down a rabbit hole and into a fantasy world filled with anthropomorphic creatures. This vook explores some of the imaginative creatures she meets on her dazzling adventure, including  a talking cheshire cat, a humorous white rabbit who is in a constant state of hurry and the daunting Queen of Hearts who she must escape to find her way back home.  Alice in Wonderland plays with logic, and its interesting and unique story lines have made it hugely popular with children and adults alike.<\/font>", "genreIds":["10081"], "releaseDate":"2010-10-12T07:00:00Z", "currency":"USD", "trackId":398017899, "trackName":"Alice's Adventures in Wonderland (Enhanced Version)", "genres":["Children's Fiction"], "artistIds":[2683818], "artworkUrl60":"http://a2.mzstatic.com/us/r30/Publication/59/0b/81/mzi.nfiygece.60x60-50.jpg", "artworkUrl100":"http://a1.mzstatic.com/us/r30/Publication/59/0b/81/mzi.nfiygece.100x100-75.jpg", "artistViewUrl":"http://itunes.apple.com/us/artist/lewis-carroll/id2683818?mt=11&uo=4", "trackCensoredName":"Alice's Adventures in Wonderland (Enhanced Version)", "trackViewUrl":"http://itunes.apple.com/us/book/alices-adventures-in-wonderland/id398017899?mt=11&uo=4", "averageUserRating":5.0, "userRatingCount":2}, - {"kind":"ebook", "artistId":425118266, "artistName":"Lewis Carroll", "price":9.99, - "description":"As opposed to memorizing French phrases or forcing yourself to get through another dry French grammar or verb manual, this Dual Language Reader (\"DLR\") will keep you excited to get to the next page! <\/font>
\n<\/font>
\nThis compilation features Lewis Carroll's classic masterpiece: \"Alice's Adventures in Wonderland\" coupled with the superb French translation by Henri Bué. <\/font>
\n<\/font>
\nStories compiled into our DLR format serve as an excellent tool to aid you in developing the ability to \"think\" in French.<\/font>
\nThe key to mastering any foreign language is to develop the ability to \"think\" in the new language. <\/font>
\n<\/font>
\nA Dual Language Reader is an excellent tool for helping you to do exactly that!<\/font>
", "genreIds":["10066"], "releaseDate":"2011-02-11T08:00:00Z", "currency":"USD", "trackId":425118264, "trackName":"Learn French! Alice In Wonderland: Dual Language Reader (English/French)", "genres":["Foreign Languages"], "artistIds":[425118266], "artworkUrl60":"http://a2.mzstatic.com/us/r30/Publication/64/08/6a/mzi.uqmakiox.60x60-50.jpg", "artworkUrl100":"http://a3.mzstatic.com/us/r30/Publication/64/08/6a/mzi.uqmakiox.100x100-75.jpg", "artistViewUrl":"http://itunes.apple.com/us/artist/lewis-carroll/id425118266?mt=11&uo=4", "trackCensoredName":"Learn French! Alice In Wonderland: Dual Language Reader (English/French)", "trackViewUrl":"http://itunes.apple.com/us/book/learn-french-alice-in-wonderland/id425118264?mt=11&uo=4", "averageUserRating":1.0, "userRatingCount":2}, - {"kind":"ebook", "artistId":418060194, "artistName":"Eva Mason", "price":3.99, - "description":"Nothing\u2019s more magical than going down the rabbit hole and through the looking glass with Alice. There, in worlds unlike any other ever created, conventional logic is turned upside down and wrong-way round to enchanting effect. Children will love reading Carroll\u2019s many humorous nonsense verses and meeting such unforgettable characters as the Mad Hatter, the Knave of Hearts who steals some tarts, and the grinning Cheshire Cat (in Alice in Wonderland) and Tweedledee, Tweedledum, Humpty Dumpty, and the Jabberwock (in Through the Looking Glass).", "genreIds":["10081"], "releaseDate":"2009-09-18T07:00:00Z", "currency":"USD", "trackId":413245212, "trackName":"Alice in Wonderland & Through the Looking-Glass", "genres":["Children's Fiction"], "artistIds":[418060194], "artworkUrl60":"http://a3.mzstatic.com/us/r30/Publication/08/f6/90/mzi.akwqasxo.60x60-50.jpg", "artworkUrl100":"http://a1.mzstatic.com/us/r30/Publication/08/f6/90/mzi.akwqasxo.100x100-75.jpg", "artistViewUrl":"http://itunes.apple.com/us/artist/eva-mason/id418060194?mt=11&uo=4", "trackCensoredName":"Alice in Wonderland & Through the Looking-Glass", "trackViewUrl":"http://itunes.apple.com/us/book/alice-in-wonderland-through/id413245212?mt=11&uo=4", "averageUserRating":5.0, "userRatingCount":2}, - {"kind":"ebook", "artistId":2683818, "artistName":"Lewis Carroll", "price":0.99, - "description":"This file includes: Alice's Adventures in Wonderland, Through the Looking Glass, Sylvie and Bruno, Phantasmagoria and Other Poems, The Game of Logic, and The Life and Letters of Lewis Carroll (by Stuart Dodgson Collingwood). And active/linked table of contents helps you got quickly to the book you want. According to Wikipedia: \"Charles Lutwidge Dodgson (27 January 1832 \u2013 14 January 1898), better known by the pen name Lewis Carroll, was an English author, mathematician, logician, Anglican deacon and photographer. His most famous writings are Alice's Adventures in Wonderland and its sequel Through the Looking-Glass as well as the poems \"The Hunting of the Snark\" and \"Jabberwocky\", all considered to be within the genre of literary nonsense. His facility at word play, logic, and fantasy has delighted audiences ranging from children to the literary elite, and beyond this his work has become embedded deeply in modern culture, directly influencing many artists.\"", "genreIds":["10081"], "releaseDate":"2009-09-01T07:00:00Z", "currency":"USD", "trackId":411895049, "trackName":"Classic Children's Books: Alice in Wonderland and five other books by Lewis Carroll in a single file", "genres":["Children's Fiction"], "artistIds":[2683818], "artworkUrl60":"http://a5.mzstatic.com/us/r30/Publication/d2/53/2f/mzi.atwqqvwu.60x60-50.jpg", "artworkUrl100":"http://a2.mzstatic.com/us/r30/Publication/d2/53/2f/mzi.atwqqvwu.100x100-75.jpg", "artistViewUrl":"http://itunes.apple.com/us/artist/lewis-carroll/id2683818?mt=11&uo=4", "trackCensoredName":"Classic Children's Books: Alice in Wonderland and five other books by Lewis Carroll in a single file", "trackViewUrl":"http://itunes.apple.com/us/book/classic-childrens-books-alice/id411895049?mt=11&uo=4", "averageUserRating":null, "userRatingCount":null}, - {"kind":"ebook", "artistId":2683818, "artistName":"Lewis Carroll", "price":3.99, - "description":"

Tor Classics are affordably-priced editions designed to attract the young reader. Original dynamic cover art enthusiastically represents the excitement of each story. Appropriate \"reader friendly\" type sizes have been chosen for each title—offering clear, accurate, and readable text.

Life gets strange when Alice sees a white rabbit wearing a coat and gloves. thens he follows him down a hole. Suddenly she grows smaller, larger, smaller, larger, smaller--and almost drowns in her own tears--

She meets a Dodo, a Lizard, a smoking Caterpillar, a Duchess...a Cat without a grin. Then a grin without a Cat. She has a mad tea party with a Hatter and a Hare.

And a madder croquet game with a King--where playing card soldiers are the hoops, flamingoes are the mallets, hedgehogs are the balls and the Queen of Hearts cries \"Off with their heads!\" Which lands Alice, the Mock Turtle, and a Gryphon (a what<\/i>?) at a trial without rules where death is the penalty! In Wonderland, anything can happen--

And probably anything will...
<\/div>", "genreIds":["10042"], "releaseDate":"1992-06-15T07:00:00Z", "currency":"USD", "trackId":379448751, "trackName":"Alice's Adventures in Wonderland", "genres":["Classics"], "artistIds":[2683818], "artworkUrl60":"http://a2.mzstatic.com/us/r30/Publication/1f/6c/a5/mzi.nmttsywg.60x60-50.jpg", "artworkUrl100":"http://a2.mzstatic.com/us/r30/Publication/1f/6c/a5/mzi.nmttsywg.100x100-75.jpg", "artistViewUrl":"http://itunes.apple.com/us/artist/lewis-carroll/id2683818?mt=11&uo=4", "trackCensoredName":"Alice's Adventures in Wonderland", "trackViewUrl":"http://itunes.apple.com/us/book/alices-adventures-in-wonderland/id379448751?mt=11&uo=4", "averageUserRating":4.0, "userRatingCount":9}, - {"kind":"ebook", "artistId":2683818, "artistName":"Lewis Carroll", "price":5.99, - "description":"

This collection was designed for optimal navigation on iPad and other electronic devices. It is indexed alphabetically, chronologically and by category, making it easier to access individual books, stories and poems. This collection offers lower price, the convenience of a one-time download, and it reduces the clutter in your digital library. All books included in this collection feature a hyperlinked table of contents and footnotes. The collection is complimented by an author biography.<\/p>\n\n

Table of Contents<\/b><\/p>\n

Lewis Carroll Biography
Bibliography<\/p>\n

Prose:<\/b>
Alice's Adventures in Wonderland Illustrated \nby John Tenniel
<\/i>Through the Looking-Glass Illustrated by John \nTenniel
<\/i>Sylvie and Bruno <\/p>\n

Poems:<\/b>
Atlanta in Camden-Town
Echoes
Fame's \nPenny-Trumpet 
Four Riddles
A Game of Fives
Hiawatha's \nPhotography
The Hunting of The Snark, an Agony in Eight Fits
Jabberwocky \n
The Lang Coortin'
Melancholetta
Phantasmagoria
Poeta Fit, Non \nNascitur
A Sea Dirge
Size and Tears
Tema con Variazioni
The \nThree Voices
A Valentine
The Walrus and the Carpenter
Ye Carpette \nKnyghte
You Are Old, Father William<\/p>\n

Other:<\/b>
A Tangled Tale Illustrated by Arthur B. \nFrost
<\/i>The Alphabet Cipher
The Game of Logic
What the Tortoise \nSaid to Achilles<\/p>", "genreIds":["10081"], "releaseDate":"2010-01-01T08:00:00Z", "currency":"USD", "trackId":370187447, "trackName":"Works of Lewis Carroll. ILLUSTRATED", "genres":["Children's Fiction"], "artistIds":[2683818], "artworkUrl60":"http://a3.mzstatic.com/us/r30/Publication/1a/06/1a/mzi.uphjgodd.60x60-50.jpg", "artworkUrl100":"http://a1.mzstatic.com/us/r30/Publication/1a/06/1a/mzi.uphjgodd.100x100-75.jpg", "artistViewUrl":"http://itunes.apple.com/us/artist/lewis-carroll/id2683818?mt=11&uo=4", "trackCensoredName":"Works of Lewis Carroll. ILLUSTRATED", "trackViewUrl":"http://itunes.apple.com/us/book/works-lewis-carroll-illustrated/id370187447?mt=11&uo=4", "averageUserRating":4.0, "userRatingCount":4}, - {"kind":"ebook", "artistId":382482232, "artistName":"Shmoop", "price":2.99, - "description":"Take your understanding of Alice's Adventures in Wonderland and Through the Looking-Glass by Lewis Carroll to a whole new level, anywhere you go: on a plane, on a mountain, in a canoe, under a tree. Or grab a flashlight and read Shmoop under the covers.<\/font>
\n<\/font>
\n<\/font>
\nShmoop's award-winning learning guides are now available on your favorite eBook reader. Shmoop eBooks are like a trusted, fun, chatty, expert literature-tour-guide always by your side, no matter where you are (or how late it is at night). You'll find thought-provoking character analyses, quotes, summaries, themes, symbols, trivia, and lots of insightful commentary in Shmoop's literature guides. Teachers and experts from top universities, including Stanford, UC Berkeley, and Harvard have lovingly created these guides to get your brain bubbling.<\/font>
\n<\/font>
\n <\/font>
\n<\/font>
\nShmoop is here to make you a better lover of literature and to help you discover connections to other works of literature, history, current events, and pop culture. These interactive study guides will help you discover and rediscover some of the greatest works of all time. For more info, check out http://www.shmoop.com/literature/<\/font>
", "genreIds":["10136"], "releaseDate":"2010-07-15T07:00:00Z", "currency":"USD", "trackId":382726515, "trackName":"Alice's Adventures in Wonderland and Through the Looking-Glass", "genres":["Study Aids"], "artistIds":[382482232], "artworkUrl60":"http://a3.mzstatic.com/us/r30/Publication/20/ce/82/mzi.limbhqar.60x60-50.jpg", "artworkUrl100":"http://a3.mzstatic.com/us/r30/Publication/20/ce/82/mzi.limbhqar.100x100-75.jpg", "artistViewUrl":"http://itunes.apple.com/us/artist/shmoop/id382482232?mt=11&uo=4", "trackCensoredName":"Alice's Adventures in Wonderland and Through the Looking-Glass", "trackViewUrl":"http://itunes.apple.com/us/book/alices-adventures-in-wonderland/id382726515?mt=11&uo=4", "averageUserRating":1.5, "userRatingCount":2}, - {"kind":"ebook", "artistId":420038287, "artistName":"Lewis Carroll", "price":2.99, - "description":"

Introduction by A. S. Byatt<\/b>
Illustrations by John Tenniel<\/b>
Includes commissioned endnotes<\/b>
 <\/b>
Conceived by a shy British don on a golden afternoon to entertain ten-year-old Alice Liddell and her sisters, Alice’s Adventures in Wonderland<\/i> and Through the Looking-Glass<\/i> have delighted generations of readers in more than eighty languages. “The clue to the enduring fascination and greatness of the Alice books,” writes A. S. Byatt in her Introduction, “lies in language. It is play, and word-play, and its endless intriguing puzzles continue to reveal themselves long after we have ceased to be children.”

Includes a Modern Library Reading Group Guide<\/p>


From the Trade Paperback edition.<\/i>", "genreIds":["10042"], "releaseDate":"1984-05-01T07:00:00Z", "currency":"USD", "trackId":420038282, "trackName":"Alice's Adventures in Wonderland and Through the Looking-Glass", "genres":["Classics"], "artistIds":[420038287], "artworkUrl60":"http://a1.mzstatic.com/us/r30/Publication/26/7a/18/mzi.bwqtqwqw.60x60-50.jpg", "artworkUrl100":"http://a1.mzstatic.com/us/r30/Publication/26/7a/18/mzi.bwqtqwqw.100x100-75.jpg", "artistViewUrl":"http://itunes.apple.com/us/artist/lewis-carroll/id420038287?mt=11&uo=4", "trackCensoredName":"Alice's Adventures in Wonderland and Through the Looking-Glass", "trackViewUrl":"http://itunes.apple.com/us/book/alices-adventures-in-wonderland/id420038282?mt=11&uo=4", "averageUserRating":3.0, "userRatingCount":2}, - {"kind":"ebook", "artistId":193508273, "artistName":"William Irwin & Richard Brian Davis", "price":11.99, - "description":"The perfect companion to Lewis Carroll's classic book and director Tim Burton's March 2010 remake of Alice in Wonderland Alice?s Adventures in Wonderland has fascinated children and adults alike for generations. Why does Lewis Carroll introduce us to such oddities as blue caterpillars who smoke hookahs, cats whose grins remain after their heads have faded away, and a White Queen who lives backwards and remembers forwards? Is it all just nonsense? Was Carroll under the influence? This book probes the deeper underlying meaning in the Alice books, and reveals a world rich with philosophical life lessons. Tapping into some of the greatest philosophical minds that ever lived?Aristotle, Hume, Hobbes, and Nietzsche?Alice in Wonderland and Philosophy explores life?s ultimate questions through the eyes of perhaps the most endearing heroine in all of literature. Looks at compelling issues such as perception and reality as well as how logic fares in a world of lunacy, the Mad Hatter, clocks, and temporal passage Offers new insights into favorite Alice in Wonderland characters and scenes, including the Mad Hatter and his tea party, the violent Queen of Hearts, and the grinning Cheshire Cat Accessible and entertaining, Alice in Wonderland and Philosophy will enrich your experience of Alice's timeless adventures with new meaning and fun.", "genreIds":["10091"], "releaseDate":"2009-12-21T08:00:00Z", "currency":"USD", "trackId":378840152, "trackName":"Alice in Wonderland and Philosophy", "genres":["Philosophy"], "artistIds":[193508273, 374802227], "artworkUrl60":"http://a5.mzstatic.com/us/r30/Publication/88/7e/be/mzi.nuquglhe.60x60-50.jpg", "artworkUrl100":"http://a5.mzstatic.com/us/r30/Publication/88/7e/be/mzi.nuquglhe.100x100-75.jpg", "artistViewUrl":"http://itunes.apple.com/us/artist/william-irwin-richard-brian/id193508273?mt=11&uo=4", "trackCensoredName":"Alice in Wonderland and Philosophy", "trackViewUrl":"http://itunes.apple.com/us/book/alice-in-wonderland-philosophy/id378840152?mt=11&uo=4", "averageUserRating":3.0, "userRatingCount":5}, - {"kind":"ebook", "artistId":357993882, "artistName":"Lawrence Krauss", "price":12.99, - "description":"An exploration of mankind\u2019s fascination with worlds beyond our own\u2014by the bestselling author of The Physics of Star Trek Lawrence Krauss \u2014an international leader in physics and cosmology\u2014examines our long and ardent romance with parallel universes, veiled dimensions, and regions of being that may extend tantalizingly beyond the limits of our perception. Krauss examines popular culture\u2019s current embrace (and frequent misunderstanding) of such topics as black holes, life in other dimensions, strings, and some of the more extraordinary new theories that propose the existence of vast extra dimensions alongside our own. BACKCOVER: \u201CAn astonishing and brilliantly written work of popular science.\u201D\u2014Science a GoGo \u201CA brilliant, thrilling book . . . You\u2019ll have so much fun reading that you\u2019ll hardly notice you\u2019re getting a primer on contemporary physics and cosmology.\u201D\u2014Walter Isaacson, author of Benjamin Franklin: An American Life", "genreIds":["10117"], "releaseDate":"2006-11-28T08:00:00Z", "currency":"USD", "trackId":357993877, "trackName":"Hiding in the Mirror", "genres":["Physics"], "artistIds":[357993882], "artworkUrl60":"http://a2.mzstatic.com/us/r30/Publication/d7/3d/2b/mzi.xlnsvnvo.60x60-50.jpg", "artworkUrl100":"http://a3.mzstatic.com/us/r30/Publication/d7/3d/2b/mzi.xlnsvnvo.100x100-75.jpg", "artistViewUrl":"http://itunes.apple.com/us/artist/lawrence-krauss/id357993882?mt=11&uo=4", "trackCensoredName":"Hiding in the Mirror", "trackViewUrl":"http://itunes.apple.com/us/book/hiding-in-the-mirror/id357993877?mt=11&uo=4", "averageUserRating":null, "userRatingCount":null}, - {"kind":"ebook", "artistId":2683818, "artistName":"Lewis Carroll", "price":5.99, - "description":"One of the most magical concoctions in children's literature, Lewis Carroll's tale follows Alice into the upside-down, inside-out world of Wonderland where she attends the tea party of the Mad Hatter and plays croquet in the court of the Queen of Hearts", "genreIds":["10081"], "releaseDate":"2009-09-19T07:00:00Z", "currency":"USD", "trackId":413246419, "trackName":"Alice's Adventures in Wonderland", "genres":["Children's Fiction"], "artistIds":[2683818], "artworkUrl60":"http://a2.mzstatic.com/us/r30/Publication/e4/77/13/mzi.zstuuulm.60x60-50.jpg", "artworkUrl100":"http://a3.mzstatic.com/us/r30/Publication/e4/77/13/mzi.zstuuulm.100x100-75.jpg", "artistViewUrl":"http://itunes.apple.com/us/artist/lewis-carroll/id2683818?mt=11&uo=4", "trackCensoredName":"Alice's Adventures in Wonderland", "trackViewUrl":"http://itunes.apple.com/us/book/alices-adventures-in-wonderland/id413246419?mt=11&uo=4", "averageUserRating":null, "userRatingCount":null}, - {"kind":"ebook", "artistId":2683818, "artistName":"Lewis Carroll", "price":2.99, - "description":"Alice was beginning to get very tired of sitting by her sister on the bank, and of having nothing to do: once or twice she had peeped into the book her sister was reading, but it had no pictures or conversations in it, and what is the use of a book,' thought Alice `without pictures or conversation?", "genreIds":["10044"], "releaseDate":"2010-04-21T07:00:00Z", "currency":"USD", "trackId":374820954, "trackName":"Alice's Adventures in Wonderland", "genres":["Fantasy"], "artistIds":[2683818], "artworkUrl60":"http://a3.mzstatic.com/us/r30/Publication/aa/29/5c/mzi.cnomvemm.60x60-50.jpg", "artworkUrl100":"http://a5.mzstatic.com/us/r30/Publication/aa/29/5c/mzi.cnomvemm.100x100-75.jpg", "artistViewUrl":"http://itunes.apple.com/us/artist/lewis-carroll/id2683818?mt=11&uo=4", "trackCensoredName":"Alice's Adventures in Wonderland", "trackViewUrl":"http://itunes.apple.com/us/book/alices-adventures-in-wonderland/id374820954?mt=11&uo=4", "averageUserRating":3.0, "userRatingCount":2}, - {"kind":"ebook", "artistId":413463884, "artistName":"Jenny Woolf", "price":9.99, - "description":"

A new biography of Lewis Carroll, just in time for the release of Tim Burton’s all-star <\/I>Alice in Wonderland

<\/P><\/B>Lewis Carroll was brilliant, secretive and self contradictory. He reveled in double meanings and puzzles, in his fiction and his life. Jenny Woolf’s The Mystery of Lewis Carroll <\/I>shines a new light on the creator of Alice In Wonderland <\/I>and brings to life this fascinating, but sometimes exasperating human being whom some have tried to hide. Using rarely-seen and recently discovered sources, such as Carroll’s accounts ledger and unpublished correspondence with the “real” Alice’s family, Woolf sets Lewis Carroll firmly in the context of the English Victorian age and answers many intriguing questions about the man who wrote the Alice books, such as:

<\/P>• Was it Alice or her older sister that caused him to break with the Liddell family?

<\/P>• How true is the gossip about p********a and certain adult women that followed him?

<\/P>• How true is the “romantic secret” which many think ruined Carroll’s personal life?

<\/P>• Who caused Carroll major financial trouble and why did Carroll successfully conceal that person’s identity and actions?

<\/P>Woolf answers these and other questions to bring readers yet another look at one of the most elusive English writers the world has known.

<\/P><\/DIV><\/DIV>", "genreIds":["9008"], "releaseDate":"2010-02-02T08:00:00Z", "currency":"USD", "trackId":385982851, "trackName":"The Mystery of Lewis Carroll", "genres":["Biographies & Memoirs"], "artistIds":[413463884], "artworkUrl60":"http://a2.mzstatic.com/us/r30/Publication/9d/f2/8a/mzi.wyhqacnm.60x60-50.jpg", "artworkUrl100":"http://a1.mzstatic.com/us/r30/Publication/9d/f2/8a/mzi.wyhqacnm.100x100-75.jpg", "artistViewUrl":"http://itunes.apple.com/us/artist/jenny-woolf/id413463884?mt=11&uo=4", "trackCensoredName":"The Mystery of Lewis Carroll", "trackViewUrl":"http://itunes.apple.com/us/book/the-mystery-of-lewis-carroll/id385982851?mt=11&uo=4", "averageUserRating":null, "userRatingCount":null}, - {"kind":"ebook", "artistId":2683818, "artistName":"Lewis Carroll", "price":1.99, - "description":"pubOne.info thank you for your continued support and wish to present you this new edition. Alice was beginning to get very tired of sitting by her sister on the bank, and of having nothing to do: once or twice she had peeped into the book her sister was reading, but it had no pictures or conversations in it, and what is the use of a book,' thought Alice `without pictures or conversation?", "genreIds":["10042"], "releaseDate":"2010-10-23T07:00:00Z", "currency":"USD", "trackId":380373838, "trackName":"Alice's Adventures in Wonderland", "genres":["Classics"], "artistIds":[2683818], "artworkUrl60":"http://a3.mzstatic.com/us/r30/Publication/4e/b6/32/mzi.xdzaqbam.60x60-50.jpg", "artworkUrl100":"http://a4.mzstatic.com/us/r30/Publication/4e/b6/32/mzi.xdzaqbam.100x100-75.jpg", "artistViewUrl":"http://itunes.apple.com/us/artist/lewis-carroll/id2683818?mt=11&uo=4", "trackCensoredName":"Alice's Adventures in Wonderland", "trackViewUrl":"http://itunes.apple.com/us/book/alices-adventures-in-wonderland/id380373838?mt=11&uo=4", "averageUserRating":null, "userRatingCount":null}, - {"kind":"ebook", "artistId":420038287, "artistName":"Lewis Carroll & Millicent Sowerby", "price":9.99, - "description":"Many of the earliest children's books, particularly those dating back to the 1900s and before, are now extremely scarce and increasingly expensive. Pook Press are working to republish these classic works in affordable, high quality, colour editions, using the original text and artwork so these works can delight another generation of children.", "genreIds":["10081", "9010"], "releaseDate":"2011-03-24T07:00:00Z", "currency":"USD", "trackId":428273550, "trackName":"Alice's Adventures In Wonderland Illustrated By Millicent Sowerby", "genres":["Children's Fiction", "Children & Teens"], "artistIds":[420038287, 366129825], "artworkUrl60":"http://a4.mzstatic.com/us/r30/Publication/34/01/9e/mzi.gmkljzay.60x60-50.jpg", "artworkUrl100":"http://a4.mzstatic.com/us/r30/Publication/34/01/9e/mzi.gmkljzay.100x100-75.jpg", "artistViewUrl":"http://itunes.apple.com/us/artist/lewis-carroll-millicent-sowerby/id420038287?mt=11&uo=4", "trackCensoredName":"Alice's Adventures In Wonderland Illustrated By Millicent Sowerby", "trackViewUrl":"http://itunes.apple.com/us/book/alices-adventures-in-wonderland/id428273550?mt=11&uo=4", "averageUserRating":null, "userRatingCount":null}, - {"kind":"ebook", "artistId":411886101, "artistName":"Charles E. Carryl", "price":0.99, "description":"Popular children's book, a sequel to Alice in Wonderland, first published in 1884.", "genreIds":["10081"], "releaseDate":"2010-03-01T08:00:00Z", "currency":"USD", "trackId":411886100, "trackName":"Davy and the Goblin or What Followed Reading 'Alice's Adventures in Wonderland'", "genres":["Children's Fiction"], "artistIds":[411886101], "artworkUrl60":"http://a4.mzstatic.com/us/r30/Publication/13/2c/98/mzi.hktenpvy.60x60-50.jpg", "artworkUrl100":"http://a2.mzstatic.com/us/r30/Publication/13/2c/98/mzi.hktenpvy.100x100-75.jpg", "artistViewUrl":"http://itunes.apple.com/us/artist/charles-e-carryl/id411886101?mt=11&uo=4", "trackCensoredName":"Davy and the Goblin or What Followed Reading 'Alice's Adventures in Wonderland'", "trackViewUrl":"http://itunes.apple.com/us/book/davy-goblin-or-what-followed/id411886100?mt=11&uo=4", "averageUserRating":null, "userRatingCount":null}, - {"kind":"ebook", "artistId":432721709, "artistName":"Jamison Odone", "price":9.99, - "description":"

Literary nonsense turns to whimsical imagery with a macabre twist in the pen-and-ink drawings of Jamison Odone. Stick figures have never emoted this much energy as each page brings a certain curiosity to a new light in this deconstruction of Lewis Carroll's classic. Starkly black and white, these stick characters are as much a quandary as their literary, cartoon and theatre counterparts ever were. Omitting much of the melodic verbiage of the original, Stickfiguratively Speaking<\/EM> creates a simple variation with an exquisitely sophisticated twist that's already being compared to Edward Gorey.

\"Stickfiguratively Speaking<\/EM> is a way that I take stories that I love and adapt them in a visually simple way that is truthfully not all that simple,\" says Odone. \"I view each of these books as an individual project in storytelling, design, and picture making.<\/DIV>", "genreIds":["10081"], "releaseDate":"2010-02-27T08:00:00Z", "currency":"USD", "trackId":432721708, "trackName":"Alice's Adventures in Wonderland", "genres":["Children's Fiction"], "artistIds":[432721709], "artworkUrl60":"http://a5.mzstatic.com/us/r30/Publication/08/4c/b4/mzi.genmaauq.60x60-50.jpg", "artworkUrl100":"http://a3.mzstatic.com/us/r30/Publication/08/4c/b4/mzi.genmaauq.100x100-75.jpg", "artistViewUrl":"http://itunes.apple.com/us/artist/jamison-odone/id432721709?mt=11&uo=4", "trackCensoredName":"Alice's Adventures in Wonderland", "trackViewUrl":"http://itunes.apple.com/us/book/alices-adventures-in-wonderland/id432721708?mt=11&uo=4", "averageUserRating":null, "userRatingCount":null}, - {"kind":"ebook", "artistId":420038287, "artistName":"Lewis Carroll & Arthur Rackham", "price":9.99, - "description":"Many of the earliest children's books, particularly those dating back to the 1900s and before, are now extremely scarce and increasingly expensive. Pook Press are working to republish these classic works in affordable, high quality, colour editions, using the original text and artwork so these works can delight another generation of children.", "genreIds":["9010", "10081"], "releaseDate":"2011-03-24T07:00:00Z", "currency":"USD", "trackId":428273549, "trackName":"Alice's Adventures In Wonderland Illustrated By Arthur Rackham", "genres":["Children & Teens", "Children's Fiction"], "artistIds":[420038287, 366108769], "artworkUrl60":"http://a3.mzstatic.com/us/r30/Publication/2f/f5/0c/mzi.ujgsiwvr.60x60-50.jpg", "artworkUrl100":"http://a2.mzstatic.com/us/r30/Publication/2f/f5/0c/mzi.ujgsiwvr.100x100-75.jpg", "artistViewUrl":"http://itunes.apple.com/us/artist/lewis-carroll-arthur-rackham/id420038287?mt=11&uo=4", "trackCensoredName":"Alice's Adventures In Wonderland Illustrated By Arthur Rackham", "trackViewUrl":"http://itunes.apple.com/us/book/alices-adventures-in-wonderland/id428273549?mt=11&uo=4", "averageUserRating":5.0, "userRatingCount":1}, - {"kind":"ebook", "artistId":426237969, "artistName":"J. T. Holden", "price":8.99, "description":"Lewis Carroll's timeless classic is reimagined through the lyrical language of Wonderland...where familiar faces and new twists abound!", "genreIds":["10081", "10093"], "releaseDate":"2011-03-01T08:00:00Z", "currency":"USD", "trackId":426237506, "trackName":"Alice in Verse", "genres":["Children's Fiction", "Poetry"], "artistIds":[426237969], "artworkUrl60":"http://a5.mzstatic.com/us/r30/Publication/b2/c7/77/mzi.fwqxaoch.60x60-50.jpg", "artworkUrl100":"http://a5.mzstatic.com/us/r30/Publication/b2/c7/77/mzi.fwqxaoch.100x100-75.jpg", "artistViewUrl":"http://itunes.apple.com/us/artist/j-t-holden/id426237969?mt=11&uo=4", "trackCensoredName":"Alice in Verse", "trackViewUrl":"http://itunes.apple.com/us/book/alice-in-verse/id426237506?mt=11&uo=4", "averageUserRating":5.0, "userRatingCount":2}] - } - - - http_version: "1.1" diff --git a/spec/fixtures/Tunes.yml b/spec/fixtures/Tunes.yml new file mode 100644 index 0000000..30ddbc7 --- /dev/null +++ b/spec/fixtures/Tunes.yml @@ -0,0 +1,1527 @@ +--- +- !ruby/struct:VCR::HTTPInteraction + request: !ruby/struct:VCR::Request + method: :get + uri: http://ax.itunes.apple.com:80/WebObjects/MZStoreServices.woa/wa/wsSearch?media=music&term=Jose%20James + body: + headers: + accept: + - application/json + user-agent: + - ITunes Ruby Gem 0.5.5 + accept-encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + response: !ruby/struct:VCR::Response + status: !ruby/struct:VCR::ResponseStatus + code: 200 + message: OK + headers: + x-apple-orig-url-path: + - /WebObjects/MZStoreServices.woa/wa/wsSearch?term=Jose%20James&media=music + x-apple-translated-wo-url: + - /WebObjects/MZStoreServices.woa/wa/wsSearch?term=Jose%20James&media=music + x-apple-application-site: + - NWK + x-apple-max-age: + - '3600' + content-type: + - text/javascript; charset=utf-8 + x-apple-application-instance: + - '3043006' + x-webobjects-loadaverage: + - '0' + vary: + - Accept-Encoding + - X-Apple-Store-Front + expires: + - Wed, 18 Apr 2012 22:53:33 GMT + cache-control: + - max-age=0, no-cache + pragma: + - no-cache + date: + - Wed, 18 Apr 2012 22:53:33 GMT + transfer-encoding: + - chunked + connection: + - Transfer-Encoding + - keep-alive + x-apple-partner: + - origin.0 + body: ! "\n\n\n{\n \"resultCount\":50,\n \"results\": [\n{\"wrapperType\":\"track\", + \"kind\":\"music-video\", \"artistId\":5117774, \"collectionId\":365350903, + \"trackId\":365354104, \"artistName\":\"José James\", \"collectionName\":\"Blackmagic + (Deluxe Version)\", \"trackName\":\"Code\", \"collectionCensoredName\":\"Blackmagic + (Deluxe Version)\", \"trackCensoredName\":\"Code\", \"artistViewUrl\":\"http://itunes.apple.com/us/artist/jose-james/id5117774?uo=4\", + \"collectionViewUrl\":\"http://itunes.apple.com/us/music-video/code/id365354104?uo=4\", + \"trackViewUrl\":\"http://itunes.apple.com/us/music-video/code/id365354104?uo=4\", + \"previewUrl\":\"http://a536.v.phobos.apple.com/us/r1000/059/Video/bf/9c/40/mzm.yajpnkyk..640x480.h264lc.u.p.m4v\", + \"artworkUrl30\":\"http://a3.mzstatic.com/us/r1000/031/Video/05/49/80/mzi.akbfkmtq.40x30-75.jpg\", + \"artworkUrl60\":\"http://a1.mzstatic.com/us/r1000/031/Video/05/49/80/mzi.akbfkmtq.80x60-75.jpg\", + \"artworkUrl100\":\"http://a4.mzstatic.com/us/r1000/031/Video/05/49/80/mzi.akbfkmtq.100x100-75.jpg\", + \"collectionPrice\":9.99, \"trackPrice\":1.49, \"releaseDate\":\"2010-04-12T07:00:00Z\", + \"collectionExplicitness\":\"notExplicit\", \"trackExplicitness\":\"notExplicit\", + \"discCount\":1, \"discNumber\":1, \"trackCount\":21, \"trackNumber\":21, \"trackTimeMillis\":280120.0, + \"country\":\"USA\", \"currency\":\"USD\", \"primaryGenreName\":\"Jazz\"}, \n{\"wrapperType\":\"track\", + \"kind\":\"music-video\", \"artistId\":5117774, \"collectionId\":286264618, + \"trackId\":286264696, \"artistName\":\"José James\", \"collectionName\":\"Park + Bench People - EP\", \"trackName\":\"Park Bench People\", \"collectionCensoredName\":\"Park + Bench People - EP\", \"trackCensoredName\":\"Park Bench People\", \"artistViewUrl\":\"http://itunes.apple.com/us/artist/jose-james/id5117774?uo=4\", + \"collectionViewUrl\":\"http://itunes.apple.com/us/music-video/park-bench-people/id286264696?uo=4\", + \"trackViewUrl\":\"http://itunes.apple.com/us/music-video/park-bench-people/id286264696?uo=4\", + \"previewUrl\":\"http://a1580.v.phobos.apple.com/us/r1000/004/Video/0f/0b/f4/mzm.efxwdsfe..640x360.h264lc.u.p.m4v\", + \"artworkUrl30\":\"http://a5.mzstatic.com/us/r1000/036/Features/71/2c/6f/dj.zaotuasm.40x30-75.jpg\", + \"artworkUrl60\":\"http://a1.mzstatic.com/us/r1000/036/Features/71/2c/6f/dj.zaotuasm.80x60-75.jpg\", + \"artworkUrl100\":\"http://a1.mzstatic.com/us/r1000/036/Features/71/2c/6f/dj.zaotuasm.100x100-75.jpg\", + \"collectionPrice\":1.99, \"trackPrice\":1.49, \"releaseDate\":\"2008-08-24T07:00:00Z\", + \"collectionExplicitness\":\"notExplicit\", \"trackExplicitness\":\"notExplicit\", + \"discCount\":1, \"discNumber\":1, \"trackCount\":3, \"trackNumber\":3, \"trackTimeMillis\":234219.0, + \"country\":\"USA\", \"currency\":\"USD\", \"primaryGenreName\":\"Jazz\"}, \n{\"wrapperType\":\"track\", + \"kind\":\"song\", \"artistId\":5117774, \"collectionId\":365350903, \"trackId\":365354086, + \"artistName\":\"José James\", \"collectionName\":\"Blackmagic (Deluxe Version)\", + \"trackName\":\"Blackmagic\", \"collectionCensoredName\":\"Blackmagic (Deluxe + Version)\", \"trackCensoredName\":\"Blackmagic (Joy Orbison's Recreation)\", + \"artistViewUrl\":\"http://itunes.apple.com/us/artist/jose-james/id5117774?uo=4\", + \"collectionViewUrl\":\"http://itunes.apple.com/us/album/blackmagic-joy-orbisons-recreation/id365350903?i=365354086&uo=4\", + \"trackViewUrl\":\"http://itunes.apple.com/us/album/blackmagic-joy-orbisons-recreation/id365350903?i=365354086&uo=4\", + \"previewUrl\":\"http://a2.mzstatic.com/us/r1000/035/Music/71/ce/42/mzi.rghmjmht.aac.p.m4a\", + \"artworkUrl30\":\"http://a1.mzstatic.com/us/r1000/043/Music/a2/bf/7f/mzi.ulkgzsyt.30x30-50.jpg\", + \"artworkUrl60\":\"http://a5.mzstatic.com/us/r1000/043/Music/a2/bf/7f/mzi.ulkgzsyt.60x60-50.jpg\", + \"artworkUrl100\":\"http://a2.mzstatic.com/us/r1000/043/Music/a2/bf/7f/mzi.ulkgzsyt.100x100-75.jpg\", + \"collectionPrice\":9.99, \"trackPrice\":0.99, \"releaseDate\":\"2010-04-12T07:00:00Z\", + \"collectionExplicitness\":\"notExplicit\", \"trackExplicitness\":\"notExplicit\", + \"discCount\":1, \"discNumber\":1, \"trackCount\":20, \"trackNumber\":19, \"trackTimeMillis\":355804, + \"country\":\"USA\", \"currency\":\"USD\", \"primaryGenreName\":\"Jazz\"}, \n{\"wrapperType\":\"track\", + \"kind\":\"song\", \"artistId\":5117774, \"collectionId\":365350903, \"trackId\":365353942, + \"artistName\":\"José James\", \"collectionName\":\"Blackmagic (Deluxe Version)\", + \"trackName\":\"Blackmagic\", \"collectionCensoredName\":\"Blackmagic (Deluxe + Version)\", \"trackCensoredName\":\"Blackmagic (Izmabad 118 Remix)\", \"artistViewUrl\":\"http://itunes.apple.com/us/artist/jose-james/id5117774?uo=4\", + \"collectionViewUrl\":\"http://itunes.apple.com/us/album/blackmagic-izmabad-118-remix/id365350903?i=365353942&uo=4\", + \"trackViewUrl\":\"http://itunes.apple.com/us/album/blackmagic-izmabad-118-remix/id365350903?i=365353942&uo=4\", + \"previewUrl\":\"http://a1.mzstatic.com/us/r1000/022/Music/fe/5b/38/mzi.bypadvdp.aac.p.m4a\", + \"artworkUrl30\":\"http://a1.mzstatic.com/us/r1000/043/Music/a2/bf/7f/mzi.ulkgzsyt.30x30-50.jpg\", + \"artworkUrl60\":\"http://a5.mzstatic.com/us/r1000/043/Music/a2/bf/7f/mzi.ulkgzsyt.60x60-50.jpg\", + \"artworkUrl100\":\"http://a2.mzstatic.com/us/r1000/043/Music/a2/bf/7f/mzi.ulkgzsyt.100x100-75.jpg\", + \"collectionPrice\":9.99, \"trackPrice\":0.99, \"releaseDate\":\"2010-04-12T07:00:00Z\", + \"collectionExplicitness\":\"notExplicit\", \"trackExplicitness\":\"notExplicit\", + \"discCount\":1, \"discNumber\":1, \"trackCount\":20, \"trackNumber\":17, \"trackTimeMillis\":357855, + \"country\":\"USA\", \"currency\":\"USD\", \"primaryGenreName\":\"Jazz\"}, \n{\"wrapperType\":\"track\", + \"kind\":\"song\", \"artistId\":5117774, \"collectionId\":287805088, \"trackId\":287805642, + \"artistName\":\"José James\", \"collectionName\":\"The Dreamer\", \"trackName\":\"Desire\", + \"collectionCensoredName\":\"The Dreamer\", \"trackCensoredName\":\"Desire\", + \"artistViewUrl\":\"http://itunes.apple.com/us/artist/jose-james/id5117774?uo=4\", + \"collectionViewUrl\":\"http://itunes.apple.com/us/album/desire/id287805088?i=287805642&uo=4\", + \"trackViewUrl\":\"http://itunes.apple.com/us/album/desire/id287805088?i=287805642&uo=4\", + \"previewUrl\":\"http://a5.mzstatic.com/us/r1000/024/Music/4f/63/2c/mzm.dvfzxuyi.aac.p.m4a\", + \"artworkUrl30\":\"http://a5.mzstatic.com/us/r1000/001/Music/8f/6d/26/mzi.elifbnfk.30x30-50.jpg\", + \"artworkUrl60\":\"http://a2.mzstatic.com/us/r1000/001/Music/8f/6d/26/mzi.elifbnfk.60x60-50.jpg\", + \"artworkUrl100\":\"http://a4.mzstatic.com/us/r1000/001/Music/8f/6d/26/mzi.elifbnfk.100x100-75.jpg\", + \"collectionPrice\":9.90, \"trackPrice\":0.99, \"releaseDate\":\"2008-03-26T07:00:00Z\", + \"collectionExplicitness\":\"notExplicit\", \"trackExplicitness\":\"notExplicit\", + \"discCount\":1, \"discNumber\":1, \"trackCount\":10, \"trackNumber\":9, \"trackTimeMillis\":449267, + \"country\":\"USA\", \"currency\":\"USD\", \"primaryGenreName\":\"Jazz\"}, \n{\"wrapperType\":\"track\", + \"kind\":\"song\", \"artistId\":5117774, \"collectionId\":365350903, \"trackId\":365353461, + \"artistName\":\"José James\", \"collectionName\":\"Blackmagic (Deluxe Version)\", + \"trackName\":\"Love Conversation\", \"collectionCensoredName\":\"Blackmagic + (Deluxe Version)\", \"trackCensoredName\":\"Love Conversation\", \"artistViewUrl\":\"http://itunes.apple.com/us/artist/jose-james/id5117774?uo=4\", + \"collectionViewUrl\":\"http://itunes.apple.com/us/album/love-conversation/id365350903?i=365353461&uo=4\", + \"trackViewUrl\":\"http://itunes.apple.com/us/album/love-conversation/id365350903?i=365353461&uo=4\", + \"previewUrl\":\"http://a3.mzstatic.com/us/r1000/044/Music/ac/58/68/mzi.ipmfrtvw.aac.p.m4a\", + \"artworkUrl30\":\"http://a1.mzstatic.com/us/r1000/043/Music/a2/bf/7f/mzi.ulkgzsyt.30x30-50.jpg\", + \"artworkUrl60\":\"http://a5.mzstatic.com/us/r1000/043/Music/a2/bf/7f/mzi.ulkgzsyt.60x60-50.jpg\", + \"artworkUrl100\":\"http://a2.mzstatic.com/us/r1000/043/Music/a2/bf/7f/mzi.ulkgzsyt.100x100-75.jpg\", + \"collectionPrice\":9.99, \"trackPrice\":0.99, \"releaseDate\":\"2010-04-12T07:00:00Z\", + \"collectionExplicitness\":\"notExplicit\", \"trackExplicitness\":\"notExplicit\", + \"discCount\":1, \"discNumber\":1, \"trackCount\":20, \"trackNumber\":11, \"trackTimeMillis\":316332, + \"country\":\"USA\", \"currency\":\"USD\", \"primaryGenreName\":\"Jazz\"}, \n{\"wrapperType\":\"track\", + \"kind\":\"song\", \"artistId\":5117774, \"collectionId\":365350903, \"trackId\":365352887, + \"artistName\":\"José James\", \"collectionName\":\"Blackmagic (Deluxe Version)\", + \"trackName\":\"Save Your Love for Me\", \"collectionCensoredName\":\"Blackmagic + (Deluxe Version)\", \"trackCensoredName\":\"Save Your Love for Me\", \"artistViewUrl\":\"http://itunes.apple.com/us/artist/jose-james/id5117774?uo=4\", + \"collectionViewUrl\":\"http://itunes.apple.com/us/album/save-your-love-for-me/id365350903?i=365352887&uo=4\", + \"trackViewUrl\":\"http://itunes.apple.com/us/album/save-your-love-for-me/id365350903?i=365352887&uo=4\", + \"previewUrl\":\"http://a4.mzstatic.com/us/r1000/004/Music/2a/f4/9c/mzi.tnducphq.aac.p.m4a\", + \"artworkUrl30\":\"http://a1.mzstatic.com/us/r1000/043/Music/a2/bf/7f/mzi.ulkgzsyt.30x30-50.jpg\", + \"artworkUrl60\":\"http://a5.mzstatic.com/us/r1000/043/Music/a2/bf/7f/mzi.ulkgzsyt.60x60-50.jpg\", + \"artworkUrl100\":\"http://a2.mzstatic.com/us/r1000/043/Music/a2/bf/7f/mzi.ulkgzsyt.100x100-75.jpg\", + \"collectionPrice\":9.99, \"trackPrice\":0.99, \"releaseDate\":\"2010-04-12T07:00:00Z\", + \"collectionExplicitness\":\"notExplicit\", \"trackExplicitness\":\"notExplicit\", + \"discCount\":1, \"discNumber\":1, \"trackCount\":20, \"trackNumber\":7, \"trackTimeMillis\":212571, + \"country\":\"USA\", \"currency\":\"USD\", \"primaryGenreName\":\"Jazz\"}, \n{\"wrapperType\":\"track\", + \"kind\":\"song\", \"artistId\":5117774, \"collectionId\":287805088, \"trackId\":287805379, + \"artistName\":\"José James\", \"collectionName\":\"The Dreamer\", \"trackName\":\"Park + Bench People\", \"collectionCensoredName\":\"The Dreamer\", \"trackCensoredName\":\"Park + Bench People\", \"artistViewUrl\":\"http://itunes.apple.com/us/artist/jose-james/id5117774?uo=4\", + \"collectionViewUrl\":\"http://itunes.apple.com/us/album/park-bench-people/id287805088?i=287805379&uo=4\", + \"trackViewUrl\":\"http://itunes.apple.com/us/album/park-bench-people/id287805088?i=287805379&uo=4\", + \"previewUrl\":\"http://a5.mzstatic.com/us/r1000/054/Music/8f/1b/34/mzm.pjdrzrbi.aac.p.m4a\", + \"artworkUrl30\":\"http://a5.mzstatic.com/us/r1000/001/Music/8f/6d/26/mzi.elifbnfk.30x30-50.jpg\", + \"artworkUrl60\":\"http://a2.mzstatic.com/us/r1000/001/Music/8f/6d/26/mzi.elifbnfk.60x60-50.jpg\", + \"artworkUrl100\":\"http://a4.mzstatic.com/us/r1000/001/Music/8f/6d/26/mzi.elifbnfk.100x100-75.jpg\", + \"collectionPrice\":9.90, \"trackPrice\":0.99, \"releaseDate\":\"2008-03-26T07:00:00Z\", + \"collectionExplicitness\":\"notExplicit\", \"trackExplicitness\":\"notExplicit\", + \"discCount\":1, \"discNumber\":1, \"trackCount\":10, \"trackNumber\":4, \"trackTimeMillis\":363320, + \"country\":\"USA\", \"currency\":\"USD\", \"primaryGenreName\":\"Jazz\"}, \n{\"wrapperType\":\"track\", + \"kind\":\"song\", \"artistId\":5117774, \"collectionId\":365350903, \"trackId\":365351515, + \"artistName\":\"José James\", \"collectionName\":\"Blackmagic (Deluxe Version)\", + \"trackName\":\"Code\", \"collectionCensoredName\":\"Blackmagic (Deluxe Version)\", + \"trackCensoredName\":\"Code\", \"artistViewUrl\":\"http://itunes.apple.com/us/artist/jose-james/id5117774?uo=4\", + \"collectionViewUrl\":\"http://itunes.apple.com/us/album/code/id365350903?i=365351515&uo=4\", + \"trackViewUrl\":\"http://itunes.apple.com/us/album/code/id365350903?i=365351515&uo=4\", + \"previewUrl\":\"http://a4.mzstatic.com/us/r1000/015/Music/80/f1/f2/mzi.xotjcehb.aac.p.m4a\", + \"artworkUrl30\":\"http://a1.mzstatic.com/us/r1000/043/Music/a2/bf/7f/mzi.ulkgzsyt.30x30-50.jpg\", + \"artworkUrl60\":\"http://a5.mzstatic.com/us/r1000/043/Music/a2/bf/7f/mzi.ulkgzsyt.60x60-50.jpg\", + \"artworkUrl100\":\"http://a2.mzstatic.com/us/r1000/043/Music/a2/bf/7f/mzi.ulkgzsyt.100x100-75.jpg\", + \"collectionPrice\":9.99, \"trackPrice\":0.99, \"releaseDate\":\"2010-04-12T07:00:00Z\", + \"collectionExplicitness\":\"notExplicit\", \"trackExplicitness\":\"notExplicit\", + \"discCount\":1, \"discNumber\":1, \"trackCount\":20, \"trackNumber\":1, \"trackTimeMillis\":294666, + \"country\":\"USA\", \"currency\":\"USD\", \"primaryGenreName\":\"Jazz\"}, \n{\"wrapperType\":\"track\", + \"kind\":\"song\", \"artistId\":5117774, \"collectionId\":365350903, \"trackId\":365352155, + \"artistName\":\"José James\", \"collectionName\":\"Blackmagic (Deluxe Version)\", + \"trackName\":\"Promise In Love\", \"collectionCensoredName\":\"Blackmagic (Deluxe + Version)\", \"trackCensoredName\":\"Promise In Love\", \"artistViewUrl\":\"http://itunes.apple.com/us/artist/jose-james/id5117774?uo=4\", + \"collectionViewUrl\":\"http://itunes.apple.com/us/album/promise-in-love/id365350903?i=365352155&uo=4\", + \"trackViewUrl\":\"http://itunes.apple.com/us/album/promise-in-love/id365350903?i=365352155&uo=4\", + \"previewUrl\":\"http://a1.mzstatic.com/us/r1000/001/Music/1c/41/f7/mzi.ltwhimkd.aac.p.m4a\", + \"artworkUrl30\":\"http://a1.mzstatic.com/us/r1000/043/Music/a2/bf/7f/mzi.ulkgzsyt.30x30-50.jpg\", + \"artworkUrl60\":\"http://a5.mzstatic.com/us/r1000/043/Music/a2/bf/7f/mzi.ulkgzsyt.60x60-50.jpg\", + \"artworkUrl100\":\"http://a2.mzstatic.com/us/r1000/043/Music/a2/bf/7f/mzi.ulkgzsyt.100x100-75.jpg\", + \"collectionPrice\":9.99, \"trackPrice\":0.99, \"releaseDate\":\"2010-04-12T07:00:00Z\", + \"collectionExplicitness\":\"notExplicit\", \"trackExplicitness\":\"notExplicit\", + \"discCount\":1, \"discNumber\":1, \"trackCount\":20, \"trackNumber\":4, \"trackTimeMillis\":275666, + \"country\":\"USA\", \"currency\":\"USD\", \"primaryGenreName\":\"Jazz\"}, \n{\"wrapperType\":\"track\", + \"kind\":\"song\", \"artistId\":5117774, \"collectionId\":365350903, \"trackId\":365351841, + \"artistName\":\"José James\", \"collectionName\":\"Blackmagic (Deluxe Version)\", + \"trackName\":\"Lay You Down\", \"collectionCensoredName\":\"Blackmagic (Deluxe + Version)\", \"trackCensoredName\":\"Lay You Down\", \"artistViewUrl\":\"http://itunes.apple.com/us/artist/jose-james/id5117774?uo=4\", + \"collectionViewUrl\":\"http://itunes.apple.com/us/album/lay-you-down/id365350903?i=365351841&uo=4\", + \"trackViewUrl\":\"http://itunes.apple.com/us/album/lay-you-down/id365350903?i=365351841&uo=4\", + \"previewUrl\":\"http://a2.mzstatic.com/us/r1000/010/Music/10/ee/e1/mzi.dngalaji.aac.p.m4a\", + \"artworkUrl30\":\"http://a1.mzstatic.com/us/r1000/043/Music/a2/bf/7f/mzi.ulkgzsyt.30x30-50.jpg\", + \"artworkUrl60\":\"http://a5.mzstatic.com/us/r1000/043/Music/a2/bf/7f/mzi.ulkgzsyt.60x60-50.jpg\", + \"artworkUrl100\":\"http://a2.mzstatic.com/us/r1000/043/Music/a2/bf/7f/mzi.ulkgzsyt.100x100-75.jpg\", + \"collectionPrice\":9.99, \"trackPrice\":0.99, \"releaseDate\":\"2010-04-12T07:00:00Z\", + \"collectionExplicitness\":\"notExplicit\", \"trackExplicitness\":\"notExplicit\", + \"discCount\":1, \"discNumber\":1, \"trackCount\":20, \"trackNumber\":3, \"trackTimeMillis\":305492, + \"country\":\"USA\", \"currency\":\"USD\", \"primaryGenreName\":\"Jazz\"}, \n{\"wrapperType\":\"track\", + \"kind\":\"song\", \"artistId\":5117774, \"collectionId\":365350903, \"trackId\":365353883, + \"artistName\":\"José James\", \"collectionName\":\"Blackmagic (Deluxe Version)\", + \"trackName\":\"Visions of Violet (feat. Flying Lotus)\", \"collectionCensoredName\":\"Blackmagic + (Deluxe Version)\", \"trackCensoredName\":\"Visions of Violet (feat. Flying + Lotus)\", \"artistViewUrl\":\"http://itunes.apple.com/us/artist/jose-james/id5117774?uo=4\", + \"collectionViewUrl\":\"http://itunes.apple.com/us/album/visions-violet-feat.-flying/id365350903?i=365353883&uo=4\", + \"trackViewUrl\":\"http://itunes.apple.com/us/album/visions-violet-feat.-flying/id365350903?i=365353883&uo=4\", + \"previewUrl\":\"http://a1.mzstatic.com/us/r1000/044/Music/f3/e4/64/mzi.yipsrvwd.aac.p.m4a\", + \"artworkUrl30\":\"http://a1.mzstatic.com/us/r1000/043/Music/a2/bf/7f/mzi.ulkgzsyt.30x30-50.jpg\", + \"artworkUrl60\":\"http://a5.mzstatic.com/us/r1000/043/Music/a2/bf/7f/mzi.ulkgzsyt.60x60-50.jpg\", + \"artworkUrl100\":\"http://a2.mzstatic.com/us/r1000/043/Music/a2/bf/7f/mzi.ulkgzsyt.100x100-75.jpg\", + \"collectionPrice\":9.99, \"trackPrice\":0.99, \"releaseDate\":\"2010-04-12T07:00:00Z\", + \"collectionExplicitness\":\"notExplicit\", \"trackExplicitness\":\"notExplicit\", + \"discCount\":1, \"discNumber\":1, \"trackCount\":20, \"trackNumber\":16, \"trackTimeMillis\":140447, + \"country\":\"USA\", \"currency\":\"USD\", \"primaryGenreName\":\"Jazz\"}, \n{\"wrapperType\":\"track\", + \"kind\":\"song\", \"artistId\":5117774, \"collectionId\":365350903, \"trackId\":365352707, + \"artistName\":\"José James\", \"collectionName\":\"Blackmagic (Deluxe Version)\", + \"trackName\":\"Made for Love\", \"collectionCensoredName\":\"Blackmagic (Deluxe + Version)\", \"trackCensoredName\":\"Made for Love\", \"artistViewUrl\":\"http://itunes.apple.com/us/artist/jose-james/id5117774?uo=4\", + \"collectionViewUrl\":\"http://itunes.apple.com/us/album/made-for-love/id365350903?i=365352707&uo=4\", + \"trackViewUrl\":\"http://itunes.apple.com/us/album/made-for-love/id365350903?i=365352707&uo=4\", + \"previewUrl\":\"http://a3.mzstatic.com/us/r1000/032/Music/04/47/d2/mzi.zevlzzuk.aac.p.m4a\", + \"artworkUrl30\":\"http://a1.mzstatic.com/us/r1000/043/Music/a2/bf/7f/mzi.ulkgzsyt.30x30-50.jpg\", + \"artworkUrl60\":\"http://a5.mzstatic.com/us/r1000/043/Music/a2/bf/7f/mzi.ulkgzsyt.60x60-50.jpg\", + \"artworkUrl100\":\"http://a2.mzstatic.com/us/r1000/043/Music/a2/bf/7f/mzi.ulkgzsyt.100x100-75.jpg\", + \"collectionPrice\":9.99, \"trackPrice\":0.99, \"releaseDate\":\"2010-04-12T07:00:00Z\", + \"collectionExplicitness\":\"notExplicit\", \"trackExplicitness\":\"notExplicit\", + \"discCount\":1, \"discNumber\":1, \"trackCount\":20, \"trackNumber\":6, \"trackTimeMillis\":230928, + \"country\":\"USA\", \"currency\":\"USD\", \"primaryGenreName\":\"Jazz\"}, \n{\"wrapperType\":\"track\", + \"kind\":\"song\", \"artistId\":5117774, \"collectionId\":365350903, \"trackId\":365351658, + \"artistName\":\"José James\", \"collectionName\":\"Blackmagic (Deluxe Version)\", + \"trackName\":\"Touch\", \"collectionCensoredName\":\"Blackmagic (Deluxe Version)\", + \"trackCensoredName\":\"Touch\", \"artistViewUrl\":\"http://itunes.apple.com/us/artist/jose-james/id5117774?uo=4\", + \"collectionViewUrl\":\"http://itunes.apple.com/us/album/touch/id365350903?i=365351658&uo=4\", + \"trackViewUrl\":\"http://itunes.apple.com/us/album/touch/id365350903?i=365351658&uo=4\", + \"previewUrl\":\"http://a5.mzstatic.com/us/r1000/026/Music/6b/0f/50/mzi.mlcnmhnr.aac.p.m4a\", + \"artworkUrl30\":\"http://a1.mzstatic.com/us/r1000/043/Music/a2/bf/7f/mzi.ulkgzsyt.30x30-50.jpg\", + \"artworkUrl60\":\"http://a5.mzstatic.com/us/r1000/043/Music/a2/bf/7f/mzi.ulkgzsyt.60x60-50.jpg\", + \"artworkUrl100\":\"http://a2.mzstatic.com/us/r1000/043/Music/a2/bf/7f/mzi.ulkgzsyt.100x100-75.jpg\", + \"collectionPrice\":9.99, \"trackPrice\":0.99, \"releaseDate\":\"2010-04-12T07:00:00Z\", + \"collectionExplicitness\":\"notExplicit\", \"trackExplicitness\":\"notExplicit\", + \"discCount\":1, \"discNumber\":1, \"trackCount\":20, \"trackNumber\":2, \"trackTimeMillis\":258864, + \"country\":\"USA\", \"currency\":\"USD\", \"primaryGenreName\":\"Jazz\"}, \n{\"wrapperType\":\"track\", + \"kind\":\"song\", \"artistId\":5117774, \"collectionId\":365350903, \"trackId\":365353129, + \"artistName\":\"José James\", \"collectionName\":\"Blackmagic (Deluxe Version)\", + \"trackName\":\"Blackmagic\", \"collectionCensoredName\":\"Blackmagic (Deluxe + Version)\", \"trackCensoredName\":\"Blackmagic\", \"artistViewUrl\":\"http://itunes.apple.com/us/artist/jose-james/id5117774?uo=4\", + \"collectionViewUrl\":\"http://itunes.apple.com/us/album/blackmagic/id365350903?i=365353129&uo=4\", + \"trackViewUrl\":\"http://itunes.apple.com/us/album/blackmagic/id365350903?i=365353129&uo=4\", + \"previewUrl\":\"http://a3.mzstatic.com/us/r1000/035/Music/a9/d8/f0/mzi.qzpytsme.aac.p.m4a\", + \"artworkUrl30\":\"http://a1.mzstatic.com/us/r1000/043/Music/a2/bf/7f/mzi.ulkgzsyt.30x30-50.jpg\", + \"artworkUrl60\":\"http://a5.mzstatic.com/us/r1000/043/Music/a2/bf/7f/mzi.ulkgzsyt.60x60-50.jpg\", + \"artworkUrl100\":\"http://a2.mzstatic.com/us/r1000/043/Music/a2/bf/7f/mzi.ulkgzsyt.100x100-75.jpg\", + \"collectionPrice\":9.99, \"trackPrice\":0.99, \"releaseDate\":\"2010-04-12T07:00:00Z\", + \"collectionExplicitness\":\"notExplicit\", \"trackExplicitness\":\"notExplicit\", + \"discCount\":1, \"discNumber\":1, \"trackCount\":20, \"trackNumber\":9, \"trackTimeMillis\":243429, + \"country\":\"USA\", \"currency\":\"USD\", \"primaryGenreName\":\"Jazz\"}, \n{\"wrapperType\":\"track\", + \"kind\":\"song\", \"artistId\":5117774, \"collectionId\":365350903, \"trackId\":365352479, + \"artistName\":\"José James\", \"collectionName\":\"Blackmagic (Deluxe Version)\", + \"trackName\":\"Warrior\", \"collectionCensoredName\":\"Blackmagic (Deluxe Version)\", + \"trackCensoredName\":\"Warrior\", \"artistViewUrl\":\"http://itunes.apple.com/us/artist/jose-james/id5117774?uo=4\", + \"collectionViewUrl\":\"http://itunes.apple.com/us/album/warrior/id365350903?i=365352479&uo=4\", + \"trackViewUrl\":\"http://itunes.apple.com/us/album/warrior/id365350903?i=365352479&uo=4\", + \"previewUrl\":\"http://a2.mzstatic.com/us/r1000/029/Music/09/0d/d5/mzi.euzhdjhi.aac.p.m4a\", + \"artworkUrl30\":\"http://a1.mzstatic.com/us/r1000/043/Music/a2/bf/7f/mzi.ulkgzsyt.30x30-50.jpg\", + \"artworkUrl60\":\"http://a5.mzstatic.com/us/r1000/043/Music/a2/bf/7f/mzi.ulkgzsyt.60x60-50.jpg\", + \"artworkUrl100\":\"http://a2.mzstatic.com/us/r1000/043/Music/a2/bf/7f/mzi.ulkgzsyt.100x100-75.jpg\", + \"collectionPrice\":9.99, \"trackPrice\":0.99, \"releaseDate\":\"2010-04-12T07:00:00Z\", + \"collectionExplicitness\":\"notExplicit\", \"trackExplicitness\":\"notExplicit\", + \"discCount\":1, \"discNumber\":1, \"trackCount\":20, \"trackNumber\":5, \"trackTimeMillis\":355094, + \"country\":\"USA\", \"currency\":\"USD\", \"primaryGenreName\":\"Jazz\"}, \n{\"wrapperType\":\"track\", + \"kind\":\"song\", \"artistId\":5117774, \"collectionId\":287805088, \"trackId\":287805308, + \"artistName\":\"José James\", \"collectionName\":\"The Dreamer\", \"trackName\":\"Blackeyedsusan\", + \"collectionCensoredName\":\"The Dreamer\", \"trackCensoredName\":\"Blackeyedsusan\", + \"artistViewUrl\":\"http://itunes.apple.com/us/artist/jose-james/id5117774?uo=4\", + \"collectionViewUrl\":\"http://itunes.apple.com/us/album/blackeyedsusan/id287805088?i=287805308&uo=4\", + \"trackViewUrl\":\"http://itunes.apple.com/us/album/blackeyedsusan/id287805088?i=287805308&uo=4\", + \"previewUrl\":\"http://a3.mzstatic.com/us/r1000/021/Music/a1/d8/e1/mzm.brvmkudk.aac.p.m4a\", + \"artworkUrl30\":\"http://a5.mzstatic.com/us/r1000/001/Music/8f/6d/26/mzi.elifbnfk.30x30-50.jpg\", + \"artworkUrl60\":\"http://a2.mzstatic.com/us/r1000/001/Music/8f/6d/26/mzi.elifbnfk.60x60-50.jpg\", + \"artworkUrl100\":\"http://a4.mzstatic.com/us/r1000/001/Music/8f/6d/26/mzi.elifbnfk.100x100-75.jpg\", + \"collectionPrice\":9.90, \"trackPrice\":0.99, \"releaseDate\":\"2008-03-26T07:00:00Z\", + \"collectionExplicitness\":\"notExplicit\", \"trackExplicitness\":\"notExplicit\", + \"discCount\":1, \"discNumber\":1, \"trackCount\":10, \"trackNumber\":3, \"trackTimeMillis\":296787, + \"country\":\"USA\", \"currency\":\"USD\", \"primaryGenreName\":\"Jazz\"}, \n{\"wrapperType\":\"track\", + \"kind\":\"song\", \"artistId\":5117774, \"collectionId\":365350903, \"trackId\":365353980, + \"artistName\":\"José James\", \"collectionName\":\"Blackmagic (Deluxe Version)\", + \"trackName\":\"Warrior\", \"collectionCensoredName\":\"Blackmagic (Deluxe Version)\", + \"trackCensoredName\":\"Warrior (Sbtrkt Remix)\", \"artistViewUrl\":\"http://itunes.apple.com/us/artist/jose-james/id5117774?uo=4\", + \"collectionViewUrl\":\"http://itunes.apple.com/us/album/warrior-sbtrkt-remix/id365350903?i=365353980&uo=4\", + \"trackViewUrl\":\"http://itunes.apple.com/us/album/warrior-sbtrkt-remix/id365350903?i=365353980&uo=4\", + \"previewUrl\":\"http://a5.mzstatic.com/us/r1000/024/Music/8e/df/93/mzi.qgdgxket.aac.p.m4a\", + \"artworkUrl30\":\"http://a1.mzstatic.com/us/r1000/043/Music/a2/bf/7f/mzi.ulkgzsyt.30x30-50.jpg\", + \"artworkUrl60\":\"http://a5.mzstatic.com/us/r1000/043/Music/a2/bf/7f/mzi.ulkgzsyt.60x60-50.jpg\", + \"artworkUrl100\":\"http://a2.mzstatic.com/us/r1000/043/Music/a2/bf/7f/mzi.ulkgzsyt.100x100-75.jpg\", + \"collectionPrice\":9.99, \"trackPrice\":0.99, \"releaseDate\":\"2010-04-12T07:00:00Z\", + \"collectionExplicitness\":\"notExplicit\", \"trackExplicitness\":\"notExplicit\", + \"discCount\":1, \"discNumber\":1, \"trackCount\":20, \"trackNumber\":18, \"trackTimeMillis\":272852, + \"country\":\"USA\", \"currency\":\"USD\", \"primaryGenreName\":\"Jazz\"}, \n{\"wrapperType\":\"track\", + \"kind\":\"song\", \"artistId\":5117774, \"collectionId\":365350903, \"trackId\":365354103, + \"artistName\":\"José James\", \"collectionName\":\"Blackmagic (Deluxe Version)\", + \"trackName\":\"Warrior\", \"collectionCensoredName\":\"Blackmagic (Deluxe Version)\", + \"trackCensoredName\":\"Warrior (Rockwell Remix)\", \"artistViewUrl\":\"http://itunes.apple.com/us/artist/jose-james/id5117774?uo=4\", + \"collectionViewUrl\":\"http://itunes.apple.com/us/album/warrior-rockwell-remix/id365350903?i=365354103&uo=4\", + \"trackViewUrl\":\"http://itunes.apple.com/us/album/warrior-rockwell-remix/id365350903?i=365354103&uo=4\", + \"previewUrl\":\"http://a3.mzstatic.com/us/r1000/004/Music/6c/dd/f1/mzi.ckyvqfuq.aac.p.m4a\", + \"artworkUrl30\":\"http://a1.mzstatic.com/us/r1000/043/Music/a2/bf/7f/mzi.ulkgzsyt.30x30-50.jpg\", + \"artworkUrl60\":\"http://a5.mzstatic.com/us/r1000/043/Music/a2/bf/7f/mzi.ulkgzsyt.60x60-50.jpg\", + \"artworkUrl100\":\"http://a2.mzstatic.com/us/r1000/043/Music/a2/bf/7f/mzi.ulkgzsyt.100x100-75.jpg\", + \"collectionPrice\":9.99, \"trackPrice\":0.99, \"releaseDate\":\"2010-04-12T07:00:00Z\", + \"collectionExplicitness\":\"notExplicit\", \"trackExplicitness\":\"notExplicit\", + \"discCount\":1, \"discNumber\":1, \"trackCount\":20, \"trackNumber\":20, \"trackTimeMillis\":353098, + \"country\":\"USA\", \"currency\":\"USD\", \"primaryGenreName\":\"Jazz\"}, \n{\"wrapperType\":\"track\", + \"kind\":\"song\", \"artistId\":5117774, \"collectionId\":365350903, \"trackId\":365353658, + \"artistName\":\"José James\", \"collectionName\":\"Blackmagic (Deluxe Version)\", + \"trackName\":\"No Tellin' (I Need You)\", \"collectionCensoredName\":\"Blackmagic + (Deluxe Version)\", \"trackCensoredName\":\"No Tellin' (I Need You)\", \"artistViewUrl\":\"http://itunes.apple.com/us/artist/jose-james/id5117774?uo=4\", + \"collectionViewUrl\":\"http://itunes.apple.com/us/album/no-tellin-i-need-you/id365350903?i=365353658&uo=4\", + \"trackViewUrl\":\"http://itunes.apple.com/us/album/no-tellin-i-need-you/id365350903?i=365353658&uo=4\", + \"previewUrl\":\"http://a2.mzstatic.com/us/r1000/010/Music/f3/84/c7/mzi.owscastu.aac.p.m4a\", + \"artworkUrl30\":\"http://a1.mzstatic.com/us/r1000/043/Music/a2/bf/7f/mzi.ulkgzsyt.30x30-50.jpg\", + \"artworkUrl60\":\"http://a5.mzstatic.com/us/r1000/043/Music/a2/bf/7f/mzi.ulkgzsyt.60x60-50.jpg\", + \"artworkUrl100\":\"http://a2.mzstatic.com/us/r1000/043/Music/a2/bf/7f/mzi.ulkgzsyt.100x100-75.jpg\", + \"collectionPrice\":9.99, \"trackPrice\":0.99, \"releaseDate\":\"2010-04-12T07:00:00Z\", + \"collectionExplicitness\":\"notExplicit\", \"trackExplicitness\":\"notExplicit\", + \"discCount\":1, \"discNumber\":1, \"trackCount\":20, \"trackNumber\":13, \"trackTimeMillis\":159432, + \"country\":\"USA\", \"currency\":\"USD\", \"primaryGenreName\":\"Jazz\"}, \n{\"wrapperType\":\"track\", + \"kind\":\"song\", \"artistId\":5117774, \"collectionId\":287805088, \"trackId\":287805225, + \"artistName\":\"José James\", \"collectionName\":\"The Dreamer\", \"trackName\":\"The + Dreamer\", \"collectionCensoredName\":\"The Dreamer\", \"trackCensoredName\":\"The + Dreamer\", \"artistViewUrl\":\"http://itunes.apple.com/us/artist/jose-james/id5117774?uo=4\", + \"collectionViewUrl\":\"http://itunes.apple.com/us/album/the-dreamer/id287805088?i=287805225&uo=4\", + \"trackViewUrl\":\"http://itunes.apple.com/us/album/the-dreamer/id287805088?i=287805225&uo=4\", + \"previewUrl\":\"http://a3.mzstatic.com/us/r1000/043/Music/81/7e/1c/mzm.viszqyno.aac.p.m4a\", + \"artworkUrl30\":\"http://a5.mzstatic.com/us/r1000/001/Music/8f/6d/26/mzi.elifbnfk.30x30-50.jpg\", + \"artworkUrl60\":\"http://a2.mzstatic.com/us/r1000/001/Music/8f/6d/26/mzi.elifbnfk.60x60-50.jpg\", + \"artworkUrl100\":\"http://a4.mzstatic.com/us/r1000/001/Music/8f/6d/26/mzi.elifbnfk.100x100-75.jpg\", + \"collectionPrice\":9.90, \"trackPrice\":0.99, \"releaseDate\":\"2008-03-26T07:00:00Z\", + \"collectionExplicitness\":\"notExplicit\", \"trackExplicitness\":\"notExplicit\", + \"discCount\":1, \"discNumber\":1, \"trackCount\":10, \"trackNumber\":1, \"trackTimeMillis\":425280, + \"country\":\"USA\", \"currency\":\"USD\", \"primaryGenreName\":\"Jazz\"}, \n{\"wrapperType\":\"track\", + \"kind\":\"song\", \"artistId\":5117774, \"collectionId\":365350903, \"trackId\":365353042, + \"artistName\":\"José James\", \"collectionName\":\"Blackmagic (Deluxe Version)\", + \"trackName\":\"The Greater Good\", \"collectionCensoredName\":\"Blackmagic + (Deluxe Version)\", \"trackCensoredName\":\"The Greater Good\", \"artistViewUrl\":\"http://itunes.apple.com/us/artist/jose-james/id5117774?uo=4\", + \"collectionViewUrl\":\"http://itunes.apple.com/us/album/the-greater-good/id365350903?i=365353042&uo=4\", + \"trackViewUrl\":\"http://itunes.apple.com/us/album/the-greater-good/id365350903?i=365353042&uo=4\", + \"previewUrl\":\"http://a2.mzstatic.com/us/r1000/049/Music/fe/03/99/mzi.dekqfrkm.aac.p.m4a\", + \"artworkUrl30\":\"http://a1.mzstatic.com/us/r1000/043/Music/a2/bf/7f/mzi.ulkgzsyt.30x30-50.jpg\", + \"artworkUrl60\":\"http://a5.mzstatic.com/us/r1000/043/Music/a2/bf/7f/mzi.ulkgzsyt.60x60-50.jpg\", + \"artworkUrl100\":\"http://a2.mzstatic.com/us/r1000/043/Music/a2/bf/7f/mzi.ulkgzsyt.100x100-75.jpg\", + \"collectionPrice\":9.99, \"trackPrice\":0.99, \"releaseDate\":\"2010-04-12T07:00:00Z\", + \"collectionExplicitness\":\"notExplicit\", \"trackExplicitness\":\"notExplicit\", + \"discCount\":1, \"discNumber\":1, \"trackCount\":20, \"trackNumber\":8, \"trackTimeMillis\":259172, + \"country\":\"USA\", \"currency\":\"USD\", \"primaryGenreName\":\"Jazz\"}, \n{\"wrapperType\":\"track\", + \"kind\":\"song\", \"artistId\":5117774, \"collectionId\":365350903, \"trackId\":365353833, + \"artistName\":\"José James\", \"collectionName\":\"Blackmagic (Deluxe Version)\", + \"trackName\":\"Evidence of Existence\", \"collectionCensoredName\":\"Blackmagic + (Deluxe Version)\", \"trackCensoredName\":\"Evidence of Existence\", \"artistViewUrl\":\"http://itunes.apple.com/us/artist/jose-james/id5117774?uo=4\", + \"collectionViewUrl\":\"http://itunes.apple.com/us/album/evidence-of-existence/id365350903?i=365353833&uo=4\", + \"trackViewUrl\":\"http://itunes.apple.com/us/album/evidence-of-existence/id365350903?i=365353833&uo=4\", + \"previewUrl\":\"http://a1.mzstatic.com/us/r1000/046/Music/23/0f/16/mzi.enywxruq.aac.p.m4a\", + \"artworkUrl30\":\"http://a1.mzstatic.com/us/r1000/043/Music/a2/bf/7f/mzi.ulkgzsyt.30x30-50.jpg\", + \"artworkUrl60\":\"http://a5.mzstatic.com/us/r1000/043/Music/a2/bf/7f/mzi.ulkgzsyt.60x60-50.jpg\", + \"artworkUrl100\":\"http://a2.mzstatic.com/us/r1000/043/Music/a2/bf/7f/mzi.ulkgzsyt.100x100-75.jpg\", + \"collectionPrice\":9.99, \"trackPrice\":0.99, \"releaseDate\":\"2010-04-12T07:00:00Z\", + \"collectionExplicitness\":\"notExplicit\", \"trackExplicitness\":\"notExplicit\", + \"discCount\":1, \"discNumber\":1, \"trackCount\":20, \"trackNumber\":15, \"trackTimeMillis\":326327, + \"country\":\"USA\", \"currency\":\"USD\", \"primaryGenreName\":\"Jazz\"}, \n{\"wrapperType\":\"track\", + \"kind\":\"song\", \"artistId\":5117774, \"collectionId\":287805088, \"trackId\":287805689, + \"artistName\":\"José James\", \"collectionName\":\"The Dreamer\", \"trackName\":\"Love\", + \"collectionCensoredName\":\"The Dreamer\", \"trackCensoredName\":\"Love\", + \"artistViewUrl\":\"http://itunes.apple.com/us/artist/jose-james/id5117774?uo=4\", + \"collectionViewUrl\":\"http://itunes.apple.com/us/album/love/id287805088?i=287805689&uo=4\", + \"trackViewUrl\":\"http://itunes.apple.com/us/album/love/id287805088?i=287805689&uo=4\", + \"previewUrl\":\"http://a4.mzstatic.com/us/r1000/048/Music/d8/53/2e/mzm.bhfufryc.aac.p.m4a\", + \"artworkUrl30\":\"http://a5.mzstatic.com/us/r1000/001/Music/8f/6d/26/mzi.elifbnfk.30x30-50.jpg\", + \"artworkUrl60\":\"http://a2.mzstatic.com/us/r1000/001/Music/8f/6d/26/mzi.elifbnfk.60x60-50.jpg\", + \"artworkUrl100\":\"http://a4.mzstatic.com/us/r1000/001/Music/8f/6d/26/mzi.elifbnfk.100x100-75.jpg\", + \"collectionPrice\":9.90, \"trackPrice\":0.99, \"releaseDate\":\"2008-03-26T07:00:00Z\", + \"collectionExplicitness\":\"notExplicit\", \"trackExplicitness\":\"notExplicit\", + \"discCount\":1, \"discNumber\":1, \"trackCount\":10, \"trackNumber\":10, \"trackTimeMillis\":324013, + \"country\":\"USA\", \"currency\":\"USD\", \"primaryGenreName\":\"Jazz\"}, \n{\"wrapperType\":\"track\", + \"kind\":\"song\", \"artistId\":5117774, \"collectionId\":365350903, \"trackId\":365353269, + \"artistName\":\"José James\", \"collectionName\":\"Blackmagic (Deluxe Version)\", + \"trackName\":\"Detroit Loveletter\", \"collectionCensoredName\":\"Blackmagic + (Deluxe Version)\", \"trackCensoredName\":\"Detroit Loveletter\", \"artistViewUrl\":\"http://itunes.apple.com/us/artist/jose-james/id5117774?uo=4\", + \"collectionViewUrl\":\"http://itunes.apple.com/us/album/detroit-loveletter/id365350903?i=365353269&uo=4\", + \"trackViewUrl\":\"http://itunes.apple.com/us/album/detroit-loveletter/id365350903?i=365353269&uo=4\", + \"previewUrl\":\"http://a3.mzstatic.com/us/r1000/010/Music/4d/8c/d4/mzi.arqaexng.aac.p.m4a\", + \"artworkUrl30\":\"http://a1.mzstatic.com/us/r1000/043/Music/a2/bf/7f/mzi.ulkgzsyt.30x30-50.jpg\", + \"artworkUrl60\":\"http://a5.mzstatic.com/us/r1000/043/Music/a2/bf/7f/mzi.ulkgzsyt.60x60-50.jpg\", + \"artworkUrl100\":\"http://a2.mzstatic.com/us/r1000/043/Music/a2/bf/7f/mzi.ulkgzsyt.100x100-75.jpg\", + \"collectionPrice\":9.99, \"trackPrice\":0.99, \"releaseDate\":\"2010-04-12T07:00:00Z\", + \"collectionExplicitness\":\"notExplicit\", \"trackExplicitness\":\"notExplicit\", + \"discCount\":1, \"discNumber\":1, \"trackCount\":20, \"trackNumber\":10, \"trackTimeMillis\":241540, + \"country\":\"USA\", \"currency\":\"USD\", \"primaryGenreName\":\"Jazz\"}, \n{\"wrapperType\":\"track\", + \"kind\":\"song\", \"artistId\":5117774, \"collectionId\":287805088, \"trackId\":287805552, + \"artistName\":\"José James\", \"collectionName\":\"The Dreamer\", \"trackName\":\"Red\", + \"collectionCensoredName\":\"The Dreamer\", \"trackCensoredName\":\"Red\", \"artistViewUrl\":\"http://itunes.apple.com/us/artist/jose-james/id5117774?uo=4\", + \"collectionViewUrl\":\"http://itunes.apple.com/us/album/red/id287805088?i=287805552&uo=4\", + \"trackViewUrl\":\"http://itunes.apple.com/us/album/red/id287805088?i=287805552&uo=4\", + \"previewUrl\":\"http://a1.mzstatic.com/us/r1000/011/Music/4f/f8/13/mzm.wkwlppfi.aac.p.m4a\", + \"artworkUrl30\":\"http://a5.mzstatic.com/us/r1000/001/Music/8f/6d/26/mzi.elifbnfk.30x30-50.jpg\", + \"artworkUrl60\":\"http://a2.mzstatic.com/us/r1000/001/Music/8f/6d/26/mzi.elifbnfk.60x60-50.jpg\", + \"artworkUrl100\":\"http://a4.mzstatic.com/us/r1000/001/Music/8f/6d/26/mzi.elifbnfk.100x100-75.jpg\", + \"collectionPrice\":9.90, \"trackPrice\":0.99, \"releaseDate\":\"2008-03-26T07:00:00Z\", + \"collectionExplicitness\":\"notExplicit\", \"trackExplicitness\":\"notExplicit\", + \"discCount\":1, \"discNumber\":1, \"trackCount\":10, \"trackNumber\":7, \"trackTimeMillis\":315907, + \"country\":\"USA\", \"currency\":\"USD\", \"primaryGenreName\":\"Jazz\"}, \n{\"wrapperType\":\"track\", + \"kind\":\"song\", \"artistId\":5117774, \"collectionId\":365350903, \"trackId\":365353493, + \"artistName\":\"José James\", \"collectionName\":\"Blackmagic (Deluxe Version)\", + \"trackName\":\"Beauty\", \"collectionCensoredName\":\"Blackmagic (Deluxe Version)\", + \"trackCensoredName\":\"Beauty\", \"artistViewUrl\":\"http://itunes.apple.com/us/artist/jose-james/id5117774?uo=4\", + \"collectionViewUrl\":\"http://itunes.apple.com/us/album/beauty/id365350903?i=365353493&uo=4\", + \"trackViewUrl\":\"http://itunes.apple.com/us/album/beauty/id365350903?i=365353493&uo=4\", + \"previewUrl\":\"http://a3.mzstatic.com/us/r1000/002/Music/32/ff/6f/mzi.xleezrzq.aac.p.m4a\", + \"artworkUrl30\":\"http://a1.mzstatic.com/us/r1000/043/Music/a2/bf/7f/mzi.ulkgzsyt.30x30-50.jpg\", + \"artworkUrl60\":\"http://a5.mzstatic.com/us/r1000/043/Music/a2/bf/7f/mzi.ulkgzsyt.60x60-50.jpg\", + \"artworkUrl100\":\"http://a2.mzstatic.com/us/r1000/043/Music/a2/bf/7f/mzi.ulkgzsyt.100x100-75.jpg\", + \"collectionPrice\":9.99, \"trackPrice\":0.99, \"releaseDate\":\"2010-04-12T07:00:00Z\", + \"collectionExplicitness\":\"notExplicit\", \"trackExplicitness\":\"notExplicit\", + \"discCount\":1, \"discNumber\":1, \"trackCount\":20, \"trackNumber\":12, \"trackTimeMillis\":250021, + \"country\":\"USA\", \"currency\":\"USD\", \"primaryGenreName\":\"Jazz\"}, \n{\"wrapperType\":\"track\", + \"kind\":\"song\", \"artistId\":5117774, \"collectionId\":287805088, \"trackId\":287805606, + \"artistName\":\"José James\", \"collectionName\":\"The Dreamer\", \"trackName\":\"Winter + Wind\", \"collectionCensoredName\":\"The Dreamer\", \"trackCensoredName\":\"Winter + Wind\", \"artistViewUrl\":\"http://itunes.apple.com/us/artist/jose-james/id5117774?uo=4\", + \"collectionViewUrl\":\"http://itunes.apple.com/us/album/winter-wind/id287805088?i=287805606&uo=4\", + \"trackViewUrl\":\"http://itunes.apple.com/us/album/winter-wind/id287805088?i=287805606&uo=4\", + \"previewUrl\":\"http://a5.mzstatic.com/us/r1000/034/Music/dd/3d/26/mzm.lzxzqjaz.aac.p.m4a\", + \"artworkUrl30\":\"http://a5.mzstatic.com/us/r1000/001/Music/8f/6d/26/mzi.elifbnfk.30x30-50.jpg\", + \"artworkUrl60\":\"http://a2.mzstatic.com/us/r1000/001/Music/8f/6d/26/mzi.elifbnfk.60x60-50.jpg\", + \"artworkUrl100\":\"http://a4.mzstatic.com/us/r1000/001/Music/8f/6d/26/mzi.elifbnfk.100x100-75.jpg\", + \"collectionPrice\":9.90, \"trackPrice\":0.99, \"releaseDate\":\"2008-03-26T07:00:00Z\", + \"collectionExplicitness\":\"notExplicit\", \"trackExplicitness\":\"notExplicit\", + \"discCount\":1, \"discNumber\":1, \"trackCount\":10, \"trackNumber\":8, \"trackTimeMillis\":427333, + \"country\":\"USA\", \"currency\":\"USD\", \"primaryGenreName\":\"Jazz\"}, \n{\"wrapperType\":\"track\", + \"kind\":\"song\", \"artistId\":5117774, \"collectionId\":287805088, \"trackId\":287805493, + \"artistName\":\"José James\", \"collectionName\":\"The Dreamer\", \"trackName\":\"Spirits + Up Above\", \"collectionCensoredName\":\"The Dreamer\", \"trackCensoredName\":\"Spirits + Up Above\", \"artistViewUrl\":\"http://itunes.apple.com/us/artist/jose-james/id5117774?uo=4\", + \"collectionViewUrl\":\"http://itunes.apple.com/us/album/spirits-up-above/id287805088?i=287805493&uo=4\", + \"trackViewUrl\":\"http://itunes.apple.com/us/album/spirits-up-above/id287805088?i=287805493&uo=4\", + \"previewUrl\":\"http://a5.mzstatic.com/us/r1000/009/Music/33/df/63/mzm.qqrxsszt.aac.p.m4a\", + \"artworkUrl30\":\"http://a5.mzstatic.com/us/r1000/001/Music/8f/6d/26/mzi.elifbnfk.30x30-50.jpg\", + \"artworkUrl60\":\"http://a2.mzstatic.com/us/r1000/001/Music/8f/6d/26/mzi.elifbnfk.60x60-50.jpg\", + \"artworkUrl100\":\"http://a4.mzstatic.com/us/r1000/001/Music/8f/6d/26/mzi.elifbnfk.100x100-75.jpg\", + \"collectionPrice\":9.90, \"trackPrice\":0.99, \"releaseDate\":\"2008-03-26T07:00:00Z\", + \"collectionExplicitness\":\"notExplicit\", \"trackExplicitness\":\"notExplicit\", + \"discCount\":1, \"discNumber\":1, \"trackCount\":10, \"trackNumber\":5, \"trackTimeMillis\":300693, + \"country\":\"USA\", \"currency\":\"USD\", \"primaryGenreName\":\"Jazz\"}, \n{\"wrapperType\":\"track\", + \"kind\":\"song\", \"artistId\":5117774, \"collectionId\":287805088, \"trackId\":287805233, + \"artistName\":\"José James\", \"collectionName\":\"The Dreamer\", \"trackName\":\"Velvet\", + \"collectionCensoredName\":\"The Dreamer\", \"trackCensoredName\":\"Velvet\", + \"artistViewUrl\":\"http://itunes.apple.com/us/artist/jose-james/id5117774?uo=4\", + \"collectionViewUrl\":\"http://itunes.apple.com/us/album/velvet/id287805088?i=287805233&uo=4\", + \"trackViewUrl\":\"http://itunes.apple.com/us/album/velvet/id287805088?i=287805233&uo=4\", + \"previewUrl\":\"http://a3.mzstatic.com/us/r1000/042/Music/c8/53/2d/mzm.whwgbwlm.aac.p.m4a\", + \"artworkUrl30\":\"http://a5.mzstatic.com/us/r1000/001/Music/8f/6d/26/mzi.elifbnfk.30x30-50.jpg\", + \"artworkUrl60\":\"http://a2.mzstatic.com/us/r1000/001/Music/8f/6d/26/mzi.elifbnfk.60x60-50.jpg\", + \"artworkUrl100\":\"http://a4.mzstatic.com/us/r1000/001/Music/8f/6d/26/mzi.elifbnfk.100x100-75.jpg\", + \"collectionPrice\":9.90, \"trackPrice\":0.99, \"releaseDate\":\"2008-03-26T07:00:00Z\", + \"collectionExplicitness\":\"notExplicit\", \"trackExplicitness\":\"notExplicit\", + \"discCount\":1, \"discNumber\":1, \"trackCount\":10, \"trackNumber\":2, \"trackTimeMillis\":241467, + \"country\":\"USA\", \"currency\":\"USD\", \"primaryGenreName\":\"Jazz\"}, \n{\"wrapperType\":\"track\", + \"kind\":\"song\", \"artistId\":5117774, \"collectionId\":365350903, \"trackId\":365353801, + \"artistName\":\"José James\", \"collectionName\":\"Blackmagic (Deluxe Version)\", + \"trackName\":\"The Light\", \"collectionCensoredName\":\"Blackmagic (Deluxe + Version)\", \"trackCensoredName\":\"The Light\", \"artistViewUrl\":\"http://itunes.apple.com/us/artist/jose-james/id5117774?uo=4\", + \"collectionViewUrl\":\"http://itunes.apple.com/us/album/the-light/id365350903?i=365353801&uo=4\", + \"trackViewUrl\":\"http://itunes.apple.com/us/album/the-light/id365350903?i=365353801&uo=4\", + \"previewUrl\":\"http://a3.mzstatic.com/us/r1000/044/Music/bc/8f/37/mzi.istzgbtp.aac.p.m4a\", + \"artworkUrl30\":\"http://a1.mzstatic.com/us/r1000/043/Music/a2/bf/7f/mzi.ulkgzsyt.30x30-50.jpg\", + \"artworkUrl60\":\"http://a5.mzstatic.com/us/r1000/043/Music/a2/bf/7f/mzi.ulkgzsyt.60x60-50.jpg\", + \"artworkUrl100\":\"http://a2.mzstatic.com/us/r1000/043/Music/a2/bf/7f/mzi.ulkgzsyt.100x100-75.jpg\", + \"collectionPrice\":9.99, \"trackPrice\":-1.00, \"releaseDate\":\"2010-04-12T07:00:00Z\", + \"collectionExplicitness\":\"notExplicit\", \"trackExplicitness\":\"notExplicit\", + \"discCount\":1, \"discNumber\":1, \"trackCount\":20, \"trackNumber\":14, \"trackTimeMillis\":631591, + \"country\":\"USA\", \"currency\":\"USD\", \"primaryGenreName\":\"Jazz\"}, \n{\"wrapperType\":\"track\", + \"kind\":\"song\", \"artistId\":5117774, \"collectionId\":287805088, \"trackId\":287805505, + \"artistName\":\"José James\", \"collectionName\":\"The Dreamer\", \"trackName\":\"Nola\", + \"collectionCensoredName\":\"The Dreamer\", \"trackCensoredName\":\"Nola\", + \"artistViewUrl\":\"http://itunes.apple.com/us/artist/jose-james/id5117774?uo=4\", + \"collectionViewUrl\":\"http://itunes.apple.com/us/album/nola/id287805088?i=287805505&uo=4\", + \"trackViewUrl\":\"http://itunes.apple.com/us/album/nola/id287805088?i=287805505&uo=4\", + \"previewUrl\":\"http://a1.mzstatic.com/us/r1000/039/Music/3a/a1/53/mzm.jqbyidpn.aac.p.m4a\", + \"artworkUrl30\":\"http://a5.mzstatic.com/us/r1000/001/Music/8f/6d/26/mzi.elifbnfk.30x30-50.jpg\", + \"artworkUrl60\":\"http://a2.mzstatic.com/us/r1000/001/Music/8f/6d/26/mzi.elifbnfk.60x60-50.jpg\", + \"artworkUrl100\":\"http://a4.mzstatic.com/us/r1000/001/Music/8f/6d/26/mzi.elifbnfk.100x100-75.jpg\", + \"collectionPrice\":9.90, \"trackPrice\":0.99, \"releaseDate\":\"2008-03-26T07:00:00Z\", + \"collectionExplicitness\":\"notExplicit\", \"trackExplicitness\":\"notExplicit\", + \"discCount\":1, \"discNumber\":1, \"trackCount\":10, \"trackNumber\":6, \"trackTimeMillis\":236173, + \"country\":\"USA\", \"currency\":\"USD\", \"primaryGenreName\":\"Jazz\"}, \n{\"wrapperType\":\"track\", + \"kind\":\"song\", \"artistId\":5117774, \"collectionId\":370608373, \"trackId\":370611252, + \"artistName\":\"José James & Jef Neve\", \"collectionName\":\"For All We Know + (Bonus Track Version)\", \"trackName\":\"When I Fall In Love\", \"collectionCensoredName\":\"For + All We Know (Bonus Track Version)\", \"trackCensoredName\":\"When I Fall In + Love\", \"artistViewUrl\":\"http://itunes.apple.com/us/artist/jose-james/id5117774?uo=4\", + \"collectionViewUrl\":\"http://itunes.apple.com/us/album/when-i-fall-in-love/id370608373?i=370611252&uo=4\", + \"trackViewUrl\":\"http://itunes.apple.com/us/album/when-i-fall-in-love/id370608373?i=370611252&uo=4\", + \"previewUrl\":\"http://a4.mzstatic.com/us/r1000/050/Music/5d/58/5f/mzi.olitylaw.aac.p.m4a\", + \"artworkUrl30\":\"http://a4.mzstatic.com/us/r1000/018/Music/0e/66/cb/mzi.lfccwird.30x30-50.jpg\", + \"artworkUrl60\":\"http://a3.mzstatic.com/us/r1000/018/Music/0e/66/cb/mzi.lfccwird.60x60-50.jpg\", + \"artworkUrl100\":\"http://a4.mzstatic.com/us/r1000/018/Music/0e/66/cb/mzi.lfccwird.100x100-75.jpg\", + \"collectionPrice\":9.99, \"trackPrice\":0.99, \"releaseDate\":\"2010-05-11T07:00:00Z\", + \"collectionExplicitness\":\"notExplicit\", \"trackExplicitness\":\"notExplicit\", + \"discCount\":1, \"discNumber\":1, \"trackCount\":10, \"trackNumber\":5, \"trackTimeMillis\":314054, + \"country\":\"USA\", \"currency\":\"USD\", \"primaryGenreName\":\"Jazz\"}, \n{\"wrapperType\":\"track\", + \"kind\":\"song\", \"artistId\":5117774, \"collectionId\":370608373, \"trackId\":370611848, + \"artistName\":\"José James & Jef Neve\", \"collectionName\":\"For All We Know + (Bonus Track Version)\", \"trackName\":\"For All We Know\", \"collectionCensoredName\":\"For + All We Know (Bonus Track Version)\", \"trackCensoredName\":\"For All We Know\", + \"artistViewUrl\":\"http://itunes.apple.com/us/artist/jose-james/id5117774?uo=4\", + \"collectionViewUrl\":\"http://itunes.apple.com/us/album/for-all-we-know/id370608373?i=370611848&uo=4\", + \"trackViewUrl\":\"http://itunes.apple.com/us/album/for-all-we-know/id370608373?i=370611848&uo=4\", + \"previewUrl\":\"http://a1.mzstatic.com/us/r1000/037/Music/54/e4/af/mzi.nrzlwozg.aac.p.m4a\", + \"artworkUrl30\":\"http://a4.mzstatic.com/us/r1000/018/Music/0e/66/cb/mzi.lfccwird.30x30-50.jpg\", + \"artworkUrl60\":\"http://a3.mzstatic.com/us/r1000/018/Music/0e/66/cb/mzi.lfccwird.60x60-50.jpg\", + \"artworkUrl100\":\"http://a4.mzstatic.com/us/r1000/018/Music/0e/66/cb/mzi.lfccwird.100x100-75.jpg\", + \"collectionPrice\":9.99, \"trackPrice\":0.99, \"releaseDate\":\"2010-05-11T07:00:00Z\", + \"collectionExplicitness\":\"notExplicit\", \"trackExplicitness\":\"notExplicit\", + \"discCount\":1, \"discNumber\":1, \"trackCount\":10, \"trackNumber\":9, \"trackTimeMillis\":312727, + \"country\":\"USA\", \"currency\":\"USD\", \"primaryGenreName\":\"Jazz\"}, \n{\"wrapperType\":\"track\", + \"kind\":\"song\", \"artistId\":5117774, \"collectionId\":370608373, \"trackId\":370608586, + \"artistName\":\"José James & Jef Neve\", \"collectionName\":\"For All We Know + (Bonus Track Version)\", \"trackName\":\"Autumn In New York\", \"collectionCensoredName\":\"For + All We Know (Bonus Track Version)\", \"trackCensoredName\":\"Autumn In New York\", + \"artistViewUrl\":\"http://itunes.apple.com/us/artist/jose-james/id5117774?uo=4\", + \"collectionViewUrl\":\"http://itunes.apple.com/us/album/autumn-in-new-york/id370608373?i=370608586&uo=4\", + \"trackViewUrl\":\"http://itunes.apple.com/us/album/autumn-in-new-york/id370608373?i=370608586&uo=4\", + \"previewUrl\":\"http://a2.mzstatic.com/us/r1000/024/Music/44/ec/f2/mzi.rmytqwwt.aac.p.m4a\", + \"artworkUrl30\":\"http://a4.mzstatic.com/us/r1000/018/Music/0e/66/cb/mzi.lfccwird.30x30-50.jpg\", + \"artworkUrl60\":\"http://a3.mzstatic.com/us/r1000/018/Music/0e/66/cb/mzi.lfccwird.60x60-50.jpg\", + \"artworkUrl100\":\"http://a4.mzstatic.com/us/r1000/018/Music/0e/66/cb/mzi.lfccwird.100x100-75.jpg\", + \"collectionPrice\":9.99, \"trackPrice\":0.99, \"releaseDate\":\"2010-05-11T07:00:00Z\", + \"collectionExplicitness\":\"notExplicit\", \"trackExplicitness\":\"notExplicit\", + \"discCount\":1, \"discNumber\":1, \"trackCount\":10, \"trackNumber\":1, \"trackTimeMillis\":200071, + \"country\":\"USA\", \"currency\":\"USD\", \"primaryGenreName\":\"Jazz\"}, \n{\"wrapperType\":\"track\", + \"kind\":\"song\", \"artistId\":5117774, \"collectionId\":370608373, \"trackId\":370608986, + \"artistName\":\"José James & Jef Neve\", \"collectionName\":\"For All We Know + (Bonus Track Version)\", \"trackName\":\"Embraceable You\", \"collectionCensoredName\":\"For + All We Know (Bonus Track Version)\", \"trackCensoredName\":\"Embraceable You\", + \"artistViewUrl\":\"http://itunes.apple.com/us/artist/jose-james/id5117774?uo=4\", + \"collectionViewUrl\":\"http://itunes.apple.com/us/album/embraceable-you/id370608373?i=370608986&uo=4\", + \"trackViewUrl\":\"http://itunes.apple.com/us/album/embraceable-you/id370608373?i=370608986&uo=4\", + \"previewUrl\":\"http://a1.mzstatic.com/us/r1000/006/Music/79/38/b1/mzi.bkhfjjst.aac.p.m4a\", + \"artworkUrl30\":\"http://a4.mzstatic.com/us/r1000/018/Music/0e/66/cb/mzi.lfccwird.30x30-50.jpg\", + \"artworkUrl60\":\"http://a3.mzstatic.com/us/r1000/018/Music/0e/66/cb/mzi.lfccwird.60x60-50.jpg\", + \"artworkUrl100\":\"http://a4.mzstatic.com/us/r1000/018/Music/0e/66/cb/mzi.lfccwird.100x100-75.jpg\", + \"collectionPrice\":9.99, \"trackPrice\":0.99, \"releaseDate\":\"2010-05-11T07:00:00Z\", + \"collectionExplicitness\":\"notExplicit\", \"trackExplicitness\":\"notExplicit\", + \"discCount\":1, \"discNumber\":1, \"trackCount\":10, \"trackNumber\":2, \"trackTimeMillis\":375153, + \"country\":\"USA\", \"currency\":\"USD\", \"primaryGenreName\":\"Jazz\"}, \n{\"wrapperType\":\"track\", + \"kind\":\"song\", \"artistId\":5117774, \"collectionId\":370608373, \"trackId\":370609436, + \"artistName\":\"José James & Jef Neve\", \"collectionName\":\"For All We Know + (Bonus Track Version)\", \"trackName\":\"Gee Baby, Ain't I Good to You\", \"collectionCensoredName\":\"For + All We Know (Bonus Track Version)\", \"trackCensoredName\":\"Gee Baby, Ain't + I Good to You\", \"artistViewUrl\":\"http://itunes.apple.com/us/artist/jose-james/id5117774?uo=4\", + \"collectionViewUrl\":\"http://itunes.apple.com/us/album/gee-baby-aint-i-good-to-you/id370608373?i=370609436&uo=4\", + \"trackViewUrl\":\"http://itunes.apple.com/us/album/gee-baby-aint-i-good-to-you/id370608373?i=370609436&uo=4\", + \"previewUrl\":\"http://a1.mzstatic.com/us/r1000/003/Music/b5/c3/a9/mzi.xumxkdmi.aac.p.m4a\", + \"artworkUrl30\":\"http://a4.mzstatic.com/us/r1000/018/Music/0e/66/cb/mzi.lfccwird.30x30-50.jpg\", + \"artworkUrl60\":\"http://a3.mzstatic.com/us/r1000/018/Music/0e/66/cb/mzi.lfccwird.60x60-50.jpg\", + \"artworkUrl100\":\"http://a4.mzstatic.com/us/r1000/018/Music/0e/66/cb/mzi.lfccwird.100x100-75.jpg\", + \"collectionPrice\":9.99, \"trackPrice\":0.99, \"releaseDate\":\"2010-05-11T07:00:00Z\", + \"collectionExplicitness\":\"notExplicit\", \"trackExplicitness\":\"notExplicit\", + \"discCount\":1, \"discNumber\":1, \"trackCount\":10, \"trackNumber\":3, \"trackTimeMillis\":319293, + \"country\":\"USA\", \"currency\":\"USD\", \"primaryGenreName\":\"Jazz\"}, \n{\"wrapperType\":\"track\", + \"kind\":\"song\", \"artistId\":5117774, \"collectionId\":370608373, \"trackId\":370610685, + \"artistName\":\"José James & Jef Neve\", \"collectionName\":\"For All We Know + (Bonus Track Version)\", \"trackName\":\"Body and Soul\", \"collectionCensoredName\":\"For + All We Know (Bonus Track Version)\", \"trackCensoredName\":\"Body and Soul\", + \"artistViewUrl\":\"http://itunes.apple.com/us/artist/jose-james/id5117774?uo=4\", + \"collectionViewUrl\":\"http://itunes.apple.com/us/album/body-and-soul/id370608373?i=370610685&uo=4\", + \"trackViewUrl\":\"http://itunes.apple.com/us/album/body-and-soul/id370608373?i=370610685&uo=4\", + \"previewUrl\":\"http://a3.mzstatic.com/us/r1000/033/Music/67/18/a1/mzi.hdcilbqn.aac.p.m4a\", + \"artworkUrl30\":\"http://a4.mzstatic.com/us/r1000/018/Music/0e/66/cb/mzi.lfccwird.30x30-50.jpg\", + \"artworkUrl60\":\"http://a3.mzstatic.com/us/r1000/018/Music/0e/66/cb/mzi.lfccwird.60x60-50.jpg\", + \"artworkUrl100\":\"http://a4.mzstatic.com/us/r1000/018/Music/0e/66/cb/mzi.lfccwird.100x100-75.jpg\", + \"collectionPrice\":9.99, \"trackPrice\":0.99, \"releaseDate\":\"2010-05-11T07:00:00Z\", + \"collectionExplicitness\":\"notExplicit\", \"trackExplicitness\":\"notExplicit\", + \"discCount\":1, \"discNumber\":1, \"trackCount\":10, \"trackNumber\":4, \"trackTimeMillis\":386380, + \"country\":\"USA\", \"currency\":\"USD\", \"primaryGenreName\":\"Jazz\"}, \n{\"wrapperType\":\"track\", + \"kind\":\"song\", \"artistId\":5117774, \"collectionId\":370608373, \"trackId\":370611570, + \"artistName\":\"José James & Jef Neve\", \"collectionName\":\"For All We Know + (Bonus Track Version)\", \"trackName\":\"Just Squeeze Me\", \"collectionCensoredName\":\"For + All We Know (Bonus Track Version)\", \"trackCensoredName\":\"Just Squeeze Me\", + \"artistViewUrl\":\"http://itunes.apple.com/us/artist/jose-james/id5117774?uo=4\", + \"collectionViewUrl\":\"http://itunes.apple.com/us/album/just-squeeze-me/id370608373?i=370611570&uo=4\", + \"trackViewUrl\":\"http://itunes.apple.com/us/album/just-squeeze-me/id370608373?i=370611570&uo=4\", + \"previewUrl\":\"http://a4.mzstatic.com/us/r1000/054/Music/9a/4f/8d/mzi.qxbtzmav.aac.p.m4a\", + \"artworkUrl30\":\"http://a4.mzstatic.com/us/r1000/018/Music/0e/66/cb/mzi.lfccwird.30x30-50.jpg\", + \"artworkUrl60\":\"http://a3.mzstatic.com/us/r1000/018/Music/0e/66/cb/mzi.lfccwird.60x60-50.jpg\", + \"artworkUrl100\":\"http://a4.mzstatic.com/us/r1000/018/Music/0e/66/cb/mzi.lfccwird.100x100-75.jpg\", + \"collectionPrice\":9.99, \"trackPrice\":0.99, \"releaseDate\":\"2010-05-11T07:00:00Z\", + \"collectionExplicitness\":\"notExplicit\", \"trackExplicitness\":\"notExplicit\", + \"discCount\":1, \"discNumber\":1, \"trackCount\":10, \"trackNumber\":7, \"trackTimeMillis\":255247, + \"country\":\"USA\", \"currency\":\"USD\", \"primaryGenreName\":\"Jazz\"}, \n{\"wrapperType\":\"track\", + \"kind\":\"song\", \"artistId\":5117774, \"collectionId\":370608373, \"trackId\":370611631, + \"artistName\":\"José James & Jef Neve\", \"collectionName\":\"For All We Know + (Bonus Track Version)\", \"trackName\":\"Lush Life\", \"collectionCensoredName\":\"For + All We Know (Bonus Track Version)\", \"trackCensoredName\":\"Lush Life\", \"artistViewUrl\":\"http://itunes.apple.com/us/artist/jose-james/id5117774?uo=4\", + \"collectionViewUrl\":\"http://itunes.apple.com/us/album/lush-life/id370608373?i=370611631&uo=4\", + \"trackViewUrl\":\"http://itunes.apple.com/us/album/lush-life/id370608373?i=370611631&uo=4\", + \"previewUrl\":\"http://a2.mzstatic.com/us/r1000/049/Music/52/54/c7/mzi.zhswfzwh.aac.p.m4a\", + \"artworkUrl30\":\"http://a4.mzstatic.com/us/r1000/018/Music/0e/66/cb/mzi.lfccwird.30x30-50.jpg\", + \"artworkUrl60\":\"http://a3.mzstatic.com/us/r1000/018/Music/0e/66/cb/mzi.lfccwird.60x60-50.jpg\", + \"artworkUrl100\":\"http://a4.mzstatic.com/us/r1000/018/Music/0e/66/cb/mzi.lfccwird.100x100-75.jpg\", + \"collectionPrice\":9.99, \"trackPrice\":-1.00, \"releaseDate\":\"2010-05-11T07:00:00Z\", + \"collectionExplicitness\":\"notExplicit\", \"trackExplicitness\":\"notExplicit\", + \"discCount\":1, \"discNumber\":1, \"trackCount\":10, \"trackNumber\":8, \"trackTimeMillis\":448028, + \"country\":\"USA\", \"currency\":\"USD\", \"primaryGenreName\":\"Jazz\"}, \n{\"wrapperType\":\"track\", + \"kind\":\"song\", \"artistId\":5117774, \"collectionId\":370608373, \"trackId\":370611538, + \"artistName\":\"José James & Jef Neve\", \"collectionName\":\"For All We Know + (Bonus Track Version)\", \"trackName\":\"Tenderly\", \"collectionCensoredName\":\"For + All We Know (Bonus Track Version)\", \"trackCensoredName\":\"Tenderly\", \"artistViewUrl\":\"http://itunes.apple.com/us/artist/jose-james/id5117774?uo=4\", + \"collectionViewUrl\":\"http://itunes.apple.com/us/album/tenderly/id370608373?i=370611538&uo=4\", + \"trackViewUrl\":\"http://itunes.apple.com/us/album/tenderly/id370608373?i=370611538&uo=4\", + \"previewUrl\":\"http://a1.mzstatic.com/us/r1000/027/Music/78/89/68/mzi.wxudstde.aac.p.m4a\", + \"artworkUrl30\":\"http://a4.mzstatic.com/us/r1000/018/Music/0e/66/cb/mzi.lfccwird.30x30-50.jpg\", + \"artworkUrl60\":\"http://a3.mzstatic.com/us/r1000/018/Music/0e/66/cb/mzi.lfccwird.60x60-50.jpg\", + \"artworkUrl100\":\"http://a4.mzstatic.com/us/r1000/018/Music/0e/66/cb/mzi.lfccwird.100x100-75.jpg\", + \"collectionPrice\":9.99, \"trackPrice\":-1.00, \"releaseDate\":\"2010-05-11T07:00:00Z\", + \"collectionExplicitness\":\"notExplicit\", \"trackExplicitness\":\"notExplicit\", + \"discCount\":1, \"discNumber\":1, \"trackCount\":10, \"trackNumber\":6, \"trackTimeMillis\":445817, + \"country\":\"USA\", \"currency\":\"USD\", \"primaryGenreName\":\"Jazz\"}, \n{\"wrapperType\":\"track\", + \"kind\":\"song\", \"artistId\":5117774, \"collectionId\":370608373, \"trackId\":370611857, + \"artistName\":\"José James & Jef Neve\", \"collectionName\":\"For All We Know + (Bonus Track Version)\", \"trackName\":\"Georgia On My Mind\", \"collectionCensoredName\":\"For + All We Know (Bonus Track Version)\", \"trackCensoredName\":\"Georgia On My Mind\", + \"artistViewUrl\":\"http://itunes.apple.com/us/artist/jose-james/id5117774?uo=4\", + \"collectionViewUrl\":\"http://itunes.apple.com/us/album/georgia-on-my-mind/id370608373?i=370611857&uo=4\", + \"trackViewUrl\":\"http://itunes.apple.com/us/album/georgia-on-my-mind/id370608373?i=370611857&uo=4\", + \"previewUrl\":\"http://a5.mzstatic.com/us/r1000/050/Music/c8/e3/6b/mzi.dbxncbgm.aac.p.m4a\", + \"artworkUrl30\":\"http://a4.mzstatic.com/us/r1000/018/Music/0e/66/cb/mzi.lfccwird.30x30-50.jpg\", + \"artworkUrl60\":\"http://a3.mzstatic.com/us/r1000/018/Music/0e/66/cb/mzi.lfccwird.60x60-50.jpg\", + \"artworkUrl100\":\"http://a4.mzstatic.com/us/r1000/018/Music/0e/66/cb/mzi.lfccwird.100x100-75.jpg\", + \"collectionPrice\":9.99, \"trackPrice\":-1.00, \"releaseDate\":\"2010-05-11T07:00:00Z\", + \"collectionExplicitness\":\"notExplicit\", \"trackExplicitness\":\"notExplicit\", + \"discCount\":1, \"discNumber\":1, \"trackCount\":10, \"trackNumber\":10, \"trackTimeMillis\":433665, + \"country\":\"USA\", \"currency\":\"USD\", \"primaryGenreName\":\"Jazz\"}, \n{\"wrapperType\":\"track\", + \"kind\":\"song\", \"artistId\":5117774, \"collectionId\":394049927, \"trackId\":394050366, + \"artistName\":\"José James\", \"collectionName\":\"Saint-Germain-des-Prés Café + (The Blue Edition by Mr. Scruff)\", \"trackName\":\"Desire (Moodyman Remix)\", + \"collectionCensoredName\":\"Saint-Germain-des-Prés Café (The Blue Edition by + Mr. Scruff)\", \"trackCensoredName\":\"Desire (Moodyman Remix)\", \"artistViewUrl\":\"http://itunes.apple.com/us/artist/jose-james/id5117774?uo=4\", + \"collectionViewUrl\":\"http://itunes.apple.com/us/album/desire-moodyman-remix/id394049927?i=394050366&uo=4\", + \"trackViewUrl\":\"http://itunes.apple.com/us/album/desire-moodyman-remix/id394049927?i=394050366&uo=4\", + \"previewUrl\":\"http://a2.mzstatic.com/us/r1000/049/Music/28/5f/55/mzi.sewnbcsw.aac.p.m4a\", + \"artworkUrl30\":\"http://a5.mzstatic.com/us/r1000/002/Music/21/0d/28/mzi.ojpdsoax.30x30-50.jpg\", + \"artworkUrl60\":\"http://a4.mzstatic.com/us/r1000/002/Music/21/0d/28/mzi.ojpdsoax.60x60-50.jpg\", + \"artworkUrl100\":\"http://a4.mzstatic.com/us/r1000/002/Music/21/0d/28/mzi.ojpdsoax.100x100-75.jpg\", + \"collectionPrice\":15.99, \"trackPrice\":-1.00, \"releaseDate\":\"2010-10-11T07:00:00Z\", + \"collectionExplicitness\":\"notExplicit\", \"trackExplicitness\":\"notExplicit\", + \"discCount\":2, \"discNumber\":1, \"trackCount\":19, \"trackNumber\":18, \"trackTimeMillis\":306214, + \"country\":\"USA\", \"currency\":\"USD\", \"primaryGenreName\":\"Electronic\"}, + \n{\"wrapperType\":\"track\", \"kind\":\"song\", \"artistId\":5117774, \"collectionId\":288906052, + \"trackId\":288906069, \"artistName\":\"José James\", \"collectionName\":\"Desire + & Love - Single\", \"trackName\":\"Desire\", \"collectionCensoredName\":\"Desire + & Love - Single\", \"trackCensoredName\":\"Desire (Moodymann Remix)\", \"artistViewUrl\":\"http://itunes.apple.com/us/artist/jose-james/id5117774?uo=4\", + \"collectionViewUrl\":\"http://itunes.apple.com/us/album/desire-moodymann-remix/id288906052?i=288906069&uo=4\", + \"trackViewUrl\":\"http://itunes.apple.com/us/album/desire-moodymann-remix/id288906052?i=288906069&uo=4\", + \"previewUrl\":\"http://a3.mzstatic.com/us/r1000/013/Music/28/9b/e7/mzm.djwbtrju.aac.p.m4a\", + \"artworkUrl30\":\"http://a1.mzstatic.com/us/r1000/045/Features/77/b8/9f/dj.qqmyenao.30x30-50.jpg\", + \"artworkUrl60\":\"http://a3.mzstatic.com/us/r1000/045/Features/77/b8/9f/dj.qqmyenao.60x60-50.jpg\", + \"artworkUrl100\":\"http://a4.mzstatic.com/us/r1000/045/Features/77/b8/9f/dj.qqmyenao.100x100-75.jpg\", + \"collectionPrice\":1.98, \"trackPrice\":0.99, \"releaseDate\":\"2008-09-21T07:00:00Z\", + \"collectionExplicitness\":\"notExplicit\", \"trackExplicitness\":\"notExplicit\", + \"discCount\":1, \"discNumber\":1, \"trackCount\":2, \"trackNumber\":1, \"trackTimeMillis\":340507, + \"country\":\"USA\", \"currency\":\"USD\", \"primaryGenreName\":\"Dance\"}, + \n{\"wrapperType\":\"track\", \"kind\":\"song\", \"artistId\":5117774, \"collectionId\":291596901, + \"trackId\":291597047, \"artistName\":\"José James\", \"collectionName\":\"Brownswood + Bubblers Two\", \"trackName\":\"The Dreamer\", \"collectionCensoredName\":\"Brownswood + Bubblers Two\", \"trackCensoredName\":\"The Dreamer\", \"artistViewUrl\":\"http://itunes.apple.com/us/artist/jose-james/id5117774?uo=4\", + \"collectionViewUrl\":\"http://itunes.apple.com/us/album/the-dreamer/id291596901?i=291597047&uo=4\", + \"trackViewUrl\":\"http://itunes.apple.com/us/album/the-dreamer/id291596901?i=291597047&uo=4\", + \"previewUrl\":\"http://a5.mzstatic.com/us/r1000/039/Music/89/60/db/mzm.wpcdjonl.aac.p.m4a\", + \"artworkUrl30\":\"http://a3.mzstatic.com/us/r1000/025/Music/f9/bd/6d/mzi.qagrzrgg.30x30-50.jpg\", + \"artworkUrl60\":\"http://a2.mzstatic.com/us/r1000/025/Music/f9/bd/6d/mzi.qagrzrgg.60x60-50.jpg\", + \"artworkUrl100\":\"http://a2.mzstatic.com/us/r1000/025/Music/f9/bd/6d/mzi.qagrzrgg.100x100-75.jpg\", + \"collectionPrice\":10.99, \"trackPrice\":0.99, \"releaseDate\":\"2007-07-06T07:00:00Z\", + \"collectionExplicitness\":\"notExplicit\", \"trackExplicitness\":\"notExplicit\", + \"discCount\":1, \"discNumber\":1, \"trackCount\":16, \"trackNumber\":16, \"trackTimeMillis\":420453, + \"country\":\"USA\", \"currency\":\"USD\", \"primaryGenreName\":\"Dance\"}, + \n{\"wrapperType\":\"track\", \"kind\":\"song\", \"artistId\":467392350, \"collectionId\":467392541, + \"trackId\":467392545, \"artistName\":\"José James\", \"collectionName\":\"Trouble + - Single\", \"trackName\":\"Trouble\", \"collectionCensoredName\":\"Trouble + - Single\", \"trackCensoredName\":\"Trouble\", \"artistViewUrl\":\"http://itunes.apple.com/us/artist/jose-james/id467392350?uo=4\", + \"collectionViewUrl\":\"http://itunes.apple.com/us/album/trouble/id467392541?i=467392545&uo=4\", + \"trackViewUrl\":\"http://itunes.apple.com/us/album/trouble/id467392541?i=467392545&uo=4\", + \"previewUrl\":\"http://a5.mzstatic.com/us/r30/Music/36/ea/1c/mzi.snbmfqwe.aac.p.m4a\", + \"artworkUrl30\":\"http://a3.mzstatic.com/us/r30/Music/39/88/4d/mzi.yllvcdlb.30x30-50.jpg\", + \"artworkUrl60\":\"http://a5.mzstatic.com/us/r30/Music/39/88/4d/mzi.yllvcdlb.60x60-50.jpg\", + \"artworkUrl100\":\"http://a5.mzstatic.com/us/r30/Music/39/88/4d/mzi.yllvcdlb.100x100-75.jpg\", + \"collectionPrice\":0.99, \"trackPrice\":0.99, \"releaseDate\":\"2011-10-14T07:00:00Z\", + \"collectionExplicitness\":\"notExplicit\", \"trackExplicitness\":\"notExplicit\", + \"discCount\":1, \"discNumber\":1, \"trackCount\":1, \"trackNumber\":1, \"trackTimeMillis\":201700, + \"country\":\"USA\", \"currency\":\"USD\", \"primaryGenreName\":\"R&B/Soul\"}, + \n{\"wrapperType\":\"track\", \"kind\":\"song\", \"artistId\":5117774, \"collectionId\":286264618, + \"trackId\":286264685, \"artistName\":\"José James & Flying Lotus\", \"collectionName\":\"Park + Bench People - EP\", \"trackName\":\"Visions of Violet\", \"collectionCensoredName\":\"Park + Bench People - EP\", \"trackCensoredName\":\"Visions of Violet\", \"artistViewUrl\":\"http://itunes.apple.com/us/artist/jose-james/id5117774?uo=4\", + \"collectionViewUrl\":\"http://itunes.apple.com/us/album/visions-of-violet/id286264618?i=286264685&uo=4\", + \"trackViewUrl\":\"http://itunes.apple.com/us/album/visions-of-violet/id286264618?i=286264685&uo=4\", + \"previewUrl\":\"http://a2.mzstatic.com/us/r1000/047/Music/25/3d/19/mzm.dsstwydd.aac.p.m4a\", + \"artworkUrl30\":\"http://a3.mzstatic.com/us/r1000/058/Features/4e/f9/7f/dj.yzdqoree.30x30-50.jpg\", + \"artworkUrl60\":\"http://a5.mzstatic.com/us/r1000/058/Features/4e/f9/7f/dj.yzdqoree.60x60-50.jpg\", + \"artworkUrl100\":\"http://a3.mzstatic.com/us/r1000/058/Features/4e/f9/7f/dj.yzdqoree.100x100-75.jpg\", + \"collectionPrice\":1.99, \"trackPrice\":0.99, \"releaseDate\":\"2008-08-24T07:00:00Z\", + \"collectionExplicitness\":\"notExplicit\", \"trackExplicitness\":\"notExplicit\", + \"discCount\":1, \"discNumber\":1, \"trackCount\":2, \"trackNumber\":2, \"trackTimeMillis\":139307, + \"country\":\"USA\", \"currency\":\"USD\", \"primaryGenreName\":\"Jazz\"}, \n{\"wrapperType\":\"track\", + \"kind\":\"song\", \"artistId\":5117774, \"collectionId\":282084350, \"trackId\":282084363, + \"artistName\":\"José James\", \"collectionName\":\"Gilles Peterson In the House\", + \"trackName\":\"Spirits Above\", \"collectionCensoredName\":\"Gilles Peterson + In the House\", \"trackCensoredName\":\"Spirits Above\", \"artistViewUrl\":\"http://itunes.apple.com/us/artist/jose-james/id5117774?uo=4\", + \"collectionViewUrl\":\"http://itunes.apple.com/us/album/spirits-above/id282084350?i=282084363&uo=4\", + \"trackViewUrl\":\"http://itunes.apple.com/us/album/spirits-above/id282084350?i=282084363&uo=4\", + \"previewUrl\":\"http://a3.mzstatic.com/us/r1000/037/Music/e1/eb/f4/mzm.arzoanfi.aac.p.m4a\", + \"artworkUrl30\":\"http://a1.mzstatic.com/us/r1000/048/Music/f2/c6/0d/mzi.jupqudrd.30x30-50.jpg\", + \"artworkUrl60\":\"http://a5.mzstatic.com/us/r1000/048/Music/f2/c6/0d/mzi.jupqudrd.60x60-50.jpg\", + \"artworkUrl100\":\"http://a5.mzstatic.com/us/r1000/048/Music/f2/c6/0d/mzi.jupqudrd.100x100-75.jpg\", + \"collectionPrice\":3.99, \"trackPrice\":0.99, \"releaseDate\":\"2008-06-02T07:00:00Z\", + \"collectionExplicitness\":\"notExplicit\", \"trackExplicitness\":\"notExplicit\", + \"discCount\":1, \"discNumber\":1, \"trackCount\":12, \"trackNumber\":4, \"trackTimeMillis\":410587, + \"country\":\"USA\", \"currency\":\"USD\", \"primaryGenreName\":\"Dance\"}, + \n{\"wrapperType\":\"track\", \"kind\":\"song\", \"artistId\":5117774, \"collectionId\":395704841, + \"trackId\":395704962, \"artistName\":\"José James\", \"collectionName\":\"Gilles + Peterson: Worldwide - A Celebration of His Snydicated Radio Show\", \"trackName\":\"The + Dreamer\", \"collectionCensoredName\":\"Gilles Peterson: Worldwide - A Celebration + of His Snydicated Radio Show\", \"trackCensoredName\":\"The Dreamer\", \"artistViewUrl\":\"http://itunes.apple.com/us/artist/jose-james/id5117774?uo=4\", + \"collectionViewUrl\":\"http://itunes.apple.com/us/album/the-dreamer/id395704841?i=395704962&uo=4\", + \"trackViewUrl\":\"http://itunes.apple.com/us/album/the-dreamer/id395704841?i=395704962&uo=4\", + \"previewUrl\":\"http://a1.mzstatic.com/us/r1000/025/Music/ed/ff/1c/mzi.bmkfrqyo.aac.p.m4a\", + \"artworkUrl30\":\"http://a4.mzstatic.com/us/r1000/035/Music/01/2b/c8/mzi.zffvkmva.30x30-50.jpg\", + \"artworkUrl60\":\"http://a3.mzstatic.com/us/r1000/035/Music/01/2b/c8/mzi.zffvkmva.60x60-50.jpg\", + \"artworkUrl100\":\"http://a5.mzstatic.com/us/r1000/035/Music/01/2b/c8/mzi.zffvkmva.100x100-75.jpg\", + \"collectionPrice\":9.99, \"trackPrice\":0.99, \"releaseDate\":\"2010-10-08T07:00:00Z\", + \"collectionExplicitness\":\"notExplicit\", \"trackExplicitness\":\"notExplicit\", + \"discCount\":1, \"discNumber\":1, \"trackCount\":17, \"trackNumber\":15, \"trackTimeMillis\":422149, + \"country\":\"USA\", \"currency\":\"USD\", \"primaryGenreName\":\"R&B/Soul\"}, + \n{\"wrapperType\":\"track\", \"kind\":\"song\", \"artistId\":5117774, \"collectionId\":334904540, + \"trackId\":334904562, \"artistName\":\"José James\", \"collectionName\":\"Blackmagic + Remixes - EP\", \"trackName\":\"Blackmagic\", \"collectionCensoredName\":\"Blackmagic + Remixes - EP\", \"trackCensoredName\":\"Blackmagic (Joy Orbison's Recreation)\", + \"artistViewUrl\":\"http://itunes.apple.com/us/artist/jose-james/id5117774?uo=4\", + \"collectionViewUrl\":\"http://itunes.apple.com/us/album/blackmagic-joy-orbisons-recreation/id334904540?i=334904562&uo=4\", + \"trackViewUrl\":\"http://itunes.apple.com/us/album/blackmagic-joy-orbisons-recreation/id334904540?i=334904562&uo=4\", + \"previewUrl\":\"http://a1.mzstatic.com/us/r1000/048/Music/ef/76/00/mzm.xqhwytnx.aac.p.m4a\", + \"artworkUrl30\":\"http://a5.mzstatic.com/us/r1000/002/Music/7b/c5/a7/mzi.kgvrbwuh.30x30-50.jpg\", + \"artworkUrl60\":\"http://a4.mzstatic.com/us/r1000/002/Music/7b/c5/a7/mzi.kgvrbwuh.60x60-50.jpg\", + \"artworkUrl100\":\"http://a1.mzstatic.com/us/r1000/002/Music/7b/c5/a7/mzi.kgvrbwuh.100x100-75.jpg\", + \"collectionPrice\":3.96, \"trackPrice\":0.99, \"releaseDate\":\"2009-11-01T07:00:00Z\", + \"collectionExplicitness\":\"notExplicit\", \"trackExplicitness\":\"notExplicit\", + \"discCount\":1, \"discNumber\":1, \"trackCount\":4, \"trackNumber\":1, \"trackTimeMillis\":355804, + \"country\":\"USA\", \"currency\":\"USD\", \"primaryGenreName\":\"Dance\"}]\n}\n\n\n" + http_version: '1.1' +- !ruby/struct:VCR::HTTPInteraction + request: !ruby/struct:VCR::Request + method: :get + uri: http://ax.itunes.apple.com:80/WebObjects/MZStoreServices.woa/wa/wsSearch?media=music&term=Jose%20James + body: + headers: + accept: + - application/json + user-agent: + - ITunes Ruby Gem 0.5.5 + accept-encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + response: !ruby/struct:VCR::Response + status: !ruby/struct:VCR::ResponseStatus + code: 200 + message: OK + headers: + x-apple-orig-url-path: + - /WebObjects/MZStoreServices.woa/wa/wsSearch?term=Jose%20James&media=music + x-apple-translated-wo-url: + - /WebObjects/MZStoreServices.woa/wa/wsSearch?term=Jose%20James&media=music + x-apple-application-site: + - NWK + x-apple-max-age: + - '3600' + content-type: + - text/javascript; charset=utf-8 + x-apple-application-instance: + - '1025010' + x-webobjects-loadaverage: + - '0' + vary: + - Accept-Encoding + - X-Apple-Store-Front + expires: + - Wed, 18 Apr 2012 22:53:34 GMT + cache-control: + - max-age=0, no-cache + pragma: + - no-cache + date: + - Wed, 18 Apr 2012 22:53:34 GMT + transfer-encoding: + - chunked + connection: + - Transfer-Encoding + - keep-alive + x-apple-partner: + - origin.0 + body: ! "\n\n\n{\n \"resultCount\":50,\n \"results\": [\n{\"wrapperType\":\"track\", + \"kind\":\"music-video\", \"artistId\":5117774, \"collectionId\":365350903, + \"trackId\":365354104, \"artistName\":\"José James\", \"collectionName\":\"Blackmagic + (Deluxe Version)\", \"trackName\":\"Code\", \"collectionCensoredName\":\"Blackmagic + (Deluxe Version)\", \"trackCensoredName\":\"Code\", \"artistViewUrl\":\"http://itunes.apple.com/us/artist/jose-james/id5117774?uo=4\", + \"collectionViewUrl\":\"http://itunes.apple.com/us/music-video/code/id365354104?uo=4\", + \"trackViewUrl\":\"http://itunes.apple.com/us/music-video/code/id365354104?uo=4\", + \"previewUrl\":\"http://a536.v.phobos.apple.com/us/r1000/059/Video/bf/9c/40/mzm.yajpnkyk..640x480.h264lc.u.p.m4v\", + \"artworkUrl30\":\"http://a3.mzstatic.com/us/r1000/031/Video/05/49/80/mzi.akbfkmtq.40x30-75.jpg\", + \"artworkUrl60\":\"http://a1.mzstatic.com/us/r1000/031/Video/05/49/80/mzi.akbfkmtq.80x60-75.jpg\", + \"artworkUrl100\":\"http://a4.mzstatic.com/us/r1000/031/Video/05/49/80/mzi.akbfkmtq.100x100-75.jpg\", + \"collectionPrice\":9.99, \"trackPrice\":1.49, \"releaseDate\":\"2010-04-12T07:00:00Z\", + \"collectionExplicitness\":\"notExplicit\", \"trackExplicitness\":\"notExplicit\", + \"discCount\":1, \"discNumber\":1, \"trackCount\":21, \"trackNumber\":21, \"trackTimeMillis\":280120.0, + \"country\":\"USA\", \"currency\":\"USD\", \"primaryGenreName\":\"Jazz\"}, \n{\"wrapperType\":\"track\", + \"kind\":\"music-video\", \"artistId\":5117774, \"collectionId\":286264618, + \"trackId\":286264696, \"artistName\":\"José James\", \"collectionName\":\"Park + Bench People - EP\", \"trackName\":\"Park Bench People\", \"collectionCensoredName\":\"Park + Bench People - EP\", \"trackCensoredName\":\"Park Bench People\", \"artistViewUrl\":\"http://itunes.apple.com/us/artist/jose-james/id5117774?uo=4\", + \"collectionViewUrl\":\"http://itunes.apple.com/us/music-video/park-bench-people/id286264696?uo=4\", + \"trackViewUrl\":\"http://itunes.apple.com/us/music-video/park-bench-people/id286264696?uo=4\", + \"previewUrl\":\"http://a1580.v.phobos.apple.com/us/r1000/004/Video/0f/0b/f4/mzm.efxwdsfe..640x360.h264lc.u.p.m4v\", + \"artworkUrl30\":\"http://a5.mzstatic.com/us/r1000/036/Features/71/2c/6f/dj.zaotuasm.40x30-75.jpg\", + \"artworkUrl60\":\"http://a1.mzstatic.com/us/r1000/036/Features/71/2c/6f/dj.zaotuasm.80x60-75.jpg\", + \"artworkUrl100\":\"http://a1.mzstatic.com/us/r1000/036/Features/71/2c/6f/dj.zaotuasm.100x100-75.jpg\", + \"collectionPrice\":1.99, \"trackPrice\":1.49, \"releaseDate\":\"2008-08-24T07:00:00Z\", + \"collectionExplicitness\":\"notExplicit\", \"trackExplicitness\":\"notExplicit\", + \"discCount\":1, \"discNumber\":1, \"trackCount\":3, \"trackNumber\":3, \"trackTimeMillis\":234219.0, + \"country\":\"USA\", \"currency\":\"USD\", \"primaryGenreName\":\"Jazz\"}, \n{\"wrapperType\":\"track\", + \"kind\":\"song\", \"artistId\":5117774, \"collectionId\":365350903, \"trackId\":365354086, + \"artistName\":\"José James\", \"collectionName\":\"Blackmagic (Deluxe Version)\", + \"trackName\":\"Blackmagic\", \"collectionCensoredName\":\"Blackmagic (Deluxe + Version)\", \"trackCensoredName\":\"Blackmagic (Joy Orbison's Recreation)\", + \"artistViewUrl\":\"http://itunes.apple.com/us/artist/jose-james/id5117774?uo=4\", + \"collectionViewUrl\":\"http://itunes.apple.com/us/album/blackmagic-joy-orbisons-recreation/id365350903?i=365354086&uo=4\", + \"trackViewUrl\":\"http://itunes.apple.com/us/album/blackmagic-joy-orbisons-recreation/id365350903?i=365354086&uo=4\", + \"previewUrl\":\"http://a2.mzstatic.com/us/r1000/035/Music/71/ce/42/mzi.rghmjmht.aac.p.m4a\", + \"artworkUrl30\":\"http://a1.mzstatic.com/us/r1000/043/Music/a2/bf/7f/mzi.ulkgzsyt.30x30-50.jpg\", + \"artworkUrl60\":\"http://a5.mzstatic.com/us/r1000/043/Music/a2/bf/7f/mzi.ulkgzsyt.60x60-50.jpg\", + \"artworkUrl100\":\"http://a2.mzstatic.com/us/r1000/043/Music/a2/bf/7f/mzi.ulkgzsyt.100x100-75.jpg\", + \"collectionPrice\":9.99, \"trackPrice\":0.99, \"releaseDate\":\"2010-04-12T07:00:00Z\", + \"collectionExplicitness\":\"notExplicit\", \"trackExplicitness\":\"notExplicit\", + \"discCount\":1, \"discNumber\":1, \"trackCount\":20, \"trackNumber\":19, \"trackTimeMillis\":355804, + \"country\":\"USA\", \"currency\":\"USD\", \"primaryGenreName\":\"Jazz\"}, \n{\"wrapperType\":\"track\", + \"kind\":\"song\", \"artistId\":5117774, \"collectionId\":365350903, \"trackId\":365353942, + \"artistName\":\"José James\", \"collectionName\":\"Blackmagic (Deluxe Version)\", + \"trackName\":\"Blackmagic\", \"collectionCensoredName\":\"Blackmagic (Deluxe + Version)\", \"trackCensoredName\":\"Blackmagic (Izmabad 118 Remix)\", \"artistViewUrl\":\"http://itunes.apple.com/us/artist/jose-james/id5117774?uo=4\", + \"collectionViewUrl\":\"http://itunes.apple.com/us/album/blackmagic-izmabad-118-remix/id365350903?i=365353942&uo=4\", + \"trackViewUrl\":\"http://itunes.apple.com/us/album/blackmagic-izmabad-118-remix/id365350903?i=365353942&uo=4\", + \"previewUrl\":\"http://a1.mzstatic.com/us/r1000/022/Music/fe/5b/38/mzi.bypadvdp.aac.p.m4a\", + \"artworkUrl30\":\"http://a1.mzstatic.com/us/r1000/043/Music/a2/bf/7f/mzi.ulkgzsyt.30x30-50.jpg\", + \"artworkUrl60\":\"http://a5.mzstatic.com/us/r1000/043/Music/a2/bf/7f/mzi.ulkgzsyt.60x60-50.jpg\", + \"artworkUrl100\":\"http://a2.mzstatic.com/us/r1000/043/Music/a2/bf/7f/mzi.ulkgzsyt.100x100-75.jpg\", + \"collectionPrice\":9.99, \"trackPrice\":0.99, \"releaseDate\":\"2010-04-12T07:00:00Z\", + \"collectionExplicitness\":\"notExplicit\", \"trackExplicitness\":\"notExplicit\", + \"discCount\":1, \"discNumber\":1, \"trackCount\":20, \"trackNumber\":17, \"trackTimeMillis\":357855, + \"country\":\"USA\", \"currency\":\"USD\", \"primaryGenreName\":\"Jazz\"}, \n{\"wrapperType\":\"track\", + \"kind\":\"song\", \"artistId\":5117774, \"collectionId\":287805088, \"trackId\":287805642, + \"artistName\":\"José James\", \"collectionName\":\"The Dreamer\", \"trackName\":\"Desire\", + \"collectionCensoredName\":\"The Dreamer\", \"trackCensoredName\":\"Desire\", + \"artistViewUrl\":\"http://itunes.apple.com/us/artist/jose-james/id5117774?uo=4\", + \"collectionViewUrl\":\"http://itunes.apple.com/us/album/desire/id287805088?i=287805642&uo=4\", + \"trackViewUrl\":\"http://itunes.apple.com/us/album/desire/id287805088?i=287805642&uo=4\", + \"previewUrl\":\"http://a5.mzstatic.com/us/r1000/024/Music/4f/63/2c/mzm.dvfzxuyi.aac.p.m4a\", + \"artworkUrl30\":\"http://a5.mzstatic.com/us/r1000/001/Music/8f/6d/26/mzi.elifbnfk.30x30-50.jpg\", + \"artworkUrl60\":\"http://a2.mzstatic.com/us/r1000/001/Music/8f/6d/26/mzi.elifbnfk.60x60-50.jpg\", + \"artworkUrl100\":\"http://a4.mzstatic.com/us/r1000/001/Music/8f/6d/26/mzi.elifbnfk.100x100-75.jpg\", + \"collectionPrice\":9.90, \"trackPrice\":0.99, \"releaseDate\":\"2008-03-26T07:00:00Z\", + \"collectionExplicitness\":\"notExplicit\", \"trackExplicitness\":\"notExplicit\", + \"discCount\":1, \"discNumber\":1, \"trackCount\":10, \"trackNumber\":9, \"trackTimeMillis\":449267, + \"country\":\"USA\", \"currency\":\"USD\", \"primaryGenreName\":\"Jazz\"}, \n{\"wrapperType\":\"track\", + \"kind\":\"song\", \"artistId\":5117774, \"collectionId\":365350903, \"trackId\":365353461, + \"artistName\":\"José James\", \"collectionName\":\"Blackmagic (Deluxe Version)\", + \"trackName\":\"Love Conversation\", \"collectionCensoredName\":\"Blackmagic + (Deluxe Version)\", \"trackCensoredName\":\"Love Conversation\", \"artistViewUrl\":\"http://itunes.apple.com/us/artist/jose-james/id5117774?uo=4\", + \"collectionViewUrl\":\"http://itunes.apple.com/us/album/love-conversation/id365350903?i=365353461&uo=4\", + \"trackViewUrl\":\"http://itunes.apple.com/us/album/love-conversation/id365350903?i=365353461&uo=4\", + \"previewUrl\":\"http://a3.mzstatic.com/us/r1000/044/Music/ac/58/68/mzi.ipmfrtvw.aac.p.m4a\", + \"artworkUrl30\":\"http://a1.mzstatic.com/us/r1000/043/Music/a2/bf/7f/mzi.ulkgzsyt.30x30-50.jpg\", + \"artworkUrl60\":\"http://a5.mzstatic.com/us/r1000/043/Music/a2/bf/7f/mzi.ulkgzsyt.60x60-50.jpg\", + \"artworkUrl100\":\"http://a2.mzstatic.com/us/r1000/043/Music/a2/bf/7f/mzi.ulkgzsyt.100x100-75.jpg\", + \"collectionPrice\":9.99, \"trackPrice\":0.99, \"releaseDate\":\"2010-04-12T07:00:00Z\", + \"collectionExplicitness\":\"notExplicit\", \"trackExplicitness\":\"notExplicit\", + \"discCount\":1, \"discNumber\":1, \"trackCount\":20, \"trackNumber\":11, \"trackTimeMillis\":316332, + \"country\":\"USA\", \"currency\":\"USD\", \"primaryGenreName\":\"Jazz\"}, \n{\"wrapperType\":\"track\", + \"kind\":\"song\", \"artistId\":5117774, \"collectionId\":365350903, \"trackId\":365352887, + \"artistName\":\"José James\", \"collectionName\":\"Blackmagic (Deluxe Version)\", + \"trackName\":\"Save Your Love for Me\", \"collectionCensoredName\":\"Blackmagic + (Deluxe Version)\", \"trackCensoredName\":\"Save Your Love for Me\", \"artistViewUrl\":\"http://itunes.apple.com/us/artist/jose-james/id5117774?uo=4\", + \"collectionViewUrl\":\"http://itunes.apple.com/us/album/save-your-love-for-me/id365350903?i=365352887&uo=4\", + \"trackViewUrl\":\"http://itunes.apple.com/us/album/save-your-love-for-me/id365350903?i=365352887&uo=4\", + \"previewUrl\":\"http://a4.mzstatic.com/us/r1000/004/Music/2a/f4/9c/mzi.tnducphq.aac.p.m4a\", + \"artworkUrl30\":\"http://a1.mzstatic.com/us/r1000/043/Music/a2/bf/7f/mzi.ulkgzsyt.30x30-50.jpg\", + \"artworkUrl60\":\"http://a5.mzstatic.com/us/r1000/043/Music/a2/bf/7f/mzi.ulkgzsyt.60x60-50.jpg\", + \"artworkUrl100\":\"http://a2.mzstatic.com/us/r1000/043/Music/a2/bf/7f/mzi.ulkgzsyt.100x100-75.jpg\", + \"collectionPrice\":9.99, \"trackPrice\":0.99, \"releaseDate\":\"2010-04-12T07:00:00Z\", + \"collectionExplicitness\":\"notExplicit\", \"trackExplicitness\":\"notExplicit\", + \"discCount\":1, \"discNumber\":1, \"trackCount\":20, \"trackNumber\":7, \"trackTimeMillis\":212571, + \"country\":\"USA\", \"currency\":\"USD\", \"primaryGenreName\":\"Jazz\"}, \n{\"wrapperType\":\"track\", + \"kind\":\"song\", \"artistId\":5117774, \"collectionId\":287805088, \"trackId\":287805379, + \"artistName\":\"José James\", \"collectionName\":\"The Dreamer\", \"trackName\":\"Park + Bench People\", \"collectionCensoredName\":\"The Dreamer\", \"trackCensoredName\":\"Park + Bench People\", \"artistViewUrl\":\"http://itunes.apple.com/us/artist/jose-james/id5117774?uo=4\", + \"collectionViewUrl\":\"http://itunes.apple.com/us/album/park-bench-people/id287805088?i=287805379&uo=4\", + \"trackViewUrl\":\"http://itunes.apple.com/us/album/park-bench-people/id287805088?i=287805379&uo=4\", + \"previewUrl\":\"http://a5.mzstatic.com/us/r1000/054/Music/8f/1b/34/mzm.pjdrzrbi.aac.p.m4a\", + \"artworkUrl30\":\"http://a5.mzstatic.com/us/r1000/001/Music/8f/6d/26/mzi.elifbnfk.30x30-50.jpg\", + \"artworkUrl60\":\"http://a2.mzstatic.com/us/r1000/001/Music/8f/6d/26/mzi.elifbnfk.60x60-50.jpg\", + \"artworkUrl100\":\"http://a4.mzstatic.com/us/r1000/001/Music/8f/6d/26/mzi.elifbnfk.100x100-75.jpg\", + \"collectionPrice\":9.90, \"trackPrice\":0.99, \"releaseDate\":\"2008-03-26T07:00:00Z\", + \"collectionExplicitness\":\"notExplicit\", \"trackExplicitness\":\"notExplicit\", + \"discCount\":1, \"discNumber\":1, \"trackCount\":10, \"trackNumber\":4, \"trackTimeMillis\":363320, + \"country\":\"USA\", \"currency\":\"USD\", \"primaryGenreName\":\"Jazz\"}, \n{\"wrapperType\":\"track\", + \"kind\":\"song\", \"artistId\":5117774, \"collectionId\":365350903, \"trackId\":365351515, + \"artistName\":\"José James\", \"collectionName\":\"Blackmagic (Deluxe Version)\", + \"trackName\":\"Code\", \"collectionCensoredName\":\"Blackmagic (Deluxe Version)\", + \"trackCensoredName\":\"Code\", \"artistViewUrl\":\"http://itunes.apple.com/us/artist/jose-james/id5117774?uo=4\", + \"collectionViewUrl\":\"http://itunes.apple.com/us/album/code/id365350903?i=365351515&uo=4\", + \"trackViewUrl\":\"http://itunes.apple.com/us/album/code/id365350903?i=365351515&uo=4\", + \"previewUrl\":\"http://a4.mzstatic.com/us/r1000/015/Music/80/f1/f2/mzi.xotjcehb.aac.p.m4a\", + \"artworkUrl30\":\"http://a1.mzstatic.com/us/r1000/043/Music/a2/bf/7f/mzi.ulkgzsyt.30x30-50.jpg\", + \"artworkUrl60\":\"http://a5.mzstatic.com/us/r1000/043/Music/a2/bf/7f/mzi.ulkgzsyt.60x60-50.jpg\", + \"artworkUrl100\":\"http://a2.mzstatic.com/us/r1000/043/Music/a2/bf/7f/mzi.ulkgzsyt.100x100-75.jpg\", + \"collectionPrice\":9.99, \"trackPrice\":0.99, \"releaseDate\":\"2010-04-12T07:00:00Z\", + \"collectionExplicitness\":\"notExplicit\", \"trackExplicitness\":\"notExplicit\", + \"discCount\":1, \"discNumber\":1, \"trackCount\":20, \"trackNumber\":1, \"trackTimeMillis\":294666, + \"country\":\"USA\", \"currency\":\"USD\", \"primaryGenreName\":\"Jazz\"}, \n{\"wrapperType\":\"track\", + \"kind\":\"song\", \"artistId\":5117774, \"collectionId\":365350903, \"trackId\":365352155, + \"artistName\":\"José James\", \"collectionName\":\"Blackmagic (Deluxe Version)\", + \"trackName\":\"Promise In Love\", \"collectionCensoredName\":\"Blackmagic (Deluxe + Version)\", \"trackCensoredName\":\"Promise In Love\", \"artistViewUrl\":\"http://itunes.apple.com/us/artist/jose-james/id5117774?uo=4\", + \"collectionViewUrl\":\"http://itunes.apple.com/us/album/promise-in-love/id365350903?i=365352155&uo=4\", + \"trackViewUrl\":\"http://itunes.apple.com/us/album/promise-in-love/id365350903?i=365352155&uo=4\", + \"previewUrl\":\"http://a1.mzstatic.com/us/r1000/001/Music/1c/41/f7/mzi.ltwhimkd.aac.p.m4a\", + \"artworkUrl30\":\"http://a1.mzstatic.com/us/r1000/043/Music/a2/bf/7f/mzi.ulkgzsyt.30x30-50.jpg\", + \"artworkUrl60\":\"http://a5.mzstatic.com/us/r1000/043/Music/a2/bf/7f/mzi.ulkgzsyt.60x60-50.jpg\", + \"artworkUrl100\":\"http://a2.mzstatic.com/us/r1000/043/Music/a2/bf/7f/mzi.ulkgzsyt.100x100-75.jpg\", + \"collectionPrice\":9.99, \"trackPrice\":0.99, \"releaseDate\":\"2010-04-12T07:00:00Z\", + \"collectionExplicitness\":\"notExplicit\", \"trackExplicitness\":\"notExplicit\", + \"discCount\":1, \"discNumber\":1, \"trackCount\":20, \"trackNumber\":4, \"trackTimeMillis\":275666, + \"country\":\"USA\", \"currency\":\"USD\", \"primaryGenreName\":\"Jazz\"}, \n{\"wrapperType\":\"track\", + \"kind\":\"song\", \"artistId\":5117774, \"collectionId\":365350903, \"trackId\":365351841, + \"artistName\":\"José James\", \"collectionName\":\"Blackmagic (Deluxe Version)\", + \"trackName\":\"Lay You Down\", \"collectionCensoredName\":\"Blackmagic (Deluxe + Version)\", \"trackCensoredName\":\"Lay You Down\", \"artistViewUrl\":\"http://itunes.apple.com/us/artist/jose-james/id5117774?uo=4\", + \"collectionViewUrl\":\"http://itunes.apple.com/us/album/lay-you-down/id365350903?i=365351841&uo=4\", + \"trackViewUrl\":\"http://itunes.apple.com/us/album/lay-you-down/id365350903?i=365351841&uo=4\", + \"previewUrl\":\"http://a2.mzstatic.com/us/r1000/010/Music/10/ee/e1/mzi.dngalaji.aac.p.m4a\", + \"artworkUrl30\":\"http://a1.mzstatic.com/us/r1000/043/Music/a2/bf/7f/mzi.ulkgzsyt.30x30-50.jpg\", + \"artworkUrl60\":\"http://a5.mzstatic.com/us/r1000/043/Music/a2/bf/7f/mzi.ulkgzsyt.60x60-50.jpg\", + \"artworkUrl100\":\"http://a2.mzstatic.com/us/r1000/043/Music/a2/bf/7f/mzi.ulkgzsyt.100x100-75.jpg\", + \"collectionPrice\":9.99, \"trackPrice\":0.99, \"releaseDate\":\"2010-04-12T07:00:00Z\", + \"collectionExplicitness\":\"notExplicit\", \"trackExplicitness\":\"notExplicit\", + \"discCount\":1, \"discNumber\":1, \"trackCount\":20, \"trackNumber\":3, \"trackTimeMillis\":305492, + \"country\":\"USA\", \"currency\":\"USD\", \"primaryGenreName\":\"Jazz\"}, \n{\"wrapperType\":\"track\", + \"kind\":\"song\", \"artistId\":5117774, \"collectionId\":365350903, \"trackId\":365353883, + \"artistName\":\"José James\", \"collectionName\":\"Blackmagic (Deluxe Version)\", + \"trackName\":\"Visions of Violet (feat. Flying Lotus)\", \"collectionCensoredName\":\"Blackmagic + (Deluxe Version)\", \"trackCensoredName\":\"Visions of Violet (feat. Flying + Lotus)\", \"artistViewUrl\":\"http://itunes.apple.com/us/artist/jose-james/id5117774?uo=4\", + \"collectionViewUrl\":\"http://itunes.apple.com/us/album/visions-violet-feat.-flying/id365350903?i=365353883&uo=4\", + \"trackViewUrl\":\"http://itunes.apple.com/us/album/visions-violet-feat.-flying/id365350903?i=365353883&uo=4\", + \"previewUrl\":\"http://a1.mzstatic.com/us/r1000/044/Music/f3/e4/64/mzi.yipsrvwd.aac.p.m4a\", + \"artworkUrl30\":\"http://a1.mzstatic.com/us/r1000/043/Music/a2/bf/7f/mzi.ulkgzsyt.30x30-50.jpg\", + \"artworkUrl60\":\"http://a5.mzstatic.com/us/r1000/043/Music/a2/bf/7f/mzi.ulkgzsyt.60x60-50.jpg\", + \"artworkUrl100\":\"http://a2.mzstatic.com/us/r1000/043/Music/a2/bf/7f/mzi.ulkgzsyt.100x100-75.jpg\", + \"collectionPrice\":9.99, \"trackPrice\":0.99, \"releaseDate\":\"2010-04-12T07:00:00Z\", + \"collectionExplicitness\":\"notExplicit\", \"trackExplicitness\":\"notExplicit\", + \"discCount\":1, \"discNumber\":1, \"trackCount\":20, \"trackNumber\":16, \"trackTimeMillis\":140447, + \"country\":\"USA\", \"currency\":\"USD\", \"primaryGenreName\":\"Jazz\"}, \n{\"wrapperType\":\"track\", + \"kind\":\"song\", \"artistId\":5117774, \"collectionId\":365350903, \"trackId\":365352707, + \"artistName\":\"José James\", \"collectionName\":\"Blackmagic (Deluxe Version)\", + \"trackName\":\"Made for Love\", \"collectionCensoredName\":\"Blackmagic (Deluxe + Version)\", \"trackCensoredName\":\"Made for Love\", \"artistViewUrl\":\"http://itunes.apple.com/us/artist/jose-james/id5117774?uo=4\", + \"collectionViewUrl\":\"http://itunes.apple.com/us/album/made-for-love/id365350903?i=365352707&uo=4\", + \"trackViewUrl\":\"http://itunes.apple.com/us/album/made-for-love/id365350903?i=365352707&uo=4\", + \"previewUrl\":\"http://a3.mzstatic.com/us/r1000/032/Music/04/47/d2/mzi.zevlzzuk.aac.p.m4a\", + \"artworkUrl30\":\"http://a1.mzstatic.com/us/r1000/043/Music/a2/bf/7f/mzi.ulkgzsyt.30x30-50.jpg\", + \"artworkUrl60\":\"http://a5.mzstatic.com/us/r1000/043/Music/a2/bf/7f/mzi.ulkgzsyt.60x60-50.jpg\", + \"artworkUrl100\":\"http://a2.mzstatic.com/us/r1000/043/Music/a2/bf/7f/mzi.ulkgzsyt.100x100-75.jpg\", + \"collectionPrice\":9.99, \"trackPrice\":0.99, \"releaseDate\":\"2010-04-12T07:00:00Z\", + \"collectionExplicitness\":\"notExplicit\", \"trackExplicitness\":\"notExplicit\", + \"discCount\":1, \"discNumber\":1, \"trackCount\":20, \"trackNumber\":6, \"trackTimeMillis\":230928, + \"country\":\"USA\", \"currency\":\"USD\", \"primaryGenreName\":\"Jazz\"}, \n{\"wrapperType\":\"track\", + \"kind\":\"song\", \"artistId\":5117774, \"collectionId\":365350903, \"trackId\":365351658, + \"artistName\":\"José James\", \"collectionName\":\"Blackmagic (Deluxe Version)\", + \"trackName\":\"Touch\", \"collectionCensoredName\":\"Blackmagic (Deluxe Version)\", + \"trackCensoredName\":\"Touch\", \"artistViewUrl\":\"http://itunes.apple.com/us/artist/jose-james/id5117774?uo=4\", + \"collectionViewUrl\":\"http://itunes.apple.com/us/album/touch/id365350903?i=365351658&uo=4\", + \"trackViewUrl\":\"http://itunes.apple.com/us/album/touch/id365350903?i=365351658&uo=4\", + \"previewUrl\":\"http://a5.mzstatic.com/us/r1000/026/Music/6b/0f/50/mzi.mlcnmhnr.aac.p.m4a\", + \"artworkUrl30\":\"http://a1.mzstatic.com/us/r1000/043/Music/a2/bf/7f/mzi.ulkgzsyt.30x30-50.jpg\", + \"artworkUrl60\":\"http://a5.mzstatic.com/us/r1000/043/Music/a2/bf/7f/mzi.ulkgzsyt.60x60-50.jpg\", + \"artworkUrl100\":\"http://a2.mzstatic.com/us/r1000/043/Music/a2/bf/7f/mzi.ulkgzsyt.100x100-75.jpg\", + \"collectionPrice\":9.99, \"trackPrice\":0.99, \"releaseDate\":\"2010-04-12T07:00:00Z\", + \"collectionExplicitness\":\"notExplicit\", \"trackExplicitness\":\"notExplicit\", + \"discCount\":1, \"discNumber\":1, \"trackCount\":20, \"trackNumber\":2, \"trackTimeMillis\":258864, + \"country\":\"USA\", \"currency\":\"USD\", \"primaryGenreName\":\"Jazz\"}, \n{\"wrapperType\":\"track\", + \"kind\":\"song\", \"artistId\":5117774, \"collectionId\":365350903, \"trackId\":365353129, + \"artistName\":\"José James\", \"collectionName\":\"Blackmagic (Deluxe Version)\", + \"trackName\":\"Blackmagic\", \"collectionCensoredName\":\"Blackmagic (Deluxe + Version)\", \"trackCensoredName\":\"Blackmagic\", \"artistViewUrl\":\"http://itunes.apple.com/us/artist/jose-james/id5117774?uo=4\", + \"collectionViewUrl\":\"http://itunes.apple.com/us/album/blackmagic/id365350903?i=365353129&uo=4\", + \"trackViewUrl\":\"http://itunes.apple.com/us/album/blackmagic/id365350903?i=365353129&uo=4\", + \"previewUrl\":\"http://a3.mzstatic.com/us/r1000/035/Music/a9/d8/f0/mzi.qzpytsme.aac.p.m4a\", + \"artworkUrl30\":\"http://a1.mzstatic.com/us/r1000/043/Music/a2/bf/7f/mzi.ulkgzsyt.30x30-50.jpg\", + \"artworkUrl60\":\"http://a5.mzstatic.com/us/r1000/043/Music/a2/bf/7f/mzi.ulkgzsyt.60x60-50.jpg\", + \"artworkUrl100\":\"http://a2.mzstatic.com/us/r1000/043/Music/a2/bf/7f/mzi.ulkgzsyt.100x100-75.jpg\", + \"collectionPrice\":9.99, \"trackPrice\":0.99, \"releaseDate\":\"2010-04-12T07:00:00Z\", + \"collectionExplicitness\":\"notExplicit\", \"trackExplicitness\":\"notExplicit\", + \"discCount\":1, \"discNumber\":1, \"trackCount\":20, \"trackNumber\":9, \"trackTimeMillis\":243429, + \"country\":\"USA\", \"currency\":\"USD\", \"primaryGenreName\":\"Jazz\"}, \n{\"wrapperType\":\"track\", + \"kind\":\"song\", \"artistId\":5117774, \"collectionId\":365350903, \"trackId\":365352479, + \"artistName\":\"José James\", \"collectionName\":\"Blackmagic (Deluxe Version)\", + \"trackName\":\"Warrior\", \"collectionCensoredName\":\"Blackmagic (Deluxe Version)\", + \"trackCensoredName\":\"Warrior\", \"artistViewUrl\":\"http://itunes.apple.com/us/artist/jose-james/id5117774?uo=4\", + \"collectionViewUrl\":\"http://itunes.apple.com/us/album/warrior/id365350903?i=365352479&uo=4\", + \"trackViewUrl\":\"http://itunes.apple.com/us/album/warrior/id365350903?i=365352479&uo=4\", + \"previewUrl\":\"http://a2.mzstatic.com/us/r1000/029/Music/09/0d/d5/mzi.euzhdjhi.aac.p.m4a\", + \"artworkUrl30\":\"http://a1.mzstatic.com/us/r1000/043/Music/a2/bf/7f/mzi.ulkgzsyt.30x30-50.jpg\", + \"artworkUrl60\":\"http://a5.mzstatic.com/us/r1000/043/Music/a2/bf/7f/mzi.ulkgzsyt.60x60-50.jpg\", + \"artworkUrl100\":\"http://a2.mzstatic.com/us/r1000/043/Music/a2/bf/7f/mzi.ulkgzsyt.100x100-75.jpg\", + \"collectionPrice\":9.99, \"trackPrice\":0.99, \"releaseDate\":\"2010-04-12T07:00:00Z\", + \"collectionExplicitness\":\"notExplicit\", \"trackExplicitness\":\"notExplicit\", + \"discCount\":1, \"discNumber\":1, \"trackCount\":20, \"trackNumber\":5, \"trackTimeMillis\":355094, + \"country\":\"USA\", \"currency\":\"USD\", \"primaryGenreName\":\"Jazz\"}, \n{\"wrapperType\":\"track\", + \"kind\":\"song\", \"artistId\":5117774, \"collectionId\":287805088, \"trackId\":287805308, + \"artistName\":\"José James\", \"collectionName\":\"The Dreamer\", \"trackName\":\"Blackeyedsusan\", + \"collectionCensoredName\":\"The Dreamer\", \"trackCensoredName\":\"Blackeyedsusan\", + \"artistViewUrl\":\"http://itunes.apple.com/us/artist/jose-james/id5117774?uo=4\", + \"collectionViewUrl\":\"http://itunes.apple.com/us/album/blackeyedsusan/id287805088?i=287805308&uo=4\", + \"trackViewUrl\":\"http://itunes.apple.com/us/album/blackeyedsusan/id287805088?i=287805308&uo=4\", + \"previewUrl\":\"http://a3.mzstatic.com/us/r1000/021/Music/a1/d8/e1/mzm.brvmkudk.aac.p.m4a\", + \"artworkUrl30\":\"http://a5.mzstatic.com/us/r1000/001/Music/8f/6d/26/mzi.elifbnfk.30x30-50.jpg\", + \"artworkUrl60\":\"http://a2.mzstatic.com/us/r1000/001/Music/8f/6d/26/mzi.elifbnfk.60x60-50.jpg\", + \"artworkUrl100\":\"http://a4.mzstatic.com/us/r1000/001/Music/8f/6d/26/mzi.elifbnfk.100x100-75.jpg\", + \"collectionPrice\":9.90, \"trackPrice\":0.99, \"releaseDate\":\"2008-03-26T07:00:00Z\", + \"collectionExplicitness\":\"notExplicit\", \"trackExplicitness\":\"notExplicit\", + \"discCount\":1, \"discNumber\":1, \"trackCount\":10, \"trackNumber\":3, \"trackTimeMillis\":296787, + \"country\":\"USA\", \"currency\":\"USD\", \"primaryGenreName\":\"Jazz\"}, \n{\"wrapperType\":\"track\", + \"kind\":\"song\", \"artistId\":5117774, \"collectionId\":365350903, \"trackId\":365353980, + \"artistName\":\"José James\", \"collectionName\":\"Blackmagic (Deluxe Version)\", + \"trackName\":\"Warrior\", \"collectionCensoredName\":\"Blackmagic (Deluxe Version)\", + \"trackCensoredName\":\"Warrior (Sbtrkt Remix)\", \"artistViewUrl\":\"http://itunes.apple.com/us/artist/jose-james/id5117774?uo=4\", + \"collectionViewUrl\":\"http://itunes.apple.com/us/album/warrior-sbtrkt-remix/id365350903?i=365353980&uo=4\", + \"trackViewUrl\":\"http://itunes.apple.com/us/album/warrior-sbtrkt-remix/id365350903?i=365353980&uo=4\", + \"previewUrl\":\"http://a5.mzstatic.com/us/r1000/024/Music/8e/df/93/mzi.qgdgxket.aac.p.m4a\", + \"artworkUrl30\":\"http://a1.mzstatic.com/us/r1000/043/Music/a2/bf/7f/mzi.ulkgzsyt.30x30-50.jpg\", + \"artworkUrl60\":\"http://a5.mzstatic.com/us/r1000/043/Music/a2/bf/7f/mzi.ulkgzsyt.60x60-50.jpg\", + \"artworkUrl100\":\"http://a2.mzstatic.com/us/r1000/043/Music/a2/bf/7f/mzi.ulkgzsyt.100x100-75.jpg\", + \"collectionPrice\":9.99, \"trackPrice\":0.99, \"releaseDate\":\"2010-04-12T07:00:00Z\", + \"collectionExplicitness\":\"notExplicit\", \"trackExplicitness\":\"notExplicit\", + \"discCount\":1, \"discNumber\":1, \"trackCount\":20, \"trackNumber\":18, \"trackTimeMillis\":272852, + \"country\":\"USA\", \"currency\":\"USD\", \"primaryGenreName\":\"Jazz\"}, \n{\"wrapperType\":\"track\", + \"kind\":\"song\", \"artistId\":5117774, \"collectionId\":365350903, \"trackId\":365354103, + \"artistName\":\"José James\", \"collectionName\":\"Blackmagic (Deluxe Version)\", + \"trackName\":\"Warrior\", \"collectionCensoredName\":\"Blackmagic (Deluxe Version)\", + \"trackCensoredName\":\"Warrior (Rockwell Remix)\", \"artistViewUrl\":\"http://itunes.apple.com/us/artist/jose-james/id5117774?uo=4\", + \"collectionViewUrl\":\"http://itunes.apple.com/us/album/warrior-rockwell-remix/id365350903?i=365354103&uo=4\", + \"trackViewUrl\":\"http://itunes.apple.com/us/album/warrior-rockwell-remix/id365350903?i=365354103&uo=4\", + \"previewUrl\":\"http://a3.mzstatic.com/us/r1000/004/Music/6c/dd/f1/mzi.ckyvqfuq.aac.p.m4a\", + \"artworkUrl30\":\"http://a1.mzstatic.com/us/r1000/043/Music/a2/bf/7f/mzi.ulkgzsyt.30x30-50.jpg\", + \"artworkUrl60\":\"http://a5.mzstatic.com/us/r1000/043/Music/a2/bf/7f/mzi.ulkgzsyt.60x60-50.jpg\", + \"artworkUrl100\":\"http://a2.mzstatic.com/us/r1000/043/Music/a2/bf/7f/mzi.ulkgzsyt.100x100-75.jpg\", + \"collectionPrice\":9.99, \"trackPrice\":0.99, \"releaseDate\":\"2010-04-12T07:00:00Z\", + \"collectionExplicitness\":\"notExplicit\", \"trackExplicitness\":\"notExplicit\", + \"discCount\":1, \"discNumber\":1, \"trackCount\":20, \"trackNumber\":20, \"trackTimeMillis\":353098, + \"country\":\"USA\", \"currency\":\"USD\", \"primaryGenreName\":\"Jazz\"}, \n{\"wrapperType\":\"track\", + \"kind\":\"song\", \"artistId\":5117774, \"collectionId\":365350903, \"trackId\":365353658, + \"artistName\":\"José James\", \"collectionName\":\"Blackmagic (Deluxe Version)\", + \"trackName\":\"No Tellin' (I Need You)\", \"collectionCensoredName\":\"Blackmagic + (Deluxe Version)\", \"trackCensoredName\":\"No Tellin' (I Need You)\", \"artistViewUrl\":\"http://itunes.apple.com/us/artist/jose-james/id5117774?uo=4\", + \"collectionViewUrl\":\"http://itunes.apple.com/us/album/no-tellin-i-need-you/id365350903?i=365353658&uo=4\", + \"trackViewUrl\":\"http://itunes.apple.com/us/album/no-tellin-i-need-you/id365350903?i=365353658&uo=4\", + \"previewUrl\":\"http://a2.mzstatic.com/us/r1000/010/Music/f3/84/c7/mzi.owscastu.aac.p.m4a\", + \"artworkUrl30\":\"http://a1.mzstatic.com/us/r1000/043/Music/a2/bf/7f/mzi.ulkgzsyt.30x30-50.jpg\", + \"artworkUrl60\":\"http://a5.mzstatic.com/us/r1000/043/Music/a2/bf/7f/mzi.ulkgzsyt.60x60-50.jpg\", + \"artworkUrl100\":\"http://a2.mzstatic.com/us/r1000/043/Music/a2/bf/7f/mzi.ulkgzsyt.100x100-75.jpg\", + \"collectionPrice\":9.99, \"trackPrice\":0.99, \"releaseDate\":\"2010-04-12T07:00:00Z\", + \"collectionExplicitness\":\"notExplicit\", \"trackExplicitness\":\"notExplicit\", + \"discCount\":1, \"discNumber\":1, \"trackCount\":20, \"trackNumber\":13, \"trackTimeMillis\":159432, + \"country\":\"USA\", \"currency\":\"USD\", \"primaryGenreName\":\"Jazz\"}, \n{\"wrapperType\":\"track\", + \"kind\":\"song\", \"artistId\":5117774, \"collectionId\":287805088, \"trackId\":287805225, + \"artistName\":\"José James\", \"collectionName\":\"The Dreamer\", \"trackName\":\"The + Dreamer\", \"collectionCensoredName\":\"The Dreamer\", \"trackCensoredName\":\"The + Dreamer\", \"artistViewUrl\":\"http://itunes.apple.com/us/artist/jose-james/id5117774?uo=4\", + \"collectionViewUrl\":\"http://itunes.apple.com/us/album/the-dreamer/id287805088?i=287805225&uo=4\", + \"trackViewUrl\":\"http://itunes.apple.com/us/album/the-dreamer/id287805088?i=287805225&uo=4\", + \"previewUrl\":\"http://a3.mzstatic.com/us/r1000/043/Music/81/7e/1c/mzm.viszqyno.aac.p.m4a\", + \"artworkUrl30\":\"http://a5.mzstatic.com/us/r1000/001/Music/8f/6d/26/mzi.elifbnfk.30x30-50.jpg\", + \"artworkUrl60\":\"http://a2.mzstatic.com/us/r1000/001/Music/8f/6d/26/mzi.elifbnfk.60x60-50.jpg\", + \"artworkUrl100\":\"http://a4.mzstatic.com/us/r1000/001/Music/8f/6d/26/mzi.elifbnfk.100x100-75.jpg\", + \"collectionPrice\":9.90, \"trackPrice\":0.99, \"releaseDate\":\"2008-03-26T07:00:00Z\", + \"collectionExplicitness\":\"notExplicit\", \"trackExplicitness\":\"notExplicit\", + \"discCount\":1, \"discNumber\":1, \"trackCount\":10, \"trackNumber\":1, \"trackTimeMillis\":425280, + \"country\":\"USA\", \"currency\":\"USD\", \"primaryGenreName\":\"Jazz\"}, \n{\"wrapperType\":\"track\", + \"kind\":\"song\", \"artistId\":5117774, \"collectionId\":365350903, \"trackId\":365353042, + \"artistName\":\"José James\", \"collectionName\":\"Blackmagic (Deluxe Version)\", + \"trackName\":\"The Greater Good\", \"collectionCensoredName\":\"Blackmagic + (Deluxe Version)\", \"trackCensoredName\":\"The Greater Good\", \"artistViewUrl\":\"http://itunes.apple.com/us/artist/jose-james/id5117774?uo=4\", + \"collectionViewUrl\":\"http://itunes.apple.com/us/album/the-greater-good/id365350903?i=365353042&uo=4\", + \"trackViewUrl\":\"http://itunes.apple.com/us/album/the-greater-good/id365350903?i=365353042&uo=4\", + \"previewUrl\":\"http://a2.mzstatic.com/us/r1000/049/Music/fe/03/99/mzi.dekqfrkm.aac.p.m4a\", + \"artworkUrl30\":\"http://a1.mzstatic.com/us/r1000/043/Music/a2/bf/7f/mzi.ulkgzsyt.30x30-50.jpg\", + \"artworkUrl60\":\"http://a5.mzstatic.com/us/r1000/043/Music/a2/bf/7f/mzi.ulkgzsyt.60x60-50.jpg\", + \"artworkUrl100\":\"http://a2.mzstatic.com/us/r1000/043/Music/a2/bf/7f/mzi.ulkgzsyt.100x100-75.jpg\", + \"collectionPrice\":9.99, \"trackPrice\":0.99, \"releaseDate\":\"2010-04-12T07:00:00Z\", + \"collectionExplicitness\":\"notExplicit\", \"trackExplicitness\":\"notExplicit\", + \"discCount\":1, \"discNumber\":1, \"trackCount\":20, \"trackNumber\":8, \"trackTimeMillis\":259172, + \"country\":\"USA\", \"currency\":\"USD\", \"primaryGenreName\":\"Jazz\"}, \n{\"wrapperType\":\"track\", + \"kind\":\"song\", \"artistId\":5117774, \"collectionId\":365350903, \"trackId\":365353833, + \"artistName\":\"José James\", \"collectionName\":\"Blackmagic (Deluxe Version)\", + \"trackName\":\"Evidence of Existence\", \"collectionCensoredName\":\"Blackmagic + (Deluxe Version)\", \"trackCensoredName\":\"Evidence of Existence\", \"artistViewUrl\":\"http://itunes.apple.com/us/artist/jose-james/id5117774?uo=4\", + \"collectionViewUrl\":\"http://itunes.apple.com/us/album/evidence-of-existence/id365350903?i=365353833&uo=4\", + \"trackViewUrl\":\"http://itunes.apple.com/us/album/evidence-of-existence/id365350903?i=365353833&uo=4\", + \"previewUrl\":\"http://a1.mzstatic.com/us/r1000/046/Music/23/0f/16/mzi.enywxruq.aac.p.m4a\", + \"artworkUrl30\":\"http://a1.mzstatic.com/us/r1000/043/Music/a2/bf/7f/mzi.ulkgzsyt.30x30-50.jpg\", + \"artworkUrl60\":\"http://a5.mzstatic.com/us/r1000/043/Music/a2/bf/7f/mzi.ulkgzsyt.60x60-50.jpg\", + \"artworkUrl100\":\"http://a2.mzstatic.com/us/r1000/043/Music/a2/bf/7f/mzi.ulkgzsyt.100x100-75.jpg\", + \"collectionPrice\":9.99, \"trackPrice\":0.99, \"releaseDate\":\"2010-04-12T07:00:00Z\", + \"collectionExplicitness\":\"notExplicit\", \"trackExplicitness\":\"notExplicit\", + \"discCount\":1, \"discNumber\":1, \"trackCount\":20, \"trackNumber\":15, \"trackTimeMillis\":326327, + \"country\":\"USA\", \"currency\":\"USD\", \"primaryGenreName\":\"Jazz\"}, \n{\"wrapperType\":\"track\", + \"kind\":\"song\", \"artistId\":5117774, \"collectionId\":287805088, \"trackId\":287805689, + \"artistName\":\"José James\", \"collectionName\":\"The Dreamer\", \"trackName\":\"Love\", + \"collectionCensoredName\":\"The Dreamer\", \"trackCensoredName\":\"Love\", + \"artistViewUrl\":\"http://itunes.apple.com/us/artist/jose-james/id5117774?uo=4\", + \"collectionViewUrl\":\"http://itunes.apple.com/us/album/love/id287805088?i=287805689&uo=4\", + \"trackViewUrl\":\"http://itunes.apple.com/us/album/love/id287805088?i=287805689&uo=4\", + \"previewUrl\":\"http://a4.mzstatic.com/us/r1000/048/Music/d8/53/2e/mzm.bhfufryc.aac.p.m4a\", + \"artworkUrl30\":\"http://a5.mzstatic.com/us/r1000/001/Music/8f/6d/26/mzi.elifbnfk.30x30-50.jpg\", + \"artworkUrl60\":\"http://a2.mzstatic.com/us/r1000/001/Music/8f/6d/26/mzi.elifbnfk.60x60-50.jpg\", + \"artworkUrl100\":\"http://a4.mzstatic.com/us/r1000/001/Music/8f/6d/26/mzi.elifbnfk.100x100-75.jpg\", + \"collectionPrice\":9.90, \"trackPrice\":0.99, \"releaseDate\":\"2008-03-26T07:00:00Z\", + \"collectionExplicitness\":\"notExplicit\", \"trackExplicitness\":\"notExplicit\", + \"discCount\":1, \"discNumber\":1, \"trackCount\":10, \"trackNumber\":10, \"trackTimeMillis\":324013, + \"country\":\"USA\", \"currency\":\"USD\", \"primaryGenreName\":\"Jazz\"}, \n{\"wrapperType\":\"track\", + \"kind\":\"song\", \"artistId\":5117774, \"collectionId\":365350903, \"trackId\":365353269, + \"artistName\":\"José James\", \"collectionName\":\"Blackmagic (Deluxe Version)\", + \"trackName\":\"Detroit Loveletter\", \"collectionCensoredName\":\"Blackmagic + (Deluxe Version)\", \"trackCensoredName\":\"Detroit Loveletter\", \"artistViewUrl\":\"http://itunes.apple.com/us/artist/jose-james/id5117774?uo=4\", + \"collectionViewUrl\":\"http://itunes.apple.com/us/album/detroit-loveletter/id365350903?i=365353269&uo=4\", + \"trackViewUrl\":\"http://itunes.apple.com/us/album/detroit-loveletter/id365350903?i=365353269&uo=4\", + \"previewUrl\":\"http://a3.mzstatic.com/us/r1000/010/Music/4d/8c/d4/mzi.arqaexng.aac.p.m4a\", + \"artworkUrl30\":\"http://a1.mzstatic.com/us/r1000/043/Music/a2/bf/7f/mzi.ulkgzsyt.30x30-50.jpg\", + \"artworkUrl60\":\"http://a5.mzstatic.com/us/r1000/043/Music/a2/bf/7f/mzi.ulkgzsyt.60x60-50.jpg\", + \"artworkUrl100\":\"http://a2.mzstatic.com/us/r1000/043/Music/a2/bf/7f/mzi.ulkgzsyt.100x100-75.jpg\", + \"collectionPrice\":9.99, \"trackPrice\":0.99, \"releaseDate\":\"2010-04-12T07:00:00Z\", + \"collectionExplicitness\":\"notExplicit\", \"trackExplicitness\":\"notExplicit\", + \"discCount\":1, \"discNumber\":1, \"trackCount\":20, \"trackNumber\":10, \"trackTimeMillis\":241540, + \"country\":\"USA\", \"currency\":\"USD\", \"primaryGenreName\":\"Jazz\"}, \n{\"wrapperType\":\"track\", + \"kind\":\"song\", \"artistId\":5117774, \"collectionId\":287805088, \"trackId\":287805552, + \"artistName\":\"José James\", \"collectionName\":\"The Dreamer\", \"trackName\":\"Red\", + \"collectionCensoredName\":\"The Dreamer\", \"trackCensoredName\":\"Red\", \"artistViewUrl\":\"http://itunes.apple.com/us/artist/jose-james/id5117774?uo=4\", + \"collectionViewUrl\":\"http://itunes.apple.com/us/album/red/id287805088?i=287805552&uo=4\", + \"trackViewUrl\":\"http://itunes.apple.com/us/album/red/id287805088?i=287805552&uo=4\", + \"previewUrl\":\"http://a1.mzstatic.com/us/r1000/011/Music/4f/f8/13/mzm.wkwlppfi.aac.p.m4a\", + \"artworkUrl30\":\"http://a5.mzstatic.com/us/r1000/001/Music/8f/6d/26/mzi.elifbnfk.30x30-50.jpg\", + \"artworkUrl60\":\"http://a2.mzstatic.com/us/r1000/001/Music/8f/6d/26/mzi.elifbnfk.60x60-50.jpg\", + \"artworkUrl100\":\"http://a4.mzstatic.com/us/r1000/001/Music/8f/6d/26/mzi.elifbnfk.100x100-75.jpg\", + \"collectionPrice\":9.90, \"trackPrice\":0.99, \"releaseDate\":\"2008-03-26T07:00:00Z\", + \"collectionExplicitness\":\"notExplicit\", \"trackExplicitness\":\"notExplicit\", + \"discCount\":1, \"discNumber\":1, \"trackCount\":10, \"trackNumber\":7, \"trackTimeMillis\":315907, + \"country\":\"USA\", \"currency\":\"USD\", \"primaryGenreName\":\"Jazz\"}, \n{\"wrapperType\":\"track\", + \"kind\":\"song\", \"artistId\":5117774, \"collectionId\":365350903, \"trackId\":365353493, + \"artistName\":\"José James\", \"collectionName\":\"Blackmagic (Deluxe Version)\", + \"trackName\":\"Beauty\", \"collectionCensoredName\":\"Blackmagic (Deluxe Version)\", + \"trackCensoredName\":\"Beauty\", \"artistViewUrl\":\"http://itunes.apple.com/us/artist/jose-james/id5117774?uo=4\", + \"collectionViewUrl\":\"http://itunes.apple.com/us/album/beauty/id365350903?i=365353493&uo=4\", + \"trackViewUrl\":\"http://itunes.apple.com/us/album/beauty/id365350903?i=365353493&uo=4\", + \"previewUrl\":\"http://a3.mzstatic.com/us/r1000/002/Music/32/ff/6f/mzi.xleezrzq.aac.p.m4a\", + \"artworkUrl30\":\"http://a1.mzstatic.com/us/r1000/043/Music/a2/bf/7f/mzi.ulkgzsyt.30x30-50.jpg\", + \"artworkUrl60\":\"http://a5.mzstatic.com/us/r1000/043/Music/a2/bf/7f/mzi.ulkgzsyt.60x60-50.jpg\", + \"artworkUrl100\":\"http://a2.mzstatic.com/us/r1000/043/Music/a2/bf/7f/mzi.ulkgzsyt.100x100-75.jpg\", + \"collectionPrice\":9.99, \"trackPrice\":0.99, \"releaseDate\":\"2010-04-12T07:00:00Z\", + \"collectionExplicitness\":\"notExplicit\", \"trackExplicitness\":\"notExplicit\", + \"discCount\":1, \"discNumber\":1, \"trackCount\":20, \"trackNumber\":12, \"trackTimeMillis\":250021, + \"country\":\"USA\", \"currency\":\"USD\", \"primaryGenreName\":\"Jazz\"}, \n{\"wrapperType\":\"track\", + \"kind\":\"song\", \"artistId\":5117774, \"collectionId\":287805088, \"trackId\":287805606, + \"artistName\":\"José James\", \"collectionName\":\"The Dreamer\", \"trackName\":\"Winter + Wind\", \"collectionCensoredName\":\"The Dreamer\", \"trackCensoredName\":\"Winter + Wind\", \"artistViewUrl\":\"http://itunes.apple.com/us/artist/jose-james/id5117774?uo=4\", + \"collectionViewUrl\":\"http://itunes.apple.com/us/album/winter-wind/id287805088?i=287805606&uo=4\", + \"trackViewUrl\":\"http://itunes.apple.com/us/album/winter-wind/id287805088?i=287805606&uo=4\", + \"previewUrl\":\"http://a5.mzstatic.com/us/r1000/034/Music/dd/3d/26/mzm.lzxzqjaz.aac.p.m4a\", + \"artworkUrl30\":\"http://a5.mzstatic.com/us/r1000/001/Music/8f/6d/26/mzi.elifbnfk.30x30-50.jpg\", + \"artworkUrl60\":\"http://a2.mzstatic.com/us/r1000/001/Music/8f/6d/26/mzi.elifbnfk.60x60-50.jpg\", + \"artworkUrl100\":\"http://a4.mzstatic.com/us/r1000/001/Music/8f/6d/26/mzi.elifbnfk.100x100-75.jpg\", + \"collectionPrice\":9.90, \"trackPrice\":0.99, \"releaseDate\":\"2008-03-26T07:00:00Z\", + \"collectionExplicitness\":\"notExplicit\", \"trackExplicitness\":\"notExplicit\", + \"discCount\":1, \"discNumber\":1, \"trackCount\":10, \"trackNumber\":8, \"trackTimeMillis\":427333, + \"country\":\"USA\", \"currency\":\"USD\", \"primaryGenreName\":\"Jazz\"}, \n{\"wrapperType\":\"track\", + \"kind\":\"song\", \"artistId\":5117774, \"collectionId\":287805088, \"trackId\":287805493, + \"artistName\":\"José James\", \"collectionName\":\"The Dreamer\", \"trackName\":\"Spirits + Up Above\", \"collectionCensoredName\":\"The Dreamer\", \"trackCensoredName\":\"Spirits + Up Above\", \"artistViewUrl\":\"http://itunes.apple.com/us/artist/jose-james/id5117774?uo=4\", + \"collectionViewUrl\":\"http://itunes.apple.com/us/album/spirits-up-above/id287805088?i=287805493&uo=4\", + \"trackViewUrl\":\"http://itunes.apple.com/us/album/spirits-up-above/id287805088?i=287805493&uo=4\", + \"previewUrl\":\"http://a5.mzstatic.com/us/r1000/009/Music/33/df/63/mzm.qqrxsszt.aac.p.m4a\", + \"artworkUrl30\":\"http://a5.mzstatic.com/us/r1000/001/Music/8f/6d/26/mzi.elifbnfk.30x30-50.jpg\", + \"artworkUrl60\":\"http://a2.mzstatic.com/us/r1000/001/Music/8f/6d/26/mzi.elifbnfk.60x60-50.jpg\", + \"artworkUrl100\":\"http://a4.mzstatic.com/us/r1000/001/Music/8f/6d/26/mzi.elifbnfk.100x100-75.jpg\", + \"collectionPrice\":9.90, \"trackPrice\":0.99, \"releaseDate\":\"2008-03-26T07:00:00Z\", + \"collectionExplicitness\":\"notExplicit\", \"trackExplicitness\":\"notExplicit\", + \"discCount\":1, \"discNumber\":1, \"trackCount\":10, \"trackNumber\":5, \"trackTimeMillis\":300693, + \"country\":\"USA\", \"currency\":\"USD\", \"primaryGenreName\":\"Jazz\"}, \n{\"wrapperType\":\"track\", + \"kind\":\"song\", \"artistId\":5117774, \"collectionId\":287805088, \"trackId\":287805233, + \"artistName\":\"José James\", \"collectionName\":\"The Dreamer\", \"trackName\":\"Velvet\", + \"collectionCensoredName\":\"The Dreamer\", \"trackCensoredName\":\"Velvet\", + \"artistViewUrl\":\"http://itunes.apple.com/us/artist/jose-james/id5117774?uo=4\", + \"collectionViewUrl\":\"http://itunes.apple.com/us/album/velvet/id287805088?i=287805233&uo=4\", + \"trackViewUrl\":\"http://itunes.apple.com/us/album/velvet/id287805088?i=287805233&uo=4\", + \"previewUrl\":\"http://a3.mzstatic.com/us/r1000/042/Music/c8/53/2d/mzm.whwgbwlm.aac.p.m4a\", + \"artworkUrl30\":\"http://a5.mzstatic.com/us/r1000/001/Music/8f/6d/26/mzi.elifbnfk.30x30-50.jpg\", + \"artworkUrl60\":\"http://a2.mzstatic.com/us/r1000/001/Music/8f/6d/26/mzi.elifbnfk.60x60-50.jpg\", + \"artworkUrl100\":\"http://a4.mzstatic.com/us/r1000/001/Music/8f/6d/26/mzi.elifbnfk.100x100-75.jpg\", + \"collectionPrice\":9.90, \"trackPrice\":0.99, \"releaseDate\":\"2008-03-26T07:00:00Z\", + \"collectionExplicitness\":\"notExplicit\", \"trackExplicitness\":\"notExplicit\", + \"discCount\":1, \"discNumber\":1, \"trackCount\":10, \"trackNumber\":2, \"trackTimeMillis\":241467, + \"country\":\"USA\", \"currency\":\"USD\", \"primaryGenreName\":\"Jazz\"}, \n{\"wrapperType\":\"track\", + \"kind\":\"song\", \"artistId\":5117774, \"collectionId\":365350903, \"trackId\":365353801, + \"artistName\":\"José James\", \"collectionName\":\"Blackmagic (Deluxe Version)\", + \"trackName\":\"The Light\", \"collectionCensoredName\":\"Blackmagic (Deluxe + Version)\", \"trackCensoredName\":\"The Light\", \"artistViewUrl\":\"http://itunes.apple.com/us/artist/jose-james/id5117774?uo=4\", + \"collectionViewUrl\":\"http://itunes.apple.com/us/album/the-light/id365350903?i=365353801&uo=4\", + \"trackViewUrl\":\"http://itunes.apple.com/us/album/the-light/id365350903?i=365353801&uo=4\", + \"previewUrl\":\"http://a3.mzstatic.com/us/r1000/044/Music/bc/8f/37/mzi.istzgbtp.aac.p.m4a\", + \"artworkUrl30\":\"http://a1.mzstatic.com/us/r1000/043/Music/a2/bf/7f/mzi.ulkgzsyt.30x30-50.jpg\", + \"artworkUrl60\":\"http://a5.mzstatic.com/us/r1000/043/Music/a2/bf/7f/mzi.ulkgzsyt.60x60-50.jpg\", + \"artworkUrl100\":\"http://a2.mzstatic.com/us/r1000/043/Music/a2/bf/7f/mzi.ulkgzsyt.100x100-75.jpg\", + \"collectionPrice\":9.99, \"trackPrice\":-1.00, \"releaseDate\":\"2010-04-12T07:00:00Z\", + \"collectionExplicitness\":\"notExplicit\", \"trackExplicitness\":\"notExplicit\", + \"discCount\":1, \"discNumber\":1, \"trackCount\":20, \"trackNumber\":14, \"trackTimeMillis\":631591, + \"country\":\"USA\", \"currency\":\"USD\", \"primaryGenreName\":\"Jazz\"}, \n{\"wrapperType\":\"track\", + \"kind\":\"song\", \"artistId\":5117774, \"collectionId\":287805088, \"trackId\":287805505, + \"artistName\":\"José James\", \"collectionName\":\"The Dreamer\", \"trackName\":\"Nola\", + \"collectionCensoredName\":\"The Dreamer\", \"trackCensoredName\":\"Nola\", + \"artistViewUrl\":\"http://itunes.apple.com/us/artist/jose-james/id5117774?uo=4\", + \"collectionViewUrl\":\"http://itunes.apple.com/us/album/nola/id287805088?i=287805505&uo=4\", + \"trackViewUrl\":\"http://itunes.apple.com/us/album/nola/id287805088?i=287805505&uo=4\", + \"previewUrl\":\"http://a1.mzstatic.com/us/r1000/039/Music/3a/a1/53/mzm.jqbyidpn.aac.p.m4a\", + \"artworkUrl30\":\"http://a5.mzstatic.com/us/r1000/001/Music/8f/6d/26/mzi.elifbnfk.30x30-50.jpg\", + \"artworkUrl60\":\"http://a2.mzstatic.com/us/r1000/001/Music/8f/6d/26/mzi.elifbnfk.60x60-50.jpg\", + \"artworkUrl100\":\"http://a4.mzstatic.com/us/r1000/001/Music/8f/6d/26/mzi.elifbnfk.100x100-75.jpg\", + \"collectionPrice\":9.90, \"trackPrice\":0.99, \"releaseDate\":\"2008-03-26T07:00:00Z\", + \"collectionExplicitness\":\"notExplicit\", \"trackExplicitness\":\"notExplicit\", + \"discCount\":1, \"discNumber\":1, \"trackCount\":10, \"trackNumber\":6, \"trackTimeMillis\":236173, + \"country\":\"USA\", \"currency\":\"USD\", \"primaryGenreName\":\"Jazz\"}, \n{\"wrapperType\":\"track\", + \"kind\":\"song\", \"artistId\":5117774, \"collectionId\":370608373, \"trackId\":370611252, + \"artistName\":\"José James & Jef Neve\", \"collectionName\":\"For All We Know + (Bonus Track Version)\", \"trackName\":\"When I Fall In Love\", \"collectionCensoredName\":\"For + All We Know (Bonus Track Version)\", \"trackCensoredName\":\"When I Fall In + Love\", \"artistViewUrl\":\"http://itunes.apple.com/us/artist/jose-james/id5117774?uo=4\", + \"collectionViewUrl\":\"http://itunes.apple.com/us/album/when-i-fall-in-love/id370608373?i=370611252&uo=4\", + \"trackViewUrl\":\"http://itunes.apple.com/us/album/when-i-fall-in-love/id370608373?i=370611252&uo=4\", + \"previewUrl\":\"http://a4.mzstatic.com/us/r1000/050/Music/5d/58/5f/mzi.olitylaw.aac.p.m4a\", + \"artworkUrl30\":\"http://a4.mzstatic.com/us/r1000/018/Music/0e/66/cb/mzi.lfccwird.30x30-50.jpg\", + \"artworkUrl60\":\"http://a3.mzstatic.com/us/r1000/018/Music/0e/66/cb/mzi.lfccwird.60x60-50.jpg\", + \"artworkUrl100\":\"http://a4.mzstatic.com/us/r1000/018/Music/0e/66/cb/mzi.lfccwird.100x100-75.jpg\", + \"collectionPrice\":9.99, \"trackPrice\":0.99, \"releaseDate\":\"2010-05-11T07:00:00Z\", + \"collectionExplicitness\":\"notExplicit\", \"trackExplicitness\":\"notExplicit\", + \"discCount\":1, \"discNumber\":1, \"trackCount\":10, \"trackNumber\":5, \"trackTimeMillis\":314054, + \"country\":\"USA\", \"currency\":\"USD\", \"primaryGenreName\":\"Jazz\"}, \n{\"wrapperType\":\"track\", + \"kind\":\"song\", \"artistId\":5117774, \"collectionId\":370608373, \"trackId\":370611848, + \"artistName\":\"José James & Jef Neve\", \"collectionName\":\"For All We Know + (Bonus Track Version)\", \"trackName\":\"For All We Know\", \"collectionCensoredName\":\"For + All We Know (Bonus Track Version)\", \"trackCensoredName\":\"For All We Know\", + \"artistViewUrl\":\"http://itunes.apple.com/us/artist/jose-james/id5117774?uo=4\", + \"collectionViewUrl\":\"http://itunes.apple.com/us/album/for-all-we-know/id370608373?i=370611848&uo=4\", + \"trackViewUrl\":\"http://itunes.apple.com/us/album/for-all-we-know/id370608373?i=370611848&uo=4\", + \"previewUrl\":\"http://a1.mzstatic.com/us/r1000/037/Music/54/e4/af/mzi.nrzlwozg.aac.p.m4a\", + \"artworkUrl30\":\"http://a4.mzstatic.com/us/r1000/018/Music/0e/66/cb/mzi.lfccwird.30x30-50.jpg\", + \"artworkUrl60\":\"http://a3.mzstatic.com/us/r1000/018/Music/0e/66/cb/mzi.lfccwird.60x60-50.jpg\", + \"artworkUrl100\":\"http://a4.mzstatic.com/us/r1000/018/Music/0e/66/cb/mzi.lfccwird.100x100-75.jpg\", + \"collectionPrice\":9.99, \"trackPrice\":0.99, \"releaseDate\":\"2010-05-11T07:00:00Z\", + \"collectionExplicitness\":\"notExplicit\", \"trackExplicitness\":\"notExplicit\", + \"discCount\":1, \"discNumber\":1, \"trackCount\":10, \"trackNumber\":9, \"trackTimeMillis\":312727, + \"country\":\"USA\", \"currency\":\"USD\", \"primaryGenreName\":\"Jazz\"}, \n{\"wrapperType\":\"track\", + \"kind\":\"song\", \"artistId\":5117774, \"collectionId\":370608373, \"trackId\":370608586, + \"artistName\":\"José James & Jef Neve\", \"collectionName\":\"For All We Know + (Bonus Track Version)\", \"trackName\":\"Autumn In New York\", \"collectionCensoredName\":\"For + All We Know (Bonus Track Version)\", \"trackCensoredName\":\"Autumn In New York\", + \"artistViewUrl\":\"http://itunes.apple.com/us/artist/jose-james/id5117774?uo=4\", + \"collectionViewUrl\":\"http://itunes.apple.com/us/album/autumn-in-new-york/id370608373?i=370608586&uo=4\", + \"trackViewUrl\":\"http://itunes.apple.com/us/album/autumn-in-new-york/id370608373?i=370608586&uo=4\", + \"previewUrl\":\"http://a2.mzstatic.com/us/r1000/024/Music/44/ec/f2/mzi.rmytqwwt.aac.p.m4a\", + \"artworkUrl30\":\"http://a4.mzstatic.com/us/r1000/018/Music/0e/66/cb/mzi.lfccwird.30x30-50.jpg\", + \"artworkUrl60\":\"http://a3.mzstatic.com/us/r1000/018/Music/0e/66/cb/mzi.lfccwird.60x60-50.jpg\", + \"artworkUrl100\":\"http://a4.mzstatic.com/us/r1000/018/Music/0e/66/cb/mzi.lfccwird.100x100-75.jpg\", + \"collectionPrice\":9.99, \"trackPrice\":0.99, \"releaseDate\":\"2010-05-11T07:00:00Z\", + \"collectionExplicitness\":\"notExplicit\", \"trackExplicitness\":\"notExplicit\", + \"discCount\":1, \"discNumber\":1, \"trackCount\":10, \"trackNumber\":1, \"trackTimeMillis\":200071, + \"country\":\"USA\", \"currency\":\"USD\", \"primaryGenreName\":\"Jazz\"}, \n{\"wrapperType\":\"track\", + \"kind\":\"song\", \"artistId\":5117774, \"collectionId\":370608373, \"trackId\":370608986, + \"artistName\":\"José James & Jef Neve\", \"collectionName\":\"For All We Know + (Bonus Track Version)\", \"trackName\":\"Embraceable You\", \"collectionCensoredName\":\"For + All We Know (Bonus Track Version)\", \"trackCensoredName\":\"Embraceable You\", + \"artistViewUrl\":\"http://itunes.apple.com/us/artist/jose-james/id5117774?uo=4\", + \"collectionViewUrl\":\"http://itunes.apple.com/us/album/embraceable-you/id370608373?i=370608986&uo=4\", + \"trackViewUrl\":\"http://itunes.apple.com/us/album/embraceable-you/id370608373?i=370608986&uo=4\", + \"previewUrl\":\"http://a1.mzstatic.com/us/r1000/006/Music/79/38/b1/mzi.bkhfjjst.aac.p.m4a\", + \"artworkUrl30\":\"http://a4.mzstatic.com/us/r1000/018/Music/0e/66/cb/mzi.lfccwird.30x30-50.jpg\", + \"artworkUrl60\":\"http://a3.mzstatic.com/us/r1000/018/Music/0e/66/cb/mzi.lfccwird.60x60-50.jpg\", + \"artworkUrl100\":\"http://a4.mzstatic.com/us/r1000/018/Music/0e/66/cb/mzi.lfccwird.100x100-75.jpg\", + \"collectionPrice\":9.99, \"trackPrice\":0.99, \"releaseDate\":\"2010-05-11T07:00:00Z\", + \"collectionExplicitness\":\"notExplicit\", \"trackExplicitness\":\"notExplicit\", + \"discCount\":1, \"discNumber\":1, \"trackCount\":10, \"trackNumber\":2, \"trackTimeMillis\":375153, + \"country\":\"USA\", \"currency\":\"USD\", \"primaryGenreName\":\"Jazz\"}, \n{\"wrapperType\":\"track\", + \"kind\":\"song\", \"artistId\":5117774, \"collectionId\":370608373, \"trackId\":370609436, + \"artistName\":\"José James & Jef Neve\", \"collectionName\":\"For All We Know + (Bonus Track Version)\", \"trackName\":\"Gee Baby, Ain't I Good to You\", \"collectionCensoredName\":\"For + All We Know (Bonus Track Version)\", \"trackCensoredName\":\"Gee Baby, Ain't + I Good to You\", \"artistViewUrl\":\"http://itunes.apple.com/us/artist/jose-james/id5117774?uo=4\", + \"collectionViewUrl\":\"http://itunes.apple.com/us/album/gee-baby-aint-i-good-to-you/id370608373?i=370609436&uo=4\", + \"trackViewUrl\":\"http://itunes.apple.com/us/album/gee-baby-aint-i-good-to-you/id370608373?i=370609436&uo=4\", + \"previewUrl\":\"http://a1.mzstatic.com/us/r1000/003/Music/b5/c3/a9/mzi.xumxkdmi.aac.p.m4a\", + \"artworkUrl30\":\"http://a4.mzstatic.com/us/r1000/018/Music/0e/66/cb/mzi.lfccwird.30x30-50.jpg\", + \"artworkUrl60\":\"http://a3.mzstatic.com/us/r1000/018/Music/0e/66/cb/mzi.lfccwird.60x60-50.jpg\", + \"artworkUrl100\":\"http://a4.mzstatic.com/us/r1000/018/Music/0e/66/cb/mzi.lfccwird.100x100-75.jpg\", + \"collectionPrice\":9.99, \"trackPrice\":0.99, \"releaseDate\":\"2010-05-11T07:00:00Z\", + \"collectionExplicitness\":\"notExplicit\", \"trackExplicitness\":\"notExplicit\", + \"discCount\":1, \"discNumber\":1, \"trackCount\":10, \"trackNumber\":3, \"trackTimeMillis\":319293, + \"country\":\"USA\", \"currency\":\"USD\", \"primaryGenreName\":\"Jazz\"}, \n{\"wrapperType\":\"track\", + \"kind\":\"song\", \"artistId\":5117774, \"collectionId\":370608373, \"trackId\":370610685, + \"artistName\":\"José James & Jef Neve\", \"collectionName\":\"For All We Know + (Bonus Track Version)\", \"trackName\":\"Body and Soul\", \"collectionCensoredName\":\"For + All We Know (Bonus Track Version)\", \"trackCensoredName\":\"Body and Soul\", + \"artistViewUrl\":\"http://itunes.apple.com/us/artist/jose-james/id5117774?uo=4\", + \"collectionViewUrl\":\"http://itunes.apple.com/us/album/body-and-soul/id370608373?i=370610685&uo=4\", + \"trackViewUrl\":\"http://itunes.apple.com/us/album/body-and-soul/id370608373?i=370610685&uo=4\", + \"previewUrl\":\"http://a3.mzstatic.com/us/r1000/033/Music/67/18/a1/mzi.hdcilbqn.aac.p.m4a\", + \"artworkUrl30\":\"http://a4.mzstatic.com/us/r1000/018/Music/0e/66/cb/mzi.lfccwird.30x30-50.jpg\", + \"artworkUrl60\":\"http://a3.mzstatic.com/us/r1000/018/Music/0e/66/cb/mzi.lfccwird.60x60-50.jpg\", + \"artworkUrl100\":\"http://a4.mzstatic.com/us/r1000/018/Music/0e/66/cb/mzi.lfccwird.100x100-75.jpg\", + \"collectionPrice\":9.99, \"trackPrice\":0.99, \"releaseDate\":\"2010-05-11T07:00:00Z\", + \"collectionExplicitness\":\"notExplicit\", \"trackExplicitness\":\"notExplicit\", + \"discCount\":1, \"discNumber\":1, \"trackCount\":10, \"trackNumber\":4, \"trackTimeMillis\":386380, + \"country\":\"USA\", \"currency\":\"USD\", \"primaryGenreName\":\"Jazz\"}, \n{\"wrapperType\":\"track\", + \"kind\":\"song\", \"artistId\":5117774, \"collectionId\":370608373, \"trackId\":370611570, + \"artistName\":\"José James & Jef Neve\", \"collectionName\":\"For All We Know + (Bonus Track Version)\", \"trackName\":\"Just Squeeze Me\", \"collectionCensoredName\":\"For + All We Know (Bonus Track Version)\", \"trackCensoredName\":\"Just Squeeze Me\", + \"artistViewUrl\":\"http://itunes.apple.com/us/artist/jose-james/id5117774?uo=4\", + \"collectionViewUrl\":\"http://itunes.apple.com/us/album/just-squeeze-me/id370608373?i=370611570&uo=4\", + \"trackViewUrl\":\"http://itunes.apple.com/us/album/just-squeeze-me/id370608373?i=370611570&uo=4\", + \"previewUrl\":\"http://a4.mzstatic.com/us/r1000/054/Music/9a/4f/8d/mzi.qxbtzmav.aac.p.m4a\", + \"artworkUrl30\":\"http://a4.mzstatic.com/us/r1000/018/Music/0e/66/cb/mzi.lfccwird.30x30-50.jpg\", + \"artworkUrl60\":\"http://a3.mzstatic.com/us/r1000/018/Music/0e/66/cb/mzi.lfccwird.60x60-50.jpg\", + \"artworkUrl100\":\"http://a4.mzstatic.com/us/r1000/018/Music/0e/66/cb/mzi.lfccwird.100x100-75.jpg\", + \"collectionPrice\":9.99, \"trackPrice\":0.99, \"releaseDate\":\"2010-05-11T07:00:00Z\", + \"collectionExplicitness\":\"notExplicit\", \"trackExplicitness\":\"notExplicit\", + \"discCount\":1, \"discNumber\":1, \"trackCount\":10, \"trackNumber\":7, \"trackTimeMillis\":255247, + \"country\":\"USA\", \"currency\":\"USD\", \"primaryGenreName\":\"Jazz\"}, \n{\"wrapperType\":\"track\", + \"kind\":\"song\", \"artistId\":5117774, \"collectionId\":370608373, \"trackId\":370611631, + \"artistName\":\"José James & Jef Neve\", \"collectionName\":\"For All We Know + (Bonus Track Version)\", \"trackName\":\"Lush Life\", \"collectionCensoredName\":\"For + All We Know (Bonus Track Version)\", \"trackCensoredName\":\"Lush Life\", \"artistViewUrl\":\"http://itunes.apple.com/us/artist/jose-james/id5117774?uo=4\", + \"collectionViewUrl\":\"http://itunes.apple.com/us/album/lush-life/id370608373?i=370611631&uo=4\", + \"trackViewUrl\":\"http://itunes.apple.com/us/album/lush-life/id370608373?i=370611631&uo=4\", + \"previewUrl\":\"http://a2.mzstatic.com/us/r1000/049/Music/52/54/c7/mzi.zhswfzwh.aac.p.m4a\", + \"artworkUrl30\":\"http://a4.mzstatic.com/us/r1000/018/Music/0e/66/cb/mzi.lfccwird.30x30-50.jpg\", + \"artworkUrl60\":\"http://a3.mzstatic.com/us/r1000/018/Music/0e/66/cb/mzi.lfccwird.60x60-50.jpg\", + \"artworkUrl100\":\"http://a4.mzstatic.com/us/r1000/018/Music/0e/66/cb/mzi.lfccwird.100x100-75.jpg\", + \"collectionPrice\":9.99, \"trackPrice\":-1.00, \"releaseDate\":\"2010-05-11T07:00:00Z\", + \"collectionExplicitness\":\"notExplicit\", \"trackExplicitness\":\"notExplicit\", + \"discCount\":1, \"discNumber\":1, \"trackCount\":10, \"trackNumber\":8, \"trackTimeMillis\":448028, + \"country\":\"USA\", \"currency\":\"USD\", \"primaryGenreName\":\"Jazz\"}, \n{\"wrapperType\":\"track\", + \"kind\":\"song\", \"artistId\":5117774, \"collectionId\":370608373, \"trackId\":370611538, + \"artistName\":\"José James & Jef Neve\", \"collectionName\":\"For All We Know + (Bonus Track Version)\", \"trackName\":\"Tenderly\", \"collectionCensoredName\":\"For + All We Know (Bonus Track Version)\", \"trackCensoredName\":\"Tenderly\", \"artistViewUrl\":\"http://itunes.apple.com/us/artist/jose-james/id5117774?uo=4\", + \"collectionViewUrl\":\"http://itunes.apple.com/us/album/tenderly/id370608373?i=370611538&uo=4\", + \"trackViewUrl\":\"http://itunes.apple.com/us/album/tenderly/id370608373?i=370611538&uo=4\", + \"previewUrl\":\"http://a1.mzstatic.com/us/r1000/027/Music/78/89/68/mzi.wxudstde.aac.p.m4a\", + \"artworkUrl30\":\"http://a4.mzstatic.com/us/r1000/018/Music/0e/66/cb/mzi.lfccwird.30x30-50.jpg\", + \"artworkUrl60\":\"http://a3.mzstatic.com/us/r1000/018/Music/0e/66/cb/mzi.lfccwird.60x60-50.jpg\", + \"artworkUrl100\":\"http://a4.mzstatic.com/us/r1000/018/Music/0e/66/cb/mzi.lfccwird.100x100-75.jpg\", + \"collectionPrice\":9.99, \"trackPrice\":-1.00, \"releaseDate\":\"2010-05-11T07:00:00Z\", + \"collectionExplicitness\":\"notExplicit\", \"trackExplicitness\":\"notExplicit\", + \"discCount\":1, \"discNumber\":1, \"trackCount\":10, \"trackNumber\":6, \"trackTimeMillis\":445817, + \"country\":\"USA\", \"currency\":\"USD\", \"primaryGenreName\":\"Jazz\"}, \n{\"wrapperType\":\"track\", + \"kind\":\"song\", \"artistId\":5117774, \"collectionId\":370608373, \"trackId\":370611857, + \"artistName\":\"José James & Jef Neve\", \"collectionName\":\"For All We Know + (Bonus Track Version)\", \"trackName\":\"Georgia On My Mind\", \"collectionCensoredName\":\"For + All We Know (Bonus Track Version)\", \"trackCensoredName\":\"Georgia On My Mind\", + \"artistViewUrl\":\"http://itunes.apple.com/us/artist/jose-james/id5117774?uo=4\", + \"collectionViewUrl\":\"http://itunes.apple.com/us/album/georgia-on-my-mind/id370608373?i=370611857&uo=4\", + \"trackViewUrl\":\"http://itunes.apple.com/us/album/georgia-on-my-mind/id370608373?i=370611857&uo=4\", + \"previewUrl\":\"http://a5.mzstatic.com/us/r1000/050/Music/c8/e3/6b/mzi.dbxncbgm.aac.p.m4a\", + \"artworkUrl30\":\"http://a4.mzstatic.com/us/r1000/018/Music/0e/66/cb/mzi.lfccwird.30x30-50.jpg\", + \"artworkUrl60\":\"http://a3.mzstatic.com/us/r1000/018/Music/0e/66/cb/mzi.lfccwird.60x60-50.jpg\", + \"artworkUrl100\":\"http://a4.mzstatic.com/us/r1000/018/Music/0e/66/cb/mzi.lfccwird.100x100-75.jpg\", + \"collectionPrice\":9.99, \"trackPrice\":-1.00, \"releaseDate\":\"2010-05-11T07:00:00Z\", + \"collectionExplicitness\":\"notExplicit\", \"trackExplicitness\":\"notExplicit\", + \"discCount\":1, \"discNumber\":1, \"trackCount\":10, \"trackNumber\":10, \"trackTimeMillis\":433665, + \"country\":\"USA\", \"currency\":\"USD\", \"primaryGenreName\":\"Jazz\"}, \n{\"wrapperType\":\"track\", + \"kind\":\"song\", \"artistId\":5117774, \"collectionId\":394049927, \"trackId\":394050366, + \"artistName\":\"José James\", \"collectionName\":\"Saint-Germain-des-Prés Café + (The Blue Edition by Mr. Scruff)\", \"trackName\":\"Desire (Moodyman Remix)\", + \"collectionCensoredName\":\"Saint-Germain-des-Prés Café (The Blue Edition by + Mr. Scruff)\", \"trackCensoredName\":\"Desire (Moodyman Remix)\", \"artistViewUrl\":\"http://itunes.apple.com/us/artist/jose-james/id5117774?uo=4\", + \"collectionViewUrl\":\"http://itunes.apple.com/us/album/desire-moodyman-remix/id394049927?i=394050366&uo=4\", + \"trackViewUrl\":\"http://itunes.apple.com/us/album/desire-moodyman-remix/id394049927?i=394050366&uo=4\", + \"previewUrl\":\"http://a2.mzstatic.com/us/r1000/049/Music/28/5f/55/mzi.sewnbcsw.aac.p.m4a\", + \"artworkUrl30\":\"http://a5.mzstatic.com/us/r1000/002/Music/21/0d/28/mzi.ojpdsoax.30x30-50.jpg\", + \"artworkUrl60\":\"http://a4.mzstatic.com/us/r1000/002/Music/21/0d/28/mzi.ojpdsoax.60x60-50.jpg\", + \"artworkUrl100\":\"http://a4.mzstatic.com/us/r1000/002/Music/21/0d/28/mzi.ojpdsoax.100x100-75.jpg\", + \"collectionPrice\":15.99, \"trackPrice\":-1.00, \"releaseDate\":\"2010-10-11T07:00:00Z\", + \"collectionExplicitness\":\"notExplicit\", \"trackExplicitness\":\"notExplicit\", + \"discCount\":2, \"discNumber\":1, \"trackCount\":19, \"trackNumber\":18, \"trackTimeMillis\":306214, + \"country\":\"USA\", \"currency\":\"USD\", \"primaryGenreName\":\"Electronic\"}, + \n{\"wrapperType\":\"track\", \"kind\":\"song\", \"artistId\":5117774, \"collectionId\":288906052, + \"trackId\":288906069, \"artistName\":\"José James\", \"collectionName\":\"Desire + & Love - Single\", \"trackName\":\"Desire\", \"collectionCensoredName\":\"Desire + & Love - Single\", \"trackCensoredName\":\"Desire (Moodymann Remix)\", \"artistViewUrl\":\"http://itunes.apple.com/us/artist/jose-james/id5117774?uo=4\", + \"collectionViewUrl\":\"http://itunes.apple.com/us/album/desire-moodymann-remix/id288906052?i=288906069&uo=4\", + \"trackViewUrl\":\"http://itunes.apple.com/us/album/desire-moodymann-remix/id288906052?i=288906069&uo=4\", + \"previewUrl\":\"http://a3.mzstatic.com/us/r1000/013/Music/28/9b/e7/mzm.djwbtrju.aac.p.m4a\", + \"artworkUrl30\":\"http://a1.mzstatic.com/us/r1000/045/Features/77/b8/9f/dj.qqmyenao.30x30-50.jpg\", + \"artworkUrl60\":\"http://a3.mzstatic.com/us/r1000/045/Features/77/b8/9f/dj.qqmyenao.60x60-50.jpg\", + \"artworkUrl100\":\"http://a4.mzstatic.com/us/r1000/045/Features/77/b8/9f/dj.qqmyenao.100x100-75.jpg\", + \"collectionPrice\":1.98, \"trackPrice\":0.99, \"releaseDate\":\"2008-09-21T07:00:00Z\", + \"collectionExplicitness\":\"notExplicit\", \"trackExplicitness\":\"notExplicit\", + \"discCount\":1, \"discNumber\":1, \"trackCount\":2, \"trackNumber\":1, \"trackTimeMillis\":340507, + \"country\":\"USA\", \"currency\":\"USD\", \"primaryGenreName\":\"Dance\"}, + \n{\"wrapperType\":\"track\", \"kind\":\"song\", \"artistId\":5117774, \"collectionId\":291596901, + \"trackId\":291597047, \"artistName\":\"José James\", \"collectionName\":\"Brownswood + Bubblers Two\", \"trackName\":\"The Dreamer\", \"collectionCensoredName\":\"Brownswood + Bubblers Two\", \"trackCensoredName\":\"The Dreamer\", \"artistViewUrl\":\"http://itunes.apple.com/us/artist/jose-james/id5117774?uo=4\", + \"collectionViewUrl\":\"http://itunes.apple.com/us/album/the-dreamer/id291596901?i=291597047&uo=4\", + \"trackViewUrl\":\"http://itunes.apple.com/us/album/the-dreamer/id291596901?i=291597047&uo=4\", + \"previewUrl\":\"http://a5.mzstatic.com/us/r1000/039/Music/89/60/db/mzm.wpcdjonl.aac.p.m4a\", + \"artworkUrl30\":\"http://a3.mzstatic.com/us/r1000/025/Music/f9/bd/6d/mzi.qagrzrgg.30x30-50.jpg\", + \"artworkUrl60\":\"http://a2.mzstatic.com/us/r1000/025/Music/f9/bd/6d/mzi.qagrzrgg.60x60-50.jpg\", + \"artworkUrl100\":\"http://a2.mzstatic.com/us/r1000/025/Music/f9/bd/6d/mzi.qagrzrgg.100x100-75.jpg\", + \"collectionPrice\":10.99, \"trackPrice\":0.99, \"releaseDate\":\"2007-07-06T07:00:00Z\", + \"collectionExplicitness\":\"notExplicit\", \"trackExplicitness\":\"notExplicit\", + \"discCount\":1, \"discNumber\":1, \"trackCount\":16, \"trackNumber\":16, \"trackTimeMillis\":420453, + \"country\":\"USA\", \"currency\":\"USD\", \"primaryGenreName\":\"Dance\"}, + \n{\"wrapperType\":\"track\", \"kind\":\"song\", \"artistId\":467392350, \"collectionId\":467392541, + \"trackId\":467392545, \"artistName\":\"José James\", \"collectionName\":\"Trouble + - Single\", \"trackName\":\"Trouble\", \"collectionCensoredName\":\"Trouble + - Single\", \"trackCensoredName\":\"Trouble\", \"artistViewUrl\":\"http://itunes.apple.com/us/artist/jose-james/id467392350?uo=4\", + \"collectionViewUrl\":\"http://itunes.apple.com/us/album/trouble/id467392541?i=467392545&uo=4\", + \"trackViewUrl\":\"http://itunes.apple.com/us/album/trouble/id467392541?i=467392545&uo=4\", + \"previewUrl\":\"http://a5.mzstatic.com/us/r30/Music/36/ea/1c/mzi.snbmfqwe.aac.p.m4a\", + \"artworkUrl30\":\"http://a3.mzstatic.com/us/r30/Music/39/88/4d/mzi.yllvcdlb.30x30-50.jpg\", + \"artworkUrl60\":\"http://a5.mzstatic.com/us/r30/Music/39/88/4d/mzi.yllvcdlb.60x60-50.jpg\", + \"artworkUrl100\":\"http://a5.mzstatic.com/us/r30/Music/39/88/4d/mzi.yllvcdlb.100x100-75.jpg\", + \"collectionPrice\":0.99, \"trackPrice\":0.99, \"releaseDate\":\"2011-10-14T07:00:00Z\", + \"collectionExplicitness\":\"notExplicit\", \"trackExplicitness\":\"notExplicit\", + \"discCount\":1, \"discNumber\":1, \"trackCount\":1, \"trackNumber\":1, \"trackTimeMillis\":201700, + \"country\":\"USA\", \"currency\":\"USD\", \"primaryGenreName\":\"R&B/Soul\"}, + \n{\"wrapperType\":\"track\", \"kind\":\"song\", \"artistId\":5117774, \"collectionId\":286264618, + \"trackId\":286264685, \"artistName\":\"José James & Flying Lotus\", \"collectionName\":\"Park + Bench People - EP\", \"trackName\":\"Visions of Violet\", \"collectionCensoredName\":\"Park + Bench People - EP\", \"trackCensoredName\":\"Visions of Violet\", \"artistViewUrl\":\"http://itunes.apple.com/us/artist/jose-james/id5117774?uo=4\", + \"collectionViewUrl\":\"http://itunes.apple.com/us/album/visions-of-violet/id286264618?i=286264685&uo=4\", + \"trackViewUrl\":\"http://itunes.apple.com/us/album/visions-of-violet/id286264618?i=286264685&uo=4\", + \"previewUrl\":\"http://a2.mzstatic.com/us/r1000/047/Music/25/3d/19/mzm.dsstwydd.aac.p.m4a\", + \"artworkUrl30\":\"http://a3.mzstatic.com/us/r1000/058/Features/4e/f9/7f/dj.yzdqoree.30x30-50.jpg\", + \"artworkUrl60\":\"http://a5.mzstatic.com/us/r1000/058/Features/4e/f9/7f/dj.yzdqoree.60x60-50.jpg\", + \"artworkUrl100\":\"http://a3.mzstatic.com/us/r1000/058/Features/4e/f9/7f/dj.yzdqoree.100x100-75.jpg\", + \"collectionPrice\":1.99, \"trackPrice\":0.99, \"releaseDate\":\"2008-08-24T07:00:00Z\", + \"collectionExplicitness\":\"notExplicit\", \"trackExplicitness\":\"notExplicit\", + \"discCount\":1, \"discNumber\":1, \"trackCount\":2, \"trackNumber\":2, \"trackTimeMillis\":139307, + \"country\":\"USA\", \"currency\":\"USD\", \"primaryGenreName\":\"Jazz\"}, \n{\"wrapperType\":\"track\", + \"kind\":\"song\", \"artistId\":5117774, \"collectionId\":282084350, \"trackId\":282084363, + \"artistName\":\"José James\", \"collectionName\":\"Gilles Peterson In the House\", + \"trackName\":\"Spirits Above\", \"collectionCensoredName\":\"Gilles Peterson + In the House\", \"trackCensoredName\":\"Spirits Above\", \"artistViewUrl\":\"http://itunes.apple.com/us/artist/jose-james/id5117774?uo=4\", + \"collectionViewUrl\":\"http://itunes.apple.com/us/album/spirits-above/id282084350?i=282084363&uo=4\", + \"trackViewUrl\":\"http://itunes.apple.com/us/album/spirits-above/id282084350?i=282084363&uo=4\", + \"previewUrl\":\"http://a3.mzstatic.com/us/r1000/037/Music/e1/eb/f4/mzm.arzoanfi.aac.p.m4a\", + \"artworkUrl30\":\"http://a1.mzstatic.com/us/r1000/048/Music/f2/c6/0d/mzi.jupqudrd.30x30-50.jpg\", + \"artworkUrl60\":\"http://a5.mzstatic.com/us/r1000/048/Music/f2/c6/0d/mzi.jupqudrd.60x60-50.jpg\", + \"artworkUrl100\":\"http://a5.mzstatic.com/us/r1000/048/Music/f2/c6/0d/mzi.jupqudrd.100x100-75.jpg\", + \"collectionPrice\":3.99, \"trackPrice\":0.99, \"releaseDate\":\"2008-06-02T07:00:00Z\", + \"collectionExplicitness\":\"notExplicit\", \"trackExplicitness\":\"notExplicit\", + \"discCount\":1, \"discNumber\":1, \"trackCount\":12, \"trackNumber\":4, \"trackTimeMillis\":410587, + \"country\":\"USA\", \"currency\":\"USD\", \"primaryGenreName\":\"Dance\"}, + \n{\"wrapperType\":\"track\", \"kind\":\"song\", \"artistId\":5117774, \"collectionId\":395704841, + \"trackId\":395704962, \"artistName\":\"José James\", \"collectionName\":\"Gilles + Peterson: Worldwide - A Celebration of His Snydicated Radio Show\", \"trackName\":\"The + Dreamer\", \"collectionCensoredName\":\"Gilles Peterson: Worldwide - A Celebration + of His Snydicated Radio Show\", \"trackCensoredName\":\"The Dreamer\", \"artistViewUrl\":\"http://itunes.apple.com/us/artist/jose-james/id5117774?uo=4\", + \"collectionViewUrl\":\"http://itunes.apple.com/us/album/the-dreamer/id395704841?i=395704962&uo=4\", + \"trackViewUrl\":\"http://itunes.apple.com/us/album/the-dreamer/id395704841?i=395704962&uo=4\", + \"previewUrl\":\"http://a1.mzstatic.com/us/r1000/025/Music/ed/ff/1c/mzi.bmkfrqyo.aac.p.m4a\", + \"artworkUrl30\":\"http://a4.mzstatic.com/us/r1000/035/Music/01/2b/c8/mzi.zffvkmva.30x30-50.jpg\", + \"artworkUrl60\":\"http://a3.mzstatic.com/us/r1000/035/Music/01/2b/c8/mzi.zffvkmva.60x60-50.jpg\", + \"artworkUrl100\":\"http://a5.mzstatic.com/us/r1000/035/Music/01/2b/c8/mzi.zffvkmva.100x100-75.jpg\", + \"collectionPrice\":9.99, \"trackPrice\":0.99, \"releaseDate\":\"2010-10-08T07:00:00Z\", + \"collectionExplicitness\":\"notExplicit\", \"trackExplicitness\":\"notExplicit\", + \"discCount\":1, \"discNumber\":1, \"trackCount\":17, \"trackNumber\":15, \"trackTimeMillis\":422149, + \"country\":\"USA\", \"currency\":\"USD\", \"primaryGenreName\":\"R&B/Soul\"}, + \n{\"wrapperType\":\"track\", \"kind\":\"song\", \"artistId\":5117774, \"collectionId\":334904540, + \"trackId\":334904562, \"artistName\":\"José James\", \"collectionName\":\"Blackmagic + Remixes - EP\", \"trackName\":\"Blackmagic\", \"collectionCensoredName\":\"Blackmagic + Remixes - EP\", \"trackCensoredName\":\"Blackmagic (Joy Orbison's Recreation)\", + \"artistViewUrl\":\"http://itunes.apple.com/us/artist/jose-james/id5117774?uo=4\", + \"collectionViewUrl\":\"http://itunes.apple.com/us/album/blackmagic-joy-orbisons-recreation/id334904540?i=334904562&uo=4\", + \"trackViewUrl\":\"http://itunes.apple.com/us/album/blackmagic-joy-orbisons-recreation/id334904540?i=334904562&uo=4\", + \"previewUrl\":\"http://a1.mzstatic.com/us/r1000/048/Music/ef/76/00/mzm.xqhwytnx.aac.p.m4a\", + \"artworkUrl30\":\"http://a5.mzstatic.com/us/r1000/002/Music/7b/c5/a7/mzi.kgvrbwuh.30x30-50.jpg\", + \"artworkUrl60\":\"http://a4.mzstatic.com/us/r1000/002/Music/7b/c5/a7/mzi.kgvrbwuh.60x60-50.jpg\", + \"artworkUrl100\":\"http://a1.mzstatic.com/us/r1000/002/Music/7b/c5/a7/mzi.kgvrbwuh.100x100-75.jpg\", + \"collectionPrice\":3.96, \"trackPrice\":0.99, \"releaseDate\":\"2009-11-01T07:00:00Z\", + \"collectionExplicitness\":\"notExplicit\", \"trackExplicitness\":\"notExplicit\", + \"discCount\":1, \"discNumber\":1, \"trackCount\":4, \"trackNumber\":1, \"trackTimeMillis\":355804, + \"country\":\"USA\", \"currency\":\"USD\", \"primaryGenreName\":\"Dance\"}]\n}\n\n\n" + http_version: '1.1' diff --git a/spec/fixtures/Tunes_Client.yml b/spec/fixtures/Tunes_Client.yml new file mode 100644 index 0000000..4aee6de --- /dev/null +++ b/spec/fixtures/Tunes_Client.yml @@ -0,0 +1,6893 @@ +--- +- !ruby/struct:VCR::HTTPInteraction + request: !ruby/struct:VCR::Request + method: :get + uri: http://ax.itunes.apple.com:80/WebObjects/MZStoreServices.woa/wa/wsLookup?id=396405320 + body: + headers: + accept: + - application/json + user-agent: + - ITunes Ruby Gem 0.5.5 + accept-encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + response: !ruby/struct:VCR::Response + status: !ruby/struct:VCR::ResponseStatus + code: 200 + message: OK + headers: + x-apple-orig-url-path: + - /WebObjects/MZStoreServices.woa/wa/wsLookup?id=396405320 + x-apple-translated-wo-url: + - /WebObjects/MZStoreServices.woa/wa/wsLookup?id=396405320 + x-apple-application-site: + - NWK + x-apple-max-age: + - '3600' + content-type: + - text/javascript; charset=utf-8 + x-apple-application-instance: + - '1031005' + x-webobjects-loadaverage: + - '0' + vary: + - Accept-Encoding + - X-Apple-Store-Front + expires: + - Wed, 18 Apr 2012 22:53:34 GMT + cache-control: + - max-age=0, no-cache + pragma: + - no-cache + date: + - Wed, 18 Apr 2012 22:53:34 GMT + content-length: + - '777' + connection: + - keep-alive + x-apple-partner: + - origin.0 + body: ! "\n\n\n{\n \"resultCount\":1,\n \"results\": [\n{\"wrapperType\":\"collection\", + \"collectionType\":\"Album\", \"artistId\":387969348, \"collectionId\":396405320, + \"artistName\":\"Various Artists\", \"collectionName\":\"Hold it Down - Single\", + \"collectionCensoredName\":\"Hold it Down - Single\", \"collectionViewUrl\":\"http://itunes.apple.com/us/album/hold-it-down-single/id396405320?uo=4\", + \"artworkUrl60\":\"http://a3.mzstatic.com/us/r1000/023/Music/b2/fe/38/mzi.gtazuzmz.60x60-50.jpg\", + \"artworkUrl100\":\"http://a1.mzstatic.com/us/r1000/023/Music/b2/fe/38/mzi.gtazuzmz.100x100-75.jpg\", + \"collectionPrice\":1.98, \"collectionExplicitness\":\"notExplicit\", \"trackCount\":2, + \"copyright\":\"2010 Well Rounded Records\", \"country\":\"USA\", \"currency\":\"USD\", + \"releaseDate\":\"2010-10-25T07:00:00Z\", \"primaryGenreName\":\"Dance\"}]\n}\n\n\n" + http_version: '1.1' +- !ruby/struct:VCR::HTTPInteraction + request: !ruby/struct:VCR::Request + method: :get + uri: http://ax.itunes.apple.com:80/WebObjects/MZStoreServices.woa/wa/wsLookup?amgArtistId=792844 + body: + headers: + accept: + - application/json + user-agent: + - ITunes Ruby Gem 0.5.5 + accept-encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + response: !ruby/struct:VCR::Response + status: !ruby/struct:VCR::ResponseStatus + code: 200 + message: OK + headers: + x-apple-orig-url-path: + - /WebObjects/MZStoreServices.woa/wa/wsLookup?amgArtistId=792844 + x-apple-translated-wo-url: + - /WebObjects/MZStoreServices.woa/wa/wsLookup?amgArtistId=792844 + x-apple-application-site: + - NWK + x-apple-max-age: + - '3600' + content-type: + - text/javascript; charset=utf-8 + x-apple-application-instance: + - '1017014' + x-webobjects-loadaverage: + - '0' + vary: + - Accept-Encoding + - X-Apple-Store-Front + expires: + - Wed, 18 Apr 2012 22:53:34 GMT + cache-control: + - max-age=0, no-cache + pragma: + - no-cache + date: + - Wed, 18 Apr 2012 22:53:34 GMT + content-length: + - '287' + connection: + - keep-alive + x-apple-partner: + - origin.0 + body: ! "\n\n\n{\n \"resultCount\":1,\n \"results\": [\n{\"wrapperType\":\"artist\", + \"artistType\":\"Artist\", \"artistName\":\"Burial\", \"artistLinkUrl\":\"http://itunes.apple.com/us/artist/burial/id468355684?uo=4\", + \"artistId\":468355684, \"amgArtistId\":792844, \"primaryGenreName\":\"Electronic\", + \"primaryGenreId\":7}]\n}\n\n\n" + http_version: '1.1' +- !ruby/struct:VCR::HTTPInteraction + request: !ruby/struct:VCR::Request + method: :get + uri: http://ax.itunes.apple.com:80/WebObjects/MZStoreServices.woa/wa/wsLookup?amgArtistId=468749,5723 + body: + headers: + accept: + - application/json + user-agent: + - ITunes Ruby Gem 0.5.5 + accept-encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + response: !ruby/struct:VCR::Response + status: !ruby/struct:VCR::ResponseStatus + code: 200 + message: OK + headers: + x-apple-orig-url-path: + - /WebObjects/MZStoreServices.woa/wa/wsLookup?amgArtistId=468749%2C5723 + x-apple-translated-wo-url: + - /WebObjects/MZStoreServices.woa/wa/wsLookup?amgArtistId=468749%2C5723 + x-apple-application-site: + - ST11 + x-apple-max-age: + - '3600' + content-type: + - text/javascript; charset=utf-8 + x-apple-application-instance: + - '2044001' + x-webobjects-loadaverage: + - '0' + vary: + - Accept-Encoding + - X-Apple-Store-Front + expires: + - Wed, 18 Apr 2012 22:53:35 GMT + cache-control: + - max-age=0, no-cache + pragma: + - no-cache + date: + - Wed, 18 Apr 2012 22:53:35 GMT + content-length: + - '512' + connection: + - keep-alive + x-apple-partner: + - origin.0 + body: ! "\n\n\n{\n \"resultCount\":2,\n \"results\": [\n{\"wrapperType\":\"artist\", + \"artistType\":\"Artist\", \"artistName\":\"Jack Johnson\", \"artistLinkUrl\":\"http://itunes.apple.com/us/artist/jack-johnson/id909253?uo=4\", + \"artistId\":909253, \"amgArtistId\":468749, \"primaryGenreName\":\"Rock\", + \"primaryGenreId\":21}, \n{\"wrapperType\":\"artist\", \"artistType\":\"Artist\", + \"artistName\":\"U2\", \"artistLinkUrl\":\"http://itunes.apple.com/us/artist/u2/id78500?uo=4\", + \"artistId\":78500, \"amgArtistId\":5723, \"primaryGenreName\":\"Rock\", \"primaryGenreId\":21}]\n}\n\n\n" + http_version: '1.1' +- !ruby/struct:VCR::HTTPInteraction + request: !ruby/struct:VCR::Request + method: :get + uri: http://ax.itunes.apple.com:80/WebObjects/MZStoreServices.woa/wa/wsLookup?amgAlbumId=15197 + body: + headers: + accept: + - application/json + user-agent: + - ITunes Ruby Gem 0.5.5 + accept-encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + response: !ruby/struct:VCR::Response + status: !ruby/struct:VCR::ResponseStatus + code: 200 + message: OK + headers: + x-apple-orig-url-path: + - /WebObjects/MZStoreServices.woa/wa/wsLookup?amgAlbumId=15197 + x-apple-translated-wo-url: + - /WebObjects/MZStoreServices.woa/wa/wsLookup?amgAlbumId=15197 + x-apple-application-site: + - ST11 + x-apple-max-age: + - '3600' + content-type: + - text/javascript; charset=utf-8 + x-apple-application-instance: + - '2041006' + x-webobjects-loadaverage: + - '0' + vary: + - Accept-Encoding + - X-Apple-Store-Front + expires: + - Wed, 18 Apr 2012 22:53:35 GMT + cache-control: + - max-age=0, no-cache + pragma: + - no-cache + date: + - Wed, 18 Apr 2012 22:53:35 GMT + content-length: + - '850' + connection: + - keep-alive + x-apple-partner: + - origin.0 + body: ! "\n\n\n{\n \"resultCount\":1,\n \"results\": [\n{\"wrapperType\":\"collection\", + \"collectionType\":\"Album\", \"artistId\":577675, \"collectionId\":265615609, + \"amgArtistId\":5142, \"artistName\":\"Wilson Pickett\", \"collectionName\":\"Hey + Jude\", \"collectionCensoredName\":\"Hey Jude\", \"artistViewUrl\":\"http://itunes.apple.com/us/artist/wilson-pickett/id577675?uo=4\", + \"collectionViewUrl\":\"http://itunes.apple.com/us/album/hey-jude/id265615609?uo=4\", + \"artworkUrl60\":\"http://a2.mzstatic.com/us/r1000/008/Music/79/b3/3f/mzi.asgqsmzl.60x60-50.jpg\", + \"artworkUrl100\":\"http://a4.mzstatic.com/us/r1000/008/Music/79/b3/3f/mzi.asgqsmzl.100x100-75.jpg\", + \"collectionPrice\":7.99, \"collectionExplicitness\":\"notExplicit\", \"trackCount\":11, + \"copyright\":\"1969 Atlantic Records Corporation\", \"country\":\"USA\", \"currency\":\"USD\", + \"releaseDate\":\"2007-10-16T07:00:00Z\", \"primaryGenreName\":\"R&B/Soul\"}]\n}\n\n\n" + http_version: '1.1' +- !ruby/struct:VCR::HTTPInteraction + request: !ruby/struct:VCR::Request + method: :get + uri: http://ax.itunes.apple.com:80/WebObjects/MZStoreServices.woa/wa/wsLookup?amgAlbumId=15197,15198 + body: + headers: + accept: + - application/json + user-agent: + - ITunes Ruby Gem 0.5.5 + accept-encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + response: !ruby/struct:VCR::Response + status: !ruby/struct:VCR::ResponseStatus + code: 200 + message: OK + headers: + x-apple-orig-url-path: + - /WebObjects/MZStoreServices.woa/wa/wsLookup?amgAlbumId=15197%2C15198 + x-apple-translated-wo-url: + - /WebObjects/MZStoreServices.woa/wa/wsLookup?amgAlbumId=15197%2C15198 + x-apple-application-site: + - ST11 + x-apple-max-age: + - '3600' + content-type: + - text/javascript; charset=utf-8 + x-apple-application-instance: + - '2035003' + x-webobjects-loadaverage: + - '0' + vary: + - Accept-Encoding + - X-Apple-Store-Front + expires: + - Wed, 18 Apr 2012 22:53:35 GMT + cache-control: + - max-age=0, no-cache + pragma: + - no-cache + date: + - Wed, 18 Apr 2012 22:53:35 GMT + content-length: + - '850' + connection: + - keep-alive + x-apple-partner: + - origin.0 + body: ! "\n\n\n{\n \"resultCount\":1,\n \"results\": [\n{\"wrapperType\":\"collection\", + \"collectionType\":\"Album\", \"artistId\":577675, \"collectionId\":265615609, + \"amgArtistId\":5142, \"artistName\":\"Wilson Pickett\", \"collectionName\":\"Hey + Jude\", \"collectionCensoredName\":\"Hey Jude\", \"artistViewUrl\":\"http://itunes.apple.com/us/artist/wilson-pickett/id577675?uo=4\", + \"collectionViewUrl\":\"http://itunes.apple.com/us/album/hey-jude/id265615609?uo=4\", + \"artworkUrl60\":\"http://a2.mzstatic.com/us/r1000/008/Music/79/b3/3f/mzi.asgqsmzl.60x60-50.jpg\", + \"artworkUrl100\":\"http://a4.mzstatic.com/us/r1000/008/Music/79/b3/3f/mzi.asgqsmzl.100x100-75.jpg\", + \"collectionPrice\":7.99, \"collectionExplicitness\":\"notExplicit\", \"trackCount\":11, + \"copyright\":\"1969 Atlantic Records Corporation\", \"country\":\"USA\", \"currency\":\"USD\", + \"releaseDate\":\"2007-10-16T07:00:00Z\", \"primaryGenreName\":\"R&B/Soul\"}]\n}\n\n\n" + http_version: '1.1' +- !ruby/struct:VCR::HTTPInteraction + request: !ruby/struct:VCR::Request + method: :get + uri: http://ax.itunes.apple.com:80/WebObjects/MZStoreServices.woa/wa/wsLookup?upc=5024545486520 + body: + headers: + accept: + - application/json + user-agent: + - ITunes Ruby Gem 0.5.5 + accept-encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + response: !ruby/struct:VCR::Response + status: !ruby/struct:VCR::ResponseStatus + code: 200 + message: OK + headers: + x-apple-orig-url-path: + - /WebObjects/MZStoreServices.woa/wa/wsLookup?upc=5024545486520 + x-apple-translated-wo-url: + - /WebObjects/MZStoreServices.woa/wa/wsLookup?upc=5024545486520 + x-apple-application-site: + - NWK + x-apple-max-age: + - '3600' + content-type: + - text/javascript; charset=utf-8 + x-apple-application-instance: + - '1019010' + x-webobjects-loadaverage: + - '0' + vary: + - Accept-Encoding + - X-Apple-Store-Front + expires: + - Wed, 18 Apr 2012 22:53:35 GMT + cache-control: + - max-age=0, no-cache + pragma: + - no-cache + date: + - Wed, 18 Apr 2012 22:53:35 GMT + content-length: + - '806' + connection: + - keep-alive + x-apple-partner: + - origin.0 + body: ! "\n\n\n{\n \"resultCount\":1,\n \"results\": [\n{\"wrapperType\":\"collection\", + \"collectionType\":\"Album\", \"artistId\":468355684, \"collectionId\":266624253, + \"amgArtistId\":792844, \"artistName\":\"Burial\", \"collectionName\":\"Untrue\", + \"collectionCensoredName\":\"Untrue\", \"artistViewUrl\":\"http://itunes.apple.com/us/artist/burial/id468355684?uo=4\", + \"collectionViewUrl\":\"http://itunes.apple.com/us/album/untrue/id266624253?uo=4\", + \"artworkUrl60\":\"http://a5.mzstatic.com/us/r30/Music/7b/dc/b0/mzi.beujtbms.60x60-50.jpg\", + \"artworkUrl100\":\"http://a2.mzstatic.com/us/r30/Music/7b/dc/b0/mzi.beujtbms.100x100-75.jpg\", + \"collectionPrice\":9.99, \"collectionExplicitness\":\"notExplicit\", \"trackCount\":13, + \"copyright\":\"2007 Hyperdub\", \"country\":\"USA\", \"currency\":\"USD\", + \"releaseDate\":\"2007-11-05T08:00:00Z\", \"primaryGenreName\":\"Electronic\"}]\n}\n\n\n" + http_version: '1.1' +- !ruby/struct:VCR::HTTPInteraction + request: !ruby/struct:VCR::Request + method: :get + uri: http://ax.itunes.apple.com:80/WebObjects/MZStoreServices.woa/wa/wsLookup?isbn=9780316069359 + body: + headers: + accept: + - application/json + user-agent: + - ITunes Ruby Gem 0.5.5 + accept-encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + response: !ruby/struct:VCR::Response + status: !ruby/struct:VCR::ResponseStatus + code: 200 + message: OK + headers: + x-apple-orig-url-path: + - /WebObjects/MZStoreServices.woa/wa/wsLookup?isbn=9780316069359 + x-apple-translated-wo-url: + - /WebObjects/MZStoreServices.woa/wa/wsLookup?isbn=9780316069359 + x-apple-application-site: + - ST11 + x-apple-max-age: + - '3600' + content-type: + - text/javascript; charset=utf-8 + x-apple-application-instance: + - '2031001' + x-webobjects-loadaverage: + - '0' + vary: + - Accept-Encoding + - X-Apple-Store-Front + expires: + - Wed, 18 Apr 2012 22:53:36 GMT + cache-control: + - max-age=0, no-cache + pragma: + - no-cache + date: + - Wed, 18 Apr 2012 22:53:36 GMT + content-length: + - '1598' + connection: + - keep-alive + x-apple-partner: + - origin.0 + body: ! "\n\n\n{\n \"resultCount\":1,\n \"results\": [\n{\"kind\":\"ebook\", \"artistId\":2087642, + \"artistName\":\"Michael Connelly\", \"price\":9.99, \n\"description\":\"Mickey + Haller has fallen on tough times. He expands his business into foreclosure defense, + only to see one of his clients accused of killing the banker she blames for + trying to take away her home.

Mickey puts his team into high gear to + exonerate Lisa Trammel, even though the evidence and his own suspicions tell + him his client is guilty. Soon after he learns that the victim had black market + dealings of his own, Haller is assaulted, too--and he's certain he's on the + right trail.

Despite the danger and uncertainty, Haller mounts the best + defense of his career in a trial where the last surprise comes after the verdict + is in. Connelly proves again why he \\\"may very well be the best novelist working + in the United States today\\\" (San Francisco Chronicle<\\/em>).\", \"genreIds\":[\"9032\", + \"38\"], \"releaseDate\":\"2011-04-05T07:00:00Z\", \"currency\":\"USD\", \"genres\":[\"Mysteries + & Thrillers\", \"Books\"], \"trackId\":395519191, \"trackName\":\"The Fifth + Witness\", \"artistIds\":[2087642], \"artworkUrl60\":\"http://a4.mzstatic.com/us/r30/Publication/7a/ae/8d/mzi.zvxoftdb.60x60-50.jpg\", + \"artistViewUrl\":\"http://itunes.apple.com/us/artist/michael-connelly/id2087642?mt=11&uo=4\", + \"trackCensoredName\":\"The Fifth Witness\", \"artworkUrl100\":\"http://a3.mzstatic.com/us/r30/Publication/7a/ae/8d/mzi.zvxoftdb.100x100-75.jpg\", + \"trackViewUrl\":\"http://itunes.apple.com/us/book/the-fifth-witness/id395519191?mt=11&uo=4\", + \"averageUserRating\":4.0, \"userRatingCount\":760}]\n}\n\n\n" + http_version: '1.1' +- !ruby/struct:VCR::HTTPInteraction + request: !ruby/struct:VCR::Request + method: :get + uri: http://ax.itunes.apple.com:80/WebObjects/MZStoreServices.woa/wa/wsSearch?limit=2&media=all&term=Michael%20Jackson + body: + headers: + accept: + - application/json + user-agent: + - ITunes Ruby Gem 0.5.5 + accept-encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + response: !ruby/struct:VCR::Response + status: !ruby/struct:VCR::ResponseStatus + code: 200 + message: OK + headers: + x-apple-orig-url-path: + - /WebObjects/MZStoreServices.woa/wa/wsSearch?term=Michael%20Jackson&media=all&limit=2 + x-apple-translated-wo-url: + - /WebObjects/MZStoreServices.woa/wa/wsSearch?term=Michael%20Jackson&media=all&limit=2 + x-apple-application-site: + - NWK + x-apple-max-age: + - '3600' + content-type: + - text/javascript; charset=utf-8 + x-apple-application-instance: + - '1005017' + x-webobjects-loadaverage: + - '0' + vary: + - Accept-Encoding + - X-Apple-Store-Front + expires: + - Wed, 18 Apr 2012 22:53:36 GMT + cache-control: + - max-age=0, no-cache + pragma: + - no-cache + date: + - Wed, 18 Apr 2012 22:53:36 GMT + content-length: + - '2656' + connection: + - keep-alive + x-apple-partner: + - origin.0 + body: ! "\n\n\n{\n \"resultCount\":2,\n \"results\": [\n{\"wrapperType\":\"track\", + \"kind\":\"song\", \"artistId\":32940, \"collectionId\":159292399, \"trackId\":159294478, + \"artistName\":\"Michael Jackson\", \"collectionName\":\"The Essential Michael + Jackson\", \"trackName\":\"Man In the Mirror\", \"collectionCensoredName\":\"The + Essential Michael Jackson\", \"trackCensoredName\":\"Man In the Mirror\", \"artistViewUrl\":\"http://itunes.apple.com/us/artist/michael-jackson/id32940?uo=4\", + \"collectionViewUrl\":\"http://itunes.apple.com/us/album/man-in-the-mirror/id159292399?i=159294478&uo=4\", + \"trackViewUrl\":\"http://itunes.apple.com/us/album/man-in-the-mirror/id159292399?i=159294478&uo=4\", + \"previewUrl\":\"http://a1.mzstatic.com/us/r1000/080/Music/96/77/c5/mzm.mpayuugn.aac.p.m4a\", + \"artworkUrl30\":\"http://a5.mzstatic.com/us/r1000/045/Features/7f/50/ee/dj.zygromnm.30x30-50.jpg\", + \"artworkUrl60\":\"http://a2.mzstatic.com/us/r1000/045/Features/7f/50/ee/dj.zygromnm.60x60-50.jpg\", + \"artworkUrl100\":\"http://a3.mzstatic.com/us/r1000/045/Features/7f/50/ee/dj.zygromnm.100x100-75.jpg\", + \"collectionPrice\":16.99, \"trackPrice\":1.29, \"releaseDate\":\"2005-07-18T07:00:00Z\", + \"collectionExplicitness\":\"notExplicit\", \"trackExplicitness\":\"notExplicit\", + \"discCount\":2, \"discNumber\":2, \"trackCount\":17, \"trackNumber\":5, \"trackTimeMillis\":318960, + \"country\":\"USA\", \"currency\":\"USD\", \"primaryGenreName\":\"Pop\"}, \n{\"wrapperType\":\"track\", + \"kind\":\"song\", \"artistId\":32940, \"collectionId\":159292399, \"trackId\":159293848, + \"artistName\":\"Michael Jackson\", \"collectionName\":\"The Essential Michael + Jackson\", \"trackName\":\"Billie Jean\", \"collectionCensoredName\":\"The Essential + Michael Jackson\", \"trackCensoredName\":\"Billie Jean (Single Version)\", \"artistViewUrl\":\"http://itunes.apple.com/us/artist/michael-jackson/id32940?uo=4\", + \"collectionViewUrl\":\"http://itunes.apple.com/us/album/billie-jean-single-version/id159292399?i=159293848&uo=4\", + \"trackViewUrl\":\"http://itunes.apple.com/us/album/billie-jean-single-version/id159292399?i=159293848&uo=4\", + \"previewUrl\":\"http://a5.mzstatic.com/us/r1000/061/Music/52/2c/18/mzm.incrgvjy.aac.p.m4a\", + \"artworkUrl30\":\"http://a5.mzstatic.com/us/r1000/045/Features/7f/50/ee/dj.zygromnm.30x30-50.jpg\", + \"artworkUrl60\":\"http://a2.mzstatic.com/us/r1000/045/Features/7f/50/ee/dj.zygromnm.60x60-50.jpg\", + \"artworkUrl100\":\"http://a3.mzstatic.com/us/r1000/045/Features/7f/50/ee/dj.zygromnm.100x100-75.jpg\", + \"collectionPrice\":16.99, \"trackPrice\":1.29, \"releaseDate\":\"2005-07-18T07:00:00Z\", + \"collectionExplicitness\":\"notExplicit\", \"trackExplicitness\":\"notExplicit\", + \"discCount\":2, \"discNumber\":1, \"trackCount\":21, \"trackNumber\":16, \"trackTimeMillis\":292960, + \"country\":\"USA\", \"currency\":\"USD\", \"primaryGenreName\":\"Pop\"}]\n}\n\n\n" + http_version: '1.1' +- !ruby/struct:VCR::HTTPInteraction + request: !ruby/struct:VCR::Request + method: :get + uri: http://ax.itunes.apple.com:80/WebObjects/MZStoreServices.woa/wa/wsSearch?media=all&term=Michael%20Jackson + body: + headers: + accept: + - application/json + user-agent: + - ITunes Ruby Gem 0.5.5 + accept-encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + response: !ruby/struct:VCR::Response + status: !ruby/struct:VCR::ResponseStatus + code: 200 + message: OK + headers: + x-apple-orig-url-path: + - /WebObjects/MZStoreServices.woa/wa/wsSearch?term=Michael%20Jackson&media=all + x-apple-translated-wo-url: + - /WebObjects/MZStoreServices.woa/wa/wsSearch?term=Michael%20Jackson&media=all + x-apple-application-site: + - ST11 + x-apple-max-age: + - '3600' + content-type: + - text/javascript; charset=utf-8 + x-apple-application-instance: + - '2081011' + x-webobjects-loadaverage: + - '0' + vary: + - Accept-Encoding + - X-Apple-Store-Front + expires: + - Wed, 18 Apr 2012 22:53:36 GMT + cache-control: + - max-age=0, no-cache + pragma: + - no-cache + date: + - Wed, 18 Apr 2012 22:53:36 GMT + transfer-encoding: + - chunked + connection: + - Transfer-Encoding + - keep-alive + x-apple-partner: + - origin.0 + body: ! "\n\n\n{\n \"resultCount\":50,\n \"results\": [\n{\"wrapperType\":\"track\", + \"kind\":\"music-video\", \"artistId\":32940, \"collectionId\":273047558, \"trackId\":273047865, + \"artistName\":\"Michael Jackson\", \"collectionName\":\"Thriller (25th Anniversary, + Zombie Cover)\", \"trackName\":\"Thriller\", \"collectionCensoredName\":\"Thriller + (25th Anniversary, Zombie Cover)\", \"trackCensoredName\":\"Thriller\", \"artistViewUrl\":\"http://itunes.apple.com/us/artist/michael-jackson/id32940?uo=4\", + \"collectionViewUrl\":\"http://itunes.apple.com/us/music-video/thriller/id273047865?uo=4\", + \"trackViewUrl\":\"http://itunes.apple.com/us/music-video/thriller/id273047865?uo=4\", + \"previewUrl\":\"http://a203.v.phobos.apple.com/us/r1000/070/Video/e3/d4/ac/mzi.anekpegv..640x464.h264lc.u.p.m4v\", + \"artworkUrl30\":\"http://a2.mzstatic.com/us/r1000/059/Music/ff/ad/55/mzi.hkawbdou.40x30-75.jpg\", + \"artworkUrl60\":\"http://a3.mzstatic.com/us/r1000/059/Music/ff/ad/55/mzi.hkawbdou.80x60-75.jpg\", + \"artworkUrl100\":\"http://a2.mzstatic.com/us/r1000/059/Music/ff/ad/55/mzi.hkawbdou.100x100-75.jpg\", + \"collectionPrice\":13.99, \"trackPrice\":-1.00, \"releaseDate\":\"2008-02-11T08:00:00Z\", + \"collectionExplicitness\":\"notExplicit\", \"trackExplicitness\":\"notExplicit\", + \"discCount\":1, \"discNumber\":1, \"trackCount\":21, \"trackNumber\":20, \"trackTimeMillis\":813113.0, + \"country\":\"USA\", \"currency\":\"USD\", \"primaryGenreName\":\"Pop\"}, \n{\"wrapperType\":\"track\", + \"kind\":\"music-video\", \"artistId\":32940, \"collectionId\":273047558, \"trackId\":273047584, + \"artistName\":\"Michael Jackson\", \"collectionName\":\"Thriller (25th Anniversary, + Zombie Cover)\", \"trackName\":\"Billie Jean\", \"collectionCensoredName\":\"Thriller + (25th Anniversary, Zombie Cover)\", \"trackCensoredName\":\"Billie Jean\", \"artistViewUrl\":\"http://itunes.apple.com/us/artist/michael-jackson/id32940?uo=4\", + \"collectionViewUrl\":\"http://itunes.apple.com/us/music-video/billie-jean/id273047584?uo=4\", + \"trackViewUrl\":\"http://itunes.apple.com/us/music-video/billie-jean/id273047584?uo=4\", + \"previewUrl\":\"http://a898.v.phobos.apple.com/us/r1000/113/Video/90/e2/56/mzi.hyvtgxgv..640x464.h264lc.u.p.m4v\", + \"artworkUrl30\":\"http://a4.mzstatic.com/us/r1000/039/Music/c7/b3/1d/mzi.daodeivd.40x30-75.jpg\", + \"artworkUrl60\":\"http://a2.mzstatic.com/us/r1000/039/Music/c7/b3/1d/mzi.daodeivd.80x60-75.jpg\", + \"artworkUrl100\":\"http://a5.mzstatic.com/us/r1000/039/Music/c7/b3/1d/mzi.daodeivd.100x100-75.jpg\", + \"collectionPrice\":13.99, \"trackPrice\":-1.00, \"releaseDate\":\"2008-02-11T08:00:00Z\", + \"collectionExplicitness\":\"notExplicit\", \"trackExplicitness\":\"notExplicit\", + \"discCount\":1, \"discNumber\":1, \"trackCount\":21, \"trackNumber\":18, \"trackTimeMillis\":294289.0, + \"country\":\"USA\", \"currency\":\"USD\", \"primaryGenreName\":\"Pop\"}, \n{\"wrapperType\":\"track\", + \"kind\":\"music-video\", \"artistId\":32940, \"collectionId\":273047558, \"trackId\":273047811, + \"artistName\":\"Michael Jackson\", \"collectionName\":\"Thriller (25th Anniversary, + Zombie Cover)\", \"trackName\":\"Beat It\", \"collectionCensoredName\":\"Thriller + (25th Anniversary, Zombie Cover)\", \"trackCensoredName\":\"Beat It (Restored + Version)\", \"artistViewUrl\":\"http://itunes.apple.com/us/artist/michael-jackson/id32940?uo=4\", + \"collectionViewUrl\":\"http://itunes.apple.com/us/music-video/beat-it-restored-version/id273047811?uo=4\", + \"trackViewUrl\":\"http://itunes.apple.com/us/music-video/beat-it-restored-version/id273047811?uo=4\", + \"previewUrl\":\"http://a1449.v.phobos.apple.com/us/r1000/119/Video/b8/3a/95/mzi.dazhbdfb..640x464.h264lc.u.p.m4v\", + \"artworkUrl30\":\"http://a4.mzstatic.com/us/r1000/017/Music/1d/64/a0/mzi.clyayzus.40x30-75.jpg\", + \"artworkUrl60\":\"http://a2.mzstatic.com/us/r1000/017/Music/1d/64/a0/mzi.clyayzus.80x60-75.jpg\", + \"artworkUrl100\":\"http://a3.mzstatic.com/us/r1000/017/Music/1d/64/a0/mzi.clyayzus.100x100-75.jpg\", + \"collectionPrice\":13.99, \"trackPrice\":-1.00, \"releaseDate\":\"2008-02-11T08:00:00Z\", + \"collectionExplicitness\":\"notExplicit\", \"trackExplicitness\":\"notExplicit\", + \"discCount\":1, \"discNumber\":1, \"trackCount\":21, \"trackNumber\":19, \"trackTimeMillis\":296730.0, + \"country\":\"USA\", \"currency\":\"USD\", \"primaryGenreName\":\"Pop\"}, \n{\"wrapperType\":\"track\", + \"kind\":\"music-video\", \"artistId\":32940, \"collectionId\":273047558, \"trackId\":273047868, + \"artistName\":\"Michael Jackson\", \"collectionName\":\"Thriller (25th Anniversary, + Zombie Cover)\", \"trackName\":\"Billie Jean\", \"collectionCensoredName\":\"Thriller + (25th Anniversary, Zombie Cover)\", \"trackCensoredName\":\"Billie Jean (Live + from \\\"Motown 25: Yesterday, Today and Forever\\\")\", \"artistViewUrl\":\"http://itunes.apple.com/us/artist/michael-jackson/id32940?uo=4\", + \"collectionViewUrl\":\"http://itunes.apple.com/us/music-video/billie-jean-live-from-motown/id273047868?uo=4\", + \"trackViewUrl\":\"http://itunes.apple.com/us/music-video/billie-jean-live-from-motown/id273047868?uo=4\", + \"previewUrl\":\"http://a876.v.phobos.apple.com/us/r1000/105/Video/23/41/b9/mzi.eofffjup..640x464.h264lc.d2.p.m4v\", + \"artworkUrl30\":\"http://a3.mzstatic.com/us/r1000/009/Music/9e/4b/a6/mzi.hemlymxt.40x30-75.jpg\", + \"artworkUrl60\":\"http://a1.mzstatic.com/us/r1000/009/Music/9e/4b/a6/mzi.hemlymxt.80x60-75.jpg\", + \"artworkUrl100\":\"http://a3.mzstatic.com/us/r1000/009/Music/9e/4b/a6/mzi.hemlymxt.100x100-75.jpg\", + \"collectionPrice\":13.99, \"trackPrice\":-1.00, \"releaseDate\":\"2008-02-11T08:00:00Z\", + \"collectionExplicitness\":\"notExplicit\", \"trackExplicitness\":\"notExplicit\", + \"discCount\":1, \"discNumber\":1, \"trackCount\":21, \"trackNumber\":21, \"trackTimeMillis\":296963.0, + \"country\":\"USA\", \"currency\":\"USD\", \"primaryGenreName\":\"Pop\"}, \n{\"wrapperType\":\"track\", + \"kind\":\"music-video\", \"artistId\":32940, \"trackId\":287857650, \"artistName\":\"Michael + Jackson\", \"trackName\":\"Thriller\", \"trackCensoredName\":\"Thriller\", \"artistViewUrl\":\"http://itunes.apple.com/us/artist/michael-jackson/id32940?uo=4\", + \"trackViewUrl\":\"http://itunes.apple.com/us/music-video/thriller/id287857650?uo=4\", + \"previewUrl\":\"http://a1763.v.phobos.apple.com/us/r1000/090/Video/ed/2e/e7/mzi.unevcgij..640x464.h264lc.u.p.m4v\", + \"artworkUrl30\":\"http://a3.mzstatic.com/us/r1000/036/Music/0c/5b/49/mzi.kqivnzja.40x30-75.jpg\", + \"artworkUrl60\":\"http://a4.mzstatic.com/us/r1000/036/Music/0c/5b/49/mzi.kqivnzja.80x60-75.jpg\", + \"artworkUrl100\":\"http://a1.mzstatic.com/us/r1000/036/Music/0c/5b/49/mzi.kqivnzja.100x100-75.jpg\", + \"collectionPrice\":1.99, \"trackPrice\":1.99, \"releaseDate\":\"2004-09-01T07:00:00Z\", + \"collectionExplicitness\":\"notExplicit\", \"trackExplicitness\":\"notExplicit\", + \"trackTimeMillis\":822222.0, \"country\":\"USA\", \"currency\":\"USD\", \"primaryGenreName\":\"Pop\"}, + \n{\"wrapperType\":\"track\", \"kind\":\"music-video\", \"artistId\":32940, + \"collectionId\":273048762, \"trackId\":273048822, \"artistName\":\"Michael + Jackson\", \"collectionName\":\"Thriller (25th Anniversary) [Deluxe Edition]\", + \"trackName\":\"Thriller\", \"collectionCensoredName\":\"Thriller (25th Anniversary) + [Deluxe Edition]\", \"trackCensoredName\":\"Thriller\", \"artistViewUrl\":\"http://itunes.apple.com/us/artist/michael-jackson/id32940?uo=4\", + \"collectionViewUrl\":\"http://itunes.apple.com/us/music-video/thriller/id273048822?uo=4\", + \"trackViewUrl\":\"http://itunes.apple.com/us/music-video/thriller/id273048822?uo=4\", + \"previewUrl\":\"http://a1081.v.phobos.apple.com/us/r1000/040/Video/a4/8d/b9/mzm.fmjavkev..640x464.h264lc.u.p.m4v\", + \"artworkUrl30\":\"http://a4.mzstatic.com/us/r1000/043/Video/90/a4/e6/dj.iubeccha.40x30-75.jpg\", + \"artworkUrl60\":\"http://a5.mzstatic.com/us/r1000/043/Video/90/a4/e6/dj.iubeccha.80x60-75.jpg\", + \"artworkUrl100\":\"http://a4.mzstatic.com/us/r1000/043/Video/90/a4/e6/dj.iubeccha.100x100-75.jpg\", + \"collectionPrice\":19.99, \"trackPrice\":-1.00, \"releaseDate\":\"2008-02-11T08:00:00Z\", + \"collectionExplicitness\":\"notExplicit\", \"trackExplicitness\":\"notExplicit\", + \"discCount\":1, \"discNumber\":1, \"trackCount\":35, \"trackNumber\":34, \"trackTimeMillis\":813213.0, + \"country\":\"USA\", \"currency\":\"USD\", \"primaryGenreName\":\"Pop\"}, \n{\"wrapperType\":\"track\", + \"kind\":\"music-video\", \"artistId\":32940, \"collectionId\":273048762, \"trackId\":273048821, + \"artistName\":\"Michael Jackson\", \"collectionName\":\"Thriller (25th Anniversary) + [Deluxe Edition]\", \"trackName\":\"Beat It\", \"collectionCensoredName\":\"Thriller + (25th Anniversary) [Deluxe Edition]\", \"trackCensoredName\":\"Beat It (Digitally + Restored Version)\", \"artistViewUrl\":\"http://itunes.apple.com/us/artist/michael-jackson/id32940?uo=4\", + \"collectionViewUrl\":\"http://itunes.apple.com/us/music-video/beat-it-digitally-restored/id273048821?uo=4\", + \"trackViewUrl\":\"http://itunes.apple.com/us/music-video/beat-it-digitally-restored/id273048821?uo=4\", + \"previewUrl\":\"http://a1564.v.phobos.apple.com/us/r1000/022/Video/05/c0/da/mzm.zwvuabfc..640x464.h264lc.u.p.m4v\", + \"artworkUrl30\":\"http://a2.mzstatic.com/us/r1000/002/Video/00/58/71/dj.kftbbggw.40x30-75.jpg\", + \"artworkUrl60\":\"http://a5.mzstatic.com/us/r1000/002/Video/00/58/71/dj.kftbbggw.80x60-75.jpg\", + \"artworkUrl100\":\"http://a4.mzstatic.com/us/r1000/002/Video/00/58/71/dj.kftbbggw.100x100-75.jpg\", + \"collectionPrice\":19.99, \"trackPrice\":-1.00, \"releaseDate\":\"2008-02-11T08:00:00Z\", + \"collectionExplicitness\":\"notExplicit\", \"trackExplicitness\":\"notExplicit\", + \"discCount\":1, \"discNumber\":1, \"trackCount\":35, \"trackNumber\":33, \"trackTimeMillis\":296796.0, + \"country\":\"USA\", \"currency\":\"USD\", \"primaryGenreName\":\"Pop\"}, \n{\"wrapperType\":\"track\", + \"kind\":\"music-video\", \"artistId\":32940, \"collectionId\":405410751, \"trackId\":405410806, + \"artistName\":\"Michael Jackson\", \"collectionName\":\"Michael Jackson's Vision\", + \"trackName\":\"Smooth Criminal\", \"collectionCensoredName\":\"Michael Jackson's + Vision\", \"trackCensoredName\":\"Smooth Criminal (Michael Jackson's Vision)\", + \"artistViewUrl\":\"http://itunes.apple.com/us/artist/michael-jackson/id32940?uo=4\", + \"collectionViewUrl\":\"http://itunes.apple.com/us/music-video/smooth-criminal-michael-jacksons/id405410806?uo=4\", + \"trackViewUrl\":\"http://itunes.apple.com/us/music-video/smooth-criminal-michael-jacksons/id405410806?uo=4\", + \"previewUrl\":\"http://a1760.v.phobos.apple.com/us/r1000/043/Video/df/80/bb/mzm.vteusexm..640x344.h264lc.u.p.m4v\", + \"artworkUrl30\":\"http://a3.mzstatic.com/us/r1000/050/Video/65/dd/d6/mzi.xfandoof.40x30-75.jpg\", + \"artworkUrl60\":\"http://a1.mzstatic.com/us/r1000/050/Video/65/dd/d6/mzi.xfandoof.80x60-75.jpg\", + \"artworkUrl100\":\"http://a1.mzstatic.com/us/r1000/050/Video/65/dd/d6/mzi.xfandoof.100x100-75.jpg\", + \"collectionPrice\":29.99, \"trackPrice\":1.99, \"releaseDate\":\"2010-11-19T08:00:00Z\", + \"collectionExplicitness\":\"notExplicit\", \"trackExplicitness\":\"notExplicit\", + \"discCount\":1, \"discNumber\":1, \"trackCount\":43, \"trackNumber\":11, \"trackTimeMillis\":588254.0, + \"country\":\"USA\", \"currency\":\"USD\", \"primaryGenreName\":\"Pop\"}, \n{\"wrapperType\":\"track\", + \"kind\":\"music-video\", \"artistId\":32940, \"trackId\":254019450, \"artistName\":\"Michael + Jackson\", \"trackName\":\"Remember the Time\", \"trackCensoredName\":\"Remember + the Time\", \"artistViewUrl\":\"http://itunes.apple.com/us/artist/michael-jackson/id32940?uo=4\", + \"trackViewUrl\":\"http://itunes.apple.com/us/music-video/remember-the-time/id254019450?uo=4\", + \"previewUrl\":\"http://a297.v.phobos.apple.com/us/r1000/005/Video/f7/97/81/mzm.biyzupkb..640x344.h264lc.u.p.m4v\", + \"artworkUrl30\":\"http://a5.mzstatic.com/us/r1000/008/Music/64/a4/88/mzi.xgvlmnfo.40x30-75.jpg\", + \"artworkUrl60\":\"http://a3.mzstatic.com/us/r1000/008/Music/64/a4/88/mzi.xgvlmnfo.80x60-75.jpg\", + \"artworkUrl100\":\"http://a3.mzstatic.com/us/r1000/008/Music/64/a4/88/mzi.xgvlmnfo.100x100-75.jpg\", + \"collectionPrice\":1.99, \"trackPrice\":1.99, \"releaseDate\":\"2003-04-28T07:00:00Z\", + \"collectionExplicitness\":\"notExplicit\", \"trackExplicitness\":\"notExplicit\", + \"trackTimeMillis\":550984.0, \"country\":\"USA\", \"currency\":\"USD\", \"primaryGenreName\":\"Pop\"}, + \n{\"wrapperType\":\"track\", \"kind\":\"music-video\", \"artistId\":32940, + \"collectionId\":273048762, \"trackId\":273048816, \"artistName\":\"Michael + Jackson\", \"collectionName\":\"Thriller (25th Anniversary) [Deluxe Edition]\", + \"trackName\":\"Billie Jean\", \"collectionCensoredName\":\"Thriller (25th Anniversary) + [Deluxe Edition]\", \"trackCensoredName\":\"Billie Jean\", \"artistViewUrl\":\"http://itunes.apple.com/us/artist/michael-jackson/id32940?uo=4\", + \"collectionViewUrl\":\"http://itunes.apple.com/us/music-video/billie-jean/id273048816?uo=4\", + \"trackViewUrl\":\"http://itunes.apple.com/us/music-video/billie-jean/id273048816?uo=4\", + \"previewUrl\":\"http://a940.v.phobos.apple.com/us/r1000/060/Video/17/82/3c/mzm.ariaqgbj..640x464.h264lc.u.p.m4v\", + \"artworkUrl30\":\"http://a4.mzstatic.com/us/r1000/016/Video/39/85/25/dj.akikrmmk.40x30-75.jpg\", + \"artworkUrl60\":\"http://a5.mzstatic.com/us/r1000/016/Video/39/85/25/dj.akikrmmk.80x60-75.jpg\", + \"artworkUrl100\":\"http://a2.mzstatic.com/us/r1000/016/Video/39/85/25/dj.akikrmmk.100x100-75.jpg\", + \"collectionPrice\":19.99, \"trackPrice\":-1.00, \"releaseDate\":\"2008-02-11T08:00:00Z\", + \"collectionExplicitness\":\"notExplicit\", \"trackExplicitness\":\"notExplicit\", + \"discCount\":1, \"discNumber\":1, \"trackCount\":35, \"trackNumber\":32, \"trackTimeMillis\":294361.0, + \"country\":\"USA\", \"currency\":\"USD\", \"primaryGenreName\":\"Pop\"}, \n{\"wrapperType\":\"track\", + \"kind\":\"music-video\", \"artistId\":32940, \"trackId\":281281727, \"artistName\":\"Michael + Jackson\", \"trackName\":\"Bad\", \"trackCensoredName\":\"Bad\", \"artistViewUrl\":\"http://itunes.apple.com/us/artist/michael-jackson/id32940?uo=4\", + \"trackViewUrl\":\"http://itunes.apple.com/us/music-video/bad/id281281727?uo=4\", + \"previewUrl\":\"http://a92.v.phobos.apple.com/us/r1000/102/Video/d0/3a/f0/mzi.xkvakqtf..640x464.h264lc.u.p.m4v\", + \"artworkUrl30\":\"http://a5.mzstatic.com/us/r1000/037/Music/80/46/91/mzi.bdxyutvm.40x30-75.jpg\", + \"artworkUrl60\":\"http://a1.mzstatic.com/us/r1000/037/Music/80/46/91/mzi.bdxyutvm.80x60-75.jpg\", + \"artworkUrl100\":\"http://a3.mzstatic.com/us/r1000/037/Music/80/46/91/mzi.bdxyutvm.100x100-75.jpg\", + \"collectionPrice\":1.99, \"trackPrice\":1.99, \"releaseDate\":\"2003-11-17T08:00:00Z\", + \"collectionExplicitness\":\"notExplicit\", \"trackExplicitness\":\"notExplicit\", + \"trackTimeMillis\":259726.0, \"country\":\"USA\", \"currency\":\"USD\", \"primaryGenreName\":\"Music + Videos\"}, \n{\"wrapperType\":\"track\", \"kind\":\"music-video\", \"artistId\":32940, + \"collectionId\":273048762, \"trackId\":273048848, \"artistName\":\"Michael + Jackson\", \"collectionName\":\"Thriller (25th Anniversary) [Deluxe Edition]\", + \"trackName\":\"Billie Jean\", \"collectionCensoredName\":\"Thriller (25th Anniversary) + [Deluxe Edition]\", \"trackCensoredName\":\"Billie Jean (Live from Motown 25: + Yesterday, Today and Forever)\", \"artistViewUrl\":\"http://itunes.apple.com/us/artist/michael-jackson/id32940?uo=4\", + \"collectionViewUrl\":\"http://itunes.apple.com/us/music-video/billie-jean-live-from-motown/id273048848?uo=4\", + \"trackViewUrl\":\"http://itunes.apple.com/us/music-video/billie-jean-live-from-motown/id273048848?uo=4\", + \"previewUrl\":\"http://a1862.v.phobos.apple.com/us/r1000/051/Video/e1/d6/37/mzi.rtdapdxa..640x464.h264lc.d2.p.m4v\", + \"artworkUrl30\":\"http://a1.mzstatic.com/us/r1000/053/Video/2f/bb/dd/dj.ipoupavy.40x30-75.jpg\", + \"artworkUrl60\":\"http://a2.mzstatic.com/us/r1000/053/Video/2f/bb/dd/dj.ipoupavy.80x60-75.jpg\", + \"artworkUrl100\":\"http://a5.mzstatic.com/us/r1000/053/Video/2f/bb/dd/dj.ipoupavy.100x100-75.jpg\", + \"collectionPrice\":19.99, \"trackPrice\":-1.00, \"releaseDate\":\"2008-02-11T08:00:00Z\", + \"collectionExplicitness\":\"notExplicit\", \"trackExplicitness\":\"notExplicit\", + \"discCount\":1, \"discNumber\":1, \"trackCount\":35, \"trackNumber\":35, \"trackTimeMillis\":296997.0, + \"country\":\"USA\", \"currency\":\"USD\", \"primaryGenreName\":\"Pop\"}, \n{\"wrapperType\":\"track\", + \"kind\":\"music-video\", \"artistId\":32940, \"collectionId\":405410751, \"trackId\":405410813, + \"artistName\":\"Michael Jackson\", \"collectionName\":\"Michael Jackson's Vision\", + \"trackName\":\"Black or White\", \"collectionCensoredName\":\"Michael Jackson's + Vision\", \"trackCensoredName\":\"Black or White (Michael Jackson's Vision)\", + \"artistViewUrl\":\"http://itunes.apple.com/us/artist/michael-jackson/id32940?uo=4\", + \"collectionViewUrl\":\"http://itunes.apple.com/us/music-video/black-or-white-michael-jacksons/id405410813?uo=4\", + \"trackViewUrl\":\"http://itunes.apple.com/us/music-video/black-or-white-michael-jacksons/id405410813?uo=4\", + \"previewUrl\":\"http://a1538.v.phobos.apple.com/us/r1000/058/Video/b7/7c/c8/mzm.uduuwbgd..640x344.h264lc.u.p.m4v\", + \"artworkUrl30\":\"http://a3.mzstatic.com/us/r1000/025/Video/c6/d7/dd/mzi.ciyunske.40x30-75.jpg\", + \"artworkUrl60\":\"http://a4.mzstatic.com/us/r1000/025/Video/c6/d7/dd/mzi.ciyunske.80x60-75.jpg\", + \"artworkUrl100\":\"http://a5.mzstatic.com/us/r1000/025/Video/c6/d7/dd/mzi.ciyunske.100x100-75.jpg\", + \"collectionPrice\":29.99, \"trackPrice\":1.99, \"releaseDate\":\"2010-11-19T08:00:00Z\", + \"collectionExplicitness\":\"notExplicit\", \"trackExplicitness\":\"notExplicit\", + \"discCount\":1, \"discNumber\":1, \"trackCount\":43, \"trackNumber\":17, \"trackTimeMillis\":669069.0, + \"country\":\"USA\", \"currency\":\"USD\", \"primaryGenreName\":\"Pop\"}, \n{\"wrapperType\":\"track\", + \"kind\":\"music-video\", \"artistId\":32940, \"trackId\":408741542, \"artistName\":\"Michael + Jackson\", \"trackName\":\"Hold My Hand (Duet With Akon)\", \"trackCensoredName\":\"Hold + My Hand (Duet With Akon)\", \"artistViewUrl\":\"http://itunes.apple.com/us/artist/michael-jackson/id32940?uo=4\", + \"trackViewUrl\":\"http://itunes.apple.com/us/music-video/hold-my-hand-duet-with-akon/id408741542?uo=4\", + \"previewUrl\":\"http://a786.v.phobos.apple.com/us/r1000/018/Video/a9/76/a3/mzm.ykzewrrt..640x360.h264lc.u.p.m4v\", + \"artworkUrl30\":\"http://a2.mzstatic.com/us/r1000/043/Video/1a/45/39/mzi.zbcqwvid.40x30-75.jpg\", + \"artworkUrl60\":\"http://a5.mzstatic.com/us/r1000/043/Video/1a/45/39/mzi.zbcqwvid.80x60-75.jpg\", + \"artworkUrl100\":\"http://a5.mzstatic.com/us/r1000/043/Video/1a/45/39/mzi.zbcqwvid.100x100-75.jpg\", + \"collectionPrice\":1.99, \"trackPrice\":1.99, \"releaseDate\":\"2010-12-10T08:00:00Z\", + \"collectionExplicitness\":\"notExplicit\", \"trackExplicitness\":\"notExplicit\", + \"trackTimeMillis\":223181.0, \"country\":\"USA\", \"currency\":\"USD\", \"primaryGenreName\":\"Pop\"}, + \n{\"wrapperType\":\"track\", \"kind\":\"music-video\", \"artistId\":32940, + \"collectionId\":405410751, \"trackId\":405410792, \"artistName\":\"Michael + Jackson\", \"collectionName\":\"Michael Jackson's Vision\", \"trackName\":\"Thriller\", + \"collectionCensoredName\":\"Michael Jackson's Vision\", \"trackCensoredName\":\"Thriller + (Michael Jackson's Vision)\", \"artistViewUrl\":\"http://itunes.apple.com/us/artist/michael-jackson/id32940?uo=4\", + \"collectionViewUrl\":\"http://itunes.apple.com/us/music-video/thriller-michael-jacksons/id405410792?uo=4\", + \"trackViewUrl\":\"http://itunes.apple.com/us/music-video/thriller-michael-jacksons/id405410792?uo=4\", + \"previewUrl\":\"http://a1663.v.phobos.apple.com/us/r1000/013/Video/9f/06/45/mzm.cykppjis..640x344.h264lc.u.p.m4v\", + \"artworkUrl30\":\"http://a4.mzstatic.com/us/r1000/000/Video/79/bf/2e/mzi.dntwzaaw.40x30-75.jpg\", + \"artworkUrl60\":\"http://a5.mzstatic.com/us/r1000/000/Video/79/bf/2e/mzi.dntwzaaw.80x60-75.jpg\", + \"artworkUrl100\":\"http://a1.mzstatic.com/us/r1000/000/Video/79/bf/2e/mzi.dntwzaaw.100x100-75.jpg\", + \"collectionPrice\":29.99, \"trackPrice\":1.99, \"releaseDate\":\"2010-11-19T08:00:00Z\", + \"collectionExplicitness\":\"notExplicit\", \"trackExplicitness\":\"notExplicit\", + \"discCount\":1, \"discNumber\":1, \"trackCount\":43, \"trackNumber\":6, \"trackTimeMillis\":832932.0, + \"country\":\"USA\", \"currency\":\"USD\", \"primaryGenreName\":\"Pop\"}, \n{\"wrapperType\":\"track\", + \"kind\":\"music-video\", \"artistId\":32940, \"collectionId\":405410751, \"trackId\":405410791, + \"artistName\":\"Michael Jackson\", \"collectionName\":\"Michael Jackson's Vision\", + \"trackName\":\"Beat It\", \"collectionCensoredName\":\"Michael Jackson's Vision\", + \"trackCensoredName\":\"Beat It (Michael Jackson's Vision)\", \"artistViewUrl\":\"http://itunes.apple.com/us/artist/michael-jackson/id32940?uo=4\", + \"collectionViewUrl\":\"http://itunes.apple.com/us/music-video/beat-it-michael-jacksons-vision/id405410791?uo=4\", + \"trackViewUrl\":\"http://itunes.apple.com/us/music-video/beat-it-michael-jacksons-vision/id405410791?uo=4\", + \"previewUrl\":\"http://a433.v.phobos.apple.com/us/r1000/041/Video/28/95/bb/mzm.vigophns..640x344.h264lc.u.p.m4v\", + \"artworkUrl30\":\"http://a1.mzstatic.com/us/r1000/036/Video/ea/ce/6a/mzi.hidgxdfd.40x30-75.jpg\", + \"artworkUrl60\":\"http://a2.mzstatic.com/us/r1000/036/Video/ea/ce/6a/mzi.hidgxdfd.80x60-75.jpg\", + \"artworkUrl100\":\"http://a5.mzstatic.com/us/r1000/036/Video/ea/ce/6a/mzi.hidgxdfd.100x100-75.jpg\", + \"collectionPrice\":29.99, \"trackPrice\":1.99, \"releaseDate\":\"2010-11-19T08:00:00Z\", + \"collectionExplicitness\":\"notExplicit\", \"trackExplicitness\":\"notExplicit\", + \"discCount\":1, \"discNumber\":1, \"trackCount\":43, \"trackNumber\":5, \"trackTimeMillis\":307040.0, + \"country\":\"USA\", \"currency\":\"USD\", \"primaryGenreName\":\"Pop\"}, \n{\"wrapperType\":\"track\", + \"kind\":\"music-video\", \"artistId\":32940, \"collectionId\":405410751, \"trackId\":405410795, + \"artistName\":\"Michael Jackson\", \"collectionName\":\"Michael Jackson's Vision\", + \"trackName\":\"The Way You Make Me Feel\", \"collectionCensoredName\":\"Michael + Jackson's Vision\", \"trackCensoredName\":\"The Way You Make Me Feel (Michael + Jackson's Vision)\", \"artistViewUrl\":\"http://itunes.apple.com/us/artist/michael-jackson/id32940?uo=4\", + \"collectionViewUrl\":\"http://itunes.apple.com/us/music-video/way-you-make-me-feel-michael/id405410795?uo=4\", + \"trackViewUrl\":\"http://itunes.apple.com/us/music-video/way-you-make-me-feel-michael/id405410795?uo=4\", + \"previewUrl\":\"http://a992.v.phobos.apple.com/us/r1000/050/Video/1d/0c/e3/mzm.wzusjdce..640x344.h264lc.u.p.m4v\", + \"artworkUrl30\":\"http://a5.mzstatic.com/us/r1000/043/Video/6a/ee/83/mzi.npzecgpo.40x30-75.jpg\", + \"artworkUrl60\":\"http://a3.mzstatic.com/us/r1000/043/Video/6a/ee/83/mzi.npzecgpo.80x60-75.jpg\", + \"artworkUrl100\":\"http://a3.mzstatic.com/us/r1000/043/Video/6a/ee/83/mzi.npzecgpo.100x100-75.jpg\", + \"collectionPrice\":29.99, \"trackPrice\":1.99, \"releaseDate\":\"2010-11-19T08:00:00Z\", + \"collectionExplicitness\":\"notExplicit\", \"trackExplicitness\":\"notExplicit\", + \"discCount\":1, \"discNumber\":1, \"trackCount\":43, \"trackNumber\":8, \"trackTimeMillis\":573340.0, + \"country\":\"USA\", \"currency\":\"USD\", \"primaryGenreName\":\"Pop\"}, \n{\"wrapperType\":\"track\", + \"kind\":\"music-video\", \"artistId\":32940, \"collectionId\":405410751, \"trackId\":405411252, + \"artistName\":\"Michael Jackson\", \"collectionName\":\"Michael Jackson's Vision\", + \"trackName\":\"You Rock My World\", \"collectionCensoredName\":\"Michael Jackson's + Vision\", \"trackCensoredName\":\"You Rock My World (Michael Jackson's Vision)\", + \"artistViewUrl\":\"http://itunes.apple.com/us/artist/michael-jackson/id32940?uo=4\", + \"collectionViewUrl\":\"http://itunes.apple.com/us/music-video/you-rock-my-world-michael/id405411252?uo=4\", + \"trackViewUrl\":\"http://itunes.apple.com/us/music-video/you-rock-my-world-michael/id405411252?uo=4\", + \"previewUrl\":\"http://a1895.v.phobos.apple.com/us/r1000/011/Video/47/da/04/mzm.zglsvtfi..640x360.h264lc.u.p.m4v\", + \"artworkUrl30\":\"http://a4.mzstatic.com/us/r1000/057/Video/34/c8/ca/mzi.eayfants.40x30-75.jpg\", + \"artworkUrl60\":\"http://a2.mzstatic.com/us/r1000/057/Video/34/c8/ca/mzi.eayfants.80x60-75.jpg\", + \"artworkUrl100\":\"http://a1.mzstatic.com/us/r1000/057/Video/34/c8/ca/mzi.eayfants.100x100-75.jpg\", + \"collectionPrice\":29.99, \"trackPrice\":1.99, \"releaseDate\":\"2010-11-19T08:00:00Z\", + \"collectionExplicitness\":\"notExplicit\", \"trackExplicitness\":\"notExplicit\", + \"discCount\":1, \"discNumber\":1, \"trackCount\":43, \"trackNumber\":34, \"trackTimeMillis\":832699.0, + \"country\":\"USA\", \"currency\":\"USD\", \"primaryGenreName\":\"Pop\"}, \n{\"wrapperType\":\"track\", + \"kind\":\"music-video\", \"artistId\":32940, \"collectionId\":405410751, \"trackId\":405410790, + \"artistName\":\"Michael Jackson\", \"collectionName\":\"Michael Jackson's Vision\", + \"trackName\":\"Billie Jean\", \"collectionCensoredName\":\"Michael Jackson's + Vision\", \"trackCensoredName\":\"Billie Jean (Michael Jackson's Vision)\", + \"artistViewUrl\":\"http://itunes.apple.com/us/artist/michael-jackson/id32940?uo=4\", + \"collectionViewUrl\":\"http://itunes.apple.com/us/music-video/billie-jean-michael-jacksons/id405410790?uo=4\", + \"trackViewUrl\":\"http://itunes.apple.com/us/music-video/billie-jean-michael-jacksons/id405410790?uo=4\", + \"previewUrl\":\"http://a503.v.phobos.apple.com/us/r1000/009/Video/4f/97/84/mzm.ukxvkwvn..640x344.h264lc.u.p.m4v\", + \"artworkUrl30\":\"http://a3.mzstatic.com/us/r1000/003/Video/f8/ed/9f/mzi.bhpqxqhc.40x30-75.jpg\", + \"artworkUrl60\":\"http://a1.mzstatic.com/us/r1000/003/Video/f8/ed/9f/mzi.bhpqxqhc.80x60-75.jpg\", + \"artworkUrl100\":\"http://a5.mzstatic.com/us/r1000/003/Video/f8/ed/9f/mzi.bhpqxqhc.100x100-75.jpg\", + \"collectionPrice\":29.99, \"trackPrice\":1.99, \"releaseDate\":\"2010-11-19T08:00:00Z\", + \"collectionExplicitness\":\"notExplicit\", \"trackExplicitness\":\"notExplicit\", + \"discCount\":1, \"discNumber\":1, \"trackCount\":43, \"trackNumber\":4, \"trackTimeMillis\":316850.0, + \"country\":\"USA\", \"currency\":\"USD\", \"primaryGenreName\":\"Pop\"}, \n{\"wrapperType\":\"track\", + \"kind\":\"music-video\", \"artistId\":32940, \"collectionId\":405410751, \"trackId\":405411114, + \"artistName\":\"Michael Jackson\", \"collectionName\":\"Michael Jackson's Vision\", + \"trackName\":\"Scream\", \"collectionCensoredName\":\"Michael Jackson's Vision\", + \"trackCensoredName\":\"Scream (Michael Jackson's Vision)\", \"artistViewUrl\":\"http://itunes.apple.com/us/artist/michael-jackson/id32940?uo=4\", + \"collectionViewUrl\":\"http://itunes.apple.com/us/music-video/scream-michael-jacksons-vision/id405411114?uo=4\", + \"trackViewUrl\":\"http://itunes.apple.com/us/music-video/scream-michael-jacksons-vision/id405411114?uo=4\", + \"previewUrl\":\"http://a67.v.phobos.apple.com/us/r1000/007/Video/22/1e/d5/mzm.hcmronca..640x360.h264lc.u.p.m4v\", + \"artworkUrl30\":\"http://a4.mzstatic.com/us/r1000/058/Video/cb/04/d0/mzi.lscciuie.40x30-75.jpg\", + \"artworkUrl60\":\"http://a5.mzstatic.com/us/r1000/058/Video/cb/04/d0/mzi.lscciuie.80x60-75.jpg\", + \"artworkUrl100\":\"http://a3.mzstatic.com/us/r1000/058/Video/cb/04/d0/mzi.lscciuie.100x100-75.jpg\", + \"collectionPrice\":29.99, \"trackPrice\":1.99, \"releaseDate\":\"2010-11-19T08:00:00Z\", + \"collectionExplicitness\":\"notExplicit\", \"trackExplicitness\":\"notExplicit\", + \"discCount\":1, \"discNumber\":1, \"trackCount\":43, \"trackNumber\":26, \"trackTimeMillis\":306506.0, + \"country\":\"USA\", \"currency\":\"USD\", \"primaryGenreName\":\"Pop\"}, \n{\"wrapperType\":\"track\", + \"kind\":\"music-video\", \"artistId\":32940, \"collectionId\":405410751, \"trackId\":405411251, + \"artistName\":\"Michael Jackson\", \"collectionName\":\"Michael Jackson's Vision\", + \"trackName\":\"Ghosts\", \"collectionCensoredName\":\"Michael Jackson's Vision\", + \"trackCensoredName\":\"Ghosts (Michael Jackson's Vision)\", \"artistViewUrl\":\"http://itunes.apple.com/us/artist/michael-jackson/id32940?uo=4\", + \"collectionViewUrl\":\"http://itunes.apple.com/us/music-video/ghosts-michael-jacksons-vision/id405411251?uo=4\", + \"trackViewUrl\":\"http://itunes.apple.com/us/music-video/ghosts-michael-jacksons-vision/id405411251?uo=4\", + \"previewUrl\":\"http://a1472.v.phobos.apple.com/us/r1000/032/Video/da/4f/21/mzm.brssszom..640x344.h264lc.u.p.m4v\", + \"artworkUrl30\":\"http://a3.mzstatic.com/us/r1000/059/Video/0f/be/52/mzi.koaxgkhl.40x30-75.jpg\", + \"artworkUrl60\":\"http://a4.mzstatic.com/us/r1000/059/Video/0f/be/52/mzi.koaxgkhl.80x60-75.jpg\", + \"artworkUrl100\":\"http://a2.mzstatic.com/us/r1000/059/Video/0f/be/52/mzi.koaxgkhl.100x100-75.jpg\", + \"collectionPrice\":29.99, \"trackPrice\":1.99, \"releaseDate\":\"2010-11-19T08:00:00Z\", + \"collectionExplicitness\":\"notExplicit\", \"trackExplicitness\":\"notExplicit\", + \"discCount\":1, \"discNumber\":1, \"trackCount\":43, \"trackNumber\":33, \"trackTimeMillis\":258091.0, + \"country\":\"USA\", \"currency\":\"USD\", \"primaryGenreName\":\"Pop\"}, \n{\"wrapperType\":\"track\", + \"kind\":\"music-video\", \"artistId\":32940, \"collectionId\":405410751, \"trackId\":405410804, + \"artistName\":\"Michael Jackson\", \"collectionName\":\"Michael Jackson's Vision\", + \"trackName\":\"Man In the Mirror\", \"collectionCensoredName\":\"Michael Jackson's + Vision\", \"trackCensoredName\":\"Man In the Mirror (Michael Jackson's Vision)\", + \"artistViewUrl\":\"http://itunes.apple.com/us/artist/michael-jackson/id32940?uo=4\", + \"collectionViewUrl\":\"http://itunes.apple.com/us/music-video/man-in-mirror-michael-jacksons/id405410804?uo=4\", + \"trackViewUrl\":\"http://itunes.apple.com/us/music-video/man-in-mirror-michael-jacksons/id405410804?uo=4\", + \"previewUrl\":\"http://a1588.v.phobos.apple.com/us/r1000/039/Video/2f/ba/c6/mzm.ezfjzpfw..640x344.h264lc.u.p.m4v\", + \"artworkUrl30\":\"http://a3.mzstatic.com/us/r1000/045/Video/00/e2/91/mzi.otucwdjd.40x30-75.jpg\", + \"artworkUrl60\":\"http://a1.mzstatic.com/us/r1000/045/Video/00/e2/91/mzi.otucwdjd.80x60-75.jpg\", + \"artworkUrl100\":\"http://a1.mzstatic.com/us/r1000/045/Video/00/e2/91/mzi.otucwdjd.100x100-75.jpg\", + \"collectionPrice\":29.99, \"trackPrice\":1.99, \"releaseDate\":\"2010-11-19T08:00:00Z\", + \"collectionExplicitness\":\"notExplicit\", \"trackExplicitness\":\"notExplicit\", + \"discCount\":1, \"discNumber\":1, \"trackCount\":43, \"trackNumber\":9, \"trackTimeMillis\":324524.0, + \"country\":\"USA\", \"currency\":\"USD\", \"primaryGenreName\":\"Pop\"}, \n{\"wrapperType\":\"track\", + \"kind\":\"music-video\", \"artistId\":32940, \"collectionId\":405410751, \"trackId\":405411221, + \"artistName\":\"Michael Jackson\", \"collectionName\":\"Michael Jackson's Vision\", + \"trackName\":\"They Don't Care About Us\", \"collectionCensoredName\":\"Michael + Jackson's Vision\", \"trackCensoredName\":\"They Don't Care About Us (Michael + Jackson's Vision)\", \"artistViewUrl\":\"http://itunes.apple.com/us/artist/michael-jackson/id32940?uo=4\", + \"collectionViewUrl\":\"http://itunes.apple.com/us/music-video/they-dont-care-about-us-michael/id405411221?uo=4\", + \"trackViewUrl\":\"http://itunes.apple.com/us/music-video/they-dont-care-about-us-michael/id405411221?uo=4\", + \"previewUrl\":\"http://a1233.v.phobos.apple.com/us/r1000/036/Video/07/c9/e1/mzm.pzvqxkqx..640x360.h264lc.u.p.m4v\", + \"artworkUrl30\":\"http://a2.mzstatic.com/us/r1000/034/Video/22/bb/de/mzi.qcolcfmv.40x30-75.jpg\", + \"artworkUrl60\":\"http://a5.mzstatic.com/us/r1000/034/Video/22/bb/de/mzi.qcolcfmv.80x60-75.jpg\", + \"artworkUrl100\":\"http://a2.mzstatic.com/us/r1000/034/Video/22/bb/de/mzi.qcolcfmv.100x100-75.jpg\", + \"collectionPrice\":29.99, \"trackPrice\":1.99, \"releaseDate\":\"2010-11-19T08:00:00Z\", + \"collectionExplicitness\":\"notExplicit\", \"trackExplicitness\":\"notExplicit\", + \"discCount\":1, \"discNumber\":1, \"trackCount\":43, \"trackNumber\":30, \"trackTimeMillis\":449482.0, + \"country\":\"USA\", \"currency\":\"USD\", \"primaryGenreName\":\"Pop\"}, \n{\"wrapperType\":\"track\", + \"kind\":\"music-video\", \"artistId\":32940, \"collectionId\":405410751, \"trackId\":405411220, + \"artistName\":\"Michael Jackson\", \"collectionName\":\"Michael Jackson's Vision\", + \"trackName\":\"Earth Song\", \"collectionCensoredName\":\"Michael Jackson's + Vision\", \"trackCensoredName\":\"Earth Song (Michael Jackson's Vision)\", \"artistViewUrl\":\"http://itunes.apple.com/us/artist/michael-jackson/id32940?uo=4\", + \"collectionViewUrl\":\"http://itunes.apple.com/us/music-video/earth-song-michael-jacksons/id405411220?uo=4\", + \"trackViewUrl\":\"http://itunes.apple.com/us/music-video/earth-song-michael-jacksons/id405411220?uo=4\", + \"previewUrl\":\"http://a1689.v.phobos.apple.com/us/r1000/025/Video/ec/f6/3b/mzm.utiycgku..640x344.h264lc.u.p.m4v\", + \"artworkUrl30\":\"http://a3.mzstatic.com/us/r1000/030/Video/ba/c0/7e/mzi.cvtqvren.40x30-75.jpg\", + \"artworkUrl60\":\"http://a4.mzstatic.com/us/r1000/030/Video/ba/c0/7e/mzi.cvtqvren.80x60-75.jpg\", + \"artworkUrl100\":\"http://a5.mzstatic.com/us/r1000/030/Video/ba/c0/7e/mzi.cvtqvren.100x100-75.jpg\", + \"collectionPrice\":29.99, \"trackPrice\":1.99, \"releaseDate\":\"2010-11-19T08:00:00Z\", + \"collectionExplicitness\":\"notExplicit\", \"trackExplicitness\":\"notExplicit\", + \"discCount\":1, \"discNumber\":1, \"trackCount\":43, \"trackNumber\":29, \"trackTimeMillis\":428662.0, + \"country\":\"USA\", \"currency\":\"USD\", \"primaryGenreName\":\"Pop\"}, \n{\"wrapperType\":\"track\", + \"kind\":\"music-video\", \"artistId\":32940, \"collectionId\":405410751, \"trackId\":405410793, + \"artistName\":\"Michael Jackson\", \"collectionName\":\"Michael Jackson's Vision\", + \"trackName\":\"Bad\", \"collectionCensoredName\":\"Michael Jackson's Vision\", + \"trackCensoredName\":\"Bad (Michael Jackson's Vision)\", \"artistViewUrl\":\"http://itunes.apple.com/us/artist/michael-jackson/id32940?uo=4\", + \"collectionViewUrl\":\"http://itunes.apple.com/us/music-video/bad-michael-jacksons-vision/id405410793?uo=4\", + \"trackViewUrl\":\"http://itunes.apple.com/us/music-video/bad-michael-jacksons-vision/id405410793?uo=4\", + \"previewUrl\":\"http://a817.v.phobos.apple.com/us/r1000/033/Video/35/6e/f4/mzm.oerxehly..640x344.h264lc.u.p.m4v\", + \"artworkUrl30\":\"http://a3.mzstatic.com/us/r1000/057/Video/f8/1e/2b/mzi.jugzuead.40x30-75.jpg\", + \"artworkUrl60\":\"http://a1.mzstatic.com/us/r1000/057/Video/f8/1e/2b/mzi.jugzuead.80x60-75.jpg\", + \"artworkUrl100\":\"http://a3.mzstatic.com/us/r1000/057/Video/f8/1e/2b/mzi.jugzuead.100x100-75.jpg\", + \"collectionPrice\":29.99, \"trackPrice\":1.99, \"releaseDate\":\"2010-11-19T08:00:00Z\", + \"collectionExplicitness\":\"notExplicit\", \"trackExplicitness\":\"notExplicit\", + \"discCount\":1, \"discNumber\":1, \"trackCount\":43, \"trackNumber\":7, \"trackTimeMillis\":1108174.0, + \"country\":\"USA\", \"currency\":\"USD\", \"primaryGenreName\":\"Pop\"}, \n{\"wrapperType\":\"track\", + \"kind\":\"music-video\", \"artistId\":32940, \"collectionId\":405410751, \"trackId\":405410829, + \"artistName\":\"Michael Jackson\", \"collectionName\":\"Michael Jackson's Vision\", + \"trackName\":\"Remember the Time\", \"collectionCensoredName\":\"Michael Jackson's + Vision\", \"trackCensoredName\":\"Remember the Time (Michael Jackson's Vision)\", + \"artistViewUrl\":\"http://itunes.apple.com/us/artist/michael-jackson/id32940?uo=4\", + \"collectionViewUrl\":\"http://itunes.apple.com/us/music-video/remember-time-michael-jacksons/id405410829?uo=4\", + \"trackViewUrl\":\"http://itunes.apple.com/us/music-video/remember-time-michael-jacksons/id405410829?uo=4\", + \"previewUrl\":\"http://a35.v.phobos.apple.com/us/r1000/001/Video/3c/96/4d/mzm.vfanqfbi..640x360.h264lc.u.p.m4v\", + \"artworkUrl30\":\"http://a2.mzstatic.com/us/r1000/038/Video/95/1d/8a/mzi.okxtxjae.40x30-75.jpg\", + \"artworkUrl60\":\"http://a5.mzstatic.com/us/r1000/038/Video/95/1d/8a/mzi.okxtxjae.80x60-75.jpg\", + \"artworkUrl100\":\"http://a1.mzstatic.com/us/r1000/038/Video/95/1d/8a/mzi.okxtxjae.100x100-75.jpg\", + \"collectionPrice\":29.99, \"trackPrice\":1.99, \"releaseDate\":\"2010-11-19T08:00:00Z\", + \"collectionExplicitness\":\"notExplicit\", \"trackExplicitness\":\"notExplicit\", + \"discCount\":1, \"discNumber\":1, \"trackCount\":43, \"trackNumber\":18, \"trackTimeMillis\":581915.0, + \"country\":\"USA\", \"currency\":\"USD\", \"primaryGenreName\":\"Pop\"}, \n{\"wrapperType\":\"track\", + \"kind\":\"music-video\", \"artistId\":32940, \"collectionId\":405410751, \"trackId\":405410805, + \"artistName\":\"Michael Jackson\", \"collectionName\":\"Michael Jackson's Vision\", + \"trackName\":\"Dirty Diana\", \"collectionCensoredName\":\"Michael Jackson's + Vision\", \"trackCensoredName\":\"Dirty Diana (Michael Jackson's Vision)\", + \"artistViewUrl\":\"http://itunes.apple.com/us/artist/michael-jackson/id32940?uo=4\", + \"collectionViewUrl\":\"http://itunes.apple.com/us/music-video/dirty-diana-michael-jacksons/id405410805?uo=4\", + \"trackViewUrl\":\"http://itunes.apple.com/us/music-video/dirty-diana-michael-jacksons/id405410805?uo=4\", + \"previewUrl\":\"http://a1580.v.phobos.apple.com/us/r1000/013/Video/ea/d1/9f/mzm.dxxxwcyy..640x344.h264lc.u.p.m4v\", + \"artworkUrl30\":\"http://a3.mzstatic.com/us/r1000/027/Video/0d/cf/05/mzi.ncbigyxi.40x30-75.jpg\", + \"artworkUrl60\":\"http://a1.mzstatic.com/us/r1000/027/Video/0d/cf/05/mzi.ncbigyxi.80x60-75.jpg\", + \"artworkUrl100\":\"http://a2.mzstatic.com/us/r1000/027/Video/0d/cf/05/mzi.ncbigyxi.100x100-75.jpg\", + \"collectionPrice\":29.99, \"trackPrice\":1.99, \"releaseDate\":\"2010-11-19T08:00:00Z\", + \"collectionExplicitness\":\"notExplicit\", \"trackExplicitness\":\"notExplicit\", + \"discCount\":1, \"discNumber\":1, \"trackCount\":43, \"trackNumber\":10, \"trackTimeMillis\":329729.0, + \"country\":\"USA\", \"currency\":\"USD\", \"primaryGenreName\":\"Pop\"}, \n{\"wrapperType\":\"track\", + \"kind\":\"music-video\", \"artistId\":32940, \"collectionId\":405410751, \"trackId\":405410831, + \"artistName\":\"Michael Jackson\", \"collectionName\":\"Michael Jackson's Vision\", + \"trackName\":\"In the Closet\", \"collectionCensoredName\":\"Michael Jackson's + Vision\", \"trackCensoredName\":\"In the Closet (Michael Jackson's Vision)\", + \"artistViewUrl\":\"http://itunes.apple.com/us/artist/michael-jackson/id32940?uo=4\", + \"collectionViewUrl\":\"http://itunes.apple.com/us/music-video/in-closet-michael-jacksons/id405410831?uo=4\", + \"trackViewUrl\":\"http://itunes.apple.com/us/music-video/in-closet-michael-jacksons/id405410831?uo=4\", + \"previewUrl\":\"http://a1163.v.phobos.apple.com/us/r1000/004/Video/17/67/54/mzm.bofojmhd..640x344.h264lc.u.p.m4v\", + \"artworkUrl30\":\"http://a5.mzstatic.com/us/r1000/037/Video/f4/06/f2/mzi.bmebzuif.40x30-75.jpg\", + \"artworkUrl60\":\"http://a3.mzstatic.com/us/r1000/037/Video/f4/06/f2/mzi.bmebzuif.80x60-75.jpg\", + \"artworkUrl100\":\"http://a2.mzstatic.com/us/r1000/037/Video/f4/06/f2/mzi.bmebzuif.100x100-75.jpg\", + \"collectionPrice\":29.99, \"trackPrice\":1.99, \"releaseDate\":\"2010-11-19T08:00:00Z\", + \"collectionExplicitness\":\"notExplicit\", \"trackExplicitness\":\"notExplicit\", + \"discCount\":1, \"discNumber\":1, \"trackCount\":43, \"trackNumber\":19, \"trackTimeMillis\":384017.0, + \"country\":\"USA\", \"currency\":\"USD\", \"primaryGenreName\":\"Pop\"}, \n{\"wrapperType\":\"track\", + \"kind\":\"music-video\", \"artistId\":32940, \"collectionId\":405410751, \"trackId\":405410786, + \"artistName\":\"Michael Jackson\", \"collectionName\":\"Michael Jackson's Vision\", + \"trackName\":\"Don't Stop 'Til You Get Enough\", \"collectionCensoredName\":\"Michael + Jackson's Vision\", \"trackCensoredName\":\"Don't Stop 'Til You Get Enough (Michael + Jackson's Vision)\", \"artistViewUrl\":\"http://itunes.apple.com/us/artist/michael-jackson/id32940?uo=4\", + \"collectionViewUrl\":\"http://itunes.apple.com/us/music-video/dont-stop-til-you-get-enough/id405410786?uo=4\", + \"trackViewUrl\":\"http://itunes.apple.com/us/music-video/dont-stop-til-you-get-enough/id405410786?uo=4\", + \"previewUrl\":\"http://a1187.v.phobos.apple.com/us/r1000/009/Video/f6/6a/3a/mzm.ccvxhszt..640x344.h264lc.u.p.m4v\", + \"artworkUrl30\":\"http://a5.mzstatic.com/us/r1000/018/Video/2b/5f/23/mzi.vnvfgcuj.40x30-75.jpg\", + \"artworkUrl60\":\"http://a1.mzstatic.com/us/r1000/018/Video/2b/5f/23/mzi.vnvfgcuj.80x60-75.jpg\", + \"artworkUrl100\":\"http://a2.mzstatic.com/us/r1000/018/Video/2b/5f/23/mzi.vnvfgcuj.100x100-75.jpg\", + \"collectionPrice\":29.99, \"trackPrice\":1.99, \"releaseDate\":\"2010-11-19T08:00:00Z\", + \"collectionExplicitness\":\"notExplicit\", \"trackExplicitness\":\"notExplicit\", + \"discCount\":1, \"discNumber\":1, \"trackCount\":43, \"trackNumber\":1, \"trackTimeMillis\":273006.0, + \"country\":\"USA\", \"currency\":\"USD\", \"primaryGenreName\":\"Pop\"}, \n{\"wrapperType\":\"track\", + \"kind\":\"music-video\", \"artistId\":32940, \"collectionId\":405410751, \"trackId\":405410788, + \"artistName\":\"Michael Jackson\", \"collectionName\":\"Michael Jackson's Vision\", + \"trackName\":\"Rock With You\", \"collectionCensoredName\":\"Michael Jackson's + Vision\", \"trackCensoredName\":\"Rock With You (Michael Jackson's Vision)\", + \"artistViewUrl\":\"http://itunes.apple.com/us/artist/michael-jackson/id32940?uo=4\", + \"collectionViewUrl\":\"http://itunes.apple.com/us/music-video/rock-you-michael-jacksons/id405410788?uo=4\", + \"trackViewUrl\":\"http://itunes.apple.com/us/music-video/rock-you-michael-jacksons/id405410788?uo=4\", + \"previewUrl\":\"http://a1538.v.phobos.apple.com/us/r1000/054/Video/d2/44/d1/mzm.npinyzll..640x344.h264lc.u.p.m4v\", + \"artworkUrl30\":\"http://a1.mzstatic.com/us/r1000/006/Video/75/64/11/mzi.xixkmdjs.40x30-75.jpg\", + \"artworkUrl60\":\"http://a2.mzstatic.com/us/r1000/006/Video/75/64/11/mzi.xixkmdjs.80x60-75.jpg\", + \"artworkUrl100\":\"http://a2.mzstatic.com/us/r1000/006/Video/75/64/11/mzi.xixkmdjs.100x100-75.jpg\", + \"collectionPrice\":29.99, \"trackPrice\":1.99, \"releaseDate\":\"2010-11-19T08:00:00Z\", + \"collectionExplicitness\":\"notExplicit\", \"trackExplicitness\":\"notExplicit\", + \"discCount\":1, \"discNumber\":1, \"trackCount\":43, \"trackNumber\":2, \"trackTimeMillis\":224290.0, + \"country\":\"USA\", \"currency\":\"USD\", \"primaryGenreName\":\"Pop\"}, \n{\"wrapperType\":\"track\", + \"kind\":\"music-video\", \"artistId\":32940, \"collectionId\":405410751, \"trackId\":405410807, + \"artistName\":\"Michael Jackson\", \"collectionName\":\"Michael Jackson's Vision\", + \"trackName\":\"Another Part of Me\", \"collectionCensoredName\":\"Michael Jackson's + Vision\", \"trackCensoredName\":\"Another Part of Me (Michael Jackson's Vision)\", + \"artistViewUrl\":\"http://itunes.apple.com/us/artist/michael-jackson/id32940?uo=4\", + \"collectionViewUrl\":\"http://itunes.apple.com/us/music-video/another-part-me-michael-jacksons/id405410807?uo=4\", + \"trackViewUrl\":\"http://itunes.apple.com/us/music-video/another-part-me-michael-jacksons/id405410807?uo=4\", + \"previewUrl\":\"http://a171.v.phobos.apple.com/us/r1000/003/Video/07/3f/a7/mzm.oovynbhm..640x344.h264lc.u.p.m4v\", + \"artworkUrl30\":\"http://a4.mzstatic.com/us/r1000/059/Video/ad/fa/13/mzi.xemscnvi.40x30-75.jpg\", + \"artworkUrl60\":\"http://a5.mzstatic.com/us/r1000/059/Video/ad/fa/13/mzi.xemscnvi.80x60-75.jpg\", + \"artworkUrl100\":\"http://a3.mzstatic.com/us/r1000/059/Video/ad/fa/13/mzi.xemscnvi.100x100-75.jpg\", + \"collectionPrice\":29.99, \"trackPrice\":1.99, \"releaseDate\":\"2010-11-19T08:00:00Z\", + \"collectionExplicitness\":\"notExplicit\", \"trackExplicitness\":\"notExplicit\", + \"discCount\":1, \"discNumber\":1, \"trackCount\":43, \"trackNumber\":12, \"trackTimeMillis\":292726.0, + \"country\":\"USA\", \"currency\":\"USD\", \"primaryGenreName\":\"Pop\"}, \n{\"wrapperType\":\"track\", + \"kind\":\"music-video\", \"artistId\":32940, \"collectionId\":405410751, \"trackId\":405410844, + \"artistName\":\"Michael Jackson\", \"collectionName\":\"Michael Jackson's Vision\", + \"trackName\":\"Jam\", \"collectionCensoredName\":\"Michael Jackson's Vision\", + \"trackCensoredName\":\"Jam (Michael Jackson's Vision)\", \"artistViewUrl\":\"http://itunes.apple.com/us/artist/michael-jackson/id32940?uo=4\", + \"collectionViewUrl\":\"http://itunes.apple.com/us/music-video/jam-michael-jacksons-vision/id405410844?uo=4\", + \"trackViewUrl\":\"http://itunes.apple.com/us/music-video/jam-michael-jacksons-vision/id405410844?uo=4\", + \"previewUrl\":\"http://a224.v.phobos.apple.com/us/r1000/025/Video/44/b5/90/mzm.qjqbpanh..640x360.h264lc.u.p.m4v\", + \"artworkUrl30\":\"http://a4.mzstatic.com/us/r1000/006/Video/c9/75/50/mzi.hifmehdn.40x30-75.jpg\", + \"artworkUrl60\":\"http://a2.mzstatic.com/us/r1000/006/Video/c9/75/50/mzi.hifmehdn.80x60-75.jpg\", + \"artworkUrl100\":\"http://a3.mzstatic.com/us/r1000/006/Video/c9/75/50/mzi.hifmehdn.100x100-75.jpg\", + \"collectionPrice\":29.99, \"trackPrice\":1.99, \"releaseDate\":\"2010-11-19T08:00:00Z\", + \"collectionExplicitness\":\"notExplicit\", \"trackExplicitness\":\"notExplicit\", + \"discCount\":1, \"discNumber\":1, \"trackCount\":43, \"trackNumber\":20, \"trackTimeMillis\":493026.0, + \"country\":\"USA\", \"currency\":\"USD\", \"primaryGenreName\":\"Pop\"}, \n{\"wrapperType\":\"track\", + \"kind\":\"song\", \"artistId\":32940, \"collectionId\":159292399, \"trackId\":159294478, + \"artistName\":\"Michael Jackson\", \"collectionName\":\"The Essential Michael + Jackson\", \"trackName\":\"Man In the Mirror\", \"collectionCensoredName\":\"The + Essential Michael Jackson\", \"trackCensoredName\":\"Man In the Mirror\", \"artistViewUrl\":\"http://itunes.apple.com/us/artist/michael-jackson/id32940?uo=4\", + \"collectionViewUrl\":\"http://itunes.apple.com/us/album/man-in-the-mirror/id159292399?i=159294478&uo=4\", + \"trackViewUrl\":\"http://itunes.apple.com/us/album/man-in-the-mirror/id159292399?i=159294478&uo=4\", + \"previewUrl\":\"http://a1.mzstatic.com/us/r1000/080/Music/96/77/c5/mzm.mpayuugn.aac.p.m4a\", + \"artworkUrl30\":\"http://a5.mzstatic.com/us/r1000/045/Features/7f/50/ee/dj.zygromnm.30x30-50.jpg\", + \"artworkUrl60\":\"http://a2.mzstatic.com/us/r1000/045/Features/7f/50/ee/dj.zygromnm.60x60-50.jpg\", + \"artworkUrl100\":\"http://a3.mzstatic.com/us/r1000/045/Features/7f/50/ee/dj.zygromnm.100x100-75.jpg\", + \"collectionPrice\":16.99, \"trackPrice\":1.29, \"releaseDate\":\"2005-07-18T07:00:00Z\", + \"collectionExplicitness\":\"notExplicit\", \"trackExplicitness\":\"notExplicit\", + \"discCount\":2, \"discNumber\":2, \"trackCount\":17, \"trackNumber\":5, \"trackTimeMillis\":318960, + \"country\":\"USA\", \"currency\":\"USD\", \"primaryGenreName\":\"Pop\"}, \n{\"wrapperType\":\"track\", + \"kind\":\"song\", \"artistId\":32940, \"collectionId\":159292399, \"trackId\":159293848, + \"artistName\":\"Michael Jackson\", \"collectionName\":\"The Essential Michael + Jackson\", \"trackName\":\"Billie Jean\", \"collectionCensoredName\":\"The Essential + Michael Jackson\", \"trackCensoredName\":\"Billie Jean (Single Version)\", \"artistViewUrl\":\"http://itunes.apple.com/us/artist/michael-jackson/id32940?uo=4\", + \"collectionViewUrl\":\"http://itunes.apple.com/us/album/billie-jean-single-version/id159292399?i=159293848&uo=4\", + \"trackViewUrl\":\"http://itunes.apple.com/us/album/billie-jean-single-version/id159292399?i=159293848&uo=4\", + \"previewUrl\":\"http://a5.mzstatic.com/us/r1000/061/Music/52/2c/18/mzm.incrgvjy.aac.p.m4a\", + \"artworkUrl30\":\"http://a5.mzstatic.com/us/r1000/045/Features/7f/50/ee/dj.zygromnm.30x30-50.jpg\", + \"artworkUrl60\":\"http://a2.mzstatic.com/us/r1000/045/Features/7f/50/ee/dj.zygromnm.60x60-50.jpg\", + \"artworkUrl100\":\"http://a3.mzstatic.com/us/r1000/045/Features/7f/50/ee/dj.zygromnm.100x100-75.jpg\", + \"collectionPrice\":16.99, \"trackPrice\":1.29, \"releaseDate\":\"2005-07-18T07:00:00Z\", + \"collectionExplicitness\":\"notExplicit\", \"trackExplicitness\":\"notExplicit\", + \"discCount\":2, \"discNumber\":1, \"trackCount\":21, \"trackNumber\":16, \"trackTimeMillis\":292960, + \"country\":\"USA\", \"currency\":\"USD\", \"primaryGenreName\":\"Pop\"}, \n{\"wrapperType\":\"track\", + \"kind\":\"song\", \"artistId\":32940, \"collectionId\":159292399, \"trackId\":159294551, + \"artistName\":\"Michael Jackson\", \"collectionName\":\"The Essential Michael + Jackson\", \"trackName\":\"Smooth Criminal\", \"collectionCensoredName\":\"The + Essential Michael Jackson\", \"trackCensoredName\":\"Smooth Criminal\", \"artistViewUrl\":\"http://itunes.apple.com/us/artist/michael-jackson/id32940?uo=4\", + \"collectionViewUrl\":\"http://itunes.apple.com/us/album/smooth-criminal/id159292399?i=159294551&uo=4\", + \"trackViewUrl\":\"http://itunes.apple.com/us/album/smooth-criminal/id159292399?i=159294551&uo=4\", + \"previewUrl\":\"http://a1.mzstatic.com/us/r1000/070/Music/ea/b2/35/mzm.vfpsveix.aac.p.m4a\", + \"artworkUrl30\":\"http://a5.mzstatic.com/us/r1000/045/Features/7f/50/ee/dj.zygromnm.30x30-50.jpg\", + \"artworkUrl60\":\"http://a2.mzstatic.com/us/r1000/045/Features/7f/50/ee/dj.zygromnm.60x60-50.jpg\", + \"artworkUrl100\":\"http://a3.mzstatic.com/us/r1000/045/Features/7f/50/ee/dj.zygromnm.100x100-75.jpg\", + \"collectionPrice\":16.99, \"trackPrice\":1.29, \"releaseDate\":\"2005-07-18T07:00:00Z\", + \"collectionExplicitness\":\"notExplicit\", \"trackExplicitness\":\"notExplicit\", + \"discCount\":2, \"discNumber\":2, \"trackCount\":17, \"trackNumber\":8, \"trackTimeMillis\":257240, + \"country\":\"USA\", \"currency\":\"USD\", \"primaryGenreName\":\"Pop\"}, \n{\"wrapperType\":\"track\", + \"kind\":\"song\", \"artistId\":32940, \"collectionId\":159292399, \"trackId\":159294311, + \"artistName\":\"Michael Jackson\", \"collectionName\":\"The Essential Michael + Jackson\", \"trackName\":\"Thriller\", \"collectionCensoredName\":\"The Essential + Michael Jackson\", \"trackCensoredName\":\"Thriller (Single Version)\", \"artistViewUrl\":\"http://itunes.apple.com/us/artist/michael-jackson/id32940?uo=4\", + \"collectionViewUrl\":\"http://itunes.apple.com/us/album/thriller-single-version/id159292399?i=159294311&uo=4\", + \"trackViewUrl\":\"http://itunes.apple.com/us/album/thriller-single-version/id159292399?i=159294311&uo=4\", + \"previewUrl\":\"http://a4.mzstatic.com/us/r1000/107/Music/56/62/c2/mzm.brfffwxo.aac.p.m4a\", + \"artworkUrl30\":\"http://a5.mzstatic.com/us/r1000/045/Features/7f/50/ee/dj.zygromnm.30x30-50.jpg\", + \"artworkUrl60\":\"http://a2.mzstatic.com/us/r1000/045/Features/7f/50/ee/dj.zygromnm.60x60-50.jpg\", + \"artworkUrl100\":\"http://a3.mzstatic.com/us/r1000/045/Features/7f/50/ee/dj.zygromnm.100x100-75.jpg\", + \"collectionPrice\":16.99, \"trackPrice\":1.29, \"releaseDate\":\"2005-07-18T07:00:00Z\", + \"collectionExplicitness\":\"notExplicit\", \"trackExplicitness\":\"notExplicit\", + \"discCount\":2, \"discNumber\":1, \"trackCount\":21, \"trackNumber\":21, \"trackTimeMillis\":312413, + \"country\":\"USA\", \"currency\":\"USD\", \"primaryGenreName\":\"Pop\"}, \n{\"wrapperType\":\"track\", + \"kind\":\"song\", \"artistId\":32940, \"collectionId\":159292399, \"trackId\":159294296, + \"artistName\":\"Michael Jackson\", \"collectionName\":\"The Essential Michael + Jackson\", \"trackName\":\"P.Y.T. (Pretty Young Thing)\", \"collectionCensoredName\":\"The + Essential Michael Jackson\", \"trackCensoredName\":\"P.Y.T. (Pretty Young Thing)\", + \"artistViewUrl\":\"http://itunes.apple.com/us/artist/michael-jackson/id32940?uo=4\", + \"collectionViewUrl\":\"http://itunes.apple.com/us/album/p.y.t.-pretty-young-thing/id159292399?i=159294296&uo=4\", + \"trackViewUrl\":\"http://itunes.apple.com/us/album/p.y.t.-pretty-young-thing/id159292399?i=159294296&uo=4\", + \"previewUrl\":\"http://a4.mzstatic.com/us/r1000/060/Music/1c/24/07/mzm.lecsasej.aac.p.m4a\", + \"artworkUrl30\":\"http://a5.mzstatic.com/us/r1000/045/Features/7f/50/ee/dj.zygromnm.30x30-50.jpg\", + \"artworkUrl60\":\"http://a2.mzstatic.com/us/r1000/045/Features/7f/50/ee/dj.zygromnm.60x60-50.jpg\", + \"artworkUrl100\":\"http://a3.mzstatic.com/us/r1000/045/Features/7f/50/ee/dj.zygromnm.100x100-75.jpg\", + \"collectionPrice\":16.99, \"trackPrice\":0.69, \"releaseDate\":\"2005-07-18T07:00:00Z\", + \"collectionExplicitness\":\"notExplicit\", \"trackExplicitness\":\"notExplicit\", + \"discCount\":2, \"discNumber\":1, \"trackCount\":21, \"trackNumber\":20, \"trackTimeMillis\":238587, + \"country\":\"USA\", \"currency\":\"USD\", \"primaryGenreName\":\"Pop\"}, \n{\"wrapperType\":\"track\", + \"kind\":\"song\", \"artistId\":32940, \"collectionId\":159292399, \"trackId\":159293312, + \"artistName\":\"Michael Jackson\", \"collectionName\":\"The Essential Michael + Jackson\", \"trackName\":\"Don't Stop 'Til You Get Enough\", \"collectionCensoredName\":\"The + Essential Michael Jackson\", \"trackCensoredName\":\"Don't Stop 'Til You Get + Enough (Single Version)\", \"artistViewUrl\":\"http://itunes.apple.com/us/artist/michael-jackson/id32940?uo=4\", + \"collectionViewUrl\":\"http://itunes.apple.com/us/album/dont-stop-til-you-get-enough/id159292399?i=159293312&uo=4\", + \"trackViewUrl\":\"http://itunes.apple.com/us/album/dont-stop-til-you-get-enough/id159292399?i=159293312&uo=4\", + \"previewUrl\":\"http://a5.mzstatic.com/us/r1000/073/Music/32/27/27/mzm.zkujadmk.aac.p.m4a\", + \"artworkUrl30\":\"http://a5.mzstatic.com/us/r1000/045/Features/7f/50/ee/dj.zygromnm.30x30-50.jpg\", + \"artworkUrl60\":\"http://a2.mzstatic.com/us/r1000/045/Features/7f/50/ee/dj.zygromnm.60x60-50.jpg\", + \"artworkUrl100\":\"http://a3.mzstatic.com/us/r1000/045/Features/7f/50/ee/dj.zygromnm.100x100-75.jpg\", + \"collectionPrice\":16.99, \"trackPrice\":1.29, \"releaseDate\":\"2005-07-18T07:00:00Z\", + \"collectionExplicitness\":\"notExplicit\", \"trackExplicitness\":\"notExplicit\", + \"discCount\":2, \"discNumber\":1, \"trackCount\":21, \"trackNumber\":10, \"trackTimeMillis\":351347, + \"country\":\"USA\", \"currency\":\"USD\", \"primaryGenreName\":\"Pop\"}, \n{\"wrapperType\":\"track\", + \"kind\":\"song\", \"artistId\":32940, \"collectionId\":159292399, \"trackId\":159294429, + \"artistName\":\"Michael Jackson\", \"collectionName\":\"The Essential Michael + Jackson\", \"trackName\":\"The Way You Make Me Feel\", \"collectionCensoredName\":\"The + Essential Michael Jackson\", \"trackCensoredName\":\"The Way You Make Me Feel + (Single Version)\", \"artistViewUrl\":\"http://itunes.apple.com/us/artist/michael-jackson/id32940?uo=4\", + \"collectionViewUrl\":\"http://itunes.apple.com/us/album/way-you-make-me-feel-single/id159292399?i=159294429&uo=4\", + \"trackViewUrl\":\"http://itunes.apple.com/us/album/way-you-make-me-feel-single/id159292399?i=159294429&uo=4\", + \"previewUrl\":\"http://a5.mzstatic.com/us/r1000/100/Music/be/b5/99/mzm.sxissmkr.aac.p.m4a\", + \"artworkUrl30\":\"http://a5.mzstatic.com/us/r1000/045/Features/7f/50/ee/dj.zygromnm.30x30-50.jpg\", + \"artworkUrl60\":\"http://a2.mzstatic.com/us/r1000/045/Features/7f/50/ee/dj.zygromnm.60x60-50.jpg\", + \"artworkUrl100\":\"http://a3.mzstatic.com/us/r1000/045/Features/7f/50/ee/dj.zygromnm.100x100-75.jpg\", + \"collectionPrice\":16.99, \"trackPrice\":1.29, \"releaseDate\":\"2005-07-18T07:00:00Z\", + \"collectionExplicitness\":\"notExplicit\", \"trackExplicitness\":\"notExplicit\", + \"discCount\":2, \"discNumber\":2, \"trackCount\":17, \"trackNumber\":4, \"trackTimeMillis\":266347, + \"country\":\"USA\", \"currency\":\"USD\", \"primaryGenreName\":\"Pop\"}, \n{\"wrapperType\":\"track\", + \"kind\":\"song\", \"artistId\":32940, \"collectionId\":159292399, \"trackId\":159294060, + \"artistName\":\"Michael Jackson\", \"collectionName\":\"The Essential Michael + Jackson\", \"trackName\":\"Beat It\", \"collectionCensoredName\":\"The Essential + Michael Jackson\", \"trackCensoredName\":\"Beat It (Single Version)\", \"artistViewUrl\":\"http://itunes.apple.com/us/artist/michael-jackson/id32940?uo=4\", + \"collectionViewUrl\":\"http://itunes.apple.com/us/album/beat-it-single-version/id159292399?i=159294060&uo=4\", + \"trackViewUrl\":\"http://itunes.apple.com/us/album/beat-it-single-version/id159292399?i=159294060&uo=4\", + \"previewUrl\":\"http://a5.mzstatic.com/us/r1000/062/Music/fe/2b/c4/mzm.daqotzgq.aac.p.m4a\", + \"artworkUrl30\":\"http://a5.mzstatic.com/us/r1000/045/Features/7f/50/ee/dj.zygromnm.30x30-50.jpg\", + \"artworkUrl60\":\"http://a2.mzstatic.com/us/r1000/045/Features/7f/50/ee/dj.zygromnm.60x60-50.jpg\", + \"artworkUrl100\":\"http://a3.mzstatic.com/us/r1000/045/Features/7f/50/ee/dj.zygromnm.100x100-75.jpg\", + \"collectionPrice\":16.99, \"trackPrice\":1.29, \"releaseDate\":\"2005-07-18T07:00:00Z\", + \"collectionExplicitness\":\"notExplicit\", \"trackExplicitness\":\"notExplicit\", + \"discCount\":2, \"discNumber\":1, \"trackCount\":21, \"trackNumber\":17, \"trackTimeMillis\":258040, + \"country\":\"USA\", \"currency\":\"USD\", \"primaryGenreName\":\"Pop\"}, \n{\"wrapperType\":\"track\", + \"kind\":\"song\", \"artistId\":32940, \"collectionId\":159292399, \"trackId\":159294814, + \"artistName\":\"Michael Jackson\", \"collectionName\":\"The Essential Michael + Jackson\", \"trackName\":\"Black or White\", \"collectionCensoredName\":\"The + Essential Michael Jackson\", \"trackCensoredName\":\"Black or White (Single + Version)\", \"artistViewUrl\":\"http://itunes.apple.com/us/artist/michael-jackson/id32940?uo=4\", + \"collectionViewUrl\":\"http://itunes.apple.com/us/album/black-or-white-single-version/id159292399?i=159294814&uo=4\", + \"trackViewUrl\":\"http://itunes.apple.com/us/album/black-or-white-single-version/id159292399?i=159294814&uo=4\", + \"previewUrl\":\"http://a1.mzstatic.com/us/r1000/079/Music/ce/22/9d/mzm.vfosbfzy.aac.p.m4a\", + \"artworkUrl30\":\"http://a5.mzstatic.com/us/r1000/045/Features/7f/50/ee/dj.zygromnm.30x30-50.jpg\", + \"artworkUrl60\":\"http://a2.mzstatic.com/us/r1000/045/Features/7f/50/ee/dj.zygromnm.60x60-50.jpg\", + \"artworkUrl100\":\"http://a3.mzstatic.com/us/r1000/045/Features/7f/50/ee/dj.zygromnm.100x100-75.jpg\", + \"collectionPrice\":16.99, \"trackPrice\":1.29, \"releaseDate\":\"2005-07-18T07:00:00Z\", + \"collectionExplicitness\":\"notExplicit\", \"trackExplicitness\":\"notExplicit\", + \"discCount\":2, \"discNumber\":2, \"trackCount\":17, \"trackNumber\":9, \"trackTimeMillis\":202853, + \"country\":\"USA\", \"currency\":\"USD\", \"primaryGenreName\":\"Pop\"}, \n{\"wrapperType\":\"track\", + \"kind\":\"song\", \"artistId\":32940, \"collectionId\":273047558, \"trackId\":273047570, + \"artistName\":\"Michael Jackson\", \"collectionName\":\"Thriller (25th Anniversary, + Zombie Cover)\", \"trackName\":\"Thriller\", \"collectionCensoredName\":\"Thriller + (25th Anniversary, Zombie Cover)\", \"trackCensoredName\":\"Thriller\", \"artistViewUrl\":\"http://itunes.apple.com/us/artist/michael-jackson/id32940?uo=4\", + \"collectionViewUrl\":\"http://itunes.apple.com/us/album/thriller/id273047558?i=273047570&uo=4\", + \"trackViewUrl\":\"http://itunes.apple.com/us/album/thriller/id273047558?i=273047570&uo=4\", + \"previewUrl\":\"http://a5.mzstatic.com/us/r1000/077/Music/44/c4/d1/mzm.frmhpgfy.aac.p.m4a\", + \"artworkUrl30\":\"http://a2.mzstatic.com/us/r1000/021/Music/ce/ed/a1/mzi.gqqhjkmr.30x30-50.jpg\", + \"artworkUrl60\":\"http://a1.mzstatic.com/us/r1000/021/Music/ce/ed/a1/mzi.gqqhjkmr.60x60-50.jpg\", + \"artworkUrl100\":\"http://a1.mzstatic.com/us/r1000/021/Music/ce/ed/a1/mzi.gqqhjkmr.100x100-75.jpg\", + \"collectionPrice\":13.99, \"trackPrice\":1.29, \"releaseDate\":\"2008-02-12T08:00:00Z\", + \"collectionExplicitness\":\"notExplicit\", \"trackExplicitness\":\"notExplicit\", + \"discCount\":1, \"discNumber\":1, \"trackCount\":17, \"trackNumber\":4, \"trackTimeMillis\":357267, + \"country\":\"USA\", \"currency\":\"USD\", \"primaryGenreName\":\"Pop\"}, \n{\"wrapperType\":\"track\", + \"kind\":\"song\", \"artistId\":32940, \"collectionId\":159292399, \"trackId\":159294345, + \"artistName\":\"Michael Jackson\", \"collectionName\":\"The Essential Michael + Jackson\", \"trackName\":\"Bad\", \"collectionCensoredName\":\"The Essential + Michael Jackson\", \"trackCensoredName\":\"Bad\", \"artistViewUrl\":\"http://itunes.apple.com/us/artist/michael-jackson/id32940?uo=4\", + \"collectionViewUrl\":\"http://itunes.apple.com/us/album/bad/id159292399?i=159294345&uo=4\", + \"trackViewUrl\":\"http://itunes.apple.com/us/album/bad/id159292399?i=159294345&uo=4\", + \"previewUrl\":\"http://a1.mzstatic.com/us/r1000/071/Music/6b/93/ae/mzm.jofhfvkj.aac.p.m4a\", + \"artworkUrl30\":\"http://a5.mzstatic.com/us/r1000/045/Features/7f/50/ee/dj.zygromnm.30x30-50.jpg\", + \"artworkUrl60\":\"http://a2.mzstatic.com/us/r1000/045/Features/7f/50/ee/dj.zygromnm.60x60-50.jpg\", + \"artworkUrl100\":\"http://a3.mzstatic.com/us/r1000/045/Features/7f/50/ee/dj.zygromnm.100x100-75.jpg\", + \"collectionPrice\":16.99, \"trackPrice\":1.29, \"releaseDate\":\"2005-07-18T07:00:00Z\", + \"collectionExplicitness\":\"notExplicit\", \"trackExplicitness\":\"notExplicit\", + \"discCount\":2, \"discNumber\":2, \"trackCount\":17, \"trackNumber\":1, \"trackTimeMillis\":247693, + \"country\":\"USA\", \"currency\":\"USD\", \"primaryGenreName\":\"Pop\"}, \n{\"wrapperType\":\"track\", + \"kind\":\"song\", \"artistId\":32940, \"collectionId\":159292399, \"trackId\":159293419, + \"artistName\":\"Michael Jackson\", \"collectionName\":\"The Essential Michael + Jackson\", \"trackName\":\"Rock With You\", \"collectionCensoredName\":\"The + Essential Michael Jackson\", \"trackCensoredName\":\"Rock With You (Single Version)\", + \"artistViewUrl\":\"http://itunes.apple.com/us/artist/michael-jackson/id32940?uo=4\", + \"collectionViewUrl\":\"http://itunes.apple.com/us/album/rock-with-you-single-version/id159292399?i=159293419&uo=4\", + \"trackViewUrl\":\"http://itunes.apple.com/us/album/rock-with-you-single-version/id159292399?i=159293419&uo=4\", + \"previewUrl\":\"http://a1.mzstatic.com/us/r1000/103/Music/52/44/41/mzm.macfqpjz.aac.p.m4a\", + \"artworkUrl30\":\"http://a5.mzstatic.com/us/r1000/045/Features/7f/50/ee/dj.zygromnm.30x30-50.jpg\", + \"artworkUrl60\":\"http://a2.mzstatic.com/us/r1000/045/Features/7f/50/ee/dj.zygromnm.60x60-50.jpg\", + \"artworkUrl100\":\"http://a3.mzstatic.com/us/r1000/045/Features/7f/50/ee/dj.zygromnm.100x100-75.jpg\", + \"collectionPrice\":16.99, \"trackPrice\":1.29, \"releaseDate\":\"2005-07-18T07:00:00Z\", + \"collectionExplicitness\":\"notExplicit\", \"trackExplicitness\":\"notExplicit\", + \"discCount\":2, \"discNumber\":1, \"trackCount\":21, \"trackNumber\":11, \"trackTimeMillis\":203067, + \"country\":\"USA\", \"currency\":\"USD\", \"primaryGenreName\":\"Pop\"}, \n{\"wrapperType\":\"track\", + \"kind\":\"song\", \"artistId\":32940, \"collectionId\":159292399, \"trackId\":159294485, + \"artistName\":\"Michael Jackson\", \"collectionName\":\"The Essential Michael + Jackson\", \"trackName\":\"Dirty Diana\", \"collectionCensoredName\":\"The Essential + Michael Jackson\", \"trackCensoredName\":\"Dirty Diana\", \"artistViewUrl\":\"http://itunes.apple.com/us/artist/michael-jackson/id32940?uo=4\", + \"collectionViewUrl\":\"http://itunes.apple.com/us/album/dirty-diana/id159292399?i=159294485&uo=4\", + \"trackViewUrl\":\"http://itunes.apple.com/us/album/dirty-diana/id159292399?i=159294485&uo=4\", + \"previewUrl\":\"http://a2.mzstatic.com/us/r1000/119/Music/ad/ac/c6/mzm.ocprovhx.aac.p.m4a\", + \"artworkUrl30\":\"http://a5.mzstatic.com/us/r1000/045/Features/7f/50/ee/dj.zygromnm.30x30-50.jpg\", + \"artworkUrl60\":\"http://a2.mzstatic.com/us/r1000/045/Features/7f/50/ee/dj.zygromnm.60x60-50.jpg\", + \"artworkUrl100\":\"http://a3.mzstatic.com/us/r1000/045/Features/7f/50/ee/dj.zygromnm.100x100-75.jpg\", + \"collectionPrice\":16.99, \"trackPrice\":1.29, \"releaseDate\":\"2005-07-18T07:00:00Z\", + \"collectionExplicitness\":\"notExplicit\", \"trackExplicitness\":\"notExplicit\", + \"discCount\":2, \"discNumber\":2, \"trackCount\":17, \"trackNumber\":6, \"trackTimeMillis\":280760, + \"country\":\"USA\", \"currency\":\"USD\", \"primaryGenreName\":\"Pop\"}, \n{\"wrapperType\":\"track\", + \"kind\":\"song\", \"artistId\":32940, \"collectionId\":159292399, \"trackId\":159294254, + \"artistName\":\"Michael Jackson\", \"collectionName\":\"The Essential Michael + Jackson\", \"trackName\":\"Human Nature\", \"collectionCensoredName\":\"The + Essential Michael Jackson\", \"trackCensoredName\":\"Human Nature\", \"artistViewUrl\":\"http://itunes.apple.com/us/artist/michael-jackson/id32940?uo=4\", + \"collectionViewUrl\":\"http://itunes.apple.com/us/album/human-nature/id159292399?i=159294254&uo=4\", + \"trackViewUrl\":\"http://itunes.apple.com/us/album/human-nature/id159292399?i=159294254&uo=4\", + \"previewUrl\":\"http://a3.mzstatic.com/us/r1000/088/Music/8e/53/27/mzm.agdkbiiz.aac.p.m4a\", + \"artworkUrl30\":\"http://a5.mzstatic.com/us/r1000/045/Features/7f/50/ee/dj.zygromnm.30x30-50.jpg\", + \"artworkUrl60\":\"http://a2.mzstatic.com/us/r1000/045/Features/7f/50/ee/dj.zygromnm.60x60-50.jpg\", + \"artworkUrl100\":\"http://a3.mzstatic.com/us/r1000/045/Features/7f/50/ee/dj.zygromnm.100x100-75.jpg\", + \"collectionPrice\":16.99, \"trackPrice\":1.29, \"releaseDate\":\"2005-07-18T07:00:00Z\", + \"collectionExplicitness\":\"notExplicit\", \"trackExplicitness\":\"notExplicit\", + \"discCount\":2, \"discNumber\":1, \"trackCount\":21, \"trackNumber\":19, \"trackTimeMillis\":225053, + \"country\":\"USA\", \"currency\":\"USD\", \"primaryGenreName\":\"Pop\"}, \n{\"wrapperType\":\"track\", + \"kind\":\"song\", \"artistId\":32940, \"collectionId\":159292399, \"trackId\":159295684, + \"artistName\":\"Michael Jackson\", \"collectionName\":\"The Essential Michael + Jackson\", \"trackName\":\"Will You Be There\", \"collectionCensoredName\":\"The + Essential Michael Jackson\", \"trackCensoredName\":\"Will You Be There (Single + Version)\", \"artistViewUrl\":\"http://itunes.apple.com/us/artist/michael-jackson/id32940?uo=4\", + \"collectionViewUrl\":\"http://itunes.apple.com/us/album/will-you-be-there-single-version/id159292399?i=159295684&uo=4\", + \"trackViewUrl\":\"http://itunes.apple.com/us/album/will-you-be-there-single-version/id159292399?i=159295684&uo=4\", + \"previewUrl\":\"http://a4.mzstatic.com/us/r1000/102/Music/96/11/fa/mzm.dvqdylrh.aac.p.m4a\", + \"artworkUrl30\":\"http://a5.mzstatic.com/us/r1000/045/Features/7f/50/ee/dj.zygromnm.30x30-50.jpg\", + \"artworkUrl60\":\"http://a2.mzstatic.com/us/r1000/045/Features/7f/50/ee/dj.zygromnm.60x60-50.jpg\", + \"artworkUrl100\":\"http://a3.mzstatic.com/us/r1000/045/Features/7f/50/ee/dj.zygromnm.100x100-75.jpg\", + \"collectionPrice\":16.99, \"trackPrice\":1.29, \"releaseDate\":\"2005-07-18T07:00:00Z\", + \"collectionExplicitness\":\"notExplicit\", \"trackExplicitness\":\"notExplicit\", + \"discCount\":2, \"discNumber\":2, \"trackCount\":17, \"trackNumber\":14, \"trackTimeMillis\":220387, + \"country\":\"USA\", \"currency\":\"USD\", \"primaryGenreName\":\"Pop\"}, \n{\"wrapperType\":\"track\", + \"kind\":\"song\", \"artistId\":32940, \"collectionId\":159292399, \"trackId\":159294123, + \"artistName\":\"Michael Jackson\", \"collectionName\":\"The Essential Michael + Jackson\", \"trackName\":\"Wanna Be Startin' Somethin'\", \"collectionCensoredName\":\"The + Essential Michael Jackson\", \"trackCensoredName\":\"Wanna Be Startin' Somethin' + (Single Version)\", \"artistViewUrl\":\"http://itunes.apple.com/us/artist/michael-jackson/id32940?uo=4\", + \"collectionViewUrl\":\"http://itunes.apple.com/us/album/wanna-be-startin-somethin/id159292399?i=159294123&uo=4\", + \"trackViewUrl\":\"http://itunes.apple.com/us/album/wanna-be-startin-somethin/id159292399?i=159294123&uo=4\", + \"previewUrl\":\"http://a1.mzstatic.com/us/r1000/106/Music/12/fa/90/mzm.jyyxexxk.aac.p.m4a\", + \"artworkUrl30\":\"http://a5.mzstatic.com/us/r1000/045/Features/7f/50/ee/dj.zygromnm.30x30-50.jpg\", + \"artworkUrl60\":\"http://a2.mzstatic.com/us/r1000/045/Features/7f/50/ee/dj.zygromnm.60x60-50.jpg\", + \"artworkUrl100\":\"http://a3.mzstatic.com/us/r1000/045/Features/7f/50/ee/dj.zygromnm.100x100-75.jpg\", + \"collectionPrice\":16.99, \"trackPrice\":1.29, \"releaseDate\":\"2005-07-18T07:00:00Z\", + \"collectionExplicitness\":\"notExplicit\", \"trackExplicitness\":\"notExplicit\", + \"discCount\":2, \"discNumber\":1, \"trackCount\":21, \"trackNumber\":18, \"trackTimeMillis\":257427, + \"country\":\"USA\", \"currency\":\"USD\", \"primaryGenreName\":\"Pop\"}, \n{\"wrapperType\":\"track\", + \"kind\":\"song\", \"artistId\":32940, \"collectionId\":159292399, \"trackId\":159295880, + \"artistName\":\"Michael Jackson\", \"collectionName\":\"The Essential Michael + Jackson\", \"trackName\":\"You Are Not Alone\", \"collectionCensoredName\":\"The + Essential Michael Jackson\", \"trackCensoredName\":\"You Are Not Alone (Single + Version)\", \"artistViewUrl\":\"http://itunes.apple.com/us/artist/michael-jackson/id32940?uo=4\", + \"collectionViewUrl\":\"http://itunes.apple.com/us/album/you-are-not-alone-single-version/id159292399?i=159295880&uo=4\", + \"trackViewUrl\":\"http://itunes.apple.com/us/album/you-are-not-alone-single-version/id159292399?i=159295880&uo=4\", + \"previewUrl\":\"http://a5.mzstatic.com/us/r1000/098/Music/b5/3d/7f/mzm.qxufchiw.aac.p.m4a\", + \"artworkUrl30\":\"http://a5.mzstatic.com/us/r1000/045/Features/7f/50/ee/dj.zygromnm.30x30-50.jpg\", + \"artworkUrl60\":\"http://a2.mzstatic.com/us/r1000/045/Features/7f/50/ee/dj.zygromnm.60x60-50.jpg\", + \"artworkUrl100\":\"http://a3.mzstatic.com/us/r1000/045/Features/7f/50/ee/dj.zygromnm.100x100-75.jpg\", + \"collectionPrice\":16.99, \"trackPrice\":1.29, \"releaseDate\":\"2005-07-18T07:00:00Z\", + \"collectionExplicitness\":\"notExplicit\", \"trackExplicitness\":\"notExplicit\", + \"discCount\":2, \"discNumber\":2, \"trackCount\":17, \"trackNumber\":16, \"trackTimeMillis\":295987, + \"country\":\"USA\", \"currency\":\"USD\", \"primaryGenreName\":\"Pop\"}, \n{\"wrapperType\":\"track\", + \"kind\":\"song\", \"artistId\":32940, \"collectionId\":159292399, \"trackId\":159295548, + \"artistName\":\"Michael Jackson\", \"collectionName\":\"The Essential Michael + Jackson\", \"trackName\":\"Remember the Time\", \"collectionCensoredName\":\"The + Essential Michael Jackson\", \"trackCensoredName\":\"Remember the Time\", \"artistViewUrl\":\"http://itunes.apple.com/us/artist/michael-jackson/id32940?uo=4\", + \"collectionViewUrl\":\"http://itunes.apple.com/us/album/remember-the-time/id159292399?i=159295548&uo=4\", + \"trackViewUrl\":\"http://itunes.apple.com/us/album/remember-the-time/id159292399?i=159295548&uo=4\", + \"previewUrl\":\"http://a5.mzstatic.com/us/r1000/061/Music/06/44/f1/mzm.zstzpksv.aac.p.m4a\", + \"artworkUrl30\":\"http://a5.mzstatic.com/us/r1000/045/Features/7f/50/ee/dj.zygromnm.30x30-50.jpg\", + \"artworkUrl60\":\"http://a2.mzstatic.com/us/r1000/045/Features/7f/50/ee/dj.zygromnm.60x60-50.jpg\", + \"artworkUrl100\":\"http://a3.mzstatic.com/us/r1000/045/Features/7f/50/ee/dj.zygromnm.100x100-75.jpg\", + \"collectionPrice\":16.99, \"trackPrice\":1.29, \"releaseDate\":\"2005-07-18T07:00:00Z\", + \"collectionExplicitness\":\"notExplicit\", \"trackExplicitness\":\"notExplicit\", + \"discCount\":2, \"discNumber\":2, \"trackCount\":17, \"trackNumber\":11, \"trackTimeMillis\":239893, + \"country\":\"USA\", \"currency\":\"USD\", \"primaryGenreName\":\"Pop\"}]\n}\n\n\n" + http_version: '1.1' +- !ruby/struct:VCR::HTTPInteraction + request: !ruby/struct:VCR::Request + method: :get + uri: http://ax.itunes.apple.com:80/WebObjects/MZStoreServices.woa/wa/wsSearch?media=music&term=Jose%20James + body: + headers: + accept: + - application/json + user-agent: + - ITunes Ruby Gem 0.5.5 + accept-encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + response: !ruby/struct:VCR::Response + status: !ruby/struct:VCR::ResponseStatus + code: 200 + message: OK + headers: + x-apple-orig-url-path: + - /WebObjects/MZStoreServices.woa/wa/wsSearch?term=Jose%20James&media=music + x-apple-translated-wo-url: + - /WebObjects/MZStoreServices.woa/wa/wsSearch?term=Jose%20James&media=music + x-apple-application-site: + - NWK + x-apple-max-age: + - '3600' + content-type: + - text/javascript; charset=utf-8 + x-apple-application-instance: + - '1008020' + x-webobjects-loadaverage: + - '0' + vary: + - Accept-Encoding + - X-Apple-Store-Front + expires: + - Wed, 18 Apr 2012 22:53:37 GMT + cache-control: + - max-age=0, no-cache + pragma: + - no-cache + date: + - Wed, 18 Apr 2012 22:53:37 GMT + transfer-encoding: + - chunked + connection: + - Transfer-Encoding + - keep-alive + x-apple-partner: + - origin.0 + body: ! "\n\n\n{\n \"resultCount\":50,\n \"results\": [\n{\"wrapperType\":\"track\", + \"kind\":\"music-video\", \"artistId\":5117774, \"collectionId\":365350903, + \"trackId\":365354104, \"artistName\":\"José James\", \"collectionName\":\"Blackmagic + (Deluxe Version)\", \"trackName\":\"Code\", \"collectionCensoredName\":\"Blackmagic + (Deluxe Version)\", \"trackCensoredName\":\"Code\", \"artistViewUrl\":\"http://itunes.apple.com/us/artist/jose-james/id5117774?uo=4\", + \"collectionViewUrl\":\"http://itunes.apple.com/us/music-video/code/id365354104?uo=4\", + \"trackViewUrl\":\"http://itunes.apple.com/us/music-video/code/id365354104?uo=4\", + \"previewUrl\":\"http://a536.v.phobos.apple.com/us/r1000/059/Video/bf/9c/40/mzm.yajpnkyk..640x480.h264lc.u.p.m4v\", + \"artworkUrl30\":\"http://a3.mzstatic.com/us/r1000/031/Video/05/49/80/mzi.akbfkmtq.40x30-75.jpg\", + \"artworkUrl60\":\"http://a1.mzstatic.com/us/r1000/031/Video/05/49/80/mzi.akbfkmtq.80x60-75.jpg\", + \"artworkUrl100\":\"http://a4.mzstatic.com/us/r1000/031/Video/05/49/80/mzi.akbfkmtq.100x100-75.jpg\", + \"collectionPrice\":9.99, \"trackPrice\":1.49, \"releaseDate\":\"2010-04-12T07:00:00Z\", + \"collectionExplicitness\":\"notExplicit\", \"trackExplicitness\":\"notExplicit\", + \"discCount\":1, \"discNumber\":1, \"trackCount\":21, \"trackNumber\":21, \"trackTimeMillis\":280120.0, + \"country\":\"USA\", \"currency\":\"USD\", \"primaryGenreName\":\"Jazz\"}, \n{\"wrapperType\":\"track\", + \"kind\":\"music-video\", \"artistId\":5117774, \"collectionId\":286264618, + \"trackId\":286264696, \"artistName\":\"José James\", \"collectionName\":\"Park + Bench People - EP\", \"trackName\":\"Park Bench People\", \"collectionCensoredName\":\"Park + Bench People - EP\", \"trackCensoredName\":\"Park Bench People\", \"artistViewUrl\":\"http://itunes.apple.com/us/artist/jose-james/id5117774?uo=4\", + \"collectionViewUrl\":\"http://itunes.apple.com/us/music-video/park-bench-people/id286264696?uo=4\", + \"trackViewUrl\":\"http://itunes.apple.com/us/music-video/park-bench-people/id286264696?uo=4\", + \"previewUrl\":\"http://a1580.v.phobos.apple.com/us/r1000/004/Video/0f/0b/f4/mzm.efxwdsfe..640x360.h264lc.u.p.m4v\", + \"artworkUrl30\":\"http://a5.mzstatic.com/us/r1000/036/Features/71/2c/6f/dj.zaotuasm.40x30-75.jpg\", + \"artworkUrl60\":\"http://a1.mzstatic.com/us/r1000/036/Features/71/2c/6f/dj.zaotuasm.80x60-75.jpg\", + \"artworkUrl100\":\"http://a1.mzstatic.com/us/r1000/036/Features/71/2c/6f/dj.zaotuasm.100x100-75.jpg\", + \"collectionPrice\":1.99, \"trackPrice\":1.49, \"releaseDate\":\"2008-08-24T07:00:00Z\", + \"collectionExplicitness\":\"notExplicit\", \"trackExplicitness\":\"notExplicit\", + \"discCount\":1, \"discNumber\":1, \"trackCount\":3, \"trackNumber\":3, \"trackTimeMillis\":234219.0, + \"country\":\"USA\", \"currency\":\"USD\", \"primaryGenreName\":\"Jazz\"}, \n{\"wrapperType\":\"track\", + \"kind\":\"song\", \"artistId\":5117774, \"collectionId\":365350903, \"trackId\":365354086, + \"artistName\":\"José James\", \"collectionName\":\"Blackmagic (Deluxe Version)\", + \"trackName\":\"Blackmagic\", \"collectionCensoredName\":\"Blackmagic (Deluxe + Version)\", \"trackCensoredName\":\"Blackmagic (Joy Orbison's Recreation)\", + \"artistViewUrl\":\"http://itunes.apple.com/us/artist/jose-james/id5117774?uo=4\", + \"collectionViewUrl\":\"http://itunes.apple.com/us/album/blackmagic-joy-orbisons-recreation/id365350903?i=365354086&uo=4\", + \"trackViewUrl\":\"http://itunes.apple.com/us/album/blackmagic-joy-orbisons-recreation/id365350903?i=365354086&uo=4\", + \"previewUrl\":\"http://a2.mzstatic.com/us/r1000/035/Music/71/ce/42/mzi.rghmjmht.aac.p.m4a\", + \"artworkUrl30\":\"http://a1.mzstatic.com/us/r1000/043/Music/a2/bf/7f/mzi.ulkgzsyt.30x30-50.jpg\", + \"artworkUrl60\":\"http://a5.mzstatic.com/us/r1000/043/Music/a2/bf/7f/mzi.ulkgzsyt.60x60-50.jpg\", + \"artworkUrl100\":\"http://a2.mzstatic.com/us/r1000/043/Music/a2/bf/7f/mzi.ulkgzsyt.100x100-75.jpg\", + \"collectionPrice\":9.99, \"trackPrice\":0.99, \"releaseDate\":\"2010-04-12T07:00:00Z\", + \"collectionExplicitness\":\"notExplicit\", \"trackExplicitness\":\"notExplicit\", + \"discCount\":1, \"discNumber\":1, \"trackCount\":20, \"trackNumber\":19, \"trackTimeMillis\":355804, + \"country\":\"USA\", \"currency\":\"USD\", \"primaryGenreName\":\"Jazz\"}, \n{\"wrapperType\":\"track\", + \"kind\":\"song\", \"artistId\":5117774, \"collectionId\":365350903, \"trackId\":365353942, + \"artistName\":\"José James\", \"collectionName\":\"Blackmagic (Deluxe Version)\", + \"trackName\":\"Blackmagic\", \"collectionCensoredName\":\"Blackmagic (Deluxe + Version)\", \"trackCensoredName\":\"Blackmagic (Izmabad 118 Remix)\", \"artistViewUrl\":\"http://itunes.apple.com/us/artist/jose-james/id5117774?uo=4\", + \"collectionViewUrl\":\"http://itunes.apple.com/us/album/blackmagic-izmabad-118-remix/id365350903?i=365353942&uo=4\", + \"trackViewUrl\":\"http://itunes.apple.com/us/album/blackmagic-izmabad-118-remix/id365350903?i=365353942&uo=4\", + \"previewUrl\":\"http://a1.mzstatic.com/us/r1000/022/Music/fe/5b/38/mzi.bypadvdp.aac.p.m4a\", + \"artworkUrl30\":\"http://a1.mzstatic.com/us/r1000/043/Music/a2/bf/7f/mzi.ulkgzsyt.30x30-50.jpg\", + \"artworkUrl60\":\"http://a5.mzstatic.com/us/r1000/043/Music/a2/bf/7f/mzi.ulkgzsyt.60x60-50.jpg\", + \"artworkUrl100\":\"http://a2.mzstatic.com/us/r1000/043/Music/a2/bf/7f/mzi.ulkgzsyt.100x100-75.jpg\", + \"collectionPrice\":9.99, \"trackPrice\":0.99, \"releaseDate\":\"2010-04-12T07:00:00Z\", + \"collectionExplicitness\":\"notExplicit\", \"trackExplicitness\":\"notExplicit\", + \"discCount\":1, \"discNumber\":1, \"trackCount\":20, \"trackNumber\":17, \"trackTimeMillis\":357855, + \"country\":\"USA\", \"currency\":\"USD\", \"primaryGenreName\":\"Jazz\"}, \n{\"wrapperType\":\"track\", + \"kind\":\"song\", \"artistId\":5117774, \"collectionId\":287805088, \"trackId\":287805642, + \"artistName\":\"José James\", \"collectionName\":\"The Dreamer\", \"trackName\":\"Desire\", + \"collectionCensoredName\":\"The Dreamer\", \"trackCensoredName\":\"Desire\", + \"artistViewUrl\":\"http://itunes.apple.com/us/artist/jose-james/id5117774?uo=4\", + \"collectionViewUrl\":\"http://itunes.apple.com/us/album/desire/id287805088?i=287805642&uo=4\", + \"trackViewUrl\":\"http://itunes.apple.com/us/album/desire/id287805088?i=287805642&uo=4\", + \"previewUrl\":\"http://a5.mzstatic.com/us/r1000/024/Music/4f/63/2c/mzm.dvfzxuyi.aac.p.m4a\", + \"artworkUrl30\":\"http://a5.mzstatic.com/us/r1000/001/Music/8f/6d/26/mzi.elifbnfk.30x30-50.jpg\", + \"artworkUrl60\":\"http://a2.mzstatic.com/us/r1000/001/Music/8f/6d/26/mzi.elifbnfk.60x60-50.jpg\", + \"artworkUrl100\":\"http://a4.mzstatic.com/us/r1000/001/Music/8f/6d/26/mzi.elifbnfk.100x100-75.jpg\", + \"collectionPrice\":9.90, \"trackPrice\":0.99, \"releaseDate\":\"2008-03-26T07:00:00Z\", + \"collectionExplicitness\":\"notExplicit\", \"trackExplicitness\":\"notExplicit\", + \"discCount\":1, \"discNumber\":1, \"trackCount\":10, \"trackNumber\":9, \"trackTimeMillis\":449267, + \"country\":\"USA\", \"currency\":\"USD\", \"primaryGenreName\":\"Jazz\"}, \n{\"wrapperType\":\"track\", + \"kind\":\"song\", \"artistId\":5117774, \"collectionId\":365350903, \"trackId\":365353461, + \"artistName\":\"José James\", \"collectionName\":\"Blackmagic (Deluxe Version)\", + \"trackName\":\"Love Conversation\", \"collectionCensoredName\":\"Blackmagic + (Deluxe Version)\", \"trackCensoredName\":\"Love Conversation\", \"artistViewUrl\":\"http://itunes.apple.com/us/artist/jose-james/id5117774?uo=4\", + \"collectionViewUrl\":\"http://itunes.apple.com/us/album/love-conversation/id365350903?i=365353461&uo=4\", + \"trackViewUrl\":\"http://itunes.apple.com/us/album/love-conversation/id365350903?i=365353461&uo=4\", + \"previewUrl\":\"http://a3.mzstatic.com/us/r1000/044/Music/ac/58/68/mzi.ipmfrtvw.aac.p.m4a\", + \"artworkUrl30\":\"http://a1.mzstatic.com/us/r1000/043/Music/a2/bf/7f/mzi.ulkgzsyt.30x30-50.jpg\", + \"artworkUrl60\":\"http://a5.mzstatic.com/us/r1000/043/Music/a2/bf/7f/mzi.ulkgzsyt.60x60-50.jpg\", + \"artworkUrl100\":\"http://a2.mzstatic.com/us/r1000/043/Music/a2/bf/7f/mzi.ulkgzsyt.100x100-75.jpg\", + \"collectionPrice\":9.99, \"trackPrice\":0.99, \"releaseDate\":\"2010-04-12T07:00:00Z\", + \"collectionExplicitness\":\"notExplicit\", \"trackExplicitness\":\"notExplicit\", + \"discCount\":1, \"discNumber\":1, \"trackCount\":20, \"trackNumber\":11, \"trackTimeMillis\":316332, + \"country\":\"USA\", \"currency\":\"USD\", \"primaryGenreName\":\"Jazz\"}, \n{\"wrapperType\":\"track\", + \"kind\":\"song\", \"artistId\":5117774, \"collectionId\":365350903, \"trackId\":365352887, + \"artistName\":\"José James\", \"collectionName\":\"Blackmagic (Deluxe Version)\", + \"trackName\":\"Save Your Love for Me\", \"collectionCensoredName\":\"Blackmagic + (Deluxe Version)\", \"trackCensoredName\":\"Save Your Love for Me\", \"artistViewUrl\":\"http://itunes.apple.com/us/artist/jose-james/id5117774?uo=4\", + \"collectionViewUrl\":\"http://itunes.apple.com/us/album/save-your-love-for-me/id365350903?i=365352887&uo=4\", + \"trackViewUrl\":\"http://itunes.apple.com/us/album/save-your-love-for-me/id365350903?i=365352887&uo=4\", + \"previewUrl\":\"http://a4.mzstatic.com/us/r1000/004/Music/2a/f4/9c/mzi.tnducphq.aac.p.m4a\", + \"artworkUrl30\":\"http://a1.mzstatic.com/us/r1000/043/Music/a2/bf/7f/mzi.ulkgzsyt.30x30-50.jpg\", + \"artworkUrl60\":\"http://a5.mzstatic.com/us/r1000/043/Music/a2/bf/7f/mzi.ulkgzsyt.60x60-50.jpg\", + \"artworkUrl100\":\"http://a2.mzstatic.com/us/r1000/043/Music/a2/bf/7f/mzi.ulkgzsyt.100x100-75.jpg\", + \"collectionPrice\":9.99, \"trackPrice\":0.99, \"releaseDate\":\"2010-04-12T07:00:00Z\", + \"collectionExplicitness\":\"notExplicit\", \"trackExplicitness\":\"notExplicit\", + \"discCount\":1, \"discNumber\":1, \"trackCount\":20, \"trackNumber\":7, \"trackTimeMillis\":212571, + \"country\":\"USA\", \"currency\":\"USD\", \"primaryGenreName\":\"Jazz\"}, \n{\"wrapperType\":\"track\", + \"kind\":\"song\", \"artistId\":5117774, \"collectionId\":287805088, \"trackId\":287805379, + \"artistName\":\"José James\", \"collectionName\":\"The Dreamer\", \"trackName\":\"Park + Bench People\", \"collectionCensoredName\":\"The Dreamer\", \"trackCensoredName\":\"Park + Bench People\", \"artistViewUrl\":\"http://itunes.apple.com/us/artist/jose-james/id5117774?uo=4\", + \"collectionViewUrl\":\"http://itunes.apple.com/us/album/park-bench-people/id287805088?i=287805379&uo=4\", + \"trackViewUrl\":\"http://itunes.apple.com/us/album/park-bench-people/id287805088?i=287805379&uo=4\", + \"previewUrl\":\"http://a5.mzstatic.com/us/r1000/054/Music/8f/1b/34/mzm.pjdrzrbi.aac.p.m4a\", + \"artworkUrl30\":\"http://a5.mzstatic.com/us/r1000/001/Music/8f/6d/26/mzi.elifbnfk.30x30-50.jpg\", + \"artworkUrl60\":\"http://a2.mzstatic.com/us/r1000/001/Music/8f/6d/26/mzi.elifbnfk.60x60-50.jpg\", + \"artworkUrl100\":\"http://a4.mzstatic.com/us/r1000/001/Music/8f/6d/26/mzi.elifbnfk.100x100-75.jpg\", + \"collectionPrice\":9.90, \"trackPrice\":0.99, \"releaseDate\":\"2008-03-26T07:00:00Z\", + \"collectionExplicitness\":\"notExplicit\", \"trackExplicitness\":\"notExplicit\", + \"discCount\":1, \"discNumber\":1, \"trackCount\":10, \"trackNumber\":4, \"trackTimeMillis\":363320, + \"country\":\"USA\", \"currency\":\"USD\", \"primaryGenreName\":\"Jazz\"}, \n{\"wrapperType\":\"track\", + \"kind\":\"song\", \"artistId\":5117774, \"collectionId\":365350903, \"trackId\":365351515, + \"artistName\":\"José James\", \"collectionName\":\"Blackmagic (Deluxe Version)\", + \"trackName\":\"Code\", \"collectionCensoredName\":\"Blackmagic (Deluxe Version)\", + \"trackCensoredName\":\"Code\", \"artistViewUrl\":\"http://itunes.apple.com/us/artist/jose-james/id5117774?uo=4\", + \"collectionViewUrl\":\"http://itunes.apple.com/us/album/code/id365350903?i=365351515&uo=4\", + \"trackViewUrl\":\"http://itunes.apple.com/us/album/code/id365350903?i=365351515&uo=4\", + \"previewUrl\":\"http://a4.mzstatic.com/us/r1000/015/Music/80/f1/f2/mzi.xotjcehb.aac.p.m4a\", + \"artworkUrl30\":\"http://a1.mzstatic.com/us/r1000/043/Music/a2/bf/7f/mzi.ulkgzsyt.30x30-50.jpg\", + \"artworkUrl60\":\"http://a5.mzstatic.com/us/r1000/043/Music/a2/bf/7f/mzi.ulkgzsyt.60x60-50.jpg\", + \"artworkUrl100\":\"http://a2.mzstatic.com/us/r1000/043/Music/a2/bf/7f/mzi.ulkgzsyt.100x100-75.jpg\", + \"collectionPrice\":9.99, \"trackPrice\":0.99, \"releaseDate\":\"2010-04-12T07:00:00Z\", + \"collectionExplicitness\":\"notExplicit\", \"trackExplicitness\":\"notExplicit\", + \"discCount\":1, \"discNumber\":1, \"trackCount\":20, \"trackNumber\":1, \"trackTimeMillis\":294666, + \"country\":\"USA\", \"currency\":\"USD\", \"primaryGenreName\":\"Jazz\"}, \n{\"wrapperType\":\"track\", + \"kind\":\"song\", \"artistId\":5117774, \"collectionId\":365350903, \"trackId\":365352155, + \"artistName\":\"José James\", \"collectionName\":\"Blackmagic (Deluxe Version)\", + \"trackName\":\"Promise In Love\", \"collectionCensoredName\":\"Blackmagic (Deluxe + Version)\", \"trackCensoredName\":\"Promise In Love\", \"artistViewUrl\":\"http://itunes.apple.com/us/artist/jose-james/id5117774?uo=4\", + \"collectionViewUrl\":\"http://itunes.apple.com/us/album/promise-in-love/id365350903?i=365352155&uo=4\", + \"trackViewUrl\":\"http://itunes.apple.com/us/album/promise-in-love/id365350903?i=365352155&uo=4\", + \"previewUrl\":\"http://a1.mzstatic.com/us/r1000/001/Music/1c/41/f7/mzi.ltwhimkd.aac.p.m4a\", + \"artworkUrl30\":\"http://a1.mzstatic.com/us/r1000/043/Music/a2/bf/7f/mzi.ulkgzsyt.30x30-50.jpg\", + \"artworkUrl60\":\"http://a5.mzstatic.com/us/r1000/043/Music/a2/bf/7f/mzi.ulkgzsyt.60x60-50.jpg\", + \"artworkUrl100\":\"http://a2.mzstatic.com/us/r1000/043/Music/a2/bf/7f/mzi.ulkgzsyt.100x100-75.jpg\", + \"collectionPrice\":9.99, \"trackPrice\":0.99, \"releaseDate\":\"2010-04-12T07:00:00Z\", + \"collectionExplicitness\":\"notExplicit\", \"trackExplicitness\":\"notExplicit\", + \"discCount\":1, \"discNumber\":1, \"trackCount\":20, \"trackNumber\":4, \"trackTimeMillis\":275666, + \"country\":\"USA\", \"currency\":\"USD\", \"primaryGenreName\":\"Jazz\"}, \n{\"wrapperType\":\"track\", + \"kind\":\"song\", \"artistId\":5117774, \"collectionId\":365350903, \"trackId\":365351841, + \"artistName\":\"José James\", \"collectionName\":\"Blackmagic (Deluxe Version)\", + \"trackName\":\"Lay You Down\", \"collectionCensoredName\":\"Blackmagic (Deluxe + Version)\", \"trackCensoredName\":\"Lay You Down\", \"artistViewUrl\":\"http://itunes.apple.com/us/artist/jose-james/id5117774?uo=4\", + \"collectionViewUrl\":\"http://itunes.apple.com/us/album/lay-you-down/id365350903?i=365351841&uo=4\", + \"trackViewUrl\":\"http://itunes.apple.com/us/album/lay-you-down/id365350903?i=365351841&uo=4\", + \"previewUrl\":\"http://a2.mzstatic.com/us/r1000/010/Music/10/ee/e1/mzi.dngalaji.aac.p.m4a\", + \"artworkUrl30\":\"http://a1.mzstatic.com/us/r1000/043/Music/a2/bf/7f/mzi.ulkgzsyt.30x30-50.jpg\", + \"artworkUrl60\":\"http://a5.mzstatic.com/us/r1000/043/Music/a2/bf/7f/mzi.ulkgzsyt.60x60-50.jpg\", + \"artworkUrl100\":\"http://a2.mzstatic.com/us/r1000/043/Music/a2/bf/7f/mzi.ulkgzsyt.100x100-75.jpg\", + \"collectionPrice\":9.99, \"trackPrice\":0.99, \"releaseDate\":\"2010-04-12T07:00:00Z\", + \"collectionExplicitness\":\"notExplicit\", \"trackExplicitness\":\"notExplicit\", + \"discCount\":1, \"discNumber\":1, \"trackCount\":20, \"trackNumber\":3, \"trackTimeMillis\":305492, + \"country\":\"USA\", \"currency\":\"USD\", \"primaryGenreName\":\"Jazz\"}, \n{\"wrapperType\":\"track\", + \"kind\":\"song\", \"artistId\":5117774, \"collectionId\":365350903, \"trackId\":365353883, + \"artistName\":\"José James\", \"collectionName\":\"Blackmagic (Deluxe Version)\", + \"trackName\":\"Visions of Violet (feat. Flying Lotus)\", \"collectionCensoredName\":\"Blackmagic + (Deluxe Version)\", \"trackCensoredName\":\"Visions of Violet (feat. Flying + Lotus)\", \"artistViewUrl\":\"http://itunes.apple.com/us/artist/jose-james/id5117774?uo=4\", + \"collectionViewUrl\":\"http://itunes.apple.com/us/album/visions-violet-feat.-flying/id365350903?i=365353883&uo=4\", + \"trackViewUrl\":\"http://itunes.apple.com/us/album/visions-violet-feat.-flying/id365350903?i=365353883&uo=4\", + \"previewUrl\":\"http://a1.mzstatic.com/us/r1000/044/Music/f3/e4/64/mzi.yipsrvwd.aac.p.m4a\", + \"artworkUrl30\":\"http://a1.mzstatic.com/us/r1000/043/Music/a2/bf/7f/mzi.ulkgzsyt.30x30-50.jpg\", + \"artworkUrl60\":\"http://a5.mzstatic.com/us/r1000/043/Music/a2/bf/7f/mzi.ulkgzsyt.60x60-50.jpg\", + \"artworkUrl100\":\"http://a2.mzstatic.com/us/r1000/043/Music/a2/bf/7f/mzi.ulkgzsyt.100x100-75.jpg\", + \"collectionPrice\":9.99, \"trackPrice\":0.99, \"releaseDate\":\"2010-04-12T07:00:00Z\", + \"collectionExplicitness\":\"notExplicit\", \"trackExplicitness\":\"notExplicit\", + \"discCount\":1, \"discNumber\":1, \"trackCount\":20, \"trackNumber\":16, \"trackTimeMillis\":140447, + \"country\":\"USA\", \"currency\":\"USD\", \"primaryGenreName\":\"Jazz\"}, \n{\"wrapperType\":\"track\", + \"kind\":\"song\", \"artistId\":5117774, \"collectionId\":365350903, \"trackId\":365352707, + \"artistName\":\"José James\", \"collectionName\":\"Blackmagic (Deluxe Version)\", + \"trackName\":\"Made for Love\", \"collectionCensoredName\":\"Blackmagic (Deluxe + Version)\", \"trackCensoredName\":\"Made for Love\", \"artistViewUrl\":\"http://itunes.apple.com/us/artist/jose-james/id5117774?uo=4\", + \"collectionViewUrl\":\"http://itunes.apple.com/us/album/made-for-love/id365350903?i=365352707&uo=4\", + \"trackViewUrl\":\"http://itunes.apple.com/us/album/made-for-love/id365350903?i=365352707&uo=4\", + \"previewUrl\":\"http://a3.mzstatic.com/us/r1000/032/Music/04/47/d2/mzi.zevlzzuk.aac.p.m4a\", + \"artworkUrl30\":\"http://a1.mzstatic.com/us/r1000/043/Music/a2/bf/7f/mzi.ulkgzsyt.30x30-50.jpg\", + \"artworkUrl60\":\"http://a5.mzstatic.com/us/r1000/043/Music/a2/bf/7f/mzi.ulkgzsyt.60x60-50.jpg\", + \"artworkUrl100\":\"http://a2.mzstatic.com/us/r1000/043/Music/a2/bf/7f/mzi.ulkgzsyt.100x100-75.jpg\", + \"collectionPrice\":9.99, \"trackPrice\":0.99, \"releaseDate\":\"2010-04-12T07:00:00Z\", + \"collectionExplicitness\":\"notExplicit\", \"trackExplicitness\":\"notExplicit\", + \"discCount\":1, \"discNumber\":1, \"trackCount\":20, \"trackNumber\":6, \"trackTimeMillis\":230928, + \"country\":\"USA\", \"currency\":\"USD\", \"primaryGenreName\":\"Jazz\"}, \n{\"wrapperType\":\"track\", + \"kind\":\"song\", \"artistId\":5117774, \"collectionId\":365350903, \"trackId\":365351658, + \"artistName\":\"José James\", \"collectionName\":\"Blackmagic (Deluxe Version)\", + \"trackName\":\"Touch\", \"collectionCensoredName\":\"Blackmagic (Deluxe Version)\", + \"trackCensoredName\":\"Touch\", \"artistViewUrl\":\"http://itunes.apple.com/us/artist/jose-james/id5117774?uo=4\", + \"collectionViewUrl\":\"http://itunes.apple.com/us/album/touch/id365350903?i=365351658&uo=4\", + \"trackViewUrl\":\"http://itunes.apple.com/us/album/touch/id365350903?i=365351658&uo=4\", + \"previewUrl\":\"http://a5.mzstatic.com/us/r1000/026/Music/6b/0f/50/mzi.mlcnmhnr.aac.p.m4a\", + \"artworkUrl30\":\"http://a1.mzstatic.com/us/r1000/043/Music/a2/bf/7f/mzi.ulkgzsyt.30x30-50.jpg\", + \"artworkUrl60\":\"http://a5.mzstatic.com/us/r1000/043/Music/a2/bf/7f/mzi.ulkgzsyt.60x60-50.jpg\", + \"artworkUrl100\":\"http://a2.mzstatic.com/us/r1000/043/Music/a2/bf/7f/mzi.ulkgzsyt.100x100-75.jpg\", + \"collectionPrice\":9.99, \"trackPrice\":0.99, \"releaseDate\":\"2010-04-12T07:00:00Z\", + \"collectionExplicitness\":\"notExplicit\", \"trackExplicitness\":\"notExplicit\", + \"discCount\":1, \"discNumber\":1, \"trackCount\":20, \"trackNumber\":2, \"trackTimeMillis\":258864, + \"country\":\"USA\", \"currency\":\"USD\", \"primaryGenreName\":\"Jazz\"}, \n{\"wrapperType\":\"track\", + \"kind\":\"song\", \"artistId\":5117774, \"collectionId\":365350903, \"trackId\":365353129, + \"artistName\":\"José James\", \"collectionName\":\"Blackmagic (Deluxe Version)\", + \"trackName\":\"Blackmagic\", \"collectionCensoredName\":\"Blackmagic (Deluxe + Version)\", \"trackCensoredName\":\"Blackmagic\", \"artistViewUrl\":\"http://itunes.apple.com/us/artist/jose-james/id5117774?uo=4\", + \"collectionViewUrl\":\"http://itunes.apple.com/us/album/blackmagic/id365350903?i=365353129&uo=4\", + \"trackViewUrl\":\"http://itunes.apple.com/us/album/blackmagic/id365350903?i=365353129&uo=4\", + \"previewUrl\":\"http://a3.mzstatic.com/us/r1000/035/Music/a9/d8/f0/mzi.qzpytsme.aac.p.m4a\", + \"artworkUrl30\":\"http://a1.mzstatic.com/us/r1000/043/Music/a2/bf/7f/mzi.ulkgzsyt.30x30-50.jpg\", + \"artworkUrl60\":\"http://a5.mzstatic.com/us/r1000/043/Music/a2/bf/7f/mzi.ulkgzsyt.60x60-50.jpg\", + \"artworkUrl100\":\"http://a2.mzstatic.com/us/r1000/043/Music/a2/bf/7f/mzi.ulkgzsyt.100x100-75.jpg\", + \"collectionPrice\":9.99, \"trackPrice\":0.99, \"releaseDate\":\"2010-04-12T07:00:00Z\", + \"collectionExplicitness\":\"notExplicit\", \"trackExplicitness\":\"notExplicit\", + \"discCount\":1, \"discNumber\":1, \"trackCount\":20, \"trackNumber\":9, \"trackTimeMillis\":243429, + \"country\":\"USA\", \"currency\":\"USD\", \"primaryGenreName\":\"Jazz\"}, \n{\"wrapperType\":\"track\", + \"kind\":\"song\", \"artistId\":5117774, \"collectionId\":365350903, \"trackId\":365352479, + \"artistName\":\"José James\", \"collectionName\":\"Blackmagic (Deluxe Version)\", + \"trackName\":\"Warrior\", \"collectionCensoredName\":\"Blackmagic (Deluxe Version)\", + \"trackCensoredName\":\"Warrior\", \"artistViewUrl\":\"http://itunes.apple.com/us/artist/jose-james/id5117774?uo=4\", + \"collectionViewUrl\":\"http://itunes.apple.com/us/album/warrior/id365350903?i=365352479&uo=4\", + \"trackViewUrl\":\"http://itunes.apple.com/us/album/warrior/id365350903?i=365352479&uo=4\", + \"previewUrl\":\"http://a2.mzstatic.com/us/r1000/029/Music/09/0d/d5/mzi.euzhdjhi.aac.p.m4a\", + \"artworkUrl30\":\"http://a1.mzstatic.com/us/r1000/043/Music/a2/bf/7f/mzi.ulkgzsyt.30x30-50.jpg\", + \"artworkUrl60\":\"http://a5.mzstatic.com/us/r1000/043/Music/a2/bf/7f/mzi.ulkgzsyt.60x60-50.jpg\", + \"artworkUrl100\":\"http://a2.mzstatic.com/us/r1000/043/Music/a2/bf/7f/mzi.ulkgzsyt.100x100-75.jpg\", + \"collectionPrice\":9.99, \"trackPrice\":0.99, \"releaseDate\":\"2010-04-12T07:00:00Z\", + \"collectionExplicitness\":\"notExplicit\", \"trackExplicitness\":\"notExplicit\", + \"discCount\":1, \"discNumber\":1, \"trackCount\":20, \"trackNumber\":5, \"trackTimeMillis\":355094, + \"country\":\"USA\", \"currency\":\"USD\", \"primaryGenreName\":\"Jazz\"}, \n{\"wrapperType\":\"track\", + \"kind\":\"song\", \"artistId\":5117774, \"collectionId\":287805088, \"trackId\":287805308, + \"artistName\":\"José James\", \"collectionName\":\"The Dreamer\", \"trackName\":\"Blackeyedsusan\", + \"collectionCensoredName\":\"The Dreamer\", \"trackCensoredName\":\"Blackeyedsusan\", + \"artistViewUrl\":\"http://itunes.apple.com/us/artist/jose-james/id5117774?uo=4\", + \"collectionViewUrl\":\"http://itunes.apple.com/us/album/blackeyedsusan/id287805088?i=287805308&uo=4\", + \"trackViewUrl\":\"http://itunes.apple.com/us/album/blackeyedsusan/id287805088?i=287805308&uo=4\", + \"previewUrl\":\"http://a3.mzstatic.com/us/r1000/021/Music/a1/d8/e1/mzm.brvmkudk.aac.p.m4a\", + \"artworkUrl30\":\"http://a5.mzstatic.com/us/r1000/001/Music/8f/6d/26/mzi.elifbnfk.30x30-50.jpg\", + \"artworkUrl60\":\"http://a2.mzstatic.com/us/r1000/001/Music/8f/6d/26/mzi.elifbnfk.60x60-50.jpg\", + \"artworkUrl100\":\"http://a4.mzstatic.com/us/r1000/001/Music/8f/6d/26/mzi.elifbnfk.100x100-75.jpg\", + \"collectionPrice\":9.90, \"trackPrice\":0.99, \"releaseDate\":\"2008-03-26T07:00:00Z\", + \"collectionExplicitness\":\"notExplicit\", \"trackExplicitness\":\"notExplicit\", + \"discCount\":1, \"discNumber\":1, \"trackCount\":10, \"trackNumber\":3, \"trackTimeMillis\":296787, + \"country\":\"USA\", \"currency\":\"USD\", \"primaryGenreName\":\"Jazz\"}, \n{\"wrapperType\":\"track\", + \"kind\":\"song\", \"artistId\":5117774, \"collectionId\":365350903, \"trackId\":365353980, + \"artistName\":\"José James\", \"collectionName\":\"Blackmagic (Deluxe Version)\", + \"trackName\":\"Warrior\", \"collectionCensoredName\":\"Blackmagic (Deluxe Version)\", + \"trackCensoredName\":\"Warrior (Sbtrkt Remix)\", \"artistViewUrl\":\"http://itunes.apple.com/us/artist/jose-james/id5117774?uo=4\", + \"collectionViewUrl\":\"http://itunes.apple.com/us/album/warrior-sbtrkt-remix/id365350903?i=365353980&uo=4\", + \"trackViewUrl\":\"http://itunes.apple.com/us/album/warrior-sbtrkt-remix/id365350903?i=365353980&uo=4\", + \"previewUrl\":\"http://a5.mzstatic.com/us/r1000/024/Music/8e/df/93/mzi.qgdgxket.aac.p.m4a\", + \"artworkUrl30\":\"http://a1.mzstatic.com/us/r1000/043/Music/a2/bf/7f/mzi.ulkgzsyt.30x30-50.jpg\", + \"artworkUrl60\":\"http://a5.mzstatic.com/us/r1000/043/Music/a2/bf/7f/mzi.ulkgzsyt.60x60-50.jpg\", + \"artworkUrl100\":\"http://a2.mzstatic.com/us/r1000/043/Music/a2/bf/7f/mzi.ulkgzsyt.100x100-75.jpg\", + \"collectionPrice\":9.99, \"trackPrice\":0.99, \"releaseDate\":\"2010-04-12T07:00:00Z\", + \"collectionExplicitness\":\"notExplicit\", \"trackExplicitness\":\"notExplicit\", + \"discCount\":1, \"discNumber\":1, \"trackCount\":20, \"trackNumber\":18, \"trackTimeMillis\":272852, + \"country\":\"USA\", \"currency\":\"USD\", \"primaryGenreName\":\"Jazz\"}, \n{\"wrapperType\":\"track\", + \"kind\":\"song\", \"artistId\":5117774, \"collectionId\":365350903, \"trackId\":365354103, + \"artistName\":\"José James\", \"collectionName\":\"Blackmagic (Deluxe Version)\", + \"trackName\":\"Warrior\", \"collectionCensoredName\":\"Blackmagic (Deluxe Version)\", + \"trackCensoredName\":\"Warrior (Rockwell Remix)\", \"artistViewUrl\":\"http://itunes.apple.com/us/artist/jose-james/id5117774?uo=4\", + \"collectionViewUrl\":\"http://itunes.apple.com/us/album/warrior-rockwell-remix/id365350903?i=365354103&uo=4\", + \"trackViewUrl\":\"http://itunes.apple.com/us/album/warrior-rockwell-remix/id365350903?i=365354103&uo=4\", + \"previewUrl\":\"http://a3.mzstatic.com/us/r1000/004/Music/6c/dd/f1/mzi.ckyvqfuq.aac.p.m4a\", + \"artworkUrl30\":\"http://a1.mzstatic.com/us/r1000/043/Music/a2/bf/7f/mzi.ulkgzsyt.30x30-50.jpg\", + \"artworkUrl60\":\"http://a5.mzstatic.com/us/r1000/043/Music/a2/bf/7f/mzi.ulkgzsyt.60x60-50.jpg\", + \"artworkUrl100\":\"http://a2.mzstatic.com/us/r1000/043/Music/a2/bf/7f/mzi.ulkgzsyt.100x100-75.jpg\", + \"collectionPrice\":9.99, \"trackPrice\":0.99, \"releaseDate\":\"2010-04-12T07:00:00Z\", + \"collectionExplicitness\":\"notExplicit\", \"trackExplicitness\":\"notExplicit\", + \"discCount\":1, \"discNumber\":1, \"trackCount\":20, \"trackNumber\":20, \"trackTimeMillis\":353098, + \"country\":\"USA\", \"currency\":\"USD\", \"primaryGenreName\":\"Jazz\"}, \n{\"wrapperType\":\"track\", + \"kind\":\"song\", \"artistId\":5117774, \"collectionId\":365350903, \"trackId\":365353658, + \"artistName\":\"José James\", \"collectionName\":\"Blackmagic (Deluxe Version)\", + \"trackName\":\"No Tellin' (I Need You)\", \"collectionCensoredName\":\"Blackmagic + (Deluxe Version)\", \"trackCensoredName\":\"No Tellin' (I Need You)\", \"artistViewUrl\":\"http://itunes.apple.com/us/artist/jose-james/id5117774?uo=4\", + \"collectionViewUrl\":\"http://itunes.apple.com/us/album/no-tellin-i-need-you/id365350903?i=365353658&uo=4\", + \"trackViewUrl\":\"http://itunes.apple.com/us/album/no-tellin-i-need-you/id365350903?i=365353658&uo=4\", + \"previewUrl\":\"http://a2.mzstatic.com/us/r1000/010/Music/f3/84/c7/mzi.owscastu.aac.p.m4a\", + \"artworkUrl30\":\"http://a1.mzstatic.com/us/r1000/043/Music/a2/bf/7f/mzi.ulkgzsyt.30x30-50.jpg\", + \"artworkUrl60\":\"http://a5.mzstatic.com/us/r1000/043/Music/a2/bf/7f/mzi.ulkgzsyt.60x60-50.jpg\", + \"artworkUrl100\":\"http://a2.mzstatic.com/us/r1000/043/Music/a2/bf/7f/mzi.ulkgzsyt.100x100-75.jpg\", + \"collectionPrice\":9.99, \"trackPrice\":0.99, \"releaseDate\":\"2010-04-12T07:00:00Z\", + \"collectionExplicitness\":\"notExplicit\", \"trackExplicitness\":\"notExplicit\", + \"discCount\":1, \"discNumber\":1, \"trackCount\":20, \"trackNumber\":13, \"trackTimeMillis\":159432, + \"country\":\"USA\", \"currency\":\"USD\", \"primaryGenreName\":\"Jazz\"}, \n{\"wrapperType\":\"track\", + \"kind\":\"song\", \"artistId\":5117774, \"collectionId\":287805088, \"trackId\":287805225, + \"artistName\":\"José James\", \"collectionName\":\"The Dreamer\", \"trackName\":\"The + Dreamer\", \"collectionCensoredName\":\"The Dreamer\", \"trackCensoredName\":\"The + Dreamer\", \"artistViewUrl\":\"http://itunes.apple.com/us/artist/jose-james/id5117774?uo=4\", + \"collectionViewUrl\":\"http://itunes.apple.com/us/album/the-dreamer/id287805088?i=287805225&uo=4\", + \"trackViewUrl\":\"http://itunes.apple.com/us/album/the-dreamer/id287805088?i=287805225&uo=4\", + \"previewUrl\":\"http://a3.mzstatic.com/us/r1000/043/Music/81/7e/1c/mzm.viszqyno.aac.p.m4a\", + \"artworkUrl30\":\"http://a5.mzstatic.com/us/r1000/001/Music/8f/6d/26/mzi.elifbnfk.30x30-50.jpg\", + \"artworkUrl60\":\"http://a2.mzstatic.com/us/r1000/001/Music/8f/6d/26/mzi.elifbnfk.60x60-50.jpg\", + \"artworkUrl100\":\"http://a4.mzstatic.com/us/r1000/001/Music/8f/6d/26/mzi.elifbnfk.100x100-75.jpg\", + \"collectionPrice\":9.90, \"trackPrice\":0.99, \"releaseDate\":\"2008-03-26T07:00:00Z\", + \"collectionExplicitness\":\"notExplicit\", \"trackExplicitness\":\"notExplicit\", + \"discCount\":1, \"discNumber\":1, \"trackCount\":10, \"trackNumber\":1, \"trackTimeMillis\":425280, + \"country\":\"USA\", \"currency\":\"USD\", \"primaryGenreName\":\"Jazz\"}, \n{\"wrapperType\":\"track\", + \"kind\":\"song\", \"artistId\":5117774, \"collectionId\":365350903, \"trackId\":365353042, + \"artistName\":\"José James\", \"collectionName\":\"Blackmagic (Deluxe Version)\", + \"trackName\":\"The Greater Good\", \"collectionCensoredName\":\"Blackmagic + (Deluxe Version)\", \"trackCensoredName\":\"The Greater Good\", \"artistViewUrl\":\"http://itunes.apple.com/us/artist/jose-james/id5117774?uo=4\", + \"collectionViewUrl\":\"http://itunes.apple.com/us/album/the-greater-good/id365350903?i=365353042&uo=4\", + \"trackViewUrl\":\"http://itunes.apple.com/us/album/the-greater-good/id365350903?i=365353042&uo=4\", + \"previewUrl\":\"http://a2.mzstatic.com/us/r1000/049/Music/fe/03/99/mzi.dekqfrkm.aac.p.m4a\", + \"artworkUrl30\":\"http://a1.mzstatic.com/us/r1000/043/Music/a2/bf/7f/mzi.ulkgzsyt.30x30-50.jpg\", + \"artworkUrl60\":\"http://a5.mzstatic.com/us/r1000/043/Music/a2/bf/7f/mzi.ulkgzsyt.60x60-50.jpg\", + \"artworkUrl100\":\"http://a2.mzstatic.com/us/r1000/043/Music/a2/bf/7f/mzi.ulkgzsyt.100x100-75.jpg\", + \"collectionPrice\":9.99, \"trackPrice\":0.99, \"releaseDate\":\"2010-04-12T07:00:00Z\", + \"collectionExplicitness\":\"notExplicit\", \"trackExplicitness\":\"notExplicit\", + \"discCount\":1, \"discNumber\":1, \"trackCount\":20, \"trackNumber\":8, \"trackTimeMillis\":259172, + \"country\":\"USA\", \"currency\":\"USD\", \"primaryGenreName\":\"Jazz\"}, \n{\"wrapperType\":\"track\", + \"kind\":\"song\", \"artistId\":5117774, \"collectionId\":365350903, \"trackId\":365353833, + \"artistName\":\"José James\", \"collectionName\":\"Blackmagic (Deluxe Version)\", + \"trackName\":\"Evidence of Existence\", \"collectionCensoredName\":\"Blackmagic + (Deluxe Version)\", \"trackCensoredName\":\"Evidence of Existence\", \"artistViewUrl\":\"http://itunes.apple.com/us/artist/jose-james/id5117774?uo=4\", + \"collectionViewUrl\":\"http://itunes.apple.com/us/album/evidence-of-existence/id365350903?i=365353833&uo=4\", + \"trackViewUrl\":\"http://itunes.apple.com/us/album/evidence-of-existence/id365350903?i=365353833&uo=4\", + \"previewUrl\":\"http://a1.mzstatic.com/us/r1000/046/Music/23/0f/16/mzi.enywxruq.aac.p.m4a\", + \"artworkUrl30\":\"http://a1.mzstatic.com/us/r1000/043/Music/a2/bf/7f/mzi.ulkgzsyt.30x30-50.jpg\", + \"artworkUrl60\":\"http://a5.mzstatic.com/us/r1000/043/Music/a2/bf/7f/mzi.ulkgzsyt.60x60-50.jpg\", + \"artworkUrl100\":\"http://a2.mzstatic.com/us/r1000/043/Music/a2/bf/7f/mzi.ulkgzsyt.100x100-75.jpg\", + \"collectionPrice\":9.99, \"trackPrice\":0.99, \"releaseDate\":\"2010-04-12T07:00:00Z\", + \"collectionExplicitness\":\"notExplicit\", \"trackExplicitness\":\"notExplicit\", + \"discCount\":1, \"discNumber\":1, \"trackCount\":20, \"trackNumber\":15, \"trackTimeMillis\":326327, + \"country\":\"USA\", \"currency\":\"USD\", \"primaryGenreName\":\"Jazz\"}, \n{\"wrapperType\":\"track\", + \"kind\":\"song\", \"artistId\":5117774, \"collectionId\":287805088, \"trackId\":287805689, + \"artistName\":\"José James\", \"collectionName\":\"The Dreamer\", \"trackName\":\"Love\", + \"collectionCensoredName\":\"The Dreamer\", \"trackCensoredName\":\"Love\", + \"artistViewUrl\":\"http://itunes.apple.com/us/artist/jose-james/id5117774?uo=4\", + \"collectionViewUrl\":\"http://itunes.apple.com/us/album/love/id287805088?i=287805689&uo=4\", + \"trackViewUrl\":\"http://itunes.apple.com/us/album/love/id287805088?i=287805689&uo=4\", + \"previewUrl\":\"http://a4.mzstatic.com/us/r1000/048/Music/d8/53/2e/mzm.bhfufryc.aac.p.m4a\", + \"artworkUrl30\":\"http://a5.mzstatic.com/us/r1000/001/Music/8f/6d/26/mzi.elifbnfk.30x30-50.jpg\", + \"artworkUrl60\":\"http://a2.mzstatic.com/us/r1000/001/Music/8f/6d/26/mzi.elifbnfk.60x60-50.jpg\", + \"artworkUrl100\":\"http://a4.mzstatic.com/us/r1000/001/Music/8f/6d/26/mzi.elifbnfk.100x100-75.jpg\", + \"collectionPrice\":9.90, \"trackPrice\":0.99, \"releaseDate\":\"2008-03-26T07:00:00Z\", + \"collectionExplicitness\":\"notExplicit\", \"trackExplicitness\":\"notExplicit\", + \"discCount\":1, \"discNumber\":1, \"trackCount\":10, \"trackNumber\":10, \"trackTimeMillis\":324013, + \"country\":\"USA\", \"currency\":\"USD\", \"primaryGenreName\":\"Jazz\"}, \n{\"wrapperType\":\"track\", + \"kind\":\"song\", \"artistId\":5117774, \"collectionId\":365350903, \"trackId\":365353269, + \"artistName\":\"José James\", \"collectionName\":\"Blackmagic (Deluxe Version)\", + \"trackName\":\"Detroit Loveletter\", \"collectionCensoredName\":\"Blackmagic + (Deluxe Version)\", \"trackCensoredName\":\"Detroit Loveletter\", \"artistViewUrl\":\"http://itunes.apple.com/us/artist/jose-james/id5117774?uo=4\", + \"collectionViewUrl\":\"http://itunes.apple.com/us/album/detroit-loveletter/id365350903?i=365353269&uo=4\", + \"trackViewUrl\":\"http://itunes.apple.com/us/album/detroit-loveletter/id365350903?i=365353269&uo=4\", + \"previewUrl\":\"http://a3.mzstatic.com/us/r1000/010/Music/4d/8c/d4/mzi.arqaexng.aac.p.m4a\", + \"artworkUrl30\":\"http://a1.mzstatic.com/us/r1000/043/Music/a2/bf/7f/mzi.ulkgzsyt.30x30-50.jpg\", + \"artworkUrl60\":\"http://a5.mzstatic.com/us/r1000/043/Music/a2/bf/7f/mzi.ulkgzsyt.60x60-50.jpg\", + \"artworkUrl100\":\"http://a2.mzstatic.com/us/r1000/043/Music/a2/bf/7f/mzi.ulkgzsyt.100x100-75.jpg\", + \"collectionPrice\":9.99, \"trackPrice\":0.99, \"releaseDate\":\"2010-04-12T07:00:00Z\", + \"collectionExplicitness\":\"notExplicit\", \"trackExplicitness\":\"notExplicit\", + \"discCount\":1, \"discNumber\":1, \"trackCount\":20, \"trackNumber\":10, \"trackTimeMillis\":241540, + \"country\":\"USA\", \"currency\":\"USD\", \"primaryGenreName\":\"Jazz\"}, \n{\"wrapperType\":\"track\", + \"kind\":\"song\", \"artistId\":5117774, \"collectionId\":287805088, \"trackId\":287805552, + \"artistName\":\"José James\", \"collectionName\":\"The Dreamer\", \"trackName\":\"Red\", + \"collectionCensoredName\":\"The Dreamer\", \"trackCensoredName\":\"Red\", \"artistViewUrl\":\"http://itunes.apple.com/us/artist/jose-james/id5117774?uo=4\", + \"collectionViewUrl\":\"http://itunes.apple.com/us/album/red/id287805088?i=287805552&uo=4\", + \"trackViewUrl\":\"http://itunes.apple.com/us/album/red/id287805088?i=287805552&uo=4\", + \"previewUrl\":\"http://a1.mzstatic.com/us/r1000/011/Music/4f/f8/13/mzm.wkwlppfi.aac.p.m4a\", + \"artworkUrl30\":\"http://a5.mzstatic.com/us/r1000/001/Music/8f/6d/26/mzi.elifbnfk.30x30-50.jpg\", + \"artworkUrl60\":\"http://a2.mzstatic.com/us/r1000/001/Music/8f/6d/26/mzi.elifbnfk.60x60-50.jpg\", + \"artworkUrl100\":\"http://a4.mzstatic.com/us/r1000/001/Music/8f/6d/26/mzi.elifbnfk.100x100-75.jpg\", + \"collectionPrice\":9.90, \"trackPrice\":0.99, \"releaseDate\":\"2008-03-26T07:00:00Z\", + \"collectionExplicitness\":\"notExplicit\", \"trackExplicitness\":\"notExplicit\", + \"discCount\":1, \"discNumber\":1, \"trackCount\":10, \"trackNumber\":7, \"trackTimeMillis\":315907, + \"country\":\"USA\", \"currency\":\"USD\", \"primaryGenreName\":\"Jazz\"}, \n{\"wrapperType\":\"track\", + \"kind\":\"song\", \"artistId\":5117774, \"collectionId\":365350903, \"trackId\":365353493, + \"artistName\":\"José James\", \"collectionName\":\"Blackmagic (Deluxe Version)\", + \"trackName\":\"Beauty\", \"collectionCensoredName\":\"Blackmagic (Deluxe Version)\", + \"trackCensoredName\":\"Beauty\", \"artistViewUrl\":\"http://itunes.apple.com/us/artist/jose-james/id5117774?uo=4\", + \"collectionViewUrl\":\"http://itunes.apple.com/us/album/beauty/id365350903?i=365353493&uo=4\", + \"trackViewUrl\":\"http://itunes.apple.com/us/album/beauty/id365350903?i=365353493&uo=4\", + \"previewUrl\":\"http://a3.mzstatic.com/us/r1000/002/Music/32/ff/6f/mzi.xleezrzq.aac.p.m4a\", + \"artworkUrl30\":\"http://a1.mzstatic.com/us/r1000/043/Music/a2/bf/7f/mzi.ulkgzsyt.30x30-50.jpg\", + \"artworkUrl60\":\"http://a5.mzstatic.com/us/r1000/043/Music/a2/bf/7f/mzi.ulkgzsyt.60x60-50.jpg\", + \"artworkUrl100\":\"http://a2.mzstatic.com/us/r1000/043/Music/a2/bf/7f/mzi.ulkgzsyt.100x100-75.jpg\", + \"collectionPrice\":9.99, \"trackPrice\":0.99, \"releaseDate\":\"2010-04-12T07:00:00Z\", + \"collectionExplicitness\":\"notExplicit\", \"trackExplicitness\":\"notExplicit\", + \"discCount\":1, \"discNumber\":1, \"trackCount\":20, \"trackNumber\":12, \"trackTimeMillis\":250021, + \"country\":\"USA\", \"currency\":\"USD\", \"primaryGenreName\":\"Jazz\"}, \n{\"wrapperType\":\"track\", + \"kind\":\"song\", \"artistId\":5117774, \"collectionId\":287805088, \"trackId\":287805606, + \"artistName\":\"José James\", \"collectionName\":\"The Dreamer\", \"trackName\":\"Winter + Wind\", \"collectionCensoredName\":\"The Dreamer\", \"trackCensoredName\":\"Winter + Wind\", \"artistViewUrl\":\"http://itunes.apple.com/us/artist/jose-james/id5117774?uo=4\", + \"collectionViewUrl\":\"http://itunes.apple.com/us/album/winter-wind/id287805088?i=287805606&uo=4\", + \"trackViewUrl\":\"http://itunes.apple.com/us/album/winter-wind/id287805088?i=287805606&uo=4\", + \"previewUrl\":\"http://a5.mzstatic.com/us/r1000/034/Music/dd/3d/26/mzm.lzxzqjaz.aac.p.m4a\", + \"artworkUrl30\":\"http://a5.mzstatic.com/us/r1000/001/Music/8f/6d/26/mzi.elifbnfk.30x30-50.jpg\", + \"artworkUrl60\":\"http://a2.mzstatic.com/us/r1000/001/Music/8f/6d/26/mzi.elifbnfk.60x60-50.jpg\", + \"artworkUrl100\":\"http://a4.mzstatic.com/us/r1000/001/Music/8f/6d/26/mzi.elifbnfk.100x100-75.jpg\", + \"collectionPrice\":9.90, \"trackPrice\":0.99, \"releaseDate\":\"2008-03-26T07:00:00Z\", + \"collectionExplicitness\":\"notExplicit\", \"trackExplicitness\":\"notExplicit\", + \"discCount\":1, \"discNumber\":1, \"trackCount\":10, \"trackNumber\":8, \"trackTimeMillis\":427333, + \"country\":\"USA\", \"currency\":\"USD\", \"primaryGenreName\":\"Jazz\"}, \n{\"wrapperType\":\"track\", + \"kind\":\"song\", \"artistId\":5117774, \"collectionId\":287805088, \"trackId\":287805493, + \"artistName\":\"José James\", \"collectionName\":\"The Dreamer\", \"trackName\":\"Spirits + Up Above\", \"collectionCensoredName\":\"The Dreamer\", \"trackCensoredName\":\"Spirits + Up Above\", \"artistViewUrl\":\"http://itunes.apple.com/us/artist/jose-james/id5117774?uo=4\", + \"collectionViewUrl\":\"http://itunes.apple.com/us/album/spirits-up-above/id287805088?i=287805493&uo=4\", + \"trackViewUrl\":\"http://itunes.apple.com/us/album/spirits-up-above/id287805088?i=287805493&uo=4\", + \"previewUrl\":\"http://a5.mzstatic.com/us/r1000/009/Music/33/df/63/mzm.qqrxsszt.aac.p.m4a\", + \"artworkUrl30\":\"http://a5.mzstatic.com/us/r1000/001/Music/8f/6d/26/mzi.elifbnfk.30x30-50.jpg\", + \"artworkUrl60\":\"http://a2.mzstatic.com/us/r1000/001/Music/8f/6d/26/mzi.elifbnfk.60x60-50.jpg\", + \"artworkUrl100\":\"http://a4.mzstatic.com/us/r1000/001/Music/8f/6d/26/mzi.elifbnfk.100x100-75.jpg\", + \"collectionPrice\":9.90, \"trackPrice\":0.99, \"releaseDate\":\"2008-03-26T07:00:00Z\", + \"collectionExplicitness\":\"notExplicit\", \"trackExplicitness\":\"notExplicit\", + \"discCount\":1, \"discNumber\":1, \"trackCount\":10, \"trackNumber\":5, \"trackTimeMillis\":300693, + \"country\":\"USA\", \"currency\":\"USD\", \"primaryGenreName\":\"Jazz\"}, \n{\"wrapperType\":\"track\", + \"kind\":\"song\", \"artistId\":5117774, \"collectionId\":287805088, \"trackId\":287805233, + \"artistName\":\"José James\", \"collectionName\":\"The Dreamer\", \"trackName\":\"Velvet\", + \"collectionCensoredName\":\"The Dreamer\", \"trackCensoredName\":\"Velvet\", + \"artistViewUrl\":\"http://itunes.apple.com/us/artist/jose-james/id5117774?uo=4\", + \"collectionViewUrl\":\"http://itunes.apple.com/us/album/velvet/id287805088?i=287805233&uo=4\", + \"trackViewUrl\":\"http://itunes.apple.com/us/album/velvet/id287805088?i=287805233&uo=4\", + \"previewUrl\":\"http://a3.mzstatic.com/us/r1000/042/Music/c8/53/2d/mzm.whwgbwlm.aac.p.m4a\", + \"artworkUrl30\":\"http://a5.mzstatic.com/us/r1000/001/Music/8f/6d/26/mzi.elifbnfk.30x30-50.jpg\", + \"artworkUrl60\":\"http://a2.mzstatic.com/us/r1000/001/Music/8f/6d/26/mzi.elifbnfk.60x60-50.jpg\", + \"artworkUrl100\":\"http://a4.mzstatic.com/us/r1000/001/Music/8f/6d/26/mzi.elifbnfk.100x100-75.jpg\", + \"collectionPrice\":9.90, \"trackPrice\":0.99, \"releaseDate\":\"2008-03-26T07:00:00Z\", + \"collectionExplicitness\":\"notExplicit\", \"trackExplicitness\":\"notExplicit\", + \"discCount\":1, \"discNumber\":1, \"trackCount\":10, \"trackNumber\":2, \"trackTimeMillis\":241467, + \"country\":\"USA\", \"currency\":\"USD\", \"primaryGenreName\":\"Jazz\"}, \n{\"wrapperType\":\"track\", + \"kind\":\"song\", \"artistId\":5117774, \"collectionId\":365350903, \"trackId\":365353801, + \"artistName\":\"José James\", \"collectionName\":\"Blackmagic (Deluxe Version)\", + \"trackName\":\"The Light\", \"collectionCensoredName\":\"Blackmagic (Deluxe + Version)\", \"trackCensoredName\":\"The Light\", \"artistViewUrl\":\"http://itunes.apple.com/us/artist/jose-james/id5117774?uo=4\", + \"collectionViewUrl\":\"http://itunes.apple.com/us/album/the-light/id365350903?i=365353801&uo=4\", + \"trackViewUrl\":\"http://itunes.apple.com/us/album/the-light/id365350903?i=365353801&uo=4\", + \"previewUrl\":\"http://a3.mzstatic.com/us/r1000/044/Music/bc/8f/37/mzi.istzgbtp.aac.p.m4a\", + \"artworkUrl30\":\"http://a1.mzstatic.com/us/r1000/043/Music/a2/bf/7f/mzi.ulkgzsyt.30x30-50.jpg\", + \"artworkUrl60\":\"http://a5.mzstatic.com/us/r1000/043/Music/a2/bf/7f/mzi.ulkgzsyt.60x60-50.jpg\", + \"artworkUrl100\":\"http://a2.mzstatic.com/us/r1000/043/Music/a2/bf/7f/mzi.ulkgzsyt.100x100-75.jpg\", + \"collectionPrice\":9.99, \"trackPrice\":-1.00, \"releaseDate\":\"2010-04-12T07:00:00Z\", + \"collectionExplicitness\":\"notExplicit\", \"trackExplicitness\":\"notExplicit\", + \"discCount\":1, \"discNumber\":1, \"trackCount\":20, \"trackNumber\":14, \"trackTimeMillis\":631591, + \"country\":\"USA\", \"currency\":\"USD\", \"primaryGenreName\":\"Jazz\"}, \n{\"wrapperType\":\"track\", + \"kind\":\"song\", \"artistId\":5117774, \"collectionId\":287805088, \"trackId\":287805505, + \"artistName\":\"José James\", \"collectionName\":\"The Dreamer\", \"trackName\":\"Nola\", + \"collectionCensoredName\":\"The Dreamer\", \"trackCensoredName\":\"Nola\", + \"artistViewUrl\":\"http://itunes.apple.com/us/artist/jose-james/id5117774?uo=4\", + \"collectionViewUrl\":\"http://itunes.apple.com/us/album/nola/id287805088?i=287805505&uo=4\", + \"trackViewUrl\":\"http://itunes.apple.com/us/album/nola/id287805088?i=287805505&uo=4\", + \"previewUrl\":\"http://a1.mzstatic.com/us/r1000/039/Music/3a/a1/53/mzm.jqbyidpn.aac.p.m4a\", + \"artworkUrl30\":\"http://a5.mzstatic.com/us/r1000/001/Music/8f/6d/26/mzi.elifbnfk.30x30-50.jpg\", + \"artworkUrl60\":\"http://a2.mzstatic.com/us/r1000/001/Music/8f/6d/26/mzi.elifbnfk.60x60-50.jpg\", + \"artworkUrl100\":\"http://a4.mzstatic.com/us/r1000/001/Music/8f/6d/26/mzi.elifbnfk.100x100-75.jpg\", + \"collectionPrice\":9.90, \"trackPrice\":0.99, \"releaseDate\":\"2008-03-26T07:00:00Z\", + \"collectionExplicitness\":\"notExplicit\", \"trackExplicitness\":\"notExplicit\", + \"discCount\":1, \"discNumber\":1, \"trackCount\":10, \"trackNumber\":6, \"trackTimeMillis\":236173, + \"country\":\"USA\", \"currency\":\"USD\", \"primaryGenreName\":\"Jazz\"}, \n{\"wrapperType\":\"track\", + \"kind\":\"song\", \"artistId\":5117774, \"collectionId\":370608373, \"trackId\":370611252, + \"artistName\":\"José James & Jef Neve\", \"collectionName\":\"For All We Know + (Bonus Track Version)\", \"trackName\":\"When I Fall In Love\", \"collectionCensoredName\":\"For + All We Know (Bonus Track Version)\", \"trackCensoredName\":\"When I Fall In + Love\", \"artistViewUrl\":\"http://itunes.apple.com/us/artist/jose-james/id5117774?uo=4\", + \"collectionViewUrl\":\"http://itunes.apple.com/us/album/when-i-fall-in-love/id370608373?i=370611252&uo=4\", + \"trackViewUrl\":\"http://itunes.apple.com/us/album/when-i-fall-in-love/id370608373?i=370611252&uo=4\", + \"previewUrl\":\"http://a4.mzstatic.com/us/r1000/050/Music/5d/58/5f/mzi.olitylaw.aac.p.m4a\", + \"artworkUrl30\":\"http://a4.mzstatic.com/us/r1000/018/Music/0e/66/cb/mzi.lfccwird.30x30-50.jpg\", + \"artworkUrl60\":\"http://a3.mzstatic.com/us/r1000/018/Music/0e/66/cb/mzi.lfccwird.60x60-50.jpg\", + \"artworkUrl100\":\"http://a4.mzstatic.com/us/r1000/018/Music/0e/66/cb/mzi.lfccwird.100x100-75.jpg\", + \"collectionPrice\":9.99, \"trackPrice\":0.99, \"releaseDate\":\"2010-05-11T07:00:00Z\", + \"collectionExplicitness\":\"notExplicit\", \"trackExplicitness\":\"notExplicit\", + \"discCount\":1, \"discNumber\":1, \"trackCount\":10, \"trackNumber\":5, \"trackTimeMillis\":314054, + \"country\":\"USA\", \"currency\":\"USD\", \"primaryGenreName\":\"Jazz\"}, \n{\"wrapperType\":\"track\", + \"kind\":\"song\", \"artistId\":5117774, \"collectionId\":370608373, \"trackId\":370611848, + \"artistName\":\"José James & Jef Neve\", \"collectionName\":\"For All We Know + (Bonus Track Version)\", \"trackName\":\"For All We Know\", \"collectionCensoredName\":\"For + All We Know (Bonus Track Version)\", \"trackCensoredName\":\"For All We Know\", + \"artistViewUrl\":\"http://itunes.apple.com/us/artist/jose-james/id5117774?uo=4\", + \"collectionViewUrl\":\"http://itunes.apple.com/us/album/for-all-we-know/id370608373?i=370611848&uo=4\", + \"trackViewUrl\":\"http://itunes.apple.com/us/album/for-all-we-know/id370608373?i=370611848&uo=4\", + \"previewUrl\":\"http://a1.mzstatic.com/us/r1000/037/Music/54/e4/af/mzi.nrzlwozg.aac.p.m4a\", + \"artworkUrl30\":\"http://a4.mzstatic.com/us/r1000/018/Music/0e/66/cb/mzi.lfccwird.30x30-50.jpg\", + \"artworkUrl60\":\"http://a3.mzstatic.com/us/r1000/018/Music/0e/66/cb/mzi.lfccwird.60x60-50.jpg\", + \"artworkUrl100\":\"http://a4.mzstatic.com/us/r1000/018/Music/0e/66/cb/mzi.lfccwird.100x100-75.jpg\", + \"collectionPrice\":9.99, \"trackPrice\":0.99, \"releaseDate\":\"2010-05-11T07:00:00Z\", + \"collectionExplicitness\":\"notExplicit\", \"trackExplicitness\":\"notExplicit\", + \"discCount\":1, \"discNumber\":1, \"trackCount\":10, \"trackNumber\":9, \"trackTimeMillis\":312727, + \"country\":\"USA\", \"currency\":\"USD\", \"primaryGenreName\":\"Jazz\"}, \n{\"wrapperType\":\"track\", + \"kind\":\"song\", \"artistId\":5117774, \"collectionId\":370608373, \"trackId\":370608586, + \"artistName\":\"José James & Jef Neve\", \"collectionName\":\"For All We Know + (Bonus Track Version)\", \"trackName\":\"Autumn In New York\", \"collectionCensoredName\":\"For + All We Know (Bonus Track Version)\", \"trackCensoredName\":\"Autumn In New York\", + \"artistViewUrl\":\"http://itunes.apple.com/us/artist/jose-james/id5117774?uo=4\", + \"collectionViewUrl\":\"http://itunes.apple.com/us/album/autumn-in-new-york/id370608373?i=370608586&uo=4\", + \"trackViewUrl\":\"http://itunes.apple.com/us/album/autumn-in-new-york/id370608373?i=370608586&uo=4\", + \"previewUrl\":\"http://a2.mzstatic.com/us/r1000/024/Music/44/ec/f2/mzi.rmytqwwt.aac.p.m4a\", + \"artworkUrl30\":\"http://a4.mzstatic.com/us/r1000/018/Music/0e/66/cb/mzi.lfccwird.30x30-50.jpg\", + \"artworkUrl60\":\"http://a3.mzstatic.com/us/r1000/018/Music/0e/66/cb/mzi.lfccwird.60x60-50.jpg\", + \"artworkUrl100\":\"http://a4.mzstatic.com/us/r1000/018/Music/0e/66/cb/mzi.lfccwird.100x100-75.jpg\", + \"collectionPrice\":9.99, \"trackPrice\":0.99, \"releaseDate\":\"2010-05-11T07:00:00Z\", + \"collectionExplicitness\":\"notExplicit\", \"trackExplicitness\":\"notExplicit\", + \"discCount\":1, \"discNumber\":1, \"trackCount\":10, \"trackNumber\":1, \"trackTimeMillis\":200071, + \"country\":\"USA\", \"currency\":\"USD\", \"primaryGenreName\":\"Jazz\"}, \n{\"wrapperType\":\"track\", + \"kind\":\"song\", \"artistId\":5117774, \"collectionId\":370608373, \"trackId\":370608986, + \"artistName\":\"José James & Jef Neve\", \"collectionName\":\"For All We Know + (Bonus Track Version)\", \"trackName\":\"Embraceable You\", \"collectionCensoredName\":\"For + All We Know (Bonus Track Version)\", \"trackCensoredName\":\"Embraceable You\", + \"artistViewUrl\":\"http://itunes.apple.com/us/artist/jose-james/id5117774?uo=4\", + \"collectionViewUrl\":\"http://itunes.apple.com/us/album/embraceable-you/id370608373?i=370608986&uo=4\", + \"trackViewUrl\":\"http://itunes.apple.com/us/album/embraceable-you/id370608373?i=370608986&uo=4\", + \"previewUrl\":\"http://a1.mzstatic.com/us/r1000/006/Music/79/38/b1/mzi.bkhfjjst.aac.p.m4a\", + \"artworkUrl30\":\"http://a4.mzstatic.com/us/r1000/018/Music/0e/66/cb/mzi.lfccwird.30x30-50.jpg\", + \"artworkUrl60\":\"http://a3.mzstatic.com/us/r1000/018/Music/0e/66/cb/mzi.lfccwird.60x60-50.jpg\", + \"artworkUrl100\":\"http://a4.mzstatic.com/us/r1000/018/Music/0e/66/cb/mzi.lfccwird.100x100-75.jpg\", + \"collectionPrice\":9.99, \"trackPrice\":0.99, \"releaseDate\":\"2010-05-11T07:00:00Z\", + \"collectionExplicitness\":\"notExplicit\", \"trackExplicitness\":\"notExplicit\", + \"discCount\":1, \"discNumber\":1, \"trackCount\":10, \"trackNumber\":2, \"trackTimeMillis\":375153, + \"country\":\"USA\", \"currency\":\"USD\", \"primaryGenreName\":\"Jazz\"}, \n{\"wrapperType\":\"track\", + \"kind\":\"song\", \"artistId\":5117774, \"collectionId\":370608373, \"trackId\":370609436, + \"artistName\":\"José James & Jef Neve\", \"collectionName\":\"For All We Know + (Bonus Track Version)\", \"trackName\":\"Gee Baby, Ain't I Good to You\", \"collectionCensoredName\":\"For + All We Know (Bonus Track Version)\", \"trackCensoredName\":\"Gee Baby, Ain't + I Good to You\", \"artistViewUrl\":\"http://itunes.apple.com/us/artist/jose-james/id5117774?uo=4\", + \"collectionViewUrl\":\"http://itunes.apple.com/us/album/gee-baby-aint-i-good-to-you/id370608373?i=370609436&uo=4\", + \"trackViewUrl\":\"http://itunes.apple.com/us/album/gee-baby-aint-i-good-to-you/id370608373?i=370609436&uo=4\", + \"previewUrl\":\"http://a1.mzstatic.com/us/r1000/003/Music/b5/c3/a9/mzi.xumxkdmi.aac.p.m4a\", + \"artworkUrl30\":\"http://a4.mzstatic.com/us/r1000/018/Music/0e/66/cb/mzi.lfccwird.30x30-50.jpg\", + \"artworkUrl60\":\"http://a3.mzstatic.com/us/r1000/018/Music/0e/66/cb/mzi.lfccwird.60x60-50.jpg\", + \"artworkUrl100\":\"http://a4.mzstatic.com/us/r1000/018/Music/0e/66/cb/mzi.lfccwird.100x100-75.jpg\", + \"collectionPrice\":9.99, \"trackPrice\":0.99, \"releaseDate\":\"2010-05-11T07:00:00Z\", + \"collectionExplicitness\":\"notExplicit\", \"trackExplicitness\":\"notExplicit\", + \"discCount\":1, \"discNumber\":1, \"trackCount\":10, \"trackNumber\":3, \"trackTimeMillis\":319293, + \"country\":\"USA\", \"currency\":\"USD\", \"primaryGenreName\":\"Jazz\"}, \n{\"wrapperType\":\"track\", + \"kind\":\"song\", \"artistId\":5117774, \"collectionId\":370608373, \"trackId\":370610685, + \"artistName\":\"José James & Jef Neve\", \"collectionName\":\"For All We Know + (Bonus Track Version)\", \"trackName\":\"Body and Soul\", \"collectionCensoredName\":\"For + All We Know (Bonus Track Version)\", \"trackCensoredName\":\"Body and Soul\", + \"artistViewUrl\":\"http://itunes.apple.com/us/artist/jose-james/id5117774?uo=4\", + \"collectionViewUrl\":\"http://itunes.apple.com/us/album/body-and-soul/id370608373?i=370610685&uo=4\", + \"trackViewUrl\":\"http://itunes.apple.com/us/album/body-and-soul/id370608373?i=370610685&uo=4\", + \"previewUrl\":\"http://a3.mzstatic.com/us/r1000/033/Music/67/18/a1/mzi.hdcilbqn.aac.p.m4a\", + \"artworkUrl30\":\"http://a4.mzstatic.com/us/r1000/018/Music/0e/66/cb/mzi.lfccwird.30x30-50.jpg\", + \"artworkUrl60\":\"http://a3.mzstatic.com/us/r1000/018/Music/0e/66/cb/mzi.lfccwird.60x60-50.jpg\", + \"artworkUrl100\":\"http://a4.mzstatic.com/us/r1000/018/Music/0e/66/cb/mzi.lfccwird.100x100-75.jpg\", + \"collectionPrice\":9.99, \"trackPrice\":0.99, \"releaseDate\":\"2010-05-11T07:00:00Z\", + \"collectionExplicitness\":\"notExplicit\", \"trackExplicitness\":\"notExplicit\", + \"discCount\":1, \"discNumber\":1, \"trackCount\":10, \"trackNumber\":4, \"trackTimeMillis\":386380, + \"country\":\"USA\", \"currency\":\"USD\", \"primaryGenreName\":\"Jazz\"}, \n{\"wrapperType\":\"track\", + \"kind\":\"song\", \"artistId\":5117774, \"collectionId\":370608373, \"trackId\":370611570, + \"artistName\":\"José James & Jef Neve\", \"collectionName\":\"For All We Know + (Bonus Track Version)\", \"trackName\":\"Just Squeeze Me\", \"collectionCensoredName\":\"For + All We Know (Bonus Track Version)\", \"trackCensoredName\":\"Just Squeeze Me\", + \"artistViewUrl\":\"http://itunes.apple.com/us/artist/jose-james/id5117774?uo=4\", + \"collectionViewUrl\":\"http://itunes.apple.com/us/album/just-squeeze-me/id370608373?i=370611570&uo=4\", + \"trackViewUrl\":\"http://itunes.apple.com/us/album/just-squeeze-me/id370608373?i=370611570&uo=4\", + \"previewUrl\":\"http://a4.mzstatic.com/us/r1000/054/Music/9a/4f/8d/mzi.qxbtzmav.aac.p.m4a\", + \"artworkUrl30\":\"http://a4.mzstatic.com/us/r1000/018/Music/0e/66/cb/mzi.lfccwird.30x30-50.jpg\", + \"artworkUrl60\":\"http://a3.mzstatic.com/us/r1000/018/Music/0e/66/cb/mzi.lfccwird.60x60-50.jpg\", + \"artworkUrl100\":\"http://a4.mzstatic.com/us/r1000/018/Music/0e/66/cb/mzi.lfccwird.100x100-75.jpg\", + \"collectionPrice\":9.99, \"trackPrice\":0.99, \"releaseDate\":\"2010-05-11T07:00:00Z\", + \"collectionExplicitness\":\"notExplicit\", \"trackExplicitness\":\"notExplicit\", + \"discCount\":1, \"discNumber\":1, \"trackCount\":10, \"trackNumber\":7, \"trackTimeMillis\":255247, + \"country\":\"USA\", \"currency\":\"USD\", \"primaryGenreName\":\"Jazz\"}, \n{\"wrapperType\":\"track\", + \"kind\":\"song\", \"artistId\":5117774, \"collectionId\":370608373, \"trackId\":370611631, + \"artistName\":\"José James & Jef Neve\", \"collectionName\":\"For All We Know + (Bonus Track Version)\", \"trackName\":\"Lush Life\", \"collectionCensoredName\":\"For + All We Know (Bonus Track Version)\", \"trackCensoredName\":\"Lush Life\", \"artistViewUrl\":\"http://itunes.apple.com/us/artist/jose-james/id5117774?uo=4\", + \"collectionViewUrl\":\"http://itunes.apple.com/us/album/lush-life/id370608373?i=370611631&uo=4\", + \"trackViewUrl\":\"http://itunes.apple.com/us/album/lush-life/id370608373?i=370611631&uo=4\", + \"previewUrl\":\"http://a2.mzstatic.com/us/r1000/049/Music/52/54/c7/mzi.zhswfzwh.aac.p.m4a\", + \"artworkUrl30\":\"http://a4.mzstatic.com/us/r1000/018/Music/0e/66/cb/mzi.lfccwird.30x30-50.jpg\", + \"artworkUrl60\":\"http://a3.mzstatic.com/us/r1000/018/Music/0e/66/cb/mzi.lfccwird.60x60-50.jpg\", + \"artworkUrl100\":\"http://a4.mzstatic.com/us/r1000/018/Music/0e/66/cb/mzi.lfccwird.100x100-75.jpg\", + \"collectionPrice\":9.99, \"trackPrice\":-1.00, \"releaseDate\":\"2010-05-11T07:00:00Z\", + \"collectionExplicitness\":\"notExplicit\", \"trackExplicitness\":\"notExplicit\", + \"discCount\":1, \"discNumber\":1, \"trackCount\":10, \"trackNumber\":8, \"trackTimeMillis\":448028, + \"country\":\"USA\", \"currency\":\"USD\", \"primaryGenreName\":\"Jazz\"}, \n{\"wrapperType\":\"track\", + \"kind\":\"song\", \"artistId\":5117774, \"collectionId\":370608373, \"trackId\":370611538, + \"artistName\":\"José James & Jef Neve\", \"collectionName\":\"For All We Know + (Bonus Track Version)\", \"trackName\":\"Tenderly\", \"collectionCensoredName\":\"For + All We Know (Bonus Track Version)\", \"trackCensoredName\":\"Tenderly\", \"artistViewUrl\":\"http://itunes.apple.com/us/artist/jose-james/id5117774?uo=4\", + \"collectionViewUrl\":\"http://itunes.apple.com/us/album/tenderly/id370608373?i=370611538&uo=4\", + \"trackViewUrl\":\"http://itunes.apple.com/us/album/tenderly/id370608373?i=370611538&uo=4\", + \"previewUrl\":\"http://a1.mzstatic.com/us/r1000/027/Music/78/89/68/mzi.wxudstde.aac.p.m4a\", + \"artworkUrl30\":\"http://a4.mzstatic.com/us/r1000/018/Music/0e/66/cb/mzi.lfccwird.30x30-50.jpg\", + \"artworkUrl60\":\"http://a3.mzstatic.com/us/r1000/018/Music/0e/66/cb/mzi.lfccwird.60x60-50.jpg\", + \"artworkUrl100\":\"http://a4.mzstatic.com/us/r1000/018/Music/0e/66/cb/mzi.lfccwird.100x100-75.jpg\", + \"collectionPrice\":9.99, \"trackPrice\":-1.00, \"releaseDate\":\"2010-05-11T07:00:00Z\", + \"collectionExplicitness\":\"notExplicit\", \"trackExplicitness\":\"notExplicit\", + \"discCount\":1, \"discNumber\":1, \"trackCount\":10, \"trackNumber\":6, \"trackTimeMillis\":445817, + \"country\":\"USA\", \"currency\":\"USD\", \"primaryGenreName\":\"Jazz\"}, \n{\"wrapperType\":\"track\", + \"kind\":\"song\", \"artistId\":5117774, \"collectionId\":370608373, \"trackId\":370611857, + \"artistName\":\"José James & Jef Neve\", \"collectionName\":\"For All We Know + (Bonus Track Version)\", \"trackName\":\"Georgia On My Mind\", \"collectionCensoredName\":\"For + All We Know (Bonus Track Version)\", \"trackCensoredName\":\"Georgia On My Mind\", + \"artistViewUrl\":\"http://itunes.apple.com/us/artist/jose-james/id5117774?uo=4\", + \"collectionViewUrl\":\"http://itunes.apple.com/us/album/georgia-on-my-mind/id370608373?i=370611857&uo=4\", + \"trackViewUrl\":\"http://itunes.apple.com/us/album/georgia-on-my-mind/id370608373?i=370611857&uo=4\", + \"previewUrl\":\"http://a5.mzstatic.com/us/r1000/050/Music/c8/e3/6b/mzi.dbxncbgm.aac.p.m4a\", + \"artworkUrl30\":\"http://a4.mzstatic.com/us/r1000/018/Music/0e/66/cb/mzi.lfccwird.30x30-50.jpg\", + \"artworkUrl60\":\"http://a3.mzstatic.com/us/r1000/018/Music/0e/66/cb/mzi.lfccwird.60x60-50.jpg\", + \"artworkUrl100\":\"http://a4.mzstatic.com/us/r1000/018/Music/0e/66/cb/mzi.lfccwird.100x100-75.jpg\", + \"collectionPrice\":9.99, \"trackPrice\":-1.00, \"releaseDate\":\"2010-05-11T07:00:00Z\", + \"collectionExplicitness\":\"notExplicit\", \"trackExplicitness\":\"notExplicit\", + \"discCount\":1, \"discNumber\":1, \"trackCount\":10, \"trackNumber\":10, \"trackTimeMillis\":433665, + \"country\":\"USA\", \"currency\":\"USD\", \"primaryGenreName\":\"Jazz\"}, \n{\"wrapperType\":\"track\", + \"kind\":\"song\", \"artistId\":5117774, \"collectionId\":394049927, \"trackId\":394050366, + \"artistName\":\"José James\", \"collectionName\":\"Saint-Germain-des-Prés Café + (The Blue Edition by Mr. Scruff)\", \"trackName\":\"Desire (Moodyman Remix)\", + \"collectionCensoredName\":\"Saint-Germain-des-Prés Café (The Blue Edition by + Mr. Scruff)\", \"trackCensoredName\":\"Desire (Moodyman Remix)\", \"artistViewUrl\":\"http://itunes.apple.com/us/artist/jose-james/id5117774?uo=4\", + \"collectionViewUrl\":\"http://itunes.apple.com/us/album/desire-moodyman-remix/id394049927?i=394050366&uo=4\", + \"trackViewUrl\":\"http://itunes.apple.com/us/album/desire-moodyman-remix/id394049927?i=394050366&uo=4\", + \"previewUrl\":\"http://a2.mzstatic.com/us/r1000/049/Music/28/5f/55/mzi.sewnbcsw.aac.p.m4a\", + \"artworkUrl30\":\"http://a5.mzstatic.com/us/r1000/002/Music/21/0d/28/mzi.ojpdsoax.30x30-50.jpg\", + \"artworkUrl60\":\"http://a4.mzstatic.com/us/r1000/002/Music/21/0d/28/mzi.ojpdsoax.60x60-50.jpg\", + \"artworkUrl100\":\"http://a4.mzstatic.com/us/r1000/002/Music/21/0d/28/mzi.ojpdsoax.100x100-75.jpg\", + \"collectionPrice\":15.99, \"trackPrice\":-1.00, \"releaseDate\":\"2010-10-11T07:00:00Z\", + \"collectionExplicitness\":\"notExplicit\", \"trackExplicitness\":\"notExplicit\", + \"discCount\":2, \"discNumber\":1, \"trackCount\":19, \"trackNumber\":18, \"trackTimeMillis\":306214, + \"country\":\"USA\", \"currency\":\"USD\", \"primaryGenreName\":\"Electronic\"}, + \n{\"wrapperType\":\"track\", \"kind\":\"song\", \"artistId\":5117774, \"collectionId\":288906052, + \"trackId\":288906069, \"artistName\":\"José James\", \"collectionName\":\"Desire + & Love - Single\", \"trackName\":\"Desire\", \"collectionCensoredName\":\"Desire + & Love - Single\", \"trackCensoredName\":\"Desire (Moodymann Remix)\", \"artistViewUrl\":\"http://itunes.apple.com/us/artist/jose-james/id5117774?uo=4\", + \"collectionViewUrl\":\"http://itunes.apple.com/us/album/desire-moodymann-remix/id288906052?i=288906069&uo=4\", + \"trackViewUrl\":\"http://itunes.apple.com/us/album/desire-moodymann-remix/id288906052?i=288906069&uo=4\", + \"previewUrl\":\"http://a3.mzstatic.com/us/r1000/013/Music/28/9b/e7/mzm.djwbtrju.aac.p.m4a\", + \"artworkUrl30\":\"http://a1.mzstatic.com/us/r1000/045/Features/77/b8/9f/dj.qqmyenao.30x30-50.jpg\", + \"artworkUrl60\":\"http://a3.mzstatic.com/us/r1000/045/Features/77/b8/9f/dj.qqmyenao.60x60-50.jpg\", + \"artworkUrl100\":\"http://a4.mzstatic.com/us/r1000/045/Features/77/b8/9f/dj.qqmyenao.100x100-75.jpg\", + \"collectionPrice\":1.98, \"trackPrice\":0.99, \"releaseDate\":\"2008-09-21T07:00:00Z\", + \"collectionExplicitness\":\"notExplicit\", \"trackExplicitness\":\"notExplicit\", + \"discCount\":1, \"discNumber\":1, \"trackCount\":2, \"trackNumber\":1, \"trackTimeMillis\":340507, + \"country\":\"USA\", \"currency\":\"USD\", \"primaryGenreName\":\"Dance\"}, + \n{\"wrapperType\":\"track\", \"kind\":\"song\", \"artistId\":5117774, \"collectionId\":291596901, + \"trackId\":291597047, \"artistName\":\"José James\", \"collectionName\":\"Brownswood + Bubblers Two\", \"trackName\":\"The Dreamer\", \"collectionCensoredName\":\"Brownswood + Bubblers Two\", \"trackCensoredName\":\"The Dreamer\", \"artistViewUrl\":\"http://itunes.apple.com/us/artist/jose-james/id5117774?uo=4\", + \"collectionViewUrl\":\"http://itunes.apple.com/us/album/the-dreamer/id291596901?i=291597047&uo=4\", + \"trackViewUrl\":\"http://itunes.apple.com/us/album/the-dreamer/id291596901?i=291597047&uo=4\", + \"previewUrl\":\"http://a5.mzstatic.com/us/r1000/039/Music/89/60/db/mzm.wpcdjonl.aac.p.m4a\", + \"artworkUrl30\":\"http://a3.mzstatic.com/us/r1000/025/Music/f9/bd/6d/mzi.qagrzrgg.30x30-50.jpg\", + \"artworkUrl60\":\"http://a2.mzstatic.com/us/r1000/025/Music/f9/bd/6d/mzi.qagrzrgg.60x60-50.jpg\", + \"artworkUrl100\":\"http://a2.mzstatic.com/us/r1000/025/Music/f9/bd/6d/mzi.qagrzrgg.100x100-75.jpg\", + \"collectionPrice\":10.99, \"trackPrice\":0.99, \"releaseDate\":\"2007-07-06T07:00:00Z\", + \"collectionExplicitness\":\"notExplicit\", \"trackExplicitness\":\"notExplicit\", + \"discCount\":1, \"discNumber\":1, \"trackCount\":16, \"trackNumber\":16, \"trackTimeMillis\":420453, + \"country\":\"USA\", \"currency\":\"USD\", \"primaryGenreName\":\"Dance\"}, + \n{\"wrapperType\":\"track\", \"kind\":\"song\", \"artistId\":467392350, \"collectionId\":467392541, + \"trackId\":467392545, \"artistName\":\"José James\", \"collectionName\":\"Trouble + - Single\", \"trackName\":\"Trouble\", \"collectionCensoredName\":\"Trouble + - Single\", \"trackCensoredName\":\"Trouble\", \"artistViewUrl\":\"http://itunes.apple.com/us/artist/jose-james/id467392350?uo=4\", + \"collectionViewUrl\":\"http://itunes.apple.com/us/album/trouble/id467392541?i=467392545&uo=4\", + \"trackViewUrl\":\"http://itunes.apple.com/us/album/trouble/id467392541?i=467392545&uo=4\", + \"previewUrl\":\"http://a5.mzstatic.com/us/r30/Music/36/ea/1c/mzi.snbmfqwe.aac.p.m4a\", + \"artworkUrl30\":\"http://a3.mzstatic.com/us/r30/Music/39/88/4d/mzi.yllvcdlb.30x30-50.jpg\", + \"artworkUrl60\":\"http://a5.mzstatic.com/us/r30/Music/39/88/4d/mzi.yllvcdlb.60x60-50.jpg\", + \"artworkUrl100\":\"http://a5.mzstatic.com/us/r30/Music/39/88/4d/mzi.yllvcdlb.100x100-75.jpg\", + \"collectionPrice\":0.99, \"trackPrice\":0.99, \"releaseDate\":\"2011-10-14T07:00:00Z\", + \"collectionExplicitness\":\"notExplicit\", \"trackExplicitness\":\"notExplicit\", + \"discCount\":1, \"discNumber\":1, \"trackCount\":1, \"trackNumber\":1, \"trackTimeMillis\":201700, + \"country\":\"USA\", \"currency\":\"USD\", \"primaryGenreName\":\"R&B/Soul\"}, + \n{\"wrapperType\":\"track\", \"kind\":\"song\", \"artistId\":5117774, \"collectionId\":286264618, + \"trackId\":286264685, \"artistName\":\"José James & Flying Lotus\", \"collectionName\":\"Park + Bench People - EP\", \"trackName\":\"Visions of Violet\", \"collectionCensoredName\":\"Park + Bench People - EP\", \"trackCensoredName\":\"Visions of Violet\", \"artistViewUrl\":\"http://itunes.apple.com/us/artist/jose-james/id5117774?uo=4\", + \"collectionViewUrl\":\"http://itunes.apple.com/us/album/visions-of-violet/id286264618?i=286264685&uo=4\", + \"trackViewUrl\":\"http://itunes.apple.com/us/album/visions-of-violet/id286264618?i=286264685&uo=4\", + \"previewUrl\":\"http://a2.mzstatic.com/us/r1000/047/Music/25/3d/19/mzm.dsstwydd.aac.p.m4a\", + \"artworkUrl30\":\"http://a3.mzstatic.com/us/r1000/058/Features/4e/f9/7f/dj.yzdqoree.30x30-50.jpg\", + \"artworkUrl60\":\"http://a5.mzstatic.com/us/r1000/058/Features/4e/f9/7f/dj.yzdqoree.60x60-50.jpg\", + \"artworkUrl100\":\"http://a3.mzstatic.com/us/r1000/058/Features/4e/f9/7f/dj.yzdqoree.100x100-75.jpg\", + \"collectionPrice\":1.99, \"trackPrice\":0.99, \"releaseDate\":\"2008-08-24T07:00:00Z\", + \"collectionExplicitness\":\"notExplicit\", \"trackExplicitness\":\"notExplicit\", + \"discCount\":1, \"discNumber\":1, \"trackCount\":2, \"trackNumber\":2, \"trackTimeMillis\":139307, + \"country\":\"USA\", \"currency\":\"USD\", \"primaryGenreName\":\"Jazz\"}, \n{\"wrapperType\":\"track\", + \"kind\":\"song\", \"artistId\":5117774, \"collectionId\":282084350, \"trackId\":282084363, + \"artistName\":\"José James\", \"collectionName\":\"Gilles Peterson In the House\", + \"trackName\":\"Spirits Above\", \"collectionCensoredName\":\"Gilles Peterson + In the House\", \"trackCensoredName\":\"Spirits Above\", \"artistViewUrl\":\"http://itunes.apple.com/us/artist/jose-james/id5117774?uo=4\", + \"collectionViewUrl\":\"http://itunes.apple.com/us/album/spirits-above/id282084350?i=282084363&uo=4\", + \"trackViewUrl\":\"http://itunes.apple.com/us/album/spirits-above/id282084350?i=282084363&uo=4\", + \"previewUrl\":\"http://a3.mzstatic.com/us/r1000/037/Music/e1/eb/f4/mzm.arzoanfi.aac.p.m4a\", + \"artworkUrl30\":\"http://a1.mzstatic.com/us/r1000/048/Music/f2/c6/0d/mzi.jupqudrd.30x30-50.jpg\", + \"artworkUrl60\":\"http://a5.mzstatic.com/us/r1000/048/Music/f2/c6/0d/mzi.jupqudrd.60x60-50.jpg\", + \"artworkUrl100\":\"http://a5.mzstatic.com/us/r1000/048/Music/f2/c6/0d/mzi.jupqudrd.100x100-75.jpg\", + \"collectionPrice\":3.99, \"trackPrice\":0.99, \"releaseDate\":\"2008-06-02T07:00:00Z\", + \"collectionExplicitness\":\"notExplicit\", \"trackExplicitness\":\"notExplicit\", + \"discCount\":1, \"discNumber\":1, \"trackCount\":12, \"trackNumber\":4, \"trackTimeMillis\":410587, + \"country\":\"USA\", \"currency\":\"USD\", \"primaryGenreName\":\"Dance\"}, + \n{\"wrapperType\":\"track\", \"kind\":\"song\", \"artistId\":5117774, \"collectionId\":395704841, + \"trackId\":395704962, \"artistName\":\"José James\", \"collectionName\":\"Gilles + Peterson: Worldwide - A Celebration of His Snydicated Radio Show\", \"trackName\":\"The + Dreamer\", \"collectionCensoredName\":\"Gilles Peterson: Worldwide - A Celebration + of His Snydicated Radio Show\", \"trackCensoredName\":\"The Dreamer\", \"artistViewUrl\":\"http://itunes.apple.com/us/artist/jose-james/id5117774?uo=4\", + \"collectionViewUrl\":\"http://itunes.apple.com/us/album/the-dreamer/id395704841?i=395704962&uo=4\", + \"trackViewUrl\":\"http://itunes.apple.com/us/album/the-dreamer/id395704841?i=395704962&uo=4\", + \"previewUrl\":\"http://a1.mzstatic.com/us/r1000/025/Music/ed/ff/1c/mzi.bmkfrqyo.aac.p.m4a\", + \"artworkUrl30\":\"http://a4.mzstatic.com/us/r1000/035/Music/01/2b/c8/mzi.zffvkmva.30x30-50.jpg\", + \"artworkUrl60\":\"http://a3.mzstatic.com/us/r1000/035/Music/01/2b/c8/mzi.zffvkmva.60x60-50.jpg\", + \"artworkUrl100\":\"http://a5.mzstatic.com/us/r1000/035/Music/01/2b/c8/mzi.zffvkmva.100x100-75.jpg\", + \"collectionPrice\":9.99, \"trackPrice\":0.99, \"releaseDate\":\"2010-10-08T07:00:00Z\", + \"collectionExplicitness\":\"notExplicit\", \"trackExplicitness\":\"notExplicit\", + \"discCount\":1, \"discNumber\":1, \"trackCount\":17, \"trackNumber\":15, \"trackTimeMillis\":422149, + \"country\":\"USA\", \"currency\":\"USD\", \"primaryGenreName\":\"R&B/Soul\"}, + \n{\"wrapperType\":\"track\", \"kind\":\"song\", \"artistId\":5117774, \"collectionId\":334904540, + \"trackId\":334904562, \"artistName\":\"José James\", \"collectionName\":\"Blackmagic + Remixes - EP\", \"trackName\":\"Blackmagic\", \"collectionCensoredName\":\"Blackmagic + Remixes - EP\", \"trackCensoredName\":\"Blackmagic (Joy Orbison's Recreation)\", + \"artistViewUrl\":\"http://itunes.apple.com/us/artist/jose-james/id5117774?uo=4\", + \"collectionViewUrl\":\"http://itunes.apple.com/us/album/blackmagic-joy-orbisons-recreation/id334904540?i=334904562&uo=4\", + \"trackViewUrl\":\"http://itunes.apple.com/us/album/blackmagic-joy-orbisons-recreation/id334904540?i=334904562&uo=4\", + \"previewUrl\":\"http://a1.mzstatic.com/us/r1000/048/Music/ef/76/00/mzm.xqhwytnx.aac.p.m4a\", + \"artworkUrl30\":\"http://a5.mzstatic.com/us/r1000/002/Music/7b/c5/a7/mzi.kgvrbwuh.30x30-50.jpg\", + \"artworkUrl60\":\"http://a4.mzstatic.com/us/r1000/002/Music/7b/c5/a7/mzi.kgvrbwuh.60x60-50.jpg\", + \"artworkUrl100\":\"http://a1.mzstatic.com/us/r1000/002/Music/7b/c5/a7/mzi.kgvrbwuh.100x100-75.jpg\", + \"collectionPrice\":3.96, \"trackPrice\":0.99, \"releaseDate\":\"2009-11-01T07:00:00Z\", + \"collectionExplicitness\":\"notExplicit\", \"trackExplicitness\":\"notExplicit\", + \"discCount\":1, \"discNumber\":1, \"trackCount\":4, \"trackNumber\":1, \"trackTimeMillis\":355804, + \"country\":\"USA\", \"currency\":\"USD\", \"primaryGenreName\":\"Dance\"}]\n}\n\n\n" + http_version: '1.1' +- !ruby/struct:VCR::HTTPInteraction + request: !ruby/struct:VCR::Request + method: :get + uri: http://ax.itunes.apple.com:80/WebObjects/MZStoreServices.woa/wa/wsSearch?media=podcast&term=Beyondjazz + body: + headers: + accept: + - application/json + user-agent: + - ITunes Ruby Gem 0.5.5 + accept-encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + response: !ruby/struct:VCR::Response + status: !ruby/struct:VCR::ResponseStatus + code: 200 + message: OK + headers: + x-apple-orig-url-path: + - /WebObjects/MZStoreServices.woa/wa/wsSearch?term=Beyondjazz&media=podcast + x-apple-translated-wo-url: + - /WebObjects/MZStoreServices.woa/wa/wsSearch?term=Beyondjazz&media=podcast + x-apple-application-site: + - ST11 + x-apple-max-age: + - '3600' + content-type: + - text/javascript; charset=utf-8 + x-apple-application-instance: + - '2057010' + x-webobjects-loadaverage: + - '0' + vary: + - Accept-Encoding + - X-Apple-Store-Front + expires: + - Wed, 18 Apr 2012 22:53:37 GMT + cache-control: + - max-age=0, no-cache + pragma: + - no-cache + date: + - Wed, 18 Apr 2012 22:53:37 GMT + content-length: + - '1049' + connection: + - keep-alive + x-apple-partner: + - origin.0 + body: ! "\n\n\n{\n \"resultCount\":1,\n \"results\": [\n{\"wrapperType\":\"track\", + \"kind\":\"podcast\", \"collectionId\":337994101, \"trackId\":337994101, \"artistName\":\"Julie + Kummer\", \"collectionName\":\"s i s t a k\", \"trackName\":\"s i s t a k\", + \"collectionCensoredName\":\"s i s t a k\", \"trackCensoredName\":\"s i s t + a k\", \"collectionViewUrl\":\"http://itunes.apple.com/us/podcast/s-i-s-t-a-k/id337994101?uo=4\", + \"feedUrl\":\"http://sistak.podOmatic.com/rss2.xml\", \"trackViewUrl\":\"http://itunes.apple.com/us/podcast/s-i-s-t-a-k/id337994101?uo=4\", + \"artworkUrl30\":\"http://a3.mzstatic.com/us/r30/Podcasts/d6/e9/23/ps.zoppkizk.30x30-50.jpg\", + \"artworkUrl60\":\"http://a5.mzstatic.com/us/r30/Podcasts/d6/e9/23/ps.zoppkizk.60x60-50.jpg\", + \"artworkUrl100\":\"http://a5.mzstatic.com/us/r30/Podcasts/d6/e9/23/ps.zoppkizk.100x100-75.jpg\", + \"collectionPrice\":0.00, \"trackPrice\":0.00, \"releaseDate\":\"2011-12-27T06:54:00Z\", + \"collectionExplicitness\":\"cleaned\", \"trackExplicitness\":\"cleaned\", \"trackCount\":5, + \"country\":\"USA\", \"currency\":\"USD\", \"primaryGenreName\":\"Music\", \"contentAdvisoryRating\":\"Clean\"}]\n}\n\n\n" + http_version: '1.1' +- !ruby/struct:VCR::HTTPInteraction + request: !ruby/struct:VCR::Request + method: :get + uri: http://ax.itunes.apple.com:80/WebObjects/MZStoreServices.woa/wa/wsSearch?media=movie&term=Blade%20Runner + body: + headers: + accept: + - application/json + user-agent: + - ITunes Ruby Gem 0.5.5 + accept-encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + response: !ruby/struct:VCR::Response + status: !ruby/struct:VCR::ResponseStatus + code: 200 + message: OK + headers: + x-apple-orig-url-path: + - /WebObjects/MZStoreServices.woa/wa/wsSearch?term=Blade%20Runner&media=movie + x-apple-translated-wo-url: + - /WebObjects/MZStoreServices.woa/wa/wsSearch?term=Blade%20Runner&media=movie + x-apple-application-site: + - NWK + x-apple-max-age: + - '3600' + content-type: + - text/javascript; charset=utf-8 + x-apple-application-instance: + - '3045008' + x-webobjects-loadaverage: + - '0' + vary: + - Accept-Encoding + - X-Apple-Store-Front + expires: + - Wed, 18 Apr 2012 22:53:38 GMT + cache-control: + - max-age=0, no-cache + pragma: + - no-cache + date: + - Wed, 18 Apr 2012 22:53:38 GMT + content-length: + - '4077' + connection: + - keep-alive + x-apple-partner: + - origin.0 + body: ! "\n\n\n{\n \"resultCount\":2,\n \"results\": [\n{\"wrapperType\":\"track\", + \"kind\":\"feature-movie\", \"trackId\":273857038, \"artistName\":\"Ridley Scott\", + \"trackName\":\"Blade Runner (Director's Cut)\", \"trackCensoredName\":\"Blade + Runner (Director's Cut)\", \"trackViewUrl\":\"http://itunes.apple.com/us/movie/blade-runner-directors-cut/id273857038?uo=4\", + \"previewUrl\":\"http://a1764.v.phobos.apple.com/us/r1000/056/Video/19/b7/d3/mzm.xmrjnvye..640x354.h264lc.d2.p.m4v\", + \"artworkUrl30\":\"http://a4.mzstatic.com/us/r1000/026/Music/d1/3d/db/dj.ehpnqsxx.30x30-50.jpg\", + \"artworkUrl60\":\"http://a3.mzstatic.com/us/r1000/026/Music/d1/3d/db/dj.ehpnqsxx.60x60-50.jpg\", + \"artworkUrl100\":\"http://a4.mzstatic.com/us/r1000/026/Music/d1/3d/db/dj.ehpnqsxx.100x100-75.jpg\", + \"collectionPrice\":9.99, \"trackPrice\":9.99, \"releaseDate\":\"1982-06-25T07:00:00Z\", + \"collectionExplicitness\":\"notExplicit\", \"trackExplicitness\":\"notExplicit\", + \"trackTimeMillis\":7048715.0, \"country\":\"USA\", \"currency\":\"USD\", \"primaryGenreName\":\"Action + & Adventure\", \"contentAdvisoryRating\":\"R\", \n\"shortDescription\":\"From + the director of \\\"Alien\\\" comes one of the most popular, gripping and visually + stunning science-fiction thrillers of all time. Superstar Harrison Ford is an + ex-cop hired to track down five mutinous androids.\", \n\"longDescription\":\"From + the director of \\\"Alien\\\" comes one of the most popular, gripping and visually + stunning science-fiction thrillers of all time. Superstar Harrison Ford is + an ex-cop hired to track down five mutinous androids. Navigating his way through + a sprawling metropolis of the future, he hunts them down one by one -- climaxing + in a final showdown with their leader. Starring Oscar-nominee Ford (\\\"The + Fugitive,\\\" \\\"Air Force One\\\"), Golden Globe-winner Rutger Hauer (\\\"The + Hitcher\\\"), Sean Young (\\\"No Way Out\\\"), Daryl Hannah (\\\"Roxanne,\\\" + \\\"Splash\\\") and Emmy and Golden Globe-winner Edward James Olmos (\\\"Stand + and Deliver,\\\" TV's \\\"Miami Vice\\\"). Directed by Oscar-nominee Ridley + Scott (\\\"Alien,\\\" \\\"Thelma & Louise\\\"). Nominated for two Academy Awards, + including Best Visual Effects, inducted into the National Film Registry and + voted one of the top films of all time by the AFI. \\\"...the world of 'Blade + Runner' has undeniably become one of the visual touchstones of modern movies...\\\" + - Roger Ebert. \\\"...eyeball popping thriller...\"}, \n{\"wrapperType\":\"track\", + \"kind\":\"feature-movie\", \"trackId\":295142421, \"artistName\":\"Ridley Scott\", + \"trackName\":\"Blade Runner (The Final Cut)\", \"trackCensoredName\":\"Blade + Runner (The Final Cut)\", \"trackViewUrl\":\"http://itunes.apple.com/us/movie/blade-runner-the-final-cut/id295142421?uo=4\", + \"previewUrl\":\"http://a1017.v.phobos.apple.com/us/r1000/039/Video/b5/91/31/mzm.zcyquwhc..640x266.h264lc.d2.p.m4v\", + \"artworkUrl30\":\"http://a1.mzstatic.com/us/r1000/038/Video/4c/0a/b1/mzl.wbjcflpt.30x30-50.jpg\", + \"artworkUrl60\":\"http://a5.mzstatic.com/us/r1000/038/Video/4c/0a/b1/mzl.wbjcflpt.60x60-50.jpg\", + \"artworkUrl100\":\"http://a1.mzstatic.com/us/r1000/038/Video/4c/0a/b1/mzl.wbjcflpt.100x100-75.jpg\", + \"collectionPrice\":9.99, \"trackPrice\":9.99, \"releaseDate\":\"1982-10-14T07:00:00Z\", + \"collectionExplicitness\":\"notExplicit\", \"trackExplicitness\":\"notExplicit\", + \"trackTimeMillis\":7049440.0, \"country\":\"USA\", \"currency\":\"USD\", \"primaryGenreName\":\"Sci-Fi + & Fantasy\", \"contentAdvisoryRating\":\"R\", \n\"longDescription\":\"Visually + spectacular, intensely action-packed and powerfully prophetic since its debut, + Blade Runner returns in Ridley Scott's definitive Final Cut, including extended + scenes and never-before-seen special effects. In a signature role as 21st-century + detective Rick Deckard, Harrison Ford brings his masculine-yet-vulnerable presence + to this stylish noir thriller. In a future of high-tech possibility soured by + urban and social decay, Deckard hunts for fugitive, murderous replicants - and + is drawn to a mystery woman whose secrets may undermine his soul. This incredible + version features the definitive Final Cut of Ridley Scott's legendary Sci-Fi + classic and the in-depth feature length documentary \\\"Dangerous Days\\\" and + features all new 5.1 Audio.\"}]\n}\n\n\n" + http_version: '1.1' +- !ruby/struct:VCR::HTTPInteraction + request: !ruby/struct:VCR::Request + method: :get + uri: http://ax.itunes.apple.com:80/WebObjects/MZStoreServices.woa/wa/wsSearch?media=musicVideo&term=Sabotage + body: + headers: + accept: + - application/json + user-agent: + - ITunes Ruby Gem 0.5.5 + accept-encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + response: !ruby/struct:VCR::Response + status: !ruby/struct:VCR::ResponseStatus + code: 200 + message: OK + headers: + x-apple-orig-url-path: + - /WebObjects/MZStoreServices.woa/wa/wsSearch?term=Sabotage&media=musicVideo + x-apple-translated-wo-url: + - /WebObjects/MZStoreServices.woa/wa/wsSearch?term=Sabotage&media=musicVideo + x-apple-application-site: + - NWK + x-apple-max-age: + - '3600' + content-type: + - text/javascript; charset=utf-8 + x-apple-application-instance: + - '1029002' + x-webobjects-loadaverage: + - '0' + vary: + - Accept-Encoding + - X-Apple-Store-Front + expires: + - Wed, 18 Apr 2012 22:53:38 GMT + cache-control: + - max-age=0, no-cache + pragma: + - no-cache + date: + - Wed, 18 Apr 2012 22:53:38 GMT + content-length: + - '4530' + connection: + - keep-alive + x-apple-partner: + - origin.0 + body: ! "\n\n\n{\n \"resultCount\":4,\n \"results\": [\n{\"wrapperType\":\"track\", + \"kind\":\"music-video\", \"artistId\":1971863, \"trackId\":394290559, \"artistName\":\"Beastie + Boys\", \"trackName\":\"Sabotage\", \"trackCensoredName\":\"Sabotage\", \"artistViewUrl\":\"http://itunes.apple.com/us/artist/beastie-boys/id1971863?uo=4\", + \"trackViewUrl\":\"http://itunes.apple.com/us/music-video/sabotage/id394290559?uo=4\", + \"previewUrl\":\"http://a1420.v.phobos.apple.com/us/r1000/115/Video/00/d0/37/mzi.cdphvoxt..640x480.h264lc.u.p.m4v\", + \"artworkUrl30\":\"http://a5.mzstatic.com/us/r1000/018/Video/f1/ed/a9/mzi.guaxeujq.40x30-75.jpg\", + \"artworkUrl60\":\"http://a3.mzstatic.com/us/r1000/018/Video/f1/ed/a9/mzi.guaxeujq.80x60-75.jpg\", + \"artworkUrl100\":\"http://a4.mzstatic.com/us/r1000/018/Video/f1/ed/a9/mzi.guaxeujq.100x100-75.jpg\", + \"collectionPrice\":1.99, \"trackPrice\":1.99, \"releaseDate\":\"2009-05-19T07:00:00Z\", + \"collectionExplicitness\":\"notExplicit\", \"trackExplicitness\":\"notExplicit\", + \"trackTimeMillis\":181600.0, \"country\":\"USA\", \"currency\":\"USD\", \"primaryGenreName\":\"Hip + Hop/Rap\"}, \n{\"wrapperType\":\"track\", \"kind\":\"music-video\", \"artistId\":310238369, + \"trackId\":328089666, \"artistName\":\"Kristinia DeBarge\", \"trackName\":\"Sabotage\", + \"trackCensoredName\":\"Sabotage\", \"artistViewUrl\":\"http://itunes.apple.com/us/artist/kristinia-debarge/id310238369?uo=4\", + \"trackViewUrl\":\"http://itunes.apple.com/us/music-video/sabotage/id328089666?uo=4\", + \"previewUrl\":\"http://a556.v.phobos.apple.com/us/r1000/045/Video/02/4d/e0/mzm.evunkjmt..640x320.h264lc.u.p.m4v\", + \"artworkUrl30\":\"http://a4.mzstatic.com/us/r1000/034/Video/54/4b/10/mzi.hdhqzwwg.40x30-75.jpg\", + \"artworkUrl60\":\"http://a2.mzstatic.com/us/r1000/034/Video/54/4b/10/mzi.hdhqzwwg.80x60-75.jpg\", + \"artworkUrl100\":\"http://a5.mzstatic.com/us/r1000/034/Video/54/4b/10/mzi.hdhqzwwg.100x100-75.jpg\", + \"collectionPrice\":1.99, \"trackPrice\":1.99, \"releaseDate\":\"2009-08-18T07:00:00Z\", + \"collectionExplicitness\":\"notExplicit\", \"trackExplicitness\":\"notExplicit\", + \"trackTimeMillis\":197731.0, \"country\":\"USA\", \"currency\":\"USD\", \"primaryGenreName\":\"Pop\"}, + \n{\"wrapperType\":\"track\", \"kind\":\"music-video\", \"artistId\":310238369, + \"collectionId\":345189786, \"trackId\":345190056, \"artistName\":\"Kristinia + DeBarge\", \"collectionName\":\"Exposed (Deluxe Edition)\", \"trackName\":\"Sabotage\", + \"collectionCensoredName\":\"Exposed (Deluxe Edition)\", \"trackCensoredName\":\"Sabotage + (Bonus Track)\", \"artistViewUrl\":\"http://itunes.apple.com/us/artist/kristinia-debarge/id310238369?uo=4\", + \"collectionViewUrl\":\"http://itunes.apple.com/us/music-video/sabotage-bonus-track/id345190056?uo=4\", + \"trackViewUrl\":\"http://itunes.apple.com/us/music-video/sabotage-bonus-track/id345190056?uo=4\", + \"previewUrl\":\"http://a261.v.phobos.apple.com/us/r1000/048/Video/e0/a5/ae/mzm.ekyfxsvl..640x320.h264lc.u.p.m4v\", + \"artworkUrl30\":\"http://a5.mzstatic.com/us/r1000/040/Video/54/4b/10/mzi.intpumcm.40x30-75.jpg\", + \"artworkUrl60\":\"http://a3.mzstatic.com/us/r1000/040/Video/54/4b/10/mzi.intpumcm.80x60-75.jpg\", + \"artworkUrl100\":\"http://a2.mzstatic.com/us/r1000/040/Video/54/4b/10/mzi.intpumcm.100x100-75.jpg\", + \"collectionPrice\":9.99, \"trackPrice\":1.99, \"releaseDate\":\"2009-12-15T08:00:00Z\", + \"collectionExplicitness\":\"notExplicit\", \"trackExplicitness\":\"notExplicit\", + \"discCount\":1, \"discNumber\":1, \"trackCount\":15, \"trackNumber\":15, \"trackTimeMillis\":201901.0, + \"country\":\"USA\", \"currency\":\"USD\", \"primaryGenreName\":\"Pop\"}, \n{\"wrapperType\":\"track\", + \"kind\":\"music-video\", \"artistId\":129335935, \"trackId\":514224311, \"artistName\":\"Wale\", + \"trackName\":\"Sabotage (feat. Lloyd)\", \"trackCensoredName\":\"Sabotage (feat. + Lloyd)\", \"artistViewUrl\":\"http://itunes.apple.com/us/artist/wale/id129335935?uo=4\", + \"trackViewUrl\":\"http://itunes.apple.com/us/music-video/sabotage-feat.-lloyd/id514224311?uo=4\", + \"previewUrl\":\"http://a1375.v.phobos.apple.com/us/r1000/074/Video/f6/df/4d/mzm.raxvpldc..640x364.h264lc.u.p.m4v\", + \"artworkUrl30\":\"http://a1.mzstatic.com/us/r1000/096/Video/v4/bd/a6/fa/bda6fa12-98e1-3225-4c29-8fe87910ed28/USWBV1200106.sca1.40x30-75.jpg\", + \"artworkUrl60\":\"http://a2.mzstatic.com/us/r1000/096/Video/v4/bd/a6/fa/bda6fa12-98e1-3225-4c29-8fe87910ed28/USWBV1200106.sca1.80x60-75.jpg\", + \"artworkUrl100\":\"http://a2.mzstatic.com/us/r1000/096/Video/v4/bd/a6/fa/bda6fa12-98e1-3225-4c29-8fe87910ed28/USWBV1200106.sca1.100x100-75.jpg\", + \"collectionPrice\":1.99, \"trackPrice\":1.99, \"releaseDate\":\"2012-03-21T07:00:00Z\", + \"collectionExplicitness\":\"notExplicit\", \"trackExplicitness\":\"explicit\", + \"trackTimeMillis\":294794.0, \"country\":\"USA\", \"currency\":\"USD\", \"primaryGenreName\":\"Hip + Hop/Rap\", \"contentAdvisoryRating\":\"Explicit\"}]\n}\n\n\n" + http_version: '1.1' +- !ruby/struct:VCR::HTTPInteraction + request: !ruby/struct:VCR::Request + method: :get + uri: http://ax.itunes.apple.com:80/WebObjects/MZStoreServices.woa/wa/wsSearch?media=audiobook&term=Ernest%20Hemingway + body: + headers: + accept: + - application/json + user-agent: + - ITunes Ruby Gem 0.5.5 + accept-encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + response: !ruby/struct:VCR::Response + status: !ruby/struct:VCR::ResponseStatus + code: 200 + message: OK + headers: + x-apple-orig-url-path: + - /WebObjects/MZStoreServices.woa/wa/wsSearch?term=Ernest%20Hemingway&media=audiobook + x-apple-translated-wo-url: + - /WebObjects/MZStoreServices.woa/wa/wsSearch?term=Ernest%20Hemingway&media=audiobook + x-apple-application-site: + - NWK + x-apple-max-age: + - '3600' + content-type: + - text/javascript; charset=utf-8 + x-apple-application-instance: + - '1019020' + x-webobjects-loadaverage: + - '0' + vary: + - Accept-Encoding + - X-Apple-Store-Front + expires: + - Wed, 18 Apr 2012 22:53:38 GMT + cache-control: + - max-age=0, no-cache + pragma: + - no-cache + date: + - Wed, 18 Apr 2012 22:53:38 GMT + transfer-encoding: + - chunked + connection: + - Transfer-Encoding + - keep-alive + x-apple-partner: + - origin.0 + body: ! "\n\n\n{\n \"resultCount\":42,\n \"results\": [\n{\"wrapperType\":\"audiobook\", + \"artistId\":2122513, \"collectionId\":202323080, \"artistName\":\"Ernest Hemingway\", + \"collectionName\":\"The Sun Also Rises (Unabridged) [Unabridged Fiction]\", + \"collectionCensoredName\":\"The Sun Also Rises (Unabridged) [Unabridged Fiction]\", + \"artistViewUrl\":\"http://itunes.apple.com/us/artist/ernest-hemingway/id2122513?mt=11&uo=4\", + \"collectionViewUrl\":\"http://itunes.apple.com/WebObjects/MZStore.woa/wa/viewAudiobook?id=202323080&s=143441&uo=4\", + \"artworkUrl60\":\"http://a4.mzstatic.com/us/r1000/032/Music/64/c5/53/mzi.wrpbhyvo.60x60-50.jpg\", + \"artworkUrl100\":\"http://a3.mzstatic.com/us/r1000/032/Music/64/c5/53/mzi.wrpbhyvo.100x100-75.jpg\", + \"collectionPrice\":19.95, \"collectionExplicitness\":\"notExplicit\", \"trackCount\":1, + \"copyright\":\"2003 Simon & Schuster Audio\", \"country\":\"USA\", \"currency\":\"USD\", + \"releaseDate\":\"2003-04-28T07:00:00Z\", \"primaryGenreName\":\"Audiobooks\"}, + \n{\"wrapperType\":\"audiobook\", \"artistId\":2122513, \"collectionId\":371691193, + \"artistName\":\"Ernest Hemingway\", \"collectionName\":\"The Old Man and the + Sea (Unabridged)\", \"collectionCensoredName\":\"The Old Man and the Sea (Unabridged)\", + \"artistViewUrl\":\"http://itunes.apple.com/us/artist/ernest-hemingway/id2122513?mt=11&uo=4\", + \"collectionViewUrl\":\"http://itunes.apple.com/WebObjects/MZStore.woa/wa/viewAudiobook?id=371691193&s=143441&uo=4\", + \"artworkUrl60\":\"http://a5.mzstatic.com/us/r1000/045/Music/b7/05/bb/mzi.lgdeplrz.60x60-50.jpg\", + \"artworkUrl100\":\"http://a2.mzstatic.com/us/r1000/045/Music/b7/05/bb/mzi.lgdeplrz.100x100-75.jpg\", + \"collectionPrice\":11.95, \"collectionExplicitness\":\"notExplicit\", \"trackCount\":1, + \"copyright\":\"2006 Simon & Schuster Audio\", \"country\":\"USA\", \"currency\":\"USD\", + \"releaseDate\":\"2006-05-01T07:00:00Z\", \"primaryGenreName\":\"Audiobooks\"}, + \n{\"wrapperType\":\"audiobook\", \"artistId\":2122513, \"collectionId\":371691060, + \"artistName\":\"Ernest Hemingway\", \"collectionName\":\"A Farewell to Arms + (Unabridged)\", \"collectionCensoredName\":\"A Farewell to Arms (Unabridged)\", + \"artistViewUrl\":\"http://itunes.apple.com/us/artist/ernest-hemingway/id2122513?mt=11&uo=4\", + \"collectionViewUrl\":\"http://itunes.apple.com/WebObjects/MZStore.woa/wa/viewAudiobook?id=371691060&s=143441&uo=4\", + \"artworkUrl60\":\"http://a4.mzstatic.com/us/r1000/039/Music/1c/02/93/mzi.sygejvpg.60x60-50.jpg\", + \"artworkUrl100\":\"http://a1.mzstatic.com/us/r1000/039/Music/1c/02/93/mzi.sygejvpg.100x100-75.jpg\", + \"collectionPrice\":23.95, \"collectionExplicitness\":\"notExplicit\", \"trackCount\":1, + \"copyright\":\"2006 Simon & Schuster Audio\", \"country\":\"USA\", \"currency\":\"USD\", + \"releaseDate\":\"2006-05-01T07:00:00Z\", \"primaryGenreName\":\"Audiobooks\"}, + \n{\"wrapperType\":\"audiobook\", \"artistId\":2122513, \"collectionId\":286444210, + \"artistName\":\"Ernest Hemingway\", \"collectionName\":\"Hemingway Short Stories + (Unabridged) [Unabridged Fiction]\", \"collectionCensoredName\":\"Hemingway + Short Stories (Unabridged) [Unabridged Fiction]\", \"artistViewUrl\":\"http://itunes.apple.com/us/artist/ernest-hemingway/id2122513?mt=11&uo=4\", + \"collectionViewUrl\":\"http://itunes.apple.com/WebObjects/MZStore.woa/wa/viewAudiobook?id=286444210&s=143441&uo=4\", + \"artworkUrl60\":\"http://a4.mzstatic.com/us/r1000/001/Music/8d/da/31/mzi.wrysqysb.60x60-50.jpg\", + \"artworkUrl100\":\"http://a3.mzstatic.com/us/r1000/001/Music/8d/da/31/mzi.wrysqysb.100x100-75.jpg\", + \"collectionPrice\":3.95, \"collectionExplicitness\":\"notExplicit\", \"trackCount\":1, + \"copyright\":\"2007 Listener's Digest Inc.\", \"country\":\"USA\", \"currency\":\"USD\", + \"releaseDate\":\"2007-04-01T07:00:00Z\", \"primaryGenreName\":\"Audiobooks\"}, + \n{\"wrapperType\":\"audiobook\", \"artistId\":2122513, \"collectionId\":371425813, + \"artistName\":\"Ernest Hemingway\", \"collectionName\":\"For Whom the Bell + Tolls (Unabridged)\", \"collectionCensoredName\":\"For Whom the Bell Tolls (Unabridged)\", + \"artistViewUrl\":\"http://itunes.apple.com/us/artist/ernest-hemingway/id2122513?mt=11&uo=4\", + \"collectionViewUrl\":\"http://itunes.apple.com/WebObjects/MZStore.woa/wa/viewAudiobook?id=371425813&s=143441&uo=4\", + \"artworkUrl60\":\"http://a4.mzstatic.com/us/r1000/007/Music/da/57/e9/mzi.bcydmkdr.60x60-50.jpg\", + \"artworkUrl100\":\"http://a4.mzstatic.com/us/r1000/007/Music/da/57/e9/mzi.bcydmkdr.100x100-75.jpg\", + \"collectionPrice\":29.95, \"collectionExplicitness\":\"notExplicit\", \"trackCount\":1, + \"copyright\":\"2006 Simon & Schuster Audio\", \"country\":\"USA\", \"currency\":\"USD\", + \"releaseDate\":\"2006-05-01T07:00:00Z\", \"primaryGenreName\":\"Audiobooks\"}, + \n{\"wrapperType\":\"audiobook\", \"artistId\":2122513, \"collectionId\":175126080, + \"artistName\":\"Ernest Hemingway\", \"collectionName\":\"To Have and Have Not + (Unabridged) [Unabridged Fiction]\", \"collectionCensoredName\":\"To Have and + Have Not (Unabridged) [Unabridged Fiction]\", \"artistViewUrl\":\"http://itunes.apple.com/us/artist/ernest-hemingway/id2122513?mt=11&uo=4\", + \"collectionViewUrl\":\"http://itunes.apple.com/WebObjects/MZStore.woa/wa/viewAudiobook?id=175126080&s=143441&uo=4\", + \"artworkUrl60\":\"http://a2.mzstatic.com/us/r1000/045/Music/52/ad/7a/mzi.pquctbso.60x60-50.jpg\", + \"artworkUrl100\":\"http://a3.mzstatic.com/us/r1000/045/Music/52/ad/7a/mzi.pquctbso.100x100-75.jpg\", + \"collectionPrice\":15.95, \"collectionExplicitness\":\"notExplicit\", \"trackCount\":1, + \"copyright\":\"2003 Simon & Schuster Audio\", \"country\":\"USA\", \"currency\":\"USD\", + \"releaseDate\":\"2003-04-28T07:00:00Z\", \"primaryGenreName\":\"Audiobooks\"}, + \n{\"wrapperType\":\"audiobook\", \"artistId\":2122513, \"collectionId\":323416660, + \"artistName\":\"Ernest Hemingway\", \"collectionName\":\"A Moveable Feast: + The Restored Edition (Unabridged)\", \"collectionCensoredName\":\"A Moveable + Feast: The Restored Edition (Unabridged)\", \"artistViewUrl\":\"http://itunes.apple.com/us/artist/ernest-hemingway/id2122513?mt=11&uo=4\", + \"collectionViewUrl\":\"http://itunes.apple.com/WebObjects/MZStore.woa/wa/viewAudiobook?id=323416660&s=143441&uo=4\", + \"artworkUrl60\":\"http://a3.mzstatic.com/us/r1000/050/Music/39/71/5f/mzi.vusrurxd.60x60-50.jpg\", + \"artworkUrl100\":\"http://a5.mzstatic.com/us/r1000/050/Music/39/71/5f/mzi.vusrurxd.100x100-75.jpg\", + \"collectionPrice\":17.95, \"collectionExplicitness\":\"notExplicit\", \"trackCount\":1, + \"copyright\":\"2009 Simon & Schuster Audio\", \"country\":\"USA\", \"currency\":\"USD\", + \"releaseDate\":\"2009-07-14T07:00:00Z\", \"primaryGenreName\":\"Audiobooks\"}, + \n{\"wrapperType\":\"audiobook\", \"artistId\":2122513, \"collectionId\":357710921, + \"artistName\":\"Ernest Hemingway\", \"collectionName\":\"A Moveable Feast (Unabridged)\", + \"collectionCensoredName\":\"A Moveable Feast (Unabridged)\", \"artistViewUrl\":\"http://itunes.apple.com/us/artist/ernest-hemingway/id2122513?mt=11&uo=4\", + \"collectionViewUrl\":\"http://itunes.apple.com/WebObjects/MZStore.woa/wa/viewAudiobook?id=357710921&s=143441&uo=4\", + \"artworkUrl60\":\"http://a3.mzstatic.com/us/r1000/047/Music/61/ba/42/mzi.cqubegty.60x60-50.jpg\", + \"artworkUrl100\":\"http://a4.mzstatic.com/us/r1000/047/Music/61/ba/42/mzi.cqubegty.100x100-75.jpg\", + \"collectionPrice\":17.95, \"collectionExplicitness\":\"notExplicit\", \"trackCount\":1, + \"copyright\":\"2006 Simon & Schuster Audio\", \"country\":\"USA\", \"currency\":\"USD\", + \"releaseDate\":\"2006-06-01T07:00:00Z\", \"primaryGenreName\":\"Audiobooks\"}, + \n{\"wrapperType\":\"audiobook\", \"artistId\":2122513, \"collectionId\":166789619, + \"artistName\":\"Ernest Hemingway\", \"collectionName\":\"Islands In the Stream + (Unabridged) [Unabridged Fiction]\", \"collectionCensoredName\":\"Islands In + the Stream (Unabridged) [Unabridged Fiction]\", \"artistViewUrl\":\"http://itunes.apple.com/us/artist/ernest-hemingway/id2122513?mt=11&uo=4\", + \"collectionViewUrl\":\"http://itunes.apple.com/WebObjects/MZStore.woa/wa/viewAudiobook?id=166789619&s=143441&uo=4\", + \"artworkUrl60\":\"http://a3.mzstatic.com/us/r1000/013/Music/25/42/a6/mzi.vzrbcewp.60x60-50.jpg\", + \"artworkUrl100\":\"http://a4.mzstatic.com/us/r1000/013/Music/25/42/a6/mzi.vzrbcewp.100x100-75.jpg\", + \"collectionPrice\":26.95, \"collectionExplicitness\":\"notExplicit\", \"trackCount\":1, + \"copyright\":\"2003 Simon & Schuster Audio\", \"country\":\"USA\", \"currency\":\"USD\", + \"releaseDate\":\"2003-04-28T07:00:00Z\", \"primaryGenreName\":\"Audiobooks\"}, + \n{\"wrapperType\":\"audiobook\", \"artistId\":2122513, \"collectionId\":320476914, + \"artistName\":\"Ernest Hemingway\", \"collectionName\":\"The Short Stories, + Volume I (Unabridged)\", \"collectionCensoredName\":\"The Short Stories, Volume + I (Unabridged)\", \"artistViewUrl\":\"http://itunes.apple.com/us/artist/ernest-hemingway/id2122513?mt=11&uo=4\", + \"collectionViewUrl\":\"http://itunes.apple.com/WebObjects/MZStore.woa/wa/viewAudiobook?id=320476914&s=143441&uo=4\", + \"artworkUrl60\":\"http://a5.mzstatic.com/us/r1000/015/Music/8f/9c/8b/mzi.qxxmrsnm.60x60-50.jpg\", + \"artworkUrl100\":\"http://a3.mzstatic.com/us/r1000/015/Music/8f/9c/8b/mzi.qxxmrsnm.100x100-75.jpg\", + \"collectionPrice\":16.95, \"collectionExplicitness\":\"notExplicit\", \"trackCount\":1, + \"copyright\":\"2002 Simon & Schuster Audio\", \"country\":\"USA\", \"currency\":\"USD\", + \"releaseDate\":\"2002-11-15T08:00:00Z\", \"primaryGenreName\":\"Audiobooks\"}, + \n{\"wrapperType\":\"audiobook\", \"artistId\":2122513, \"collectionId\":285352764, + \"artistName\":\"Ernest Hemingway\", \"collectionName\":\"The Snows of Kilimanjaro + and Other Stories (Abridged Fiction)\", \"collectionCensoredName\":\"The Snows + of Kilimanjaro and Other Stories (Abridged Fiction)\", \"artistViewUrl\":\"http://itunes.apple.com/us/artist/ernest-hemingway/id2122513?mt=11&uo=4\", + \"collectionViewUrl\":\"http://itunes.apple.com/WebObjects/MZStore.woa/wa/viewAudiobook?id=285352764&s=143441&uo=4\", + \"artworkUrl60\":\"http://a5.mzstatic.com/us/r1000/041/Music/5e/e9/40/mzi.fefelctt.60x60-50.jpg\", + \"artworkUrl100\":\"http://a3.mzstatic.com/us/r1000/041/Music/5e/e9/40/mzi.fefelctt.100x100-75.jpg\", + \"collectionPrice\":17.95, \"collectionExplicitness\":\"notExplicit\", \"trackCount\":1, + \"copyright\":\"2008 Simon & Schuster Audio\", \"country\":\"USA\", \"currency\":\"USD\", + \"releaseDate\":\"2008-03-08T08:00:00Z\", \"primaryGenreName\":\"Audiobooks\"}, + \n{\"wrapperType\":\"audiobook\", \"artistId\":2122513, \"collectionId\":275710993, + \"artistName\":\"Ernest Hemingway\", \"collectionName\":\"The Short Stories, + Volume III (Unabridged) [Unabridged Fiction]\", \"collectionCensoredName\":\"The + Short Stories, Volume III (Unabridged) [Unabridged Fiction]\", \"artistViewUrl\":\"http://itunes.apple.com/us/artist/ernest-hemingway/id2122513?mt=11&uo=4\", + \"collectionViewUrl\":\"http://itunes.apple.com/WebObjects/MZStore.woa/wa/viewAudiobook?id=275710993&s=143441&uo=4\", + \"artworkUrl60\":\"http://a4.mzstatic.com/us/r1000/031/Music/5c/e8/ac/mzi.tragznfg.60x60-50.jpg\", + \"artworkUrl100\":\"http://a4.mzstatic.com/us/r1000/031/Music/5c/e8/ac/mzi.tragznfg.100x100-75.jpg\", + \"collectionPrice\":17.95, \"collectionExplicitness\":\"notExplicit\", \"trackCount\":1, + \"copyright\":\"2006 Simon & Schuster Audio\", \"country\":\"USA\", \"currency\":\"USD\", + \"releaseDate\":\"2006-05-01T07:00:00Z\", \"primaryGenreName\":\"Audiobooks\"}, + \n{\"wrapperType\":\"audiobook\", \"artistId\":2122513, \"collectionId\":358367069, + \"artistName\":\"Ernest Hemingway\", \"collectionName\":\"The Short Stories, + Volume II (Unabridged)\", \"collectionCensoredName\":\"The Short Stories, Volume + II (Unabridged)\", \"artistViewUrl\":\"http://itunes.apple.com/us/artist/ernest-hemingway/id2122513?mt=11&uo=4\", + \"collectionViewUrl\":\"http://itunes.apple.com/WebObjects/MZStore.woa/wa/viewAudiobook?id=358367069&s=143441&uo=4\", + \"artworkUrl60\":\"http://a2.mzstatic.com/us/r1000/044/Music/0e/06/22/mzi.okkcepvr.60x60-50.jpg\", + \"artworkUrl100\":\"http://a5.mzstatic.com/us/r1000/044/Music/0e/06/22/mzi.okkcepvr.100x100-75.jpg\", + \"collectionPrice\":16.95, \"collectionExplicitness\":\"notExplicit\", \"trackCount\":1, + \"copyright\":\"2003 Simon & Schuster Audio\", \"country\":\"USA\", \"currency\":\"USD\", + \"releaseDate\":\"2003-12-19T08:00:00Z\", \"primaryGenreName\":\"Audiobooks\"}, + \n{\"wrapperType\":\"audiobook\", \"artistId\":2122513, \"collectionId\":362763865, + \"artistName\":\"Ernest Hemingway\", \"collectionName\":\"Green Hills of Africa + (Unabridged)\", \"collectionCensoredName\":\"Green Hills of Africa (Unabridged)\", + \"artistViewUrl\":\"http://itunes.apple.com/us/artist/ernest-hemingway/id2122513?mt=11&uo=4\", + \"collectionViewUrl\":\"http://itunes.apple.com/WebObjects/MZStore.woa/wa/viewAudiobook?id=362763865&s=143441&uo=4\", + \"artworkUrl60\":\"http://a4.mzstatic.com/us/r1000/023/Music/e0/81/ca/mzi.eldmlzei.60x60-50.jpg\", + \"artworkUrl100\":\"http://a4.mzstatic.com/us/r1000/023/Music/e0/81/ca/mzi.eldmlzei.100x100-75.jpg\", + \"collectionPrice\":17.95, \"collectionExplicitness\":\"notExplicit\", \"trackCount\":1, + \"copyright\":\"2006 Simon & Schuster Audio\", \"country\":\"USA\", \"currency\":\"USD\", + \"releaseDate\":\"2006-12-05T08:00:00Z\", \"primaryGenreName\":\"Audiobooks\"}, + \n{\"wrapperType\":\"audiobook\", \"artistId\":2122513, \"collectionId\":305785741, + \"artistName\":\"Ernest Hemingway\", \"collectionName\":\"For Whom the Bell + Tolls: Retro Audio (Dramatised): Retro Audio\", \"collectionCensoredName\":\"For + Whom the Bell Tolls: Retro Audio (Dramatised): Retro Audio\", \"artistViewUrl\":\"http://itunes.apple.com/us/artist/ernest-hemingway/id2122513?mt=11&uo=4\", + \"collectionViewUrl\":\"http://itunes.apple.com/WebObjects/MZStore.woa/wa/viewAudiobook?id=305785741&s=143441&uo=4\", + \"artworkUrl60\":\"http://a3.mzstatic.com/us/r1000/039/Music/10/24/b8/mzi.typspyuu.60x60-50.jpg\", + \"artworkUrl100\":\"http://a4.mzstatic.com/us/r1000/039/Music/10/24/b8/mzi.typspyuu.100x100-75.jpg\", + \"collectionPrice\":6.95, \"collectionExplicitness\":\"notExplicit\", \"trackCount\":1, + \"copyright\":\"2009 Entain 8: Retro and Blakes7\", \"country\":\"USA\", \"currency\":\"USD\", + \"releaseDate\":\"2009-02-16T08:00:00Z\", \"primaryGenreName\":\"Audiobooks\"}, + \n{\"wrapperType\":\"audiobook\", \"artistId\":2122513, \"collectionId\":281744539, + \"artistName\":\"Ernest Hemingway\", \"collectionName\":\"In Our Time (Abridged + \ Fiction)\", \"collectionCensoredName\":\"In Our Time (Abridged Fiction)\", + \"artistViewUrl\":\"http://itunes.apple.com/us/artist/ernest-hemingway/id2122513?mt=11&uo=4\", + \"collectionViewUrl\":\"http://itunes.apple.com/WebObjects/MZStore.woa/wa/viewAudiobook?id=281744539&s=143441&uo=4\", + \"artworkUrl60\":\"http://a5.mzstatic.com/us/r1000/045/Music/4e/c5/45/mzi.yfwmawka.60x60-50.jpg\", + \"artworkUrl100\":\"http://a5.mzstatic.com/us/r1000/045/Music/4e/c5/45/mzi.yfwmawka.100x100-75.jpg\", + \"collectionPrice\":15.95, \"collectionExplicitness\":\"notExplicit\", \"trackCount\":1, + \"copyright\":\"2008 Simon & Schuster Audio\", \"country\":\"USA\", \"currency\":\"USD\", + \"releaseDate\":\"2008-05-01T07:00:00Z\", \"primaryGenreName\":\"Audiobooks\"}, + \n{\"wrapperType\":\"audiobook\", \"artistId\":2122513, \"collectionId\":364236334, + \"artistName\":\"Ernest Hemingway\", \"collectionName\":\"The Nick Adams Stories + (Unabridged)\", \"collectionCensoredName\":\"The Nick Adams Stories (Unabridged)\", + \"artistViewUrl\":\"http://itunes.apple.com/us/artist/ernest-hemingway/id2122513?mt=11&uo=4\", + \"collectionViewUrl\":\"http://itunes.apple.com/WebObjects/MZStore.woa/wa/viewAudiobook?id=364236334&s=143441&uo=4\", + \"artworkUrl60\":\"http://a2.mzstatic.com/us/r1000/027/Music/8a/eb/d7/mzi.ddkyubgm.60x60-50.jpg\", + \"artworkUrl100\":\"http://a3.mzstatic.com/us/r1000/027/Music/8a/eb/d7/mzi.ddkyubgm.100x100-75.jpg\", + \"collectionPrice\":17.95, \"collectionExplicitness\":\"notExplicit\", \"trackCount\":1, + \"copyright\":\"2007 Simon & Schuster Audio\", \"country\":\"USA\", \"currency\":\"USD\", + \"releaseDate\":\"2007-06-12T07:00:00Z\", \"primaryGenreName\":\"Audiobooks\"}, + \n{\"wrapperType\":\"audiobook\", \"artistId\":2122513, \"collectionId\":213481375, + \"artistName\":\"Ernest Hemingway\", \"collectionName\":\"True At First Light: + A Fictional Memoir (Unabridged) [Unabridged Fiction]\", \"collectionCensoredName\":\"True + At First Light: A Fictional Memoir (Unabridged) [Unabridged Fiction]\", \"artistViewUrl\":\"http://itunes.apple.com/us/artist/ernest-hemingway/id2122513?mt=11&uo=4\", + \"collectionViewUrl\":\"http://itunes.apple.com/WebObjects/MZStore.woa/wa/viewAudiobook?id=213481375&s=143441&uo=4\", + \"artworkUrl60\":\"http://a5.mzstatic.com/us/r1000/034/Music/0f/7c/3d/mzi.sbtqgpuz.60x60-50.jpg\", + \"artworkUrl100\":\"http://a4.mzstatic.com/us/r1000/034/Music/0f/7c/3d/mzi.sbtqgpuz.100x100-75.jpg\", + \"collectionPrice\":20.95, \"collectionExplicitness\":\"notExplicit\", \"trackCount\":1, + \"copyright\":\"2003 Simon & Schuster Audio\", \"country\":\"USA\", \"currency\":\"USD\", + \"releaseDate\":\"2003-04-28T07:00:00Z\", \"primaryGenreName\":\"Audiobooks\"}, + \n{\"wrapperType\":\"audiobook\", \"artistId\":2122513, \"collectionId\":285352940, + \"artistName\":\"Ernest Hemingway\", \"collectionName\":\"Men Without Women + (Abridged Fiction)\", \"collectionCensoredName\":\"Men Without Women (Abridged + \ Fiction)\", \"artistViewUrl\":\"http://itunes.apple.com/us/artist/ernest-hemingway/id2122513?mt=11&uo=4\", + \"collectionViewUrl\":\"http://itunes.apple.com/WebObjects/MZStore.woa/wa/viewAudiobook?id=285352940&s=143441&uo=4\", + \"artworkUrl60\":\"http://a1.mzstatic.com/us/r1000/058/Music/27/30/49/mzi.aphtftnv.60x60-50.jpg\", + \"artworkUrl100\":\"http://a2.mzstatic.com/us/r1000/058/Music/27/30/49/mzi.aphtftnv.100x100-75.jpg\", + \"collectionPrice\":15.95, \"collectionExplicitness\":\"notExplicit\", \"trackCount\":1, + \"copyright\":\"2008 Simon & Schuster Audio\", \"country\":\"USA\", \"currency\":\"USD\", + \"releaseDate\":\"2008-04-08T07:00:00Z\", \"primaryGenreName\":\"Audiobooks\"}, + \n{\"wrapperType\":\"audiobook\", \"artistId\":2122513, \"collectionId\":356410196, + \"artistName\":\"Ernest Hemingway\", \"collectionName\":\"The Garden of Eden + (Unabridged)\", \"collectionCensoredName\":\"The Garden of Eden (Unabridged)\", + \"artistViewUrl\":\"http://itunes.apple.com/us/artist/ernest-hemingway/id2122513?mt=11&uo=4\", + \"collectionViewUrl\":\"http://itunes.apple.com/WebObjects/MZStore.woa/wa/viewAudiobook?id=356410196&s=143441&uo=4\", + \"artworkUrl60\":\"http://a5.mzstatic.com/us/r1000/005/Music/fd/f5/69/mzi.oeakzfej.60x60-50.jpg\", + \"artworkUrl100\":\"http://a3.mzstatic.com/us/r1000/005/Music/fd/f5/69/mzi.oeakzfej.100x100-75.jpg\", + \"collectionPrice\":17.95, \"collectionExplicitness\":\"explicit\", \"trackCount\":1, + \"copyright\":\"2006 Simon & Schuster Audio\", \"country\":\"USA\", \"currency\":\"USD\", + \"releaseDate\":\"2006-10-31T08:00:00Z\", \"primaryGenreName\":\"Audiobooks\"}, + \n{\"wrapperType\":\"audiobook\", \"artistId\":2122513, \"collectionId\":256425746, + \"artistName\":\"Ernest Hemingway\", \"collectionName\":\"By-Line Ernest Hemingway: + Selected Articles and Dispatches of Four Decades (Abridged Nonfiction)\", \"collectionCensoredName\":\"By-Line + Ernest Hemingway: Selected Articles and Dispatches of Four Decades (Abridged + Nonfiction)\", \"artistViewUrl\":\"http://itunes.apple.com/us/artist/ernest-hemingway/id2122513?mt=11&uo=4\", + \"collectionViewUrl\":\"http://itunes.apple.com/WebObjects/MZStore.woa/wa/viewAudiobook?id=256425746&s=143441&uo=4\", + \"artworkUrl60\":\"http://a2.mzstatic.com/us/r1000/054/Music/50/f7/b5/mzi.mbyfytpi.60x60-50.jpg\", + \"artworkUrl100\":\"http://a4.mzstatic.com/us/r1000/054/Music/50/f7/b5/mzi.mbyfytpi.100x100-75.jpg\", + \"collectionPrice\":26.95, \"collectionExplicitness\":\"notExplicit\", \"trackCount\":1, + \"copyright\":\"2003 Simon & Schuster Audio\", \"country\":\"USA\", \"currency\":\"USD\", + \"releaseDate\":\"2003-04-28T07:00:00Z\", \"primaryGenreName\":\"Audiobooks\"}, + \n{\"wrapperType\":\"audiobook\", \"artistId\":2122513, \"collectionId\":355192063, + \"artistName\":\"Ernest Hemingway\", \"collectionName\":\"Death in the Afternoon + (Unabridged)\", \"collectionCensoredName\":\"Death in the Afternoon (Unabridged)\", + \"artistViewUrl\":\"http://itunes.apple.com/us/artist/ernest-hemingway/id2122513?mt=11&uo=4\", + \"collectionViewUrl\":\"http://itunes.apple.com/WebObjects/MZStore.woa/wa/viewAudiobook?id=355192063&s=143441&uo=4\", + \"artworkUrl60\":\"http://a4.mzstatic.com/us/r1000/033/Music/9b/3b/54/mzi.ayrmtlyi.60x60-50.jpg\", + \"artworkUrl100\":\"http://a3.mzstatic.com/us/r1000/033/Music/9b/3b/54/mzi.ayrmtlyi.100x100-75.jpg\", + \"collectionPrice\":23.95, \"collectionExplicitness\":\"notExplicit\", \"trackCount\":1, + \"copyright\":\"2007 Simon & Schuster Audio\", \"country\":\"USA\", \"currency\":\"USD\", + \"releaseDate\":\"2007-01-02T08:00:00Z\", \"primaryGenreName\":\"Audiobooks\"}, + \n{\"wrapperType\":\"audiobook\", \"artistId\":2122513, \"collectionId\":381374862, + \"artistName\":\"Ernest Hemingway\", \"collectionName\":\"Adios a Las Armas + [Farewell to Arms]\", \"collectionCensoredName\":\"Adios a Las Armas [Farewell + to Arms]\", \"artistViewUrl\":\"http://itunes.apple.com/us/artist/ernest-hemingway/id2122513?mt=11&uo=4\", + \"collectionViewUrl\":\"http://itunes.apple.com/WebObjects/MZStore.woa/wa/viewAudiobook?id=381374862&s=143441&uo=4\", + \"artworkUrl60\":\"http://a1.mzstatic.com/us/r1000/039/Music/32/39/c9/mzi.ulnshmtg.60x60-50.jpg\", + \"artworkUrl100\":\"http://a1.mzstatic.com/us/r1000/039/Music/32/39/c9/mzi.ulnshmtg.100x100-75.jpg\", + \"collectionPrice\":3.95, \"collectionExplicitness\":\"notExplicit\", \"trackCount\":1, + \"copyright\":\"2006 Yoyo USA, Inc\", \"country\":\"USA\", \"currency\":\"USD\", + \"releaseDate\":\"2006-04-12T07:00:00Z\", \"primaryGenreName\":\"Audiobooks\"}, + \n{\"wrapperType\":\"audiobook\", \"artistId\":2122513, \"collectionId\":364235362, + \"artistName\":\"Ernest Hemingway\", \"collectionName\":\"Across the River and + Into the Trees (Unabridged)\", \"collectionCensoredName\":\"Across the River + and Into the Trees (Unabridged)\", \"artistViewUrl\":\"http://itunes.apple.com/us/artist/ernest-hemingway/id2122513?mt=11&uo=4\", + \"collectionViewUrl\":\"http://itunes.apple.com/WebObjects/MZStore.woa/wa/viewAudiobook?id=364235362&s=143441&uo=4\", + \"artworkUrl60\":\"http://a5.mzstatic.com/us/r1000/014/Music/fd/ab/84/mzi.gixnpmtd.60x60-50.jpg\", + \"artworkUrl100\":\"http://a2.mzstatic.com/us/r1000/014/Music/fd/ab/84/mzi.gixnpmtd.100x100-75.jpg\", + \"collectionPrice\":17.95, \"collectionExplicitness\":\"notExplicit\", \"trackCount\":1, + \"copyright\":\"2006 Simon & Schuster Audio\", \"country\":\"USA\", \"currency\":\"USD\", + \"releaseDate\":\"2006-08-24T07:00:00Z\", \"primaryGenreName\":\"Audiobooks\"}, + \n{\"wrapperType\":\"audiobook\", \"artistId\":2122513, \"collectionId\":407602218, + \"artistName\":\"Ernest Hemingway\", \"collectionName\":\"Death in the Afternoon + (Unabridged)\", \"collectionCensoredName\":\"Death in the Afternoon (Unabridged)\", + \"artistViewUrl\":\"http://itunes.apple.com/us/artist/ernest-hemingway/id2122513?mt=11&uo=4\", + \"collectionViewUrl\":\"http://itunes.apple.com/WebObjects/MZStore.woa/wa/viewAudiobook?id=407602218&s=143441&uo=4\", + \"artworkUrl60\":\"http://a1.mzstatic.com/us/r1000/006/Music/65/11/02/mzi.nvaxweld.60x60-50.jpg\", + \"artworkUrl100\":\"http://a4.mzstatic.com/us/r1000/006/Music/65/11/02/mzi.nvaxweld.100x100-75.jpg\", + \"collectionPrice\":23.95, \"collectionExplicitness\":\"notExplicit\", \"trackCount\":1, + \"copyright\":\"2010 Simon & Schuster Audio\", \"country\":\"USA\", \"currency\":\"USD\", + \"releaseDate\":\"2010-11-17T08:00:00Z\", \"primaryGenreName\":\"Audiobooks\"}, + \n{\"wrapperType\":\"audiobook\", \"artistId\":2122513, \"collectionId\":328602875, + \"artistName\":\"Ernest Hemingway\", \"collectionName\":\"Winner Take Nothing\", + \"collectionCensoredName\":\"Winner Take Nothing\", \"artistViewUrl\":\"http://itunes.apple.com/us/artist/ernest-hemingway/id2122513?mt=11&uo=4\", + \"collectionViewUrl\":\"http://itunes.apple.com/WebObjects/MZStore.woa/wa/viewAudiobook?id=328602875&s=143441&uo=4\", + \"artworkUrl60\":\"http://a2.mzstatic.com/us/r1000/045/Music/8c/f5/76/mzi.cdotnxpj.60x60-50.jpg\", + \"artworkUrl100\":\"http://a5.mzstatic.com/us/r1000/045/Music/8c/f5/76/mzi.cdotnxpj.100x100-75.jpg\", + \"collectionPrice\":15.95, \"collectionExplicitness\":\"notExplicit\", \"trackCount\":1, + \"copyright\":\"2008 Simon & Schuster Audio\", \"country\":\"USA\", \"currency\":\"USD\", + \"releaseDate\":\"2008-04-08T07:00:00Z\", \"primaryGenreName\":\"Audiobooks\"}, + \n{\"wrapperType\":\"audiobook\", \"artistId\":354101279, \"collectionId\":354101249, + \"artistName\":\"The New Yorker\", \"collectionName\":\"The New Yorker, February + 8, 2010 (Patrick Radden Keefe, John McPhee, Paul Goldberger)\", \"collectionCensoredName\":\"The + New Yorker, February 8, 2010 (Patrick Radden Keefe, John McPhee, Paul Goldberger)\", + \"artistViewUrl\":\"http://itunes.apple.com/us/artist/the-new-yorker/id354101279?uo=4\", + \"collectionViewUrl\":\"http://itunes.apple.com/WebObjects/MZStore.woa/wa/viewAudiobook?id=354101249&s=143441&uo=4\", + \"artworkUrl60\":\"http://a3.mzstatic.com/us/r1000/003/Music/ee/26/da/mzi.hnqhwaet.60x60-50.jpg\", + \"artworkUrl100\":\"http://a4.mzstatic.com/us/r1000/003/Music/ee/26/da/mzi.hnqhwaet.100x100-75.jpg\", + \"collectionPrice\":6.95, \"collectionExplicitness\":\"notExplicit\", \"trackCount\":1, + \"copyright\":\"2010 The New Yorker\", \"country\":\"USA\", \"currency\":\"USD\", + \"releaseDate\":\"2010-02-03T08:00:00Z\", \"primaryGenreName\":\"Audiobooks\"}, + \n{\"wrapperType\":\"audiobook\", \"artistId\":320801480, \"collectionId\":320801467, + \"artistName\":\"Catherine Reef\", \"collectionName\":\"Ernest Hemingway: A + Writer's Life (Unabridged)\", \"collectionCensoredName\":\"Ernest Hemingway: + A Writer's Life (Unabridged)\", \"artistViewUrl\":\"http://itunes.apple.com/us/artist/catherine-reef/id320801480?uo=4\", + \"collectionViewUrl\":\"http://itunes.apple.com/WebObjects/MZStore.woa/wa/viewAudiobook?id=320801467&s=143441&uo=4\", + \"artworkUrl60\":\"http://a4.mzstatic.com/us/r1000/035/Music/5c/94/24/mzi.ujaytdci.60x60-50.jpg\", + \"artworkUrl100\":\"http://a5.mzstatic.com/us/r1000/035/Music/5c/94/24/mzi.ujaytdci.100x100-75.jpg\", + \"collectionPrice\":10.95, \"collectionExplicitness\":\"notExplicit\", \"trackCount\":1, + \"copyright\":\"2009 Oasis Audio\", \"country\":\"USA\", \"currency\":\"USD\", + \"releaseDate\":\"2009-07-22T07:00:00Z\", \"primaryGenreName\":\"Audiobooks\"}, + \n{\"wrapperType\":\"audiobook\", \"artistId\":40784606, \"collectionId\":364186718, + \"artistName\":\"Winston Conrad\", \"collectionName\":\"Hemingway's France: + Images of the Lost Generation (Unabridged)\", \"collectionCensoredName\":\"Hemingway's + France: Images of the Lost Generation (Unabridged)\", \"artistViewUrl\":\"http://itunes.apple.com/us/artist/winston-conrad/id40784606?uo=4\", + \"collectionViewUrl\":\"http://itunes.apple.com/WebObjects/MZStore.woa/wa/viewAudiobook?id=364186718&s=143441&uo=4\", + \"artworkUrl60\":\"http://a5.mzstatic.com/us/r1000/052/Music/5e/8d/8a/mzi.oztveoip.60x60-50.jpg\", + \"artworkUrl100\":\"http://a3.mzstatic.com/us/r1000/052/Music/5e/8d/8a/mzi.oztveoip.100x100-75.jpg\", + \"collectionPrice\":9.95, \"collectionExplicitness\":\"notExplicit\", \"trackCount\":1, + \"copyright\":\"2004 Blackstone Audiobooks\", \"country\":\"USA\", \"currency\":\"USD\", + \"releaseDate\":\"2004-12-31T08:00:00Z\", \"primaryGenreName\":\"Audiobooks\"}, + \n{\"wrapperType\":\"audiobook\", \"artistId\":2122513, \"collectionId\":359270850, + \"artistName\":\"Ernest Hemingway\", \"collectionName\":\"Den gamle mand og + havet [The Old Man and the Sea] (Unabridged)\", \"collectionCensoredName\":\"Den + gamle mand og havet [The Old Man and the Sea] (Unabridged)\", \"artistViewUrl\":\"http://itunes.apple.com/us/artist/ernest-hemingway/id2122513?mt=11&uo=4\", + \"collectionViewUrl\":\"http://itunes.apple.com/WebObjects/MZStore.woa/wa/viewAudiobook?id=359270850&s=143441&uo=4\", + \"artworkUrl60\":\"http://a5.mzstatic.com/us/r1000/012/Music/8a/7e/ef/mzi.sfqmhqkn.60x60-50.jpg\", + \"artworkUrl100\":\"http://a5.mzstatic.com/us/r1000/012/Music/8a/7e/ef/mzi.sfqmhqkn.100x100-75.jpg\", + \"collectionPrice\":17.95, \"collectionExplicitness\":\"notExplicit\", \"trackCount\":1, + \"copyright\":\"2010 Viatone\", \"country\":\"USA\", \"currency\":\"USD\", \"releaseDate\":\"2010-03-01T08:00:00Z\", + \"primaryGenreName\":\"Audiobooks\"}, \n{\"wrapperType\":\"audiobook\", \"artistId\":81501406, + \"collectionId\":353414760, \"artistName\":\"Robert Murray\", \"collectionName\":\"A + Study Guide to Ernest Hemingway's the Sun Also Rises\", \"collectionCensoredName\":\"A + Study Guide to Ernest Hemingway's the Sun Also Rises\", \"artistViewUrl\":\"http://itunes.apple.com/us/artist/robert-murray/id81501406?mt=11&uo=4\", + \"collectionViewUrl\":\"http://itunes.apple.com/WebObjects/MZStore.woa/wa/viewAudiobook?id=353414760&s=143441&uo=4\", + \"artworkUrl60\":\"http://a2.mzstatic.com/us/r1000/012/Music/58/5b/1f/mzi.mueffnsa.60x60-50.jpg\", + \"artworkUrl100\":\"http://a1.mzstatic.com/us/r1000/012/Music/58/5b/1f/mzi.mueffnsa.100x100-75.jpg\", + \"collectionPrice\":5.95, \"collectionExplicitness\":\"notExplicit\", \"trackCount\":1, + \"copyright\":\"1997 Hachette Audio\", \"country\":\"USA\", \"currency\":\"USD\", + \"releaseDate\":\"1997-02-14T08:00:00Z\", \"primaryGenreName\":\"Audiobooks\"}, + \n{\"wrapperType\":\"audiobook\", \"artistId\":7370232, \"collectionId\":367864634, + \"artistName\":\"Stuart M. Kaminsky\", \"collectionName\":\"High Midnight (Unabridged)\", + \"collectionCensoredName\":\"High Midnight (Unabridged)\", \"artistViewUrl\":\"http://itunes.apple.com/us/artist/stuart-m.-kaminsky/id7370232?mt=11&uo=4\", + \"collectionViewUrl\":\"http://itunes.apple.com/WebObjects/MZStore.woa/wa/viewAudiobook?id=367864634&s=143441&uo=4\", + \"artworkUrl60\":\"http://a4.mzstatic.com/us/r1000/044/Music/23/93/73/mzi.aclpfqwm.60x60-50.jpg\", + \"artworkUrl100\":\"http://a4.mzstatic.com/us/r1000/044/Music/23/93/73/mzi.aclpfqwm.100x100-75.jpg\", + \"collectionPrice\":11.95, \"collectionExplicitness\":\"notExplicit\", \"trackCount\":1, + \"copyright\":\"2006 Blackstone Audio, Inc.\", \"country\":\"USA\", \"currency\":\"USD\", + \"releaseDate\":\"2006-03-23T08:00:00Z\", \"primaryGenreName\":\"Audiobooks\"}, + \n{\"wrapperType\":\"audiobook\", \"artistId\":2122513, \"collectionId\":397563313, + \"artistName\":\"Ernest Hemingway\", \"collectionName\":\"Der er ingen ende + på Paris [There Is No End in Paris] (Unabridged)\", \"collectionCensoredName\":\"Der + er ingen ende på Paris [There Is No End in Paris] (Unabridged)\", \"artistViewUrl\":\"http://itunes.apple.com/us/artist/ernest-hemingway/id2122513?mt=11&uo=4\", + \"collectionViewUrl\":\"http://itunes.apple.com/WebObjects/MZStore.woa/wa/viewAudiobook?id=397563313&s=143441&uo=4\", + \"artworkUrl60\":\"http://a1.mzstatic.com/us/r1000/016/Music/58/a5/9c/mzi.wxmofflh.60x60-50.jpg\", + \"artworkUrl100\":\"http://a5.mzstatic.com/us/r1000/016/Music/58/a5/9c/mzi.wxmofflh.100x100-75.jpg\", + \"collectionPrice\":21.95, \"collectionExplicitness\":\"notExplicit\", \"trackCount\":1, + \"copyright\":\"2010 Viatone\", \"country\":\"USA\", \"currency\":\"USD\", \"releaseDate\":\"2010-10-07T07:00:00Z\", + \"primaryGenreName\":\"Audiobooks\"}, \n{\"wrapperType\":\"audiobook\", \"artistId\":2122513, + \"collectionId\":359553423, \"artistName\":\"Ernest Hemingway\", \"collectionName\":\"Hvem + ringer klokkerne for [For Whom the Bell Tolls] (Unabridged)\", \"collectionCensoredName\":\"Hvem + ringer klokkerne for [For Whom the Bell Tolls] (Unabridged)\", \"artistViewUrl\":\"http://itunes.apple.com/us/artist/ernest-hemingway/id2122513?mt=11&uo=4\", + \"collectionViewUrl\":\"http://itunes.apple.com/WebObjects/MZStore.woa/wa/viewAudiobook?id=359553423&s=143441&uo=4\", + \"artworkUrl60\":\"http://a1.mzstatic.com/us/r1000/052/Music/36/e7/a8/mzi.wvyhggsl.60x60-50.jpg\", + \"artworkUrl100\":\"http://a5.mzstatic.com/us/r1000/052/Music/36/e7/a8/mzi.wvyhggsl.100x100-75.jpg\", + \"collectionPrice\":33.95, \"collectionExplicitness\":\"notExplicit\", \"trackCount\":1, + \"copyright\":\"2010 Viatone\", \"country\":\"USA\", \"currency\":\"USD\", \"releaseDate\":\"2010-03-01T08:00:00Z\", + \"primaryGenreName\":\"Audiobooks\"}, \n{\"wrapperType\":\"audiobook\", \"artistId\":2122513, + \"collectionId\":359269728, \"artistName\":\"Ernest Hemingway\", \"collectionName\":\"Solen + går sin gang [The Sun Also Rises] (Unabridged)\", \"collectionCensoredName\":\"Solen + går sin gang [The Sun Also Rises] (Unabridged)\", \"artistViewUrl\":\"http://itunes.apple.com/us/artist/ernest-hemingway/id2122513?mt=11&uo=4\", + \"collectionViewUrl\":\"http://itunes.apple.com/WebObjects/MZStore.woa/wa/viewAudiobook?id=359269728&s=143441&uo=4\", + \"artworkUrl60\":\"http://a1.mzstatic.com/us/r1000/043/Music/d2/f9/87/mzi.lbcfmvfv.60x60-50.jpg\", + \"artworkUrl100\":\"http://a1.mzstatic.com/us/r1000/043/Music/d2/f9/87/mzi.lbcfmvfv.100x100-75.jpg\", + \"collectionPrice\":22.95, \"collectionExplicitness\":\"notExplicit\", \"trackCount\":1, + \"copyright\":\"2010 Viatone\", \"country\":\"USA\", \"currency\":\"USD\", \"releaseDate\":\"2010-03-01T08:00:00Z\", + \"primaryGenreName\":\"Audiobooks\"}, \n{\"wrapperType\":\"audiobook\", \"artistId\":2122513, + \"collectionId\":378960843, \"artistName\":\"Ernest Hemingway\", \"collectionName\":\"Farvel + til våbnene [A Farewell to Arms] (Unabridged)\", \"collectionCensoredName\":\"Farvel + til våbnene [A Farewell to Arms] (Unabridged)\", \"artistViewUrl\":\"http://itunes.apple.com/us/artist/ernest-hemingway/id2122513?mt=11&uo=4\", + \"collectionViewUrl\":\"http://itunes.apple.com/WebObjects/MZStore.woa/wa/viewAudiobook?id=378960843&s=143441&uo=4\", + \"artworkUrl60\":\"http://a4.mzstatic.com/us/r1000/021/Music/f4/17/12/mzi.ishqonff.60x60-50.jpg\", + \"artworkUrl100\":\"http://a1.mzstatic.com/us/r1000/021/Music/f4/17/12/mzi.ishqonff.100x100-75.jpg\", + \"collectionPrice\":27.95, \"collectionExplicitness\":\"notExplicit\", \"trackCount\":1, + \"copyright\":\"2010 Viatone\", \"country\":\"USA\", \"currency\":\"USD\", \"releaseDate\":\"2010-06-18T07:00:00Z\", + \"primaryGenreName\":\"Audiobooks\"}, \n{\"wrapperType\":\"audiobook\", \"artistId\":2122513, + \"collectionId\":359562700, \"artistName\":\"Ernest Hemingway\", \"collectionName\":\"At + have og ikke have [To Have and Have Not] (Unabridged)\", \"collectionCensoredName\":\"At + have og ikke have [To Have and Have Not] (Unabridged)\", \"artistViewUrl\":\"http://itunes.apple.com/us/artist/ernest-hemingway/id2122513?mt=11&uo=4\", + \"collectionViewUrl\":\"http://itunes.apple.com/WebObjects/MZStore.woa/wa/viewAudiobook?id=359562700&s=143441&uo=4\", + \"artworkUrl60\":\"http://a4.mzstatic.com/us/r1000/023/Music/da/67/bb/mzi.byhgirdi.60x60-50.jpg\", + \"artworkUrl100\":\"http://a1.mzstatic.com/us/r1000/023/Music/da/67/bb/mzi.byhgirdi.100x100-75.jpg\", + \"collectionPrice\":21.95, \"collectionExplicitness\":\"notExplicit\", \"trackCount\":1, + \"copyright\":\"2010 Viatone\", \"country\":\"USA\", \"currency\":\"USD\", \"releaseDate\":\"2010-03-01T08:00:00Z\", + \"primaryGenreName\":\"Audiobooks\"}, \n{\"wrapperType\":\"audiobook\", \"artistId\":368124523, + \"collectionId\":368124519, \"artistName\":\"Sara Paretsky, Lawrence Block, + Edgar Allan Poe, Georges Simenon, Ernest Hemingway, A.A. Milne, Robert Barr\", + \"collectionName\":\"The Greatest Mysteries of All Time, Volume 4 (Unabridged)\", + \"collectionCensoredName\":\"The Greatest Mysteries of All Time, Volume 4 (Unabridged)\", + \"artistViewUrl\":\"http://itunes.apple.com/us/artist/sara-paretsky-lawrence-block/id368124523?uo=4\", + \"collectionViewUrl\":\"http://itunes.apple.com/WebObjects/MZStore.woa/wa/viewAudiobook?id=368124519&s=143441&uo=4\", + \"artworkUrl60\":\"http://a4.mzstatic.com/us/r1000/052/Music/42/79/e8/mzi.xfngvtgk.60x60-50.jpg\", + \"artworkUrl100\":\"http://a2.mzstatic.com/us/r1000/052/Music/42/79/e8/mzi.xfngvtgk.100x100-75.jpg\", + \"collectionPrice\":14.95, \"collectionExplicitness\":\"notExplicit\", \"trackCount\":1, + \"copyright\":\"2010 Phoenix Audio\", \"country\":\"USA\", \"currency\":\"USD\", + \"releaseDate\":\"2010-04-14T07:00:00Z\", \"primaryGenreName\":\"Audiobooks\"}, + \n{\"wrapperType\":\"audiobook\", \"artistId\":2030421, \"collectionId\":366950565, + \"artistName\":\"E.L. Doctorow\", \"collectionName\":\"Creationists: Selected + Essays 1993-2006 (Unabridged)\", \"collectionCensoredName\":\"Creationists: + Selected Essays 1993-2006 (Unabridged)\", \"artistViewUrl\":\"http://itunes.apple.com/us/artist/e.l.-doctorow/id2030421?uo=4\", + \"collectionViewUrl\":\"http://itunes.apple.com/WebObjects/MZStore.woa/wa/viewAudiobook?id=366950565&s=143441&uo=4\", + \"artworkUrl60\":\"http://a4.mzstatic.com/us/r1000/040/Music/01/b1/78/mzi.slycheij.60x60-50.jpg\", + \"artworkUrl100\":\"http://a1.mzstatic.com/us/r1000/040/Music/01/b1/78/mzi.slycheij.100x100-75.jpg\", + \"collectionPrice\":17.95, \"collectionExplicitness\":\"notExplicit\", \"trackCount\":1, + \"copyright\":\"2006 Random House Audio\", \"country\":\"USA\", \"currency\":\"USD\", + \"releaseDate\":\"2006-09-19T07:00:00Z\", \"primaryGenreName\":\"Audiobooks\"}, + \n{\"wrapperType\":\"audiobook\", \"artistId\":483490430, \"collectionId\":483490429, + \"artistName\":\"Italo Calvino, H. P. Lovecraft, Ernest Hemingway\", \"collectionName\":\"Il + Gatto. Racconti d'autore\", \"collectionCensoredName\":\"Il Gatto. Racconti + d'autore\", \"artistViewUrl\":\"http://itunes.apple.com/us/artist/italo-calvino-h.-p.-lovecraft/id483490430?uo=4\", + \"collectionViewUrl\":\"http://itunes.apple.com/WebObjects/MZStore.woa/wa/viewAudiobook?id=483490429&s=143441&uo=4\", + \"artworkUrl60\":\"http://a3.mzstatic.com/us/r1000/085/Music/39/c7/ac/mzi.xrmmgybj.60x60-50.jpg\", + \"artworkUrl100\":\"http://a4.mzstatic.com/us/r1000/085/Music/39/c7/ac/mzi.xrmmgybj.100x100-75.jpg\", + \"collectionPrice\":4.95, \"collectionExplicitness\":\"notExplicit\", \"trackCount\":1, + \"copyright\":\"2011 Il Narratore s.r.l.\", \"country\":\"USA\", \"currency\":\"USD\", + \"releaseDate\":\"2011-11-23T08:00:00Z\", \"primaryGenreName\":\"Audiobooks\"}, + \n{\"wrapperType\":\"audiobook\", \"artistId\":512794411, \"collectionId\":516470486, + \"artistName\":\"Peter Braun\", \"collectionName\":\"Von Schatzinseln und weißen + Walen (Lust auf Weltliteratur!)\", \"collectionCensoredName\":\"Von Schatzinseln + und weißen Walen (Lust auf Weltliteratur!)\", \"artistViewUrl\":\"http://itunes.apple.com/us/artist/peter-braun/id512794411?uo=4\", + \"collectionViewUrl\":\"http://itunes.apple.com/WebObjects/MZStore.woa/wa/viewAudiobook?id=516470486&s=143441&uo=4\", + \"artworkUrl60\":\"http://a1.mzstatic.com/us/r1000/113/Music/v4/4a/76/ae/4a76aefc-ad42-9d6b-3799-f5d49b8a04bb/cover.60x60-50.jpg\", + \"artworkUrl100\":\"http://a1.mzstatic.com/us/r1000/113/Music/v4/4a/76/ae/4a76aefc-ad42-9d6b-3799-f5d49b8a04bb/cover.100x100-75.jpg\", + \"collectionPrice\":17.95, \"collectionExplicitness\":\"notExplicit\", \"trackCount\":1, + \"copyright\":\"2012 Igel Records\", \"country\":\"USA\", \"currency\":\"USD\", + \"releaseDate\":\"2012-04-03T07:00:00Z\", \"primaryGenreName\":\"Audiobooks\"}, + \n{\"wrapperType\":\"audiobook\", \"artistId\":404108611, \"collectionId\":404109347, + \"artistName\":\"Annegret Augustin\", \"collectionName\":\"Bedeutende Personen + der Weltgeschichte: Kemal Atatürk / Pablo Picasso / Charlie Chaplin / Ernest + Hemingway\", \"collectionCensoredName\":\"Bedeutende Personen der Weltgeschichte: + Kemal Atatürk / Pablo Picasso / Charlie Chaplin / Ernest Hemingway\", \"artistViewUrl\":\"http://itunes.apple.com/us/artist/annegret-augustin/id404108611?uo=4\", + \"collectionViewUrl\":\"http://itunes.apple.com/WebObjects/MZStore.woa/wa/viewAudiobook?id=404109347&s=143441&uo=4\", + \"artworkUrl60\":\"http://a1.mzstatic.com/us/r1000/019/Music/4e/75/97/mzi.pgfhejyi.60x60-50.jpg\", + \"artworkUrl100\":\"http://a5.mzstatic.com/us/r1000/019/Music/4e/75/97/mzi.pgfhejyi.100x100-75.jpg\", + \"collectionPrice\":6.95, \"collectionExplicitness\":\"notExplicit\", \"trackCount\":1, + \"copyright\":\"2010 audio media verlag\", \"country\":\"USA\", \"currency\":\"USD\", + \"releaseDate\":\"2010-11-10T08:00:00Z\", \"primaryGenreName\":\"Audiobooks\"}]\n}\n\n\n" + http_version: '1.1' +- !ruby/struct:VCR::HTTPInteraction + request: !ruby/struct:VCR::Request + method: :get + uri: http://ax.itunes.apple.com:80/WebObjects/MZStoreServices.woa/wa/wsSearch?media=shortFilm&term=Pixar + body: + headers: + accept: + - application/json + user-agent: + - ITunes Ruby Gem 0.5.5 + accept-encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + response: !ruby/struct:VCR::Response + status: !ruby/struct:VCR::ResponseStatus + code: 200 + message: OK + headers: + x-apple-orig-url-path: + - /WebObjects/MZStoreServices.woa/wa/wsSearch?term=Pixar&media=shortFilm + x-apple-translated-wo-url: + - /WebObjects/MZStoreServices.woa/wa/wsSearch?term=Pixar&media=shortFilm + x-apple-application-site: + - ST11 + x-apple-max-age: + - '3600' + content-type: + - text/javascript; charset=utf-8 + x-apple-application-instance: + - '2048003' + x-webobjects-loadaverage: + - '0' + vary: + - Accept-Encoding + - X-Apple-Store-Front + expires: + - Wed, 18 Apr 2012 22:53:39 GMT + cache-control: + - max-age=0, no-cache + pragma: + - no-cache + date: + - Wed, 18 Apr 2012 22:53:39 GMT + content-length: + - '22740' + connection: + - keep-alive + x-apple-partner: + - origin.0 + body: ! "\n\n\n{\n \"resultCount\":17,\n \"results\": [\n{\"wrapperType\":\"track\", + \"kind\":\"feature-movie\", \"artistId\":81758682, \"trackId\":81758685, \"artistName\":\"Pixar\", + \"trackName\":\"For the Birds\", \"trackCensoredName\":\"For the Birds\", \"artistViewUrl\":\"http://itunes.apple.com/us/studio/pixar/id81758682?uo=4\", + \"trackViewUrl\":\"http://itunes.apple.com/us/movie/for-the-birds/id81758685?uo=4\", + \"previewUrl\":\"http://a1949.v.phobos.apple.com/us/r1000/051/Video/0f/96/2c/mzi.eruazfvl..640x480.h264lc.D2.p.m4v\", + \"artworkUrl30\":\"http://a5.mzstatic.com/us/r1000/005/Features/90/d3/c4/dj.zzvxxnqt.30x30-50.jpg\", + \"artworkUrl60\":\"http://a2.mzstatic.com/us/r1000/005/Features/90/d3/c4/dj.zzvxxnqt.60x60-50.jpg\", + \"artworkUrl100\":\"http://a2.mzstatic.com/us/r1000/005/Features/90/d3/c4/dj.zzvxxnqt.100x100-75.jpg\", + \"collectionPrice\":1.99, \"trackPrice\":1.99, \"releaseDate\":\"2003-04-28T07:00:00Z\", + \"collectionExplicitness\":\"notExplicit\", \"trackExplicitness\":\"notExplicit\", + \"trackTimeMillis\":204625.0, \"country\":\"USA\", \"currency\":\"USD\", \"primaryGenreName\":\"Short + Films\"}, \n{\"wrapperType\":\"track\", \"kind\":\"feature-movie\", \"artistId\":81758682, + \"trackId\":81758680, \"artistName\":\"Pixar\", \"trackName\":\"Boundin'\", + \"trackCensoredName\":\"Boundin'\", \"artistViewUrl\":\"http://itunes.apple.com/us/studio/pixar/id81758682?uo=4\", + \"trackViewUrl\":\"http://itunes.apple.com/us/movie/boundin/id81758680?uo=4\", + \"previewUrl\":\"http://a442.v.phobos.apple.com/us/r1000/020/Video/f6/ae/68/mzi.yfyrdvdl..640x480.h264lc.D2.p.m4v\", + \"artworkUrl30\":\"http://a1.mzstatic.com/us/r1000/028/Features/dc/23/92/dj.afewymrp.30x30-50.jpg\", + \"artworkUrl60\":\"http://a5.mzstatic.com/us/r1000/028/Features/dc/23/92/dj.afewymrp.60x60-50.jpg\", + \"artworkUrl100\":\"http://a3.mzstatic.com/us/r1000/028/Features/dc/23/92/dj.afewymrp.100x100-75.jpg\", + \"collectionPrice\":1.99, \"trackPrice\":1.99, \"releaseDate\":\"2003-04-28T07:00:00Z\", + \"collectionExplicitness\":\"notExplicit\", \"trackExplicitness\":\"notExplicit\", + \"trackTimeMillis\":283458.0, \"country\":\"USA\", \"currency\":\"USD\", \"primaryGenreName\":\"Short + Films\"}, \n{\"wrapperType\":\"track\", \"kind\":\"feature-movie\", \"artistId\":81758682, + \"trackId\":94600947, \"artistName\":\"Pixar\", \"trackName\":\"Knick Knack\", + \"trackCensoredName\":\"Knick Knack\", \"artistViewUrl\":\"http://itunes.apple.com/us/studio/pixar/id81758682?uo=4\", + \"trackViewUrl\":\"http://itunes.apple.com/us/movie/knick-knack/id94600947?uo=4\", + \"previewUrl\":\"http://a1398.v.phobos.apple.com/us/r1000/017/Video/36/0d/e3/mzi.rosublik..640x480.h264lc.D2.p.m4v\", + \"artworkUrl30\":\"http://a2.mzstatic.com/us/r1000/016/Features/fc/f4/2e/dj.hkwlcwmx.30x30-50.jpg\", + \"artworkUrl60\":\"http://a1.mzstatic.com/us/r1000/016/Features/fc/f4/2e/dj.hkwlcwmx.60x60-50.jpg\", + \"artworkUrl100\":\"http://a1.mzstatic.com/us/r1000/016/Features/fc/f4/2e/dj.hkwlcwmx.100x100-75.jpg\", + \"collectionPrice\":1.99, \"trackPrice\":1.99, \"releaseDate\":\"2003-04-28T07:00:00Z\", + \"collectionExplicitness\":\"notExplicit\", \"trackExplicitness\":\"notExplicit\", + \"trackTimeMillis\":217458.0, \"country\":\"USA\", \"currency\":\"USD\", \"primaryGenreName\":\"Short + Films\"}, \n{\"wrapperType\":\"track\", \"kind\":\"feature-movie\", \"artistId\":81758682, + \"trackId\":81758687, \"artistName\":\"Pixar\", \"trackName\":\"Geri's Game\", + \"trackCensoredName\":\"Geri's Game\", \"artistViewUrl\":\"http://itunes.apple.com/us/studio/pixar/id81758682?uo=4\", + \"trackViewUrl\":\"http://itunes.apple.com/us/movie/geris-game/id81758687?uo=4\", + \"previewUrl\":\"http://a1769.v.phobos.apple.com/us/r1000/048/Video/8e/8a/b3/mzi.lqdidvxn..640x480.h264lc.D2.p.m4v\", + \"artworkUrl30\":\"http://a5.mzstatic.com/us/r1000/059/Features/e7/ee/39/dj.tlksjlck.30x30-50.jpg\", + \"artworkUrl60\":\"http://a4.mzstatic.com/us/r1000/059/Features/e7/ee/39/dj.tlksjlck.60x60-50.jpg\", + \"artworkUrl100\":\"http://a4.mzstatic.com/us/r1000/059/Features/e7/ee/39/dj.tlksjlck.100x100-75.jpg\", + \"collectionPrice\":1.99, \"trackPrice\":1.99, \"releaseDate\":\"2003-04-28T07:00:00Z\", + \"collectionExplicitness\":\"notExplicit\", \"trackExplicitness\":\"notExplicit\", + \"trackTimeMillis\":299833.0, \"country\":\"USA\", \"currency\":\"USD\", \"primaryGenreName\":\"Short + Films\"}, \n{\"wrapperType\":\"track\", \"kind\":\"feature-movie\", \"artistId\":81758682, + \"trackId\":259311591, \"artistName\":\"Pixar\", \"trackName\":\"Lifted\", \"trackCensoredName\":\"Lifted\", + \"artistViewUrl\":\"http://itunes.apple.com/us/studio/pixar/id81758682?uo=4\", + \"trackViewUrl\":\"http://itunes.apple.com/us/movie/lifted/id259311591?uo=4\", + \"previewUrl\":\"http://a297.v.phobos.apple.com/us/r1000/018/Video/d2/9d/04/mzi.cgfbzhly..640x336.h264lc.D2.p.m4v\", + \"artworkUrl30\":\"http://a1.mzstatic.com/us/r1000/019/Features/01/b4/c4/dj.vrqdndhh.30x30-50.jpg\", + \"artworkUrl60\":\"http://a3.mzstatic.com/us/r1000/019/Features/01/b4/c4/dj.vrqdndhh.60x60-50.jpg\", + \"artworkUrl100\":\"http://a3.mzstatic.com/us/r1000/019/Features/01/b4/c4/dj.vrqdndhh.100x100-75.jpg\", + \"collectionPrice\":1.99, \"trackPrice\":1.99, \"releaseDate\":\"2007-06-29T07:00:00Z\", + \"collectionExplicitness\":\"notExplicit\", \"trackExplicitness\":\"notExplicit\", + \"trackTimeMillis\":299916.0, \"country\":\"USA\", \"currency\":\"USD\", \"primaryGenreName\":\"Short + Films\", \n\"shortDescription\":\"When an overconfident teen alien gets behind + the controls of a spaceship, he must attempt to abduct a slumbering farmer under + the watchful eye of a critical instructor. But abducting humans requires precision + and a gentle touch, and within a few missteps it's painfully clear why more + humans don\\u2019t go missing every year.\", \n\"longDescription\":\"When an + overconfident teen alien gets behind the controls of a spaceship, he must attempt + to abduct a slumbering farmer under the watchful eye of a critical instructor. + But abducting humans requires precision and a gentle touch, and within a few + missteps it's painfully clear why more humans don\\u2019t go missing every year.\"}, + \n{\"wrapperType\":\"track\", \"kind\":\"feature-movie\", \"artistId\":81758682, + \"trackId\":159489047, \"artistName\":\"Pixar\", \"trackName\":\"One Man Band\", + \"trackCensoredName\":\"One Man Band\", \"artistViewUrl\":\"http://itunes.apple.com/us/studio/pixar/id81758682?uo=4\", + \"trackViewUrl\":\"http://itunes.apple.com/us/movie/one-man-band/id159489047?uo=4\", + \"previewUrl\":\"http://a477.v.phobos.apple.com/us/r1000/032/Video/ee/b1/19/mzi.qrasbuar..640x480.h264lc.D2.p.m4v\", + \"artworkUrl30\":\"http://a4.mzstatic.com/us/r1000/059/Features/d6/4d/2b/dj.jkkraltz.30x30-50.jpg\", + \"artworkUrl60\":\"http://a3.mzstatic.com/us/r1000/059/Features/d6/4d/2b/dj.jkkraltz.60x60-50.jpg\", + \"artworkUrl100\":\"http://a5.mzstatic.com/us/r1000/059/Features/d6/4d/2b/dj.jkkraltz.100x100-75.jpg\", + \"collectionPrice\":1.99, \"trackPrice\":1.99, \"releaseDate\":\"2006-06-07T07:00:00Z\", + \"collectionExplicitness\":\"notExplicit\", \"trackExplicitness\":\"notExplicit\", + \"trackTimeMillis\":274166.0, \"country\":\"USA\", \"currency\":\"USD\", \"primaryGenreName\":\"Short + Films\"}, \n{\"wrapperType\":\"track\", \"kind\":\"feature-movie\", \"artistId\":81758682, + \"trackId\":282546512, \"artistName\":\"Pixar\", \"trackName\":\"Presto\", \"trackCensoredName\":\"Presto\", + \"artistViewUrl\":\"http://itunes.apple.com/us/studio/pixar/id81758682?uo=4\", + \"trackViewUrl\":\"http://itunes.apple.com/us/movie/presto/id282546512?uo=4\", + \"previewUrl\":\"http://a454.v.phobos.apple.com/us/r1000/059/Video/0e/1b/d8/mzi.lmffvhnd..640x360.h264lc.D2.p.m4v\", + \"artworkUrl30\":\"http://a5.mzstatic.com/us/r1000/025/Music/dd/10/3f/dj.egvtswop.30x30-50.jpg\", + \"artworkUrl60\":\"http://a2.mzstatic.com/us/r1000/025/Music/dd/10/3f/dj.egvtswop.60x60-50.jpg\", + \"artworkUrl100\":\"http://a3.mzstatic.com/us/r1000/025/Music/dd/10/3f/dj.egvtswop.100x100-75.jpg\", + \"collectionPrice\":1.99, \"trackPrice\":1.99, \"releaseDate\":\"2008-06-27T07:00:00Z\", + \"collectionExplicitness\":\"notExplicit\", \"trackExplicitness\":\"notExplicit\", + \"trackTimeMillis\":317108.0, \"country\":\"USA\", \"currency\":\"USD\", \"primaryGenreName\":\"Short + Films\", \n\"shortDescription\":\"Dignity. Poise. Mystery. We expect nothing + less from the great, turn-of-the-century magician, Presto. But, when Presto + forgets to feed his rabbit one too many times, well, there's really no telling + what to expect! This latest comical short film from Pixar Animation Studios + follows the escalating high jinx of the amazing Presto, his rabbit Alec, and + what happens onstage when a star magician's ego provokes some clever revenge + from his neglected costar.\"}, \n{\"wrapperType\":\"track\", \"kind\":\"feature-movie\", + \"artistId\":81758682, \"trackId\":81939958, \"artistName\":\"Pixar\", \"trackName\":\"Tin + Toy\", \"trackCensoredName\":\"Tin Toy\", \"artistViewUrl\":\"http://itunes.apple.com/us/studio/pixar/id81758682?uo=4\", + \"trackViewUrl\":\"http://itunes.apple.com/us/movie/tin-toy/id81939958?uo=4\", + \"previewUrl\":\"http://a910.v.phobos.apple.com/us/r1000/049/Video/87/16/44/mzi.vauqkvix..640x480.h264lc.D2.p.m4v\", + \"artworkUrl30\":\"http://a1.mzstatic.com/us/r1000/058/Features/89/60/e1/dj.tvvjvyfv.30x30-50.jpg\", + \"artworkUrl60\":\"http://a5.mzstatic.com/us/r1000/058/Features/89/60/e1/dj.tvvjvyfv.60x60-50.jpg\", + \"artworkUrl100\":\"http://a1.mzstatic.com/us/r1000/058/Features/89/60/e1/dj.tvvjvyfv.100x100-75.jpg\", + \"collectionPrice\":1.99, \"trackPrice\":1.99, \"releaseDate\":\"2003-04-28T07:00:00Z\", + \"collectionExplicitness\":\"notExplicit\", \"trackExplicitness\":\"notExplicit\", + \"trackTimeMillis\":309916.0, \"country\":\"USA\", \"currency\":\"USD\", \"primaryGenreName\":\"Short + Films\"}, \n{\"wrapperType\":\"track\", \"kind\":\"feature-movie\", \"artistId\":81758682, + \"trackId\":81939954, \"artistName\":\"Pixar\", \"trackName\":\"Luxo Jr.\", + \"trackCensoredName\":\"Luxo Jr.\", \"artistViewUrl\":\"http://itunes.apple.com/us/studio/pixar/id81758682?uo=4\", + \"trackViewUrl\":\"http://itunes.apple.com/us/movie/luxo-jr./id81939954?uo=4\", + \"previewUrl\":\"http://a1421.v.phobos.apple.com/us/r1000/007/Video/8a/21/40/mzi.dzbgwvvh..640x480.h264lc.D2.p.m4v\", + \"artworkUrl30\":\"http://a5.mzstatic.com/us/r1000/003/Features/40/99/6b/dj.ozgghlnl.30x30-50.jpg\", + \"artworkUrl60\":\"http://a4.mzstatic.com/us/r1000/003/Features/40/99/6b/dj.ozgghlnl.60x60-50.jpg\", + \"artworkUrl100\":\"http://a4.mzstatic.com/us/r1000/003/Features/40/99/6b/dj.ozgghlnl.100x100-75.jpg\", + \"collectionPrice\":1.99, \"trackPrice\":1.99, \"releaseDate\":\"2003-04-28T07:00:00Z\", + \"collectionExplicitness\":\"notExplicit\", \"trackExplicitness\":\"notExplicit\", + \"trackTimeMillis\":145958.0, \"country\":\"USA\", \"currency\":\"USD\", \"primaryGenreName\":\"Short + Films\"}, \n{\"wrapperType\":\"track\", \"kind\":\"feature-movie\", \"artistId\":81758682, + \"trackId\":299568053, \"artistName\":\"Pixar\", \"trackName\":\"Jack-Jack Attack\", + \"trackCensoredName\":\"Jack-Jack Attack\", \"artistViewUrl\":\"http://itunes.apple.com/us/studio/pixar/id81758682?uo=4\", + \"trackViewUrl\":\"http://itunes.apple.com/us/movie/jack-jack-attack/id299568053?uo=4\", + \"previewUrl\":\"http://a1949.v.phobos.apple.com/us/r1000/020/Video/7d/ad/ea/mzm.cbwhowqs..640x360.h264lc.d2.p.m4v\", + \"artworkUrl30\":\"http://a3.mzstatic.com/us/r1000/039/Video/d3/ca/90/mzi.lajysyhn.30x30-50.jpg\", + \"artworkUrl60\":\"http://a5.mzstatic.com/us/r1000/039/Video/d3/ca/90/mzi.lajysyhn.60x60-50.jpg\", + \"artworkUrl100\":\"http://a1.mzstatic.com/us/r1000/039/Video/d3/ca/90/mzi.lajysyhn.100x100-75.jpg\", + \"collectionPrice\":1.99, \"trackPrice\":1.99, \"releaseDate\":\"2007-11-06T08:00:00Z\", + \"collectionExplicitness\":\"notExplicit\", \"trackExplicitness\":\"notExplicit\", + \"trackTimeMillis\":285535.0, \"country\":\"USA\", \"currency\":\"USD\", \"primaryGenreName\":\"Short + Films\", \n\"longDescription\":\"Kari the babysitter thinks she's in for a night + of routine babysitting. She\\u2019s prepared to provide neurological stimulation + with some soothing musical accompaniment for little Jack-Jack, the smallest + member of the incredible Parr family. Little does she know that Jack-Jack will + teach her a thing or two about babies with \\\"special needs.\\\" True to her + word, Kari proves she can handle anything Jack-Jack can dish out - just barely. And + Jack-Jack proves that listening to Mozart truly does make babies smarter. Or, + in his case, discover his super powers. The idea behind Jack-Jack Attack was + originally a sequence in The Incredibles, but was cut when director Brad Bird + decided to reveal the baby's powers at the end of the movie. By expanding the + babysitting misadventure to a short film, the creative team elevated to hilarious + heights Kari's frantic calls to Helen Parr.\"}, \n{\"wrapperType\":\"track\", + \"kind\":\"feature-movie\", \"artistId\":81758682, \"trackId\":81939956, \"artistName\":\"Pixar\", + \"trackName\":\"Red's Dream\", \"trackCensoredName\":\"Red's Dream\", \"artistViewUrl\":\"http://itunes.apple.com/us/studio/pixar/id81758682?uo=4\", + \"trackViewUrl\":\"http://itunes.apple.com/us/movie/reds-dream/id81939956?uo=4\", + \"previewUrl\":\"http://a1642.v.phobos.apple.com/us/r1000/003/Video/f6/f0/f8/mzi.jqjcpryl..640x480.h264lc.D2.p.m4v\", + \"artworkUrl30\":\"http://a1.mzstatic.com/us/r1000/036/Features/0e/60/5f/dj.zezykinx.30x30-50.jpg\", + \"artworkUrl60\":\"http://a5.mzstatic.com/us/r1000/036/Features/0e/60/5f/dj.zezykinx.60x60-50.jpg\", + \"artworkUrl100\":\"http://a2.mzstatic.com/us/r1000/036/Features/0e/60/5f/dj.zezykinx.100x100-75.jpg\", + \"collectionPrice\":1.99, \"trackPrice\":1.99, \"releaseDate\":\"2003-04-28T07:00:00Z\", + \"collectionExplicitness\":\"notExplicit\", \"trackExplicitness\":\"notExplicit\", + \"trackTimeMillis\":253666.0, \"country\":\"USA\", \"currency\":\"USD\", \"primaryGenreName\":\"Short + Films\"}, \n{\"wrapperType\":\"track\", \"kind\":\"feature-movie\", \"artistId\":81758682, + \"trackId\":317100593, \"artistName\":\"Pixar\", \"trackName\":\"Partly Cloudy\", + \"trackCensoredName\":\"Partly Cloudy\", \"artistViewUrl\":\"http://itunes.apple.com/us/studio/pixar/id81758682?uo=4\", + \"trackViewUrl\":\"http://itunes.apple.com/us/movie/partly-cloudy/id317100593?uo=4\", + \"previewUrl\":\"http://a861.v.phobos.apple.com/us/r1000/049/Video/1c/45/ea/mzm.azlmttgv..640x480.h264lc.d2.p.m4v\", + \"artworkUrl30\":\"http://a2.mzstatic.com/us/r1000/006/Video/e8/ee/2d/mzi.xtqdjdfx.30x30-50.jpg\", + \"artworkUrl60\":\"http://a1.mzstatic.com/us/r1000/006/Video/e8/ee/2d/mzi.xtqdjdfx.60x60-50.jpg\", + \"artworkUrl100\":\"http://a4.mzstatic.com/us/r1000/006/Video/e8/ee/2d/mzi.xtqdjdfx.100x100-75.jpg\", + \"collectionPrice\":1.99, \"trackPrice\":1.99, \"releaseDate\":\"2009-06-02T07:00:00Z\", + \"collectionExplicitness\":\"notExplicit\", \"trackExplicitness\":\"notExplicit\", + \"trackTimeMillis\":349891.0, \"country\":\"USA\", \"currency\":\"USD\", \"primaryGenreName\":\"Short + Films\", \n\"longDescription\":\"Everyone knows that the stork delivers babies, + but where do the storks get the babies from? The answer lies up in the stratosphere, + where cloud people sculpt babies from clouds and bring them to life. Gus, a + lonely and insecure grey cloud, is a master at creating \\\"dangerous\\\" babies. + Crocodiles, porcupines, rams and more - Gus's beloved creations are works of + art, but more than a handful for his loyal delivery stork partner, Peck. As + Gus's creations become more and more rambunctious, Peck's job gets harder and + harder. How will Peck manage to handle both his hazardous cargo and his friend's + fiery treatment?\"}, \n{\"wrapperType\":\"track\", \"kind\":\"feature-movie\", + \"artistId\":81758682, \"trackId\":378141736, \"artistName\":\"Pixar\", \"trackName\":\"Day + & Night\", \"trackCensoredName\":\"Day & Night\", \"artistViewUrl\":\"http://itunes.apple.com/us/studio/pixar/id81758682?uo=4\", + \"trackViewUrl\":\"http://itunes.apple.com/us/movie/day-night/id378141736?uo=4\", + \"previewUrl\":\"http://a1360.v.phobos.apple.com/us/r1000/054/Video/a7/58/c0/mzm.clwumdku..640x478.h264lc.d2.p.m4v\", + \"artworkUrl30\":\"http://a3.mzstatic.com/us/r1000/008/Video/a8/1d/45/mzi.aqozcmgw.30x30-50.jpg\", + \"artworkUrl60\":\"http://a2.mzstatic.com/us/r1000/008/Video/a8/1d/45/mzi.aqozcmgw.60x60-50.jpg\", + \"artworkUrl100\":\"http://a5.mzstatic.com/us/r1000/008/Video/a8/1d/45/mzi.aqozcmgw.100x100-75.jpg\", + \"collectionPrice\":1.99, \"trackPrice\":1.99, \"releaseDate\":\"2010-06-22T07:00:00Z\", + \"collectionExplicitness\":\"notExplicit\", \"trackExplicitness\":\"notExplicit\", + \"trackTimeMillis\":363294.0, \"country\":\"USA\", \"currency\":\"USD\", \"primaryGenreName\":\"Short + Films\", \n\"longDescription\":\"When Day, a sunny fellow, encounters Night, + a stranger of distinctly darker moods, sparks fly! Day and Night are frightened + and suspicious of each other at first, and quickly get off on the wrong foot. + But as they discover each other's unique qualities\\u2013and come to realize + that each of them offers a different window onto the same world\\u2013the friendship + helps both to gain a new perspective.\"}, \n{\"wrapperType\":\"track\", \"kind\":\"feature-movie\", + \"artistId\":81758682, \"trackId\":299568535, \"artistName\":\"Pixar\", \"trackName\":\"Mater + & The Ghostlight\", \"trackCensoredName\":\"Mater & The Ghostlight\", \"artistViewUrl\":\"http://itunes.apple.com/us/studio/pixar/id81758682?uo=4\", + \"trackViewUrl\":\"http://itunes.apple.com/us/movie/mater-the-ghostlight/id299568535?uo=4\", + \"previewUrl\":\"http://a1569.v.phobos.apple.com/us/r1000/028/Video/e9/8f/de/mzm.quvryhiy..640x360.h264lc.d2.p.m4v\", + \"artworkUrl30\":\"http://a2.mzstatic.com/us/r1000/032/Video/52/32/b6/mzi.whyxzcwz.30x30-50.jpg\", + \"artworkUrl60\":\"http://a1.mzstatic.com/us/r1000/032/Video/52/32/b6/mzi.whyxzcwz.60x60-50.jpg\", + \"artworkUrl100\":\"http://a1.mzstatic.com/us/r1000/032/Video/52/32/b6/mzi.whyxzcwz.100x100-75.jpg\", + \"collectionPrice\":1.99, \"trackPrice\":1.99, \"releaseDate\":\"2007-11-06T08:00:00Z\", + \"collectionExplicitness\":\"notExplicit\", \"trackExplicitness\":\"notExplicit\", + \"trackTimeMillis\":430430.0, \"country\":\"USA\", \"currency\":\"USD\", \"primaryGenreName\":\"Short + Films\", \n\"longDescription\":\"In the short film Mater and the Ghostlight, + appearing on the forthcoming release of Disney×Pixar's animated feature film Cars, + Mater - the rusty but trusty tow truck - spends the day playing scary pranks + on the townsfolk of Radiator Springs. That night at Flo's V8 Café, Sheriff tells + everyone about the legend of the Ghostlight, a mysterious blue light that haunts + those very parts. As his friends head home, Mater is left alone in the dark + to ponder whether the legend of the fabled Ghostlight is true.\"}, \n{\"wrapperType\":\"track\", + \"kind\":\"feature-movie\", \"artistId\":81758682, \"trackId\":299553177, \"artistName\":\"Pixar\", + \"trackName\":\"Mike's New Car\", \"trackCensoredName\":\"Mike's New Car\", + \"artistViewUrl\":\"http://itunes.apple.com/us/studio/pixar/id81758682?uo=4\", + \"trackViewUrl\":\"http://itunes.apple.com/us/movie/mikes-new-car/id299553177?uo=4\", + \"previewUrl\":\"http://a1663.v.phobos.apple.com/us/r1000/057/Video/fa/f6/68/mzm.zowmkldb..640x480.h264lc.d2.p.m4v\", + \"artworkUrl30\":\"http://a2.mzstatic.com/us/r1000/051/Video/f0/44/45/mzi.krgtoakq.30x30-50.jpg\", + \"artworkUrl60\":\"http://a4.mzstatic.com/us/r1000/051/Video/f0/44/45/mzi.krgtoakq.60x60-50.jpg\", + \"artworkUrl100\":\"http://a4.mzstatic.com/us/r1000/051/Video/f0/44/45/mzi.krgtoakq.100x100-75.jpg\", + \"collectionPrice\":1.99, \"trackPrice\":1.99, \"releaseDate\":\"2007-11-06T08:00:00Z\", + \"collectionExplicitness\":\"notExplicit\", \"trackExplicitness\":\"notExplicit\", + \"trackTimeMillis\":229895.0, \"country\":\"USA\", \"currency\":\"USD\", \"primaryGenreName\":\"Short + Films\", \n\"longDescription\":\"Mike discovers that being the top-ranking laugh + collector at Monsters, Inc. has its benefits, such as earning enough money to + buy a six-wheel drive car that's loaded with gadgets. That new car smell doesn't + last long enough, however, as Sulley jump-starts an ill-fated road test that + teaches Mike the true meaning of buyer's remorse. Since ending the energy crisis + in Monstropolis, this pair can still get into quite a predicament. Mike's pride + in his new wheels is only surpassed by Sulley's lack of skills at the control + panel. The two eventually agree on one thing: walking to work might be the best, + at least today. Director Pete Docter came up with the idea for Mike's New Car + long before directing Monsters, Inc. When the opportunity arose to create a + short film featuring Mike and Sulley, Docter dusted off his shelved idea, put + Mike in the driver's seat, and added some classic Laurel and Hardy moments to + create a curbside comedy that puts the pedal to the metal.\"}, \n{\"wrapperType\":\"track\", + \"kind\":\"feature-movie\", \"artistId\":81758682, \"trackId\":299555824, \"artistName\":\"Pixar\", + \"trackName\":\"Your Friend the Rat\", \"trackCensoredName\":\"Your Friend the + Rat\", \"artistViewUrl\":\"http://itunes.apple.com/us/studio/pixar/id81758682?uo=4\", + \"trackViewUrl\":\"http://itunes.apple.com/us/movie/your-friend-the-rat/id299555824?uo=4\", + \"previewUrl\":\"http://a136.v.phobos.apple.com/us/r1000/007/Video/d6/10/24/mzm.yvbxbxjv..640x360.h264lc.d2.p.m4v\", + \"artworkUrl30\":\"http://a1.mzstatic.com/us/r1000/032/Video/b7/b5/8e/mzi.wuygkuzg.30x30-50.jpg\", + \"artworkUrl60\":\"http://a3.mzstatic.com/us/r1000/032/Video/b7/b5/8e/mzi.wuygkuzg.60x60-50.jpg\", + \"artworkUrl100\":\"http://a5.mzstatic.com/us/r1000/032/Video/b7/b5/8e/mzi.wuygkuzg.100x100-75.jpg\", + \"collectionPrice\":1.99, \"trackPrice\":1.99, \"releaseDate\":\"2007-11-06T08:00:00Z\", + \"collectionExplicitness\":\"notExplicit\", \"trackExplicitness\":\"notExplicit\", + \"trackTimeMillis\":676843.0, \"country\":\"USA\", \"currency\":\"USD\", \"primaryGenreName\":\"Short + Films\", \n\"longDescription\":\"An animated tongue-in-cheek documentary presented + by Remy and Emile to state their case as to why humans and rats should just + get along. Remy starts off as our guide through the history man and rat have + shared. Emile then provides us with a lot of fun rat facts to help the viewer + better appreciate the rat. The two pull out all the stops and end with a song + describing a rat and human utopia.\"}, \n{\"wrapperType\":\"track\", \"kind\":\"feature-movie\", + \"artistId\":81758682, \"trackId\":299556204, \"artistName\":\"Pixar\", \"trackName\":\"The + Adventures of André & Wally B.\", \"trackCensoredName\":\"The Adventures of + André & Wally B.\", \"artistViewUrl\":\"http://itunes.apple.com/us/studio/pixar/id81758682?uo=4\", + \"trackViewUrl\":\"http://itunes.apple.com/us/movie/adventures-andre-wally-b./id299556204?uo=4\", + \"previewUrl\":\"http://a1719.v.phobos.apple.com/us/r1000/046/Video/25/17/bb/mzm.srakbbha..640x480.h264lc.d2.p.m4v\", + \"artworkUrl30\":\"http://a5.mzstatic.com/us/r1000/013/Video/57/d3/d4/mzi.cdodecfu.30x30-50.jpg\", + \"artworkUrl60\":\"http://a2.mzstatic.com/us/r1000/013/Video/57/d3/d4/mzi.cdodecfu.60x60-50.jpg\", + \"artworkUrl100\":\"http://a1.mzstatic.com/us/r1000/013/Video/57/d3/d4/mzi.cdodecfu.100x100-75.jpg\", + \"collectionPrice\":1.99, \"trackPrice\":1.99, \"releaseDate\":\"2007-11-06T08:00:00Z\", + \"collectionExplicitness\":\"notExplicit\", \"trackExplicitness\":\"notExplicit\", + \"trackTimeMillis\":112986.0, \"country\":\"USA\", \"currency\":\"USD\", \"primaryGenreName\":\"Short + Films\", \n\"longDescription\":\"There's nothing like a restful nap in a pleasant + wooded valley. But when Andre awakens and is greeted by a pesky yellow and black + striped insect with a nasty stinger, he ends up taking a quick - and painful + - hike. Andre thinks he's a clever guy, able to outsmart and outrun a bee. But + like all stinging insects, Wally B. knows better and can chase down any target + in a matter of seconds. Though this film was produced at Lucasfilm Ltd., it + was the first time John Lasseter worked on a 3D animated film. Andre and Wally + B. was very restrictive - only geometric shapes could be animated - but Lasseter + pushed the envelope by asking the technical team for a tear-dropped shape that + could be bent several ways.\"}]\n}\n\n\n" + http_version: '1.1' +- !ruby/struct:VCR::HTTPInteraction + request: !ruby/struct:VCR::Request + method: :get + uri: http://ax.itunes.apple.com:80/WebObjects/MZStoreServices.woa/wa/wsSearch?media=tvShow&term=Lost + body: + headers: + accept: + - application/json + user-agent: + - ITunes Ruby Gem 0.5.5 + accept-encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + response: !ruby/struct:VCR::Response + status: !ruby/struct:VCR::ResponseStatus + code: 200 + message: OK + headers: + x-apple-orig-url-path: + - /WebObjects/MZStoreServices.woa/wa/wsSearch?term=Lost&media=tvShow + x-apple-translated-wo-url: + - /WebObjects/MZStoreServices.woa/wa/wsSearch?term=Lost&media=tvShow + x-apple-application-site: + - NWK + x-apple-max-age: + - '3600' + content-type: + - text/javascript; charset=utf-8 + x-apple-application-instance: + - '1021015' + x-webobjects-loadaverage: + - '0' + vary: + - Accept-Encoding + - X-Apple-Store-Front + expires: + - Wed, 18 Apr 2012 22:53:39 GMT + cache-control: + - max-age=0, no-cache + pragma: + - no-cache + date: + - Wed, 18 Apr 2012 22:53:39 GMT + transfer-encoding: + - chunked + connection: + - Transfer-Encoding + - keep-alive + x-apple-partner: + - origin.0 + body: ! "\n\n\n{\n \"resultCount\":50,\n \"results\": [\n{\"wrapperType\":\"track\", + \"kind\":\"tv-episode\", \"artistId\":66012553, \"collectionId\":82050675, \"trackId\":81947350, + \"artistName\":\"LOST\", \"collectionName\":\"LOST, Season 2\", \"trackName\":\"Man + of Science, Man of Faith\", \"collectionCensoredName\":\"LOST, Season 2\", \"trackCensoredName\":\"Man + of Science, Man of Faith\", \"artistViewUrl\":\"http://itunes.apple.com/us/tv-show/lost/id66012553?uo=4\", + \"collectionViewUrl\":\"http://itunes.apple.com/us/tv-season/man-of-science-man-of-faith/id82050675?i=81947350&uo=4\", + \"trackViewUrl\":\"http://itunes.apple.com/us/tv-season/man-of-science-man-of-faith/id82050675?i=81947350&uo=4\", + \"previewUrl\":\"http://a1078.v.phobos.apple.com/us/r1000/018/Video/a7/db/23/mzm.iqosfrrt..640x480.h264lc.d2.p.m4v\", + \"artworkUrl30\":\"http://a1.mzstatic.com/us/r1000/059/Music/0c/1a/a2/mzi.hxpsjqiz.40x30-75.jpg\", + \"artworkUrl60\":\"http://a4.mzstatic.com/us/r1000/059/Music/0c/1a/a2/mzi.hxpsjqiz.80x60-75.jpg\", + \"artworkUrl100\":\"http://a3.mzstatic.com/us/r1000/059/Music/0c/1a/a2/mzi.hxpsjqiz.100x100-75.jpg\", + \"collectionPrice\":24.99, \"trackPrice\":1.99, \"releaseDate\":\"2005-09-21T07:00:00Z\", + \"collectionExplicitness\":\"notExplicit\", \"trackExplicitness\":\"notExplicit\", + \"discCount\":1, \"discNumber\":1, \"trackCount\":24, \"trackNumber\":1, \"trackTimeMillis\":2607750.0, + \"country\":\"USA\", \"currency\":\"USD\", \"primaryGenreName\":\"Drama\", \"contentAdvisoryRating\":\"TV-14\", + \n\"shortDescription\":\"In the season premiere episode, \\\"Man of Science, + Man of Faith,\\\" one of the castaways is chosen to descend into the mysterious + hatch, and Shannon stumbles upon a shockingly familiar face in the jungle.\", + \n\"longDescription\":\"In the season premiere episode, \\\"Man of Science, + Man of Faith,\\\" one of the castaways is chosen to descend into the mysterious + hatch, and Shannon stumbles upon a shockingly familiar face in the jungle. The + band of friends, family, enemies, and strangers must continue to work together + against the cruel weather and harsh terrain if they want to stay alive. But, + as they have discovered during their 40-plus days on the island, danger and + mystery loom behind every corner, and those they thought could be trusted may + turn against them. Even heroes have secrets.\"}, \n{\"wrapperType\":\"track\", + \"kind\":\"tv-episode\", \"artistId\":66012553, \"collectionId\":200507719, + \"trackId\":196354978, \"artistName\":\"LOST\", \"collectionName\":\"LOST, Season + 3\", \"trackName\":\"A Tale of Two Cities\", \"collectionCensoredName\":\"LOST, + Season 3\", \"trackCensoredName\":\"A Tale of Two Cities\", \"artistViewUrl\":\"http://itunes.apple.com/us/tv-show/lost/id66012553?uo=4\", + \"collectionViewUrl\":\"http://itunes.apple.com/us/tv-season/a-tale-of-two-cities/id200507719?i=196354978&uo=4\", + \"trackViewUrl\":\"http://itunes.apple.com/us/tv-season/a-tale-of-two-cities/id200507719?i=196354978&uo=4\", + \"previewUrl\":\"http://a1320.v.phobos.apple.com/us/r1000/024/Video/2f/74/f6/mzm.lulvwuqk..640x480.h264lc.d2.p.m4v\", + \"artworkUrl30\":\"http://a3.mzstatic.com/us/r30/Video/e6/f5/54/mzl.xrciclpo.40x30-75.jpg\", + \"artworkUrl60\":\"http://a4.mzstatic.com/us/r30/Video/e6/f5/54/mzl.xrciclpo.80x60-75.jpg\", + \"artworkUrl100\":\"http://a1.mzstatic.com/us/r30/Video/e6/f5/54/mzl.xrciclpo.100x100-75.jpg\", + \"collectionPrice\":24.99, \"trackPrice\":1.99, \"releaseDate\":\"2006-10-04T07:00:00Z\", + \"collectionExplicitness\":\"notExplicit\", \"trackExplicitness\":\"notExplicit\", + \"discCount\":1, \"discNumber\":1, \"trackCount\":23, \"trackNumber\":1, \"trackTimeMillis\":2606541.0, + \"country\":\"USA\", \"currency\":\"USD\", \"primaryGenreName\":\"Drama\", \"contentAdvisoryRating\":\"TV-14\", + \n\"shortDescription\":\"In the season premiere episode, \\\"A Tale of Two Cities,\\\" + Jack, Kate and Sawyer begin to discover what they are up against as prisoners + of \\\"The Others.\\\"\", \n\"longDescription\":\"In the season premiere episode, + \\\"A Tale of Two Cities,\\\" Jack, Kate and Sawyer begin to discover what they + are up against as prisoners of \\\"The Others.\\\"\"}, \n{\"wrapperType\":\"track\", + \"kind\":\"tv-episode\", \"artistId\":66012553, \"collectionId\":82050675, \"trackId\":81947353, + \"artistName\":\"LOST\", \"collectionName\":\"LOST, Season 2\", \"trackName\":\"Adrift\", + \"collectionCensoredName\":\"LOST, Season 2\", \"trackCensoredName\":\"Adrift\", + \"artistViewUrl\":\"http://itunes.apple.com/us/tv-show/lost/id66012553?uo=4\", + \"collectionViewUrl\":\"http://itunes.apple.com/us/tv-season/adrift/id82050675?i=81947353&uo=4\", + \"trackViewUrl\":\"http://itunes.apple.com/us/tv-season/adrift/id82050675?i=81947353&uo=4\", + \"previewUrl\":\"http://a766.v.phobos.apple.com/us/r1000/037/Video/5a/e1/63/mzm.lmfflxkg..640x480.h264lc.d2.p.m4v\", + \"artworkUrl30\":\"http://a1.mzstatic.com/us/r1000/018/Music/0c/1a/a2/mzi.xgfstyqw.40x30-75.jpg\", + \"artworkUrl60\":\"http://a2.mzstatic.com/us/r1000/018/Music/0c/1a/a2/mzi.xgfstyqw.80x60-75.jpg\", + \"artworkUrl100\":\"http://a4.mzstatic.com/us/r1000/018/Music/0c/1a/a2/mzi.xgfstyqw.100x100-75.jpg\", + \"collectionPrice\":24.99, \"trackPrice\":1.99, \"releaseDate\":\"2005-09-28T07:00:00Z\", + \"collectionExplicitness\":\"notExplicit\", \"trackExplicitness\":\"notExplicit\", + \"discCount\":1, \"discNumber\":1, \"trackCount\":24, \"trackNumber\":2, \"trackTimeMillis\":2547588.0, + \"country\":\"USA\", \"currency\":\"USD\", \"primaryGenreName\":\"Drama\", \"contentAdvisoryRating\":\"TV-14\", + \n\"shortDescription\":\"With the abduction of Walt fresh on their minds and + their raft destroyed, Michael, Sawyer, and Jin fight for their lives and discover + a new predator in the roiling ocean.\", \n\"longDescription\":\"With the abduction + of Walt fresh on their minds and their raft destroyed, Michael, Sawyer, and + Jin fight for their lives and discover a new predator in the roiling ocean. + Meanwhile on land, Locke must descend into the hatch when one castaway goes + missing inside. Jolene Blalock guest stars.\"}, \n{\"wrapperType\":\"track\", + \"kind\":\"tv-episode\", \"artistId\":66012553, \"collectionId\":200507719, + \"trackId\":201576443, \"artistName\":\"LOST\", \"collectionName\":\"LOST, Season + 3\", \"trackName\":\"The Glass Ballerina\", \"collectionCensoredName\":\"LOST, + Season 3\", \"trackCensoredName\":\"The Glass Ballerina\", \"artistViewUrl\":\"http://itunes.apple.com/us/tv-show/lost/id66012553?uo=4\", + \"collectionViewUrl\":\"http://itunes.apple.com/us/tv-season/the-glass-ballerina/id200507719?i=201576443&uo=4\", + \"trackViewUrl\":\"http://itunes.apple.com/us/tv-season/the-glass-ballerina/id200507719?i=201576443&uo=4\", + \"previewUrl\":\"http://a195.v.phobos.apple.com/us/r1000/057/Video/cf/bc/70/mzm.busyjshz..640x480.h264lc.d2.p.m4v\", + \"artworkUrl30\":\"http://a3.mzstatic.com/us/r30/Video/e6/f5/54/mzl.xrciclpo.40x30-75.jpg\", + \"artworkUrl60\":\"http://a4.mzstatic.com/us/r30/Video/e6/f5/54/mzl.xrciclpo.80x60-75.jpg\", + \"artworkUrl100\":\"http://a1.mzstatic.com/us/r30/Video/e6/f5/54/mzl.xrciclpo.100x100-75.jpg\", + \"collectionPrice\":24.99, \"trackPrice\":1.99, \"releaseDate\":\"2006-10-11T07:00:00Z\", + \"collectionExplicitness\":\"notExplicit\", \"trackExplicitness\":\"notExplicit\", + \"discCount\":1, \"discNumber\":1, \"trackCount\":23, \"trackNumber\":2, \"trackTimeMillis\":2607765.0, + \"country\":\"USA\", \"currency\":\"USD\", \"primaryGenreName\":\"Drama\", \"contentAdvisoryRating\":\"TV-14\", + \n\"shortDescription\":\"Sayid's plan to locate Jack places Sun and Jin's lives + in grave danger. Meanwhile, Kate and Sawyer are forced to work in harsh conditions + by their captors, and Henry makes a very tempting offer to Jack that may prove + difficult to refuse.\", \n\"longDescription\":\"Sayid's plan to locate Jack + places Sun and Jin's lives in grave danger. Meanwhile, Kate and Sawyer are forced + to work in harsh conditions by their captors, and Henry makes a very tempting + offer to Jack that may prove difficult to refuse.\"}, \n{\"wrapperType\":\"track\", + \"kind\":\"tv-episode\", \"artistId\":66012553, \"collectionId\":82050675, \"trackId\":95691988, + \"artistName\":\"LOST\", \"collectionName\":\"LOST, Season 2\", \"trackName\":\"What + Kate Did\", \"collectionCensoredName\":\"LOST, Season 2\", \"trackCensoredName\":\"What + Kate Did\", \"artistViewUrl\":\"http://itunes.apple.com/us/tv-show/lost/id66012553?uo=4\", + \"collectionViewUrl\":\"http://itunes.apple.com/us/tv-season/what-kate-did/id82050675?i=95691988&uo=4\", + \"trackViewUrl\":\"http://itunes.apple.com/us/tv-season/what-kate-did/id82050675?i=95691988&uo=4\", + \"previewUrl\":\"http://a1308.v.phobos.apple.com/us/r1000/004/Video/f0/bd/54/mzm.zfutadkr..640x480.h264lc.d2.p.m4v\", + \"artworkUrl30\":\"http://a3.mzstatic.com/us/r1000/043/Music/0c/1a/a2/mzi.swtkyhen.40x30-75.jpg\", + \"artworkUrl60\":\"http://a1.mzstatic.com/us/r1000/043/Music/0c/1a/a2/mzi.swtkyhen.80x60-75.jpg\", + \"artworkUrl100\":\"http://a5.mzstatic.com/us/r1000/043/Music/0c/1a/a2/mzi.swtkyhen.100x100-75.jpg\", + \"collectionPrice\":24.99, \"trackPrice\":1.99, \"releaseDate\":\"2005-11-30T08:00:00Z\", + \"collectionExplicitness\":\"notExplicit\", \"trackExplicitness\":\"notExplicit\", + \"discCount\":1, \"discNumber\":1, \"trackCount\":24, \"trackNumber\":9, \"trackTimeMillis\":2752793.0, + \"country\":\"USA\", \"currency\":\"USD\", \"primaryGenreName\":\"Drama\", \"contentAdvisoryRating\":\"TV-14\", + \"shortDescription\":\"Kate's original crime that started her life on the run + is revealed.\", \n\"longDescription\":\"Kate's original crime that started her + life on the run is revealed. Meanwhile, the survivors lay one of their own to + rest, Kate sleeplessly watches over a feverish Sawyer, and Mr. Eko has a surprise + for Locke regarding the hatch.\"}, \n{\"wrapperType\":\"track\", \"kind\":\"tv-episode\", + \"artistId\":66012553, \"collectionId\":82050675, \"trackId\":118430749, \"artistName\":\"LOST\", + \"collectionName\":\"LOST, Season 2\", \"trackName\":\"The Hunting Party\", + \"collectionCensoredName\":\"LOST, Season 2\", \"trackCensoredName\":\"The Hunting + Party\", \"artistViewUrl\":\"http://itunes.apple.com/us/tv-show/lost/id66012553?uo=4\", + \"collectionViewUrl\":\"http://itunes.apple.com/us/tv-season/the-hunting-party/id82050675?i=118430749&uo=4\", + \"trackViewUrl\":\"http://itunes.apple.com/us/tv-season/the-hunting-party/id82050675?i=118430749&uo=4\", + \"previewUrl\":\"http://a1183.v.phobos.apple.com/us/r1000/039/Video/c3/cd/9f/mzm.nqkqcdhs..640x480.h264lc.d2.p.m4v\", + \"artworkUrl30\":\"http://a2.mzstatic.com/us/r1000/023/Music/0c/1a/a2/mzi.kpcqopam.40x30-75.jpg\", + \"artworkUrl60\":\"http://a5.mzstatic.com/us/r1000/023/Music/0c/1a/a2/mzi.kpcqopam.80x60-75.jpg\", + \"artworkUrl100\":\"http://a5.mzstatic.com/us/r1000/023/Music/0c/1a/a2/mzi.kpcqopam.100x100-75.jpg\", + \"collectionPrice\":24.99, \"trackPrice\":1.99, \"releaseDate\":\"2006-01-18T08:00:00Z\", + \"collectionExplicitness\":\"notExplicit\", \"trackExplicitness\":\"notExplicit\", + \"discCount\":1, \"discNumber\":1, \"trackCount\":24, \"trackNumber\":11, \"trackTimeMillis\":2592966.0, + \"country\":\"USA\", \"currency\":\"USD\", \"primaryGenreName\":\"Drama\", \"contentAdvisoryRating\":\"TV-PG\", + \"shortDescription\":\"Jack, Locke and Sawyer pursue a determined Michael after + he heads into the jungle toward the dreaded \\\"Others\\\" in search of Walt.\", + \n\"longDescription\":\"Jack, Locke and Sawyer pursue a determined Michael after + he heads into the jungle toward the dreaded \\\"Others\\\" in search of Walt. + Meanwhile, Sun has a surprising reaction to Jin's desire to join the search + party, and Hurley and Charlie commiserate over the age-old conundrum of \\\"what + women want\\\".\"}, \n{\"wrapperType\":\"track\", \"kind\":\"tv-episode\", \"artistId\":66012553, + \"collectionId\":82050675, \"trackId\":82229755, \"artistName\":\"LOST\", \"collectionName\":\"LOST, + Season 2\", \"trackName\":\"Orientation\", \"collectionCensoredName\":\"LOST, + Season 2\", \"trackCensoredName\":\"Orientation\", \"artistViewUrl\":\"http://itunes.apple.com/us/tv-show/lost/id66012553?uo=4\", + \"collectionViewUrl\":\"http://itunes.apple.com/us/tv-season/orientation/id82050675?i=82229755&uo=4\", + \"trackViewUrl\":\"http://itunes.apple.com/us/tv-season/orientation/id82050675?i=82229755&uo=4\", + \"previewUrl\":\"http://a1655.v.phobos.apple.com/us/r1000/000/Video/9c/df/dc/mzm.tiyjckrb..640x480.h264lc.d2.p.m4v\", + \"artworkUrl30\":\"http://a5.mzstatic.com/us/r1000/013/Music/0c/1a/a2/mzi.lzpmvtic.40x30-75.jpg\", + \"artworkUrl60\":\"http://a3.mzstatic.com/us/r1000/013/Music/0c/1a/a2/mzi.lzpmvtic.80x60-75.jpg\", + \"artworkUrl100\":\"http://a5.mzstatic.com/us/r1000/013/Music/0c/1a/a2/mzi.lzpmvtic.100x100-75.jpg\", + \"collectionPrice\":24.99, \"trackPrice\":1.99, \"releaseDate\":\"2005-10-05T07:00:00Z\", + \"collectionExplicitness\":\"notExplicit\", \"trackExplicitness\":\"notExplicit\", + \"discCount\":1, \"discNumber\":1, \"trackCount\":24, \"trackNumber\":3, \"trackTimeMillis\":2592633.0, + \"country\":\"USA\", \"currency\":\"USD\", \"primaryGenreName\":\"Drama\", \"contentAdvisoryRating\":\"TV-14\", + \n\"shortDescription\":\"Jack, Locke, and Kate learn more secrets about the + hatch. Meanwhile, after being beaten and taken captive, Sawyer, Michael, and + Jin wonder if their captors are fellow survivors or the dreaded \\\"Others.\\\"\", + \n\"longDescription\":\"Jack, Locke, and Kate learn more secrets about the hatch. + Meanwhile, after being beaten and taken captive, Sawyer, Michael, and Jin wonder + if their captors are fellow survivors or the dreaded \\\"Others.\\\"\"}, \n{\"wrapperType\":\"track\", + \"kind\":\"tv-episode\", \"artistId\":66012553, \"collectionId\":82050675, \"trackId\":129240376, + \"artistName\":\"LOST\", \"collectionName\":\"LOST, Season 2\", \"trackName\":\"Maternity + Leave\", \"collectionCensoredName\":\"LOST, Season 2\", \"trackCensoredName\":\"Maternity + Leave\", \"artistViewUrl\":\"http://itunes.apple.com/us/tv-show/lost/id66012553?uo=4\", + \"collectionViewUrl\":\"http://itunes.apple.com/us/tv-season/maternity-leave/id82050675?i=129240376&uo=4\", + \"trackViewUrl\":\"http://itunes.apple.com/us/tv-season/maternity-leave/id82050675?i=129240376&uo=4\", + \"previewUrl\":\"http://a634.v.phobos.apple.com/us/r1000/053/Video/1a/73/3b/mzm.daetwrdv..640x480.h264lc.d2.p.m4v\", + \"artworkUrl30\":\"http://a3.mzstatic.com/us/r1000/028/Music/0c/1a/a2/mzi.nthjgcdl.40x30-75.jpg\", + \"artworkUrl60\":\"http://a1.mzstatic.com/us/r1000/028/Music/0c/1a/a2/mzi.nthjgcdl.80x60-75.jpg\", + \"artworkUrl100\":\"http://a5.mzstatic.com/us/r1000/028/Music/0c/1a/a2/mzi.nthjgcdl.100x100-75.jpg\", + \"collectionPrice\":24.99, \"trackPrice\":1.99, \"releaseDate\":\"2006-03-01T08:00:00Z\", + \"collectionExplicitness\":\"notExplicit\", \"trackExplicitness\":\"notExplicit\", + \"discCount\":1, \"discNumber\":1, \"trackCount\":24, \"trackNumber\":15, \"trackTimeMillis\":2766808.0, + \"country\":\"USA\", \"currency\":\"USD\", \"primaryGenreName\":\"Drama\", \"contentAdvisoryRating\":\"TV-14\", + \n\"shortDescription\":\"A desperate Claire, along with Kate and Rousseau, attempts + a return to the scene of her kidnapping where she believes she might find the + cure for Baby Aaron\\u2019s mysterious illness.\", \n\"longDescription\":\"A + desperate Claire, along with Kate and Rousseau, attempts a return to the scene + of her kidnapping where she believes she might find the cure for Baby Aaron's + mysterious illness. Meanwhile, Jack and Locke must keep their prisoner a secret + from the rest of the survivors\"}, \n{\"wrapperType\":\"track\", \"kind\":\"tv-episode\", + \"artistId\":66012553, \"collectionId\":82050675, \"trackId\":125648552, \"artistName\":\"LOST\", + \"collectionName\":\"LOST, Season 2\", \"trackName\":\"One of Them\", \"collectionCensoredName\":\"LOST, + Season 2\", \"trackCensoredName\":\"One of Them\", \"artistViewUrl\":\"http://itunes.apple.com/us/tv-show/lost/id66012553?uo=4\", + \"collectionViewUrl\":\"http://itunes.apple.com/us/tv-season/one-of-them/id82050675?i=125648552&uo=4\", + \"trackViewUrl\":\"http://itunes.apple.com/us/tv-season/one-of-them/id82050675?i=125648552&uo=4\", + \"previewUrl\":\"http://a53.v.phobos.apple.com/us/r1000/051/Video/8a/14/31/mzm.cumfpsqd..640x480.h264lc.d2.p.m4v\", + \"artworkUrl30\":\"http://a3.mzstatic.com/us/r1000/025/Features/a2/78/bf/dj.vkvpvhkw.40x30-75.jpg\", + \"artworkUrl60\":\"http://a1.mzstatic.com/us/r1000/025/Features/a2/78/bf/dj.vkvpvhkw.80x60-75.jpg\", + \"artworkUrl100\":\"http://a5.mzstatic.com/us/r1000/025/Features/a2/78/bf/dj.vkvpvhkw.100x100-75.jpg\", + \"collectionPrice\":24.99, \"trackPrice\":1.99, \"releaseDate\":\"2006-02-15T08:00:00Z\", + \"collectionExplicitness\":\"notExplicit\", \"trackExplicitness\":\"notExplicit\", + \"discCount\":1, \"discNumber\":1, \"trackCount\":24, \"trackNumber\":14, \"trackTimeMillis\":2683808.0, + \"country\":\"USA\", \"currency\":\"USD\", \"primaryGenreName\":\"Drama\", \"contentAdvisoryRating\":\"TV-14\", + \"shortDescription\":\"When Rousseau leads Sayid to a mysterious captive in + the jungle, he becomes determined to find out if he is one of the \\\"Others.\\\"\", + \n\"longDescription\":\"When Rousseau leads Sayid to a mysterious captive in + the jungle, he becomes determined to find out if he is one of the \\\"Others.\\\" + Meanwhile, Sawyer discovers Hurley's potentially devastating breech of the survivors' + trust and blackmails him into helping track an elusive island creature that + won't leave Sawyer alone.\"}, \n{\"wrapperType\":\"track\", \"kind\":\"tv-episode\", + \"artistId\":66012553, \"collectionId\":82050675, \"trackId\":152461938, \"artistName\":\"LOST\", + \"collectionName\":\"LOST, Season 2\", \"trackName\":\"Live Together, Die Alone, + Pt. 2\", \"collectionCensoredName\":\"LOST, Season 2\", \"trackCensoredName\":\"Live + Together, Die Alone, Pt. 2\", \"artistViewUrl\":\"http://itunes.apple.com/us/tv-show/lost/id66012553?uo=4\", + \"collectionViewUrl\":\"http://itunes.apple.com/us/tv-season/live-together-die-alone-pt.-2/id82050675?i=152461938&uo=4\", + \"trackViewUrl\":\"http://itunes.apple.com/us/tv-season/live-together-die-alone-pt.-2/id82050675?i=152461938&uo=4\", + \"previewUrl\":\"http://a1875.v.phobos.apple.com/us/r1000/028/Video/42/46/48/mzm.nxqxmnna..640x480.h264lc.d2.p.m4v\", + \"artworkUrl30\":\"http://a3.mzstatic.com/us/r1000/015/Features/0c/1a/a2/dj.shywrpgj.40x30-75.jpg\", + \"artworkUrl60\":\"http://a1.mzstatic.com/us/r1000/015/Features/0c/1a/a2/dj.shywrpgj.80x60-75.jpg\", + \"artworkUrl100\":\"http://a1.mzstatic.com/us/r1000/015/Features/0c/1a/a2/dj.shywrpgj.100x100-75.jpg\", + \"collectionPrice\":24.99, \"trackPrice\":1.99, \"releaseDate\":\"2006-05-24T07:00:00Z\", + \"collectionExplicitness\":\"notExplicit\", \"trackExplicitness\":\"notExplicit\", + \"discCount\":1, \"discNumber\":1, \"trackCount\":24, \"trackNumber\":24, \"trackTimeMillis\":2598640.0, + \"country\":\"USA\", \"currency\":\"USD\", \"primaryGenreName\":\"Drama\", \"contentAdvisoryRating\":\"TV-14\", + \n\"shortDescription\":\"After discovering something odd just offshore, Jack + and Sayid come up with a plan to confront \\\"The Others\\\" and hopefully get + Walt back. Meanwhile, Eko and Locke come to blows as Locke makes a potentially + cataclysmic decision regarding the \\\"button\\\" and the hatch, on the season + finale.\", \n\"longDescription\":\"After discovering something odd just offshore, + Jack and Sayid come up with a plan to confront \\\"The Others\\\" and hopefully + get Walt back. Meanwhile, Eko and Locke come to blows as Locke makes a potentially + cataclysmic decision regarding the \\\"button\\\" and the hatch, on the season + finale.\"}, \n{\"wrapperType\":\"track\", \"kind\":\"tv-episode\", \"artistId\":66012553, + \"collectionId\":200507719, \"trackId\":200749249, \"artistName\":\"LOST\", + \"collectionName\":\"LOST, Season 3\", \"trackName\":\"Further Instructions\", + \"collectionCensoredName\":\"LOST, Season 3\", \"trackCensoredName\":\"Further + Instructions\", \"artistViewUrl\":\"http://itunes.apple.com/us/tv-show/lost/id66012553?uo=4\", + \"collectionViewUrl\":\"http://itunes.apple.com/us/tv-season/further-instructions/id200507719?i=200749249&uo=4\", + \"trackViewUrl\":\"http://itunes.apple.com/us/tv-season/further-instructions/id200507719?i=200749249&uo=4\", + \"previewUrl\":\"http://a1529.v.phobos.apple.com/us/r1000/028/Video/4c/9b/2b/mzm.vyjuvlpq..640x480.h264lc.d2.p.m4v\", + \"artworkUrl30\":\"http://a3.mzstatic.com/us/r30/Video/e6/f5/54/mzl.xrciclpo.40x30-75.jpg\", + \"artworkUrl60\":\"http://a4.mzstatic.com/us/r30/Video/e6/f5/54/mzl.xrciclpo.80x60-75.jpg\", + \"artworkUrl100\":\"http://a1.mzstatic.com/us/r30/Video/e6/f5/54/mzl.xrciclpo.100x100-75.jpg\", + \"collectionPrice\":24.99, \"trackPrice\":1.99, \"releaseDate\":\"2006-10-18T07:00:00Z\", + \"collectionExplicitness\":\"notExplicit\", \"trackExplicitness\":\"notExplicit\", + \"discCount\":1, \"discNumber\":1, \"trackCount\":23, \"trackNumber\":3, \"trackTimeMillis\":2534046.0, + \"country\":\"USA\", \"currency\":\"USD\", \"primaryGenreName\":\"Drama\", \"contentAdvisoryRating\":\"TV-14\", + \n\"shortDescription\":\"The fates of Locke, Eko and Desmond are revealed after + the implosion of the hatch, while Hurley returns to the beach camp to tell the tale + of what happened when he, Jack, Kate and Sawyer encountered \\\"The Others.\\\" + Meanwhile, Claire is shocked to find Nikki and Paulo in Jack's tent.\", \n\"longDescription\":\"The + fates of Locke, Eko and Desmond are revealed after the implosion of the hatch, + while Hurley returns to the beach camp to tell the tale of what happened when + he, Jack, Kate and Sawyer encountered \\\"The Others.\\\" Meanwhile, Claire + is shocked to find Nikki and Paulo in Jack's tent.\"}, \n{\"wrapperType\":\"track\", + \"kind\":\"tv-episode\", \"artistId\":66012553, \"collectionId\":82050675, \"trackId\":95691986, + \"artistName\":\"LOST\", \"collectionName\":\"LOST, Season 2\", \"trackName\":\"Collision\", + \"collectionCensoredName\":\"LOST, Season 2\", \"trackCensoredName\":\"Collision\", + \"artistViewUrl\":\"http://itunes.apple.com/us/tv-show/lost/id66012553?uo=4\", + \"collectionViewUrl\":\"http://itunes.apple.com/us/tv-season/collision/id82050675?i=95691986&uo=4\", + \"trackViewUrl\":\"http://itunes.apple.com/us/tv-season/collision/id82050675?i=95691986&uo=4\", + \"previewUrl\":\"http://a53.v.phobos.apple.com/us/r1000/018/Video/e1/70/cf/mzm.iwshpcce..640x480.h264lc.d2.p.m4v\", + \"artworkUrl30\":\"http://a4.mzstatic.com/us/r1000/024/Music/0c/1a/a2/mzi.rluuquqr.40x30-75.jpg\", + \"artworkUrl60\":\"http://a2.mzstatic.com/us/r1000/024/Music/0c/1a/a2/mzi.rluuquqr.80x60-75.jpg\", + \"artworkUrl100\":\"http://a4.mzstatic.com/us/r1000/024/Music/0c/1a/a2/mzi.rluuquqr.100x100-75.jpg\", + \"collectionPrice\":24.99, \"trackPrice\":1.99, \"releaseDate\":\"2005-11-23T08:00:00Z\", + \"collectionExplicitness\":\"notExplicit\", \"trackExplicitness\":\"notExplicit\", + \"discCount\":1, \"discNumber\":1, \"trackCount\":24, \"trackNumber\":8, \"trackTimeMillis\":2548340.0, + \"country\":\"USA\", \"currency\":\"USD\", \"primaryGenreName\":\"Drama\", \"contentAdvisoryRating\":\"TV-14\", + \"shortDescription\":\"Tempers flare when Ana Lucia and her group stumble upon + Sayid and the other castaways.\", \"longDescription\":\"Tempers flare when Ana + Lucia and her group stumble upon Sayid and the other castaways.\"}, \n{\"wrapperType\":\"track\", + \"kind\":\"tv-episode\", \"artistId\":66012553, \"collectionId\":82050675, \"trackId\":83324782, + \"artistName\":\"LOST\", \"collectionName\":\"LOST, Season 2\", \"trackName\":\"The + Other 48 Days\", \"collectionCensoredName\":\"LOST, Season 2\", \"trackCensoredName\":\"The + Other 48 Days\", \"artistViewUrl\":\"http://itunes.apple.com/us/tv-show/lost/id66012553?uo=4\", + \"collectionViewUrl\":\"http://itunes.apple.com/us/tv-season/the-other-48-days/id82050675?i=83324782&uo=4\", + \"trackViewUrl\":\"http://itunes.apple.com/us/tv-season/the-other-48-days/id82050675?i=83324782&uo=4\", + \"previewUrl\":\"http://a1289.v.phobos.apple.com/us/r1000/014/Video/c7/44/53/mzm.ogkahyej..640x480.h264lc.d2.p.m4v\", + \"artworkUrl30\":\"http://a5.mzstatic.com/us/r1000/078/Music/0c/1a/a2/mzi.uxvkgytj.40x30-75.jpg\", + \"artworkUrl60\":\"http://a3.mzstatic.com/us/r1000/078/Music/0c/1a/a2/mzi.uxvkgytj.80x60-75.jpg\", + \"artworkUrl100\":\"http://a2.mzstatic.com/us/r1000/078/Music/0c/1a/a2/mzi.uxvkgytj.100x100-75.jpg\", + \"collectionPrice\":24.99, \"trackPrice\":1.99, \"releaseDate\":\"2005-11-16T08:00:00Z\", + \"collectionExplicitness\":\"notExplicit\", \"trackExplicitness\":\"notExplicit\", + \"discCount\":1, \"discNumber\":1, \"trackCount\":24, \"trackNumber\":7, \"trackTimeMillis\":2790046.0, + \"country\":\"USA\", \"currency\":\"USD\", \"primaryGenreName\":\"Drama\", \"contentAdvisoryRating\":\"TV-14\", + \"shortDescription\":\"The harrowing first 48 days in the lives of the tail + section survivors are revealed.\", \"longDescription\":\"The harrowing first + 48 days in the lives of the tail section survivors are revealed.\"}, \n{\"wrapperType\":\"track\", + \"kind\":\"tv-episode\", \"artistId\":66012553, \"collectionId\":82050675, \"trackId\":122580239, + \"artistName\":\"LOST\", \"collectionName\":\"LOST, Season 2\", \"trackName\":\"The + Long Con\", \"collectionCensoredName\":\"LOST, Season 2\", \"trackCensoredName\":\"The + Long Con\", \"artistViewUrl\":\"http://itunes.apple.com/us/tv-show/lost/id66012553?uo=4\", + \"collectionViewUrl\":\"http://itunes.apple.com/us/tv-season/the-long-con/id82050675?i=122580239&uo=4\", + \"trackViewUrl\":\"http://itunes.apple.com/us/tv-season/the-long-con/id82050675?i=122580239&uo=4\", + \"previewUrl\":\"http://a893.v.phobos.apple.com/us/r1000/058/Video/8b/69/ba/mzm.bruiikxv..640x480.h264lc.d2.p.m4v\", + \"artworkUrl30\":\"http://a2.mzstatic.com/us/r1000/007/Music/0c/1a/a2/mzi.sparrfol.40x30-75.jpg\", + \"artworkUrl60\":\"http://a3.mzstatic.com/us/r1000/007/Music/0c/1a/a2/mzi.sparrfol.80x60-75.jpg\", + \"artworkUrl100\":\"http://a5.mzstatic.com/us/r1000/007/Music/0c/1a/a2/mzi.sparrfol.100x100-75.jpg\", + \"collectionPrice\":24.99, \"trackPrice\":1.99, \"releaseDate\":\"2006-02-08T08:00:00Z\", + \"collectionExplicitness\":\"notExplicit\", \"trackExplicitness\":\"notExplicit\", + \"discCount\":1, \"discNumber\":1, \"trackCount\":24, \"trackNumber\":13, \"trackTimeMillis\":2663830.0, + \"country\":\"USA\", \"currency\":\"USD\", \"primaryGenreName\":\"Drama\", \"contentAdvisoryRating\":\"TV-14\", + \n\"shortDescription\":\"Survivors fear that \\\"The Others\\\" may have returned + when Sun is injured during a failed kidnapping attempt. Meanwhile, Sawyer is + an amused but highly interested bystander when tension escalates between Jack, + Locke, Kate and Ana Lucia, on \\\"Lost.\\\"\", \n\"longDescription\":\"Survivors + fear that \\\"The Others\\\" may have returned when Sun is injured during a + failed kidnapping attempt. Meanwhile, Sawyer is an amused but highly interested + bystander when tension escalates between Jack, Locke, Kate and Ana Lucia, on + \\\"Lost.\\\"\"}, \n{\"wrapperType\":\"track\", \"kind\":\"tv-episode\", \"artistId\":66012553, + \"collectionId\":82050675, \"trackId\":135645891, \"artistName\":\"LOST\", \"collectionName\":\"LOST, + Season 2\", \"trackName\":\"Dave\", \"collectionCensoredName\":\"LOST, Season + 2\", \"trackCensoredName\":\"Dave\", \"artistViewUrl\":\"http://itunes.apple.com/us/tv-show/lost/id66012553?uo=4\", + \"collectionViewUrl\":\"http://itunes.apple.com/us/tv-season/dave/id82050675?i=135645891&uo=4\", + \"trackViewUrl\":\"http://itunes.apple.com/us/tv-season/dave/id82050675?i=135645891&uo=4\", + \"previewUrl\":\"http://a1399.v.phobos.apple.com/us/r1000/037/Video/0d/1b/e9/mzm.uwxztqgp..640x480.h264lc.d2.p.m4v\", + \"artworkUrl30\":\"http://a3.mzstatic.com/us/r1000/015/Features/0c/1a/a2/dj.shywrpgj.40x30-75.jpg\", + \"artworkUrl60\":\"http://a1.mzstatic.com/us/r1000/015/Features/0c/1a/a2/dj.shywrpgj.80x60-75.jpg\", + \"artworkUrl100\":\"http://a1.mzstatic.com/us/r1000/015/Features/0c/1a/a2/dj.shywrpgj.100x100-75.jpg\", + \"collectionPrice\":24.99, \"trackPrice\":1.99, \"releaseDate\":\"2006-04-05T07:00:00Z\", + \"collectionExplicitness\":\"notExplicit\", \"trackExplicitness\":\"notExplicit\", + \"discCount\":1, \"discNumber\":1, \"trackCount\":24, \"trackNumber\":18, \"trackTimeMillis\":2779820.0, + \"country\":\"USA\", \"currency\":\"USD\", \"primaryGenreName\":\"Drama\", \"contentAdvisoryRating\":\"TV-14\", + \n\"shortDescription\":\"Libby lends Hurley support when he begins to think + the island is having a strange effect on him, and Locke's sense of purpose is + shaken when the prisoner provides new information about the hatch.\", \n\"longDescription\":\"Libby + lends Hurley support when he begins to think the island is having a strange + effect on him, and Locke's sense of purpose is shaken when the prisoner provides + new information about the hatch.\"}, \n{\"wrapperType\":\"track\", \"kind\":\"tv-episode\", + \"artistId\":66012553, \"collectionId\":82050675, \"trackId\":146691552, \"artistName\":\"LOST\", + \"collectionName\":\"LOST, Season 2\", \"trackName\":\"S.O.S.\", \"collectionCensoredName\":\"LOST, + Season 2\", \"trackCensoredName\":\"S.O.S.\", \"artistViewUrl\":\"http://itunes.apple.com/us/tv-show/lost/id66012553?uo=4\", + \"collectionViewUrl\":\"http://itunes.apple.com/us/tv-season/s.o.s./id82050675?i=146691552&uo=4\", + \"trackViewUrl\":\"http://itunes.apple.com/us/tv-season/s.o.s./id82050675?i=146691552&uo=4\", + \"previewUrl\":\"http://a367.v.phobos.apple.com/us/r1000/057/Video/95/b2/8a/mzm.kspaixtn..640x480.h264lc.d2.p.m4v\", + \"artworkUrl30\":\"http://a3.mzstatic.com/us/r1000/015/Features/0c/1a/a2/dj.shywrpgj.40x30-75.jpg\", + \"artworkUrl60\":\"http://a1.mzstatic.com/us/r1000/015/Features/0c/1a/a2/dj.shywrpgj.80x60-75.jpg\", + \"artworkUrl100\":\"http://a1.mzstatic.com/us/r1000/015/Features/0c/1a/a2/dj.shywrpgj.100x100-75.jpg\", + \"collectionPrice\":24.99, \"trackPrice\":1.99, \"releaseDate\":\"2006-04-12T07:00:00Z\", + \"collectionExplicitness\":\"notExplicit\", \"trackExplicitness\":\"notExplicit\", + \"discCount\":1, \"discNumber\":1, \"trackCount\":24, \"trackNumber\":19, \"trackTimeMillis\":2595636.0, + \"country\":\"USA\", \"currency\":\"USD\", \"primaryGenreName\":\"Drama\", \"contentAdvisoryRating\":\"TV-PG\", + \n\"shortDescription\":\"Rose is surprisingly and vehemently opposed to Bernard\\u2019s + plan to create an S.O.S. signal; romantic sparks are rekindled between Jack + and Kate when they trek into the jungle to propose a \\\"trade\\\" with \\\"The + Others\\\".\", \n\"longDescription\":\"Rose is surprisingly and vehemently opposed + to Bernard's plan to create an S.O.S. signal; romantic sparks are rekindled + between Jack and Kate when they trek into the jungle to propose a \\\"trade\\\" + with \\\"The Others\\\"; and Locke begins to question his faith in the island.\"}, + \n{\"wrapperType\":\"track\", \"kind\":\"tv-episode\", \"artistId\":66012553, + \"collectionId\":82050675, \"trackId\":82680684, \"artistName\":\"LOST\", \"collectionName\":\"LOST, + Season 2\", \"trackName\":\"Everybody Hates Hugo\", \"collectionCensoredName\":\"LOST, + Season 2\", \"trackCensoredName\":\"Everybody Hates Hugo\", \"artistViewUrl\":\"http://itunes.apple.com/us/tv-show/lost/id66012553?uo=4\", + \"collectionViewUrl\":\"http://itunes.apple.com/us/tv-season/everybody-hates-hugo/id82050675?i=82680684&uo=4\", + \"trackViewUrl\":\"http://itunes.apple.com/us/tv-season/everybody-hates-hugo/id82050675?i=82680684&uo=4\", + \"previewUrl\":\"http://a539.v.phobos.apple.com/us/r1000/023/Video/0a/26/80/mzm.uokedxgf..640x480.h264lc.d2.p.m4v\", + \"artworkUrl30\":\"http://a3.mzstatic.com/us/r1000/015/Features/0c/1a/a2/dj.shywrpgj.40x30-75.jpg\", + \"artworkUrl60\":\"http://a1.mzstatic.com/us/r1000/015/Features/0c/1a/a2/dj.shywrpgj.80x60-75.jpg\", + \"artworkUrl100\":\"http://a1.mzstatic.com/us/r1000/015/Features/0c/1a/a2/dj.shywrpgj.100x100-75.jpg\", + \"collectionPrice\":24.99, \"trackPrice\":1.99, \"releaseDate\":\"2005-10-12T07:00:00Z\", + \"collectionExplicitness\":\"notExplicit\", \"trackExplicitness\":\"notExplicit\", + \"discCount\":1, \"discNumber\":1, \"trackCount\":24, \"trackNumber\":4, \"trackTimeMillis\":2605823.0, + \"country\":\"USA\", \"currency\":\"USD\", \"primaryGenreName\":\"Drama\", \"contentAdvisoryRating\":\"TV-14\", + \"shortDescription\":\"Disturbing memories from Hurley\\u2019s past cause him + to struggle with a task he\\u2019s assigned inside the hatch.\", \n\"longDescription\":\"Disturbing + memories from Hurley\\u2019s past cause him to struggle with a task he\\u2019s + assigned inside the hatch. Meanwhile Sawyer, Michael and Jin discover the identities + of their captors, and Claire uncovers a shocking piece of information about + the fate of the raft.\"}, \n{\"wrapperType\":\"track\", \"kind\":\"tv-episode\", + \"artistId\":66012553, \"collectionId\":82050675, \"trackId\":135645889, \"artistName\":\"LOST\", + \"collectionName\":\"LOST, Season 2\", \"trackName\":\"Lockdown\", \"collectionCensoredName\":\"LOST, + Season 2\", \"trackCensoredName\":\"Lockdown\", \"artistViewUrl\":\"http://itunes.apple.com/us/tv-show/lost/id66012553?uo=4\", + \"collectionViewUrl\":\"http://itunes.apple.com/us/tv-season/lockdown/id82050675?i=135645889&uo=4\", + \"trackViewUrl\":\"http://itunes.apple.com/us/tv-season/lockdown/id82050675?i=135645889&uo=4\", + \"previewUrl\":\"http://a551.v.phobos.apple.com/us/r1000/017/Video/41/24/52/mzm.hcsojnmk..640x480.h264lc.d2.p.m4v\", + \"artworkUrl30\":\"http://a3.mzstatic.com/us/r1000/015/Features/0c/1a/a2/dj.shywrpgj.40x30-75.jpg\", + \"artworkUrl60\":\"http://a1.mzstatic.com/us/r1000/015/Features/0c/1a/a2/dj.shywrpgj.80x60-75.jpg\", + \"artworkUrl100\":\"http://a1.mzstatic.com/us/r1000/015/Features/0c/1a/a2/dj.shywrpgj.100x100-75.jpg\", + \"collectionPrice\":24.99, \"trackPrice\":1.99, \"releaseDate\":\"2006-03-29T08:00:00Z\", + \"collectionExplicitness\":\"notExplicit\", \"trackExplicitness\":\"notExplicit\", + \"discCount\":1, \"discNumber\":1, \"trackCount\":24, \"trackNumber\":17, \"trackTimeMillis\":2595636.0, + \"country\":\"USA\", \"currency\":\"USD\", \"primaryGenreName\":\"Drama\", \"contentAdvisoryRating\":\"TV-PG\", + \n\"shortDescription\":\"When the hatch suddenly takes on a life of its own, + Locke is forced to enlist the help of an unlikely ally. Meanwhile, Ana Lucia, + Sayid and Charlie go off into the jungle to find out the truth about Henry.\", + \n\"longDescription\":\"When the hatch suddenly takes on a life of its own, + Locke is forced to enlist the help of an unlikely ally. Meanwhile, Ana Lucia, + Sayid and Charlie go off into the jungle to find out the truth about Henry.\"}, + \n{\"wrapperType\":\"track\", \"kind\":\"tv-episode\", \"artistId\":66012553, + \"collectionId\":82050675, \"trackId\":115069169, \"artistName\":\"LOST\", \"collectionName\":\"LOST, + Season 2\", \"trackName\":\"The 23rd Psalm\", \"collectionCensoredName\":\"LOST, + Season 2\", \"trackCensoredName\":\"The 23rd Psalm\", \"artistViewUrl\":\"http://itunes.apple.com/us/tv-show/lost/id66012553?uo=4\", + \"collectionViewUrl\":\"http://itunes.apple.com/us/tv-season/the-23rd-psalm/id82050675?i=115069169&uo=4\", + \"trackViewUrl\":\"http://itunes.apple.com/us/tv-season/the-23rd-psalm/id82050675?i=115069169&uo=4\", + \"previewUrl\":\"http://a1913.v.phobos.apple.com/us/r1000/023/Video/08/21/f3/mzm.octunhmx..640x480.h264lc.d2.p.m4v\", + \"artworkUrl30\":\"http://a3.mzstatic.com/us/r1000/025/Music/0c/1a/a2/mzi.vxmnvjnt.40x30-75.jpg\", + \"artworkUrl60\":\"http://a1.mzstatic.com/us/r1000/025/Music/0c/1a/a2/mzi.vxmnvjnt.80x60-75.jpg\", + \"artworkUrl100\":\"http://a2.mzstatic.com/us/r1000/025/Music/0c/1a/a2/mzi.vxmnvjnt.100x100-75.jpg\", + \"collectionPrice\":24.99, \"trackPrice\":1.99, \"releaseDate\":\"2006-01-11T08:00:00Z\", + \"collectionExplicitness\":\"notExplicit\", \"trackExplicitness\":\"notExplicit\", + \"discCount\":1, \"discNumber\":1, \"trackCount\":24, \"trackNumber\":10, \"trackTimeMillis\":2595720.0, + \"country\":\"USA\", \"currency\":\"USD\", \"primaryGenreName\":\"Drama\", \"contentAdvisoryRating\":\"TV-14\", + \n\"shortDescription\":\"Mr. Eko interrogates Charlie about the Virgin Mary + statue, Claire begins to lose faith in Charlie when she discovers his secret, + and Jack is an interested observer when Kate gives the recovering Sawyer a much-needed + haircut.\", \n\"longDescription\":\"Mr. Eko interrogates Charlie about the Virgin + Mary statue, Claire begins to lose faith in Charlie when she discovers his secret, + and Jack is an interested observer when Kate gives the recovering Sawyer a much-needed + haircut.\"}, \n{\"wrapperType\":\"track\", \"kind\":\"tv-episode\", \"artistId\":66012553, + \"collectionId\":82050675, \"trackId\":83325441, \"artistName\":\"LOST\", \"collectionName\":\"LOST, + Season 2\", \"trackName\":\"...And Found\", \"collectionCensoredName\":\"LOST, + Season 2\", \"trackCensoredName\":\"...And Found\", \"artistViewUrl\":\"http://itunes.apple.com/us/tv-show/lost/id66012553?uo=4\", + \"collectionViewUrl\":\"http://itunes.apple.com/us/tv-season/...and-found/id82050675?i=83325441&uo=4\", + \"trackViewUrl\":\"http://itunes.apple.com/us/tv-season/...and-found/id82050675?i=83325441&uo=4\", + \"previewUrl\":\"http://a201.v.phobos.apple.com/us/r1000/019/Video/ac/d5/63/mzm.okeqnuso..640x480.h264lc.d2.p.m4v\", + \"artworkUrl30\":\"http://a5.mzstatic.com/us/r1000/024/Music/0c/1a/a2/mzi.ncjjtqif.40x30-75.jpg\", + \"artworkUrl60\":\"http://a3.mzstatic.com/us/r1000/024/Music/0c/1a/a2/mzi.ncjjtqif.80x60-75.jpg\", + \"artworkUrl100\":\"http://a2.mzstatic.com/us/r1000/024/Music/0c/1a/a2/mzi.ncjjtqif.100x100-75.jpg\", + \"collectionPrice\":24.99, \"trackPrice\":1.99, \"releaseDate\":\"2005-10-19T07:00:00Z\", + \"collectionExplicitness\":\"notExplicit\", \"trackExplicitness\":\"notExplicit\", + \"discCount\":1, \"discNumber\":1, \"trackCount\":24, \"trackNumber\":5, \"trackTimeMillis\":2545586.0, + \"country\":\"USA\", \"currency\":\"USD\", \"primaryGenreName\":\"Drama\", \"contentAdvisoryRating\":\"TV-PG\", + \"shortDescription\":\"Michael sets off into the jungle by himself determined + to find Walt, but discovers that he is not alone.\", \n\"longDescription\":\"Michael + sets off into the jungle by himself determined to find Walt, but discovers that + he is not alone. Meanwhile, Sawyer and Jin are ordered by their captors to take + them to their camp, and Sun frantically searches for her missing wedding ring.\"}, + \n{\"wrapperType\":\"track\", \"kind\":\"tv-episode\", \"artistId\":66012553, + \"collectionId\":82050675, \"trackId\":156764015, \"artistName\":\"LOST\", \"collectionName\":\"LOST, + Season 2\", \"trackName\":\"Live Together, Die Alone, Pt. 1\", \"collectionCensoredName\":\"LOST, + Season 2\", \"trackCensoredName\":\"Live Together, Die Alone, Pt. 1\", \"artistViewUrl\":\"http://itunes.apple.com/us/tv-show/lost/id66012553?uo=4\", + \"collectionViewUrl\":\"http://itunes.apple.com/us/tv-season/live-together-die-alone-pt.-1/id82050675?i=156764015&uo=4\", + \"trackViewUrl\":\"http://itunes.apple.com/us/tv-season/live-together-die-alone-pt.-1/id82050675?i=156764015&uo=4\", + \"previewUrl\":\"http://a119.v.phobos.apple.com/us/r1000/002/Video/4c/9d/66/mzm.epqqcdur..640x480.h264lc.d2.p.m4v\", + \"artworkUrl30\":\"http://a3.mzstatic.com/us/r1000/015/Features/0c/1a/a2/dj.shywrpgj.40x30-75.jpg\", + \"artworkUrl60\":\"http://a1.mzstatic.com/us/r1000/015/Features/0c/1a/a2/dj.shywrpgj.80x60-75.jpg\", + \"artworkUrl100\":\"http://a1.mzstatic.com/us/r1000/015/Features/0c/1a/a2/dj.shywrpgj.100x100-75.jpg\", + \"collectionPrice\":24.99, \"trackPrice\":1.99, \"releaseDate\":\"2006-05-24T07:00:00Z\", + \"collectionExplicitness\":\"notExplicit\", \"trackExplicitness\":\"notExplicit\", + \"discCount\":1, \"discNumber\":1, \"trackCount\":24, \"trackNumber\":23, \"trackTimeMillis\":2596636.0, + \"country\":\"USA\", \"currency\":\"USD\", \"primaryGenreName\":\"Drama\", \"contentAdvisoryRating\":\"TV-14\", + \n\"shortDescription\":\"After discovering something odd just offshore, Jack + and Sayid come up with a plan to confront \\\"The Others\\\" and hopefully get + Walt back. Meanwhile, Eko and Locke come to blows as Locke makes a potentially + cataclysmic decision regarding the \\\"button\\\" and the hatch, on the season + finale.\", \n\"longDescription\":\"After discovering something odd just offshore, + Jack and Sayid come up with a plan to confront \\\"The Others\\\" and hopefully + get Walt back. Meanwhile, Eko and Locke come to blows as Locke makes a potentially + cataclysmic decision regarding the \\\"button\\\" and the hatch, on the season + finale.\"}, \n{\"wrapperType\":\"track\", \"kind\":\"tv-episode\", \"artistId\":66012553, + \"collectionId\":82050675, \"trackId\":118430756, \"artistName\":\"LOST\", \"collectionName\":\"LOST, + Season 2\", \"trackName\":\"Fire + Water\", \"collectionCensoredName\":\"LOST, + Season 2\", \"trackCensoredName\":\"Fire + Water\", \"artistViewUrl\":\"http://itunes.apple.com/us/tv-show/lost/id66012553?uo=4\", + \"collectionViewUrl\":\"http://itunes.apple.com/us/tv-season/fire-+-water/id82050675?i=118430756&uo=4\", + \"trackViewUrl\":\"http://itunes.apple.com/us/tv-season/fire-+-water/id82050675?i=118430756&uo=4\", + \"previewUrl\":\"http://a1169.v.phobos.apple.com/us/r1000/056/Video/6d/cb/a5/mzm.edcwpewn..640x480.h264lc.d2.p.m4v\", + \"artworkUrl30\":\"http://a3.mzstatic.com/us/r1000/034/Music/0c/1a/a2/mzi.zigrzjga.40x30-75.jpg\", + \"artworkUrl60\":\"http://a1.mzstatic.com/us/r1000/034/Music/0c/1a/a2/mzi.zigrzjga.80x60-75.jpg\", + \"artworkUrl100\":\"http://a1.mzstatic.com/us/r1000/034/Music/0c/1a/a2/mzi.zigrzjga.100x100-75.jpg\", + \"collectionPrice\":24.99, \"trackPrice\":1.99, \"releaseDate\":\"2006-01-25T08:00:00Z\", + \"collectionExplicitness\":\"notExplicit\", \"trackExplicitness\":\"notExplicit\", + \"discCount\":1, \"discNumber\":1, \"trackCount\":24, \"trackNumber\":12, \"trackTimeMillis\":2599903.0, + \"country\":\"USA\", \"currency\":\"USD\", \"primaryGenreName\":\"Drama\", \"contentAdvisoryRating\":\"TV-PG\", + \n\"shortDescription\":\"When Charlie's vividly surreal dreams lead him to believe + Claire's baby, Aaron, is in danger, Locke suspects Charlie may be using again. + Meanwhile, Sawyer encourages Hurley to act on his attraction to Libby, on \\\"Lost.\\\"\", + \n\"longDescription\":\"When Charlie's vividly surreal dreams lead him to believe + Claire's baby, Aaron, is in danger, Locke suspects Charlie may be using again. + Meanwhile, Sawyer encourages Hurley to act on his attraction to Libby, on \\\"Lost.\\\"\"}, + \n{\"wrapperType\":\"track\", \"kind\":\"tv-episode\", \"artistId\":66012553, + \"collectionId\":82050675, \"trackId\":129860775, \"artistName\":\"LOST\", \"collectionName\":\"LOST, + Season 2\", \"trackName\":\"The Whole Truth\", \"collectionCensoredName\":\"LOST, + Season 2\", \"trackCensoredName\":\"The Whole Truth\", \"artistViewUrl\":\"http://itunes.apple.com/us/tv-show/lost/id66012553?uo=4\", + \"collectionViewUrl\":\"http://itunes.apple.com/us/tv-season/the-whole-truth/id82050675?i=129860775&uo=4\", + \"trackViewUrl\":\"http://itunes.apple.com/us/tv-season/the-whole-truth/id82050675?i=129860775&uo=4\", + \"previewUrl\":\"http://a316.v.phobos.apple.com/us/r1000/050/Video/c6/1d/bd/mzm.bdkcdzqz..640x480.h264lc.d2.p.m4v\", + \"artworkUrl30\":\"http://a3.mzstatic.com/us/r1000/015/Features/0c/1a/a2/dj.shywrpgj.40x30-75.jpg\", + \"artworkUrl60\":\"http://a1.mzstatic.com/us/r1000/015/Features/0c/1a/a2/dj.shywrpgj.80x60-75.jpg\", + \"artworkUrl100\":\"http://a1.mzstatic.com/us/r1000/015/Features/0c/1a/a2/dj.shywrpgj.100x100-75.jpg\", + \"collectionPrice\":24.99, \"trackPrice\":1.99, \"releaseDate\":\"2006-03-22T08:00:00Z\", + \"collectionExplicitness\":\"notExplicit\", \"trackExplicitness\":\"notExplicit\", + \"discCount\":1, \"discNumber\":1, \"trackCount\":24, \"trackNumber\":16, \"trackTimeMillis\":2610400.0, + \"country\":\"USA\", \"currency\":\"USD\", \"primaryGenreName\":\"Drama\", \"contentAdvisoryRating\":\"TV-PG\", + \"shortDescription\":\"Sun wrestles with the thought of telling Jin a newfound + secret that threatens to upset the entire balance of the survivors' community.\", + \n\"longDescription\":\"Sun wrestles with the thought of telling Jin a newfound + secret that threatens to upset the entire balance of the survivors' community. + Meanwhile, Locke enlists Ana Lucia to interrogate the prisoner in order to extract + more information than he, Jack or Sayid could.\"}, \n{\"wrapperType\":\"track\", + \"kind\":\"tv-episode\", \"artistId\":66012553, \"collectionId\":82050675, \"trackId\":150194795, + \"artistName\":\"LOST\", \"collectionName\":\"LOST, Season 2\", \"trackName\":\"Two + for the Road\", \"collectionCensoredName\":\"LOST, Season 2\", \"trackCensoredName\":\"Two + for the Road\", \"artistViewUrl\":\"http://itunes.apple.com/us/tv-show/lost/id66012553?uo=4\", + \"collectionViewUrl\":\"http://itunes.apple.com/us/tv-season/two-for-the-road/id82050675?i=150194795&uo=4\", + \"trackViewUrl\":\"http://itunes.apple.com/us/tv-season/two-for-the-road/id82050675?i=150194795&uo=4\", + \"previewUrl\":\"http://a1038.v.phobos.apple.com/us/r1000/035/Video/40/5d/24/mzm.xldokyrr..640x480.h264lc.d2.p.m4v\", + \"artworkUrl30\":\"http://a3.mzstatic.com/us/r1000/015/Features/0c/1a/a2/dj.shywrpgj.40x30-75.jpg\", + \"artworkUrl60\":\"http://a1.mzstatic.com/us/r1000/015/Features/0c/1a/a2/dj.shywrpgj.80x60-75.jpg\", + \"artworkUrl100\":\"http://a1.mzstatic.com/us/r1000/015/Features/0c/1a/a2/dj.shywrpgj.100x100-75.jpg\", + \"collectionPrice\":24.99, \"trackPrice\":1.99, \"releaseDate\":\"2006-05-03T07:00:00Z\", + \"collectionExplicitness\":\"notExplicit\", \"trackExplicitness\":\"notExplicit\", + \"discCount\":1, \"discNumber\":1, \"trackCount\":24, \"trackNumber\":20, \"trackTimeMillis\":2596636.0, + \"country\":\"USA\", \"currency\":\"USD\", \"primaryGenreName\":\"Drama\", \"contentAdvisoryRating\":\"TV-14\", + \n\"shortDescription\":\"Jack and Kate bring an exhausted Michael back to the + camp, and with him, news about \\\"The Others.\\\" Meanwhile, Ana Lucia attempts + to get the prisoner to confess, and Hurley plans a surprise date for Libby.\", + \n\"longDescription\":\"Jack and Kate bring an exhausted Michael back to the + camp, and with him, news about \\\"The Others.\\\" Meanwhile, Ana Lucia attempts + to get the prisoner to confess, and Hurley plans a surprise date for Libby.\"}, + \n{\"wrapperType\":\"track\", \"kind\":\"tv-episode\", \"artistId\":66012553, + \"collectionId\":200507719, \"trackId\":201175874, \"artistName\":\"LOST\", + \"collectionName\":\"LOST, Season 3\", \"trackName\":\"Every Man for Himself\", + \"collectionCensoredName\":\"LOST, Season 3\", \"trackCensoredName\":\"Every + Man for Himself\", \"artistViewUrl\":\"http://itunes.apple.com/us/tv-show/lost/id66012553?uo=4\", + \"collectionViewUrl\":\"http://itunes.apple.com/us/tv-season/every-man-for-himself/id200507719?i=201175874&uo=4\", + \"trackViewUrl\":\"http://itunes.apple.com/us/tv-season/every-man-for-himself/id200507719?i=201175874&uo=4\", + \"previewUrl\":\"http://a842.v.phobos.apple.com/us/r1000/006/Video/27/b2/c3/mzm.lhirqulf..640x480.h264lc.d2.p.m4v\", + \"artworkUrl30\":\"http://a3.mzstatic.com/us/r30/Video/e6/f5/54/mzl.xrciclpo.40x30-75.jpg\", + \"artworkUrl60\":\"http://a4.mzstatic.com/us/r30/Video/e6/f5/54/mzl.xrciclpo.80x60-75.jpg\", + \"artworkUrl100\":\"http://a1.mzstatic.com/us/r30/Video/e6/f5/54/mzl.xrciclpo.100x100-75.jpg\", + \"collectionPrice\":24.99, \"trackPrice\":1.99, \"releaseDate\":\"2006-10-25T07:00:00Z\", + \"collectionExplicitness\":\"notExplicit\", \"trackExplicitness\":\"notExplicit\", + \"discCount\":1, \"discNumber\":1, \"trackCount\":23, \"trackNumber\":4, \"trackTimeMillis\":2607416.0, + \"country\":\"USA\", \"currency\":\"USD\", \"primaryGenreName\":\"Drama\", \"contentAdvisoryRating\":\"TV-14\", + \n\"shortDescription\":\"Sawyer discovers just how far his captors will go to + thwart any plans of escape he and Kate might have, and Jack is called upon to + scrub up in order to save the life of one of \\\"The Others.\\\" Meanwhile, + Desmond's behavior begins to perplex the survivors when he starts construction + on an unknown device.\", \n\"longDescription\":\"Sawyer discovers just how far + his captors will go to thwart any plans of escape he and Kate might have, and + Jack is called upon to scrub up in order to save the life of one of \\\"The + Others.\\\" Meanwhile, Desmond's behavior begins to perplex the survivors when + he starts construction on an unknown device.\"}, \n{\"wrapperType\":\"track\", + \"kind\":\"tv-episode\", \"artistId\":66012553, \"collectionId\":200507719, + \"trackId\":204121612, \"artistName\":\"LOST\", \"collectionName\":\"LOST, Season + 3\", \"trackName\":\"I Do\", \"collectionCensoredName\":\"LOST, Season 3\", + \"trackCensoredName\":\"I Do\", \"artistViewUrl\":\"http://itunes.apple.com/us/tv-show/lost/id66012553?uo=4\", + \"collectionViewUrl\":\"http://itunes.apple.com/us/tv-season/i-do/id200507719?i=204121612&uo=4\", + \"trackViewUrl\":\"http://itunes.apple.com/us/tv-season/i-do/id200507719?i=204121612&uo=4\", + \"previewUrl\":\"http://a1091.v.phobos.apple.com/us/r1000/058/Video/7f/d0/d0/mzm.mmpltysi..640x480.h264lc.d2.p.m4v\", + \"artworkUrl30\":\"http://a3.mzstatic.com/us/r30/Video/e6/f5/54/mzl.xrciclpo.40x30-75.jpg\", + \"artworkUrl60\":\"http://a4.mzstatic.com/us/r30/Video/e6/f5/54/mzl.xrciclpo.80x60-75.jpg\", + \"artworkUrl100\":\"http://a1.mzstatic.com/us/r30/Video/e6/f5/54/mzl.xrciclpo.100x100-75.jpg\", + \"collectionPrice\":24.99, \"trackPrice\":1.99, \"releaseDate\":\"2006-11-08T08:00:00Z\", + \"collectionExplicitness\":\"notExplicit\", \"trackExplicitness\":\"notExplicit\", + \"discCount\":1, \"discNumber\":1, \"trackCount\":23, \"trackNumber\":6, \"trackTimeMillis\":2598500.0, + \"country\":\"USA\", \"currency\":\"USD\", \"primaryGenreName\":\"Drama\", \"contentAdvisoryRating\":\"TV-14\", + \n\"shortDescription\":\"Jack makes a decision regarding Ben's offer, Kate feels + helpless when it looks like an angry Pickett is going to make good on his threat + to kill Sawyer, and Locke discovers a hidden message that may guide him through + the next steps of his journey to unlocking the secrets of the island.\", \n\"longDescription\":\"Jack + makes a decision regarding Ben's offer, Kate feels helpless when it looks like + an angry Pickett is going to make good on his threat to kill Sawyer, and Locke + discovers a hidden message that may guide him through the next steps of his + journey to unlocking the secrets of the island.\"}, \n{\"wrapperType\":\"track\", + \"kind\":\"tv-episode\", \"artistId\":66012553, \"collectionId\":82050675, \"trackId\":83324779, + \"artistName\":\"LOST\", \"collectionName\":\"LOST, Season 2\", \"trackName\":\"Abandoned\", + \"collectionCensoredName\":\"LOST, Season 2\", \"trackCensoredName\":\"Abandoned\", + \"artistViewUrl\":\"http://itunes.apple.com/us/tv-show/lost/id66012553?uo=4\", + \"collectionViewUrl\":\"http://itunes.apple.com/us/tv-season/abandoned/id82050675?i=83324779&uo=4\", + \"trackViewUrl\":\"http://itunes.apple.com/us/tv-season/abandoned/id82050675?i=83324779&uo=4\", + \"previewUrl\":\"http://a373.v.phobos.apple.com/us/r1000/042/Video/a6/56/d1/mzm.bnejluxj..640x480.h264lc.d2.p.m4v\", + \"artworkUrl30\":\"http://a1.mzstatic.com/us/r1000/058/Music/0c/1a/a2/mzi.rainnewf.40x30-75.jpg\", + \"artworkUrl60\":\"http://a2.mzstatic.com/us/r1000/058/Music/0c/1a/a2/mzi.rainnewf.80x60-75.jpg\", + \"artworkUrl100\":\"http://a2.mzstatic.com/us/r1000/058/Music/0c/1a/a2/mzi.rainnewf.100x100-75.jpg\", + \"collectionPrice\":24.99, \"trackPrice\":1.99, \"releaseDate\":\"2005-11-09T08:00:00Z\", + \"collectionExplicitness\":\"notExplicit\", \"trackExplicitness\":\"notExplicit\", + \"discCount\":1, \"discNumber\":1, \"trackCount\":24, \"trackNumber\":6, \"trackTimeMillis\":2573823.0, + \"country\":\"USA\", \"currency\":\"USD\", \"primaryGenreName\":\"Drama\", \"contentAdvisoryRating\":\"TV-PG\", + \"shortDescription\":\"Sawyer's wound becomes life-threatening as he, Michael + and Jin make their way through the interior of the island with the tail section + survivors.\", \n\"longDescription\":\"Sawyer's wound becomes life-threatening + as he, Michael and Jin make their way through the interior of the island with + the tail section survivors. Meanwhile, Shannon is once again haunted by visions + of Walt, and Charlie becomes jealous of Locke's interest in Claire.\"}, \n{\"wrapperType\":\"track\", + \"kind\":\"tv-episode\", \"artistId\":66012553, \"collectionId\":82050675, \"trackId\":151947814, + \"artistName\":\"LOST\", \"collectionName\":\"LOST, Season 2\", \"trackName\":\"\\\"?\\\"\", + \"collectionCensoredName\":\"LOST, Season 2\", \"trackCensoredName\":\"\\\"?\\\"\", + \"artistViewUrl\":\"http://itunes.apple.com/us/tv-show/lost/id66012553?uo=4\", + \"collectionViewUrl\":\"http://itunes.apple.com/us/tv-season//id82050675?i=151947814&uo=4\", + \"trackViewUrl\":\"http://itunes.apple.com/us/tv-season//id82050675?i=151947814&uo=4\", + \"previewUrl\":\"http://a167.v.phobos.apple.com/us/r1000/035/Video/c7/d4/de/mzm.dbfshtfy..640x480.h264lc.d2.p.m4v\", + \"artworkUrl30\":\"http://a3.mzstatic.com/us/r1000/015/Features/0c/1a/a2/dj.shywrpgj.40x30-75.jpg\", + \"artworkUrl60\":\"http://a1.mzstatic.com/us/r1000/015/Features/0c/1a/a2/dj.shywrpgj.80x60-75.jpg\", + \"artworkUrl100\":\"http://a1.mzstatic.com/us/r1000/015/Features/0c/1a/a2/dj.shywrpgj.100x100-75.jpg\", + \"collectionPrice\":24.99, \"trackPrice\":1.99, \"releaseDate\":\"2006-05-10T07:00:00Z\", + \"collectionExplicitness\":\"notExplicit\", \"trackExplicitness\":\"notExplicit\", + \"discCount\":1, \"discNumber\":1, \"trackCount\":24, \"trackNumber\":21, \"trackTimeMillis\":2768810.0, + \"country\":\"USA\", \"currency\":\"USD\", \"primaryGenreName\":\"Drama\", \"contentAdvisoryRating\":\"TV-14\", + \n\"shortDescription\":\"Mr. Eko enlists Locke to help find a secret location + he believes houses answers to the island's mysteries. Meanwhile, Jack and the + other survivors struggle to cope with the horrific situation in the hatch.\", + \n\"longDescription\":\"Mr. Eko enlists Locke to help find a secret location + he believes houses answers to the island's mysteries. Meanwhile, Jack and the + other survivors struggle to cope with the horrific situation in the hatch.\"}, + \n{\"wrapperType\":\"track\", \"kind\":\"tv-episode\", \"artistId\":66012553, + \"collectionId\":82050675, \"trackId\":152461935, \"artistName\":\"LOST\", \"collectionName\":\"LOST, + Season 2\", \"trackName\":\"Three Minutes\", \"collectionCensoredName\":\"LOST, + Season 2\", \"trackCensoredName\":\"Three Minutes\", \"artistViewUrl\":\"http://itunes.apple.com/us/tv-show/lost/id66012553?uo=4\", + \"collectionViewUrl\":\"http://itunes.apple.com/us/tv-season/three-minutes/id82050675?i=152461935&uo=4\", + \"trackViewUrl\":\"http://itunes.apple.com/us/tv-season/three-minutes/id82050675?i=152461935&uo=4\", + \"previewUrl\":\"http://a89.v.phobos.apple.com/us/r1000/025/Video/c2/5f/15/mzm.eyeqttpt..640x480.h264lc.d2.p.m4v\", + \"artworkUrl30\":\"http://a3.mzstatic.com/us/r1000/015/Features/0c/1a/a2/dj.shywrpgj.40x30-75.jpg\", + \"artworkUrl60\":\"http://a1.mzstatic.com/us/r1000/015/Features/0c/1a/a2/dj.shywrpgj.80x60-75.jpg\", + \"artworkUrl100\":\"http://a1.mzstatic.com/us/r1000/015/Features/0c/1a/a2/dj.shywrpgj.100x100-75.jpg\", + \"collectionPrice\":24.99, \"trackPrice\":1.99, \"releaseDate\":\"2006-05-17T07:00:00Z\", + \"collectionExplicitness\":\"notExplicit\", \"trackExplicitness\":\"notExplicit\", + \"discCount\":1, \"discNumber\":1, \"trackCount\":24, \"trackNumber\":22, \"trackTimeMillis\":2717758.0, + \"country\":\"USA\", \"currency\":\"USD\", \"primaryGenreName\":\"Drama\", \"contentAdvisoryRating\":\"TV-14\", + \n\"shortDescription\":\"A determined Michael convinces Jack and several castaways + to help him rescue Walt from \\\"The Others.\\\" With Jack away, Locke is left + in charge of the hatch and must decide if he should believe Henry and not push + the button, risking everyone's safety.\", \n\"longDescription\":\"A determined + Michael convinces Jack and several castaways to help him rescue Walt from \\\"The + Others.\\\" With Jack away, Locke is left in charge of the hatch and must decide + if he should believe Henry and not push the button, risking everyone's safety. + Meanwhile, the events that happened to Michael after he left are finally revealed. + Meanwhile, Charlie struggles with Eko's decision to discontinue building the + church.\"}, \n{\"wrapperType\":\"track\", \"kind\":\"tv-episode\", \"artistId\":66012553, + \"collectionId\":200507719, \"trackId\":203968378, \"artistName\":\"LOST\", + \"collectionName\":\"LOST, Season 3\", \"trackName\":\"The Cost of Living\", + \"collectionCensoredName\":\"LOST, Season 3\", \"trackCensoredName\":\"The Cost + of Living\", \"artistViewUrl\":\"http://itunes.apple.com/us/tv-show/lost/id66012553?uo=4\", + \"collectionViewUrl\":\"http://itunes.apple.com/us/tv-season/the-cost-of-living/id200507719?i=203968378&uo=4\", + \"trackViewUrl\":\"http://itunes.apple.com/us/tv-season/the-cost-of-living/id200507719?i=203968378&uo=4\", + \"previewUrl\":\"http://a1072.v.phobos.apple.com/us/r1000/044/Video/d8/1a/23/mzm.chkgsaqe..640x480.h264lc.d2.p.m4v\", + \"artworkUrl30\":\"http://a3.mzstatic.com/us/r30/Video/e6/f5/54/mzl.xrciclpo.40x30-75.jpg\", + \"artworkUrl60\":\"http://a4.mzstatic.com/us/r30/Video/e6/f5/54/mzl.xrciclpo.80x60-75.jpg\", + \"artworkUrl100\":\"http://a1.mzstatic.com/us/r30/Video/e6/f5/54/mzl.xrciclpo.100x100-75.jpg\", + \"collectionPrice\":24.99, \"trackPrice\":1.99, \"releaseDate\":\"2006-11-01T08:00:00Z\", + \"collectionExplicitness\":\"notExplicit\", \"trackExplicitness\":\"notExplicit\", + \"discCount\":1, \"discNumber\":1, \"trackCount\":23, \"trackNumber\":5, \"trackTimeMillis\":2607875.0, + \"country\":\"USA\", \"currency\":\"USD\", \"primaryGenreName\":\"Drama\", \"contentAdvisoryRating\":\"TV-14\", + \n\"shortDescription\":\"A delirious Eko wrestles with demons from his past, + while Locke and some of the other castaways head back to The Pearl -- one of + the Dharma Initiative's island stations -- hoping to find a computer that they + can use to locate Jack, Kate and Sawyer. Meanwhile, Jack doesn't know whom to + trust when two of \\\"The Others\\\" seem at odds with one another.\", \n\"longDescription\":\"A + delirious Eko wrestles with demons from his past, while Locke and some of the + other castaways head back to The Pearl -- one of the Dharma Initiative's island + stations -- hoping to find a computer that they can use to locate Jack, Kate + and Sawyer. Meanwhile, Jack doesn't know whom to trust when two of \\\"The Others\\\" + seem at odds with one another.\"}, \n{\"wrapperType\":\"track\", \"kind\":\"tv-episode\", + \"artistId\":66012553, \"collectionId\":81864976, \"trackId\":81826874, \"artistName\":\"LOST\", + \"collectionName\":\"LOST, Season 1\", \"trackName\":\"Pilot, Pt. 1\", \"collectionCensoredName\":\"LOST, + Season 1\", \"trackCensoredName\":\"Pilot, Pt. 1\", \"artistViewUrl\":\"http://itunes.apple.com/us/tv-show/lost/id66012553?uo=4\", + \"collectionViewUrl\":\"http://itunes.apple.com/us/tv-season/pilot-pt.-1/id81864976?i=81826874&uo=4\", + \"trackViewUrl\":\"http://itunes.apple.com/us/tv-season/pilot-pt.-1/id81864976?i=81826874&uo=4\", + \"previewUrl\":\"http://a1772.v.phobos.apple.com/us/r1000/061/Video/01/ec/6a/mzm.ezdtahle..640x480.h264lc.d2.p.m4v\", + \"artworkUrl30\":\"http://a1.mzstatic.com/us/r1000/004/Features/f1/c6/64/dj.ksjwcoow.40x30-75.jpg\", + \"artworkUrl60\":\"http://a4.mzstatic.com/us/r1000/004/Features/f1/c6/64/dj.ksjwcoow.80x60-75.jpg\", + \"artworkUrl100\":\"http://a4.mzstatic.com/us/r1000/004/Features/f1/c6/64/dj.ksjwcoow.100x100-75.jpg\", + \"collectionPrice\":19.99, \"trackPrice\":1.99, \"releaseDate\":\"2004-09-22T07:00:00Z\", + \"collectionExplicitness\":\"notExplicit\", \"trackExplicitness\":\"notExplicit\", + \"discCount\":1, \"discNumber\":1, \"trackCount\":25, \"trackNumber\":1, \"trackTimeMillis\":2540498.0, + \"country\":\"USA\", \"currency\":\"USD\", \"primaryGenreName\":\"Drama\", \"contentAdvisoryRating\":\"TV-14\", + \"shortDescription\":\"Out of the blackness, the first thing Jack (Matthew Fox) + senses is pain. Then burning sun. A bamboo forest. Smoke. Screams.\", \n\"longDescription\":\"Out + of the blackness, the first thing Jack (Matthew Fox) senses is pain. Then burning + sun. A bamboo forest. Smoke. Screams. With a rush comes the horrible awareness + that the plane he was on tore apart in mid-air and crashed on a Pacific island. + From there it's a blur, as his doctor's instinct kicks in: people need his help.\"}, + \n{\"wrapperType\":\"track\", \"kind\":\"tv-episode\", \"artistId\":66012553, + \"collectionId\":200507719, \"trackId\":215048742, \"artistName\":\"LOST\", + \"collectionName\":\"LOST, Season 3\", \"trackName\":\"Flashes Before Your Eyes\", + \"collectionCensoredName\":\"LOST, Season 3\", \"trackCensoredName\":\"Flashes + Before Your Eyes\", \"artistViewUrl\":\"http://itunes.apple.com/us/tv-show/lost/id66012553?uo=4\", + \"collectionViewUrl\":\"http://itunes.apple.com/us/tv-season/flashes-before-your-eyes/id200507719?i=215048742&uo=4\", + \"trackViewUrl\":\"http://itunes.apple.com/us/tv-season/flashes-before-your-eyes/id200507719?i=215048742&uo=4\", + \"previewUrl\":\"http://a1032.v.phobos.apple.com/us/r1000/045/Video/b7/50/75/mzm.qjlqqvic..640x480.h264lc.d2.p.m4v\", + \"artworkUrl30\":\"http://a3.mzstatic.com/us/r30/Video/e6/f5/54/mzl.xrciclpo.40x30-75.jpg\", + \"artworkUrl60\":\"http://a4.mzstatic.com/us/r30/Video/e6/f5/54/mzl.xrciclpo.80x60-75.jpg\", + \"artworkUrl100\":\"http://a1.mzstatic.com/us/r30/Video/e6/f5/54/mzl.xrciclpo.100x100-75.jpg\", + \"collectionPrice\":24.99, \"trackPrice\":1.99, \"releaseDate\":\"2007-02-14T08:00:00Z\", + \"collectionExplicitness\":\"notExplicit\", \"trackExplicitness\":\"notExplicit\", + \"discCount\":1, \"discNumber\":1, \"trackCount\":23, \"trackNumber\":8, \"trackTimeMillis\":2606430.0, + \"country\":\"USA\", \"currency\":\"USD\", \"primaryGenreName\":\"Drama\", \"contentAdvisoryRating\":\"TV-14\", + \n\"shortDescription\":\"A suspicious and determined Hurley enlists Charlie + to help him wrangle the truth out of Desmond, who has been acting strangely + ever since the implosion of the hatch.\", \n\"longDescription\":\"A suspicious + and determined Hurley enlists Charlie to help him wrangle the truth out of Desmond, + who has been acting strangely ever since the implosion of the hatch.\"}, \n{\"wrapperType\":\"track\", + \"kind\":\"tv-episode\", \"artistId\":66012553, \"collectionId\":200507719, + \"trackId\":215048740, \"artistName\":\"LOST\", \"collectionName\":\"LOST, Season + 3\", \"trackName\":\"Not In Portland\", \"collectionCensoredName\":\"LOST, Season + 3\", \"trackCensoredName\":\"Not In Portland\", \"artistViewUrl\":\"http://itunes.apple.com/us/tv-show/lost/id66012553?uo=4\", + \"collectionViewUrl\":\"http://itunes.apple.com/us/tv-season/not-in-portland/id200507719?i=215048740&uo=4\", + \"trackViewUrl\":\"http://itunes.apple.com/us/tv-season/not-in-portland/id200507719?i=215048740&uo=4\", + \"previewUrl\":\"http://a3.v.phobos.apple.com/us/r1000/036/Video/e9/f1/17/mzm.drywldxk..640x480.h264lc.d2.p.m4v\", + \"artworkUrl30\":\"http://a3.mzstatic.com/us/r30/Video/e6/f5/54/mzl.xrciclpo.40x30-75.jpg\", + \"artworkUrl60\":\"http://a4.mzstatic.com/us/r30/Video/e6/f5/54/mzl.xrciclpo.80x60-75.jpg\", + \"artworkUrl100\":\"http://a1.mzstatic.com/us/r30/Video/e6/f5/54/mzl.xrciclpo.100x100-75.jpg\", + \"collectionPrice\":24.99, \"trackPrice\":1.99, \"releaseDate\":\"2007-02-07T08:00:00Z\", + \"collectionExplicitness\":\"notExplicit\", \"trackExplicitness\":\"notExplicit\", + \"discCount\":1, \"discNumber\":1, \"trackCount\":23, \"trackNumber\":7, \"trackTimeMillis\":2607666.0, + \"country\":\"USA\", \"currency\":\"USD\", \"primaryGenreName\":\"Drama\", \"contentAdvisoryRating\":\"TV-14\", + \n\"shortDescription\":\"Jack is in command as the fate of Ben's life literally + rests in his hands. Meanwhile, Kate and Sawyer find an ally in one of \\\"The + Others,\\\" and Juliet makes a shocking decision that could endanger her standing + with her people.\", \n\"longDescription\":\"Jack is in command as the fate of + Ben's life literally rests in his hands. Meanwhile, Kate and Sawyer find an + ally in one of \\\"The Others,\\\" and Juliet makes a shocking decision that + could endanger her standing with her people.\"}, \n{\"wrapperType\":\"track\", + \"kind\":\"tv-episode\", \"artistId\":66012553, \"collectionId\":200507719, + \"trackId\":216753701, \"artistName\":\"LOST\", \"collectionName\":\"LOST, Season + 3\", \"trackName\":\"Enter 77\", \"collectionCensoredName\":\"LOST, Season 3\", + \"trackCensoredName\":\"Enter 77\", \"artistViewUrl\":\"http://itunes.apple.com/us/tv-show/lost/id66012553?uo=4\", + \"collectionViewUrl\":\"http://itunes.apple.com/us/tv-season/enter-77/id200507719?i=216753701&uo=4\", + \"trackViewUrl\":\"http://itunes.apple.com/us/tv-season/enter-77/id200507719?i=216753701&uo=4\", + \"previewUrl\":\"http://a266.v.phobos.apple.com/us/r1000/030/Video/ec/54/10/mzm.anzgtahf..640x480.h264lc.d2.p.m4v\", + \"artworkUrl30\":\"http://a3.mzstatic.com/us/r30/Video/e6/f5/54/mzl.xrciclpo.40x30-75.jpg\", + \"artworkUrl60\":\"http://a4.mzstatic.com/us/r30/Video/e6/f5/54/mzl.xrciclpo.80x60-75.jpg\", + \"artworkUrl100\":\"http://a1.mzstatic.com/us/r30/Video/e6/f5/54/mzl.xrciclpo.100x100-75.jpg\", + \"collectionPrice\":24.99, \"trackPrice\":1.99, \"releaseDate\":\"2007-03-07T08:00:00Z\", + \"collectionExplicitness\":\"notExplicit\", \"trackExplicitness\":\"notExplicit\", + \"discCount\":1, \"discNumber\":1, \"trackCount\":23, \"trackNumber\":11, \"trackTimeMillis\":2599930.0, + \"country\":\"USA\", \"currency\":\"USD\", \"primaryGenreName\":\"Drama\", \"contentAdvisoryRating\":\"TV-14\", + \n\"shortDescription\":\"Locke, Sayid and Kate investigate a strange structure + and its mysterious inhabitant. Meanwhile, Sawyer competes in a ping-pong competition + to get back his belongings.\", \n\"longDescription\":\"Locke, Sayid and Kate + investigate a strange structure and its mysterious inhabitant. Meanwhile, Sawyer + competes in a ping-pong competition to get back his belongings.\"}, \n{\"wrapperType\":\"track\", + \"kind\":\"tv-episode\", \"artistId\":66012553, \"collectionId\":200507719, + \"trackId\":215048744, \"artistName\":\"LOST\", \"collectionName\":\"LOST, Season + 3\", \"trackName\":\"Stranger In a Strange Land\", \"collectionCensoredName\":\"LOST, + Season 3\", \"trackCensoredName\":\"Stranger In a Strange Land\", \"artistViewUrl\":\"http://itunes.apple.com/us/tv-show/lost/id66012553?uo=4\", + \"collectionViewUrl\":\"http://itunes.apple.com/us/tv-season/stranger-in-a-strange-land/id200507719?i=215048744&uo=4\", + \"trackViewUrl\":\"http://itunes.apple.com/us/tv-season/stranger-in-a-strange-land/id200507719?i=215048744&uo=4\", + \"previewUrl\":\"http://a867.v.phobos.apple.com/us/r1000/056/Video/6f/3b/0f/mzm.ewmcioru..640x480.h264lc.d2.p.m4v\", + \"artworkUrl30\":\"http://a3.mzstatic.com/us/r30/Video/e6/f5/54/mzl.xrciclpo.40x30-75.jpg\", + \"artworkUrl60\":\"http://a4.mzstatic.com/us/r30/Video/e6/f5/54/mzl.xrciclpo.80x60-75.jpg\", + \"artworkUrl100\":\"http://a1.mzstatic.com/us/r30/Video/e6/f5/54/mzl.xrciclpo.100x100-75.jpg\", + \"collectionPrice\":24.99, \"trackPrice\":1.99, \"releaseDate\":\"2007-02-21T08:00:00Z\", + \"collectionExplicitness\":\"notExplicit\", \"trackExplicitness\":\"notExplicit\", + \"discCount\":1, \"discNumber\":1, \"trackCount\":23, \"trackNumber\":9, \"trackTimeMillis\":2606750.0, + \"country\":\"USA\", \"currency\":\"USD\", \"primaryGenreName\":\"Drama\", \"contentAdvisoryRating\":\"TV-14\", + \n\"shortDescription\":\"A power play ensues between Jack and \\\"The Others\\\" + as Juliet's future hangs in the balance. Meanwhile, Kate, Sawyer and Karl continue + on their journey away from \\\"Alcatraz.\\\"\", \n\"longDescription\":\"A power + play ensues between Jack and \\\"The Others\\\" as Juliet's future hangs in + the balance. Meanwhile, Kate, Sawyer and Karl continue on their journey away + from \\\"Alcatraz.\\\"\"}, \n{\"wrapperType\":\"track\", \"kind\":\"tv-episode\", + \"artistId\":66012553, \"collectionId\":200507719, \"trackId\":216753135, \"artistName\":\"LOST\", + \"collectionName\":\"LOST, Season 3\", \"trackName\":\"Tricia Tanaka Is Dead\", + \"collectionCensoredName\":\"LOST, Season 3\", \"trackCensoredName\":\"Tricia + Tanaka Is Dead\", \"artistViewUrl\":\"http://itunes.apple.com/us/tv-show/lost/id66012553?uo=4\", + \"collectionViewUrl\":\"http://itunes.apple.com/us/tv-season/tricia-tanaka-is-dead/id200507719?i=216753135&uo=4\", + \"trackViewUrl\":\"http://itunes.apple.com/us/tv-season/tricia-tanaka-is-dead/id200507719?i=216753135&uo=4\", + \"previewUrl\":\"http://a27.v.phobos.apple.com/us/r1000/021/Video/04/27/66/mzm.tuioicsu..640x480.h264lc.d2.p.m4v\", + \"artworkUrl30\":\"http://a3.mzstatic.com/us/r30/Video/e6/f5/54/mzl.xrciclpo.40x30-75.jpg\", + \"artworkUrl60\":\"http://a4.mzstatic.com/us/r30/Video/e6/f5/54/mzl.xrciclpo.80x60-75.jpg\", + \"artworkUrl100\":\"http://a1.mzstatic.com/us/r30/Video/e6/f5/54/mzl.xrciclpo.100x100-75.jpg\", + \"collectionPrice\":24.99, \"trackPrice\":1.99, \"releaseDate\":\"2007-02-28T08:00:00Z\", + \"collectionExplicitness\":\"notExplicit\", \"trackExplicitness\":\"notExplicit\", + \"discCount\":1, \"discNumber\":1, \"trackCount\":23, \"trackNumber\":10, \"trackTimeMillis\":2608191.0, + \"country\":\"USA\", \"currency\":\"USD\", \"primaryGenreName\":\"Drama\", \"contentAdvisoryRating\":\"TV-PG\", + \n\"shortDescription\":\"Hurley's discovery of an old, wrecked car on the island + leads him on a mission of hope not only for himself, but for a fellow survivor + in need of some faith. Meanwhile, Kate and Sawyer reunite with their fellow + castaways, but Kate is still torn about leaving Jack behind with \\\"The Others.\\\"\", + \n\"longDescription\":\"Hurley's discovery of an old, wrecked car on the island + leads him on a mission of hope not only for himself, but for a fellow survivor + in need of some faith. Meanwhile, Kate and Sawyer reunite with their fellow + castaways, but Kate is still torn about leaving Jack behind with \\\"The Others.\\\"\"}, + \n{\"wrapperType\":\"track\", \"kind\":\"tv-episode\", \"artistId\":66012553, + \"collectionId\":200507719, \"trackId\":219123803, \"artistName\":\"LOST\", + \"collectionName\":\"LOST, Season 3\", \"trackName\":\"Par Avion\", \"collectionCensoredName\":\"LOST, + Season 3\", \"trackCensoredName\":\"Par Avion\", \"artistViewUrl\":\"http://itunes.apple.com/us/tv-show/lost/id66012553?uo=4\", + \"collectionViewUrl\":\"http://itunes.apple.com/us/tv-season/par-avion/id200507719?i=219123803&uo=4\", + \"trackViewUrl\":\"http://itunes.apple.com/us/tv-season/par-avion/id200507719?i=219123803&uo=4\", + \"previewUrl\":\"http://a1485.v.phobos.apple.com/us/r1000/032/Video/8a/7f/ce/mzm.bcqxmaeg..640x480.h264lc.d2.p.m4v\", + \"artworkUrl30\":\"http://a3.mzstatic.com/us/r30/Video/e6/f5/54/mzl.xrciclpo.40x30-75.jpg\", + \"artworkUrl60\":\"http://a4.mzstatic.com/us/r30/Video/e6/f5/54/mzl.xrciclpo.80x60-75.jpg\", + \"artworkUrl100\":\"http://a1.mzstatic.com/us/r30/Video/e6/f5/54/mzl.xrciclpo.100x100-75.jpg\", + \"collectionPrice\":24.99, \"trackPrice\":1.99, \"releaseDate\":\"2007-03-14T07:00:00Z\", + \"collectionExplicitness\":\"notExplicit\", \"trackExplicitness\":\"notExplicit\", + \"discCount\":1, \"discNumber\":1, \"trackCount\":23, \"trackNumber\":12, \"trackTimeMillis\":2599930.0, + \"country\":\"USA\", \"currency\":\"USD\", \"primaryGenreName\":\"Drama\", \"contentAdvisoryRating\":\"TV-14\", + \n\"shortDescription\":\"Claire becomes suspicious of Charlie when he exhibits + peculiar behavior after she comes up with an idea that could get everybody rescued. + Meanwhile, tensions mount between Sayid and Locke as they continue their trek + to rescue Jack.\", \n\"longDescription\":\"Claire becomes suspicious of Charlie + when he exhibits peculiar behavior after she comes up with an idea that could + get everybody rescued. Meanwhile, tensions mount between Sayid and Locke as + they continue their trek to rescue Jack.\"}, \n{\"wrapperType\":\"track\", \"kind\":\"tv-episode\", + \"artistId\":66012553, \"collectionId\":200507719, \"trackId\":219123809, \"artistName\":\"LOST\", + \"collectionName\":\"LOST, Season 3\", \"trackName\":\"The Man from Tallahassee\", + \"collectionCensoredName\":\"LOST, Season 3\", \"trackCensoredName\":\"The Man + from Tallahassee\", \"artistViewUrl\":\"http://itunes.apple.com/us/tv-show/lost/id66012553?uo=4\", + \"collectionViewUrl\":\"http://itunes.apple.com/us/tv-season/the-man-from-tallahassee/id200507719?i=219123809&uo=4\", + \"trackViewUrl\":\"http://itunes.apple.com/us/tv-season/the-man-from-tallahassee/id200507719?i=219123809&uo=4\", + \"previewUrl\":\"http://a379.v.phobos.apple.com/us/r1000/051/Video/75/42/05/mzm.omyorjaa..640x480.h264lc.d2.p.m4v\", + \"artworkUrl30\":\"http://a3.mzstatic.com/us/r30/Video/e6/f5/54/mzl.xrciclpo.40x30-75.jpg\", + \"artworkUrl60\":\"http://a4.mzstatic.com/us/r30/Video/e6/f5/54/mzl.xrciclpo.80x60-75.jpg\", + \"artworkUrl100\":\"http://a1.mzstatic.com/us/r30/Video/e6/f5/54/mzl.xrciclpo.100x100-75.jpg\", + \"collectionPrice\":24.99, \"trackPrice\":1.99, \"releaseDate\":\"2007-03-21T07:00:00Z\", + \"collectionExplicitness\":\"notExplicit\", \"trackExplicitness\":\"notExplicit\", + \"discCount\":1, \"discNumber\":1, \"trackCount\":23, \"trackNumber\":13, \"trackTimeMillis\":2610431.0, + \"country\":\"USA\", \"currency\":\"USD\", \"primaryGenreName\":\"Drama\", \"contentAdvisoryRating\":\"TV-14\", + \n\"shortDescription\":\"Ben tries to persuade a determined Locke to call off + his destructive plan by offering him some of the secrets of the island, and + Kate's reunion with Jack does not go off as planned when she discovers that + he has made a deal with \\\"The Others.\\\"\", \n\"longDescription\":\"Ben tries + to persuade a determined Locke to call off his destructive plan by offering + him some of the secrets of the island, and Kate's reunion with Jack does not + go off as planned when she discovers that he has made a deal with \\\"The Others.\\\"\"}, + \n{\"wrapperType\":\"track\", \"kind\":\"tv-episode\", \"artistId\":66012553, + \"collectionId\":200507719, \"trackId\":220100195, \"artistName\":\"LOST\", + \"collectionName\":\"LOST, Season 3\", \"trackName\":\"Exposé\", \"collectionCensoredName\":\"LOST, + Season 3\", \"trackCensoredName\":\"Exposé\", \"artistViewUrl\":\"http://itunes.apple.com/us/tv-show/lost/id66012553?uo=4\", + \"collectionViewUrl\":\"http://itunes.apple.com/us/tv-season/expose/id200507719?i=220100195&uo=4\", + \"trackViewUrl\":\"http://itunes.apple.com/us/tv-season/expose/id200507719?i=220100195&uo=4\", + \"previewUrl\":\"http://a1438.v.phobos.apple.com/us/r1000/047/Video/4a/e6/92/mzm.rkendrdf..640x480.h264lc.d2.p.m4v\", + \"artworkUrl30\":\"http://a3.mzstatic.com/us/r30/Video/e6/f5/54/mzl.xrciclpo.40x30-75.jpg\", + \"artworkUrl60\":\"http://a4.mzstatic.com/us/r30/Video/e6/f5/54/mzl.xrciclpo.80x60-75.jpg\", + \"artworkUrl100\":\"http://a1.mzstatic.com/us/r30/Video/e6/f5/54/mzl.xrciclpo.100x100-75.jpg\", + \"collectionPrice\":24.99, \"trackPrice\":1.99, \"releaseDate\":\"2007-03-28T07:00:00Z\", + \"collectionExplicitness\":\"notExplicit\", \"trackExplicitness\":\"notExplicit\", + \"discCount\":1, \"discNumber\":1, \"trackCount\":23, \"trackNumber\":14, \"trackTimeMillis\":2563333.0, + \"country\":\"USA\", \"currency\":\"USD\", \"primaryGenreName\":\"Drama\", \"contentAdvisoryRating\":\"TV-14\", + \n\"shortDescription\":\"Hurley begins to suspect that Sawyer may be involved + in an island mystery surrounding two fellow survivors, and Sun learns the truth + about her past kidnapping attempt by \\\"The Others.\\\"\", \n\"longDescription\":\"Hurley + begins to suspect that Sawyer may be involved in an island mystery surrounding + two fellow survivors, and Sun learns the truth about her past kidnapping attempt + by \\\"The Others.\\\"\"}, \n{\"wrapperType\":\"track\", \"kind\":\"tv-episode\", + \"artistId\":66012553, \"collectionId\":200507719, \"trackId\":254531399, \"artistName\":\"LOST\", + \"collectionName\":\"LOST, Season 3\", \"trackName\":\"Greatest Hits\", \"collectionCensoredName\":\"LOST, + Season 3\", \"trackCensoredName\":\"Greatest Hits\", \"artistViewUrl\":\"http://itunes.apple.com/us/tv-show/lost/id66012553?uo=4\", + \"collectionViewUrl\":\"http://itunes.apple.com/us/tv-season/greatest-hits/id200507719?i=254531399&uo=4\", + \"trackViewUrl\":\"http://itunes.apple.com/us/tv-season/greatest-hits/id200507719?i=254531399&uo=4\", + \"previewUrl\":\"http://a1002.v.phobos.apple.com/us/r1000/011/Video/7c/df/f0/mzm.ygcivqyr..640x480.h264lc.d2.p.m4v\", + \"artworkUrl30\":\"http://a3.mzstatic.com/us/r30/Video/e6/f5/54/mzl.xrciclpo.40x30-75.jpg\", + \"artworkUrl60\":\"http://a4.mzstatic.com/us/r30/Video/e6/f5/54/mzl.xrciclpo.80x60-75.jpg\", + \"artworkUrl100\":\"http://a1.mzstatic.com/us/r30/Video/e6/f5/54/mzl.xrciclpo.100x100-75.jpg\", + \"collectionPrice\":24.99, \"trackPrice\":1.99, \"releaseDate\":\"2007-05-16T07:00:00Z\", + \"collectionExplicitness\":\"notExplicit\", \"trackExplicitness\":\"notExplicit\", + \"discCount\":1, \"discNumber\":1, \"trackCount\":23, \"trackNumber\":21, \"trackTimeMillis\":2607103.0, + \"country\":\"USA\", \"currency\":\"USD\", \"primaryGenreName\":\"Drama\", \"contentAdvisoryRating\":\"TV-14\", + \n\"shortDescription\":\"While Jack devises a plan to do away with \\\"The Others\\\" + once and for all, Sayid uncovers a flaw in \\\"The Others'\\\" system that could + lead to everyone's rescue. But it requires Charlie to take on a dangerous task + that may make Desmond's premonition come true.\", \n\"longDescription\":\"While + Jack devises a plan to do away with \\\"The Others\\\" once and for all, Sayid + uncovers a flaw in \\\"The Others'\\\" system that could lead to everyone's + rescue. But it requires Charlie to take on a dangerous task that may make Desmond's + premonition come true.\"}, \n{\"wrapperType\":\"track\", \"kind\":\"tv-episode\", + \"artistId\":66012553, \"collectionId\":200507719, \"trackId\":252901095, \"artistName\":\"LOST\", + \"collectionName\":\"LOST, Season 3\", \"trackName\":\"The Brig\", \"collectionCensoredName\":\"LOST, + Season 3\", \"trackCensoredName\":\"The Brig\", \"artistViewUrl\":\"http://itunes.apple.com/us/tv-show/lost/id66012553?uo=4\", + \"collectionViewUrl\":\"http://itunes.apple.com/us/tv-season/the-brig/id200507719?i=252901095&uo=4\", + \"trackViewUrl\":\"http://itunes.apple.com/us/tv-season/the-brig/id200507719?i=252901095&uo=4\", + \"previewUrl\":\"http://a1985.v.phobos.apple.com/us/r1000/015/Video/ad/a9/58/mzm.ndoeeusn..640x480.h264lc.d2.p.m4v\", + \"artworkUrl30\":\"http://a3.mzstatic.com/us/r30/Video/e6/f5/54/mzl.xrciclpo.40x30-75.jpg\", + \"artworkUrl60\":\"http://a4.mzstatic.com/us/r30/Video/e6/f5/54/mzl.xrciclpo.80x60-75.jpg\", + \"artworkUrl100\":\"http://a1.mzstatic.com/us/r30/Video/e6/f5/54/mzl.xrciclpo.100x100-75.jpg\", + \"collectionPrice\":24.99, \"trackPrice\":1.99, \"releaseDate\":\"2007-05-02T07:00:00Z\", + \"collectionExplicitness\":\"notExplicit\", \"trackExplicitness\":\"notExplicit\", + \"discCount\":1, \"discNumber\":1, \"trackCount\":23, \"trackNumber\":19, \"trackTimeMillis\":2607666.0, + \"country\":\"USA\", \"currency\":\"USD\", \"primaryGenreName\":\"Drama\", \"contentAdvisoryRating\":\"TV-14\", + \n\"shortDescription\":\"A newly focused Locke breaks away from \\\"The Others\\\" + in an attempt to persuade Sawyer to help rid them of a great nemesis that has + caused nothing but pain in both of their lives. Meanwhile, a new island inhabitant + discloses some shocking information about Oceanic Flight 815.\", \n\"longDescription\":\"A + newly focused Locke breaks away from \\\"The Others\\\" in an attempt to persuade + Sawyer to help rid them of a great nemesis that has caused nothing but pain + in both of their lives. Meanwhile, a new island inhabitant discloses some shocking + information about Oceanic Flight 815.\"}, \n{\"wrapperType\":\"track\", \"kind\":\"tv-episode\", + \"artistId\":66012553, \"collectionId\":200507719, \"trackId\":220100200, \"artistName\":\"LOST\", + \"collectionName\":\"LOST, Season 3\", \"trackName\":\"Left Behind\", \"collectionCensoredName\":\"LOST, + Season 3\", \"trackCensoredName\":\"Left Behind\", \"artistViewUrl\":\"http://itunes.apple.com/us/tv-show/lost/id66012553?uo=4\", + \"collectionViewUrl\":\"http://itunes.apple.com/us/tv-season/left-behind/id200507719?i=220100200&uo=4\", + \"trackViewUrl\":\"http://itunes.apple.com/us/tv-season/left-behind/id200507719?i=220100200&uo=4\", + \"previewUrl\":\"http://a1861.v.phobos.apple.com/us/r1000/014/Video/f3/a5/ae/mzm.cqjerumd..640x480.h264lc.d2.p.m4v\", + \"artworkUrl30\":\"http://a3.mzstatic.com/us/r30/Video/e6/f5/54/mzl.xrciclpo.40x30-75.jpg\", + \"artworkUrl60\":\"http://a4.mzstatic.com/us/r30/Video/e6/f5/54/mzl.xrciclpo.80x60-75.jpg\", + \"artworkUrl100\":\"http://a1.mzstatic.com/us/r30/Video/e6/f5/54/mzl.xrciclpo.100x100-75.jpg\", + \"collectionPrice\":24.99, \"trackPrice\":1.99, \"releaseDate\":\"2007-04-04T07:00:00Z\", + \"collectionExplicitness\":\"notExplicit\", \"trackExplicitness\":\"notExplicit\", + \"discCount\":1, \"discNumber\":1, \"trackCount\":23, \"trackNumber\":15, \"trackTimeMillis\":2604298.0, + \"country\":\"USA\", \"currency\":\"USD\", \"primaryGenreName\":\"Drama\", \"contentAdvisoryRating\":\"TV-14\", + \n\"shortDescription\":\"After discovering that one of her own has betrayed + her to \\\"The Others,\\\" Kate is left to fend for herself in the jungle with + Juliet. Meanwhile, Hurley warns Sawyer to change his selfish ways and make amends + with his fellow survivors or he may face a vote of banishment.\", \n\"longDescription\":\"After + discovering that one of her own has betrayed her to \\\"The Others,\\\" Kate + is left to fend for herself in the jungle with Juliet. Meanwhile, Hurley warns + Sawyer to change his selfish ways and make amends with his fellow survivors + or he may face a vote of banishment.\"}, \n{\"wrapperType\":\"track\", \"kind\":\"tv-episode\", + \"artistId\":66012553, \"collectionId\":200507719, \"trackId\":252900928, \"artistName\":\"LOST\", + \"collectionName\":\"LOST, Season 3\", \"trackName\":\"The Man Behind the Curtain\", + \"collectionCensoredName\":\"LOST, Season 3\", \"trackCensoredName\":\"The Man + Behind the Curtain\", \"artistViewUrl\":\"http://itunes.apple.com/us/tv-show/lost/id66012553?uo=4\", + \"collectionViewUrl\":\"http://itunes.apple.com/us/tv-season/the-man-behind-the-curtain/id200507719?i=252900928&uo=4\", + \"trackViewUrl\":\"http://itunes.apple.com/us/tv-season/the-man-behind-the-curtain/id200507719?i=252900928&uo=4\", + \"previewUrl\":\"http://a1235.v.phobos.apple.com/us/r1000/059/Video/4d/1b/ac/mzm.knqnrelq..640x480.h264lc.d2.p.m4v\", + \"artworkUrl30\":\"http://a3.mzstatic.com/us/r30/Video/e6/f5/54/mzl.xrciclpo.40x30-75.jpg\", + \"artworkUrl60\":\"http://a4.mzstatic.com/us/r30/Video/e6/f5/54/mzl.xrciclpo.80x60-75.jpg\", + \"artworkUrl100\":\"http://a1.mzstatic.com/us/r30/Video/e6/f5/54/mzl.xrciclpo.100x100-75.jpg\", + \"collectionPrice\":24.99, \"trackPrice\":1.99, \"releaseDate\":\"2007-05-09T07:00:00Z\", + \"collectionExplicitness\":\"notExplicit\", \"trackExplicitness\":\"notExplicit\", + \"discCount\":1, \"discNumber\":1, \"trackCount\":23, \"trackNumber\":20, \"trackTimeMillis\":2605333.0, + \"country\":\"USA\", \"currency\":\"USD\", \"primaryGenreName\":\"Drama\", \"contentAdvisoryRating\":\"TV-14\", + \n\"shortDescription\":\"Ben begrudgingly begins to introduce Locke to the secrets + of the island, beginning with the mysterious Jacob. Meanwhile, Juliet's secret + goes public.\", \n\"longDescription\":\"Ben begrudgingly begins to introduce + Locke to the secrets of the island, beginning with the mysterious Jacob. Meanwhile, + Juliet's secret goes public.\"}, \n{\"wrapperType\":\"track\", \"kind\":\"tv-episode\", + \"artistId\":66012553, \"collectionId\":200507719, \"trackId\":250671308, \"artistName\":\"LOST\", + \"collectionName\":\"LOST, Season 3\", \"trackName\":\"One of Us\", \"collectionCensoredName\":\"LOST, + Season 3\", \"trackCensoredName\":\"One of Us\", \"artistViewUrl\":\"http://itunes.apple.com/us/tv-show/lost/id66012553?uo=4\", + \"collectionViewUrl\":\"http://itunes.apple.com/us/tv-season/one-of-us/id200507719?i=250671308&uo=4\", + \"trackViewUrl\":\"http://itunes.apple.com/us/tv-season/one-of-us/id200507719?i=250671308&uo=4\", + \"previewUrl\":\"http://a111.v.phobos.apple.com/us/r1000/033/Video/4d/3e/a7/mzm.dfgghhuf..640x480.h264lc.d2.p.m4v\", + \"artworkUrl30\":\"http://a3.mzstatic.com/us/r30/Video/e6/f5/54/mzl.xrciclpo.40x30-75.jpg\", + \"artworkUrl60\":\"http://a4.mzstatic.com/us/r30/Video/e6/f5/54/mzl.xrciclpo.80x60-75.jpg\", + \"artworkUrl100\":\"http://a1.mzstatic.com/us/r30/Video/e6/f5/54/mzl.xrciclpo.100x100-75.jpg\", + \"collectionPrice\":24.99, \"trackPrice\":1.99, \"releaseDate\":\"2007-04-11T07:00:00Z\", + \"collectionExplicitness\":\"notExplicit\", \"trackExplicitness\":\"notExplicit\", + \"discCount\":1, \"discNumber\":1, \"trackCount\":23, \"trackNumber\":16, \"trackTimeMillis\":2610431.0, + \"country\":\"USA\", \"currency\":\"USD\", \"primaryGenreName\":\"Drama\", \"contentAdvisoryRating\":\"TV-PG\", + \n\"shortDescription\":\"Jack's joyous reunion with his fellow survivors is + cut short when they realize that accompanying him is one of \\\"The Others,\\\" + and Claire is stricken by a mysterious, life-threatening illness.\", \n\"longDescription\":\"Jack's + joyous reunion with his fellow survivors is cut short when they realize that + accompanying him is one of \\\"The Others,\\\" and Claire is stricken by a mysterious, + life-threatening illness.\"}, \n{\"wrapperType\":\"track\", \"kind\":\"tv-episode\", + \"artistId\":66012553, \"collectionId\":200507719, \"trackId\":251892476, \"artistName\":\"LOST\", + \"collectionName\":\"LOST, Season 3\", \"trackName\":\"D.O.C.\", \"collectionCensoredName\":\"LOST, + Season 3\", \"trackCensoredName\":\"D.O.C.\", \"artistViewUrl\":\"http://itunes.apple.com/us/tv-show/lost/id66012553?uo=4\", + \"collectionViewUrl\":\"http://itunes.apple.com/us/tv-season/d.o.c./id200507719?i=251892476&uo=4\", + \"trackViewUrl\":\"http://itunes.apple.com/us/tv-season/d.o.c./id200507719?i=251892476&uo=4\", + \"previewUrl\":\"http://a1716.v.phobos.apple.com/us/r1000/013/Video/01/a2/96/mzm.tcglavgc..640x480.h264lc.d2.p.m4v\", + \"artworkUrl30\":\"http://a3.mzstatic.com/us/r30/Video/e6/f5/54/mzl.xrciclpo.40x30-75.jpg\", + \"artworkUrl60\":\"http://a4.mzstatic.com/us/r30/Video/e6/f5/54/mzl.xrciclpo.80x60-75.jpg\", + \"artworkUrl100\":\"http://a1.mzstatic.com/us/r30/Video/e6/f5/54/mzl.xrciclpo.100x100-75.jpg\", + \"collectionPrice\":24.99, \"trackPrice\":1.99, \"releaseDate\":\"2007-04-25T07:00:00Z\", + \"collectionExplicitness\":\"notExplicit\", \"trackExplicitness\":\"notExplicit\", + \"discCount\":1, \"discNumber\":1, \"trackCount\":23, \"trackNumber\":18, \"trackTimeMillis\":2606175.0, + \"country\":\"USA\", \"currency\":\"USD\", \"primaryGenreName\":\"Drama\", \"contentAdvisoryRating\":\"TV-14\", + \n\"shortDescription\":\"After discovering that all of \\\"The Others\\\" pregnant + women died before giving birth on the island, an extremely reticent Sun allows + Juliet to examine her -- and uncovers the identity of the unborn child's father. + Meanwhile, Desmond allows an unlikely nemesis to help save the life of a new, + mysterious island inhabitant.\", \n\"longDescription\":\"After discovering that + all of \\\"The Others\\\" pregnant women died before giving birth on the island, + an extremely reticent Sun allows Juliet to examine her -- and uncovers the identity + of the unborn child's father. Meanwhile, Desmond allows an unlikely nemesis + to help save the life of a new, mysterious island inhabitant.\"}, \n{\"wrapperType\":\"track\", + \"kind\":\"tv-episode\", \"artistId\":66012553, \"collectionId\":200507719, + \"trackId\":251892474, \"artistName\":\"LOST\", \"collectionName\":\"LOST, Season + 3\", \"trackName\":\"Catch-22\", \"collectionCensoredName\":\"LOST, Season 3\", + \"trackCensoredName\":\"Catch-22\", \"artistViewUrl\":\"http://itunes.apple.com/us/tv-show/lost/id66012553?uo=4\", + \"collectionViewUrl\":\"http://itunes.apple.com/us/tv-season/catch-22/id200507719?i=251892474&uo=4\", + \"trackViewUrl\":\"http://itunes.apple.com/us/tv-season/catch-22/id200507719?i=251892474&uo=4\", + \"previewUrl\":\"http://a1789.v.phobos.apple.com/us/r1000/047/Video/df/c5/0e/mzm.pnbrrmxr..640x480.h264lc.d2.p.m4v\", + \"artworkUrl30\":\"http://a3.mzstatic.com/us/r30/Video/e6/f5/54/mzl.xrciclpo.40x30-75.jpg\", + \"artworkUrl60\":\"http://a4.mzstatic.com/us/r30/Video/e6/f5/54/mzl.xrciclpo.80x60-75.jpg\", + \"artworkUrl100\":\"http://a1.mzstatic.com/us/r30/Video/e6/f5/54/mzl.xrciclpo.100x100-75.jpg\", + \"collectionPrice\":24.99, \"trackPrice\":1.99, \"releaseDate\":\"2007-04-18T07:00:00Z\", + \"collectionExplicitness\":\"notExplicit\", \"trackExplicitness\":\"notExplicit\", + \"discCount\":1, \"discNumber\":1, \"trackCount\":23, \"trackNumber\":17, \"trackTimeMillis\":2551041.0, + \"country\":\"USA\", \"currency\":\"USD\", \"primaryGenreName\":\"Drama\", \"contentAdvisoryRating\":\"TV-14\", + \n\"shortDescription\":\"Desmond coaxes Charlie, Hurley and Jin on a trek across + the jungle after experiencing one of his future-prophesizing \\\"flashes\\\" + -- but is he purposely placing Charlie's life in harm's way? Meanwhile, Kate + turns to an unwitting Sawyer after seeing Jack alone with Juliet.\", \n\"longDescription\":\"Desmond + coaxes Charlie, Hurley and Jin on a trek across the jungle after experiencing + one of his future-prophesizing \\\"flashes\\\" -- but is he purposely placing + Charlie's life in harm's way? Meanwhile, Kate turns to an unwitting Sawyer after + seeing Jack alone with Juliet.\"}, \n{\"wrapperType\":\"track\", \"kind\":\"tv-episode\", + \"artistId\":66012553, \"collectionId\":200507719, \"trackId\":258597093, \"artistName\":\"LOST\", + \"collectionName\":\"LOST, Season 3\", \"trackName\":\"Through the Looking Glass, + Pt. 2\", \"collectionCensoredName\":\"LOST, Season 3\", \"trackCensoredName\":\"Through + the Looking Glass, Pt. 2\", \"artistViewUrl\":\"http://itunes.apple.com/us/tv-show/lost/id66012553?uo=4\", + \"collectionViewUrl\":\"http://itunes.apple.com/us/tv-season/through-looking-glass-pt./id200507719?i=258597093&uo=4\", + \"trackViewUrl\":\"http://itunes.apple.com/us/tv-season/through-looking-glass-pt./id200507719?i=258597093&uo=4\", + \"previewUrl\":\"http://a407.v.phobos.apple.com/us/r1000/022/Video/bf/28/82/mzm.qwiuqvai..640x480.h264lc.d2.p.m4v\", + \"artworkUrl30\":\"http://a3.mzstatic.com/us/r30/Video/e6/f5/54/mzl.xrciclpo.40x30-75.jpg\", + \"artworkUrl60\":\"http://a4.mzstatic.com/us/r30/Video/e6/f5/54/mzl.xrciclpo.80x60-75.jpg\", + \"artworkUrl100\":\"http://a1.mzstatic.com/us/r30/Video/e6/f5/54/mzl.xrciclpo.100x100-75.jpg\", + \"collectionPrice\":24.99, \"trackPrice\":1.99, \"releaseDate\":\"2007-05-23T07:00:00Z\", + \"collectionExplicitness\":\"notExplicit\", \"trackExplicitness\":\"notExplicit\", + \"discCount\":1, \"discNumber\":1, \"trackCount\":23, \"trackNumber\":23, \"trackTimeMillis\":2607666.0, + \"country\":\"USA\", \"currency\":\"USD\", \"primaryGenreName\":\"Drama\", \"contentAdvisoryRating\":\"TV-14\", + \"shortDescription\":\"Continuation of Jack and the castaways beginning their + efforts to make contact with Naomi's rescue ship.\", \"longDescription\":\"Continuation + of Jack and the castaways beginning their efforts to make contact with Naomi's + rescue ship.\"}, \n{\"wrapperType\":\"track\", \"kind\":\"tv-episode\", \"artistId\":66012553, + \"collectionId\":81864976, \"trackId\":81826878, \"artistName\":\"LOST\", \"collectionName\":\"LOST, + Season 1\", \"trackName\":\"Pilot, Pt. 2\", \"collectionCensoredName\":\"LOST, + Season 1\", \"trackCensoredName\":\"Pilot, Pt. 2\", \"artistViewUrl\":\"http://itunes.apple.com/us/tv-show/lost/id66012553?uo=4\", + \"collectionViewUrl\":\"http://itunes.apple.com/us/tv-season/pilot-pt.-2/id81864976?i=81826878&uo=4\", + \"trackViewUrl\":\"http://itunes.apple.com/us/tv-season/pilot-pt.-2/id81864976?i=81826878&uo=4\", + \"previewUrl\":\"http://a257.v.phobos.apple.com/us/r1000/104/Video/22/0c/75/mzm.kpbfijaj..640x480.h264lc.d2.p.m4v\", + \"artworkUrl30\":\"http://a1.mzstatic.com/us/r1000/004/Features/f1/c6/64/dj.ksjwcoow.40x30-75.jpg\", + \"artworkUrl60\":\"http://a4.mzstatic.com/us/r1000/004/Features/f1/c6/64/dj.ksjwcoow.80x60-75.jpg\", + \"artworkUrl100\":\"http://a4.mzstatic.com/us/r1000/004/Features/f1/c6/64/dj.ksjwcoow.100x100-75.jpg\", + \"collectionPrice\":19.99, \"trackPrice\":1.99, \"releaseDate\":\"2004-09-29T07:00:00Z\", + \"collectionExplicitness\":\"notExplicit\", \"trackExplicitness\":\"notExplicit\", + \"discCount\":1, \"discNumber\":1, \"trackCount\":25, \"trackNumber\":2, \"trackTimeMillis\":2424466.0, + \"country\":\"USA\", \"currency\":\"USD\", \"primaryGenreName\":\"Drama\", \"contentAdvisoryRating\":\"TV-14\", + \"shortDescription\":\"The discovery of a transceiver among the plane's wreckage + and the thought that rescue could be imminent temporarily raises the castaways' + spirits.\", \n\"longDescription\":\"The discovery of a transceiver among the + plane's wreckage and the thought that rescue could be imminent temporarily raises + the castaways' spirits. The island's mysteries continue to baffle with the discovery + of handcuffs, a gun, and an animal that shouldn't be able to survive in a tropical + climate.\"}, \n{\"wrapperType\":\"track\", \"kind\":\"tv-episode\", \"artistId\":66012553, + \"collectionId\":271230907, \"trackId\":273109898, \"artistName\":\"LOST\", + \"collectionName\":\"LOST, Season 4\", \"trackName\":\"The Beginning of the + End\", \"collectionCensoredName\":\"LOST, Season 4\", \"trackCensoredName\":\"The + Beginning of the End\", \"artistViewUrl\":\"http://itunes.apple.com/us/tv-show/lost/id66012553?uo=4\", + \"collectionViewUrl\":\"http://itunes.apple.com/us/tv-season/the-beginning-of-the-end/id271230907?i=273109898&uo=4\", + \"trackViewUrl\":\"http://itunes.apple.com/us/tv-season/the-beginning-of-the-end/id271230907?i=273109898&uo=4\", + \"previewUrl\":\"http://a1450.v.phobos.apple.com/us/r1000/039/Video/d9/be/e2/mzm.ymjtaciv..640x480.h264lc.d2.p.m4v\", + \"artworkUrl30\":\"http://a5.mzstatic.com/us/r1000/024/Video/7c/70/47/mzl.bxzxwvhu.40x30-75.jpg\", + \"artworkUrl60\":\"http://a3.mzstatic.com/us/r1000/024/Video/7c/70/47/mzl.bxzxwvhu.80x60-75.jpg\", + \"artworkUrl100\":\"http://a1.mzstatic.com/us/r1000/024/Video/7c/70/47/mzl.bxzxwvhu.100x100-75.jpg\", + \"collectionPrice\":24.99, \"trackPrice\":1.99, \"releaseDate\":\"2008-01-31T08:00:00Z\", + \"collectionExplicitness\":\"notExplicit\", \"trackExplicitness\":\"notExplicit\", + \"discCount\":1, \"discNumber\":1, \"trackCount\":14, \"trackNumber\":1, \"trackTimeMillis\":2589855.0, + \"country\":\"USA\", \"currency\":\"USD\", \"primaryGenreName\":\"Drama\", \"contentAdvisoryRating\":\"TV-14\", + \n\"shortDescription\":\"Feeling that their rescue is close at hand, the survivors + don't know whether to believe Charlie's final message that the people claiming + to liberate them are not who they seem to be.\", \n\"longDescription\":\"Feeling + that their rescue is close at hand, the survivors don't know whether to believe + Charlie's final message that the people claiming to liberate them are not who + they seem to be.\"}, \n{\"wrapperType\":\"track\", \"kind\":\"tv-episode\", + \"artistId\":66012553, \"collectionId\":200507719, \"trackId\":258597091, \"artistName\":\"LOST\", + \"collectionName\":\"LOST, Season 3\", \"trackName\":\"Through the Looking Glass, + Pt. 1\", \"collectionCensoredName\":\"LOST, Season 3\", \"trackCensoredName\":\"Through + the Looking Glass, Pt. 1\", \"artistViewUrl\":\"http://itunes.apple.com/us/tv-show/lost/id66012553?uo=4\", + \"collectionViewUrl\":\"http://itunes.apple.com/us/tv-season/through-looking-glass-pt./id200507719?i=258597091&uo=4\", + \"trackViewUrl\":\"http://itunes.apple.com/us/tv-season/through-looking-glass-pt./id200507719?i=258597091&uo=4\", + \"previewUrl\":\"http://a1968.v.phobos.apple.com/us/r1000/064/Video/2a/70/ba/mzm.yzkfesdo..640x480.h264lc.d2.p.m4v\", + \"artworkUrl30\":\"http://a3.mzstatic.com/us/r30/Video/e6/f5/54/mzl.xrciclpo.40x30-75.jpg\", + \"artworkUrl60\":\"http://a4.mzstatic.com/us/r30/Video/e6/f5/54/mzl.xrciclpo.80x60-75.jpg\", + \"artworkUrl100\":\"http://a1.mzstatic.com/us/r30/Video/e6/f5/54/mzl.xrciclpo.100x100-75.jpg\", + \"collectionPrice\":24.99, \"trackPrice\":1.99, \"releaseDate\":\"2007-05-23T07:00:00Z\", + \"collectionExplicitness\":\"notExplicit\", \"trackExplicitness\":\"notExplicit\", + \"discCount\":1, \"discNumber\":1, \"trackCount\":23, \"trackNumber\":22, \"trackTimeMillis\":2601500.0, + \"country\":\"USA\", \"currency\":\"USD\", \"primaryGenreName\":\"Drama\", \"contentAdvisoryRating\":\"TV-14\", + \"shortDescription\":\"Jack and the castaways begin their efforts to make contact + with Naomi's rescue ship.\", \"longDescription\":\"Jack and the castaways begin + their efforts to make contact with Naomi's rescue ship.\"}]\n}\n\n\n" + http_version: '1.1' +- !ruby/struct:VCR::HTTPInteraction + request: !ruby/struct:VCR::Request + method: :get + uri: http://ax.itunes.apple.com:80/WebObjects/MZStoreServices.woa/wa/wsSearch?media=software&term=Doodle%20Jump + body: + headers: + accept: + - application/json + user-agent: + - ITunes Ruby Gem 0.5.5 + accept-encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + response: !ruby/struct:VCR::Response + status: !ruby/struct:VCR::ResponseStatus + code: 200 + message: OK + headers: + x-apple-orig-url-path: + - /WebObjects/MZStoreServices.woa/wa/wsSearch?term=Doodle%20Jump&media=software + x-apple-translated-wo-url: + - /WebObjects/MZStoreServices.woa/wa/wsSearch?term=Doodle%20Jump&media=software + x-apple-application-site: + - NWK + x-apple-max-age: + - '3600' + content-type: + - text/javascript; charset=utf-8 + x-apple-application-instance: + - '1021013' + x-webobjects-loadaverage: + - '0' + vary: + - Accept-Encoding + - X-Apple-Store-Front + expires: + - Wed, 18 Apr 2012 22:53:40 GMT + cache-control: + - max-age=0, no-cache + pragma: + - no-cache + date: + - Wed, 18 Apr 2012 22:53:40 GMT + transfer-encoding: + - chunked + connection: + - Transfer-Encoding + - keep-alive + x-apple-partner: + - origin.0 + body: ! "\n\n\n{\n \"resultCount\":50,\n \"results\": [\n{\"kind\":\"software\", + \"features\":[\"gameCenter\"], \"supportedDevices\":[\"all\"], \"isGameCenterEnabled\":true, + \"artistViewUrl\":\"http://itunes.apple.com/us/artist/lima-sky/id285874818?uo=4\", + \"artworkUrl60\":\"http://a2.mzstatic.com/us/r1000/080/Purple/v4/81/4d/cb/814dcbd3-18e6-e374-e8d1-226b17bc788e/Icon.png\", + \n\"screenshotUrls\":[\"http://a5.mzstatic.com/us/r1000/064/Purple/v4/cf/5a/42/cf5a4239-ee62-7b1d-779e-b00b4df0afea/mzl.dvqploru.jpg\", + \"http://a1.mzstatic.com/us/r1000/117/Purple/v4/7c/46/8e/7c468e94-dc5d-f15a-9db7-fe03b2d9261c/mza_7235518178808874325.jpg\", + \"http://a3.mzstatic.com/us/r1000/078/Purple/v4/4f/c8/dc/4fc8dc44-1d1b-acc9-6ef3-702d169bc83a/mzl.tzfrkyjf.jpg\", + \"http://a5.mzstatic.com/us/r1000/111/Purple/v4/8d/96/44/8d964484-3ac4-cbf2-99cf-bf0963738bd3/mzl.gnfoxtvd.jpg\", + \"http://a5.mzstatic.com/us/r1000/084/Purple/v4/3a/41/24/3a4124e2-310a-8c2e-371f-ae52052aef33/mzl.enfjnwne.jpg\"], + \"ipadScreenshotUrls\":[], \"artworkUrl512\":\"http://a3.mzstatic.com/us/r1000/104/Purple/v4/2a/1f/19/2a1f1975-72ca-699a-c508-7b6f7db81d57/mzl.tvhsszmt.jpg\", + \"artistId\":285874818, \"artistName\":\"Lima Sky\", \"price\":0.99, \"version\":\"2.10\", + \n\"description\":\"Doodle Jump - BE WARNED: Insanely addictive!\\n\\n\\\"possibly + the best iPhone game ever created\\\" - Touch Arcade\\n\\nTHE GAME YOU CHOSE + TO DOWNLOAD INSTEAD OF STREAMING KEVIN DURANT'S SHOT!\\n\\n\\n- one of ALL-TIME + TOP SELLING iPhone apps\\n- THE KING OF CASUAL GAMES \\n- THE MOST ADDICTIVE + App Store game\\n- POSSIBLY THE BEST iPHONE GAME EVER \\n- A MUST HAVE!\\n\\n\\\"Doodle + Jump was Angry Birds before Angry Birds\\\" - Macrumors.com\\n\\nEasy to learn, + difficult to master - there is no better title to introduce an iPhone or iPod + touch to a new gamer!\\n\\nFrom prime-time sitcoms (BIG BANG THEORY) to late + night TV (JIMMY FALLON) to a fashion accessory for pop stars (LADY GAGA), Doodle + Jump is EVERYWHERE! It's a cultural craze, a hot new trend!\\n\\nDoodle Jump + is the WINNER of 2010 APPLE DESIGN AWARD for excellence in design, user experience, + innovation, performance, technology adoption, and quality! This is the OSCAR/ACADEMY + AWARD of iPhone Apps!\\n\\n\\\"Doodle Jump is to the iPhone what Super Mario + Bros was to the NES\\\" - player review\\n\\n**********\\nOver 30 FREE UPDATES + (and counting), 9 INCREDIBLE WORLDS including SPACE, JUNGLE, UNDERWATER, WINTER, + ICE BLIZZARD, HALLOWEEN, SOCCER..., 3 SECRET MODES, HOURS and HOURS of gameplay, + and much, much more!\\n**********\\n\\niTunes reviews (US) \\n****\\n\\\"I just + got dumped cuz I wouldn't put this game down! And I just kept playing while + she walked away... ITS THAT GOOD!\\\"\\n\\n\\\"Somehow it's better than sleep + for me. I am sick, sleep deprived, and achy, and yet I cannot put it down\\\"\\n\\n\\\"Coming + from someone who owns a PS3, Wii, and Xbox 360, I play this game more!! This + game is amazing!!\\\"\\n\\n\\nMedia reviews:\\n****\\n\\\"Doodle Jump is a perfect + micro-game, insanely addictive, and deliciously replayable. Go get it.\\\" - + \ MacWorld.com\\n\\n\\\"the most addicting iPhone game yet?\\\" -GIZMODO\\n\\n\\\"...the + king of casual games on the App Store ...tons of updates and lots and lots of + gameplay in a super simple and accessible package.\\\" - TUAW\\n\\n\\nSo, what + is it? \\n****\\nIn Doodle Jump, you guide Doodle the Doodler\\u2014using some + of the most subtle and accurate tilt controls in existence\\u2014on a springy + journey up, up, up a sheet of graph paper, picking up jet packs, avoiding black + holes, and blasting baddies with nose balls along the way.\\n\\nLaugh with delight + as Doodle™ blows past other players' actual score markers scribbled in the margins. + And be warned: this game is insanely addictive.\\n\\n\\nFEATURES:\\n- 9 incredible + worlds + 3 SECRET easter eggs\\n- broken, moving, disappearing, moveable, and + EXPLODING platforms\\n- JET PACKs, PROPELLER HATS, ROCKETS, and springs that + fly you higher\\n- UFOs, black holes, monsters!\\n- jump on monsters to bring + them down MARIO-style\\n- Submit score to Facebook & Twitter\\n- Compete agains + Facbook friends!\\n- Global leaderboards, achievements!\\n- Doodle Jump: HOP + The Movie secret easter egg\\n\\nHow to play:\\nTilt to move left or right, + tap the screen to shoot.\\n\\n*Please don't Doodle Jump and drive, and BE WARNED: + Doodle Jump is Insanely Addictive!\\n\\n* --------------------------------\\nMULTIPLAYER + requires: \\n- Game Center\\n- Wi-Fi connection\\n- at least iPhone 3GS or 2g + iPod touch\\n- at least iOS 4.1\", \"genreIds\":[\"6014\", \"6016\", \"7001\", + \"7002\"], \"releaseDate\":\"2009-03-27T02:01:56Z\", \"sellerName\":\"Lima Sky\", + \"currency\":\"USD\", \"genres\":[\"Games\", \"Entertainment\", \"Action\", + \"Adventure\"], \"bundleId\":\"com.yourcompany.DoodleJump\", \"trackId\":307727765, + \"trackName\":\"Doodle Jump\", \"primaryGenreName\":\"Games\", \"primaryGenreId\":6014, + \n\"releaseNotes\":\"Just in time for Easter, an awesome new update to the Easter + Theme - A DOODLE JUMP EGG HUNT! with new Easter Monsters and Achievements! + \ How many easter eggs can you collect?\\n\\nHappy Easter and and Happy Passover!!!\\n\\n\\n... + AND, if don't have DOODLE JUMP FOR IPAD yet, get it now! \\nhttp://bit.ly/DoodleJumpiPad + \\n\\n\\n***** \\nIf you like Doodle Jump, please rate it 5-stars in iTunes + every time an update comes out! \\nAs always, your 5-star iTunes ratings and + reviews keep the updates coming! \\nThanks for playing Doodle Jump!!!!! \\n***** + \\n\\n\\nFollow us on Twitter for updates on Doodle Jump: \\n@LimaSky ( http://twitter.com/LimaSky + ) \\n\\nBecome a Doodle Jump fan on facebook: \\nhttp://facebook.com/DoodleJump\", + \"wrapperType\":\"software\", \"contentAdvisoryRating\":\"4+\", \"artworkUrl100\":\"http://a3.mzstatic.com/us/r1000/104/Purple/v4/2a/1f/19/2a1f1975-72ca-699a-c508-7b6f7db81d57/mzl.tvhsszmt.jpg\", + \"trackCensoredName\":\"Doodle Jump\", \"trackViewUrl\":\"http://itunes.apple.com/us/app/doodle-jump/id307727765?mt=8&uo=4\", + \"languageCodesISO2A\":[\"EN\"], \"fileSizeBytes\":\"21107669\", \"sellerUrl\":\"http://www.LimaSky.com\", + \"averageUserRatingForCurrentVersion\":4.5, \"userRatingCountForCurrentVersion\":6885, + \"trackContentRating\":\"4+\", \"averageUserRating\":4.5, \"userRatingCount\":317546}, + \n{\"kind\":\"software\", \"features\":[\"gameCenter\"], \"supportedDevices\":[\"all\"], + \"isGameCenterEnabled\":true, \"artistViewUrl\":\"http://itunes.apple.com/us/artist/get-set-games/id335928800?uo=4\", + \"artworkUrl60\":\"http://a4.mzstatic.com/us/r1000/104/Purple/52/4e/e7/mzi.mrzoezgn.png\", + \n\"screenshotUrls\":[\"http://a1.mzstatic.com/us/r1000/069/Purple/d7/ec/e9/mzl.vodvklbm.png\", + \"http://a5.mzstatic.com/us/r1000/105/Purple/34/e7/c1/mzl.faesldas.png\", \"http://a5.mzstatic.com/us/r1000/083/Purple/29/63/40/mzl.lpkhqaul.png\", + \"http://a5.mzstatic.com/us/r1000/091/Purple/10/12/67/mzl.xurrqotm.png\", \"http://a1.mzstatic.com/us/r1000/081/Purple/58/4d/7f/mzl.kxiqhukb.png\"], + \"ipadScreenshotUrls\":[], \"artworkUrl512\":\"http://a2.mzstatic.com/us/r1000/077/Purple/95/31/22/mzl.qmegbhyg.png\", + \"artistId\":335928800, \"artistName\":\"Get Set Games\", \"price\":0.00, \"version\":\"16.0.2\", + \n\"description\":\"\\u201cMega Jump is a standard-bearer for mobile gaming.\\u201d + - Destructoid\\n\\n★ ★ Over 20 Million Players! Join in! ★ ★ \\n\\n\\n\\u201cThe + best casual endless game in the App Store\\u201d - AppAdvice.com\\n\\n\\\"Superb\\\" + - Slide to Play\\n\\n\\\"Incredibly addictive\\\" - Gamezebo\\n\\n\\u201cYou\\u2019ll + be amazed with how long you\\u2019re going to be playing!\\u201d - Appmodo\\n\\n\\nGet + ready to blast off on an epic jumping journey with Mega Jump! \\n\\nCollect + coins, grab crazy powerups, and evade monsters to boost yourself to the edge + of the Universe and beyond!\\n\\nMega Jump has got what you need:\\n\\n★ Eye-popping + cartoon graphics and beautiful multi-layered backdrops\\n\\n★ Grab the Fireball + and Super Nova Mega Boosts and hang on for a fiery ride!\\n\\n★ Collect coins + and stars for big points and huge combo boosts!\\n\\n★ Upgradable powerups! + Use the coins you collect to unlock items that make your player bigger, better + and faster!\\n\\n★ Turn into a Balloon! Strap on some Jump Boots! Become a Coin + Magnet! Hover with the Action Umbrella or zap enemies with the Power Shield!\\n\\n★ + Two magical worlds to explore!\\n\\n★ Multiple stages - try to reach the edge + of space and beyond! \\n\\n★ Watch out for killer items and monsters that'll + stop you dead in your tracks!\\n\\n★ TV-out support!\\n\\n★ Unlock all kinds + of awesome new characters to play with!\\n\\n★ Hilarious sound effects and a + bumping sound track!\\n\\n★ Regular updates with new features and upgrades!\\n\\n★ + Dozens of unlockable achievements for maximum gamerscore!\\n\\n★ Online worldwide + leaderboards with Openfeint and Game Center!\\n\\n★ Compete with your friends + on Facebook and Twitter!\\n\\nWhat are you waiting for? Grab Mega Jump and start + jumping! \\n\\nHonors:\\nMega Jump has over 16 million players and counting, + and reached the #1 App spot in 28 countries! Thanks to all the Mega Jumpers + out there!\\n\\nJoin us on the Mega Jump Facebook page:\\nhttp://www.facebook.com/MegaJump\\n\\nFollow + us on Twitter:\\nhttp://twitter.com/getsetgames\\n\\nPlease note: Apple is not + a sponsor of any Kiip reward or promotion.\", \"genreIds\":[\"6014\", \"7001\", + \"6016\", \"7003\"], \"releaseDate\":\"2010-05-05T11:20:31Z\", \"sellerName\":\"Get + Set Games Inc.\", \"currency\":\"USD\", \"genres\":[\"Games\", \"Action\", \"Entertainment\", + \"Arcade\"], \"bundleId\":\"com.getsetgames.megajump\", \"trackId\":370398167, + \"trackName\":\"Mega Jump\", \"primaryGenreName\":\"Games\", \"primaryGenreId\":6014, + \n\"releaseNotes\":\"Hey Mega Jumpers! This is a quick bug-stomping update for + players who were having trouble playing on devices running iOS 3! Stay tuned + another awesome update coming soon! Here is what was previously new:\\n\\nA + brand new World called Aeria has been added to Mega Jump!\\n\\nGet ready for + 20 new action packed stages, stunning new backgrounds and graphics, and a great + new soundtrack!\\n\\nWe also have some huge news: Mega Jump has now been downloaded + over 20 MILLION TIMES! Thank you for telling your friends about Mega Jump! Your + support and feedback keeps Mega Jump going! This is a quick update that fixes + some bugs and gives you a lot more videos to watch for Free MP!\\n\\nHere's + what was new in Mega Jump Update 16:\\n\\nPocket Powers!\\n- Pocket Powers give + you a chance to load up with powerups each time you play!\\n- Customize your + game - choose up to 3 powerups to bring into the game with you!\\n- The Mega + version of each powerup in the store is available to try for very low prices!\\n- + Give yourself a challenge! Make stages longer, remove all powerups or strap + on the lead foot!\\n\\nWeekly Ranks!\\n- Compete against your friends on OpenFeint + and Game Center for the highest score of the week!\\n- Check it out on the all + new Game Over screen - it's beautiful!\\n\\nAnd much more!\\n- Brag about your + high scores in style with iOS 5 Twitter support!\\n- New stuff all the time! + Keep an eye out for more limited edition goodies in the store coming soon!\\n- + Improved performance and stability on all devices!\\n\\nThank you for being + one of the millions of people playing Mega Jump! Mega Jump has the best players + in the world and we want to thank you for making Mega Jump such a massive hit!\\n\\nIf + you like Mega Jump and want to see more of these awesome updates, please rate + it 5 stars in iTunes after every update!\\n\\nUntil next time: keep on jumping!\\n\\nJoin + us on the Mega Jump Facebook page:\\nhttp://www.facebook.com/MegaJump\\n\\nFollow + us on Twitter:\\nhttp://twitter.com/megajumpgame\", \"wrapperType\":\"software\", + \"contentAdvisoryRating\":\"4+\", \"artworkUrl100\":\"http://a2.mzstatic.com/us/r1000/077/Purple/95/31/22/mzl.qmegbhyg.png\", + \"trackCensoredName\":\"Mega Jump\", \"trackViewUrl\":\"http://itunes.apple.com/us/app/mega-jump/id370398167?mt=8&uo=4\", + \"languageCodesISO2A\":[\"EN\"], \"fileSizeBytes\":\"20435760\", \"sellerUrl\":\"http://getsetgames.com\", + \"averageUserRatingForCurrentVersion\":4.5, \"userRatingCountForCurrentVersion\":6125, + \"trackContentRating\":\"4+\", \"averageUserRating\":3.5, \"userRatingCount\":113789}, + \n{\"kind\":\"software\", \"features\":[], \"supportedDevices\":[\"all\"], \"isGameCenterEnabled\":false, + \"artistViewUrl\":\"http://itunes.apple.com/us/artist/lima-sky/id285874818?uo=4\", + \"artworkUrl60\":\"http://a1.mzstatic.com/us/r1000/062/Purple/7c/9a/d5/mzi.gmgruedp.png\", + \n\"screenshotUrls\":[\"http://a1.mzstatic.com/us/r1000/080/Purple/70/83/c7/mzl.qsqnfahm.jpg\", + \"http://a2.mzstatic.com/us/r1000/060/Purple/9c/b6/47/mzl.aspeohbj.jpg\", \"http://a1.mzstatic.com/us/r1000/066/Purple/c6/70/fe/mzl.ucxpnqud.jpg\", + \"http://a4.mzstatic.com/us/r1000/082/Purple/40/1c/11/mzl.ygdrirlt.jpg\", \"http://a2.mzstatic.com/us/r1000/060/Purple/e3/a9/5f/mzl.ixhmyzbm.jpg\"], + \"ipadScreenshotUrls\":[], \"artworkUrl512\":\"http://a5.mzstatic.com/us/r1000/078/Purple/dd/b3/2b/mzl.mjvxwbni.jpg\", + \"artistId\":285874818, \"artistName\":\"Lima Sky\", \"price\":0.00, \"version\":\"1.2.4\", + \n\"description\":\"Play this FREE version of the mega-hit game Doodle Jump + and find out for yourself what millions of players around the world already + know:\\n\\nDOODLE JUMP IS INSANELY ADDICTIVE!\\n\\n\\\"From prime-time sitcoms + (BIG BANG THEORY) to late night TV (JIMMY FALLON) to a fashion accessory for + pop stars (LADY GAGA), Doodle Jump is EVERYWHERE! It's a cultural craze, a hot + new trend!\\\" - CBS Evening News\\n\\n\\\"possibly the best iPhone game ever + created\\\" - Touch Arcade\\n\\\"Doodle Jump was Angry Birds before Angry Birds\\\" + - Macrumors.com\\n\\n\\n::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::\\n\\nIn + Doodle Jump, you guide Doodle the Doodler\\u2014using some of the most subtle + and accurate tilt controls in existence\\u2014on a springy journey up, up, up + a sheet of graph paper, picking up jet packs, avoiding black holes, and blasting + baddies with nose balls along the way.\\n\\nLaugh with delight as Doodle blows + past other players' actual score markers scribbled in the margins. And be warned: + this game is insanely addictive.\\n\\n::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::\\n\\nIf + you enjoy Doodle Jump FREE with its 3 super cool themes, you will LOVE the 99c + Doodle Jump, which has 9 awesome themes, multiplayer racing, global and friends + leaderboards, achievements, and much much more...\", \"genreIds\":[\"6014\", + \"7003\", \"7001\"], \"releaseDate\":\"2011-08-25T01:38:49Z\", \"sellerName\":\"Lima + Sky\", \"currency\":\"USD\", \"genres\":[\"Games\", \"Arcade\", \"Action\"], + \"bundleId\":\"com.limasky.doodlejumpfree\", \"trackId\":456355158, \"trackName\":\"Doodle + Jump FREE\", \"primaryGenreName\":\"Games\", \"primaryGenreId\":6014, \"releaseNotes\":\"bug + fixes\", \"wrapperType\":\"software\", \"contentAdvisoryRating\":\"4+\", \"artworkUrl100\":\"http://a5.mzstatic.com/us/r1000/078/Purple/dd/b3/2b/mzl.mjvxwbni.jpg\", + \"trackCensoredName\":\"Doodle Jump FREE\", \"trackViewUrl\":\"http://itunes.apple.com/us/app/doodle-jump-free/id456355158?mt=8&uo=4\", + \"languageCodesISO2A\":[\"EN\"], \"fileSizeBytes\":\"17280307\", \"sellerUrl\":\"http://\", + \"averageUserRatingForCurrentVersion\":4.0, \"userRatingCountForCurrentVersion\":1608, + \"trackContentRating\":\"4+\", \"averageUserRating\":4.5, \"userRatingCount\":17252}, + \n{\"kind\":\"software\", \"features\":[], \"supportedDevices\":[\"all\"], \"isGameCenterEnabled\":false, + \"artistViewUrl\":\"http://itunes.apple.com/us/artist/chad-towns/id306939927?uo=4\", + \"artworkUrl60\":\"http://a5.mzstatic.com/us/r1000/101/Purple/v4/5a/1e/48/5a1e48be-c332-28a3-0425-beda21d3e7a1/Icon.png\", + \n\"screenshotUrls\":[\"http://a4.mzstatic.com/us/r1000/078/Purple/v4/1f/2b/46/1f2b4666-11ae-a873-bd25-93424937fd27/mza_7081625768391154094.png\", + \"http://a3.mzstatic.com/us/r1000/110/Purple/v4/34/91/0b/34910b78-8e83-c130-8b46-09a117791547/mza_3361486650133427657.png\", + \"http://a5.mzstatic.com/us/r1000/076/Purple/v4/50/b2/44/50b2445d-97c4-9543-dab6-2c0bc762f8d3/mza_5058424263359511285.png\", + \"http://a5.mzstatic.com/us/r1000/070/Purple/v4/da/a5/39/daa53944-9760-698a-e6e3-016c38ab0dcf/mza_4453787998960986480.png\", + \"http://a2.mzstatic.com/us/r1000/096/Purple/v4/84/6a/5b/846a5bde-5b37-b4b6-6adb-7987a17e74cb/mza_7320818418209364516.png\"], + \"ipadScreenshotUrls\":[], \"artworkUrl512\":\"http://a5.mzstatic.com/us/r1000/069/Purple/v4/c7/79/ef/c779eff9-972b-a011-3102-7fa6eedec633/mza_7785588499322050499.png\", + \"artistId\":306939927, \"artistName\":\"Chad Towns\", \"price\":0.99, \"version\":\"2.0.1\", + \n\"description\":\"The Doodle Army wants you!\\nEnlist today and cut down wave + after wave of enemies in this endless shooting adventure! Hear the sweet screams + of your victims as you strafe them with submachine gun fire or explode them + with grenades and roast their remains with the flamethrower.\\n\\nThe in game + tutorial \\\"Drill Sergeant\\\" will guide you through the basics in Boot Camp. + \ Soon you will be on your way to creating your very own heaping piles of bloody + bad guy parts. See how far you can go before the enemy overwhelms you.\\n\\n-Employ + over 40 different weapons including:\\npistols, submachine guns, sniper rifles, + shotguns, grenade launchers,assault rifles, chainsaws, lasers, grenades, and + the dreaded flamethrower\\n\\n-Play as one of over 40 unlock-able characters + in one of six battle zones. \\n\\nZombie Town\\nVietnam\\nNormandy\\nBoot Camp\\nEgypt\\nMars\\n\\n-Two + control styles available.\\n-Continue your progress with checkpoint auto saving.\\n\\nPast + Updates:\\nOct 30th 2011 - Cyborg City\\nNov 3rd 2010 - Zombie Survival\\nSept + 19th 2010 - Space Jump\\nAug 10th 2010 - Doodle Camel Attack\\nJuly 3rd 2010 + - Boats, Planes and Submarines\\nMay 21st 2010 - Rescue Chopper\\nApr 28th 2010 + - ATV Ride\\nMar 17th 2010 - Mars Mine Mission \\nFeb 12th 2010 - Urban Undead + Mission \\n\\n\\nNow with Cheat Mode to unlock all missions.\\n\\nFor gameplay + videos youTube search: \\\"Doodle Army\\\"\\n\\nAlso try:\\nGlobs\\nCannon Siege\\nPocket + Kite\\nJonah & the Whale\\nFlip the Bird\\n\\nSUPPORT EMAIL: \\niPhoneGlobs@gmail.com\\n\\nTHANK + YOU:\\n Thank you to the users for your support and feedback. We read and + respond to all legitimate suggestions and issues.\\n\\nSpecial Thanks:\\nsid187, + da shiz wiz 19, Kunning, Jacques B. (jak56), Umang J. Shah (ultimo), Cody R. + (iPro), jchampl, The Bat Outta Hell, Asaki Tay (Aspargusman), derek420, Fernando + (felnan), Scott Lanoue (the prez) and LordGek\", \"genreIds\":[\"6014\", \"7002\", + \"6016\", \"7001\"], \"releaseDate\":\"2010-01-14T05:42:41Z\", \"sellerName\":\"Chad + Towns\", \"currency\":\"USD\", \"genres\":[\"Games\", \"Adventure\", \"Entertainment\", + \"Action\"], \"bundleId\":\"com.chadtowns.stickarmy\", \"trackId\":349276209, + \"trackName\":\"Doodle Army\", \"primaryGenreName\":\"Games\", \"primaryGenreId\":6014, + \n\"releaseNotes\":\"Changed app links due to an app title change.\\n\\nHave + you played the Boss Battles and Mini Games yet? Find them in the top right + of each pre-mission screen!\\n\\nCheck out or latest game Flip the Bird!\", + \"wrapperType\":\"software\", \"contentAdvisoryRating\":\"9+\", \"artworkUrl100\":\"http://a5.mzstatic.com/us/r1000/069/Purple/v4/c7/79/ef/c779eff9-972b-a011-3102-7fa6eedec633/mza_7785588499322050499.png\", + \"trackCensoredName\":\"Doodle Army\", \"trackViewUrl\":\"http://itunes.apple.com/us/app/doodle-army/id349276209?mt=8&uo=4\", + \"languageCodesISO2A\":[\"EN\"], \"fileSizeBytes\":\"14402559\", \"sellerUrl\":\"http://www.appsomniacs.com\", + \"averageUserRatingForCurrentVersion\":4.0, \"userRatingCountForCurrentVersion\":54, + \"trackContentRating\":\"9+\", \"averageUserRating\":4.0, \"userRatingCount\":10225}, + \n{\"kind\":\"software\", \"features\":[], \"supportedDevices\":[\"all\"], \"isGameCenterEnabled\":false, + \"artistViewUrl\":\"http://itunes.apple.com/us/artist/robert-szeleney/id302877209?mt=8&uo=4\", + \"artworkUrl60\":\"http://a2.mzstatic.com/us/r1000/089/Purple/2a/54/f5/mzi.svcjhtjo.png\", + \n\"screenshotUrls\":[\"http://a3.mzstatic.com/us/r1000/072/Purple/b7/1f/11/mzl.omlndtrh.png\", + \"http://a3.mzstatic.com/us/r1000/098/Purple/d0/d5/f8/mzl.oqvrbnuc.png\", \"http://a2.mzstatic.com/us/r1000/085/Purple/fc/9f/70/mzl.qtxhovfd.png\", + \"http://a4.mzstatic.com/us/r1000/107/Purple/52/eb/85/mzl.htyvbgco.png\"], \"ipadScreenshotUrls\":[], + \"artworkUrl512\":\"http://a3.mzstatic.com/us/r1000/075/Purple/51/ac/6f/mzl.snlrntmi.png\", + \"artistId\":302877209, \"artistName\":\"Robert Szeleney\", \"price\":0.99, + \"version\":\"1.9\", \n\"description\":\"★★★★ Join more than 6 million Line + Runner players around the world and try to beat their score with this recent + #1 app store hit! ★★★★\\n\\n★ From the makers of Stick Stunt Biker, Rope'n'Fly, + Line Birds, Line Surfer, Line Runner, RunStickRun and more \\n★ More than 6 + million addicted players can't be wrong! \\n★ Featured by Apple as \\\"Staff + Favorite\\\"\\n★ More than 7 updates and counting...\\n\\nQuickly jump over + and roll through obstacles, as fast and as far as you can. Try to beat other + players highscore on up to 10 different tracks.\\n\\nFEATURES:\\n- Very fast + paced gameplay\\n- Really challenging\\n- Increasing difficulty from easy to + bone breaking\\n- Openfeint leaderboard\\n- Challenge your friends and all other + players worldwide\\n- Different difficulties\\n\\n\\nFeel free to post your + ideas, we will try to implement them as fast as possible. \\n\\nThank you very + much for all your support and interest in our games! We would love to hear your + suggestions.\", \"genreIds\":[\"6014\", \"7003\", \"7001\"], \"releaseDate\":\"2011-01-15T02:39:32Z\", + \"sellerName\":\"Robert Szeleney\", \"currency\":\"USD\", \"genres\":[\"Games\", + \"Arcade\", \"Action\"], \"bundleId\":\"com.rsz.LineRunner\", \"trackId\":414014326, + \"trackName\":\"Line Runner\", \"primaryGenreName\":\"Games\", \"primaryGenreId\":6014, + \"releaseNotes\":\"Minor improvements\", \"wrapperType\":\"software\", \"contentAdvisoryRating\":\"4+\", + \"artworkUrl100\":\"http://a3.mzstatic.com/us/r1000/075/Purple/51/ac/6f/mzl.snlrntmi.png\", + \"trackCensoredName\":\"Line Runner\", \"trackViewUrl\":\"http://itunes.apple.com/us/app/line-runner/id414014326?mt=8&uo=4\", + \"languageCodesISO2A\":[\"EN\"], \"fileSizeBytes\":\"8654057\", \"sellerUrl\":\"http://www.djinnworks.at\", + \"averageUserRatingForCurrentVersion\":4.0, \"userRatingCountForCurrentVersion\":839, + \"trackContentRating\":\"4+\", \"averageUserRating\":4.0, \"userRatingCount\":20192}, + \n{\"kind\":\"software\", \"features\":[\"gameCenter\", \"iosUniversal\"], \"supportedDevices\":[\"all\"], + \"isGameCenterEnabled\":true, \"artistViewUrl\":\"http://itunes.apple.com/us/artist/lima-sky/id285874818?uo=4\", + \"artworkUrl60\":\"http://a2.mzstatic.com/us/r1000/087/Purple/27/8c/33/mzi.ggmnuaqj.png\", + \n\"screenshotUrls\":[\"http://a1.mzstatic.com/us/r1000/110/Purple/97/96/f6/mzl.cjnjbifv.jpg\", + \"http://a3.mzstatic.com/us/r1000/096/Purple/5d/dd/a0/mzl.xibtcbml.png\", \"http://a4.mzstatic.com/us/r1000/074/Purple/91/8c/81/mzl.ufofntol.png\", + \"http://a4.mzstatic.com/us/r1000/064/Purple/f8/70/93/mzl.mmpjisws.png\", \"http://a3.mzstatic.com/us/r1000/082/Purple/4d/1c/59/mzl.luwrtyyj.png\"], + \n\"ipadScreenshotUrls\":[\"http://a2.mzstatic.com/us/r1000/085/Purple/fc/00/b5/mzl.bvfnxmjk.1024x1024-65.jpg\", + \"http://a1.mzstatic.com/us/r1000/089/Purple/fd/13/29/mzl.xhwianwr.1024x1024-65.jpg\", + \"http://a2.mzstatic.com/us/r1000/062/Purple/aa/e4/e8/mzl.ultolacy.1024x1024-65.jpg\", + \"http://a2.mzstatic.com/us/r1000/089/Purple/5a/20/2d/mzl.zrzgnobd.1024x1024-65.jpg\", + \"http://a3.mzstatic.com/us/r1000/115/Purple/6d/ef/4f/mzl.naiizxrg.1024x1024-65.jpg\"], + \"artworkUrl512\":\"http://a5.mzstatic.com/us/r1000/099/Purple/f8/e1/fb/mzl.dzuhfadh.png\", + \"artistId\":285874818, \"artistName\":\"Lima Sky\", \"price\":0.99, \"version\":\"1.2.1\", + \n\"description\":\"An amazingly beautiful special Christmas version of one + of the most addictive and best-selling iOS apps of all time, Doodle Jump®!\\n\\n\\\"Lima + Sky has done it again! This is a really fun game to play!!! A must have for + any Doodle Jump fan!!!\\\" - iTunes review\\n\\nCan you help Doodle jump up + all the way to the North Pole?\\n\\nDoodle Jump Christmas Special features all-NEW + STUNNING GRAPHICS, all-NEW paths and challenges, all-NEW monsters, a SUPER COOL + ROCKET power-up, CHILL-BREATH MONSTER that will freeze you if you're not careful, + and much, much more!\\n\\nDoodle Jump Christmas Special is all you LOVE about + the original Doodle Jump and then some! There's no better way to get into the + CHRISTMAS SPIRIT this year than playing Doodle Jump Christmas Special!\\n\\n\\n-----\\nNO + OTHER app (except maybe for the AWESOME Pocket God) has given away more FREE + updates than Doodle Jump, and we WILL continue to do so!\\n-----\\n\\n♥ MERRY + CHRISTMAS, HAPPY HOLIDAYS, AND A SUPER-AWESOME-HAPPY 2012 TO ALL YOU DOODLE + JUMPERS! THANK YOU FOR MAKING DOODLE JUMP SUCH AN INCREDIBLE PHENOMENON! ♥\", + \"genreIds\":[\"6014\", \"7002\", \"7003\"], \"releaseDate\":\"2010-12-15T11:23:24Z\", + \"sellerName\":\"Lima Sky\", \"currency\":\"USD\", \"genres\":[\"Games\", \"Adventure\", + \"Arcade\"], \"bundleId\":\"com.limasky.doodlejumpcs\", \"trackId\":409673985, + \"trackName\":\"Doodle Jump Christmas Special\", \"primaryGenreName\":\"Games\", + \"primaryGenreId\":6014, \"releaseNotes\":\"Bug fixes\", \"wrapperType\":\"software\", + \"contentAdvisoryRating\":\"4+\", \"artworkUrl100\":\"http://a5.mzstatic.com/us/r1000/099/Purple/f8/e1/fb/mzl.dzuhfadh.png\", + \"trackCensoredName\":\"Doodle Jump Christmas Special\", \"trackViewUrl\":\"http://itunes.apple.com/us/app/doodle-jump-christmas-special/id409673985?mt=8&uo=4\", + \"languageCodesISO2A\":[\"EN\"], \"fileSizeBytes\":\"28342081\", \"sellerUrl\":\"http://\", + \"averageUserRatingForCurrentVersion\":4.5, \"userRatingCountForCurrentVersion\":108, + \"trackContentRating\":\"4+\", \"averageUserRating\":4.0, \"userRatingCount\":3062}, + \n{\"kind\":\"software\", \"features\":[\"gameCenter\", \"iosUniversal\"], \"supportedDevices\":[\"all\"], + \"isGameCenterEnabled\":true, \"artistViewUrl\":\"http://itunes.apple.com/us/artist/lima-sky/id285874818?uo=4\", + \"artworkUrl60\":\"http://a1.mzstatic.com/us/r1000/109/Purple/v4/10/e3/8c/10e38c58-bf57-bf92-60c4-06681357d515/Icon.png\", + \n\"screenshotUrls\":[\"http://a4.mzstatic.com/us/r1000/063/Purple/ad/79/b6/mzl.gatjxlia.jpg\", + \"http://a3.mzstatic.com/us/r1000/064/Purple/a8/9c/42/mzl.staybjyb.jpg\", \"http://a5.mzstatic.com/us/r1000/082/Purple/67/ee/c8/mzl.uinqacmd.jpg\", + \"http://a1.mzstatic.com/us/r1000/104/Purple/5a/32/06/mzl.ghhdukik.jpg\", \"http://a4.mzstatic.com/us/r1000/062/Purple/cb/12/c6/mzl.cgnzvotd.jpg\"], + \n\"ipadScreenshotUrls\":[\"http://a4.mzstatic.com/us/r1000/089/Purple/0d/00/54/mzl.loaxqlsm.1024x1024-65.jpg\", + \"http://a4.mzstatic.com/us/r1000/083/Purple/7f/71/e2/mzl.falzipqk.1024x1024-65.jpg\", + \"http://a1.mzstatic.com/us/r1000/099/Purple/71/e8/88/mzl.ejkjgavy.1024x1024-65.jpg\"], + \"artworkUrl512\":\"http://a4.mzstatic.com/us/r1000/088/Purple/4f/86/8d/mzl.tiqbdjhn.jpg\", + \"artistId\":285874818, \"artistName\":\"Lima Sky\", \"price\":0.00, \"version\":\"1.2.2\", + \n\"description\":\"This special version of the mega hit original D00DLE JUMP + ( http://bit.ly/doodle-jump ) transports you to the wonderful world of HOP The + Movie.\\n\\nE.B., the Easter Bunny's son, is about to take over the family business. + However, before E.B. can become the Easter Bunny himself, he needs to become + super-proficient in jumping, and who better to help him sharpen his jumping + skills than the best jumper in the entire universe and beyond, Doodle the Doodler! + \\n\\nHop your way through the Easter Bunny\\u2019s top-secret candy factory. + Save Easter from a chick revolt led by Carlos and his fellow fluffy workers + and earn the privilege of becoming a true Easter Bunny by completing all 25 + levels. Gather different Easter eggs on each level as you spring up to towering + heights.\\n\\nFEATURES:\\n- 25 unlockable levels\\n- moving, disappearing, exploding, + and breakable platforms\\n- candy, chicks, and jump 'n' hop!\\n\\nHOT TO PLAY:\\n-Tilt + your device left or right to move in that direction\\n-Tap the screen to shoot\\n- + Collect the egg at the end of each level\\n\\n\\n-----\\nHOP is a live action/CG + animated comedy by Universal Pictures and Illumination Entertainment. www.iwantcandy.com\", + \"genreIds\":[\"6014\", \"7009\", \"7010\"], \"releaseDate\":\"2011-03-15T11:33:13Z\", + \"sellerName\":\"Lima Sky\", \"currency\":\"USD\", \"genres\":[\"Games\", \"Family\", + \"Kids\"], \"bundleId\":\"HOP\", \"trackId\":424660922, \"trackName\":\"doodle + jump: HOP The Movie\", \"primaryGenreName\":\"Games\", \"primaryGenreId\":6014, + \"releaseNotes\":\"iOS 5.1 compatibility\", \"wrapperType\":\"software\", \"contentAdvisoryRating\":\"4+\", + \"artworkUrl100\":\"http://a4.mzstatic.com/us/r1000/088/Purple/4f/86/8d/mzl.tiqbdjhn.jpg\", + \"trackCensoredName\":\"doodle jump: HOP The Movie\", \"trackViewUrl\":\"http://itunes.apple.com/us/app/doodle-jump-hop-the-movie/id424660922?mt=8&uo=4\", + \"languageCodesISO2A\":[\"EN\"], \"fileSizeBytes\":\"22464187\", \"averageUserRatingForCurrentVersion\":4.0, + \"userRatingCountForCurrentVersion\":467, \"trackContentRating\":\"4+\", \"averageUserRating\":3.5, + \"userRatingCount\":7512}, \n{\"kind\":\"software\", \"features\":[\"gameCenter\"], + \"supportedDevices\":[\"all\"], \"isGameCenterEnabled\":true, \"artistViewUrl\":\"http://itunes.apple.com/us/artist/robert-szeleney/id302877209?mt=8&uo=4\", + \"artworkUrl60\":\"http://a2.mzstatic.com/us/r1000/088/Purple/41/f8/fc/mzi.teaaifgh.png\", + \n\"screenshotUrls\":[\"http://a4.mzstatic.com/us/r1000/071/Purple/1e/d2/ac/mzl.yxttvjsa.png\", + \"http://a4.mzstatic.com/us/r1000/064/Purple/5d/d0/5f/mzl.wrffewqr.png\", \"http://a1.mzstatic.com/us/r1000/072/Purple/71/54/55/mzl.sbvpykjs.png\", + \"http://a4.mzstatic.com/us/r1000/092/Purple/0d/de/b5/mzl.qcaaoolo.png\", \"http://a4.mzstatic.com/us/r1000/114/Purple/ba/32/0d/mzl.yvilkoad.png\"], + \"ipadScreenshotUrls\":[], \"artworkUrl512\":\"http://a3.mzstatic.com/us/r1000/085/Purple/5c/d1/2a/mzl.plqrbmzo.png\", + \"artistId\":302877209, \"artistName\":\"Robert Szeleney\", \"price\":0.99, + \"version\":\"5.4\", \n\"description\":\"★★★★★ Stick runs and runs and runs + and just can't stop. Touch to make him jump from platform to platform so that + he doesn't crash into the ground. How far can YOU get before you fall? ★★★★★\\n\\n★ + Top #25 paid app in US, UK, France, Germany, Austria, etc..\\n★ From the makers + of Stick Stunt Biker, Line Birds, Rope'n'Fly, Line Surfer, Line Runner, RunStickRun + and more\\n★ More than 4 million addicted players can't be wrong! \\n\\nFEATURES:\\n\\u2022 + Stick drawing \\n\\u2022 9 predefined levels \\n\\u2022 A random level for never + ending gameplay \\n\\u2022 Planes to hang on, Cars to jump at, ... \\n\\u2022 + fast paced gameplay \\n\\u2022 Music and sound effects \\n\\u2022 Multiuser + support \\n\\u2022 Game Center integrated \\n\\u2022 Integration of OpenFeint + \\n\\u2022 Integrated online leader board / high score system to compare against + your friends or all other players \\n\\u2022 Full featured Offline Leader Board + \\n\\u2022 Personal best highscore \\n\\u2022 Compare you global points against + your friends directly or all other players \\n\\nFeel free to post your ideas, + we will try to implement them as soon as possible. \\nThank you very much for + all your support and interest in our games! We would love to hear your suggestions!\", + \"genreIds\":[\"6014\", \"7003\", \"7001\"], \"releaseDate\":\"2009-11-19T06:58:14Z\", + \"sellerName\":\"Robert Szeleney\", \"currency\":\"USD\", \"genres\":[\"Games\", + \"Arcade\", \"Action\"], \"bundleId\":\"com.rsz.RunStickRun\", \"trackId\":338997215, + \"trackName\":\"RunStickRun!\", \"primaryGenreName\":\"Games\", \"primaryGenreId\":6014, + \"releaseNotes\":\"Minor fixes\", \"wrapperType\":\"software\", \"contentAdvisoryRating\":\"4+\", + \"artworkUrl100\":\"http://a3.mzstatic.com/us/r1000/085/Purple/5c/d1/2a/mzl.plqrbmzo.png\", + \"trackCensoredName\":\"RunStickRun!\", \"trackViewUrl\":\"http://itunes.apple.com/us/app/runstickrun!/id338997215?mt=8&uo=4\", + \"languageCodesISO2A\":[\"EN\"], \"fileSizeBytes\":\"15743215\", \"sellerUrl\":\"http://www.djinnworks.at\", + \"averageUserRatingForCurrentVersion\":3.5, \"userRatingCountForCurrentVersion\":1615, + \"trackContentRating\":\"4+\", \"averageUserRating\":3.5, \"userRatingCount\":8886}, + \n{\"kind\":\"software\", \"features\":[\"gameCenter\", \"iosUniversal\"], \"supportedDevices\":[\"all\"], + \"isGameCenterEnabled\":true, \"artistViewUrl\":\"http://itunes.apple.com/us/artist/donut-games/id310068844?uo=4\", + \"artworkUrl60\":\"http://a5.mzstatic.com/us/r1000/092/Purple/ba/74/62/mzi.qhzzpren.png\", + \n\"screenshotUrls\":[\"http://a2.mzstatic.com/us/r1000/110/Purple/v4/ff/dd/a0/ffdda045-8a77-e217-add2-fc0cca3083ac/mza_3541068554171975190.jpg\", + \"http://a2.mzstatic.com/us/r1000/074/Purple/v4/7d/58/b8/7d58b853-85ff-77e1-c1b4-371e9ec9c0a2/mza_1950132618087067325.jpg\", + \"http://a1.mzstatic.com/us/r1000/106/Purple/v4/4b/e2/36/4be23657-7e97-086e-a9f0-b4ecfed36748/mza_411990322531892395.jpg\", + \"http://a4.mzstatic.com/us/r1000/087/Purple/v4/b1/0d/09/b10d09d1-1b86-8a76-9dcd-3a3e7dec644f/mza_5974181657921141110.jpg\"], + \n\"ipadScreenshotUrls\":[\"http://a3.mzstatic.com/us/r1000/089/Purple/v4/32/9f/1e/329f1eec-f93f-7eb0-9c2e-d429ad1921c8/mza_2722075363699235024.1024x1024-65.jpg\", + \"http://a3.mzstatic.com/us/r1000/060/Purple/v4/d6/87/56/d68756e2-9671-8a63-b8b1-a1242dc0b5d7/mza_549259536552649100.1024x1024-65.jpg\", + \"http://a1.mzstatic.com/us/r1000/092/Purple/v4/d6/90/22/d69022a1-1535-a73c-1774-a63a9bc1c8a5/mza_5204612077206561567.1024x1024-65.jpg\"], + \"artworkUrl512\":\"http://a3.mzstatic.com/us/r1000/117/Purple/3b/c3/b2/mzl.yudvodnc.jpg\", + \"artistId\":310068844, \"artistName\":\"Donut Games\", \"price\":0.99, \"version\":\"1.21\", + \n\"description\":\"WARNING! Considered one of the most addictive games on the + App Store... if you start playing you may have a hard time to stop.\\n\\n*** + #1 Downloaded Game in 33 COUNTRIES\\n*** Chosen as APPLE STAFF FAVORITE\\n\\nPeople + are reporting that they are buying iPhones/iPod Touch devices just to play Scooter + XL!\\n\\n- - - - - - - - - - - - - - - - - -\\n\\n** The beloved RAT is BACK! + **\\n\\nKick start the scooter and head down to the abandoned suburbs to BURN + SOME SERIOUS RUBBER.\\n\\nPerforms dangerous STUNTS and jumps on top of the + scaffolds in Ratty's boldest adventure ever.\\n\\n- - - - - - - - - - - - - + - - - - -\\n\\nGAME FEATURES:\\n\\n- FOUR game modes\\n- 1: \\\"Super Cheese + XL\\\"\\n- 2: \\\"Fuel Depot\\\"\\n- 3: \\\"Skill Course\\\"\\n- 4: \\\"Power + Rider\\\" with SPECIAL POWER-UPS\\n- Perform STUNTS and receive bonus points\\n- + Rock solid controls\\n- New \\\"Mid-air\\\" jumps\\n- Global Leaderboards\\n- + Achievements\\n- Donut Games' Collectors Icon #17\\n- And much more...\\n\\nTECH + FEATURES:\\n\\n- Retina / HD support\\n- Game Center support\\n- Universal App + (iPad, iPhone, iPod Touch)\\n\\n- - - - - - - - - - - - - - - - - -\\n\\nUPDATES:\\n\\nv1.11 + - Added new GAME MODE \\\"Power Rider\\\" + added one POWER-UP: Rubber Ball\\n\\nv1.10 + - Added 4 POWER-UPS: Jet Pack, Cheese Doodle Rain, Platform Expander / Shrinker\\n\\nv1.01 + - Support for playing your own iTunes music in the background\\n\\n- - - - - + - - - - - - - - - - - - -\\n\\nEnjoy another Donut Games release!\", \"genreIds\":[\"6014\", + \"7003\", \"7009\"], \"releaseDate\":\"2009-12-07T08:18:05Z\", \"sellerName\":\"Donut + Games\", \"currency\":\"USD\", \"genres\":[\"Games\", \"Arcade\", \"Family\"], + \"bundleId\":\"com.donutgames.ratonascooterxl\", \"trackId\":342699962, \"trackName\":\"Rat + On A Scooter XL\", \"primaryGenreName\":\"Games\", \"primaryGenreId\":6014, + \n\"releaseNotes\":\"- BY FAN REQUEST: It's now easier to get a Grinding Bonus. + Previously, you had to jump while one wheel was still touching a platform for + the grinding bonus to count, but now you jump at any time.\\n\\nThanks for all + your 5-star ratings!\", \"wrapperType\":\"software\", \"contentAdvisoryRating\":\"4+\", + \"artworkUrl100\":\"http://a3.mzstatic.com/us/r1000/117/Purple/3b/c3/b2/mzl.yudvodnc.jpg\", + \"trackCensoredName\":\"Rat On A Scooter XL\", \"trackViewUrl\":\"http://itunes.apple.com/us/app/rat-on-a-scooter-xl/id342699962?mt=8&uo=4\", + \"languageCodesISO2A\":[\"EN\"], \"fileSizeBytes\":\"7582355\", \"sellerUrl\":\"http://www.donutgames.com\", + \"averageUserRatingForCurrentVersion\":4.5, \"userRatingCountForCurrentVersion\":680, + \"trackContentRating\":\"4+\", \"averageUserRating\":3.5, \"userRatingCount\":14601}, + \n{\"kind\":\"software\", \"features\":[\"gameCenter\"], \"supportedDevices\":[\"all\"], + \"isGameCenterEnabled\":true, \"artistViewUrl\":\"http://itunes.apple.com/us/artist/bluepepper-inc./id388519250?uo=4\", + \"artworkUrl60\":\"http://a2.mzstatic.com/us/r1000/051/Purple/95/d0/50/mzi.ponxstkd.png\", + \n\"screenshotUrls\":[\"http://a5.mzstatic.com/us/r1000/053/Purple/9f/ee/37/mzl.hawpirbj.png\", + \"http://a5.mzstatic.com/us/r1000/000/Purple/99/bf/70/mzl.newsrcpo.png\", \"http://a5.mzstatic.com/us/r1000/054/Purple/d7/1d/0b/mzl.gvlpcvmz.png\", + \"http://a4.mzstatic.com/us/r1000/035/Purple/ec/9c/e1/mzl.rhpvfcuk.png\", \"http://a2.mzstatic.com/us/r1000/040/Purple/50/c3/3c/mzl.nsyzfzgb.png\"], + \"ipadScreenshotUrls\":[], \"artworkUrl512\":\"http://a1.mzstatic.com/us/r1000/003/Purple/73/af/b8/mzl.hufgtcgu.png\", + \"artistId\":388519250, \"artistName\":\"Bluepepper, Inc.\", \"price\":0.99, + \"version\":\"2.0.0\", \n\"description\":\"In Doodle Bouncing Star, you can + create your own character to jump up the platforms! Use the editor tool to draw + and create your own bouncing stars - You can even import photos from your camera + album and edit them using the editor. Help the disposed robots escape from the + scrapyard by making them jump as high as possible. Collect Blue points to unlock + more characters and costumes! \\n\\n--------\\nFeatures\\n--------\\n- Create + your own characters \\n- Editor tool to draw and edit pictures from your photo + album \\n- Moving, springy, broken, electric platforms \\n- Items to temporarily + enhance characters abilities to jump higher! \\n- Points to unlock more characters + and costumes\\n- Items to Avoid: Mirror, Ice, Weight\\n- Submit score to Facebook\\n- + Game Center support\\n\\nIf you experience an app crash we're very sorry about + this, we will fix this problem asap. Please send us an email to tell us the + iOS version of your device. It will help with our next update. \\nEmail: support@bluepepper.co.kr + \\n\\n-----------\\n\\niTunes reviews (US)\\n****\\n\\\"it looks sleek, easier + than doodle jump, many character to play, various costumes to put on I love + it\\\"\\n\\n\\\"This is my favorite app!! It is so unique and awesome!!!\\\"\\n\\n\\\"I + like this game better than doodle jump\\\"\\n\\n-----------\\niTunes reviews + (UK)\\n****\\n\\\"Great! This app is amazing. It kept me and my little brother + entertained for ages. I have over a 100 apps however, I use this one more often! + I would rate this to anyone who loves games. It is fabulous.\\\"\\n\\n\\\"Awesome + gameplay - This game has a lot going for it when you consider that it builds + on the success of games like Doodle Jump with unique additions and a solid commitment + to further updates. I'm looking forward to future content but am totally enjoying + creating my own characters for now using the ingame editor. Update:Update has + added the challenge that I was looking forward to! I've already showed this + game to people who love putting on their favorite avatars as their jumping star. + Funny how the people who say doodle jump is better likely have no personal effects + to customize their character with.\\\"\\n\\n-----------\\niTunes reviews (Canada)\\n****\\n\\\"Great + fun! - Awesome graphics, challenging, reliable (no crashes) and ad free! I definitely + recommend this app!\\\"\\n\\n-----------\\niTunes reviews (FRANCE)\\n****\\n\\u201cSuper + game. Very similar to froggy and mega jump but better because you can design + and draw your personal character and you can add costumes like angel /wings + /demon /antennas\\u2026 The characters have different strengths so the game + play is unique; it\\u2019s ONE OF THE BEST APPS FROM ALL THE JUMPING GAMES!\\u201d\\n\\n\\u201cI + think it\\u2019s a very good game, this game can be competed with doodle jump. + I love the music, the fact that I can customize my own character. I love doodling.\\u201d\\n\\n\\u201cLove + this game and all the features on it\\u201d\\n\\n-----------\\n\\n\\\"Sick of + Doodle Jump? Then Checkout Doodle Bouncing Star\\\" - appadvice\\n\\n-----------\\nHow + To Play\\n-----------\\nTilt to move left or right. Play with your favorite + character that you've created! Import photos from your album and doodle on them. + Doodle as many characters as you want and show it off to everyone!\\n-----------\", + \"genreIds\":[\"6014\", \"7001\", \"6016\", \"7002\"], \"releaseDate\":\"2010-12-15T07:23:38Z\", + \"sellerName\":\"Bluepepper, Inc.\", \"currency\":\"USD\", \"genres\":[\"Games\", + \"Action\", \"Entertainment\", \"Adventure\"], \"bundleId\":\"co.kr.bluepepper.DoodleJumpingStar\", + \"trackId\":403728364, \"trackName\":\"Doodle Bouncing Star\", \"primaryGenreName\":\"Games\", + \"primaryGenreId\":6014, \"releaseNotes\":\"★You can now unlock your characters + for free!\\n★Character Editor fixed\\n★New Mode added (Extreme Mode!!!)\", \"wrapperType\":\"software\", + \"contentAdvisoryRating\":\"4+\", \"artworkUrl100\":\"http://a1.mzstatic.com/us/r1000/003/Purple/73/af/b8/mzl.hufgtcgu.png\", + \"trackCensoredName\":\"Doodle Bouncing Star\", \"trackViewUrl\":\"http://itunes.apple.com/us/app/doodle-bouncing-star/id403728364?mt=8&uo=4\", + \"languageCodesISO2A\":[\"EN\"], \"fileSizeBytes\":\"16422355\", \"sellerUrl\":\"http://facebook.com/doodlebs\", + \"averageUserRatingForCurrentVersion\":3.5, \"userRatingCountForCurrentVersion\":120, + \"trackContentRating\":\"4+\", \"averageUserRating\":2.5, \"userRatingCount\":2358}, + \n{\"kind\":\"software\", \"features\":[], \"supportedDevices\":[\"all\"], \"isGameCenterEnabled\":false, + \"artistViewUrl\":\"http://itunes.apple.com/us/artist/tiny-doodle-maker-wars/id485094067?uo=4\", + \"artworkUrl60\":\"http://a3.mzstatic.com/us/r1000/105/Purple/v4/8c/f0/18/8cf01843-90a1-0d92-9e17-6123f20b60cc/Icon.png\", + \n\"screenshotUrls\":[\"http://a4.mzstatic.com/us/r1000/100/Purple/v4/25/48/66/25486612-93e4-9f8c-cb62-58c97b8ad418/mza_6580932741360609444.png\", + \"http://a2.mzstatic.com/us/r1000/117/Purple/v4/6b/be/df/6bbedf46-c742-15d2-a856-76382bee5773/mza_4292635587348699616.png\"], + \"ipadScreenshotUrls\":[], \"artworkUrl512\":\"http://a5.mzstatic.com/us/r1000/098/Purple/v4/d0/a8/43/d0a843d9-9015-c840-3ef1-ff97303212f2/wcglWBxbLeBR4DGdBlylqw-temp-upload.czvxyzcs.png\", + \"artistId\":485094067, \"artistName\":\"Tiny Doodle Maker Wars\", \"price\":0.99, + \"version\":\"1.0\", \n\"description\":\"Doodle Cars is here! Addicting fun!\\n\\nGet + behind the wheel and get ready for some awesome adventures! Control your own + doodle car and try and win it all! Can you become the ultimate Doodle Cars + champion and defeat the other cars? Find out today! Get bonus points for tricks + and level up!\\n\\nFeatures:\\nMultiple Cars and Colors\\nBonus Prizes\\nAddicting + Doodle Fun\\nMusic and Sound Effects\\nDrawing Graphics\\nEntertaining for Adults + and Kids\\nMultiLevels\\nDownload Today!\", \"genreIds\":[\"6014\", \"7002\", + \"6016\", \"7001\"], \"releaseDate\":\"2012-03-21T02:28:20Z\", \"sellerName\":\"More + Tiny Talking Wars & Doodle Maker Games\", \"currency\":\"USD\", \"genres\":[\"Games\", + \"Adventure\", \"Entertainment\", \"Action\"], \"bundleId\":\"com.doodlemaker.doodlecars\", + \"trackId\":510354189, \"trackName\":\"Doodle Cars\", \"primaryGenreName\":\"Games\", + \"primaryGenreId\":6014, \"releaseNotes\":\"\", \"wrapperType\":\"software\", + \"contentAdvisoryRating\":\"4+\", \"artworkUrl100\":\"http://a5.mzstatic.com/us/r1000/098/Purple/v4/d0/a8/43/d0a843d9-9015-c840-3ef1-ff97303212f2/wcglWBxbLeBR4DGdBlylqw-temp-upload.czvxyzcs.png\", + \"trackCensoredName\":\"Doodle Cars\", \"trackViewUrl\":\"http://itunes.apple.com/us/app/doodle-cars/id510354189?mt=8&uo=4\", + \"languageCodesISO2A\":[\"EN\"], \"fileSizeBytes\":\"3250378\", \"averageUserRatingForCurrentVersion\":2.5, + \"userRatingCountForCurrentVersion\":7, \"trackContentRating\":\"4+\", \"averageUserRating\":2.5, + \"userRatingCount\":7}, \n{\"kind\":\"software\", \"features\":[\"gameCenter\"], + \"supportedDevices\":[\"all\"], \"isGameCenterEnabled\":true, \"artistViewUrl\":\"http://itunes.apple.com/us/artist/robert-szeleney/id302877209?mt=8&uo=4\", + \"artworkUrl60\":\"http://a1.mzstatic.com/us/r1000/083/Purple/32/2e/ee/mzi.izirkvjt.png\", + \n\"screenshotUrls\":[\"http://a1.mzstatic.com/us/r1000/098/Purple/e8/06/1d/mzl.dqfvmspc.png\", + \"http://a1.mzstatic.com/us/r1000/060/Purple/3b/d1/f9/mzl.btgikuet.png\", \"http://a5.mzstatic.com/us/r1000/075/Purple/b7/c6/e8/mzl.ubrujlwa.png\", + \"http://a4.mzstatic.com/us/r1000/112/Purple/2d/8f/7d/mzl.pjvenyzq.png\", \"http://a3.mzstatic.com/us/r1000/107/Purple/e1/6c/87/mzl.ubebyopj.png\"], + \"ipadScreenshotUrls\":[], \"artworkUrl512\":\"http://a3.mzstatic.com/us/r1000/112/Purple/82/b0/39/mzl.uexmrpfu.png\", + \"artistId\":302877209, \"artistName\":\"Robert Szeleney\", \"price\":0.99, + \"version\":\"1.8\", \n\"description\":\"★★★★ Guide these cute birds through + a world full of danger. Unlock new birds as you progress through the game. Each + bird has its own special ability from getting invisible or using time warp to + a powerful explosion ability.\\n\\nFrom the makers of Stick Stunt Biker, Stickman + Cliff Diving, Line Runner, Line Jumper, Line Surfer, RunStickRun, Rope'n'Fly + and more...\\n\\n★ 5 million addicted players can't be wrong \\n★ Line birds + was the #1 most downloaded application worldwide in June/July\\n\\nFEATURES:\\n\\u2022 + 5 different beautiful designed birds to unlock\\n\\u2022 Special abilities for + each bird\\n\\u2022 Simple one touch control gameplay\\n\\u2022 Three game modes + from easy to hard\\n\\u2022 Various achievements to unlock\\n\\u2022 Full Openfeint + and Gamecenter integration\\n\\u2022 Online and Offline leaderboard and highscore + system\\n\\nFeel free to post your ideas, we will try to implement them as soon + as possible.\\n\\nThank you very much for all your support in our games! We + would love to hear your suggestions!\", \"genreIds\":[\"6014\", \"7003\", \"7001\"], + \"releaseDate\":\"2011-05-31T10:19:33Z\", \"sellerName\":\"Robert Szeleney\", + \"currency\":\"USD\", \"genres\":[\"Games\", \"Arcade\", \"Action\"], \"bundleId\":\"com.rsz.LineBirds\", + \"trackId\":438084823, \"trackName\":\"Line Birds\", \"primaryGenreName\":\"Games\", + \"primaryGenreId\":6014, \"releaseNotes\":\"Minor fixes and improvements\", + \"wrapperType\":\"software\", \"contentAdvisoryRating\":\"4+\", \"artworkUrl100\":\"http://a3.mzstatic.com/us/r1000/112/Purple/82/b0/39/mzl.uexmrpfu.png\", + \"trackCensoredName\":\"Line Birds\", \"trackViewUrl\":\"http://itunes.apple.com/us/app/line-birds/id438084823?mt=8&uo=4\", + \"languageCodesISO2A\":[\"EN\"], \"fileSizeBytes\":\"11710650\", \"sellerUrl\":\"http://www.djinnworks.at\", + \"averageUserRatingForCurrentVersion\":4.5, \"userRatingCountForCurrentVersion\":411, + \"trackContentRating\":\"4+\", \"averageUserRating\":4.0, \"userRatingCount\":21710}, + \n{\"kind\":\"software\", \"features\":[], \"supportedDevices\":[\"all\"], \"isGameCenterEnabled\":false, + \"artistViewUrl\":\"http://itunes.apple.com/us/artist/glu-games-inc./id284419051?uo=4\", + \"artworkUrl60\":\"http://a3.mzstatic.com/us/r1000/043/Purple/58/bc/d8/mzl.effliwdi.png\", + \n\"screenshotUrls\":[\"http://a4.mzstatic.com/us/r1000/007/Purple/47/37/6e/mzl.enxeuakd.jpg\", + \"http://a1.mzstatic.com/us/r1000/027/Purple/7d/41/eb/mzl.ntsprkwx.jpg\", \"http://a2.mzstatic.com/us/r1000/029/Purple/e8/c6/e4/mzl.kqhsddgw.jpg\", + \"http://a4.mzstatic.com/us/r1000/014/Purple/30/2e/30/mzl.cgdqwwuh.jpg\", \"http://a2.mzstatic.com/us/r1000/008/Purple/aa/7a/70/mzl.szeefugx.jpg\"], + \"ipadScreenshotUrls\":[], \"artworkUrl512\":\"http://a4.mzstatic.com/us/r1000/055/Purple/59/eb/de/mzl.aupixtbw.jpg\", + \"artistId\":284419051, \"artistName\":\"Glu Games Inc.\", \"price\":0.99, \"version\":\"1.0.3\", + \n\"description\":\"WARNING! HIGHLY ADDICTIVE GAMING CONTENT!\\n\\n\\u201cGraphically, + Jump O\\u2019Clock utilizes a beautiful steampunk style that is both visually + appealing and quite fitting for the environment in which the game occurs.\\u201d\\n- + App Smile 5/5\\n\\n\\\"one of the most polished and easy-to-play platform jumpers + on the iPhone\\\" \\n- TouchGen 4/5\\n____________________________________\\n\\nPlaying + Jump O'Clock can lead to severely extended sessions of gameplay! Take control + of the lovable steampunk robot LE0 and jump from gear to gear while avoiding + hazards in an endless upward world. Collect bolts to fill your SUPER-JUMP METER, + and BOOST the height of your jumps. Timing is crucial to keep from winding up + on the wrong side of the razor-sharp teeth, scalding steam, electrified wires + or broken pipes. Connect to OpenFeint and compete for the dizzying heights of + high-score greatness. If you've got time, Jump O'Clock has your challenge - + an endless platform adventure which never plays the same twice. Why try and + beat a clock when you can JUMP O'CLOCK?\\n\\nFEATURES\\n✓Endless vertical platform + game - LIKE DOODLE JUMP - jump from gear to gear in an effort to climb as high + as possible\\n\\n✓The infinite adventure is NEVER THE SAME GAME TWICE!\\n\\n✓OPENFEINT + ENABLED! Challenge friends and post and share the highest scores with other + players, TWITTER and FACEBOOK. \\n\\n✓Earn more points as LE0 climbs higher + and higher in the clockworks. COLLECT BOLTS for extra points and to fill the + SUPER-JUMP METER, earning BOOSTS to jump HIGHER.\\n\\n✓15 additional CHALLENGES + ranging from mildly tricky to devilishly difficult.\\n\\nFOLLOW US at\\ntwitter.com/glumobile\\nfacebook.com/glumobile\", + \"genreIds\":[\"6014\", \"7002\", \"6016\", \"7001\"], \"releaseDate\":\"2010-05-20T02:10:10Z\", + \"sellerName\":\"Glu Games Inc\", \"currency\":\"USD\", \"genres\":[\"Games\", + \"Adventure\", \"Entertainment\", \"Action\"], \"bundleId\":\"com.glu.clockwork\", + \"trackId\":372410289, \"trackName\":\"Jump O'Clock\", \"primaryGenreName\":\"Games\", + \"primaryGenreId\":6014, \n\"releaseNotes\":\"Bug fixes and other improvements + to game performance.\\n_________________________________\\n\\nCheck out our + latest game:\\n\\n✓Build-a-lot 2: Town of the Year!\\nhttp://bit.glu.com/cJIVR0\\n\\n✓World + Series of Poker Hold'em Legend - http://bit.ly/aUDwhp\\n\\nFOLLOW US at\\ntwitter.com/glumobile\\nfacebook.com/glumobile\", + \"wrapperType\":\"software\", \"contentAdvisoryRating\":\"4+\", \"artworkUrl100\":\"http://a4.mzstatic.com/us/r1000/055/Purple/59/eb/de/mzl.aupixtbw.jpg\", + \"trackCensoredName\":\"Jump O'Clock\", \"trackViewUrl\":\"http://itunes.apple.com/us/app/jump-oclock/id372410289?mt=8&uo=4\", + \"languageCodesISO2A\":[\"EN\"], \"fileSizeBytes\":\"16038263\", \"sellerUrl\":\"http://www.glu.com\", + \"averageUserRatingForCurrentVersion\":3.5, \"userRatingCountForCurrentVersion\":3368, + \"trackContentRating\":\"4+\", \"averageUserRating\":3.5, \"userRatingCount\":3897}, + \n{\"kind\":\"software\", \"features\":[], \"supportedDevices\":[\"all\"], \"isGameCenterEnabled\":false, + \"artistViewUrl\":\"http://itunes.apple.com/us/artist/tiny-doodle-maker-wars/id485094067?uo=4\", + \"artworkUrl60\":\"http://a1.mzstatic.com/us/r1000/073/Purple/f8/6e/9a/mzi.gidijwou.png\", + \"screenshotUrls\":[\"http://a4.mzstatic.com/us/r1000/112/Purple/65/ff/9c/mzl.dtvuyoix.png\", + \"http://a2.mzstatic.com/us/r1000/082/Purple/73/1d/00/mzl.ljuiykgb.png\"], \"ipadScreenshotUrls\":[], + \"artworkUrl512\":\"http://a3.mzstatic.com/us/r1000/062/Purple/35/6e/bf/mzm.pwaamveh.png\", + \"artistId\":485094067, \"artistName\":\"Tiny Doodle Maker Wars\", \"price\":0.99, + \"version\":\"1.0\", \n\"description\":\"Doodle Wars - BE WARNED: Super Addictive!\\nWatch + drawings come to life and battle it out! They move, make noises, attack, shoot, + and much more! \\n\\n- A Top Selling iPhone Hit!\\n- ADDICTIVE App Store Game\\n- + MUST HAVE FOR KIDS AND ADULTS!\\n\\n\\\"More fun than Doodle Jump!\\\" - App + Review\\n\\nEasy to play yet so much fun! A must have game for all iPhone and + iPod users!\\n\\nDoodle Wars is super exciting game. You control your Doodle + Dude and destroy all of the doodle monsters! Some are slow and others are really + fast! Do you have what it takes to advance to the next level? Try to win + it all and get the high score too!\\n\\nOne of the best games of all time! Download + Today!\", \"genreIds\":[\"6014\", \"7001\", \"7002\", \"6016\"], \"releaseDate\":\"2012-02-03T12:58:41Z\", + \"sellerName\":\"More Tiny Talking Wars & Doodle Maker Games\", \"currency\":\"USD\", + \"genres\":[\"Games\", \"Action\", \"Adventure\", \"Entertainment\"], \"bundleId\":\"com.doodlemaker.doodlewars\", + \"trackId\":498053453, \"trackName\":\"Doodle Wars\", \"primaryGenreName\":\"Games\", + \"primaryGenreId\":6014, \"releaseNotes\":\"\", \"wrapperType\":\"software\", + \"contentAdvisoryRating\":\"4+\", \"artworkUrl100\":\"http://a3.mzstatic.com/us/r1000/062/Purple/35/6e/bf/mzm.pwaamveh.png\", + \"trackCensoredName\":\"Doodle Wars\", \"trackViewUrl\":\"http://itunes.apple.com/us/app/doodle-wars/id498053453?mt=8&uo=4\", + \"languageCodesISO2A\":[\"EN\"], \"fileSizeBytes\":\"3849171\", \"averageUserRatingForCurrentVersion\":1.5, + \"userRatingCountForCurrentVersion\":14, \"trackContentRating\":\"4+\", \"averageUserRating\":1.5, + \"userRatingCount\":14}, \n{\"kind\":\"software\", \"features\":[], \"supportedDevices\":[\"all\"], + \"isGameCenterEnabled\":false, \"artistViewUrl\":\"http://itunes.apple.com/us/artist/chad-towns/id306939927?uo=4\", + \"artworkUrl60\":\"http://a1.mzstatic.com/us/r1000/082/Purple/v4/2f/4e/0f/2f4e0f2c-bc67-898b-042a-354c57b2a1f5/Icon.png\", + \n\"screenshotUrls\":[\"http://a3.mzstatic.com/us/r1000/075/Purple/v4/4a/2c/8b/4a2c8bfa-135a-2f2a-b246-9a42885ac99e/mzl.dfrhpwda.png\", + \"http://a2.mzstatic.com/us/r1000/107/Purple/v4/20/13/6f/20136f9e-a893-20a6-deff-7aa6fe254ea7/mzl.wxuwgqmi.png\", + \"http://a5.mzstatic.com/us/r1000/082/Purple/v4/24/d5/c0/24d5c0fd-c014-01ac-06d3-1d974dcc8003/mzl.twbagjlu.png\", + \"http://a4.mzstatic.com/us/r1000/111/Purple/v4/67/c5/88/67c588b7-65cc-a052-0f5c-c07f93a2584c/mzl.vhyzjwdl.png\", + \"http://a1.mzstatic.com/us/r1000/111/Purple/v4/aa/17/9e/aa179e61-75e3-a317-4bf3-919e15ed9db8/mza_3097603020839707347.png\"], + \"ipadScreenshotUrls\":[], \"artworkUrl512\":\"http://a2.mzstatic.com/us/r1000/081/Purple/v4/5c/59/8c/5c598cf6-225a-625a-c7ce-c123ff1da482/mzm.tybfigzy.png\", + \"artistId\":306939927, \"artistName\":\"Chad Towns\", \"price\":0.00, \"version\":\"1.2.2\", + \n\"description\":\"The Doodle Army wants you!\\nEnlist today and cut down wave + after wave of enemies in this endless shooting adventure! Hear the sweet screams + of your victims as you strafe them with submachine gun fire or explode them + with grenades.\\n\\nDoodle Army Boot Camp contains the first level of Doodle + Army with an in game tutorial to guide you through the basics. Soon you will + be on your way to creating your very own heaping piles of bloody bad guy parts. + \ See how far you can go before the enemies overwhelm you.\\n\\n-Employ several + different weapons including pistols, submachine guns, sniper rifles, shot guns, + grenade launchers, assault riles and machine guns. \\n-Play as one of 10 unlock-able + characters. \\n-Two control styles available.\\n-Continue your progress with + checkpoint auto saving.\\n\\nMore weapons, doodles and missions are available + in the full version!\\n\\nFor gameplay videos youTube search: \\\"Doodle Army\\\"\\n\\nAlso + try:\\nGlobs\\nCannon Siege\\nPocket Kite\\nFlip the Bird\\nJonah & the Whale\\n\\nSUPPORT + EMAIL: \\niPhoneGlobs@gmail.com\\n\\nTHANK YOU:\\n Thank you to the users + for your support and feedback. We read and respond to all legitimate suggestions + and issues.\", \"genreIds\":[\"6014\", \"6016\", \"7003\", \"7002\"], \"releaseDate\":\"2010-02-23T12:39:03Z\", + \"sellerName\":\"Chad Towns\", \"currency\":\"USD\", \"genres\":[\"Games\", + \"Entertainment\", \"Arcade\", \"Adventure\"], \"bundleId\":\"com.chadtowns.bootcamp\", + \"trackId\":357413655, \"trackName\":\"Doodle Army Boot Camp\", \"primaryGenreName\":\"Games\", + \"primaryGenreId\":6014, \n\"releaseNotes\":\"Updated graphics to reflect the + title change of our app Cannon Siege.\\n\\nCheck out the full version of Doodle + Army for more Missions, Boss Battles and Mini Games.\\n\\nAlso try Doodle Army + 2 for 6 player online battles.\\n\\nCheck out our new game Flip the Bird!\", + \"wrapperType\":\"software\", \"contentAdvisoryRating\":\"9+\", \"artworkUrl100\":\"http://a2.mzstatic.com/us/r1000/081/Purple/v4/5c/59/8c/5c598cf6-225a-625a-c7ce-c123ff1da482/mzm.tybfigzy.png\", + \"trackCensoredName\":\"Doodle Army Boot Camp\", \"trackViewUrl\":\"http://itunes.apple.com/us/app/doodle-army-boot-camp/id357413655?mt=8&uo=4\", + \"languageCodesISO2A\":[\"EN\"], \"fileSizeBytes\":\"10168838\", \"sellerUrl\":\"http://www.appsomniacs.com\", + \"averageUserRatingForCurrentVersion\":4.0, \"userRatingCountForCurrentVersion\":105, + \"trackContentRating\":\"9+\", \"averageUserRating\":4.0, \"userRatingCount\":60053}, + \n{\"kind\":\"software\", \"features\":[], \"supportedDevices\":[\"all\"], \"isGameCenterEnabled\":false, + \"artistViewUrl\":\"http://itunes.apple.com/us/artist/tiny-doodle-maker-wars/id485094067?uo=4\", + \"artworkUrl60\":\"http://a3.mzstatic.com/us/r1000/106/Purple/72/04/da/mzi.oipfyzgx.png\", + \n\"screenshotUrls\":[\"http://a5.mzstatic.com/us/r1000/103/Purple/5c/63/fd/mzl.capkrzko.png\", + \"http://a3.mzstatic.com/us/r1000/064/Purple/91/3f/c9/mzl.forqkxav.png\", \"http://a2.mzstatic.com/us/r1000/060/Purple/23/96/9b/mzl.ypgbidou.png\", + \"http://a4.mzstatic.com/us/r1000/109/Purple/d7/63/fe/mzl.qudqxfan.png\"], \"ipadScreenshotUrls\":[], + \"artworkUrl512\":\"http://a5.mzstatic.com/us/r1000/113/Purple/61/fe/a0/mzm.whppfmxi.png\", + \"artistId\":485094067, \"artistName\":\"Tiny Doodle Maker Wars\", \"price\":0.99, + \"version\":\"1.0\", \n\"description\":\"★ Milkshake Maker is here! MAKE YOURS! + ★\\n\\nMilkshakes are so good and delicious. Everyone loves them and always + wants more! Includes all of your favorites like vanilla, chocolate, strawberry + with ice cream, toppings, and much more! Now you can make your own milkshake + creations, using your iPhone or iPod Touch! \\n\\nWhat kind do you want to make + today? Choose your ice cream, shakes, toppings, blender, milk, and much more. + \ Once you decide what you want you can be super creative and make your very + own milkshakes super big or really small! You decide! You can then add the + toppings to your milkshakes! SO GOOD! Then pretend to drink your delicious milkshake + creations. Super easy to use and fun for both kids and adults. As an extra feature, + you can even save your creations to your camera roll and email them to your + friends. Even choose your own photos and add multiple milkshake images to them. + \\n\\nSUPER FUN AND SO GOOD! MAKE YOURS TODAY! \\nSupports iPhone, iPod Touch, + and iPad.\", \"genreIds\":[\"6014\", \"6016\", \"7009\", \"7010\"], \"releaseDate\":\"2012-01-24T07:38:58Z\", + \"sellerName\":\"More Tiny Talking Wars & Doodle Maker Games\", \"currency\":\"USD\", + \"genres\":[\"Games\", \"Entertainment\", \"Family\", \"Kids\"], \"bundleId\":\"com.doodlemaker.milkshakemaker\", + \"trackId\":495676202, \"trackName\":\"Milkshake Maker\", \"primaryGenreName\":\"Games\", + \"primaryGenreId\":6014, \"releaseNotes\":\"\", \"wrapperType\":\"software\", + \"contentAdvisoryRating\":\"4+\", \"artworkUrl100\":\"http://a5.mzstatic.com/us/r1000/113/Purple/61/fe/a0/mzm.whppfmxi.png\", + \"trackCensoredName\":\"Milkshake Maker\", \"trackViewUrl\":\"http://itunes.apple.com/us/app/milkshake-maker/id495676202?mt=8&uo=4\", + \"languageCodesISO2A\":[\"EN\"], \"fileSizeBytes\":\"4907395\", \"averageUserRatingForCurrentVersion\":2.0, + \"userRatingCountForCurrentVersion\":184, \"trackContentRating\":\"4+\", \"averageUserRating\":2.0, + \"userRatingCount\":184}, \n{\"kind\":\"software\", \"features\":[\"gameCenter\"], + \"supportedDevices\":[\"all\"], \"isGameCenterEnabled\":true, \"artistViewUrl\":\"http://itunes.apple.com/us/artist/itiw/id311964337?uo=4\", + \"artworkUrl60\":\"http://a4.mzstatic.com/us/r1000/118/Purple/69/ff/fc/mzi.aaqbsfqq.png\", + \n\"screenshotUrls\":[\"http://a1.mzstatic.com/us/r1000/036/Purple/3b/aa/13/mzl.retdvkey.png\", + \"http://a4.mzstatic.com/us/r1000/045/Purple/f9/96/8e/mzl.lfhcsmkn.jpg\", \"http://a1.mzstatic.com/us/r1000/041/Purple/ea/f6/d3/mzl.ipnfxyoy.jpg\", + \"http://a1.mzstatic.com/us/r1000/042/Purple/1d/e2/ce/mzl.xoqnzvfm.png\"], \"ipadScreenshotUrls\":[], + \"artworkUrl512\":\"http://a4.mzstatic.com/us/r1000/051/Purple/dd/b4/7d/mzl.wdpclict.jpg\", + \"artistId\":311964337, \"artistName\":\"ITIW\", \"price\":0.00, \"version\":\"1.9\", + \n\"description\":\"Your challenge is to help Glow Doodle fall and escape the + spike that is trying to close in every moment. There will be some negative powers + which will make the journey more difficult as well as some positive ones which + will help you to go down easily. Just tilt your iPhone to move Glow doodle right + or left to fall down through the holes and avoid getting spiked at the top. + Score points by staying alive as long as possible.\\n\\nFeatures\\n\\n\\u2022 + Easy to play but tough to master\\n\\u2022 Super addictive gameplay\\n\\u2022 + Cute character design with customization option.\", \"genreIds\":[\"6014\", + \"7013\", \"7014\", \"6016\"], \"releaseDate\":\"2010-04-15T08:14:56Z\", \"sellerName\":\"ITIW\", + \"currency\":\"USD\", \"genres\":[\"Games\", \"Racing\", \"Role Playing\", \"Entertainment\"], + \"bundleId\":\"com.itiw.glowfall\", \"trackId\":355266672, \"trackName\":\"Glow + Doodle Fall\", \"primaryGenreName\":\"Games\", \"primaryGenreId\":6014, \"releaseNotes\":\"-Updated + for Retina Display images\\n-Collect coins while escaping\", \"wrapperType\":\"software\", + \"contentAdvisoryRating\":\"4+\", \"artworkUrl100\":\"http://a4.mzstatic.com/us/r1000/051/Purple/dd/b4/7d/mzl.wdpclict.jpg\", + \"trackCensoredName\":\"Glow Doodle Fall\", \"trackViewUrl\":\"http://itunes.apple.com/us/app/glow-doodle-fall/id355266672?mt=8&uo=4\", + \"languageCodesISO2A\":[\"EN\"], \"fileSizeBytes\":\"19698285\", \"sellerUrl\":\"http://www.itiw-webdev.com/iphone\", + \"averageUserRatingForCurrentVersion\":4.0, \"userRatingCountForCurrentVersion\":11354, + \"trackContentRating\":\"4+\", \"averageUserRating\":3.0, \"userRatingCount\":54173}, + \n{\"kind\":\"software\", \"features\":[\"gameCenter\", \"iosUniversal\"], \"supportedDevices\":[\"all\"], + \"isGameCenterEnabled\":true, \"artistViewUrl\":\"http://itunes.apple.com/us/artist/chad-towns/id306939927?uo=4\", + \"artworkUrl60\":\"http://a2.mzstatic.com/us/r1000/109/Purple/v4/a5/77/07/a577079c-557d-3681-de3d-48bfb3643c3a/Icon.png\", + \n\"screenshotUrls\":[\"http://a4.mzstatic.com/us/r1000/105/Purple/v4/f3/b9/98/f3b9980c-a091-ef9b-93f6-2bcf8075683b/WgbD5UdEyQyKPizqEvP9bg-temp-upload.plddbphr.png\", + \"http://a1.mzstatic.com/us/r1000/104/Purple/v4/7f/bf/59/7fbf5924-d9d9-ffde-3521-5a5646c128d5/WgbD5UdEyQyKPizqEvP9bg-temp-upload.mzbayplo.png\", + \"http://a1.mzstatic.com/us/r1000/111/Purple/v4/7f/4f/1f/7f4f1f65-1736-7d40-89a8-e286ddeb4958/WgbD5UdEyQyKPizqEvP9bg-temp-upload.spbqyfxe.png\", + \"http://a1.mzstatic.com/us/r1000/068/Purple/v4/c7/27/c9/c727c912-26e5-8197-d998-326894bc1b91/WgbD5UdEyQyKPizqEvP9bg-temp-upload.yxvhokqi.png\", + \"http://a2.mzstatic.com/us/r1000/101/Purple/v4/9a/45/45/9a4545aa-ad0c-1eb9-546a-f02ee2bfea5e/WgbD5UdEyQyKPizqEvP9bg-temp-upload.rquejalw.png\"], + \n\"ipadScreenshotUrls\":[\"http://a1.mzstatic.com/us/r1000/112/Purple/v4/dc/f6/a0/dcf6a093-ae76-f32a-9c0d-57eb00356fb1/mzl.eiopirnh.1024x1024-65.jpg\", + \"http://a4.mzstatic.com/us/r1000/079/Purple/v4/15/f5/f2/15f5f299-9d50-1515-d34f-892552f11542/mzl.pgdhdrnj.1024x1024-65.jpg\", + \"http://a3.mzstatic.com/us/r1000/113/Purple/v4/c3/4a/a0/c34aa0f2-7500-a90e-7081-8a26a39a6584/mzl.ibxnaqnm.1024x1024-65.jpg\", + \"http://a4.mzstatic.com/us/r1000/087/Purple/v4/71/cd/d5/71cdd5e6-a37e-4b65-3cc0-19691b671ebf/mzl.aqmoomyi.1024x1024-65.jpg\", + \"http://a3.mzstatic.com/us/r1000/071/Purple/v4/91/89/d9/9189d9b1-c59c-4ac8-8e30-9502edcad661/mzl.wirhagrx.1024x1024-65.jpg\"], + \"artworkUrl512\":\"http://a5.mzstatic.com/us/r1000/093/Purple/v4/88/c0/23/88c0230d-9785-fdb7-134c-c41941cb2dcd/mzl.oxmojkgo.png\", + \"artistId\":306939927, \"artistName\":\"Chad Towns\", \"price\":0.00, \"version\":\"1.5.0\", + \n\"description\":\"Doodle Army 2 : Mini Militia\\n\\n Experience intense + multiplayer combat with up to 6 players online or locally in Multiplayer mode. + \ Train with the Sarge and sharpen your skills in offline Training and Survival + modes. \\n\\n You too can enjoy the thrills of spewing hot lead and making + swiss cheese of your opponents! Hear the whiz of bullets flying past your face + as you tumble for cover. Out smart the enemy with a well placed grenade and + watch them explode into bloody confetti. What? You're still not satisfied? + \ Ok then finish it of by repeatedly squatting on your opponents remains and + wildly firing into the air. Victory is yours, its all waiting for you! Just + press the buy button! \\n\\nDA2 was created based on player feedback and + suggestions. We love to hear your ideas so thank you and keep them coming!\\n\\nFeatures:\\n-Online + Multiplayer via Game Center\\n-Local Multiplayer via Bluetooth or Wifi\\n-Intuitive + Dual Stick shooting controls\\n-Open world maps\\n-Rocket boots for extended + vertical movement\\n-Dual wield with hand guns\\n-Zoom control on various weapons\\n-Melee + attacks\\n-Team Battle\\n\\nWeapons: \\nDESERT EAGLE, UZI, MAGNUM, MP5, AK47, + M4, M14, SHOTGUN, M93BA, SMAW, MACHETE, PHASR, GRENADES\\n\\nPowerups: \\nPOWER + BOOST, HEALTH PACK, RIOT SHIELD\\n\\nPurchase the Pro Player Pack to get full + access to online weapons.\\n\\nCOMING SOON:\\nMap Voting System\\n\\nCheck out + game play video by Crazy Mike's Apps:\\nhttp://www.youtube.com/watch?v=pd7GrwqF6JQ\\n\\n\\nQuestions, + Comments, or Problems?\\nSupport Contact: iPhoneGlobs@gmail.com\\n\\nUPDATE + CRASH FIX: When updating to the latest version you may need to delete the existing + app from your device. If you previously purchased the pro pack you will be + able to reload it free of charge by pressing \\\"sign in\\\" on the upgrade + screen.\\n\\nSpecial Thanks & Beta Testing:\\nCasey Jones (cjsbug), Kevin Watson + (PureSkill), Cody Romero (iPro), Ryan Spyky, Trevor Heins, Styles Kim (crex), + \ Josiah Jordan (Raptor), Aras Sanati (Arashi), George Yang, Zincous, Dave + Engelberg, Donovan Schoenefeld, Nikhil Kumar, Marco Landi\", \"genreIds\":[\"6014\", + \"7001\", \"7003\", \"6016\"], \"releaseDate\":\"2011-04-05T01:22:18Z\", \"sellerName\":\"Chad + Towns\", \"currency\":\"USD\", \"genres\":[\"Games\", \"Action\", \"Arcade\", + \"Entertainment\"], \"bundleId\":\"com.chadtowns.da2\", \"trackId\":405885221, + \"trackName\":\"Doodle Army 2 : Mini Militia\", \"primaryGenreName\":\"Games\", + \"primaryGenreId\":6014, \"releaseNotes\":\"New Snow Map: Icebox\\nNew Store + Items: Quick Reload\\nBug Fixes\", \"wrapperType\":\"software\", \"contentAdvisoryRating\":\"9+\", + \"artworkUrl100\":\"http://a5.mzstatic.com/us/r1000/093/Purple/v4/88/c0/23/88c0230d-9785-fdb7-134c-c41941cb2dcd/mzl.oxmojkgo.png\", + \"trackCensoredName\":\"Doodle Army 2 : Mini Militia\", \"trackViewUrl\":\"http://itunes.apple.com/us/app/doodle-army-2-mini-militia/id405885221?mt=8&uo=4\", + \"languageCodesISO2A\":[\"EN\"], \"fileSizeBytes\":\"15155204\", \"sellerUrl\":\"http://appsomniacs.com/support.html\", + \"averageUserRatingForCurrentVersion\":4.5, \"userRatingCountForCurrentVersion\":3516, + \"trackContentRating\":\"9+\", \"averageUserRating\":4.0, \"userRatingCount\":18248}, + \n{\"kind\":\"software\", \"features\":[\"gameCenter\"], \"supportedDevices\":[\"all\"], + \"isGameCenterEnabled\":true, \"artistViewUrl\":\"http://itunes.apple.com/us/artist/invictus/id321262193?uo=4\", + \"artworkUrl60\":\"http://a5.mzstatic.com/us/r1000/090/Purple/e4/b4/38/mzi.mopvpffc.png\", + \n\"screenshotUrls\":[\"http://a4.mzstatic.com/us/r1000/061/Purple/bc/52/a0/mzl.bxavuolm.png\", + \"http://a3.mzstatic.com/us/r1000/082/Purple/d5/b2/db/mzl.nflvurtc.jpg\", \"http://a1.mzstatic.com/us/r1000/080/Purple/89/e7/87/mzl.tpayccch.jpg\", + \"http://a5.mzstatic.com/us/r1000/084/Purple/fc/93/e1/mzl.hrdkvzwj.jpg\", \"http://a5.mzstatic.com/us/r1000/061/Purple/ab/1d/a2/mzl.wqvqilrh.jpg\"], + \"ipadScreenshotUrls\":[], \"artworkUrl512\":\"http://a4.mzstatic.com/us/r1000/079/Purple/10/31/a0/mzl.ycsneiex.png\", + \"artistId\":321262193, \"artistName\":\"Invictus\", \"price\":0.00, \"version\":\"1.21\", + \n\"description\":\"★★★ You asked for it we finally made it! HEAVEN Theme is + here! ★★★\\n\\nWant more? Up to 12 EXTRA THEMES are waiting for you, all for + FREE:\\n★ reach 3k and unlock the SOCCER CUP theme with a soccer player frog\\n★ + reach 32k and unlock the UNDERWATER theme with a clown-fish frog\\n★ reach 50k + to unlock the INFERNAL theme with a skeleton frog\\n★ reach 60k to unlock the + SNOW theme with a yeti frog\\n★ reach 70k to unlock the ROCKSTAR theme with + your singer frog and !!! collect your own rock band in this mode!!!\\n★ reach + 80k to unlock the HALLOWEEN theme with a ghost frog\\n★ reach 85k to unlock + the EASTER theme with a Bunny-dressed Froggy for FREE\\n★ reach 90k to unlock + the CHRISTMAS theme with a gingerbread frog\\n★ reach 95k to unlock the VALENTINE + theme with a pink frog\\n★ reach 100k to unlock the JUNGLE theme with a poison-arrow + jungle frog\\n★ reach 105k to unlock the CANDYLAND theme to join Froggy's Birthday + party, and collect him cakes to get novelty items!\\n★ reach 110k to unlock + the HEAVEN theme with a cute little ANGEL frog!\\n\\nHOW TO PLAY? \\nJust jump + with your Frog into the air and begin the journey to the galaxy and beyond!\\nTilt + to move left or right and tap the screen to launch your space-rocket.\\nDO YOU + WANT TO BE IMMORTAL? BE THE FIRST TO REACH THE ALIEN PLANETS AND THEY WILL BE + NAMED AFTER YOU IN THE NEXT UPDATE!\\nTwo new planets are still waiting for + you.\\n\\nDAILY WORD GAME:\\nThere's a new Word Game every day. Be online and + collect the letters daily to win Gems easily!\\n\\nFEATURES:\\n- bouncy, moving, + disappearing and spiky platforms and more surprises\\n- space rockets, shields, + head-bucket, safety laser, magnets and many more items to use\\n- air-balloons + and bio gas-fire to fly you higher\\n- tens of achievements to collect in Openfeint + and Game Center\\n- numerous enemies to beat and avoid\\n- you can jump on monsters + to bring them down\\n- ingame shop to pimp your frog and to get higher than + infinity\\n- choose from the clothes in the shop to dress your frog as you like + and to show him off in multiplayer\\n- find free coins and gems ingame or buy + online to be the number one\\n- OpenFeint and Game Center support to compare + your score to others and track your achievements\\n- Easy to play hard to master + gameplay\\n- New Word game every day\\n- numerous themes with different platforms + and special skills\\n- collect-able gold bars to improve your coin rate and + to show off how rich you are\\n- mystery boxes to win something unique in every + 12 hours!\\n- and many, many more\\n\\nWarning: extreme addiction is inevitable!\\n\\n________________________________________\\nWANT + MORE GREAT GAMES? Check out: \\nRace of Champions, 4x4 Jam, Truck Jam, Greed + Corp, Froggy Launcher, Grim Filler, Fly Control, Fly Fu Pro, Wild Slide, Santa + Ride\\n\\nFollow us on Twitter @InvictusGames\", \"genreIds\":[\"6014\", \"7003\", + \"6016\", \"7002\"], \"releaseDate\":\"2010-04-21T07:00:00Z\", \"sellerName\":\"Invictus + Games Ltd.\", \"currency\":\"USD\", \"genres\":[\"Games\", \"Arcade\", \"Entertainment\", + \"Adventure\"], \"bundleId\":\"com.invictus.froggyjump\", \"trackId\":364355046, + \"trackName\":\"Froggy Jump\", \"primaryGenreName\":\"Games\", \"primaryGenreId\":6014, + \"releaseNotes\":\"minor bug fixes\", \"wrapperType\":\"software\", \"contentAdvisoryRating\":\"4+\", + \"artworkUrl100\":\"http://a4.mzstatic.com/us/r1000/079/Purple/10/31/a0/mzl.ycsneiex.png\", + \"trackCensoredName\":\"Froggy Jump\", \"trackViewUrl\":\"http://itunes.apple.com/us/app/froggy-jump/id364355046?mt=8&uo=4\", + \"languageCodesISO2A\":[\"EN\"], \"fileSizeBytes\":\"33776083\", \"sellerUrl\":\"http://www.invictus.com/games/iphone-games/froggy-jump\", + \"averageUserRatingForCurrentVersion\":4.5, \"userRatingCountForCurrentVersion\":1344, + \"trackContentRating\":\"4+\", \"averageUserRating\":3.5, \"userRatingCount\":46329}, + \n{\"kind\":\"software\", \"features\":[], \"supportedDevices\":[\"all\"], \"isGameCenterEnabled\":false, + \"artistViewUrl\":\"http://itunes.apple.com/us/artist/dan-khan/id445209976?uo=4\", + \"artworkUrl60\":\"http://a1.mzstatic.com/us/r1000/073/Purple/a2/67/a8/mzi.ikoiggux.png\", + \n\"screenshotUrls\":[\"http://a1.mzstatic.com/us/r1000/099/Purple/32/3c/2c/mzl.eieamjlc.png\", + \"http://a3.mzstatic.com/us/r1000/061/Purple/1c/34/2a/mzl.flaiszyu.png\", \"http://a3.mzstatic.com/us/r1000/101/Purple/1a/1a/e5/mzl.vwwvzabu.png\", + \"http://a4.mzstatic.com/us/r1000/102/Purple/5d/ca/44/mzl.nywtwhmo.png\"], \"ipadScreenshotUrls\":[], + \"artworkUrl512\":\"http://a3.mzstatic.com/us/r1000/081/Purple/ae/a9/7a/mzm.argyfbmi.png\", + \"artistId\":445209976, \"artistName\":\"Dan Khan\", \"price\":0.00, \"version\":\"1.0.1\", + \n\"description\":\"Play the role of a doodle drawn on a notebook page, constantly + on the move and jumping over obstacles to reach the next level. \\n\\nFeatures: + \\n- Unlock Selectable Levels \\n- Challenging Obstacles \\n- Fast paced \\n- + Instant Re-Spawn \\n- Death Count \\n- Game is Over When You Win\", \"genreIds\":[\"6014\", + \"7003\", \"6016\", \"7001\"], \"releaseDate\":\"2011-08-05T12:30:02Z\", \"sellerName\":\"Daniyal + Khan\", \"currency\":\"USD\", \"genres\":[\"Games\", \"Arcade\", \"Entertainment\", + \"Action\"], \"bundleId\":\"com.khan.doodlelite\", \"trackId\":453802896, \"trackName\":\"Doodle + Run'n'Jump Lite\", \"primaryGenreName\":\"Games\", \"primaryGenreId\":6014, + \"releaseNotes\":\"\", \"wrapperType\":\"software\", \"contentAdvisoryRating\":\"4+\", + \"artworkUrl100\":\"http://a3.mzstatic.com/us/r1000/081/Purple/ae/a9/7a/mzm.argyfbmi.png\", + \"trackCensoredName\":\"Doodle Run'n'Jump Lite\", \"trackViewUrl\":\"http://itunes.apple.com/us/app/doodle-runnjump-lite/id453802896?mt=8&uo=4\", + \"languageCodesISO2A\":[\"EN\"], \"fileSizeBytes\":\"8807883\", \"averageUserRatingForCurrentVersion\":2.0, + \"userRatingCountForCurrentVersion\":114, \"trackContentRating\":\"4+\", \"averageUserRating\":2.0, + \"userRatingCount\":114}, \n{\"kind\":\"software\", \"features\":[\"gameCenter\"], + \"supportedDevices\":[\"all\"], \"isGameCenterEnabled\":true, \"artistViewUrl\":\"http://itunes.apple.com/us/artist/nextgen-entertainment-inc/id379186542?uo=4\", + \"artworkUrl60\":\"http://a4.mzstatic.com/us/r1000/104/Purple/2a/7c/bc/mzi.ivzmgaht.png\", + \n\"screenshotUrls\":[\"http://a1.mzstatic.com/us/r1000/115/Purple/v4/99/2e/6c/992e6c91-7585-029f-0e15-02c4d1516525/mza_1930077063826752372.png\", + \"http://a1.mzstatic.com/us/r1000/086/Purple/v4/de/87/08/de87085d-2814-b31d-5972-70febd12ceae/mza_5923317766028131124.png\", + \"http://a3.mzstatic.com/us/r1000/095/Purple/v4/97/04/5b/97045bd6-95c6-ce6d-9d45-7c3dbf664ce0/mza_8651353460213659149.png\", + \"http://a2.mzstatic.com/us/r1000/087/Purple/v4/89/c9/c0/89c9c09b-4387-d091-f91f-ee0af6a63e7a/mza_6260817234341689605.png\"], + \"ipadScreenshotUrls\":[], \"artworkUrl512\":\"http://a5.mzstatic.com/us/r1000/088/Purple/f3/e7/2b/mzl.xsfdlqxg.png\", + \"artistId\":379186542, \"artistName\":\"NextGen Entertainment INC\", \"price\":0.00, + \"version\":\"1.8\", \n\"description\":\"******#1 iPhone games in over 34 countries + ****** \\n(Based on the data from AppAnnie.com - independent mobile analytics + site. Search for Fruit Smasher and Fruit Shooter for Highest Ranks)\\n\\nFind + out why 3.7 million players are addicted to this game. Here are some comments + from our players:\\n\\n\\\"Fun - It's as good as fruit ninja it just needs to + let u play longer it's so much fun and keeps me intertained\\\"\\n\\n\\\"Love + it - Addictive! Don't start this game if you only think you are going to play + one round.\\\"\\n\\n\\\"Mr - Good game always wants to make you go back for + more\\\"\\n\\n\\\"Love it - I love this game because it helps me to forget everything + and it is great when we feel stressful\\\"\\n\\n\\\"How to have fun on a long + car ride - I am having a blast with this game, my husband wonders why I am so + quiet and intent. I am going to let him keep wondering for a while!!!\\\"\\n\\nWant + to smash some fruits? Now you can do it on iPhone or iTouch! Try the Fruit Smasher! + out for FREE! This game has extremely addictive game play and \\\"Fresh\\\" + high quality graphics will make your gaming experience really enjoyable. \\n\\nThis + game includes the following features: \\n1. Two different play mode: classic + and floating fruits. \\n2. Seven different play packages. \\n3. Each package + has 500+ levels \\n4. Game Center leader board.\", \"genreIds\":[\"6014\", \"7001\", + \"7004\", \"6016\"], \"releaseDate\":\"2011-07-24T11:12:44Z\", \"sellerName\":\"NextGen + Entertainment, Inc\", \"currency\":\"USD\", \"genres\":[\"Games\", \"Action\", + \"Board\", \"Entertainment\"], \"bundleId\":\"com.toktoo.FS\", \"trackId\":449448941, + \"trackName\":\"Fruit Smasher!\", \"primaryGenreName\":\"Games\", \"primaryGenreId\":6014, + \"releaseNotes\":\"Fixed some issues\", \"wrapperType\":\"software\", \"contentAdvisoryRating\":\"4+\", + \"artworkUrl100\":\"http://a5.mzstatic.com/us/r1000/088/Purple/f3/e7/2b/mzl.xsfdlqxg.png\", + \"trackCensoredName\":\"Fruit Smasher!\", \"trackViewUrl\":\"http://itunes.apple.com/us/app/fruit-smasher!/id449448941?mt=8&uo=4\", + \"languageCodesISO2A\":[\"EN\"], \"fileSizeBytes\":\"15779906\", \"sellerUrl\":\"http://www.ngn-ent.com/\", + \"averageUserRatingForCurrentVersion\":3.0, \"userRatingCountForCurrentVersion\":765, + \"trackContentRating\":\"4+\", \"averageUserRating\":2.5, \"userRatingCount\":2125}, + \n{\"kind\":\"software\", \"features\":[], \"supportedDevices\":[\"all\"], \"isGameCenterEnabled\":false, + \"artistViewUrl\":\"http://itunes.apple.com/us/artist/tiny-doodle-maker-wars/id485094067?uo=4\", + \"artworkUrl60\":\"http://a3.mzstatic.com/us/r1000/115/Purple/7c/a5/ef/mzi.zovhczvk.png\", + \n\"screenshotUrls\":[\"http://a4.mzstatic.com/us/r1000/062/Purple/5a/6b/30/mzl.fsdayywb.png\", + \"http://a4.mzstatic.com/us/r1000/106/Purple/c5/6f/9b/mzl.slwprxkx.png\", \"http://a1.mzstatic.com/us/r1000/107/Purple/2c/a9/45/mzl.ateovukl.png\", + \"http://a4.mzstatic.com/us/r1000/063/Purple/91/b3/c4/mzl.vjakvmyj.png\"], \"ipadScreenshotUrls\":[], + \"artworkUrl512\":\"http://a5.mzstatic.com/us/r1000/116/Purple/1c/95/50/mzl.myszioll.png\", + \"artistId\":485094067, \"artistName\":\"Tiny Doodle Maker Wars\", \"price\":0.99, + \"version\":\"3.2\", \n\"description\":\"ARMY MEN IS HERE! AN EXCITING NEW GAME! + \\n\\nWho likes to play with Army Men!?!? Everyone! Build your armies and create + your own wars with men, vehicles, bases, and more. Now you can play Army Men + on your iPhone and iPod Touch! ARMY MEN!!! \\n\\nArmy Men is a super fun and + exciting game. Use your army and vehicles and then pretend to defeat the enemy! + Can you create an army big enough to destroy them all? Choose from multiple + battlegrounds and levels. Your army men are armed and ready for combat. Army + Men is an addicting game and you will spend hours playing it! \\n\\nFeatures: + \\nMultiple Battlefields \\nArmy Soldiers, Generals, and More \\nVehicles - + Tanks, Airplanes, and More! \\nBases! \\n\\nARMY MEN! \\nSupports iPhone, iPod + Touch, and iPad.\", \"genreIds\":[\"6014\", \"7010\", \"6016\", \"7002\"], \"releaseDate\":\"2011-12-09T02:37:05Z\", + \"sellerName\":\"More Tiny Talking Wars & Doodle Maker Games\", \"currency\":\"USD\", + \"genres\":[\"Games\", \"Kids\", \"Entertainment\", \"Adventure\"], \"bundleId\":\"com.doodlemaker.armymen\", + \"trackId\":485735236, \"trackName\":\"ARMY MEN!!!\", \"primaryGenreName\":\"Games\", + \"primaryGenreId\":6014, \"releaseNotes\":\"- Better Graphics\", \"wrapperType\":\"software\", + \"contentAdvisoryRating\":\"4+\", \"artworkUrl100\":\"http://a5.mzstatic.com/us/r1000/116/Purple/1c/95/50/mzl.myszioll.png\", + \"trackCensoredName\":\"ARMY MEN!!!\", \"trackViewUrl\":\"http://itunes.apple.com/us/app/army-men!!!/id485735236?mt=8&uo=4\", + \"languageCodesISO2A\":[\"EN\"], \"fileSizeBytes\":\"4391765\", \"averageUserRatingForCurrentVersion\":2.0, + \"userRatingCountForCurrentVersion\":51, \"trackContentRating\":\"4+\", \"averageUserRating\":2.0, + \"userRatingCount\":89}, \n{\"kind\":\"software\", \"features\":[], \"supportedDevices\":[\"all\"], + \"isGameCenterEnabled\":false, \"artistViewUrl\":\"http://itunes.apple.com/us/artist/angry-zombies-jump-zombie/id510460612?uo=4\", + \"artworkUrl60\":\"http://a5.mzstatic.com/us/r1000/082/Purple/v4/71/30/42/71304236-ffd9-6a16-38d6-61c53bba84c8/Icon.png\", + \n\"screenshotUrls\":[\"http://a2.mzstatic.com/us/r1000/074/Purple/v4/25/a3/37/25a33703-57a1-032a-c072-a6b890e9fa08/mza_6481026523396359910.png\", + \"http://a2.mzstatic.com/us/r1000/109/Purple/v4/05/0e/31/050e311f-543b-4977-185d-eb1248149e68/mza_8490821487377551973.png\", + \"http://a5.mzstatic.com/us/r1000/086/Purple/v4/c8/85/32/c88532a2-4b43-c152-9197-ebe5d0f077ae/mza_5650359273943053477.png\"], + \"ipadScreenshotUrls\":[], \"artworkUrl512\":\"http://a4.mzstatic.com/us/r1000/081/Purple/v4/83/95/88/8395883a-0d91-4109-a42f-7df4ef264c17/KWEDtgzjuNpQJVYVMy0Nv0-temp-upload.ysvxwmdm.png\", + \"artistId\":510460612, \"artistName\":\"Angry Zombies Jump Zombie Friends LLC\", + \"price\":0.99, \"version\":\"1.0\", \n\"description\":\"======================================\\nJUST + RELEASED!\\nThe adventure continues with Angry Squirrels!\\nOn Sale Today Only! + \ Just $.99!!!\\n======================================\\n\\nThe survival of + the Angry Squirrels is now your job!. Dish out revenge on the evil animals that + are trying to take your village! Use the unique powers of each squirrel to help + stop the enemies! Angry Squirrels features challenging gameplay and hours of + fun. If you get stuck in the game, you can always ask your animal friends for + help.\\n\\nFeatures:\\nAll New Adventure!\\nChallenging Levels\\nFun Music and + Sound FX\\nAmusing Squirrels\\nMuch More!\\n\\nDownload the latest iPhone hit + - Angry Squirrels!\", \"genreIds\":[\"6014\", \"7002\", \"6016\", \"7001\"], + \"releaseDate\":\"2012-03-22T03:35:06Z\", \"sellerName\":\"Angry Zombies Jump + Zombie Friends LLC\", \"currency\":\"USD\", \"genres\":[\"Games\", \"Adventure\", + \"Entertainment\", \"Action\"], \"bundleId\":\"com.angryzombiesjump.angrysquirrels\", + \"trackId\":510460609, \"trackName\":\"Angry Squirrels\", \"primaryGenreName\":\"Games\", + \"primaryGenreId\":6014, \"releaseNotes\":\"\", \"wrapperType\":\"software\", + \"contentAdvisoryRating\":\"4+\", \"artworkUrl100\":\"http://a4.mzstatic.com/us/r1000/081/Purple/v4/83/95/88/8395883a-0d91-4109-a42f-7df4ef264c17/KWEDtgzjuNpQJVYVMy0Nv0-temp-upload.ysvxwmdm.png\", + \"trackCensoredName\":\"Angry Squirrels\", \"trackViewUrl\":\"http://itunes.apple.com/us/app/angry-squirrels/id510460609?mt=8&uo=4\", + \"languageCodesISO2A\":[\"EN\"], \"fileSizeBytes\":\"4127214\", \"averageUserRatingForCurrentVersion\":2.0, + \"userRatingCountForCurrentVersion\":24, \"trackContentRating\":\"4+\", \"averageUserRating\":2.0, + \"userRatingCount\":24}, \n{\"kind\":\"software\", \"features\":[], \"supportedDevices\":[\"all\"], + \"isGameCenterEnabled\":false, \"artistViewUrl\":\"http://itunes.apple.com/us/artist/jump-birds-and-friends/id431556891?uo=4\", + \"artworkUrl60\":\"http://a1.mzstatic.com/us/r1000/098/Purple/03/65/eb/mzi.ajvkayuf.png\", + \n\"screenshotUrls\":[\"http://a5.mzstatic.com/us/r1000/075/Purple/32/ea/c3/mzl.upvkxjrd.png\", + \"http://a4.mzstatic.com/us/r1000/108/Purple/08/c2/5c/mzl.doygpthp.png\", \"http://a2.mzstatic.com/us/r1000/099/Purple/63/af/95/mzl.wuizjcxl.png\", + \"http://a2.mzstatic.com/us/r1000/102/Purple/0c/13/34/mzl.bvuyhzmh.png\", \"http://a1.mzstatic.com/us/r1000/118/Purple/01/41/8b/mzl.zerchkrc.png\"], + \"ipadScreenshotUrls\":[], \"artworkUrl512\":\"http://a5.mzstatic.com/us/r1000/120/Purple/e0/74/65/mzm.pprwjbxd.png\", + \"artistId\":431556891, \"artistName\":\"Jump Birds and Friends\", \"price\":0.99, + \"version\":\"1.0\", \n\"description\":\"X-Ray Scanner for your iPhone and iPod + Touch! For entertainment use and does not provide medical X-rays.\\n➠➠➠➠➠➠➠➠➠➠➠➠➠➠➠➠➠➠➠➠➠➠➠➠➠➠➠\\nCheck + out this amazing software now. You won't believe the incredible results! Use + it on yourself and friends!\\n➠➠➠➠➠➠➠➠➠➠➠➠➠➠➠➠➠➠➠➠➠➠➠➠➠➠➠\\nNow you can use + your iPhone to create X-Ray visuals. This technology uses the iPhone's camera + to generate a picture of yourself or your friends. The software will then use + our enhanced technology to give you incredible X-Ray results. It works buy overlaying + the images with X-Ray props. It looks incredible and almost like a real X-Ray! + \ Even customize each photo to enhance the results even more.\\nFeatures:\\nEasy + to use technology that you control through your iPhone.\\nX-Ray imagery that + will impress you and your friends.\\nEasy navigation through the application\\nSave + your amazing X-rays as photos to show off.\\nDetailed instructions on how to + use the X-Ray technology.\\nDownload this application today. For entertainment + and prank use only. User will enhance each picture with X-ray props to give + the illusion of real X-Rays. Show off all your amazing visuals to all your + friends. See who can make the best ones!\\nX-Ray Scanner Software for iPhone! + \ Get this amazing app today!\", \"genreIds\":[\"6002\", \"6016\"], \"releaseDate\":\"2011-08-21T07:00:00Z\", + \"sellerName\":\"Mega Friends Jump Rope over the Tiny Fruit Birds who are Talking + Sex LLC\", \"currency\":\"USD\", \"genres\":[\"Utilities\", \"Entertainment\"], + \"bundleId\":\"com.jumpbirds.xrayscanner\", \"trackId\":455766778, \"trackName\":\"X-Ray + Scanner for iPhone\", \"primaryGenreName\":\"Utilities\", \"primaryGenreId\":6002, + \"releaseNotes\":\"\", \"wrapperType\":\"software\", \"contentAdvisoryRating\":\"4+\", + \"artworkUrl100\":\"http://a5.mzstatic.com/us/r1000/120/Purple/e0/74/65/mzm.pprwjbxd.png\", + \"trackCensoredName\":\"X-Ray Scanner for iPhone\", \"trackViewUrl\":\"http://itunes.apple.com/us/app/x-ray-scanner-for-iphone/id455766778?mt=8&uo=4\", + \"languageCodesISO2A\":[\"EN\"], \"fileSizeBytes\":\"5799311\", \"averageUserRatingForCurrentVersion\":1.5, + \"userRatingCountForCurrentVersion\":77, \"trackContentRating\":\"4+\", \"averageUserRating\":1.5, + \"userRatingCount\":77}, \n{\"kind\":\"software\", \"features\":[], \"supportedDevices\":[\"all\"], + \"isGameCenterEnabled\":false, \"artistViewUrl\":\"http://itunes.apple.com/us/artist/infectious-apps-america-for/id454280872?uo=4\", + \"artworkUrl60\":\"http://a3.mzstatic.com/us/r1000/098/Purple/v4/86/ca/34/86ca344b-4101-5d54-df11-248b5a9f2ec9/Icon.png\", + \n\"screenshotUrls\":[\"http://a5.mzstatic.com/us/r1000/083/Purple/v4/9d/16/7d/9d167d90-4dd7-3367-3272-9d2d22613245/mza_4633196683105257866.png\", + \"http://a2.mzstatic.com/us/r1000/079/Purple/v4/4f/03/c1/4f03c1a2-6938-7d24-abd4-3181e7317f76/mza_4488601858292245449.png\"], + \"ipadScreenshotUrls\":[], \"artworkUrl512\":\"http://a2.mzstatic.com/us/r1000/064/Purple/v4/db/45/66/db456661-72a6-9582-14bf-207fea58fc08/mza_6266462312047283056.png\", + \"artistId\":454280872, \"artistName\":\"Infectious Apps America for Tiny Doodle + Cars with Hanging Ninja Friends\", \"price\":0.99, \"version\":\"1.0\", \n\"description\":\"THE + RAT IS BACK!\\nRat on a Bike has just been released!\\n\\nThe newest adventure + is now available for iPhone and iPad!\\nGrab your bike and get ready for some + bike hoppin' and jumpin' adventures down the Bike Alley! Grab the cheese for + extra bonus points! Try to avoid the obstacles! Can you make it to the next + level?\\n\\nIncludes a brand new fun adventure for all rat fans!\\n\\nFEATURES:\\nBrand + New Rat Fun!\\nFun Levels and High Scores\\nBike Jumps and Tricks\\nNew Characters\\nMusic + and Sound FX\\n\\nWhat are you waiting for? Download Rat on a Bike today!\", + \"genreIds\":[\"6014\", \"7002\", \"6016\", \"7001\"], \"releaseDate\":\"2012-04-11T11:36:29Z\", + \"sellerName\":\"Tamara Wirz\", \"currency\":\"USD\", \"genres\":[\"Games\", + \"Adventure\", \"Entertainment\", \"Action\"], \"bundleId\":\"com.infectiousapps.ratonabike\", + \"trackId\":516006292, \"trackName\":\"Rat On A Bike\", \"primaryGenreName\":\"Games\", + \"primaryGenreId\":6014, \"releaseNotes\":\"\", \"wrapperType\":\"software\", + \"contentAdvisoryRating\":\"4+\", \"artworkUrl100\":\"http://a2.mzstatic.com/us/r1000/064/Purple/v4/db/45/66/db456661-72a6-9582-14bf-207fea58fc08/mza_6266462312047283056.png\", + \"trackCensoredName\":\"Rat On A Bike\", \"trackViewUrl\":\"http://itunes.apple.com/us/app/rat-on-a-bike/id516006292?mt=8&uo=4\", + \"languageCodesISO2A\":[\"EN\"], \"fileSizeBytes\":\"2415495\", \"trackContentRating\":\"4+\"}, + \n{\"kind\":\"software\", \"features\":[], \"supportedDevices\":[\"all\"], \"isGameCenterEnabled\":false, + \"artistViewUrl\":\"http://itunes.apple.com/us/artist/ner-brothers/id326478818?uo=4\", + \"artworkUrl60\":\"http://a5.mzstatic.com/us/r1000/066/Purple/v4/e0/d5/e4/e0d5e418-5838-1f02-ee3d-bc5aa23c5fe2/Icon.png\", + \n\"screenshotUrls\":[\"http://a4.mzstatic.com/us/r1000/081/Purple/v4/66/21/11/6621112d-4f21-e720-2ae5-c37ddededefe/mzl.hckslbuj.png\", + \"http://a1.mzstatic.com/us/r1000/106/Purple/v4/1f/c6/76/1fc67675-8917-7681-ccb7-33c442185807/mzl.gdpsarmm.png\", + \"http://a2.mzstatic.com/us/r1000/120/Purple/v4/1a/fd/ff/1afdffbe-0578-9630-3186-98b275bbeaad/mzl.smicwdun.png\", + \"http://a2.mzstatic.com/us/r1000/115/Purple/v4/1b/e1/58/1be158e6-8e0e-f364-42ad-c045d0fb4228/mzl.wuiylyoi.png\", + \"http://a3.mzstatic.com/us/r1000/113/Purple/v4/82/99/85/829985f5-3a5b-6dd5-5b7a-ff7738fcd79a/mzl.hufouzfl.png\"], + \"ipadScreenshotUrls\":[], \"artworkUrl512\":\"http://a2.mzstatic.com/us/r1000/092/Purple/v4/5d/1a/ac/5d1aac71-73d9-45b6-4192-c7fe1629f804/mzl.hkhwpwrn.png\", + \"artistId\":326478818, \"artistName\":\"NER Brothers\", \"price\":0.00, \"version\":\"3.5\", + \n\"description\":\"#######################################\\n!!!! FREE for + limited time !!!!\\n#######################################\\n\\nTop 1 Games + \\u2013 US, UK, Germany, Canada, France, Italy, ... \\n\\n*** Over 6 Million + Players! Join in! *** \\n\\n\\n-\\\"Jesus Christ! The perfect game for me. I + love Snake, doodle graphics and glow in the dark stuff. Put three together and + consider my mind blown.\\\" - theappera.com\\n\\n- \\\"Best game ever!\\\" - + blippy.com\\n\\n-\\\"Please friends just download this game and play it\\u2026 + It is a wonderful game\\u2026 The Glow Doodle Snake provides a very easy and + most effective game play strategy that makes as addictive towards it\\\" - 1888freeonlinegames.com\\n\\n- + \\\" I would recommend this to anyone looking for a simple game!\\\" - freesmartphoneapps.org\\n\\n- + \\\"This is ... aaaawwwweeessssooooommmmeeee!!! BEST APP EVER!!\\\" - itunes + Review\\n\\n\\nGlow Doodle Snake is an iPhone version of the classic snake game + which was popular on the original Nokia phones. \\n\\n+ 5 great game modes\\n+ + \ 3 control types\\n+ Global High Scores - Game Center\\n+ 7 cool achievements\\n+ + \ 6 texture styles \\u2013 Doodle & Glow & Winter & Wood & Halloween & Water\\n+ + \ Pause option\\n+ Retina support\\n+ Facebook\\n\\n\\n*** Warning - Highly + Addictive ***\", \"genreIds\":[\"6014\", \"7010\", \"6016\", \"7003\"], \"releaseDate\":\"2010-04-27T02:10:53Z\", + \"sellerName\":\"Alexander Nedoma\", \"currency\":\"USD\", \"genres\":[\"Games\", + \"Kids\", \"Entertainment\", \"Arcade\"], \"bundleId\":\"at.nerbrothers.doodlesnake\", + \"trackId\":368732592, \"trackName\":\"Doodle Snake :)\", \"primaryGenreName\":\"Games\", + \"primaryGenreId\":6014, \n\"releaseNotes\":\"Another FREE Update is ready. + \\n******* ******* ******* \\n\\n\\n+ improved performance \\n+ other small + bug fixed \\n+ new ad position \\n\\n\\n******* \\nPlease support us with your + 5 star rating and keep us motivated for new updates ! Feel free to post your + ideas. We will try to implement them as soon as possible. \\n*******\", \"wrapperType\":\"software\", + \"contentAdvisoryRating\":\"4+\", \"artworkUrl100\":\"http://a2.mzstatic.com/us/r1000/092/Purple/v4/5d/1a/ac/5d1aac71-73d9-45b6-4192-c7fe1629f804/mzl.hkhwpwrn.png\", + \"trackCensoredName\":\"Doodle Snake :)\", \"trackViewUrl\":\"http://itunes.apple.com/us/app/doodle-snake/id368732592?mt=8&uo=4\", + \"languageCodesISO2A\":[\"EN\"], \"fileSizeBytes\":\"12488056\", \"sellerUrl\":\"http://www.ner-brothers.com/mobile/nersnake/doodlesnakehome.html\", + \"averageUserRatingForCurrentVersion\":4.5, \"userRatingCountForCurrentVersion\":2838, + \"trackContentRating\":\"4+\", \"averageUserRating\":3.0, \"userRatingCount\":37414}, + \n{\"kind\":\"software\", \"features\":[], \"supportedDevices\":[\"all\"], \"isGameCenterEnabled\":false, + \"artistViewUrl\":\"http://itunes.apple.com/us/artist/tiny-doodle-maker-wars/id485094067?uo=4\", + \"artworkUrl60\":\"http://a3.mzstatic.com/us/r1000/069/Purple/v4/97/ee/0b/97ee0b55-fc5f-9e62-9a2f-8bda92d851e7/Icon.png\", + \n\"screenshotUrls\":[\"http://a1.mzstatic.com/us/r1000/073/Purple/v4/dc/b1/6e/dcb16e02-768f-a4f3-a6ea-e2a9df238c8d/mza_3181341695088535903.png\", + \"http://a2.mzstatic.com/us/r1000/097/Purple/v4/0a/8a/28/0a8a285a-4685-7954-65b2-16a6399e2bec/mza_2012490903058812893.png\", + \"http://a3.mzstatic.com/us/r1000/086/Purple/v4/94/29/c4/9429c4fe-c141-314d-4cd6-ae41a26ec3d3/mza_6846767040261515109.png\", + \"http://a4.mzstatic.com/us/r1000/110/Purple/v4/27/d4/ce/27d4ce0e-eb8f-9ce0-f87c-0b91d37a459a/mza_42740161321377330.png\", + \"http://a1.mzstatic.com/us/r1000/100/Purple/v4/57/20/d1/5720d19f-11f4-ac90-a3bf-ba58c0beef4a/mza_4228349416947001910.png\"], + \"ipadScreenshotUrls\":[], \"artworkUrl512\":\"http://a4.mzstatic.com/us/r1000/067/Purple/v4/7b/3e/6f/7b3e6f30-1801-c6f6-232d-37df5841b1f8/tl4lkybVEbusDFumIWuQ5g-temp-upload.rmbzdojs.png\", + \"artistId\":485094067, \"artistName\":\"Tiny Doodle Maker Wars\", \"price\":0.99, + \"version\":\"1.0\", \n\"description\":\"★ EASTER EGG MAKER - DESIGN YOURS! + ★\\n\\nNow you can design your very own Easter eggs! Choose your color, designs, + shapes, and much more! Decorate your eggs with all kinds of Easter extras! + \ Add bunny rabbits, stickers, stars, baskets, holders and much more!\\n\\nWhat + kind of egg do you want to make? Start out with a plain egg. Next, decide + what you want to do with it! How about dye it red and then add a rabbit on + it? How about making 6 different colored eggs that you can put in your own + Easter basket? Now you can design and make your very own Easter eggs! Choose + your colors, holders, designs, extras, and more! Super easy to use and fun + for both kids and adults. As an extra feature, you can even save your creations + to your camera roll and email them to your friends. Even choose your own photos + and add multiple Easter egg images to them. \\n\\nSUPER FUN FOR ALL AGES! IT + IS JUST LIKE MAKING REAL EASTER EGGS!\\nSupports iPhone, iPod Touch, and iPad.\", + \"genreIds\":[\"6014\", \"7010\", \"7009\", \"6016\"], \"releaseDate\":\"2012-04-10T12:21:13Z\", + \"sellerName\":\"More Tiny Talking Wars & Doodle Maker Games\", \"currency\":\"USD\", + \"genres\":[\"Games\", \"Kids\", \"Family\", \"Entertainment\"], \"bundleId\":\"com.doodlemaker.eastereggmaker\", + \"trackId\":517531311, \"trackName\":\"Easter Egg Maker\", \"primaryGenreName\":\"Games\", + \"primaryGenreId\":6014, \"releaseNotes\":\"\", \"wrapperType\":\"software\", + \"contentAdvisoryRating\":\"4+\", \"artworkUrl100\":\"http://a4.mzstatic.com/us/r1000/067/Purple/v4/7b/3e/6f/7b3e6f30-1801-c6f6-232d-37df5841b1f8/tl4lkybVEbusDFumIWuQ5g-temp-upload.rmbzdojs.png\", + \"trackCensoredName\":\"Easter Egg Maker\", \"trackViewUrl\":\"http://itunes.apple.com/us/app/easter-egg-maker/id517531311?mt=8&uo=4\", + \"languageCodesISO2A\":[\"EN\"], \"fileSizeBytes\":\"3289528\", \"averageUserRatingForCurrentVersion\":2.0, + \"userRatingCountForCurrentVersion\":1, \"trackContentRating\":\"4+\", \"averageUserRating\":2.0, + \"userRatingCount\":1}, \n{\"kind\":\"software\", \"features\":[\"gameCenter\"], + \"supportedDevices\":[\"all\"], \"isGameCenterEnabled\":true, \"artistViewUrl\":\"http://itunes.apple.com/us/artist/egerter-software/id288257889?uo=4\", + \"artworkUrl60\":\"http://a5.mzstatic.com/us/r1000/089/Purple/v4/3a/10/6c/3a106ca0-703f-712c-6982-c2d42273bf4e/IconFree.png\", + \n\"screenshotUrls\":[\"http://a5.mzstatic.com/us/r1000/106/Purple/v4/ba/03/6b/ba036b02-1163-3b4c-d3e6-1920e9c3679d/mzl.tqufwugl.jpg\", + \"http://a1.mzstatic.com/us/r1000/066/Purple/v4/71/80/9d/71809d7f-4c47-1be1-08a6-726c8d2e31d1/mzl.ehbdmhwu.jpg\", + \"http://a2.mzstatic.com/us/r1000/114/Purple/v4/1c/37/16/1c371651-891d-9cfc-9614-2f5cfe79d967/mzl.icbtbxcz.jpg\", + \"http://a5.mzstatic.com/us/r1000/072/Purple/v4/fd/26/db/fd26dbf0-570c-680b-d33e-11dcd75cc697/mzl.xepgtxvc.jpg\", + \"http://a1.mzstatic.com/us/r1000/115/Purple/v4/76/68/11/766811ba-16d7-d22c-0a6f-e8d0f32e70ea/mzl.ybbjsjsb.jpg\"], + \"ipadScreenshotUrls\":[], \"artworkUrl512\":\"http://a4.mzstatic.com/us/r1000/102/Purple/v4/5b/23/89/5b23891a-755b-1350-b82e-653b1777b128/mzm.nntznrcg.png\", + \"artistId\":288257889, \"artistName\":\"Egerter Software\", \"price\":0.00, + \"version\":\"2.2\", \n\"description\":\"Puppet Jump 3D is a cross between Little + Big Planet and Doodle Jump. \\n\\nNEWS: Use the new BRAG button to brag about + your height on Facebook and Twitter!\\n\\nBe sure to get the other two games + in the puppet series, Puppet Sprint and Puppet Labyrinth!\\n\\n\\nUSER QUOTES\\n\\\"Kicks + Doodle Jump's butt!\\\"\\n\\\"Fantastic take on the whole jump genre\\\"\\n\\\"Graphics + and art style are some of the best on iPhone\\\"\\n\\\"League of its own\\\"\\n\\nFEATURES\\nJump + ever higher on platforms while collecting Puppet Points which can be used to + customize your puppet and surroundings. As you get higher you'll encounter moving + and breakable platforms to test your leaping skills.\\n\\nCustomization is extensive + with the ability to change your puppet's body, hat, eyes, mouth, material and + choose from 10 different backgrounds to give almost a million unique combinations.\\n\\nBoth + Game Center and OpenFeint are supported, and the game has bluetooth local multiplayer + and internet based through Game Center.\\n\\nFOR MORE GAMES:\\nwww.RockingPocketGames.com\\n\\nJOIN + THE FAN COMMUNITY\\n-On Facebook at www.facebook.com/RockingPocketGames\\n-On + Twitter at twitter.com/RockingPocket\", \"genreIds\":[\"6014\", \"7003\", \"7010\", + \"6016\"], \"releaseDate\":\"2010-02-20T02:42:53Z\", \"sellerName\":\"Chris + Egerter\", \"currency\":\"USD\", \"genres\":[\"Games\", \"Arcade\", \"Kids\", + \"Entertainment\"], \"bundleId\":\"com.RockingPocketGames.PuppetJump\", \"trackId\":352779383, + \"trackName\":\"Puppet Jump 3D Lite (bluetooth + internet multiplayer)\", \"primaryGenreName\":\"Games\", + \"primaryGenreId\":6014, \"releaseNotes\":\"-Now working again on original iPod + Touches and IOS 3.1\\n-Updated to OpenFeint 2.12.7\", \"wrapperType\":\"software\", + \"contentAdvisoryRating\":\"4+\", \"artworkUrl100\":\"http://a4.mzstatic.com/us/r1000/102/Purple/v4/5b/23/89/5b23891a-755b-1350-b82e-653b1777b128/mzm.nntznrcg.png\", + \"trackCensoredName\":\"Puppet Jump 3D Lite (bluetooth + internet multiplayer)\", + \"trackViewUrl\":\"http://itunes.apple.com/us/app/puppet-jump-3d-lite-bluetooth/id352779383?mt=8&uo=4\", + \"languageCodesISO2A\":[\"EN\"], \"fileSizeBytes\":\"32737529\", \"sellerUrl\":\"http://www.RockingPocketGames.com\", + \"averageUserRatingForCurrentVersion\":4.0, \"userRatingCountForCurrentVersion\":4, + \"trackContentRating\":\"4+\", \"averageUserRating\":3.0, \"userRatingCount\":6440}, + \n{\"kind\":\"software\", \"features\":[], \"supportedDevices\":[\"all\"], \"isGameCenterEnabled\":false, + \"artistViewUrl\":\"http://itunes.apple.com/us/artist/happylatte/id306585995?mt=8&uo=4\", + \"artworkUrl60\":\"http://a1.mzstatic.com/us/r1000/017/Purple/c2/93/80/mzi.jhsznqdd.png\", + \n\"screenshotUrls\":[\"http://a1.mzstatic.com/us/r1000/045/Purple/c0/53/3d/mzl.ecaejgpz.tiff\", + \"http://a1.mzstatic.com/us/r1000/058/Purple/e1/69/9b/mzl.fwzffywa.tif\", \"http://a1.mzstatic.com/us/r1000/037/Purple/2b/c1/25/mzl.wbehznaj.tif\", + \"http://a1.mzstatic.com/us/r1000/056/Purple/2a/66/79/mzl.qjszvakn.tif\"], \"ipadScreenshotUrls\":[], + \"artworkUrl512\":\"http://a5.mzstatic.com/us/r1000/006/Purple/5b/b2/b1/mzl.kpuogobh.jpg\", + \"artistId\":306585995, \"artistName\":\"Happylatte\", \"price\":0.99, \"version\":\"1.2.9\", + \n\"description\":\"Pee Monkey Toilet Trainer reaches 2 million downloads!\\n\\n\\u2022 + Top #1 game in many countries, including the US\\n\\u2022 Top 100 game in almost + all countries around the world\\n\\u2022 14 years of accumulated pee time and + counting...\\nThanks everyone, and happy peeing :D\\n\\n· · · · · · · · · · + · · · · · · · · · · · · · · · · · · · · · · · · · · · ·\\n\\nTest your precision + peeing skills in a familiar environment: the toilet!\\n\\nYour task sounds easy: + help PeeMonkey pee into the toilet, but there are some complications:\\n\\u2022 + Due to some medical mystery, PeeMonkey can't stop peeing! \\n\\u2022 He's sliding + back and forth on a bar of soap at neck-breaking speeds! \\n\\u2022 The pee-level + in the room is getting dangerously close to that power outlet! \\n\\nFeatures + include:\\n\\u2022 Easy controls\\u2014tilt your device to aim your pee\\n\\u2022 + Pee perfectly and get superflow combos for each full toilet\\n\\u2022 Record + your best peeing results on global scoreboard and challenge your friends to + a pee-duel\\n\\u2022 Atmospheric sounds and animations\\n\\nThis monkey toilet + game is great for kids of all ages.\\n\\n\\u2022\\u2022\\u2022 NEW VERSION AVAILABLE + \\u2022\\u2022\\u2022\\nPee Monkey Toilet Trainer 2, also known as \\\"Gold + Edition\\\", features:\\n \\u2022 pee in all the colors of the rainbow (literally)\\n + \\u2022 easy & hard levels (bath tub and chamber pot)\\n \\u2022 luxurious new + golden graphics\\n\\n· · · · · · · · · · · · · · · · · · · · · · · · · · · · + · · · · · · · · · ·\\n\\nSUPPORT THE PEE MONKEYS\\n\\nIf you you like Pee Monkey + Toilet Trainer please check out these:\\n\\n▶ Pee Monkey Toilet Trainer 2\\u2014 + also on the AppStore\\nPee in all the colors of the rainbow (literally), take + it easy by peeing into the tub, or challenge yourself on the pot, check out + the \\\"Gold Edition\\\" at\\nhttp://peemonkey.com/tt2\\n\\n▶ Pee Monkey Jungle + Fire \\u2014 also on the AppStore\\nIf you think you've mastered superflow, + try a completely different adventure with Pee Monkey Jungle Fire \\u2014 fly + & pee at the same time! Just search for Pee Monkey on the app store, or go + to \\nhttp://peemonkey.com/jf\\n\\n▶ Pee Monkey Pee Straight t-shirts\\nShow + your love with these outrageous t-shirts\\nhttp://happylatte.com/store\\n\\n▶ + Follow us on Twitter\\nhttp://twitter.com/happylatte\\n\\n▶ Fan Pee Monkey on + Facebook\\nhttp://happylatte.com/facebook\", \"genreIds\":[\"6014\", \"7003\", + \"7001\", \"6016\"], \"releaseDate\":\"2009-04-08T02:22:45Z\", \"sellerName\":\"Exoweb + Ltd.\", \"currency\":\"USD\", \"genres\":[\"Games\", \"Arcade\", \"Action\", + \"Entertainment\"], \"bundleId\":\"net.exoweb.PeeMonkeyToiletTrainer\", \"trackId\":308239400, + \"trackName\":\"Pee Monkey Toilet Trainer\", \"primaryGenreName\":\"Games\", + \"primaryGenreId\":6014, \n\"releaseNotes\":\"\\u2022 Fix rare crash on iOS4.1 + and related compatibility issues.\\n\\u2022 Fix low graphic memory causing Cocos2D + stop refreshing problem on iOS4 machines\", \"wrapperType\":\"software\", \"contentAdvisoryRating\":\"9+\", + \"artworkUrl100\":\"http://a5.mzstatic.com/us/r1000/006/Purple/5b/b2/b1/mzl.kpuogobh.jpg\", + \"trackCensoredName\":\"Pee Monkey Toilet Trainer\", \"trackViewUrl\":\"http://itunes.apple.com/us/app/pee-monkey-toilet-trainer/id308239400?mt=8&uo=4\", + \"languageCodesISO2A\":[\"EN\"], \"fileSizeBytes\":\"5065013\", \"sellerUrl\":\"http://happylatte.com/\", + \"averageUserRatingForCurrentVersion\":3.5, \"userRatingCountForCurrentVersion\":679, + \"trackContentRating\":\"9+\", \"averageUserRating\":3.0, \"userRatingCount\":84434}, + \n{\"kind\":\"software\", \"features\":[], \"supportedDevices\":[\"all\"], \"isGameCenterEnabled\":false, + \"artistViewUrl\":\"http://itunes.apple.com/us/artist/doodle-maker-games-more-tiny/id499767183?uo=4\", + \"artworkUrl60\":\"http://a1.mzstatic.com/us/r1000/102/Purple/49/e2/9b/mzi.oqecvuiz.png\", + \n\"screenshotUrls\":[\"http://a2.mzstatic.com/us/r1000/091/Purple/2c/fc/00/mzl.krmnnwwm.png\", + \"http://a5.mzstatic.com/us/r1000/081/Purple/af/04/6f/mzl.conlrohz.png\", \"http://a1.mzstatic.com/us/r1000/092/Purple/0d/d3/68/mzl.yejjksjm.png\"], + \"ipadScreenshotUrls\":[], \"artworkUrl512\":\"http://a3.mzstatic.com/us/r1000/066/Purple/34/86/dd/mzm.eevuaqya.png\", + \"artistId\":499767183, \"artistName\":\"Doodle Maker Games & More Tiny Food + Builder Wars\", \"price\":0.99, \"version\":\"1.0\", \n\"description\":\"Happy + Meal Maker! \\nNow for iPhone and iPod Touch! \\n------------------------------------ + \\nHappy Meals are the All-Time favorite choice of Kids! Everyone likes a Happy + Meal!! You can make all kinds of different Happy Meals with this all new kids + app. \\n========================== \\nWhat kind of Happy Meal do you want to + make? Choose your favorite Hamburger, Nuggets, French Fries, Toys, Ice Cream + and Cookies! Make Fun Happy Meal Creations! YUMMY! You can even pretend to eat + your Happy Meal food and take fun pictures with you and your friends! Easy to + play with and great for kids.\\n\\nHAPPY MEAL MAKER INCLUDES: \\n========================== + \\n-Custom Happy Meal Foods, Toys, and Designs \\n-Cool Colors, Designs, and + Fun Accessories \\n-Easy to Use Selections and Instructions \\n-Image Move - + Crop - Re-Size Function \\n-Select and Save To Camera Roll \\n-Image Email to + Friends and Family Function \\n========================== \\nGREAT FAMILY FUN! + GREAT FOR ALL AGES!! \\n========================== \\nLoads of Fun and Entertainment! + Get It Now! \\n.\", \"genreIds\":[\"6014\", \"7010\", \"7009\", \"6016\"], \"releaseDate\":\"2012-02-21T07:47:01Z\", + \"sellerName\":\"Matthew Weatherly\", \"currency\":\"USD\", \"genres\":[\"Games\", + \"Kids\", \"Family\", \"Entertainment\"], \"bundleId\":\"HappyMealMaker\", \"trackId\":500519427, + \"trackName\":\"Happy Meal Maker\", \"primaryGenreName\":\"Games\", \"primaryGenreId\":6014, + \"releaseNotes\":\"\", \"wrapperType\":\"software\", \"contentAdvisoryRating\":\"4+\", + \"artworkUrl100\":\"http://a3.mzstatic.com/us/r1000/066/Purple/34/86/dd/mzm.eevuaqya.png\", + \"trackCensoredName\":\"Happy Meal Maker\", \"trackViewUrl\":\"http://itunes.apple.com/us/app/happy-meal-maker/id500519427?mt=8&uo=4\", + \"languageCodesISO2A\":[\"EN\"], \"fileSizeBytes\":\"1537084\", \"averageUserRatingForCurrentVersion\":1.5, + \"userRatingCountForCurrentVersion\":108, \"trackContentRating\":\"4+\", \"averageUserRating\":1.5, + \"userRatingCount\":108}, \n{\"kind\":\"software\", \"features\":[\"gameCenter\"], + \"supportedDevices\":[\"all\"], \"isGameCenterEnabled\":true, \"artistViewUrl\":\"http://itunes.apple.com/us/artist/funvid-apps-llc/id325673381?uo=4\", + \"artworkUrl60\":\"http://a4.mzstatic.com/us/r1000/110/Purple/d6/33/d6/mzi.wybrvqkt.png\", + \n\"screenshotUrls\":[\"http://a2.mzstatic.com/us/r1000/110/Purple/c9/80/d3/mzl.dibgqcrd.png\", + \"http://a1.mzstatic.com/us/r1000/105/Purple/1a/e6/a9/mzl.hbulckod.png\", \"http://a5.mzstatic.com/us/r1000/082/Purple/91/30/4d/mzl.eqmysrml.png\", + \"http://a3.mzstatic.com/us/r1000/112/Purple/f5/b2/f3/mzl.nlktaehh.png\", \"http://a2.mzstatic.com/us/r1000/103/Purple/4d/8e/d7/mzl.halrclrq.png\"], + \"ipadScreenshotUrls\":[], \"artworkUrl512\":\"http://a1.mzstatic.com/us/r1000/100/Purple/11/53/c1/mzm.odvveegl.png\", + \"artistId\":325673381, \"artistName\":\"FunVid Apps LLC\", \"price\":0.00, + \"version\":\"1.5\", \n\"description\":\"***** JUMP - SURF - DIVE *****\\n\\nDoodle + Jump, Surf & Dive Free takes your mobile gaming experience to a whole new level. + \ It is an extremely addictive game that is hard to put down. Enjoy your ultimate + surfing and diving experience. Surf a session until you get caught up in the + wash at the end of your ride, then free dive to the bottom of the ocean. Don't + run out of air or you'll be angry.\\n \\nJump back to the top of the ocean for + another surf session by jumping on logs and creatures to get to the top. Your + arms are swimming wings to help you get to the top fast.\\n \\nBecome a part + of the outstanding visual water graphics produced by academy award winning animation + \\u201cCelebrity Star\\u201d, \\u201cJohn Lamb\\u201d, and join our quest for + the Search for the Secret Spot. \\n \\nChallenge yourself with a daring, jumping + climb, upwards to the surface where your submarine is waiting to take you surfing. + \ It's really radical!\\n\\n- Dodge the reefs, pilings, boogie borders\\n- Avoid + biting fish and sea monsters\\n- Be careful, dangers are all around you and + are out to get you\\n- Don't run out of air trying to make it back to the top\\n + \\nThis is a one of a kind experience that puts the action skills of surfing + and diving into your hands. Score the most points and be the best. Good luck.\\n + \\n In 1974, John Lamb created his first animated surfing film, Secret Spot. + \ Enjoy this amazing video, along with other great surfing and diving videos + to enhance your exceptional experience.\\n \\nCome and play in the fun world + of John Lamb and be a part of his magical animated artwork that comes alive.\\n + \\nFeel the addicting play, the realistic joy of dropping in, experience a breath-taking + deep free dive, test your skills with a desperate jumping climb back to your + submarine, and continue your endless \\u201cSearch for the Secret Spot\\u201d.\\n\\nApp + is smooth and refined and is Optimized for iOS 4 with multitasking. Don\\u2019t + miss the best gaming experience you will ever discover. Have fun!\", \"genreIds\":[\"6014\", + \"7001\", \"6016\", \"7003\"], \"releaseDate\":\"2011-04-25T06:56:08Z\", \"sellerName\":\"FunVid + Apps LLC\", \"currency\":\"USD\", \"genres\":[\"Games\", \"Action\", \"Entertainment\", + \"Arcade\"], \"bundleId\":\"com.funvidapps.SecretSpotLite\", \"trackId\":431492903, + \"trackName\":\"Doodle Jump, Surf & Dive Free\", \"primaryGenreName\":\"Games\", + \"primaryGenreId\":6014, \"releaseNotes\":\"New, more radical surfer.\", \"wrapperType\":\"software\", + \"contentAdvisoryRating\":\"4+\", \"artworkUrl100\":\"http://a1.mzstatic.com/us/r1000/100/Purple/11/53/c1/mzm.odvveegl.png\", + \"trackCensoredName\":\"Doodle Jump, Surf & Dive Free\", \"trackViewUrl\":\"http://itunes.apple.com/us/app/doodle-jump-surf-dive-free/id431492903?mt=8&uo=4\", + \"languageCodesISO2A\":[\"EN\"], \"fileSizeBytes\":\"20645265\", \"averageUserRatingForCurrentVersion\":3.0, + \"userRatingCountForCurrentVersion\":107, \"trackContentRating\":\"4+\", \"averageUserRating\":3.5, + \"userRatingCount\":223}, \n{\"kind\":\"software\", \"features\":[\"gameCenter\", + \"iosUniversal\"], \"supportedDevices\":[\"all\"], \"isGameCenterEnabled\":true, + \"artistViewUrl\":\"http://itunes.apple.com/us/artist/secret-headquarters-inc/id427872164?uo=4\", + \"artworkUrl60\":\"http://a1.mzstatic.com/us/r1000/117/Purple/v4/23/02/7f/23027f03-e72a-bafe-72e6-6ae6fabf315f/icon_iphone.png\", + \n\"screenshotUrls\":[\"http://a4.mzstatic.com/us/r1000/091/Purple/v4/2d/26/68/2d266843-82f0-94a7-700b-c318288d5a93/mzl.bvpymxjq.png\", + \"http://a5.mzstatic.com/us/r1000/082/Purple/v4/dc/6f/5f/dc6f5f68-8fd7-5b3f-9729-e8a92e4123a3/mzl.gjyprmeh.jpg\", + \"http://a5.mzstatic.com/us/r1000/113/Purple/v4/62/ef/8c/62ef8c15-d1fe-e35e-dd54-2a73ee2291ca/mzl.mzkutqyz.png\", + \"http://a2.mzstatic.com/us/r1000/076/Purple/v4/f6/b1/1c/f6b11cb0-2825-c2d2-a8ad-00c1152e98ed/mzl.gwrbjrje.jpg\", + \"http://a4.mzstatic.com/us/r1000/074/Purple/v4/20/eb/c6/20ebc684-8616-76a5-9120-606e31446992/mzl.qrhmymed.jpg\"], + \n\"ipadScreenshotUrls\":[\"http://a3.mzstatic.com/us/r1000/116/Purple/v4/a9/f1/22/a9f12234-a77c-91b3-5571-87f1e5e7538f/mzl.fincufau.1024x1024-65.jpg\", + \"http://a3.mzstatic.com/us/r1000/080/Purple/v4/57/57/ea/5757ea4c-d9c5-c07d-58ea-189e032fa003/mzl.setfvunu.1024x1024-65.jpg\", + \"http://a1.mzstatic.com/us/r1000/093/Purple/v4/99/4a/00/994a0034-18ee-b63b-ea0b-00244e9a968a/mzl.fuuplfix.1024x1024-65.jpg\", + \"http://a1.mzstatic.com/us/r1000/072/Purple/v4/d3/b3/5b/d3b35b4a-1089-5737-19a3-f65d1bb921ab/mzl.ewjupudz.1024x1024-65.jpg\", + \"http://a4.mzstatic.com/us/r1000/071/Purple/v4/7b/4e/46/7b4e464c-c94a-b458-74be-93466ebfc695/mzl.sbrdsrvb.1024x1024-65.jpg\"], + \"artworkUrl512\":\"http://a4.mzstatic.com/us/r1000/084/Purple/v4/fe/5c/e1/fe5ce107-af07-b3b3-8213-f944a2849fe1/mzl.roefzjye.jpg\", + \"artistId\":427872164, \"artistName\":\"Secret Headquarters, Inc\", \"price\":0.00, + \"version\":\"1.3.7\", \n\"description\":\"► OVER 1,118,000 DOWNLOADS\\n► #8 + IN ALL U.S. APPS\\n\\n\\\"Move over Doodle Jump, there's a NEW jumper in town\\\" + - App Advice\\n\\n\\\"Strongly recommended, this one!\\\" - Destructoid\\n\\n* + JET PACKS, POWER UPS & ENDLESS FUN *\\n\\nYou're Jet Pack has run out of gas + and is now coasting on fumes. It's got enough gas to push you to the next level, + but that's about it!\\n\\nWatch out for over 10 different types of deadly platforms + with trap doors, spikes, bombs and more.\\n\\nLuckily for you there are some + awesome power-ups to help you along the way...\\n\\n* WARNING: HIGHLY ADDICTIVE + *\\n\\nJump Pack is a highly addictive game like no other. Jump, hop and fly + your way to the top while beating enemies and collecting insane power-ups.\\n\\nYou'll + find power-ups that speed up time, give a \\\"spring loaded\\\" jump and fill + up your jet pack with rocket fuel for a MEGA BLAST.\\n\\nThere's enemies trying + to stop your every move, so make sure you land on top of them instead of jumping + into them!\\n\\n* MAKE YOUR CHARACTER HOW YOU WANT *\\n\\nWhile playing Jump + Pack, you'll be collecting gems. You can upgrade your characters clothes, armor + and weapons with these gems at any time. Pick from over 16,000,000 colors\\u2026 + create a lady in pink or a dark knight. It's all up to you.\\n\\n* FROM FOXES + TO SOLID GOLD ROBOTS! *\\n\\nUnlock super secret levels and characters (even + the Panthefox\\u2026 Yes, he's part panther, part fox) and also make sure you + try out the \\\"magnetic gun\\\" which makes all powerups and gems gravitate + towards you. You can even unlock the coveted SOLD GOLD ROBOT to play as.\\n\\n* + INSANE REPLAY VALUE *\\n\\nWith Jump Pack, you'll NEVER play the same game twice. + \ This game is built on our \\\"custom random generator 3000\\\" system that + builds a different gameplay experience every single time.\\n\\nYou'll NEVER + get bored.\\n\\n* GAMECENTER AND ALL THAT COOL STUFF *\\n\\nWe've included support + for Gamecenter, Facebook, Twitter, Email etc\\u2026 This way you can easily + show your friends who the Jump Pack master TRULY is.\\n\\nIf you have an iPhone + 4 (or plan on getting one some day) you'll see beautiful Retina graphics. The + artwork in Jump Pack is stunningly set in a Steam Punk environment like you've + never seen before. \\n\\nWith over 1,000,000 downloads and and an awesome community, + make sure you download Jump Pack now while it's 100% FREE.\", \"genreIds\":[\"6014\", + \"6016\", \"7014\", \"7002\"], \"releaseDate\":\"2011-05-06T02:20:36Z\", \"sellerName\":\"Secret + Headquarters, Inc\", \"currency\":\"USD\", \"genres\":[\"Games\", \"Entertainment\", + \"Role Playing\", \"Adventure\"], \"bundleId\":\"com.secrethq.rocketjump\", + \"trackId\":432015827, \"trackName\":\"Jump Pack\", \"primaryGenreName\":\"Games\", + \"primaryGenreId\":6014, \"releaseNotes\":\"fixed: ipad 3rd gen support\", \"wrapperType\":\"software\", + \"contentAdvisoryRating\":\"4+\", \"artworkUrl100\":\"http://a4.mzstatic.com/us/r1000/084/Purple/v4/fe/5c/e1/fe5ce107-af07-b3b3-8213-f944a2849fe1/mzl.roefzjye.jpg\", + \"trackCensoredName\":\"Jump Pack\", \"trackViewUrl\":\"http://itunes.apple.com/us/app/jump-pack/id432015827?mt=8&uo=4\", + \"languageCodesISO2A\":[\"DA\", \"DE\", \"EN\", \"ES\", \"JA\", \"PT\", \"RU\", + \"SV\"], \"fileSizeBytes\":\"15614795\", \"sellerUrl\":\"http://www.jump-pack.com\", + \"averageUserRatingForCurrentVersion\":3.5, \"userRatingCountForCurrentVersion\":3, + \"trackContentRating\":\"4+\", \"averageUserRating\":4.0, \"userRatingCount\":652}, + \n{\"kind\":\"software\", \"features\":[\"gameCenter\", \"iosUniversal\"], \"supportedDevices\":[\"all\"], + \"isGameCenterEnabled\":true, \"artistViewUrl\":\"http://itunes.apple.com/us/artist/robert-szeleney/id302877209?mt=8&uo=4\", + \"artworkUrl60\":\"http://a3.mzstatic.com/us/r1000/081/Purple/v4/51/23/81/51238153-2635-3bad-3af7-d9aa1ab1286f/Icon.png\", + \n\"screenshotUrls\":[\"http://a5.mzstatic.com/us/r1000/102/Purple/v4/34/62/18/34621866-a20e-ed9d-0240-6d96d561b29e/mzl.mekhlctd.png\", + \"http://a1.mzstatic.com/us/r1000/072/Purple/v4/fc/ab/df/fcabdf0f-c50c-0c0e-384a-08e059a7f71a/mzl.psbmyqfk.png\", + \"http://a2.mzstatic.com/us/r1000/081/Purple/v4/e3/fd/9e/e3fd9eb2-bb8f-987d-825f-c98fa84e2a32/mzl.sntckaog.png\", + \"http://a1.mzstatic.com/us/r1000/111/Purple/v4/21/5c/bf/215cbf2e-dcf6-b26e-d063-700638f6d048/mzl.mjzsoeif.png\", + \"http://a2.mzstatic.com/us/r1000/074/Purple/v4/a4/ac/44/a4ac4445-5807-04a6-cb6a-8d51c06e226d/mzl.spontdvi.png\"], + \n\"ipadScreenshotUrls\":[\"http://a3.mzstatic.com/us/r1000/062/Purple/v4/0f/2e/e0/0f2ee08a-f048-0f0f-8355-d1505cac44e0/mzl.vixceufl.1024x1024-65.jpg\", + \"http://a5.mzstatic.com/us/r1000/075/Purple/v4/27/22/c3/2722c3a6-628c-aade-d346-a5f70de5e1d4/mzl.aqkvpxho.1024x1024-65.jpg\", + \"http://a5.mzstatic.com/us/r1000/062/Purple/v4/f3/8f/97/f38f97b6-8c4e-2cf7-7082-abf19fc52c75/mzl.cvsnrvan.1024x1024-65.jpg\", + \"http://a5.mzstatic.com/us/r1000/069/Purple/v4/81/f2/62/81f26215-3fac-ca8f-8839-ec6faf01902d/mzl.vrioackv.1024x1024-65.jpg\", + \"http://a1.mzstatic.com/us/r1000/068/Purple/v4/19/fa/3b/19fa3b3d-04ff-2413-e29d-d4380e2c9022/mzl.nbrjoope.1024x1024-65.jpg\"], + \"artworkUrl512\":\"http://a1.mzstatic.com/us/r1000/064/Purple/v4/80/56/f3/8056f30b-ec67-7548-b85d-b33b6accf6c4/mzl.eokobrsc.png\", + \"artistId\":302877209, \"artistName\":\"Robert Szeleney\", \"price\":0.99, + \"version\":\"1.8\", \n\"description\":\"★★★★ 50% OFF SALE, get it now until + the price is back to normal! ★★★★ Rope'n'Fly - From Dusk Till Dawn is the sequel + to the app store best selling game, Rope'n'Fly.\\u2028\\u2028\\n\\n★ #1 top + free app in US, France, Germany, UK, Australia, and more\\n★ #10 top free app + in more than 50 countries\\n★ New and Noteworthy by Apple in multiple countries\\n★ + The sequel to the #1 most downloaded swinging game, now in HD and universal!\\n\\u2028★ + From the makers of Stick Stunt Biker, Line Birds, Line Surfer, Line Runner, + RunStickRun and more\\n\\u2028★ More than 5 million addicted Rope'n'Fly players + can't be wrong! \\u2028\\n\\nUse your ropes to swing a destructible ragdoll + from one skyscraper to the others. You have full control over your ropes, touch + on a building to throw your rope there, touch again to release it and fly through + the sky. Perform various kind of jumps to get achievements, attach to flying + planes or ballons and try to beat your friends or all other players by competing + with them for the best score.\\u2028\\u2028\\n\\nFEATURES:\\u2028\\n\\u2022 + Tight and fast paced gameplay\\n\\u2022 Amazing looking graphics\\n\\u2022 Realistic + physic engine for the player, ropes and objects\\n\\u2022 Play in different + daytime, from Dusk through Night till Dawn\\n\\u2022 Customize your player, + choose from characters and ropes\\u2028\\n\\u2022 Destructible ragdoll effects\\n\\u2022 + Various objects to rope to like balloons or planes\\u2028\\n\\u2022 Endless + playing in never ending cities\\u2028\\n\\u2022 Various game modes including + free mode\\n\\u2022 A lot of achievements to unlock\\n\\u2022 Online and Offline + leaderboard\\n\\u2028\\u2022 Directly compare yourself against all other players + or your friends\\n\\u2022 Supports Openfeint and GameCenter\\n\\u2022 Universal + app, play in HD on any iOS device, including iPads\\n\\nVideo Trailer:\\nhttp://www.youtube.com/watch?v=nN53F1xzA3Q\\n\\n\\n\\u2028Feel + free to post your ideas, we will try to implement them as soon as possible\\u2028\\n\\nThank + you very much for all your support and interest in our games! We would love + to hear your suggestions!\", \"genreIds\":[\"6014\", \"7001\", \"7003\"], \"releaseDate\":\"2011-10-17T02:18:51Z\", + \"sellerName\":\"Robert Szeleney\", \"currency\":\"USD\", \"genres\":[\"Games\", + \"Action\", \"Arcade\"], \"bundleId\":\"com.rsz.RNF3\", \"trackId\":467042425, + \"trackName\":\"Rope'n'Fly 3 - From Dusk Till Dawn\", \"primaryGenreName\":\"Games\", + \"primaryGenreId\":6014, \"releaseNotes\":\"Now compatible with new iPad\", + \"wrapperType\":\"software\", \"contentAdvisoryRating\":\"4+\", \"artworkUrl100\":\"http://a1.mzstatic.com/us/r1000/064/Purple/v4/80/56/f3/8056f30b-ec67-7548-b85d-b33b6accf6c4/mzl.eokobrsc.png\", + \"trackCensoredName\":\"Rope'n'Fly 3 - From Dusk Till Dawn\", \"trackViewUrl\":\"http://itunes.apple.com/us/app/ropenfly-3-from-dusk-till-dawn/id467042425?mt=8&uo=4\", + \"languageCodesISO2A\":[\"EN\"], \"fileSizeBytes\":\"17480536\", \"sellerUrl\":\"http://www.djinnworks.at\", + \"averageUserRatingForCurrentVersion\":4.0, \"userRatingCountForCurrentVersion\":126, + \"trackContentRating\":\"4+\", \"averageUserRating\":4.5, \"userRatingCount\":6513}, + \n{\"kind\":\"software\", \"features\":[], \"supportedDevices\":[\"all\"], \"isGameCenterEnabled\":false, + \"artistViewUrl\":\"http://itunes.apple.com/us/artist/ner-brothers/id326478818?uo=4\", + \"artworkUrl60\":\"http://a1.mzstatic.com/us/r1000/102/Purple/98/40/57/mzi.dgzxjekf.png\", + \n\"screenshotUrls\":[\"http://a3.mzstatic.com/us/r1000/069/Purple/b3/a9/dc/mzl.bthposfl.png\", + \"http://a4.mzstatic.com/us/r1000/069/Purple/23/3f/72/mzl.jlzophcf.png\", \"http://a5.mzstatic.com/us/r1000/082/Purple/d5/0d/e5/mzl.ffoyemii.png\", + \"http://a4.mzstatic.com/us/r1000/105/Purple/53/5e/36/mzl.iwszmwiq.png\"], \"ipadScreenshotUrls\":[], + \"artworkUrl512\":\"http://a4.mzstatic.com/us/r1000/119/Purple/74/ee/21/mzl.nbrbiwil.png\", + \"artistId\":326478818, \"artistName\":\"NER Brothers\", \"price\":0.00, \"version\":\"2.0\", + \n\"description\":\"Itunes reviews (US) \\n******************* \\n\\u201cAn + ideal game for a 5 minute break\\u201d \\n\\u201cI can\\u2019t stop playing\\u201d + \\n\\nReviews (others) \\n******************* \\n\\\"very good game concept! + Control is the oddity but you get used to it.\\\" - (AUT app store)\\n\\\"i + like that game because it's so colorful\\\" - customer review (facebook)\\n\\n\\nWhat + is \\\"Jump Away\\\" at all? \\n***************************\\n\\\"Jump Away\\\" + is a simple but addictive Jump \\u201an\\u2019 Run game. The character \\\"Major\\\" + must jump away over several platforms, and so escape from the hot lava. Multiple + jumps in a row gives a Combo. These combos get more points than simple jumps. + The higher the combo, the more points you get. Attempt to reach the widest possible + range of points and let friends break your personal high score - whether they + will succeed? \\n\\nHow does \\\"Jump Away\\\" work? \\n***************************\\nThere + are three different jumps to bring the different number of points. The easiest + way is to run the normal \\\"Jump.\\\" With a little start-up succeeds and the + \\\"Middle Jump\\\" and with a lot of practice and the \\\"Super Jump\\\" works, + which brings the most points in the game. If the score is too low, then try + to execute your jumps as often as possible in succession to get a combo on. + The more jumps the better the combo!\\n\\n\\nFeatures: \\n**********\\n*) highscore + \\n*) multiple platforms \\n*) video - tutorial \\n*) endless mode\", \"genreIds\":[\"6014\", + \"7010\", \"7003\", \"6016\"], \"releaseDate\":\"2009-09-15T01:59:42Z\", \"sellerName\":\"Alexander + Nedoma\", \"currency\":\"USD\", \"genres\":[\"Games\", \"Kids\", \"Arcade\", + \"Entertainment\"], \"bundleId\":\"com.yourcompany.JumpAwayLite\", \"trackId\":326595704, + \"trackName\":\"Jump Away - An awesome addictive PapiJump remake!\", \"primaryGenreName\":\"Games\", + \"primaryGenreId\":6014, \"releaseNotes\":\"+ Bug Fix\\n+ Better Performance\", + \"wrapperType\":\"software\", \"contentAdvisoryRating\":\"4+\", \"artworkUrl100\":\"http://a4.mzstatic.com/us/r1000/119/Purple/74/ee/21/mzl.nbrbiwil.png\", + \"trackCensoredName\":\"Jump Away - An awesome addictive PapiJump remake!\", + \"trackViewUrl\":\"http://itunes.apple.com/us/app/jump-away-awesome-addictive/id326595704?mt=8&uo=4\", + \"languageCodesISO2A\":[\"EN\"], \"fileSizeBytes\":\"8987205\", \"sellerUrl\":\"http://www.ner-brothers.com/mobile/jumpawayhome.html\", + \"averageUserRatingForCurrentVersion\":3.0, \"userRatingCountForCurrentVersion\":214, + \"trackContentRating\":\"4+\", \"averageUserRating\":2.5, \"userRatingCount\":6351}, + \n{\"kind\":\"software\", \"features\":[], \"supportedDevices\":[\"all\"], \"isGameCenterEnabled\":false, + \"artistViewUrl\":\"http://itunes.apple.com/us/artist/chenpengkun/id314585015?uo=4\", + \"artworkUrl60\":\"http://a2.mzstatic.com/us/r1000/103/Purple/6c/1c/df/mzi.xmwpjkat.png\", + \n\"screenshotUrls\":[\"http://a3.mzstatic.com/us/r1000/117/Purple/54/95/53/mzl.asfucmvt.png\", + \"http://a1.mzstatic.com/us/r1000/063/Purple/24/e7/59/mzl.kpyptbhk.png\", \"http://a5.mzstatic.com/us/r1000/069/Purple/88/75/4c/mzl.dhqqjzbu.png\", + \"http://a1.mzstatic.com/us/r1000/098/Purple/83/67/12/mzl.zketdhfr.png\", \"http://a2.mzstatic.com/us/r1000/088/Purple/f6/28/a0/mzl.scawpgee.png\"], + \"ipadScreenshotUrls\":[], \"artworkUrl512\":\"http://a5.mzstatic.com/us/r1000/079/Purple/69/fa/ad/mzi.lvaqfmqr.png\", + \"artistId\":314585015, \"artistName\":\"chenpengkun\", \"price\":0.99, \"version\":\"1.1\", + \n\"description\":\"Drop the egg into the basket - if you can! Use springs, + boards, pulleys, and portals to get the egg into the basket in this fun physics + game.\\n\\nFEATURES\\n- Simple and fun gameplay\\n- Realistic physics \\n- 30 + challenging levels\\n- Level editor: ability to create and share levels with + friends\\n- OpenFeint supported\\n\\nWANT MORE DOODLE EGG?\\nCheck out Doodle + Egg: High Elasticity of a Springboard!\", \"genreIds\":[\"6014\", \"6016\", + \"7012\", \"7009\"], \"releaseDate\":\"2010-07-16T08:53:21Z\", \"sellerName\":\"chen + pengkun\", \"currency\":\"USD\", \"genres\":[\"Games\", \"Entertainment\", \"Puzzle\", + \"Family\"], \"bundleId\":\"com.c22277.DoodleEgg\", \"trackId\":381328821, \"trackName\":\"Doodle + Egg\", \"primaryGenreName\":\"Games\", \"primaryGenreId\":6014, \"releaseNotes\":\"add + Leaderboards\", \"wrapperType\":\"software\", \"contentAdvisoryRating\":\"4+\", + \"artworkUrl100\":\"http://a5.mzstatic.com/us/r1000/079/Purple/69/fa/ad/mzi.lvaqfmqr.png\", + \"trackCensoredName\":\"Doodle Egg\", \"trackViewUrl\":\"http://itunes.apple.com/us/app/doodle-egg/id381328821?mt=8&uo=4\", + \"languageCodesISO2A\":[\"EN\", \"ZH\"], \"fileSizeBytes\":\"6710871\", \"sellerUrl\":\"http://www.c22277.com\", + \"averageUserRatingForCurrentVersion\":4.0, \"userRatingCountForCurrentVersion\":56, + \"trackContentRating\":\"4+\", \"averageUserRating\":3.5, \"userRatingCount\":264}, + \n{\"kind\":\"software\", \"features\":[], \"supportedDevices\":[\"all\"], \"isGameCenterEnabled\":false, + \"artistViewUrl\":\"http://itunes.apple.com/us/artist/jump-birds-and-friends/id431556891?uo=4\", + \"artworkUrl60\":\"http://a3.mzstatic.com/us/r1000/118/Purple/55/d3/2b/mzi.iezvnyei.png\", + \"screenshotUrls\":[\"http://a1.mzstatic.com/us/r1000/114/Purple/18/44/2c/mzl.zumyirab.png\"], + \"ipadScreenshotUrls\":[], \"artworkUrl512\":\"http://a2.mzstatic.com/us/r1000/094/Purple/8a/e7/e1/mzl.mxshslpl.jpg\", + \"artistId\":431556891, \"artistName\":\"Jump Birds and Friends\", \"price\":0.99, + \"version\":\"3.1\", \n\"description\":\"Faces for iPhone! ON SALE! Just $.99!\\n\\n★★★★★★★★★★★★★★★★★★★★★★★\\nGet + a new face with Faces for iPhone! Fun for both kids and adults. Create a fun + new face today!\\n\\nYou can also use Faces to transform any boring photo into + laughs by adding hilarious new faces, eyes, masks, etc and then share them with + all your friends! Turn your co-workers into monsters or animals! Your kids + can now be superheroes and more!\\n \\nWith over 50 props and faces to choose + from, you can play with Faces for hours!\\n\\nUse your own pics or take new + ones! Super easy to use and FUN! Download today and play with Faces for iPhone! + \ Great fun for all!\", \"genreIds\":[\"6016\", \"7009\", \"7010\", \"6014\"], + \"releaseDate\":\"2011-10-15T07:00:00Z\", \"sellerName\":\"Mega Friends Jump + Rope over the Tiny Fruit Birds who are Talking Sex LLC\", \"currency\":\"USD\", + \"genres\":[\"Entertainment\", \"Family\", \"Kids\", \"Games\"], \"bundleId\":\"com.jumpbirds.faces\", + \"trackId\":468421981, \"trackName\":\"Faces!\", \"primaryGenreName\":\"Entertainment\", + \"primaryGenreId\":6016, \"releaseNotes\":\"- Better support for iOS 5\\n- Fixed + small error\", \"wrapperType\":\"software\", \"contentAdvisoryRating\":\"4+\", + \"artworkUrl100\":\"http://a2.mzstatic.com/us/r1000/094/Purple/8a/e7/e1/mzl.mxshslpl.jpg\", + \"trackCensoredName\":\"Faces!\", \"trackViewUrl\":\"http://itunes.apple.com/us/app/faces!/id468421981?mt=8&uo=4\", + \"languageCodesISO2A\":[\"EN\"], \"fileSizeBytes\":\"15008232\", \"sellerUrl\":\"http://\", + \"averageUserRatingForCurrentVersion\":3.0, \"userRatingCountForCurrentVersion\":9, + \"trackContentRating\":\"4+\", \"averageUserRating\":2.5, \"userRatingCount\":13}, + \n{\"kind\":\"software\", \"features\":[\"gameCenter\"], \"supportedDevices\":[\"all\"], + \"isGameCenterEnabled\":true, \"artistViewUrl\":\"http://itunes.apple.com/us/artist/itiw/id311964337?uo=4\", + \"artworkUrl60\":\"http://a5.mzstatic.com/us/r1000/088/Purple/44/17/98/mzi.tnrpupxp.png\", + \n\"screenshotUrls\":[\"http://a1.mzstatic.com/us/r1000/072/Purple/04/10/42/mzl.pzrsokvk.png\", + \"http://a2.mzstatic.com/us/r1000/076/Purple/ce/25/c0/mzl.phhpclxw.png\", \"http://a1.mzstatic.com/us/r1000/071/Purple/46/bb/28/mzl.tllfkuny.png\"], + \"ipadScreenshotUrls\":[], \"artworkUrl512\":\"http://a5.mzstatic.com/us/r1000/070/Purple/87/0f/88/mzl.otnqxzgo.png\", + \"artistId\":311964337, \"artistName\":\"ITIW\", \"price\":0.00, \"version\":\"1.2\", + \n\"description\":\"Glow Doodle Smash is a thrilling, addicting and yet a simple + game. You will have to dodge spining green and brown coconuts. Tilt the device + and try to get the highest score on the chart. So have fun with the jiggly green + glow star who will be running for his life and dodge those big and small coconuts. + Have fun!! \\nInstructions:\\n1. Tilt the screen\\n2. Dodge the coconuts\\n3. + Try to get a high score\\n4. Collect coins and bucks to buy new doodles\", \"genreIds\":[\"6014\", + \"7010\", \"6016\", \"7013\"], \"releaseDate\":\"2010-06-03T12:37:39Z\", \"sellerName\":\"ITIW\", + \"currency\":\"USD\", \"genres\":[\"Games\", \"Kids\", \"Entertainment\", \"Racing\"], + \"bundleId\":\"com.itiw.glowdoodlesmash\", \"trackId\":367617376, \"trackName\":\"Glow + Doodle Smash\", \"primaryGenreName\":\"Games\", \"primaryGenreId\":6014, \"releaseNotes\":\"- + HD images for retina display\", \"wrapperType\":\"software\", \"contentAdvisoryRating\":\"4+\", + \"artworkUrl100\":\"http://a5.mzstatic.com/us/r1000/070/Purple/87/0f/88/mzl.otnqxzgo.png\", + \"trackCensoredName\":\"Glow Doodle Smash\", \"trackViewUrl\":\"http://itunes.apple.com/us/app/glow-doodle-smash/id367617376?mt=8&uo=4\", + \"languageCodesISO2A\":[\"EN\"], \"fileSizeBytes\":\"19895212\", \"sellerUrl\":\"http://www.itiw-webdev.com/iphone\", + \"averageUserRatingForCurrentVersion\":4.0, \"userRatingCountForCurrentVersion\":289, + \"trackContentRating\":\"4+\", \"averageUserRating\":3.0, \"userRatingCount\":1736}, + \n{\"kind\":\"software\", \"features\":[], \"supportedDevices\":[\"all\"], \"isGameCenterEnabled\":false, + \"artistViewUrl\":\"http://itunes.apple.com/us/artist/infectious-apps-america-for/id454280872?uo=4\", + \"artworkUrl60\":\"http://a4.mzstatic.com/us/r1000/086/Purple/ba/4c/d0/mzi.khpjlaic.png\", + \n\"screenshotUrls\":[\"http://a5.mzstatic.com/us/r1000/102/Purple/32/86/70/mzl.zlwbpgil.png\", + \"http://a2.mzstatic.com/us/r1000/075/Purple/03/a6/cf/mzl.qeycxekv.png\", \"http://a5.mzstatic.com/us/r1000/077/Purple/f4/4d/7e/mzl.rcjtbfpe.png\", + \"http://a2.mzstatic.com/us/r1000/084/Purple/a2/75/da/mzl.idijrddz.png\"], \"ipadScreenshotUrls\":[], + \"artworkUrl512\":\"http://a1.mzstatic.com/us/r1000/096/Purple/19/89/80/mzm.pndotsoj.jpg\", + \"artistId\":454280872, \"artistName\":\"Infectious Apps America for Tiny Doodle + Cars with Hanging Ninja Friends\", \"price\":0.99, \"version\":\"1.0\", \n\"description\":\"Pocket + Frog 2 is here! Hop onto each lily pad without falling off. Can you do it? + \ Try it now for only $.99! \\n\\n-Ultimate-level gameplay with new levels + added regularly\\n-Fun and addicting for all ages!\\n-Cute friendly characters + and retina display graphics!\\n-Enjoy rewards for each level!\\n\\nHow to play:\\nJump + from lily pad to lily pad to get to the shore and rescue the frog king! Beware + of the wild out-of-control turtle floating through fast!\\n\\nDownload Pocket + Frog 2 Today!\", \"genreIds\":[\"6014\", \"6016\", \"7009\", \"7010\"], \"releaseDate\":\"2011-12-22T02:51:14Z\", + \"sellerName\":\"Tamara Wirz\", \"currency\":\"USD\", \"genres\":[\"Games\", + \"Entertainment\", \"Family\", \"Kids\"], \"bundleId\":\"com.infectiousapps.pocketfrog2\", + \"trackId\":490700760, \"trackName\":\"Pocket Frog 2\", \"primaryGenreName\":\"Games\", + \"primaryGenreId\":6014, \"releaseNotes\":\"\", \"wrapperType\":\"software\", + \"contentAdvisoryRating\":\"4+\", \"artworkUrl100\":\"http://a1.mzstatic.com/us/r1000/096/Purple/19/89/80/mzm.pndotsoj.jpg\", + \"trackCensoredName\":\"Pocket Frog 2\", \"trackViewUrl\":\"http://itunes.apple.com/us/app/pocket-frog-2/id490700760?mt=8&uo=4\", + \"languageCodesISO2A\":[\"EN\"], \"fileSizeBytes\":\"5518291\", \"averageUserRatingForCurrentVersion\":2.0, + \"userRatingCountForCurrentVersion\":6, \"trackContentRating\":\"4+\", \"averageUserRating\":2.0, + \"userRatingCount\":6}, \n{\"kind\":\"software\", \"features\":[], \"supportedDevices\":[\"all\"], + \"isGameCenterEnabled\":false, \"artistViewUrl\":\"http://itunes.apple.com/us/artist/doodle-maker-games-more-tiny/id499767183?uo=4\", + \"artworkUrl60\":\"http://a1.mzstatic.com/us/r1000/116/Purple/f2/a2/f7/mzi.igelucde.png\", + \n\"screenshotUrls\":[\"http://a1.mzstatic.com/us/r1000/117/Purple/5a/db/17/mzl.swapykit.png\", + \"http://a1.mzstatic.com/us/r1000/114/Purple/56/ff/8d/mzl.xsapwpxl.png\", \"http://a3.mzstatic.com/us/r1000/100/Purple/b1/19/14/mzl.mtdrcwso.png\"], + \"ipadScreenshotUrls\":[], \"artworkUrl512\":\"http://a2.mzstatic.com/us/r1000/114/Purple/a3/5b/53/mzl.xeywmcmj.png\", + \"artistId\":499767183, \"artistName\":\"Doodle Maker Games & More Tiny Food + Builder Wars\", \"price\":0.99, \"version\":\"2.0\", \n\"description\":\"Kool-Aid + Maker!\\nNow for iPhone and iPod Touch!\\n------------------------------------\\nKool-Aid + is the All-Time favorite drink of Kids! Everyone like Kool-Aid! You can make + all kinds of fun Kool-Aid drinks and awesome Kool-Aid treats with the the Kool-Aid + Maker App! \\n========================== \\nWhat kind of Kool-Aid do you want + to make? Choose your favorite Kool-Aid Design and make fun creations. Make your + own flavors. You can then add the fun designs to your Kool-Aid! YUMMY! You can + even pretend to drink your Kool-Aid and make Kool-Aid mustaches on your face. + Easy play with and fun for kids and adults.\\n\\nKOOL-AID MAKER INCLUDES: \\n========================== + \\n-Custom Kool-Aids and Designs\\n-Cool Colors, Designs, and Fun Accessories + \\n-Easy to Use Selections and Instructions\\n-Image Move - Crop - Re-Size Function + \\n-Select and Save To Camera Roll \\n-Image Email to Friends and Family Function + \\n========================== \\nGREAT FAMILY FUN! GREAT FOR ALL AGES!!\\n========================== + \\nLoads of Fun and Entertainment! Get It Now!\\n.\", \"genreIds\":[\"6014\", + \"7009\", \"6016\", \"7010\"], \"releaseDate\":\"2012-02-11T08:00:00Z\", \"sellerName\":\"Matthew + Weatherly\", \"currency\":\"USD\", \"genres\":[\"Games\", \"Family\", \"Entertainment\", + \"Kids\"], \"bundleId\":\"KoolAidMaker\", \"trackId\":499767180, \"trackName\":\"Kool-Aid + Maker\", \"primaryGenreName\":\"Games\", \"primaryGenreId\":6014, \"releaseNotes\":\"Adjusted + Image Clarity\", \"wrapperType\":\"software\", \"contentAdvisoryRating\":\"4+\", + \"artworkUrl100\":\"http://a2.mzstatic.com/us/r1000/114/Purple/a3/5b/53/mzl.xeywmcmj.png\", + \"trackCensoredName\":\"Kool-Aid Maker\", \"trackViewUrl\":\"http://itunes.apple.com/us/app/kool-aid-maker/id499767180?mt=8&uo=4\", + \"languageCodesISO2A\":[\"EN\"], \"fileSizeBytes\":\"1817902\", \"averageUserRatingForCurrentVersion\":2.5, + \"userRatingCountForCurrentVersion\":19, \"trackContentRating\":\"4+\", \"averageUserRating\":2.5, + \"userRatingCount\":28}, \n{\"kind\":\"software\", \"features\":[], \"supportedDevices\":[\"iPhone4\", + \"iPodTouchThirdGen\", \"iPhone-3GS\", \"iPodTouchourthGen\", \"iPad23G\", \"iPad2Wifi\", + \"iPad3G\", \"iPadWifi\"], \"isGameCenterEnabled\":false, \"artistViewUrl\":\"http://itunes.apple.com/us/artist/rinovi-apps/id409057868?uo=4\", + \"artworkUrl60\":\"http://a2.mzstatic.com/us/r1000/012/Purple/eb/71/17/mzi.ermophup.png\", + \n\"screenshotUrls\":[\"http://a1.mzstatic.com/us/r1000/029/Purple/2f/65/ff/mzl.uqsbgizo.png\", + \"http://a1.mzstatic.com/us/r1000/021/Purple/50/d7/2e/mzl.iwcdxxrz.png\", \"http://a5.mzstatic.com/us/r1000/021/Purple/5c/66/cb/mzl.bgnezbmy.png\", + \"http://a3.mzstatic.com/us/r1000/022/Purple/e3/fc/8a/mzl.cwqqibnb.png\", \"http://a2.mzstatic.com/us/r1000/041/Purple/bf/ee/6a/mzl.ytuuxtzq.png\"], + \"ipadScreenshotUrls\":[], \"artworkUrl512\":\"http://a1.mzstatic.com/us/r1000/004/Purple/db/d5/da/mzi.ikppsrhk.png\", + \"artistId\":409057868, \"artistName\":\"Rinovi Apps\", \"price\":0.00, \"version\":\"1.2\", + \n\"description\":\"Doodle Board is a fantastic app for sketching and drawing. + You can choose from millions of pen and background colors, which makes this + a creative app to draw with. It has 15 preset coloring images. Set your own + photos as backgrounds and draw on your friends. Doodle away your stress, have + fun with colors, draw on your own photos...the opportunities are endless. Super + easy to use!\\n\\nPlease send feedback and suggestions:\\n\\nRinoviapps@gmail.com\", + \"genreIds\":[\"6016\", \"6002\"], \"releaseDate\":\"2010-12-19T01:54:10Z\", + \"sellerName\":\"olga servan-schreiber\", \"currency\":\"USD\", \"genres\":[\"Entertainment\", + \"Utilities\"], \"bundleId\":\"com.rinoviapps.chalkboard\", \"trackId\":409928450, + \"trackName\":\"Doodle Board\", \"primaryGenreName\":\"Entertainment\", \"primaryGenreId\":6016, + \"releaseNotes\":\"-All new Graffiti Mode!\", \"wrapperType\":\"software\", + \"contentAdvisoryRating\":\"4+\", \"artworkUrl100\":\"http://a1.mzstatic.com/us/r1000/004/Purple/db/d5/da/mzi.ikppsrhk.png\", + \"trackCensoredName\":\"Doodle Board\", \"trackViewUrl\":\"http://itunes.apple.com/us/app/doodle-board/id409928450?mt=8&uo=4\", + \"languageCodesISO2A\":[\"EN\"], \"fileSizeBytes\":\"2930611\", \"averageUserRatingForCurrentVersion\":3.0, + \"userRatingCountForCurrentVersion\":24, \"trackContentRating\":\"4+\", \"averageUserRating\":3.0, + \"userRatingCount\":33}, \n{\"kind\":\"software\", \"features\":[], \"supportedDevices\":[\"all\"], + \"isGameCenterEnabled\":false, \"artistViewUrl\":\"http://itunes.apple.com/us/artist/infectious-apps-america-for/id454280872?uo=4\", + \"artworkUrl60\":\"http://a4.mzstatic.com/us/r1000/101/Purple/v4/7a/a8/72/7aa8726b-0136-a93c-3859-34be80abb3c3/Icon.png\", + \n\"screenshotUrls\":[\"http://a2.mzstatic.com/us/r1000/097/Purple/v4/88/2e/bb/882ebbba-db06-1d5f-0092-330269655f0c/mza_8243357800586432330.png\", + \"http://a2.mzstatic.com/us/r1000/072/Purple/v4/0e/96/8c/0e968cd2-e8cf-725b-f365-3e3adc57bab3/mza_2887269901178562281.png\"], + \"ipadScreenshotUrls\":[], \"artworkUrl512\":\"http://a5.mzstatic.com/us/r1000/105/Purple/v4/b4/83/b4/b483b452-da0b-442d-3cd7-b877783b826b/mza_4214409179818644578.png\", + \"artistId\":454280872, \"artistName\":\"Infectious Apps America for Tiny Doodle + Cars with Hanging Ninja Friends\", \"price\":0.99, \"version\":\"1.0\", \n\"description\":\"DOODLE + TRUCKS - Get behind the wheel!\\n\\nYou're a busy truck driver and it's up to + you to protect your cargo. Can you protect it and make it to the next level?\\n\\nChallenge + your friends and see who can be the ultimate truck driver. \\n\\nFeatures:\\nSimple + doodle art style\\nFun for kids and adults\\nAll types of trucks\\nUnique levels\\nFun + sound effects and music\\n\\nDownload today!\", \"genreIds\":[\"6016\", \"7002\", + \"7001\", \"6014\"], \"releaseDate\":\"2012-03-23T11:44:45Z\", \"sellerName\":\"Tamara + Wirz\", \"currency\":\"USD\", \"genres\":[\"Entertainment\", \"Adventure\", + \"Action\", \"Games\"], \"bundleId\":\"com.infectiousapps.doodletrucks\", \"trackId\":510363760, + \"trackName\":\"Doodle Trucks\", \"primaryGenreName\":\"Entertainment\", \"primaryGenreId\":6016, + \"releaseNotes\":\"\", \"wrapperType\":\"software\", \"contentAdvisoryRating\":\"4+\", + \"artworkUrl100\":\"http://a5.mzstatic.com/us/r1000/105/Purple/v4/b4/83/b4/b483b452-da0b-442d-3cd7-b877783b826b/mza_4214409179818644578.png\", + \"trackCensoredName\":\"Doodle Trucks\", \"trackViewUrl\":\"http://itunes.apple.com/us/app/doodle-trucks/id510363760?mt=8&uo=4\", + \"languageCodesISO2A\":[\"EN\"], \"fileSizeBytes\":\"3241819\", \"averageUserRatingForCurrentVersion\":1.0, + \"userRatingCountForCurrentVersion\":1, \"trackContentRating\":\"4+\", \"averageUserRating\":1.0, + \"userRatingCount\":1}, \n{\"kind\":\"software\", \"features\":[], \"supportedDevices\":[\"all\"], + \"isGameCenterEnabled\":false, \"artistViewUrl\":\"http://itunes.apple.com/us/artist/tyler-weitzman/id335541424?uo=4\", + \"artworkUrl60\":\"http://a1.mzstatic.com/us/r1000/099/Purple/01/df/46/mzi.tqhtowjl.png\", + \n\"screenshotUrls\":[\"http://a2.mzstatic.com/us/r1000/102/Purple/46/27/65/mzl.dmmoywoe.png\", + \"http://a5.mzstatic.com/us/r1000/082/Purple/87/1d/62/mzl.mkekacbg.png\", \"http://a4.mzstatic.com/us/r1000/073/Purple/7d/56/2c/mzl.zpsgnjbr.png\", + \"http://a4.mzstatic.com/us/r1000/067/Purple/1b/3f/ba/mzl.uymwsulv.png\", \"http://a5.mzstatic.com/us/r1000/075/Purple/4f/11/56/mzl.otqgytgr.png\"], + \"ipadScreenshotUrls\":[], \"artworkUrl512\":\"http://a5.mzstatic.com/us/r1000/103/Purple/29/07/dc/mzl.qraxfhmi.png\", + \"artistId\":335541424, \"artistName\":\"Tyler Weitzman\", \"price\":0.99, \"version\":\"3.01\", + \n\"description\":\"**Now includes a color palette so you can choose every color + of the rainbow**\\nGlow Neon Doodle is a must for every human.\\nThose who love + art can use their talent to create amazing drawings. \\nThose who aren't that + good in art will still be able to create amazing drawings using the new Advanced + Mode! (Unique Feature).\\n\\n1. Choose a color by clicking on it or choosing + 'custom color' to use a color palette\\n\\n2. Choose if you want to use advanced + or basic mode\\n Basic = Normal Glow Doodle\\n Advanced = Extreme Glow + Art! Duplicate hundreds of neon/glow lines all over the screen with the swipe + of your finger!\\n\\n3. Save to your photo album and share with all your friends!\\n + \ Simply tap either the \\\"Save\\\" or \\\"Email\\\" buttons directly on + the doodle screen (New Features). Share your creations with all your friends.\\n\\n4. + Shake to erase, and start all over!\\n\\nHundreds of hours of glow neon fun!\\n\\nNew + in version 2.0:\\u2028\\n\\u2022 Send a doodle email message to your friends + instantly with one-click!\\n\\u2028\\u2022 Save your creation to your photo + gallery instantly with one-click (a new save button on the main doodle screen).\\u2028\\n\\u2022 + Send a doodle text message if your device supports MMS\", \"genreIds\":[\"6016\", + \"6012\"], \"releaseDate\":\"2010-03-03T12:40:57Z\", \"sellerName\":\"Hadar + Weitzman Group Inc.\", \"currency\":\"USD\", \"genres\":[\"Entertainment\", + \"Lifestyle\"], \"bundleId\":\"com.tylerweitzman.GlowNeonDoodle\", \"trackId\":359018165, + \"trackName\":\"Glow Neon Doodle\", \"primaryGenreName\":\"Entertainment\", + \"primaryGenreId\":6016, \"releaseNotes\":\"Color palette (choose from hundreds + of colors) saves colors when switching between ray spray mode and normal mode\\n\\nAdded + Korean localization\", \"wrapperType\":\"software\", \"contentAdvisoryRating\":\"4+\", + \"artworkUrl100\":\"http://a5.mzstatic.com/us/r1000/103/Purple/29/07/dc/mzl.qraxfhmi.png\", + \"trackCensoredName\":\"Glow Neon Doodle\", \"trackViewUrl\":\"http://itunes.apple.com/us/app/glow-neon-doodle/id359018165?mt=8&uo=4\", + \"languageCodesISO2A\":[\"EN\"], \"fileSizeBytes\":\"180390\", \"sellerUrl\":\"http://tylerweitzman.tk\", + \"averageUserRatingForCurrentVersion\":3.0, \"userRatingCountForCurrentVersion\":2, + \"trackContentRating\":\"4+\", \"averageUserRating\":3.5, \"userRatingCount\":156}, + \n{\"kind\":\"software\", \"features\":[], \"supportedDevices\":[\"all\"], \"isGameCenterEnabled\":false, + \"artistViewUrl\":\"http://itunes.apple.com/us/artist/kids-addicting-games/id364577326?uo=4\", + \"artworkUrl60\":\"http://a1.mzstatic.com/us/r1000/083/Purple/cc/8f/2a/mzi.gesynrnd.png\", + \n\"screenshotUrls\":[\"http://a1.mzstatic.com/us/r1000/098/Purple/b1/1a/0b/mzl.ctirtynn.png\", + \"http://a4.mzstatic.com/us/r1000/064/Purple/d7/a6/30/mzl.feqpnpcg.png\", \"http://a5.mzstatic.com/us/r1000/085/Purple/c9/37/e8/mzl.agvbexow.png\", + \"http://a2.mzstatic.com/us/r1000/080/Purple/b2/f1/60/mzl.ypgvaxba.png\", \"http://a4.mzstatic.com/us/r1000/069/Purple/b1/40/1f/mzl.ciglbqnb.png\"], + \"ipadScreenshotUrls\":[], \"artworkUrl512\":\"http://a2.mzstatic.com/us/r1000/074/Purple/27/73/83/mzi.jfuxvppl.png\", + \"artistId\":364577326, \"artistName\":\"Kids Addicting Games\", \"price\":0.00, + \"version\":\"1.4\", \n\"description\":\"Download \\\"Mega Launcher\\\" launched + today for FREE.\\nFREE FOR LIMITED TIME ONLY\\n\\nFeatured under \\\"What's + Hot\\\" and \\\"New and Noteworthy\\\" - in Games, June 2010.\\nCustomer Reviews + on First Day: \\\"must play this who like doodle jump\\\" - US Store.\\n\\\"Addictive + Awesome\\u2026 Good idea and making. I Highly recommend this game\\\" - US Store.\\n\\\"Can't + stop playing and its very challenging. Good initiative to do something different\\\" + - US Store.\\n\\\"Every now and then you buy an app that isn't greatly advertised + and it turns out to be really good. This is one of those apps! Trust me, you + will not be dissapointed. Great job!!\\\" - US Store.\\n***************************************\\n\\nInstead + of price increase basic theme made free with option of other awesome unlockable + themes.\\n\\n***************************************\\nIf you are bored with + playing hundreds of similar platform based jumping games this one is completely + different taste and challenge for you. Jump higher as you can but finding gaps, + take fruits/coins, avoid bombs and power jump by rocket. Completely new idea + of jumping game.\\n\\nSimple and easy rule to find gaps between platforms and + jump through that. Tilt your iPhone to run left or right and when you are under + gap just tap to jump. Screen is moving up also and if you reach bottom of screen + than you fall down and game is over.\\n\\n>> Enjoy jumping and explore sky, + planets and dark environment.\\n>> Openfeint score board and achievements.\\n>> + Take fruits and coins to run and jump faster.\\n>> Avoid bombs which will decrease + your running and jumping speed.\\n>> 5 bomb blast will over your game. \\n>> + Jump and touch rocket for power jump.\\n>> Explore as higher as you can and + enjoy exploring dark night sky and planets.\\n\\nDownload it now and enjoy best + jumping game. Take it now since introductory free offer running for limited + time.\", \"genreIds\":[\"6014\", \"7010\", \"6016\", \"7015\"], \"releaseDate\":\"2010-06-04T05:16:54Z\", + \"sellerName\":\"ertan akgul\", \"currency\":\"USD\", \"genres\":[\"Games\", + \"Kids\", \"Entertainment\", \"Simulation\"], \"bundleId\":\"com.studioessentials.JumpAbove\", + \"trackId\":374332697, \"trackName\":\"Jump Above\", \"primaryGenreName\":\"Games\", + \"primaryGenreId\":6014, \"releaseNotes\":\">> New themes - Robot and Dog (Unlockable) + added.\", \"wrapperType\":\"software\", \"contentAdvisoryRating\":\"4+\", \"artworkUrl100\":\"http://a2.mzstatic.com/us/r1000/074/Purple/27/73/83/mzi.jfuxvppl.png\", + \"trackCensoredName\":\"Jump Above\", \"trackViewUrl\":\"http://itunes.apple.com/us/app/jump-above/id374332697?mt=8&uo=4\", + \"languageCodesISO2A\":[\"EN\"], \"fileSizeBytes\":\"13027211\", \"sellerUrl\":\"http://iphoneappdevelopmentco.wordpress.com/\", + \"averageUserRatingForCurrentVersion\":3.0, \"userRatingCountForCurrentVersion\":463, + \"trackContentRating\":\"4+\", \"averageUserRating\":2.5, \"userRatingCount\":3123}, + \n{\"kind\":\"software\", \"features\":[\"gameCenter\", \"iosUniversal\"], \"supportedDevices\":[\"all\"], + \"isGameCenterEnabled\":true, \"artistViewUrl\":\"http://itunes.apple.com/us/artist/robots-vs.-wizards-llc/id350741588?uo=4\", + \"artworkUrl60\":\"http://a4.mzstatic.com/us/r1000/110/Purple/6e/32/d7/mzi.jtfiihut.png\", + \n\"screenshotUrls\":[\"http://a2.mzstatic.com/us/r1000/079/Purple/60/13/eb/mzl.yhwqokok.png\", + \"http://a3.mzstatic.com/us/r1000/120/Purple/76/33/9c/mzl.mdxvbebr.png\", \"http://a5.mzstatic.com/us/r1000/112/Purple/35/f8/84/mzl.hlyyqwwv.png\", + \"http://a1.mzstatic.com/us/r1000/091/Purple/1d/07/ec/mzl.oljpxsoi.png\", \"http://a2.mzstatic.com/us/r1000/093/Purple/47/d7/22/mzl.edifeqwa.png\"], + \n\"ipadScreenshotUrls\":[\"http://a5.mzstatic.com/us/r1000/093/Purple/8c/9e/af/mzl.upszdjxi.1024x1024-65.jpg\", + \"http://a2.mzstatic.com/us/r1000/097/Purple/dd/70/b0/mzl.enzyoxfv.1024x1024-65.jpg\", + \"http://a3.mzstatic.com/us/r1000/087/Purple/b9/25/b9/mzl.dxuubbep.1024x1024-65.jpg\", + \"http://a5.mzstatic.com/us/r1000/063/Purple/0e/ff/c0/mzl.kjstsszd.1024x1024-65.jpg\"], + \"artworkUrl512\":\"http://a5.mzstatic.com/us/r1000/087/Purple/4a/54/fe/mzl.nvatktsx.png\", + \"artistId\":350741588, \"artistName\":\"Robots Vs. Wizards, LLC\", \"price\":0.99, + \"version\":\"4.1\", \n\"description\":\"-★- Nearly a half MILLION downloads + -★-\\nDoodle monster combines the challenge of a running game with smaller + \ more traditional platformer elements rather than huge chunks of land.\\n-★-★--★FEATURES-★-★--★\\n\\u2022\\u2022Hi + Res Retina Support for iphone4\\n\\u2022\\u2022Now unlock new monsters as you + earn higher scores.\\n\\u2022\\u2022Unlock new themes to spice up gameplay. + \\n\\u2022\\u2022Game Center enabled. Have more fun with online leader boards + and achievements.\\n\\u2022\\u2022Facebook enabled for posting directly on your + wall from in game.\", \"genreIds\":[\"6014\", \"7002\", \"6016\", \"7009\"], + \"releaseDate\":\"2010-02-09T12:15:54Z\", \"sellerName\":\"Robots Vs. Wizards, + LLC\", \"currency\":\"USD\", \"genres\":[\"Games\", \"Adventure\", \"Entertainment\", + \"Family\"], \"bundleId\":\"com.robotsvswizards.doodlemonster\", \"trackId\":352972243, + \"trackName\":\"Doodle Monster\", \"primaryGenreName\":\"Games\", \"primaryGenreId\":6014, + \"releaseNotes\":\"fixed bug with pink doodle monster not unlocking properly.\", + \"wrapperType\":\"software\", \"contentAdvisoryRating\":\"4+\", \"artworkUrl100\":\"http://a5.mzstatic.com/us/r1000/087/Purple/4a/54/fe/mzl.nvatktsx.png\", + \"trackCensoredName\":\"Doodle Monster\", \"trackViewUrl\":\"http://itunes.apple.com/us/app/doodle-monster/id352972243?mt=8&uo=4\", + \"languageCodesISO2A\":[\"EN\"], \"fileSizeBytes\":\"34297816\", \"sellerUrl\":\"http://robotsvswizards.com\", + \"averageUserRatingForCurrentVersion\":3.5, \"userRatingCountForCurrentVersion\":110, + \"trackContentRating\":\"4+\", \"averageUserRating\":2.5, \"userRatingCount\":6242}, + \n{\"kind\":\"software\", \"features\":[\"gameCenter\", \"iosUniversal\"], \"supportedDevices\":[\"all\"], + \"isGameCenterEnabled\":true, \"artistViewUrl\":\"http://itunes.apple.com/us/artist/sid-on/id350130929?uo=4\", + \"artworkUrl60\":\"http://a3.mzstatic.com/us/r1000/074/Purple/00/cb/1d/mzi.afpdrjnc.png\", + \n\"screenshotUrls\":[\"http://a3.mzstatic.com/us/r1000/083/Purple/8d/21/de/mzl.vuqpytdi.png\", + \"http://a3.mzstatic.com/us/r1000/073/Purple/f0/3b/61/mzl.nfnldrbe.png\", \"http://a3.mzstatic.com/us/r1000/110/Purple/a0/39/53/mzl.eqzepkya.png\", + \"http://a3.mzstatic.com/us/r1000/072/Purple/48/2d/2d/mzl.ucyrrgmj.png\", \"http://a3.mzstatic.com/us/r1000/060/Purple/41/a9/ce/mzl.wxwjmesk.png\"], + \n\"ipadScreenshotUrls\":[\"http://a2.mzstatic.com/us/r1000/093/Purple/fa/b4/9c/mzl.hqvzglra.1024x1024-65.jpg\", + \"http://a4.mzstatic.com/us/r1000/091/Purple/58/58/52/mzl.cuvqfpqy.1024x1024-65.jpg\", + \"http://a3.mzstatic.com/us/r1000/116/Purple/62/68/24/mzl.gukkthjf.1024x1024-65.jpg\", + \"http://a2.mzstatic.com/us/r1000/115/Purple/08/89/48/mzl.vivhdkln.1024x1024-65.jpg\", + \"http://a3.mzstatic.com/us/r1000/113/Purple/d4/51/74/mzl.dwevoigu.1024x1024-65.jpg\"], + \"artworkUrl512\":\"http://a5.mzstatic.com/us/r1000/113/Purple/fe/93/f7/mzl.kccpdxmd.png\", + \"artistId\":350130929, \"artistName\":\"SID On\", \"price\":0.00, \"version\":\"1.0\", + \n\"description\":\"Get into some vibrant \\u2018Jump up\\u2019 platforming + action by helping our green hero get his snacks back today! Download Fat Jump + and jump into some fast paced vertical arcade action, collecting coins & food, + and dodging greasy obstacles in a bid to see how high you can go! \\n\\nFat + Jump is a uniquely themed \\u201cplatform to platform\\u201d arcade adventure + in the vein of classics like Doodle Jump. Playing the game is an enormously + addicting yet surprising straight forward ordeal. Using tilt controls, players + are challenged with guiding their hungry hero onto one platform after another + as he continues on his endless journey upwards in pursuit of the Purple Monster + who stole his stash of healthy snacks. Simply put: It\\u2019s engaging mobile + entertainment that might just teach younger users that it pays to eat healthy + and stay active! \\n\\nThe gamer\\u2019s green hero jumps automatically, and + its up to you to make sure he lands safely on platforms, picks up all the stray + fruits, vegetables, and gold coins he comes across, and avoids fast food disasters + on the way up. After all, after one too many greasy burgers our little green + guy will get to fat to jump, and its game over for you! \\n\\nMore in depth + than meets the eye, Fat Jump boasts a literally endless supply of levels, and + allows players to trade in collected coins to get various upgrades that keep + the game fresh in addition to giving gamers the motivation to keep jumping time + and time again! \\n\\nOn the technical front the game features a simple well + designed user interface, cartoon graphics that are sure to light up even the + most jaded mobile gamer\\u2019s eyes, and responsive controls which allow you + to put your energy into the game itself rather than on mastering convoluted + gameplay mechanics. \\n\\nFat Jump is a deliciously simple good time that will + have players young and old alike cheering for fruits, veggies, and all things + healthy all while gaming to their hearts\\u2019 content! \\n\\nFeatures: \\n\\n● + Fantastic graphics \\n● Fun sounds \\n● Endless supply of levels to conquer + \\n● Numerous achievements to unlock \\n● Plenty of power-ups \\n● An in-game + store with upgrades and accessories \\n●Full integration with Game Center, OpenFeint, + Facebook and Twitter \\n● Online and Offline scoreboards \\n● Full iPad compatibility + \\n\\nTrailer: http://www.youtube.com/watch?v=NgMI1r2jJOk\", \"genreIds\":[\"6014\", + \"6017\", \"7008\", \"7003\"], \"releaseDate\":\"2012-01-17T08:20:45Z\", \"sellerName\":\"SID + Sp. z o.o.\", \"currency\":\"USD\", \"genres\":[\"Games\", \"Education\", \"Educational\", + \"Arcade\"], \"bundleId\":\"pl.sidgroup.fatjumplite\", \"trackId\":493938014, + \"trackName\":\"Fat Jump\", \"primaryGenreName\":\"Games\", \"primaryGenreId\":6014, + \"releaseNotes\":\"\", \"wrapperType\":\"software\", \"contentAdvisoryRating\":\"4+\", + \"artworkUrl100\":\"http://a5.mzstatic.com/us/r1000/113/Purple/fe/93/f7/mzl.kccpdxmd.png\", + \"trackCensoredName\":\"Fat Jump\", \"trackViewUrl\":\"http://itunes.apple.com/us/app/fat-jump/id493938014?mt=8&uo=4\", + \"languageCodesISO2A\":[\"EN\"], \"fileSizeBytes\":\"61168245\", \"sellerUrl\":\"http://www.sid-on.com/FatJump/\", + \"averageUserRatingForCurrentVersion\":4.5, \"userRatingCountForCurrentVersion\":186, + \"trackContentRating\":\"4+\", \"averageUserRating\":4.5, \"userRatingCount\":186}, + \n{\"kind\":\"software\", \"features\":[\"gameCenter\", \"iosUniversal\"], \"supportedDevices\":[\"all\"], + \"isGameCenterEnabled\":true, \"artistViewUrl\":\"http://itunes.apple.com/us/artist/itiw/id311964337?uo=4\", + \"artworkUrl60\":\"http://a3.mzstatic.com/us/r1000/024/Purple/ab/cd/91/mzi.lzjbegyv.png\", + \n\"screenshotUrls\":[\"http://a2.mzstatic.com/us/r1000/061/Purple/cb/f7/69/mzl.bqqrmxbv.png\", + \"http://a2.mzstatic.com/us/r1000/061/Purple/af/9a/01/mzl.wipjsieu.png\", \"http://a4.mzstatic.com/us/r1000/062/Purple/b3/56/7a/mzl.qyxhamfe.png\", + \"http://a3.mzstatic.com/us/r1000/085/Purple/8c/ab/0f/mzl.hrusidbs.png\"], \n\"ipadScreenshotUrls\":[\"http://a4.mzstatic.com/us/r1000/046/Purple/36/e7/79/mzl.rsjqklec.1024x1024-65.jpg\", + \"http://a2.mzstatic.com/us/r1000/108/Purple/ab/04/d2/mzl.qbsrheij.1024x1024-65.jpg\", + \"http://a5.mzstatic.com/us/r1000/061/Purple/63/a3/1b/mzl.edgocxvi.1024x1024-65.jpg\", + \"http://a5.mzstatic.com/us/r1000/083/Purple/8d/90/e8/mzl.acpiktrq.1024x1024-65.jpg\"], + \"artworkUrl512\":\"http://a5.mzstatic.com/us/r1000/007/Purple/12/32/25/mzl.jpkgklay.png\", + \"artistId\":311964337, \"artistName\":\"ITIW\", \"price\":0.00, \"version\":\"1.19\", + \n\"description\":\"Glow Jump:\\n-1 Million downloads in just 10 days!\\n-\\\"HOT + NEW GAMES\\\" - featured by Apple Inc. \\n\\nYour challenge is to help GLOW + DOODLE explore as high from the ground as possible. There will be many pesky + bugs to make the journey difficult. Also platforms dwindle with going higher, + so need more and more concentration to find out what is out there in the sky.\\n\\nFeatures:\\n- + Fixed, Moving and Rainbow platforms\\n- Restroom\\n- Cloud cover\\n- Pesky bugs + making the vertical way complex\\n- Touch anywhere to fire ROCKET PACK. Get + 5 ROCKET PACKs at start\\n- ROCKET PACK refills\\n\\nTips:\\n- You can carry + only 5 rocket packs at a time. Though can be used anytime, it is pretty useful + for getting out from a dangerous situation (eg. if you miss landing on a platform, + you can avoid falling down by quickly firing it up). Also, Look for rocket pack + refills after you use them. \\n-The pesky bugs, though dangerous, can be used + in your favor as they also allow you to jump on them. However, its a bit tricky.\", + \"genreIds\":[\"6014\", \"7014\", \"7009\", \"6016\"], \"releaseDate\":\"2009-09-08T11:05:56Z\", + \"sellerName\":\"ITIW\", \"currency\":\"USD\", \"genres\":[\"Games\", \"Role + Playing\", \"Family\", \"Entertainment\"], \"bundleId\":\"com.itiw.aGuttuJumpPRO\", + \"trackId\":329034918, \"trackName\":\"Glow Jump\", \"primaryGenreName\":\"Games\", + \"primaryGenreId\":6014, \"releaseNotes\":\"- Retina and HD images.\", \"wrapperType\":\"software\", + \"contentAdvisoryRating\":\"4+\", \"artworkUrl100\":\"http://a5.mzstatic.com/us/r1000/007/Purple/12/32/25/mzl.jpkgklay.png\", + \"trackCensoredName\":\"Glow Jump\", \"trackViewUrl\":\"http://itunes.apple.com/us/app/glow-jump/id329034918?mt=8&uo=4\", + \"languageCodesISO2A\":[\"EN\"], \"fileSizeBytes\":\"20024090\", \"sellerUrl\":\"http://www.itiw-webdev.com/iphone\", + \"averageUserRatingForCurrentVersion\":4.0, \"userRatingCountForCurrentVersion\":4543, + \"trackContentRating\":\"4+\", \"averageUserRating\":3.0, \"userRatingCount\":54981}, + \n{\"kind\":\"software\", \"features\":[], \"supportedDevices\":[\"all\"], \"isGameCenterEnabled\":false, + \"artistViewUrl\":\"http://itunes.apple.com/us/artist/valicol-doklyne/id334563051?uo=4\", + \"artworkUrl60\":\"http://a5.mzstatic.com/us/r1000/113/Purple/a9/d7/9f/mzi.cexljehs.png\", + \n\"screenshotUrls\":[\"http://a1.mzstatic.com/us/r1000/101/Purple/f6/77/6a/mzl.etenrycg.png\", + \"http://a3.mzstatic.com/us/r1000/091/Purple/ff/ae/21/mzl.xremhlfd.png\", \"http://a4.mzstatic.com/us/r1000/117/Purple/cb/57/00/mzl.xcrtfexm.png\"], + \"ipadScreenshotUrls\":[], \"artworkUrl512\":\"http://a2.mzstatic.com/us/r1000/080/Purple/d6/ce/5c/mzl.ygnumkbx.png\", + \"artistId\":334563051, \"artistName\":\"Valicol&Doklyne\", \"price\":0.00, + \"version\":\"3.1\", \"description\":\"11 Games in 1 App !\\n\\n11 very fun + games for 0 $ ! \\n\\nIt's the end of your boring life ! Have fun now and for + a long Time !\", \"genreIds\":[\"6014\", \"7001\", \"6006\", \"7003\"], \"releaseDate\":\"2010-08-29T07:50:50Z\", + \"sellerName\":\"valentin collin\", \"currency\":\"USD\", \"genres\":[\"Games\", + \"Action\", \"Reference\", \"Arcade\"], \"bundleId\":\"com.valicoldoklyne.GameDoo\", + \"trackId\":388837612, \"trackName\":\"Doodle Games !\", \"primaryGenreName\":\"Games\", + \"primaryGenreId\":6014, \"releaseNotes\":\"-> Fixed bugs\", \"wrapperType\":\"software\", + \"contentAdvisoryRating\":\"4+\", \"artworkUrl100\":\"http://a2.mzstatic.com/us/r1000/080/Purple/d6/ce/5c/mzl.ygnumkbx.png\", + \"trackCensoredName\":\"Doodle Games !\", \"trackViewUrl\":\"http://itunes.apple.com/us/app/doodle-games-!/id388837612?mt=8&uo=4\", + \"languageCodesISO2A\":[\"EN\"], \"fileSizeBytes\":\"9071785\", \"sellerUrl\":\"http://vdapps.com\", + \"averageUserRatingForCurrentVersion\":3.0, \"userRatingCountForCurrentVersion\":18, + \"trackContentRating\":\"4+\", \"averageUserRating\":2.5, \"userRatingCount\":296}, + \n{\"kind\":\"software\", \"features\":[], \"supportedDevices\":[\"all\"], \"isGameCenterEnabled\":false, + \"artistViewUrl\":\"http://itunes.apple.com/us/artist/kitri-software-llc/id385044417?uo=4\", + \"artworkUrl60\":\"http://a1.mzstatic.com/us/r1000/058/Purple/ee/87/d4/mzi.zyzniztp.png\", + \n\"screenshotUrls\":[\"http://a4.mzstatic.com/us/r1000/035/Purple/b9/67/58/mzl.snxehxdo.png\", + \"http://a2.mzstatic.com/us/r1000/049/Purple/a0/57/c1/mzl.lhrzvjxx.png\", \"http://a4.mzstatic.com/us/r1000/050/Purple/7b/a4/d8/mzl.ljebhzps.png\", + \"http://a2.mzstatic.com/us/r1000/015/Purple/d0/87/c6/mzl.wvquhbbb.png\"], \"ipadScreenshotUrls\":[], + \"artworkUrl512\":\"http://a5.mzstatic.com/us/r1000/059/Purple/9f/0f/a2/mzi.shmnbhwv.png\", + \"artistId\":385044417, \"artistName\":\"Kitri Software, LLC\", \"price\":0.00, + \"version\":\"2.0\", \n\"description\":\"Our Promise \\\"It will always be Free\\\". + Please join Our Facebook Page by Clicking On the Support Button! Thanks\\n\\nLook + for our first update which contains the first duck jump theme \\\"City Sky\\\" + later this week.\\n\\nDuck Jump is quickly becoming one of the most popular + Iphone Applications because of its cute graphics and unique gameplay. \\n\\nWe + will be constantly updating this application. Please join us on the official + duck jump facebook page to see updates about new themes and content.\", \"genreIds\":[\"6014\", + \"7008\", \"6017\", \"7010\"], \"releaseDate\":\"2011-01-07T08:02:13Z\", \"sellerName\":\"Kitri + Software, LLC\", \"currency\":\"USD\", \"genres\":[\"Games\", \"Educational\", + \"Education\", \"Kids\"], \"bundleId\":\"com.EpicApps.DuckJump\", \"trackId\":413305110, + \"trackName\":\"Baby Duck Jump for Little Kids\", \"primaryGenreName\":\"Games\", + \"primaryGenreId\":6014, \"releaseNotes\":\"Added Entirely New Graphics \\nParallax + Scrolling Background\\nFirst Theme of Many (City Theme)\\nNew Menu and High + Scores Design\", \"wrapperType\":\"software\", \"contentAdvisoryRating\":\"4+\", + \"artworkUrl100\":\"http://a5.mzstatic.com/us/r1000/059/Purple/9f/0f/a2/mzi.shmnbhwv.png\", + \"trackCensoredName\":\"Baby Duck Jump for Little Kids\", \"trackViewUrl\":\"http://itunes.apple.com/us/app/baby-duck-jump-for-little-kids/id413305110?mt=8&uo=4\", + \"languageCodesISO2A\":[\"EN\"], \"fileSizeBytes\":\"3807773\", \"averageUserRatingForCurrentVersion\":3.5, + \"userRatingCountForCurrentVersion\":47, \"trackContentRating\":\"4+\", \"averageUserRating\":3.5, + \"userRatingCount\":65}, \n{\"kind\":\"software\", \"features\":[], \"supportedDevices\":[\"all\"], + \"isGameCenterEnabled\":false, \"artistViewUrl\":\"http://itunes.apple.com/us/artist/doodle-maker-games-more-tiny/id499767183?uo=4\", + \"artworkUrl60\":\"http://a4.mzstatic.com/us/r1000/065/Purple/49/c1/bd/mzi.xjsydipr.png\", + \n\"screenshotUrls\":[\"http://a1.mzstatic.com/us/r1000/099/Purple/v4/d0/55/64/d055643a-53e7-290e-1b06-4fbd61efa4fa/M1b5GqNFX9TeDWtj5blw90-temp-upload.yxnwgmey.png\", + \"http://a2.mzstatic.com/us/r1000/084/Purple/v4/bd/f0/bf/bdf0bf83-2e7c-b4ab-521f-a8549a8a604d/M1b5GqNFX9TeDWtj5blw90-temp-upload.lbfaosbh.png\", + \"http://a3.mzstatic.com/us/r1000/107/Purple/v4/79/6a/89/796a89d3-0d74-3184-5ea1-4530e8119ee5/M1b5GqNFX9TeDWtj5blw90-temp-upload.uijieaxc.png\"], + \"ipadScreenshotUrls\":[], \"artworkUrl512\":\"http://a1.mzstatic.com/us/r1000/099/Purple/08/8f/1f/mzm.zeelhluo.png\", + \"artistId\":499767183, \"artistName\":\"Doodle Maker Games & More Tiny Food + Builder Wars\", \"price\":0.99, \"version\":\"1.0\", \n\"description\":\"Cereal + Maker\\nNow for iPhone and iPod Touch!\\n------------------------------------\\nCereal + is the All-Time favorite food of Kids! Everyone likes Cereal! You can make all + kinds of fun Cereal with all your favorite Cereal Characters too! \\n========================== + \\nWhat kind of Cereal do you want to make yourself? Choose your favorite Cereal + and Character and instantly become a Cereal Maker. Easy to play with and fun + for kids and adults. Even use the camera option to send pics to friends with + the instant mail function!\\n\\nCEREAL MAKER INCLUDES: \\n========================== + \\n-Custom Cereals and Designs\\n-Cool Colors, Designs, and Fun Accessories + \\n-Easy to Use Selections and Instructions\\n-Image Move - Crop - Re-Size Function + \\n-Select and Save To Camera Roll \\n-Image Email to Friends and Family Function + \\n========================== \\nGREAT FAMILY FUN! GREAT FOR ALL AGES!!\\n========================== + \\nLoads of Fun and Entertainment! Get It Now!\\n.\", \"genreIds\":[\"6014\", + \"6016\", \"7009\", \"7010\"], \"releaseDate\":\"2012-03-09T08:00:00Z\", \"sellerName\":\"Matthew + Weatherly\", \"currency\":\"USD\", \"genres\":[\"Games\", \"Entertainment\", + \"Family\", \"Kids\"], \"bundleId\":\"CerealMaker\", \"trackId\":505751535, + \"trackName\":\"Cereal Maker\", \"primaryGenreName\":\"Games\", \"primaryGenreId\":6014, + \"releaseNotes\":\"\", \"wrapperType\":\"software\", \"contentAdvisoryRating\":\"4+\", + \"artworkUrl100\":\"http://a1.mzstatic.com/us/r1000/099/Purple/08/8f/1f/mzm.zeelhluo.png\", + \"trackCensoredName\":\"Cereal Maker\", \"trackViewUrl\":\"http://itunes.apple.com/us/app/cereal-maker/id505751535?mt=8&uo=4\", + \"languageCodesISO2A\":[\"EN\"], \"fileSizeBytes\":\"1918035\", \"averageUserRatingForCurrentVersion\":3.0, + \"userRatingCountForCurrentVersion\":10, \"trackContentRating\":\"4+\", \"averageUserRating\":3.0, + \"userRatingCount\":10}, \n{\"kind\":\"software\", \"features\":[\"iosUniversal\"], + \"supportedDevices\":[\"all\"], \"isGameCenterEnabled\":false, \"artistViewUrl\":\"http://itunes.apple.com/us/artist/y-lau/id284938424?uo=4\", + \"artworkUrl60\":\"http://a2.mzstatic.com/us/r1000/080/Purple/ba/f3/c0/mzi.wmkdjuew.png\", + \n\"screenshotUrls\":[\"http://a5.mzstatic.com/us/r1000/074/Purple/d8/8f/61/mzl.nrfltbts.jpg\", + \"http://a5.mzstatic.com/us/r1000/084/Purple/ab/59/c3/mzl.udydemaz.jpg\", \"http://a3.mzstatic.com/us/r1000/102/Purple/31/05/17/mzl.rkrytbor.jpg\", + \"http://a4.mzstatic.com/us/r1000/079/Purple/d0/59/ff/mzl.buqoleyo.jpg\", \"http://a1.mzstatic.com/us/r1000/092/Purple/2f/cc/62/mzl.mlwjgkyc.jpg\"], + \n\"ipadScreenshotUrls\":[\"http://a3.mzstatic.com/us/r1000/085/Purple/cd/9b/d7/mzl.gbgfbgom.1024x1024-65.jpg\", + \"http://a1.mzstatic.com/us/r1000/088/Purple/ff/df/04/mzl.hvdcszwa.1024x1024-65.jpg\", + \"http://a5.mzstatic.com/us/r1000/077/Purple/4d/10/b8/mzl.mvipllgf.1024x1024-65.jpg\", + \"http://a4.mzstatic.com/us/r1000/117/Purple/41/8a/71/mzl.vqctdfbd.1024x1024-65.jpg\", + \"http://a4.mzstatic.com/us/r1000/104/Purple/f4/c4/ee/mzl.haafztle.1024x1024-65.jpg\"], + \"artworkUrl512\":\"http://a5.mzstatic.com/us/r1000/102/Purple/93/78/e8/mzl.bvgbxlkm.jpg\", + \"artistId\":284938424, \"artistName\":\"Y Lau\", \"price\":0.99, \"version\":\"2.2\", + \n\"description\":\"\\\"Skateboard Doodle 3D\\\" allows you to design the graphics + for the deck of your own 3D skateboard. You can also make the skateboard perform + stunts in response to finger touch tricks.\\n\\nYou can decorate both the top + and bottom of the 3D Skateboard deck using photos of, e.g, your beloved ones + or drawings of your own.\\n\\nAfter applying your design to the 3D skateboard, + you can touch to rotate and pose your 3D skateboard so that you can enjoy or + export your 3D masterpiece skateboard in virtually any perspective.\\n\\n\\\"Skateboard + Doodle 3D\\\" also has an \\\"Interactive Stunt Mode\\\". The 3D skateboard + perform stunts in response to your finger rubbing direction and speed. If you + press the \\\"Save\\\" button while the skateboard is stunting in the air, \\\"Skateboard + Doodle 3D\\\" will \\\"freeze\\\" the stunting skateboard in the air, capture + the moment to Photo Albums, and then resumes the stunting. It's a Fantastic + experience you shouldn't miss!\\n\\nAnd don't forget that with the photo insertion + feature, you can definitely decorate your 3D skateboard using drawings you created + from any other special doodle apps!\\n\\n\\n\\nDESIGN MODE:\\n- Insert photo + from Photos Album to compose skateboard art\\n- Rotate, resize and move the + inserted photo anywhere on the skateboard deck\\n- Sketch with different colors + and brush sizes\\n- Pick virtually unlimited number of color using the RGB sliders, + or use the 6 default color buttons for instant color access\\n- Eraser that + allows you to erase even part of the inserted photos\\n- Create, save and load + multiple sets of skateboard designs\\n\\n3D MODE:\\n- Insert backdrop photo + from your Photos Albums\\n- Touch to rotate and pose your 3D skateboard\\n- + Export the 3D scene to Photo Albums to share\\n\\n\\n3D INTERACTIVE STUNT MODE:\\n- + The 3D skateboard perform stunts in response to you rubbing direction and speed\\n- + Rub on the middle part of the deck to make the skateboard stunt in the air\\n- + Press either end of the skateboard may push the stunting skateboard immediately + to the ground and perform another stunt. \\n- True physics based performance\\n- + Capture the moment when the skateboard is stunting in the air: Press the \\\"Save\\\" + button while the skateboard is stunting\\n\\n\\nQUICK TIPS:\\n- Press the top + or bottom views at the top of the screen to enter Design Mode\\n- While in Design + Mode, press the \\\"3D Now\\\" button to apply your artwork and enter 3D Mode\\n- + While in 3D Mode, press the \\\"Stunt\\\" button to enter 3D Interactive Stunt + Mode\\n- While in Stunt Mode, press the \\\"3D Now\\\" button to switch back + to 3D Mode\", \"genreIds\":[\"6016\", \"6014\", \"7016\", \"7015\"], \"releaseDate\":\"2010-08-05T11:10:37Z\", + \"sellerName\":\"Yin Ki Lau\", \"currency\":\"USD\", \"genres\":[\"Entertainment\", + \"Games\", \"Sports\", \"Simulation\"], \"bundleId\":\"com.xdt.skateboarddoodle3d\", + \"trackId\":382809834, \"trackName\":\"Skateboard Doodle 3D\", \"primaryGenreName\":\"Entertainment\", + \"primaryGenreId\":6016, \"releaseNotes\":\"Version 2.2:\\n- Bug fixes: improved + stability\", \"wrapperType\":\"software\", \"contentAdvisoryRating\":\"4+\", + \"artworkUrl100\":\"http://a5.mzstatic.com/us/r1000/102/Purple/93/78/e8/mzl.bvgbxlkm.jpg\", + \"trackCensoredName\":\"Skateboard Doodle 3D\", \"trackViewUrl\":\"http://itunes.apple.com/us/app/skateboard-doodle-3d/id382809834?mt=8&uo=4\", + \"languageCodesISO2A\":[\"EN\"], \"fileSizeBytes\":\"3876293\", \"sellerUrl\":\"http://www.oodot.com\", + \"averageUserRatingForCurrentVersion\":2.0, \"userRatingCountForCurrentVersion\":1, + \"trackContentRating\":\"4+\", \"averageUserRating\":2.5, \"userRatingCount\":81}]\n}\n\n\n" + http_version: '1.1' +- !ruby/struct:VCR::HTTPInteraction + request: !ruby/struct:VCR::Request + method: :get + uri: http://ax.itunes.apple.com:80/WebObjects/MZStoreServices.woa/wa/wsSearch?media=ebook&term=Alice%20in%20Wonderland + body: + headers: + accept: + - application/json + user-agent: + - ITunes Ruby Gem 0.5.5 + accept-encoding: + - gzip;q=1.0,deflate;q=0.6,identity;q=0.3 + response: !ruby/struct:VCR::Response + status: !ruby/struct:VCR::ResponseStatus + code: 200 + message: OK + headers: + x-apple-orig-url-path: + - /WebObjects/MZStoreServices.woa/wa/wsSearch?term=Alice%20in%20Wonderland&media=ebook + x-apple-translated-wo-url: + - /WebObjects/MZStoreServices.woa/wa/wsSearch?term=Alice%20in%20Wonderland&media=ebook + x-apple-application-site: + - NWK + x-apple-max-age: + - '3600' + content-type: + - text/javascript; charset=utf-8 + x-apple-application-instance: + - '1024005' + x-webobjects-loadaverage: + - '0' + vary: + - Accept-Encoding + - X-Apple-Store-Front + expires: + - Wed, 18 Apr 2012 22:53:41 GMT + cache-control: + - max-age=0, no-cache + pragma: + - no-cache + date: + - Wed, 18 Apr 2012 22:53:41 GMT + transfer-encoding: + - chunked + connection: + - Transfer-Encoding + - keep-alive + x-apple-partner: + - origin.0 + body: ! "\n\n\n{\n \"resultCount\":50,\n \"results\": [\n{\"kind\":\"ebook\", + \"artistId\":492182708, \"artistName\":\"J. C. Gorham\", \"price\":0.00, \"genreIds\":[\"9031\", + \"38\"], \"releaseDate\":\"2010-10-04T11:30:28Z\", \"currency\":\"USD\", \"genres\":[\"Fiction + & Literature\", \"Books\"], \"trackId\":395687613, \"trackName\":\"Alice in + Wonderland\", \"artistIds\":[492182708], \"artworkUrl60\":\"http://a1.mzstatic.com/us/r30/Publication/7f/7c/29/contsched.bdishdeo.60x60-50.jpg\", + \"artistViewUrl\":\"http://itunes.apple.com/us/artist/j.-c.-gorham/id492182708?mt=11&uo=4\", + \"trackCensoredName\":\"Alice in Wonderland\", \"artworkUrl100\":\"http://a2.mzstatic.com/us/r30/Publication/7f/7c/29/contsched.bdishdeo.100x100-75.jpg\", + \"trackViewUrl\":\"http://itunes.apple.com/us/book/alice-in-wonderland/id395687613?mt=11&uo=4\", + \"averageUserRating\":4.0, \"userRatingCount\":257}, \n{\"kind\":\"ebook\", + \"artistId\":2683818, \"artistName\":\"Lewis Carroll\", \"price\":3.99, \n\"description\":\"Alice + in Wonderland (also known as Alice's Adventures in Wonderland), from 1865, is + the peculiar and imaginative tale of a girl who falls down a rabbit-hole into + a bizarre world of eccentric and unusual creatures. Lewis Carroll's prominent + example of the genre of \\\"literary nonsense\\\" has endured in popularity + with its clever way of playing with logic and a narrative structure that has + influence generations of fiction writing.\", \"genreIds\":[\"10042\", \"38\", + \"9031\"], \"releaseDate\":\"2009-01-01T08:00:00Z\", \"currency\":\"USD\", \"genres\":[\"Classics\", + \"Books\", \"Fiction & Literature\"], \"trackId\":376761277, \"trackName\":\"Alice + in Wonderland\", \"artistIds\":[2683818], \"artworkUrl60\":\"http://a4.mzstatic.com/us/r30/Publication/f7/bb/88/mzi.wtgvvlsi.60x60-50.jpg\", + \"artistViewUrl\":\"http://itunes.apple.com/us/artist/lewis-carroll/id2683818?mt=11&uo=4\", + \"trackCensoredName\":\"Alice in Wonderland\", \"artworkUrl100\":\"http://a3.mzstatic.com/us/r30/Publication/f7/bb/88/mzi.wtgvvlsi.100x100-75.jpg\", + \"trackViewUrl\":\"http://itunes.apple.com/us/book/alice-in-wonderland/id376761277?mt=11&uo=4\", + \"averageUserRating\":4.5, \"userRatingCount\":33}, \n{\"kind\":\"ebook\", \"artistId\":2683818, + \"artistName\":\"Lewis Carroll\", \"price\":0.99, \n\"description\":\"Alice in Wonderland is a novel written by + Lewis Carroll. It tells the story of a girl named Alice who falls down a rabbit + hole into a fantasy world populated by peculiar and anthropomorphic creatures. + The tale plays with logic  in ways that have given the story lasting popularity + with adults as well as children.<\\/font>\", \"genreIds\":[\"10039\", \"38\", + \"9031\"], \"releaseDate\":\"2010-06-23T07:00:00Z\", \"currency\":\"USD\", \"genres\":[\"Action + & Adventure\", \"Books\", \"Fiction & Literature\"], \"trackId\":379221860, + \"trackName\":\"Alice in Wonderland\", \"artistIds\":[2683818], \"artworkUrl60\":\"http://a5.mzstatic.com/us/r30/Publication/c7/30/d3/mzi.kjzhvdek.60x60-50.jpg\", + \"artistViewUrl\":\"http://itunes.apple.com/us/artist/lewis-carroll/id2683818?mt=11&uo=4\", + \"trackCensoredName\":\"Alice in Wonderland\", \"artworkUrl100\":\"http://a1.mzstatic.com/us/r30/Publication/c7/30/d3/mzi.kjzhvdek.100x100-75.jpg\", + \"trackViewUrl\":\"http://itunes.apple.com/us/book/alice-in-wonderland/id379221860?mt=11&uo=4\", + \"averageUserRating\":4.0, \"userRatingCount\":59}, \n{\"kind\":\"ebook\", \"artistId\":2683818, + \"artistName\":\"Lewis Carroll & John Tenniel\", \"price\":1.99, \n\"description\":\"This + book features the original text and illustrations with information about humor, + nonsense, word play, wit, Tom Swifty, song parodies, and the sources for all + original poems. Note next to the text provide amazing information about what + is happening within the book. Beautifully reformatted for iBooks.\", \"genreIds\":[\"10081\", + \"38\", \"9010\", \"9031\", \"10042\"], \"releaseDate\":\"2011-03-24T07:00:00Z\", + \"currency\":\"USD\", \"genres\":[\"Children's Fiction\", \"Books\", \"Children + & Teens\", \"Fiction & Literature\", \"Classics\"], \"trackId\":428251383, \"trackName\":\"Alice + in Wonderland\", \"artistIds\":[2683818, 428251389], \"artworkUrl60\":\"http://a4.mzstatic.com/us/r30/Publication/4c/54/f4/mzi.laangzrt.60x60-50.jpg\", + \"artistViewUrl\":\"http://itunes.apple.com/us/artist/lewis-carroll-john-tenniel/id2683818?mt=11&uo=4\", + \"trackCensoredName\":\"Alice in Wonderland\", \"artworkUrl100\":\"http://a1.mzstatic.com/us/r30/Publication/4c/54/f4/mzi.laangzrt.100x100-75.jpg\", + \"trackViewUrl\":\"http://itunes.apple.com/us/book/alice-in-wonderland/id428251383?mt=11&uo=4\", + \"averageUserRating\":4.0, \"userRatingCount\":20}, \n{\"kind\":\"ebook\", \"artistId\":2683818, + \"artistName\":\"Lewis Carroll, Arthur Rackham & AudibleBooks\", \"price\":1.99, + \n\"description\":\"Alice's Adventure in Wonderland - Read Aloud Edition is + edition of Lewis Carroll's famous classic 'Alice's Adventure in Wonderland' + with read aloud feature expressing by highlighting the each text word narrative + through dubbing artist.
\\nThrough audio-visual methodology provided in this + title, readers can not only increase their reading concentration but, also can + use this to improve their foreign language skill.\\nWe use narration obtained + from Librivox. We appreciate the work of Librivox volunteers.\", \"genreIds\":[\"10081\", + \"38\", \"9010\"], \"releaseDate\":\"2012-02-27T08:00:00Z\", \"currency\":\"USD\", + \"genres\":[\"Children's Fiction\", \"Books\", \"Children & Teens\"], \"trackId\":508679435, + \"trackName\":\"Alice's Adventure in Wonderland - Read Aloud Edition\", \"artistIds\":[2683818, + 366108769, 502460543], \"artworkUrl60\":\"http://a1.mzstatic.com/us/r30/Publication/v4/32/6e/20/326e20fc-5788-9652-df03-2d4e842ac98a/Alice_s_Adevntures_in_Wonderland_Cover.60x60-50.jpg\", + \"artistViewUrl\":\"http://itunes.apple.com/us/artist/lewis-carroll-arthur-rackham/id2683818?mt=11&uo=4\", + \"trackCensoredName\":\"Alice's Adventure in Wonderland - Read Aloud Edition\", + \"artworkUrl100\":\"http://a1.mzstatic.com/us/r30/Publication/v4/32/6e/20/326e20fc-5788-9652-df03-2d4e842ac98a/Alice_s_Adevntures_in_Wonderland_Cover.100x100-75.jpg\", + \"trackViewUrl\":\"http://itunes.apple.com/us/book/alices-adventure-in-wonderland/id508679435?mt=11&uo=4\", + \"averageUserRating\":3.0, \"userRatingCount\":2}, \n{\"kind\":\"ebook\", \"artistId\":449183091, + \"artistName\":\"Parragon Books Ltd & Amanda Gulliver\", \"price\":3.99, \n\"description\":\"Based + on the classic story by Lewis Carroll, this clear, simple retelling is ideal + for early readers. The magic and wonder of Carroll's tale is enhanced by a beautiful + full color layout designed especially for the iPad, iPhone, and iPod Touch. + A wonderful way to encourage reading comprehension, this story makes a great + introduction to Alice in Wonderland for young children. \", \"genreIds\":[\"10081\", + \"38\", \"9010\"], \"releaseDate\":\"2011-12-02T08:00:00Z\", \"currency\":\"USD\", + \"genres\":[\"Children's Fiction\", \"Books\", \"Children & Teens\"], \"trackId\":485970820, + \"trackName\":\"Alice in Wonderland\", \"artistIds\":[449183091, 491057854], + \"artworkUrl60\":\"http://a4.mzstatic.com/us/r30/Publication/4a/7f/69/mzi.duxqfoma.60x60-50.jpg\", + \"artistViewUrl\":\"http://itunes.apple.com/us/artist/parragon-books-ltd-amanda/id449183091?mt=11&uo=4\", + \"trackCensoredName\":\"Alice in Wonderland\", \"artworkUrl100\":\"http://a2.mzstatic.com/us/r30/Publication/4a/7f/69/mzi.duxqfoma.100x100-75.jpg\", + \"trackViewUrl\":\"http://itunes.apple.com/us/book/alice-in-wonderland/id485970820?mt=11&uo=4\", + \"averageUserRating\":4.5, \"userRatingCount\":7}, \n{\"kind\":\"ebook\", \"artistId\":2683818, + \"artistName\":\"Lewis Carroll\", \"price\":0.00, \"genreIds\":[\"9031\", \"38\"], + \"releaseDate\":\"2010-05-14T06:09:18Z\", \"currency\":\"USD\", \"genres\":[\"Fiction + & Literature\", \"Books\"], \"trackId\":361558484, \"trackName\":\"Alice's Adventures + in Wonderland\", \"artistIds\":[2683818], \"artworkUrl60\":\"http://a3.mzstatic.com/us/r30/Publication/1c/2a/74/mzi.mrzpqpse.60x60-50.jpg\", + \"artistViewUrl\":\"http://itunes.apple.com/us/artist/lewis-carroll/id2683818?mt=11&uo=4\", + \"trackCensoredName\":\"Alice's Adventures in Wonderland\", \"artworkUrl100\":\"http://a1.mzstatic.com/us/r30/Publication/1c/2a/74/mzi.mrzpqpse.100x100-75.jpg\", + \"trackViewUrl\":\"http://itunes.apple.com/us/book/alices-adventures-in-wonderland/id361558484?mt=11&uo=4\", + \"averageUserRating\":4.0, \"userRatingCount\":791}, \n{\"kind\":\"ebook\", + \"artistId\":2683818, \"artistName\":\"Lewis Carroll\", \"price\":0.00, \n\"description\":\"Includes + Sir John Tenniel\\u2019s classic illustrations, along with a gallery of art + from six different artists\\u2019 interpretations!
\\nMix equal parts creativity, + bewilderment, and complete nonsense and you have Alice\\u2019s Adventures + in Wonderland. <\\/i>On a day that begins like any other, Alice notices a rabbit\\u2014a + rabbit with a pocket watch. She chases after it and stumbles down a hole\\u2026 + and keeps falling and falling and falling. That\\u2019s when things start to + get weird. She encounters a bizarre cast of characters \\u2014 the Mad Hatter, + the March Hare, a pipe-smoking caterpillar, the Pigeon, a Duchess, the Cook, + and the decapitation-happy Queen of Hearts. It\\u2019s an adventure of completely + intolerable logic, as witty as it is completely insane.\", \"genreIds\":[\"10042\", + \"38\", \"9031\", \"9020\", \"10044\"], \"releaseDate\":\"2011-03-29T07:00:00Z\", + \"currency\":\"USD\", \"genres\":[\"Classics\", \"Books\", \"Fiction & Literature\", + \"Sci-Fi & Fantasy\", \"Fantasy\"], \"trackId\":429223235, \"trackName\":\"Alice's + Adventures in Wonderland\", \"artistIds\":[2683818], \"artworkUrl60\":\"http://a1.mzstatic.com/us/r30/Publication/5e/e6/4f/mzi.rynugbdv.60x60-50.jpg\", + \"artistViewUrl\":\"http://itunes.apple.com/us/artist/lewis-carroll/id2683818?mt=11&uo=4\", + \"trackCensoredName\":\"Alice's Adventures in Wonderland\", \"artworkUrl100\":\"http://a1.mzstatic.com/us/r30/Publication/5e/e6/4f/mzi.rynugbdv.100x100-75.jpg\", + \"trackViewUrl\":\"http://itunes.apple.com/us/book/alices-adventures-in-wonderland/id429223235?mt=11&uo=4\", + \"averageUserRating\":4.0, \"userRatingCount\":598}, \n{\"kind\":\"ebook\", + \"artistId\":375189805, \"artistName\":\"Jennifer Adams & Alison Oliver\", \"price\":3.99, + \n\"description\":\"With the perennial popularity of classic writers like Charlotte + BrontÎ and Lewis Carroll, Baby Litô is a fashionable way to introduce your toddler + to the world of classic literature. With clever, simple text by Jennifer Adams, + paired with stylish design and illustrations by Sugarís Alison Oliver, Little + Miss BrontÎ and Little Master Carroll are a must for every savvy parentís nursery + library.\", \"genreIds\":[\"10081\", \"38\", \"9010\"], \"releaseDate\":\"2012-02-01T08:00:00Z\", + \"currency\":\"USD\", \"genres\":[\"Children's Fiction\", \"Books\", \"Children + & Teens\"], \"trackId\":499410428, \"trackName\":\"Alice in Wonderland\", \"artistIds\":[375189805, + 447837679], \"artworkUrl60\":\"http://a4.mzstatic.com/us/r30/Publication/4e/53/2d/mzi.jsfauian.60x60-50.jpg\", + \"artistViewUrl\":\"http://itunes.apple.com/us/artist/jennifer-adams-alison-oliver/id375189805?mt=11&uo=4\", + \"trackCensoredName\":\"Alice in Wonderland\", \"artworkUrl100\":\"http://a4.mzstatic.com/us/r30/Publication/4e/53/2d/mzi.jsfauian.100x100-75.jpg\", + \"trackViewUrl\":\"http://itunes.apple.com/us/book/alice-in-wonderland/id499410428?mt=11&uo=4\", + \"averageUserRating\":5.0, \"userRatingCount\":1}, \n{\"kind\":\"ebook\", \"artistId\":2683818, + \"artistName\":\"Lewis Carroll\", \"price\":0.00, \"genreIds\":[\"9031\", \"38\"], + \"releaseDate\":\"2010-04-03T07:00:00Z\", \"currency\":\"USD\", \"genres\":[\"Fiction + & Literature\", \"Books\"], \"trackId\":361699751, \"trackName\":\"Alice's Adventures + Under Ground\", \"artistIds\":[2683818], \"artworkUrl60\":\"http://a3.mzstatic.com/us/r30/Publication/7f/a1/a7/mzi.ikeziarc.60x60-50.jpg\", + \"artistViewUrl\":\"http://itunes.apple.com/us/artist/lewis-carroll/id2683818?mt=11&uo=4\", + \"trackCensoredName\":\"Alice's Adventures Under Ground\", \"artworkUrl100\":\"http://a1.mzstatic.com/us/r30/Publication/7f/a1/a7/mzi.ikeziarc.100x100-75.jpg\", + \"trackViewUrl\":\"http://itunes.apple.com/us/book/alices-adventures-under-ground/id361699751?mt=11&uo=4\", + \"averageUserRating\":3.5, \"userRatingCount\":67}, \n{\"kind\":\"ebook\", \"artistId\":2683818, + \"artistName\":\"Lewis Carroll & Mallory Loehr\", \"price\":4.99, \n\"description\":\"Alice + can't believe her eyes when a white rabbit wearing a waistcoat and carrying + a pocket watch dashes by her. She chases after him, down a rabbit hole to a + strange land full of exotic creatures, like the Mad Hatter and March Hare, a + smiling Cheshire cat, a philosophical caterpillar, and a tempermental croquet-playing + queen. Alice can hardly keep track of all the curious characters, let alone + herself!

Lewis Carroll's classic Alice's Adventures in Wonderland has + been adapted to an easier reading level for Stepping Stones, while keeping all + the fun, nonsense, and fantastic twists of the original book.


From + the Trade Paperback edition.<\\/i>\", \"genreIds\":[\"10081\", \"38\", \"9010\"], + \"releaseDate\":\"1930-12-11T08:00:00Z\", \"currency\":\"USD\", \"genres\":[\"Children's + Fiction\", \"Books\", \"Children & Teens\"], \"trackId\":421585876, \"trackName\":\"Alice + in Wonderland\", \"artistIds\":[2683818, 420522712], \"artworkUrl60\":\"http://a2.mzstatic.com/us/r30/Publication/c7/a3/28/mzi.xwlvscyh.60x60-50.jpg\", + \"artistViewUrl\":\"http://itunes.apple.com/us/artist/lewis-carroll-mallory-loehr/id2683818?mt=11&uo=4\", + \"trackCensoredName\":\"Alice in Wonderland\", \"artworkUrl100\":\"http://a3.mzstatic.com/us/r30/Publication/c7/a3/28/mzi.xwlvscyh.100x100-75.jpg\", + \"trackViewUrl\":\"http://itunes.apple.com/us/book/alice-in-wonderland/id421585876?mt=11&uo=4\", + \"averageUserRating\":4.5, \"userRatingCount\":5}, \n{\"kind\":\"ebook\", \"artistId\":515885622, + \"artistName\":\"Lewiss Carroll\", \"price\":0.00, \"description\":\"Classic + fantasy story of Alice's trip to her own thoughts as she enters a world of peril + and puzzle.\", \"genreIds\":[\"10044\", \"38\", \"9020\"], \"releaseDate\":\"2012-04-01T07:00:00Z\", + \"currency\":\"USD\", \"genres\":[\"Fantasy\", \"Books\", \"Sci-Fi & Fantasy\"], + \"trackId\":515885614, \"trackName\":\"Alice's Adventures in Wonderland\", \"artistIds\":[515885622], + \"artworkUrl60\":\"http://a3.mzstatic.com/us/r30/Publication/v4/c2/2d/88/c22d8811-3281-42bd-7349-4c16b03bce6a/Alice_In_Wonderland.60x60-50.jpg\", + \"artistViewUrl\":\"http://itunes.apple.com/us/artist/lewiss-carroll/id515885622?mt=11&uo=4\", + \"trackCensoredName\":\"Alice's Adventures in Wonderland\", \"artworkUrl100\":\"http://a5.mzstatic.com/us/r30/Publication/v4/c2/2d/88/c22d8811-3281-42bd-7349-4c16b03bce6a/Alice_In_Wonderland.100x100-75.jpg\", + \"trackViewUrl\":\"http://itunes.apple.com/us/book/alices-adventures-in-wonderland/id515885614?mt=11&uo=4\", + \"averageUserRating\":4.0, \"userRatingCount\":2}, \n{\"kind\":\"ebook\", \"artistId\":421288256, + \"artistName\":\"Disney Book Group\", \"price\":1.99, \"description\":\"Perfect + for reading aloud, this story is based on the classic Disney film, Alice in + Wonderland.\", \"genreIds\":[\"10081\", \"38\", \"9010\"], \"releaseDate\":\"2010-12-29T08:00:00Z\", + \"currency\":\"USD\", \"genres\":[\"Children's Fiction\", \"Books\", \"Children + & Teens\"], \"trackId\":411742754, \"trackName\":\"Walt Disney's Alice in Wonderland\", + \"artistIds\":[421288256], \"artworkUrl60\":\"http://a3.mzstatic.com/us/r30/Publication/bb/88/51/mzi.ntsjpjgo.60x60-50.jpg\", + \"artistViewUrl\":\"http://itunes.apple.com/us/artist/disney-book-group/id421288256?mt=11&uo=4\", + \"trackCensoredName\":\"Walt Disney's Alice in Wonderland\", \"artworkUrl100\":\"http://a4.mzstatic.com/us/r30/Publication/bb/88/51/mzi.ntsjpjgo.100x100-75.jpg\", + \"trackViewUrl\":\"http://itunes.apple.com/us/book/walt-disneys-alice-in-wonderland/id411742754?mt=11&uo=4\", + \"averageUserRating\":4.0, \"userRatingCount\":142}, \n{\"kind\":\"ebook\", + \"artistId\":112527477, \"artistName\":\"Various Artists\", \"price\":0.99, + \n\"description\":\"This multimedia edition features the original Lewis Carroll + novel, with the original John Tenniel illustrations. It also includes the original + Alice's Adventures in Wonderland 1903 silent film by Cecil Hepworth and Percy + Stowe. As a bonus, we have included illustrations by: Henry Altemus, Mabel Lucie + Attwell, Blanche McManus, Arthur Rackman, Gordon Robinson, and George A. Walker. + Over 140 authentic and original illustrations from the many different Alice's + Adventures in Wonderland publications throughout the years. 
\\n
\\nSynopsis:
\\nOriginally + published in 1865 by English author Charles Lutwidge Dodgson, under the pseudonym + Lewis Carroll. It follows the character Alice who falls down the infamous rabbit + hole into a mystical world called Wonderland.
\", \"genreIds\":[\"10042\", + \"38\", \"9031\", \"9020\", \"10044\"], \"releaseDate\":\"2008-10-25T07:00:00Z\", + \"currency\":\"USD\", \"genres\":[\"Classics\", \"Books\", \"Fiction & Literature\", + \"Sci-Fi & Fantasy\", \"Fantasy\"], \"trackId\":456108106, \"trackName\":\"Alice's + Adventures In Wonderland\", \"artistIds\":[112527477], \"artworkUrl60\":\"http://a5.mzstatic.com/us/r30/Publication/f7/ee/46/mzi.qrtcqarm.60x60-50.jpg\", + \"artistViewUrl\":\"http://itunes.apple.com/us/artist/various-artists/id112527477?mt=11&uo=4\", + \"trackCensoredName\":\"Alice's Adventures In Wonderland\", \"artworkUrl100\":\"http://a5.mzstatic.com/us/r30/Publication/f7/ee/46/mzi.qrtcqarm.100x100-75.jpg\", + \"trackViewUrl\":\"http://itunes.apple.com/us/book/alices-adventures-in-wonderland/id456108106?mt=11&uo=4\", + \"averageUserRating\":4.0, \"userRatingCount\":41}, \n{\"kind\":\"ebook\", \"artistId\":2683818, + \"artistName\":\"Lewis Carroll\", \"price\":3.99, \n\"description\":\"The Mad + Hatter, the Ugly Duchess, the Mock Turtle, the Queen of Hearts, the Cheshire + Cat-characters each more eccentric than the last, and that could only have come + from Lewis Carroll, the master of sublime nonsense. In these two brilliant burlesques + he created two of the most famous and fantastic novels of all time that not + only stirred our imagination but revolutionized literature.\", \"genreIds\":[\"10042\", + \"38\", \"9031\"], \"releaseDate\":\"2000-12-01T08:00:00Z\", \"currency\":\"USD\", + \"genres\":[\"Classics\", \"Books\", \"Fiction & Literature\"], \"trackId\":357921222, + \"trackName\":\"Alice's Adventures in Wonderland and Through the Looking Glass\", + \"artistIds\":[2683818], \"artworkUrl60\":\"http://a3.mzstatic.com/us/r30/Publication/5a/80/bb/mzi.toerwhje.60x60-50.jpg\", + \"artistViewUrl\":\"http://itunes.apple.com/us/artist/lewis-carroll/id2683818?mt=11&uo=4\", + \"trackCensoredName\":\"Alice's Adventures in Wonderland and Through the Looking + Glass\", \"artworkUrl100\":\"http://a2.mzstatic.com/us/r30/Publication/5a/80/bb/mzi.toerwhje.100x100-75.jpg\", + \"trackViewUrl\":\"http://itunes.apple.com/us/book/alices-adventures-in-wonderland/id357921222?mt=11&uo=4\", + \"averageUserRating\":4.0, \"userRatingCount\":100}, \n{\"kind\":\"ebook\", + \"artistId\":2683818, \"artistName\":\"Lewis Carroll\", \"price\":0.99, \n\"description\":\"The complete tales of Alice by Lewis Carroll. + Includes both works that contain Alice's Adventures (\\\"Alice's Adventures + through Wonderland\\\" and \\\"Through the Looking Glass\\\"). This edition + is not illustrated.<\\/font>\", \"genreIds\":[\"10044\", \"38\", \"9020\"], + \"releaseDate\":\"2010-06-18T07:00:00Z\", \"currency\":\"USD\", \"genres\":[\"Fantasy\", + \"Books\", \"Sci-Fi & Fantasy\"], \"trackId\":378705094, \"trackName\":\"The + Complete Adventures of Alice in Wonderland\", \"artistIds\":[2683818], \"artworkUrl60\":\"http://a1.mzstatic.com/us/r30/Publication/9b/db/6e/mzi.krhgyjlr.60x60-50.jpg\", + \"artistViewUrl\":\"http://itunes.apple.com/us/artist/lewis-carroll/id2683818?mt=11&uo=4\", + \"trackCensoredName\":\"The Complete Adventures of Alice in Wonderland\", \"artworkUrl100\":\"http://a5.mzstatic.com/us/r30/Publication/9b/db/6e/mzi.krhgyjlr.100x100-75.jpg\", + \"trackViewUrl\":\"http://itunes.apple.com/us/book/complete-adventures-alice/id378705094?mt=11&uo=4\", + \"averageUserRating\":4.0, \"userRatingCount\":18}, \n{\"kind\":\"ebook\", \"artistId\":365835204, + \"artistName\":\"T.T. Sutherland\", \"price\":10.99, \n\"description\":\"Based + on the movie directed by Tim Burton. Join Alice as she disappears down a rabbit + hole one more time and emerges in the topsy-turvy world of Wonderland! Magical + escapades highlight Alice's journey, including a wild encounter with the Queen, + the Mad Hatter, the Jabberwocky, and many others!\", \"genreIds\":[\"10081\", + \"38\", \"9010\"], \"releaseDate\":\"2010-02-02T08:00:00Z\", \"currency\":\"USD\", + \"genres\":[\"Children's Fiction\", \"Books\", \"Children & Teens\"], \"trackId\":365835203, + \"trackName\":\"Alice in Wonderland: Tim Burton's Novelization\", \"artistIds\":[365835204], + \"artworkUrl60\":\"http://a5.mzstatic.com/us/r30/Publication/53/d7/11/mzi.lgovxowz.60x60-50.jpg\", + \"artistViewUrl\":\"http://itunes.apple.com/us/artist/t.t.-sutherland/id365835204?mt=11&uo=4\", + \"trackCensoredName\":\"Alice in Wonderland: Tim Burton's Novelization\", \"artworkUrl100\":\"http://a1.mzstatic.com/us/r30/Publication/53/d7/11/mzi.lgovxowz.100x100-75.jpg\", + \"trackViewUrl\":\"http://itunes.apple.com/us/book/alice-in-wonderland-tim-burtons/id365835203?mt=11&uo=4\", + \"averageUserRating\":4.0, \"userRatingCount\":62}, \n{\"kind\":\"ebook\", \"artistId\":2683818, + \"artistName\":\"Lewis Carroll\", \"price\":1.99, \n\"description\":\"

Alice's + Adventures in Wonderland<\\/b><\\/i> (1865) is a work of literary nonsense written + by English author Charles Lutwidge Dodgson under the pseudonym Lewis Carroll, + considered a classic example of the genre and of English literature in general. + It tells the story of a girl named Alice who falls down a rabbit-hole into a + fantastic realm populated by peculiar and anthropomorphic creatures. The tale + is filled with allusions to Dodgson's friends (and enemies), and to the lessons + that British schoolchildren were expected to memorize. The tale plays with logic + in ways that have made the story of lasting popularity with adults as well as + children. It is considered to be one of the most characteristic examples of + the genre of literary nonsense, and its narrative course and structure has been + enormously influential, mainly in the fantasy genre. The book is commonly referred + to by the abbreviated title Alice in Wonderland<\\/b><\\/i>. This alternative + title was popularized by the numerous film and television adaptations of the + story produced over the years.<\\/p>\\n

Through the Looking-Glass, and + What Alice Found There<\\/b><\\/i> (1871) is a work of children's literature + by Lewis Carroll (Charles Lutwidge Dodgson), generally categorized as literary + nonsense. It is the sequel to Alice's Adventures in Wonderland<\\/i> (1865). + Although it makes no reference to the events in the earlier book, the themes + and settings of Through the Looking-Glass<\\/i> make it a kind of mirror + image of Wonderland<\\/i>: the first book begins outdoors, in the warm month + of May, on Alice's birthday (May 4), uses frequent changes in size as a plot + device, and draws on the imagery of playing cards; the second opens indoors + on a snowy, wintry night exactly six months later, on November 4 (the day before + Guy Fawkes Night), uses frequent changes in time and spatial directions as a + plot device, and draws on the imagery of chess. In it, there are many mirror + themes, including opposites, time running backwards, and so on.<\\/p>\\n

- + Excerpted from Wikipedia, <\\/i>the free encyclopedia.<\\/p>\", \"genreIds\":[\"10081\", + \"38\", \"9010\"], \"releaseDate\":\"2010-01-01T08:00:00Z\", \"currency\":\"USD\", + \"genres\":[\"Children's Fiction\", \"Books\", \"Children & Teens\"], \"trackId\":370193313, + \"trackName\":\"Alice's Adventures in Wonderland and Through the Looking Glass. + ILLUSTRATED.\", \"artistIds\":[2683818], \"artworkUrl60\":\"http://a3.mzstatic.com/us/r30/Publication/4e/ef/28/mzi.yrwbgtrm.60x60-50.jpg\", + \"artistViewUrl\":\"http://itunes.apple.com/us/artist/lewis-carroll/id2683818?mt=11&uo=4\", + \"trackCensoredName\":\"Alice's Adventures in Wonderland and Through the Looking + Glass. ILLUSTRATED.\", \"artworkUrl100\":\"http://a5.mzstatic.com/us/r30/Publication/4e/ef/28/mzi.yrwbgtrm.100x100-75.jpg\", + \"trackViewUrl\":\"http://itunes.apple.com/us/book/alices-adventures-in-wonderland/id370193313?mt=11&uo=4\", + \"averageUserRating\":4.0, \"userRatingCount\":9}, \n{\"kind\":\"ebook\", \"artistId\":2683818, + \"artistName\":\"Lewis Carroll\", \"price\":1.99, \n\"description\":\"One day + Alice follows a rabbit into a large hole under the hedge, and a magical adventure + begins. She meets the Mad Hatter and the March Hare at an unconventional tea + party, the mysterious Cheshire Cat in the woods, and other enchanting characters. + Discover the extraordinary world of Wonderland in Lewis Carroll\\u0092s classic + novel.\", \"genreIds\":[\"10081\", \"38\", \"9010\"], \"releaseDate\":\"2010-06-08T07:00:00Z\", + \"currency\":\"USD\", \"genres\":[\"Children's Fiction\", \"Books\", \"Children + & Teens\"], \"trackId\":373351549, \"trackName\":\"Alice in Wonderland Complete + Text\", \"artistIds\":[2683818], \"artworkUrl60\":\"http://a2.mzstatic.com/us/r30/Publication/26/e5/ba/mzi.ayusprva.60x60-50.jpg\", + \"artistViewUrl\":\"http://itunes.apple.com/us/artist/lewis-carroll/id2683818?mt=11&uo=4\", + \"trackCensoredName\":\"Alice in Wonderland Complete Text\", \"artworkUrl100\":\"http://a2.mzstatic.com/us/r30/Publication/26/e5/ba/mzi.ayusprva.100x100-75.jpg\", + \"trackViewUrl\":\"http://itunes.apple.com/us/book/alice-in-wonderland-complete/id373351549?mt=11&uo=4\", + \"averageUserRating\":4.0, \"userRatingCount\":19}, \n{\"kind\":\"ebook\", \"artistId\":2683818, + \"artistName\":\"Lewis Carroll & HappyReads.net\", \"price\":1.99, \n\"description\":\"Alice's + Adventures in Wonderland <\\/b>(commonly shortened to Alice in Wonderland<\\/i>) + is an 1865 novel written by English author Charles Lutwidge Dodgson under the + pseudonym Lewis + Carroll<\\/u><\\/a>. It tells of a girl named Alice who falls down a rabbit + hole into a fantasy world (Wonderland) populated by peculiar, anthropomorphic + creatures.  The tale plays with logic, giving the story lasting popularity with + adults as well as children. It is considered to be one of the best examples + of the literary nonsense genre, and its narrative course and structure have + been enormously influential, especially in the fantasy genre.
\\n
\\n-- + Wikipedia
\\n
\\nThis is an enhanced eBook (Read and Listen).
\\n
\\n---\", + \"genreIds\":[\"10081\", \"38\", \"9010\", \"9033\", \"10066\"], \"releaseDate\":\"2012-03-31T07:00:00Z\", + \"currency\":\"USD\", \"genres\":[\"Children's Fiction\", \"Books\", \"Children + & Teens\", \"Reference\", \"Foreign Languages\"], \"trackId\":474996488, \"trackName\":\"Alice's + Adventures in Wonderland - Read Aloud Edition\", \"artistIds\":[2683818, 465049468], + \"artworkUrl60\":\"http://a5.mzstatic.com/us/r30/Publication/d9/21/4b/mzi.gjibhmoa.60x60-50.jpg\", + \"artistViewUrl\":\"http://itunes.apple.com/us/artist/lewis-carroll-happyreads.net/id2683818?mt=11&uo=4\", + \"trackCensoredName\":\"Alice's Adventures in Wonderland - Read Aloud Edition\", + \"artworkUrl100\":\"http://a1.mzstatic.com/us/r30/Publication/d9/21/4b/mzi.gjibhmoa.100x100-75.jpg\", + \"trackViewUrl\":\"http://itunes.apple.com/us/book/alices-adventures-in-wonderland/id474996488?mt=11&uo=4\", + \"averageUserRating\":5.0, \"userRatingCount\":1}, \n{\"kind\":\"ebook\", \"artistId\":2683818, + \"artistName\":\"Lewis Carroll\", \"price\":2.99, \n\"description\":\"Contained + in this volume are the two classics by Lewis Carroll, \\\"Alice's Adventures + in Wonderland\\\" and \\\"Through the Looking Glass.\\\" We are first introduced + to Alice in \\\"Alice's Adventures in Wonderland\\\" where we find Alice idly + passing away the time next to a river when she sees a white rabbit pass by in + a waistcoat. She follows the rabbit down the rabbit hole and ends up in the + fantasy world of Wonderland. Alice's adventures are continued in \\\"Through + the Looking Glass\\\" when Alice passes through a mirror to find herself in + yet another magical place. Carroll's Alice novels are ripe with fantastical + imagery that will delight readers both young and old.\", \"genreIds\":[\"9031\", + \"38\"], \"releaseDate\":\"2010-01-01T08:00:00Z\", \"currency\":\"USD\", \"genres\":[\"Fiction + & Literature\", \"Books\"], \"trackId\":378143234, \"trackName\":\"Alice's Adventures + In Wonderland and Through the Looking Glass\", \"artistIds\":[2683818], \"artworkUrl60\":\"http://a1.mzstatic.com/us/r30/Publication/37/86/3e/mzi.wvnjyhku.60x60-50.jpg\", + \"artistViewUrl\":\"http://itunes.apple.com/us/artist/lewis-carroll/id2683818?mt=11&uo=4\", + \"trackCensoredName\":\"Alice's Adventures In Wonderland and Through the Looking + Glass\", \"artworkUrl100\":\"http://a5.mzstatic.com/us/r30/Publication/37/86/3e/mzi.wvnjyhku.100x100-75.jpg\", + \"trackViewUrl\":\"http://itunes.apple.com/us/book/alices-adventures-in-wonderland/id378143234?mt=11&uo=4\", + \"averageUserRating\":3.5, \"userRatingCount\":7}, \n{\"kind\":\"ebook\", \"artistId\":2683818, + \"artistName\":\"Lewis Carroll\", \"price\":1.99, \n\"description\":\"Alice's Adventures in Wonderland is a + 1865 novel written by English author Charles Lutwidge Dodgson under the pseudonym + Lewis Carroll. The story follows a young girl named Alice down a rabbit hole + and into a fantasy world filled with anthropomorphic creatures. This vook explores + some of the imaginative creatures she meets on her dazzling adventure, including  + a talking cheshire cat, a humorous white rabbit who is in a constant state of + hurry and the daunting Queen of Hearts who she must escape to find her way back + home.  Alice in Wonderland plays with logic, and its interesting and unique + story lines have made it hugely popular with children and adults alike.<\\/font>\", + \"genreIds\":[\"10081\", \"38\", \"9010\"], \"releaseDate\":\"2010-10-12T07:00:00Z\", + \"currency\":\"USD\", \"genres\":[\"Children's Fiction\", \"Books\", \"Children + & Teens\"], \"trackId\":398017899, \"trackName\":\"Alice's Adventures in Wonderland + (Enhanced Version)\", \"artistIds\":[2683818], \"artworkUrl60\":\"http://a2.mzstatic.com/us/r30/Publication/59/0b/81/mzi.nfiygece.60x60-50.jpg\", + \"artistViewUrl\":\"http://itunes.apple.com/us/artist/lewis-carroll/id2683818?mt=11&uo=4\", + \"trackCensoredName\":\"Alice's Adventures in Wonderland (Enhanced Version)\", + \"artworkUrl100\":\"http://a1.mzstatic.com/us/r30/Publication/59/0b/81/mzi.nfiygece.100x100-75.jpg\", + \"trackViewUrl\":\"http://itunes.apple.com/us/book/alices-adventures-in-wonderland/id398017899?mt=11&uo=4\", + \"averageUserRating\":4.5, \"userRatingCount\":3}, \n{\"kind\":\"ebook\", \"artistId\":2683818, + \"artistName\":\"Lewis Carroll & Graphic eBooks\", \"price\":1.99, \n\"description\":\"Lewis + Carroll's classic book sees new life in this newly illustrated eBook. Over a + dozen original color illustrations are included in this book.
\\n
\\nThe + story tells of a girl named Alice who falls down a rabbit hole into a fantasy + world (Wonderland) populated by peculiar, anthropomorphic creatures. The tale + plays with logic, giving the story lasting popularity with adults as well as + children. It is considered to be one of the best examples of the literary nonsense + genre, and its narrative course and structure have been enormously influential, + especially in the fantasy genre.
\", \"genreIds\":[\"10081\", \"38\", \"9010\", + \"9031\", \"10042\"], \"releaseDate\":\"2011-07-13T07:00:00Z\", \"currency\":\"USD\", + \"genres\":[\"Children's Fiction\", \"Books\", \"Children & Teens\", \"Fiction + & Literature\", \"Classics\"], \"trackId\":450186868, \"trackName\":\"The Illustrated + Alice's Adventures in Wonderland\", \"artistIds\":[2683818, 442227783], \"artworkUrl60\":\"http://a5.mzstatic.com/us/r30/Publication/87/b7/91/mzi.nqvgfceo.60x60-50.jpg\", + \"artistViewUrl\":\"http://itunes.apple.com/us/artist/lewis-carroll-graphic-ebooks/id2683818?mt=11&uo=4\", + \"trackCensoredName\":\"The Illustrated Alice's Adventures in Wonderland\", + \"artworkUrl100\":\"http://a3.mzstatic.com/us/r30/Publication/87/b7/91/mzi.nqvgfceo.100x100-75.jpg\", + \"trackViewUrl\":\"http://itunes.apple.com/us/book/illustrated-alices-adventures/id450186868?mt=11&uo=4\", + \"averageUserRating\":4.0, \"userRatingCount\":7}, \n{\"kind\":\"ebook\", \"artistId\":381184052, + \"artistName\":\"Camille Rose Garcia & Lewis Carroll\", \"price\":9.99, \n\"description\":\"'Down, + down, down. Would the fall never come to an end!' Since its publication in 1865, + Lewis Carroll's Alice's Adventures in Wonderland has delighted the world with + a wildly imaginative and unforgettable journey, inspiring children of all ages + to suspend disbelief and follow Alice into her fantasy worlds. This new gift + edition presents Carroll's tale fully unabridged with a unique visual interpretation + by renowned artist Camille Rose Garcia.\", \"genreIds\":[\"9031\", \"38\"], + \"releaseDate\":\"2010-07-20T07:00:00Z\", \"currency\":\"USD\", \"genres\":[\"Fiction + & Literature\", \"Books\"], \"trackId\":381184048, \"trackName\":\"Alice's Adventures + in Wonderland\", \"artistIds\":[381184052, 2683818], \"artworkUrl60\":\"http://a1.mzstatic.com/us/r30/Publication/72/4f/92/mzi.qwqfmnnp.60x60-50.jpg\", + \"artistViewUrl\":\"http://itunes.apple.com/us/artist/camille-rose-garcia-lewis/id381184052?mt=11&uo=4\", + \"trackCensoredName\":\"Alice's Adventures in Wonderland\", \"artworkUrl100\":\"http://a2.mzstatic.com/us/r30/Publication/72/4f/92/mzi.qwqfmnnp.100x100-75.jpg\", + \"trackViewUrl\":\"http://itunes.apple.com/us/book/alices-adventures-in-wonderland/id381184048?mt=11&uo=4\", + \"averageUserRating\":3.5, \"userRatingCount\":26}, \n{\"kind\":\"ebook\", \"artistId\":366113315, + \"artistName\":\"Charles Edward Carryl\", \"price\":0.00, \"genreIds\":[\"9031\", + \"38\"], \"releaseDate\":\"2010-04-03T07:00:00Z\", \"currency\":\"USD\", \"genres\":[\"Fiction + & Literature\", \"Books\"], \"trackId\":361541874, \"trackName\":\"Davy and + The Goblin\", \"artistIds\":[366113315], \"artworkUrl60\":\"http://a5.mzstatic.com/us/r30/Publication/0e/db/35/mzi.tqtcxniq.60x60-50.jpg\", + \"artistViewUrl\":\"http://itunes.apple.com/us/artist/charles-edward-carryl/id366113315?mt=11&uo=4\", + \"trackCensoredName\":\"Davy and The Goblin\", \"artworkUrl100\":\"http://a1.mzstatic.com/us/r30/Publication/0e/db/35/mzi.tqtcxniq.100x100-75.jpg\", + \"trackViewUrl\":\"http://itunes.apple.com/us/book/davy-and-the-goblin/id361541874?mt=11&uo=4\", + \"averageUserRating\":4.5, \"userRatingCount\":4}, \n{\"kind\":\"ebook\", \"artistId\":2683818, + \"artistName\":\"Lewis Carroll\", \"price\":7.99, \n\"description\":\"

Introduction + by A. S. Byatt<\\/b>
Illustrations by John Tenniel<\\/b>
Includes + commissioned endnotes<\\/b>
 <\\/b>
Conceived by a shy British + don on a golden afternoon to entertain ten-year-old Alice Liddell and her sisters, + Alice’s Adventures in Wonderland<\\/i> and Through the Looking-Glass<\\/i> + have delighted generations of readers in more than eighty languages. “The + clue to the enduring fascination and greatness of the Alice books,” writes + A. S. Byatt in her Introduction, “lies in language. It is play, and word-play, + and its endless intriguing puzzles continue to reveal themselves long after + we have ceased to be children.”

Includes a Modern Library Reading + Group Guide<\\/p>


From the Trade Paperback edition.<\\/i>\", \"genreIds\":[\"10042\", + \"38\", \"9031\"], \"releaseDate\":\"2002-12-10T08:00:00Z\", \"currency\":\"USD\", + \"genres\":[\"Classics\", \"Books\", \"Fiction & Literature\"], \"trackId\":420038282, + \"trackName\":\"Alice's Adventures in Wonderland and Through the Looking-Glass\", + \"artistIds\":[2683818], \"artworkUrl60\":\"http://a1.mzstatic.com/us/r30/Publication/32/5c/68/mzi.agzgjnpq.60x60-50.jpg\", + \"artistViewUrl\":\"http://itunes.apple.com/us/artist/lewis-carroll/id2683818?mt=11&uo=4\", + \"trackCensoredName\":\"Alice's Adventures in Wonderland and Through the Looking-Glass\", + \"artworkUrl100\":\"http://a2.mzstatic.com/us/r30/Publication/32/5c/68/mzi.agzgjnpq.100x100-75.jpg\", + \"trackViewUrl\":\"http://itunes.apple.com/us/book/alices-adventures-in-wonderland/id420038282?mt=11&uo=4\", + \"averageUserRating\":4.5, \"userRatingCount\":7}, \n{\"kind\":\"ebook\", \"artistId\":2683818, + \"artistName\":\"Lewis Carroll & Eva Mason\", \"price\":3.99, \n\"description\":\"Nothing\\u2019s + more magical than going down the rabbit hole and through the looking glass with + Alice. There, in worlds unlike any other ever created, conventional logic is + turned upside down and wrong-way round to enchanting effect. Children will love + reading Carroll\\u2019s many humorous nonsense verses and meeting such unforgettable + characters as the Mad Hatter, the Knave of Hearts who steals some tarts, and + the grinning Cheshire Cat (in Alice in Wonderland) and Tweedledee, Tweedledum, + Humpty Dumpty, and the Jabberwock (in Through the Looking Glass).\", \"genreIds\":[\"10081\", + \"38\", \"9010\"], \"releaseDate\":\"2009-09-18T07:00:00Z\", \"currency\":\"USD\", + \"genres\":[\"Children's Fiction\", \"Books\", \"Children & Teens\"], \"trackId\":413245212, + \"trackName\":\"Alice in Wonderland & Through the Looking-Glass\", \"artistIds\":[2683818, + 418060194], \"artworkUrl60\":\"http://a3.mzstatic.com/us/r30/Publication/08/f6/90/mzi.akwqasxo.60x60-50.jpg\", + \"artistViewUrl\":\"http://itunes.apple.com/us/artist/lewis-carroll-eva-mason/id2683818?mt=11&uo=4\", + \"trackCensoredName\":\"Alice in Wonderland & Through the Looking-Glass\", \"artworkUrl100\":\"http://a1.mzstatic.com/us/r30/Publication/08/f6/90/mzi.akwqasxo.100x100-75.jpg\", + \"trackViewUrl\":\"http://itunes.apple.com/us/book/alice-in-wonderland-through/id413245212?mt=11&uo=4\", + \"averageUserRating\":4.0, \"userRatingCount\":16}, \n{\"kind\":\"ebook\", \"artistId\":2683818, + \"artistName\":\"Lewis Carroll\", \"price\":2.99, \n\"description\":\"ALICE'S + ADVENTURES IN WONDERLAND/ ALICE'S ABENTEUER IM WUNDERLAND: This unique book + features paragraph by paragraph translations from English to German, allowing + the reader to learn German vocabulary and sentence structure while enjoying + a classic. This is a fun and affordable way to learn a second language. Previous + experience with German is recommended, but ambitious beginners are welcome to + give it a try. QUICK SYNOPSIS: \\\"Alice's Adventures in Wonderland\\\" is + the famous story of a girl named Alice who falls down a rabbit hole into a fantasy + world. There she experiences many mishaps and adventures and meets many strange + creatures.\", \"genreIds\":[\"10066\", \"38\", \"9033\", \"9031\", \"10039\"], + \"releaseDate\":\"2011-12-09T08:00:00Z\", \"currency\":\"USD\", \"genres\":[\"Foreign + Languages\", \"Books\", \"Reference\", \"Fiction & Literature\", \"Action & + Adventure\"], \"trackId\":490023092, \"trackName\":\"Learn German! Lerne Englisch! + ALICE'S ADVENTURES IN WONDERLAND: In German and English\", \"artistIds\":[2683818], + \"artworkUrl60\":\"http://a4.mzstatic.com/us/r30/Publication/e4/c2/eb/mzi.ldqsniao.60x60-50.jpg\", + \"artistViewUrl\":\"http://itunes.apple.com/us/artist/lewis-carroll/id2683818?mt=11&uo=4\", + \"trackCensoredName\":\"Learn German! Lerne Englisch! ALICE'S ADVENTURES IN + WONDERLAND: In German and English\", \"artworkUrl100\":\"http://a3.mzstatic.com/us/r30/Publication/e4/c2/eb/mzi.ldqsniao.100x100-75.jpg\", + \"trackViewUrl\":\"http://itunes.apple.com/us/book/learn-german!-lerne-englisch!/id490023092?mt=11&uo=4\", + \"averageUserRating\":3.0, \"userRatingCount\":1}, \n{\"kind\":\"ebook\", \"artistId\":2683818, + \"artistName\":\"Lewis Carroll\", \"price\":3.99, \n\"description\":\"A Vigo Classics book<\\/font>
\\n<\\/font>
\\nAfter following a white rabbit in a waistcoat down a hole, Alice + enters the absurd and fantastical world of Wonderland \\u2013 a place where + meeting hookah-smoking caterpillars and joining a crazed tea party is as normal + as it gets.<\\/font>\", \"genreIds\":[\"10042\", \"38\", \"9031\"], \"releaseDate\":\"2010-08-04T07:00:00Z\", + \"currency\":\"USD\", \"genres\":[\"Classics\", \"Books\", \"Fiction & Literature\"], + \"trackId\":386022738, \"trackName\":\"Alice's Adventures in Wonderland\", \"artistIds\":[2683818], + \"artworkUrl60\":\"http://a1.mzstatic.com/us/r30/Publication/04/d0/d2/mzi.ramurcge.60x60-50.jpg\", + \"artistViewUrl\":\"http://itunes.apple.com/us/artist/lewis-carroll/id2683818?mt=11&uo=4\", + \"trackCensoredName\":\"Alice's Adventures in Wonderland\", \"artworkUrl100\":\"http://a2.mzstatic.com/us/r30/Publication/04/d0/d2/mzi.ramurcge.100x100-75.jpg\", + \"trackViewUrl\":\"http://itunes.apple.com/us/book/alices-adventures-in-wonderland/id386022738?mt=11&uo=4\", + \"averageUserRating\":3.5, \"userRatingCount\":23}, \n{\"kind\":\"ebook\", \"artistId\":2683818, + \"artistName\":\"Lewis Carroll\", \"price\":5.99, \n\"description\":\"

This + collection was designed for optimal navigation on iPad and other electronic + devices. It is indexed alphabetically, chronologically and by category, making + it easier to access individual books, stories and poems. This collection offers + lower price, the convenience of a one-time download, and it reduces the clutter + in your digital library. All books included in this collection feature a hyperlinked + table of contents and footnotes. The collection is complimented by an author + biography.<\\/p>\\n\\n

Table of Contents<\\/b><\\/p>\\n

Lewis Carroll + Biography
Bibliography<\\/p>\\n

Prose:<\\/b>
Alice's Adventures + in Wonderland Illustrated \\nby John Tenniel
<\\/i>Through the Looking-Glass + Illustrated by John \\nTenniel
<\\/i>Sylvie and Bruno <\\/p>\\n

Poems:<\\/b>
Atlanta + in Camden-Town
Echoes
Fame's \\nPenny-Trumpet 
Four Riddles +
A Game of Fives
Hiawatha's \\nPhotography
The Hunting of The Snark, + an Agony in Eight Fits
Jabberwocky \\n
The Lang Coortin'
Melancholetta +
Phantasmagoria
Poeta Fit, Non \\nNascitur
A Sea Dirge
Size and + Tears
Tema con Variazioni
The \\nThree Voices
A Valentine
The + Walrus and the Carpenter
Ye Carpette \\nKnyghte
You Are Old, Father + William<\\/p>\\n

Other:<\\/b>
A Tangled Tale Illustrated by Arthur + B. \\nFrost
<\\/i>The Alphabet Cipher
The Game of Logic
What the Tortoise + \\nSaid to Achilles<\\/p>\", \"genreIds\":[\"10081\", \"38\", \"9010\"], \"releaseDate\":\"2010-01-01T08:00:00Z\", + \"currency\":\"USD\", \"genres\":[\"Children's Fiction\", \"Books\", \"Children + & Teens\"], \"trackId\":370187447, \"trackName\":\"Works of Lewis Carroll. ILLUSTRATED\", + \"artistIds\":[2683818], \"artworkUrl60\":\"http://a3.mzstatic.com/us/r30/Publication/1a/06/1a/mzi.uphjgodd.60x60-50.jpg\", + \"artistViewUrl\":\"http://itunes.apple.com/us/artist/lewis-carroll/id2683818?mt=11&uo=4\", + \"trackCensoredName\":\"Works of Lewis Carroll. ILLUSTRATED\", \"artworkUrl100\":\"http://a1.mzstatic.com/us/r30/Publication/1a/06/1a/mzi.uphjgodd.100x100-75.jpg\", + \"trackViewUrl\":\"http://itunes.apple.com/us/book/works-lewis-carroll.-illustrated/id370187447?mt=11&uo=4\", + \"averageUserRating\":4.5, \"userRatingCount\":6}, \n{\"kind\":\"ebook\", \"artistId\":2683818, + \"artistName\":\"Lewis Carroll & S. Hwangbo\", \"price\":6.99, \n\"description\":\"Alice + in Wonderland by Lewis Carroll, beautifully illustrated and \\\"Read-Aloud\\\" + functions. 
\\n
\\nLewis Carroll was an English author, mathematician + and logician. His most famous writings are \\\"Alice in Wonderland\\\" and its + sequel \\\"Through the Looking-Glass\\\". He is famous for his word play and + creating fantasy world.\", \"genreIds\":[\"10081\", \"38\", \"9010\"], \"releaseDate\":\"2012-03-28T07:00:00Z\", + \"currency\":\"USD\", \"genres\":[\"Children's Fiction\", \"Books\", \"Children + & Teens\"], \"trackId\":507384781, \"trackName\":\"Alice in Wonderland (Read + Aloud)\", \"artistIds\":[2683818, 507384789], \"artworkUrl60\":\"http://a1.mzstatic.com/us/r30/Publication/b0/a4/8e/mzi.wlzatygj.60x60-50.jpg\", + \"artistViewUrl\":\"http://itunes.apple.com/us/artist/lewis-carroll-s.-hwangbo/id2683818?mt=11&uo=4\", + \"trackCensoredName\":\"Alice in Wonderland (Read Aloud)\", \"artworkUrl100\":\"http://a3.mzstatic.com/us/r30/Publication/b0/a4/8e/mzi.wlzatygj.100x100-75.jpg\", + \"trackViewUrl\":\"http://itunes.apple.com/us/book/alice-in-wonderland-read-aloud/id507384781?mt=11&uo=4\"}, + \n{\"kind\":\"ebook\", \"artistId\":2683818, \"artistName\":\"Lewis Carroll\", + \"price\":2.99, \"description\":\"This title has been removed from sale by Penguin + Group, USA.\", \"genreIds\":[\"10042\", \"38\", \"9031\"], \"releaseDate\":\"2000-12-01T08:00:00Z\", + \"currency\":\"USD\", \"genres\":[\"Classics\", \"Books\", \"Fiction & Literature\"], + \"trackId\":367458133, \"trackName\":\"Alice's Adventures in Wonderland and + Through the Looking Glass\", \"artistIds\":[2683818], \"artworkUrl60\":\"http://a5.mzstatic.com/us/r30/Publication/5a/80/bb/mzi.yzdtapvs.60x60-50.jpg\", + \"artistViewUrl\":\"http://itunes.apple.com/us/artist/lewis-carroll/id2683818?mt=11&uo=4\", + \"trackCensoredName\":\"Alice's Adventures in Wonderland and Through the Looking + Glass\", \"artworkUrl100\":\"http://a1.mzstatic.com/us/r30/Publication/5a/80/bb/mzi.yzdtapvs.100x100-75.jpg\", + \"trackViewUrl\":\"http://itunes.apple.com/us/book/alices-adventures-in-wonderland/id367458133?mt=11&uo=4\", + \"averageUserRating\":2.0, \"userRatingCount\":15}, \n{\"kind\":\"ebook\", \"artistId\":407885619, + \"artistName\":\"Ora Le Brocq\", \"price\":4.99, \n\"description\":\"Alice Totti, + frowned-upon daughter of the stuffy Lord and Lady Totti, is a young lady hiding + in her books and art when she is whisked off by an insane mechanical centipede + to Wonderland. There she finds a land being ripped apart by oppression and mechanization, + coordinated by the tyrannical Queen of Hearts and her mysterious ally, the Bush.\", + \"genreIds\":[\"10043\", \"38\", \"9031\"], \"releaseDate\":\"2010-11-21T08:00:00Z\", + \"currency\":\"USD\", \"genres\":[\"Erotica\", \"Books\", \"Fiction & Literature\"], + \"trackId\":407885618, \"trackName\":\"Alice's Sexual Adventures in Wonderland\", + \"artistIds\":[407885619], \"artworkUrl60\":\"http://a2.mzstatic.com/us/r30/Publication/58/6a/bf/mzi.equwqdpk.60x60-50.jpg\", + \"artistViewUrl\":\"http://itunes.apple.com/us/artist/ora-le-brocq/id407885619?mt=11&uo=4\", + \"trackCensoredName\":\"Alice's Sexual Adventures in Wonderland\", \"artworkUrl100\":\"http://a3.mzstatic.com/us/r30/Publication/58/6a/bf/mzi.equwqdpk.100x100-75.jpg\", + \"trackViewUrl\":\"http://itunes.apple.com/us/book/alices-sexual-adventures-in/id407885618?mt=11&uo=4\"}, + \n{\"kind\":\"ebook\", \"artistId\":2683818, \"artistName\":\"Lewis Carroll\", + \"price\":3.99, \n\"description\":\"

Tor Classics are affordably-priced + editions designed to attract the young reader. Original dynamic cover art enthusiastically + represents the excitement of each story. Appropriate \\\"reader friendly\\\" + type sizes have been chosen for each title—offering clear, accurate, and + readable text.

Life gets strange when Alice sees a white rabbit wearing + a coat and gloves. thens he follows him down a hole. Suddenly she grows smaller, + larger, smaller, larger, smaller--and almost drowns in her own tears--

She + meets a Dodo, a Lizard, a smoking Caterpillar, a Duchess...a Cat without a grin. + Then a grin without a Cat. She has a mad tea party with a Hatter and a Hare.

And + a madder croquet game with a King--where playing card soldiers are the hoops, + flamingoes are the mallets, hedgehogs are the balls and the Queen of Hearts + cries \\\"Off with their heads!\\\" Which lands Alice, the Mock Turtle, and + a Gryphon (a what<\\/i>?) at a trial without rules where death is the penalty! + In Wonderland, anything can happen--

And probably anything will...
<\\/div>\", + \"genreIds\":[\"10042\", \"38\", \"9031\"], \"releaseDate\":\"1992-06-15T07:00:00Z\", + \"currency\":\"USD\", \"genres\":[\"Classics\", \"Books\", \"Fiction & Literature\"], + \"trackId\":379448751, \"trackName\":\"Alice's Adventures in Wonderland\", \"artistIds\":[2683818], + \"artworkUrl60\":\"http://a2.mzstatic.com/us/r30/Publication/1f/6c/a5/mzi.nmttsywg.60x60-50.jpg\", + \"artistViewUrl\":\"http://itunes.apple.com/us/artist/lewis-carroll/id2683818?mt=11&uo=4\", + \"trackCensoredName\":\"Alice's Adventures in Wonderland\", \"artworkUrl100\":\"http://a2.mzstatic.com/us/r30/Publication/1f/6c/a5/mzi.nmttsywg.100x100-75.jpg\", + \"trackViewUrl\":\"http://itunes.apple.com/us/book/alices-adventures-in-wonderland/id379448751?mt=11&uo=4\", + \"averageUserRating\":3.5, \"userRatingCount\":13}, \n{\"kind\":\"ebook\", \"artistId\":193508273, + \"artistName\":\"William Irwin\", \"price\":11.99, \n\"description\":\"The perfect + companion to Lewis Carroll's classic book and director Tim Burton's March 2010 + remake of Alice in Wonderland<\\/i>

Alice?s Adventures in Wonderland<\\/i> + has fascinated children and adults alike for generations. Why does Lewis Carroll + introduce us to such oddities as blue caterpillars who smoke hookahs, cats whose + grins remain after their heads have faded away, and a White Queen who lives + backwards and remembers forwards? Is it all just nonsense? Was Carroll under + the influence? This book probes the deeper underlying meaning in the Alice books, + and reveals a world rich with philosophical life lessons. Tapping into some + of the greatest philosophical minds that ever lived?Aristotle, Hume, Hobbes, + and Nietzsche?Alice in Wonderland and Philosophy explores life?s ultimate questions + through the eyes of perhaps the most endearing heroine in all of literature. +

  • Looks at compelling issues such as perception and reality as well as + how logic fares in a world of lunacy, the Mad Hatter, clocks, and temporal passage
  • Offers + new insights into favorite Alice in Wonderland<\\/i> characters and scenes, + including the Mad Hatter and his tea party, the violent Queen of Hearts, and + the grinning Cheshire Cat<\\/ul>

    Accessible and entertaining, Alice in + Wonderland and Philosophy<\\/i> will enrich your experience of Alice's timeless + adventures with new meaning and fun.\", \"genreIds\":[\"10091\", \"38\", \"9002\"], + \"releaseDate\":\"2009-12-21T08:00:00Z\", \"currency\":\"USD\", \"genres\":[\"Philosophy\", + \"Books\", \"Nonfiction\"], \"trackId\":378840152, \"trackName\":\"Alice in + Wonderland and Philosophy\", \"artistIds\":[193508273], \"artworkUrl60\":\"http://a5.mzstatic.com/us/r30/Publication/88/7e/be/mzi.nuquglhe.60x60-50.jpg\", + \"artistViewUrl\":\"http://itunes.apple.com/us/artist/william-irwin/id193508273?mt=11&uo=4\", + \"trackCensoredName\":\"Alice in Wonderland and Philosophy\", \"artworkUrl100\":\"http://a5.mzstatic.com/us/r30/Publication/88/7e/be/mzi.nuquglhe.100x100-75.jpg\", + \"trackViewUrl\":\"http://itunes.apple.com/us/book/alice-in-wonderland-philosophy/id378840152?mt=11&uo=4\", + \"averageUserRating\":3.5, \"userRatingCount\":9}, \n{\"kind\":\"ebook\", \"artistId\":2683818, + \"artistName\":\"Lewis Carroll\", \"price\":9.99, \n\"description\":\"As opposed to memorizing French phrases or + forcing yourself to get through another dry French grammar or verb manual, this + Dual Language Reader (\\\"DLR\\\") will keep you excited to get to the next + page! <\\/font>
    \\n<\\/font>
    \\nThis compilation features Lewis Carroll's + classic masterpiece: \\\"Alice's Adventures in Wonderland\\\" coupled with the + superb French translation by Henri Bué. <\\/font>
    \\n<\\/font>
    \\nStories + compiled into our DLR format serve as an excellent tool to aid you in developing + the ability to \\\"think\\\" in French.<\\/font>
    \\nThe key to mastering any foreign language is to develop the ability + to \\\"think\\\" in the new language. <\\/font>
    \\n<\\/font>
    \\nA Dual + Language Reader is an excellent tool for helping you to do exactly that!<\\/font>
    \", + \"genreIds\":[\"10066\", \"38\", \"9033\"], \"releaseDate\":\"2011-02-11T08:00:00Z\", + \"currency\":\"USD\", \"genres\":[\"Foreign Languages\", \"Books\", \"Reference\"], + \"trackId\":425118264, \"trackName\":\"Learn French! Alice In Wonderland: Dual + Language Reader (English/French)\", \"artistIds\":[2683818], \"artworkUrl60\":\"http://a2.mzstatic.com/us/r30/Publication/64/08/6a/mzi.uqmakiox.60x60-50.jpg\", + \"artistViewUrl\":\"http://itunes.apple.com/us/artist/lewis-carroll/id2683818?mt=11&uo=4\", + \"trackCensoredName\":\"Learn French! Alice In Wonderland: Dual Language Reader + (English/French)\", \"artworkUrl100\":\"http://a3.mzstatic.com/us/r30/Publication/64/08/6a/mzi.uqmakiox.100x100-75.jpg\", + \"trackViewUrl\":\"http://itunes.apple.com/us/book/learn-french!-alice-in-wonderland/id425118264?mt=11&uo=4\", + \"averageUserRating\":1.5, \"userRatingCount\":4}, \n{\"kind\":\"ebook\", \"artistId\":2683818, + \"artistName\":\"Lewis Carroll\", \"price\":0.99, \n\"description\":\"After + following a white rabbit in a waistcoat down a hole, Alice enters the absurd + and fantastical world of Wonderland \\u2013 a place where meeting hookah-smoking + caterpillars and joining a crazed tea party is as normal as it gets.\", \"genreIds\":[\"10042\", + \"38\", \"9031\"], \"releaseDate\":\"2012-01-16T08:00:00Z\", \"currency\":\"USD\", + \"genres\":[\"Classics\", \"Books\", \"Fiction & Literature\"], \"trackId\":493803646, + \"trackName\":\"Alice's Adventures in Wonderland\", \"artistIds\":[2683818], + \"artworkUrl60\":\"http://a5.mzstatic.com/us/r30/Publication/v4/98/88/c8/9888c889-e1e3-992b-68f3-b688f26e3cf1/cover_alicewonderland-p12.60x60-50.jpg\", + \"artistViewUrl\":\"http://itunes.apple.com/us/artist/lewis-carroll/id2683818?mt=11&uo=4\", + \"trackCensoredName\":\"Alice's Adventures in Wonderland\", \"artworkUrl100\":\"http://a4.mzstatic.com/us/r30/Publication/v4/98/88/c8/9888c889-e1e3-992b-68f3-b688f26e3cf1/cover_alicewonderland-p12.100x100-75.jpg\", + \"trackViewUrl\":\"http://itunes.apple.com/us/book/alices-adventures-in-wonderland/id493803646?mt=11&uo=4\", + \"averageUserRating\":4.5, \"userRatingCount\":4}, \n{\"kind\":\"ebook\", \"artistId\":2683818, + \"artistName\":\"Lewis Carroll\", \"price\":0.99, \n\"description\":\"This file + includes: Alice's Adventures in Wonderland, Through the Looking Glass, Sylvie + and Bruno, Phantasmagoria and Other Poems, The Game of Logic, and The Life and + Letters of Lewis Carroll (by Stuart Dodgson Collingwood). And active/linked + table of contents helps you got quickly to the book you want. According to Wikipedia: + \\\"Charles Lutwidge Dodgson (27 January 1832 \\u2013 14 January 1898), better + known by the pen name Lewis Carroll, was an English author, mathematician, logician, + Anglican deacon and photographer. His most famous writings are Alice's Adventures + in Wonderland and its sequel Through the Looking-Glass as well as the poems + \\\"The Hunting of the Snark\\\" and \\\"Jabberwocky\\\", all considered to + be within the genre of literary nonsense. His facility at word play, logic, + and fantasy has delighted audiences ranging from children to the literary elite, + and beyond this his work has become embedded deeply in modern culture, directly + influencing many artists.\\\"\", \"genreIds\":[\"10081\", \"38\", \"9010\"], + \"releaseDate\":\"2009-09-01T07:00:00Z\", \"currency\":\"USD\", \"genres\":[\"Children's + Fiction\", \"Books\", \"Children & Teens\"], \"trackId\":411895049, \"trackName\":\"Classic + Children's Books: Alice in Wonderland and five other books by Lewis Carroll + in a single file\", \"artistIds\":[2683818], \"artworkUrl60\":\"http://a5.mzstatic.com/us/r30/Publication/d2/53/2f/mzi.atwqqvwu.60x60-50.jpg\", + \"artistViewUrl\":\"http://itunes.apple.com/us/artist/lewis-carroll/id2683818?mt=11&uo=4\", + \"trackCensoredName\":\"Classic Children's Books: Alice in Wonderland and five + other books by Lewis Carroll in a single file\", \"artworkUrl100\":\"http://a2.mzstatic.com/us/r30/Publication/d2/53/2f/mzi.atwqqvwu.100x100-75.jpg\", + \"trackViewUrl\":\"http://itunes.apple.com/us/book/classic-childrens-books-alice/id411895049?mt=11&uo=4\"}, + \n{\"kind\":\"ebook\", \"artistId\":426237969, \"artistName\":\"J. T. Holden\", + \"price\":2.99, \"description\":\"Lewis Carroll's timeless classic is reimagined + through the lyrical language of Wonderland...where familiar faces and new twists + abound!\", \"genreIds\":[\"10081\", \"38\", \"9010\", \"9031\", \"10093\"], + \"releaseDate\":\"2011-03-01T08:00:00Z\", \"currency\":\"USD\", \"genres\":[\"Children's + Fiction\", \"Books\", \"Children & Teens\", \"Fiction & Literature\", \"Poetry\"], + \"trackId\":426237506, \"trackName\":\"Alice in Verse\", \"artistIds\":[426237969], + \"artworkUrl60\":\"http://a5.mzstatic.com/us/r30/Publication/b2/c7/77/mzi.fwqxaoch.60x60-50.jpg\", + \"artistViewUrl\":\"http://itunes.apple.com/us/artist/j.-t.-holden/id426237969?mt=11&uo=4\", + \"trackCensoredName\":\"Alice in Verse\", \"artworkUrl100\":\"http://a5.mzstatic.com/us/r30/Publication/b2/c7/77/mzi.fwqxaoch.100x100-75.jpg\", + \"trackViewUrl\":\"http://itunes.apple.com/us/book/alice-in-verse/id426237506?mt=11&uo=4\", + \"averageUserRating\":5.0, \"userRatingCount\":2}, \n{\"kind\":\"ebook\", \"artistId\":2683818, + \"artistName\":\"Lewis Carroll\", \"price\":1.99, \n\"description\":\"Alice's + Adventures in Wonderland (commonly shortened to Alice in Wonderland) is a novel + written by English author Charles Lutwidge Dodgson under the pseudonym Lewis + Carroll. It tells of a girl named Alice who falls down a rabbit hole into a + fantasy world (Wonderland) populated by peculiar, anthropomorphic creatures. + The tale plays with logic, giving the story lasting popularity with adults as + well as children. It is considered to be one of the best examples of the literary + nonsense genre, and its narrative course and structure have been enormously + influential, especially in the fantasy genre.\", \"genreIds\":[\"10081\", \"38\", + \"9010\"], \"releaseDate\":\"2011-08-18T09:57:59Z\", \"currency\":\"USD\", \"genres\":[\"Children's + Fiction\", \"Books\", \"Children & Teens\"], \"trackId\":458089207, \"trackName\":\"Alice's + Adventures in Wonderland\", \"artistIds\":[2683818], \"artworkUrl60\":\"http://a1.mzstatic.com/us/r30/Publication/15/b8/75/mzi.yqecrdhh.60x60-50.jpg\", + \"artistViewUrl\":\"http://itunes.apple.com/us/artist/lewis-carroll/id2683818?mt=11&uo=4\", + \"trackCensoredName\":\"Alice's Adventures in Wonderland\", \"artworkUrl100\":\"http://a4.mzstatic.com/us/r30/Publication/15/b8/75/mzi.yqecrdhh.100x100-75.jpg\", + \"trackViewUrl\":\"http://itunes.apple.com/us/book/alices-adventures-in-wonderland/id458089207?mt=11&uo=4\", + \"averageUserRating\":4.5, \"userRatingCount\":3}, \n{\"kind\":\"ebook\", \"artistId\":486493, + \"artistName\":\"Danny Elfman\", \"price\":14.99, \n\"description\":\"Our folio + for Disney's lauded live action/animated hit directed by Tim Burton matches + the soundtrack, with piano solo arrangements of a dozen songs from Danny Elfman's + score (Alice and Bayard's Journey * Alice Decides * Alice Escapes * Alice Reprise + #4 * Alice Returns * Alice's Theme * Blood of the Jabberwocky * The Dungeon + * Little Alice * Only a Dream * Proposal * The White Queen), plus the single + \\\"Alice\\\" by Avril Lavigne. Includes eight eye-popping pages of full-color + art from this visually stimulating film.\", \"genreIds\":[\"10087\", \"38\", + \"9007\"], \"releaseDate\":\"2010-04-01T07:00:00Z\", \"currency\":\"USD\", \"genres\":[\"Music\", + \"Books\", \"Arts & Entertainment\"], \"trackId\":510050240, \"trackName\":\"Alice + in Wonderland\", \"artistIds\":[486493], \"artworkUrl60\":\"http://a2.mzstatic.com/us/r30/Publication/v4/e5/93/7f/e5937f17-a1f0-0b95-27eb-11fc519148f0/cover.60x60-50.jpg\", + \"artistViewUrl\":\"http://itunes.apple.com/us/artist/danny-elfman/id486493?mt=11&uo=4\", + \"trackCensoredName\":\"Alice in Wonderland\", \"artworkUrl100\":\"http://a2.mzstatic.com/us/r30/Publication/v4/e5/93/7f/e5937f17-a1f0-0b95-27eb-11fc519148f0/cover.100x100-75.jpg\", + \"trackViewUrl\":\"http://itunes.apple.com/us/book/alice-in-wonderland/id510050240?mt=11&uo=4\"}, + \n{\"kind\":\"ebook\", \"artistId\":428428594, \"artistName\":\"Shooter3704\", + \"price\":4.99, \n\"description\":\"It started with Alice - a model for a photographer + called The Shooter. She started wanting those tame poses, then slowly unwound + until she posed nude - and then the sex began and got hotter and hotter until + Alice could do no more than demand the big black cock f*****g she craved.\", + \"genreIds\":[\"10043\", \"38\", \"9031\"], \"releaseDate\":\"2011-05-13T07:00:00Z\", + \"currency\":\"USD\", \"genres\":[\"Erotica\", \"Books\", \"Fiction & Literature\"], + \"trackId\":440685876, \"trackName\":\"Alice In Wonderland\", \"artistIds\":[428428594], + \"artworkUrl60\":\"http://a1.mzstatic.com/us/r30/Publication/72/21/a9/mzi.bgrpzfmt.60x60-50.jpg\", + \"artistViewUrl\":\"http://itunes.apple.com/us/artist/shooter3704/id428428594?mt=11&uo=4\", + \"trackCensoredName\":\"Alice In Wonderland\", \"artworkUrl100\":\"http://a3.mzstatic.com/us/r30/Publication/72/21/a9/mzi.bgrpzfmt.100x100-75.jpg\", + \"trackViewUrl\":\"http://itunes.apple.com/us/book/alice-in-wonderland/id440685876?mt=11&uo=4\"}, + \n{\"kind\":\"ebook\", \"artistId\":498960445, \"artistName\":\"Leo commerce\", + \"price\":1.99, \n\"description\":\"Picture Book for kids.
    \\nThis picture + book is dedicated for youngsters. Narration is supported beside, standard read + option. Team of professionals has been working on this picture book carefully + choosing colors, pictures and drawing characters according to the kids interests.\", + \"genreIds\":[\"10015\", \"38\", \"9026\"], \"releaseDate\":\"2012-01-25T08:00:00Z\", + \"currency\":\"USD\", \"genres\":[\"Graphic Novels\", \"Books\", \"Comics & + Graphic Novels\"], \"trackId\":498960444, \"trackName\":\"Alice in Wonderland\", + \"artistIds\":[498960445], \"artworkUrl60\":\"http://a1.mzstatic.com/us/r30/Publication/8c/93/37/mzi.mcjbvgfu.60x60-50.jpg\", + \"artistViewUrl\":\"http://itunes.apple.com/us/artist/leo-commerce/id498960445?mt=11&uo=4\", + \"trackCensoredName\":\"Alice in Wonderland\", \"artworkUrl100\":\"http://a5.mzstatic.com/us/r30/Publication/8c/93/37/mzi.mcjbvgfu.100x100-75.jpg\", + \"trackViewUrl\":\"http://itunes.apple.com/us/book/alice-in-wonderland/id498960444?mt=11&uo=4\"}, + \n{\"kind\":\"ebook\", \"artistId\":2683818, \"artistName\":\"Lewis Carroll\", + \"price\":2.99, \n\"description\":\"ALICE'S ADVENTURES IN WONDERLAND/ LE AVVENTURE + DI ALICE NEL PAESE DELLE MERAVIGLIE: This unique book features paragraph by + paragraph translations from English to Italian, allowing the reader to learn + Italian vocabulary and sentence structure while enjoying a classic. This is + a fun and affordable way to learn a second language. Previous experience with + Italian is recommended, but ambitious beginners are welcome to give it a try. + If you have no experience with Italian, it may be helpful to look up Italian + pronunciation before starting this book. QUICK SYNOPSIS: \\\"Alice's Adventures + in Wonderland\\\" is the famous story of a girl named Alice who falls down a + rabbit hole into a fantasy world. There she experiences many mishaps and adventures + and meets many strange creatures.\", \"genreIds\":[\"10066\", \"38\", \"9033\", + \"9031\", \"10039\"], \"releaseDate\":\"2011-12-09T08:00:00Z\", \"currency\":\"USD\", + \"genres\":[\"Foreign Languages\", \"Books\", \"Reference\", \"Fiction & Literature\", + \"Action & Adventure\"], \"trackId\":489943584, \"trackName\":\"Learn Italian! + Impara l'Inglese! ALICE'S ADVENTURES IN WONDERLAND: In Italian and English\", + \"artistIds\":[2683818], \"artworkUrl60\":\"http://a4.mzstatic.com/us/r30/Publication/76/24/45/mzi.enrojzwh.60x60-50.jpg\", + \"artistViewUrl\":\"http://itunes.apple.com/us/artist/lewis-carroll/id2683818?mt=11&uo=4\", + \"trackCensoredName\":\"Learn Italian! Impara l'Inglese! ALICE'S ADVENTURES + IN WONDERLAND: In Italian and English\", \"artworkUrl100\":\"http://a5.mzstatic.com/us/r30/Publication/76/24/45/mzi.enrojzwh.100x100-75.jpg\", + \"trackViewUrl\":\"http://itunes.apple.com/us/book/learn-italian!-impara-linglese!/id489943584?mt=11&uo=4\", + \"averageUserRating\":2.0, \"userRatingCount\":1}, \n{\"kind\":\"ebook\", \"artistId\":505470805, + \"artistName\":\"Lewis Helfand, Rajesh Nagulakonda, Jayshree Das, Prasanth K + G, Lewis Carroll, Bhavnath Chaudhary, Vishal Sharma, Divya Dubey & Andrew Dodd\", + \"price\":3.99, \n\"description\":\"Alice was just an ordinary girl - imaginative + and curious and thirsting for adventure. She was an ordinary girl, that is, + until she found herself instantly transported to a place that was anything but + ordinary. After diving down a rabbit hole, young Alice encounters a magical + world ruled by a vicious Queen. It is a world where anything can happen; a world + filled with a talking caterpillar, a puppy as big as a house, and a Cheshire + cat that can disappear and reappear in the blink of an eye. Are these colorful + characters real? And if so, how will Alice ever find her way back home? Beloved + for more than a century, Alice's Adventures in Wonderland is widely viewed as + Lewis Carroll's masterpiece; a fantastic journey that will never be forgotten.\", + \"genreIds\":[\"10015\", \"38\", \"9026\"], \"releaseDate\":\"2010-07-01T07:00:00Z\", + \"currency\":\"USD\", \"genres\":[\"Graphic Novels\", \"Books\", \"Comics & + Graphic Novels\"], \"trackId\":505554349, \"trackName\":\"Alice in Wonderland + GN\", \"artistIds\":[505470805, 504828510, 505541830, 505541761, 2683818, 505550306, + 505470796, 505539687, 505441839], \"artworkUrl60\":\"http://a3.mzstatic.com/us/r30/Publication/42/5f/a0/mzi.nwpukbky.60x60-50.jpg\", + \"artistViewUrl\":\"http://itunes.apple.com/us/artist/lewis-helfand-rajesh-nagulakonda/id505470805?mt=11&uo=4\", + \"trackCensoredName\":\"Alice in Wonderland GN\", \"artworkUrl100\":\"http://a2.mzstatic.com/us/r30/Publication/42/5f/a0/mzi.nwpukbky.100x100-75.jpg\", + \"trackViewUrl\":\"http://itunes.apple.com/us/book/alice-in-wonderland-gn/id505554349?mt=11&uo=4\"}, + \n{\"kind\":\"ebook\", \"artistId\":2683818, \"artistName\":\"Lewis Carroll\", + \"price\":5.99, \n\"description\":\"One of the most magical concoctions in children's + literature, Lewis Carroll's tale follows Alice into the upside-down, inside-out + world of Wonderland where she attends the tea party of the Mad Hatter and plays + croquet in the court of the Queen of Hearts\", \"genreIds\":[\"10081\", \"38\", + \"9010\"], \"releaseDate\":\"2009-09-19T07:00:00Z\", \"currency\":\"USD\", \"genres\":[\"Children's + Fiction\", \"Books\", \"Children & Teens\"], \"trackId\":413246419, \"trackName\":\"Alice's + Adventures in Wonderland\", \"artistIds\":[2683818], \"artworkUrl60\":\"http://a2.mzstatic.com/us/r30/Publication/e4/77/13/mzi.zstuuulm.60x60-50.jpg\", + \"artistViewUrl\":\"http://itunes.apple.com/us/artist/lewis-carroll/id2683818?mt=11&uo=4\", + \"trackCensoredName\":\"Alice's Adventures in Wonderland\", \"artworkUrl100\":\"http://a3.mzstatic.com/us/r30/Publication/e4/77/13/mzi.zstuuulm.100x100-75.jpg\", + \"trackViewUrl\":\"http://itunes.apple.com/us/book/alices-adventures-in-wonderland/id413246419?mt=11&uo=4\", + \"averageUserRating\":3.0, \"userRatingCount\":2}, \n{\"kind\":\"ebook\", \"artistId\":2683818, + \"artistName\":\"Lewis Carroll\", \"price\":2.99, \n\"description\":\"Alice + was beginning to get very tired of sitting by her sister on the bank, and of + having nothing to do: once or twice she had peeped into the book her sister + was reading, but it had no pictures or conversations in it, and what is the + use of a book,' thought Alice `without pictures or conversation?\", \"genreIds\":[\"10044\", + \"38\", \"9020\"], \"releaseDate\":\"2010-04-21T07:00:00Z\", \"currency\":\"USD\", + \"genres\":[\"Fantasy\", \"Books\", \"Sci-Fi & Fantasy\"], \"trackId\":374820954, + \"trackName\":\"Alice's Adventures in Wonderland\", \"artistIds\":[2683818], + \"artworkUrl60\":\"http://a3.mzstatic.com/us/r30/Publication/aa/29/5c/mzi.cnomvemm.60x60-50.jpg\", + \"artistViewUrl\":\"http://itunes.apple.com/us/artist/lewis-carroll/id2683818?mt=11&uo=4\", + \"trackCensoredName\":\"Alice's Adventures in Wonderland\", \"artworkUrl100\":\"http://a5.mzstatic.com/us/r30/Publication/aa/29/5c/mzi.cnomvemm.100x100-75.jpg\", + \"trackViewUrl\":\"http://itunes.apple.com/us/book/alices-adventures-in-wonderland/id374820954?mt=11&uo=4\", + \"averageUserRating\":3.0, \"userRatingCount\":2}, \n{\"kind\":\"ebook\", \"artistId\":382482232, + \"artistName\":\"Shmoop\", \"price\":2.99, \n\"description\":\"Take your understanding of Alice's Adventures in Wonderland and + Through the Looking-Glass by Lewis Carroll to a whole new level, anywhere you + go: on a plane, on a mountain, in a canoe, under a tree. Or grab a flashlight + and read Shmoop under the covers.<\\/font>
    \\n<\\/font>
    \\n<\\/font>
    \\nShmoop's award-winning learning guides + are now available on your favorite eBook reader. Shmoop eBooks are like a trusted, + fun, chatty, expert literature-tour-guide always by your side, no matter where + you are (or how late it is at night). You'll find thought-provoking character + analyses, quotes, summaries, themes, symbols, trivia, and lots of insightful + commentary in Shmoop's literature guides. Teachers and experts from top universities, + including Stanford, UC Berkeley, and Harvard have lovingly created these guides + to get your brain bubbling.<\\/font>
    \\n<\\/font>
    \\n <\\/font>
    \\n<\\/font>
    \\nShmoop + is here to make you a better lover of literature and to help you discover connections + to other works of literature, history, current events, and pop culture. These + interactive study guides will help you discover and rediscover some of the greatest + works of all time. For more info, check out http://www.shmoop.com/literature/<\\/font>
    \", + \"genreIds\":[\"10136\", \"38\", \"9033\"], \"releaseDate\":\"2010-07-15T07:00:00Z\", + \"currency\":\"USD\", \"genres\":[\"Study Aids\", \"Books\", \"Reference\"], + \"trackId\":382726515, \"trackName\":\"Alice's Adventures in Wonderland and + Through the Looking-Glass\", \"artistIds\":[382482232], \"artworkUrl60\":\"http://a3.mzstatic.com/us/r30/Publication/20/ce/82/mzi.limbhqar.60x60-50.jpg\", + \"artistViewUrl\":\"http://itunes.apple.com/us/artist/shmoop/id382482232?mt=11&uo=4\", + \"trackCensoredName\":\"Alice's Adventures in Wonderland and Through the Looking-Glass\", + \"artworkUrl100\":\"http://a3.mzstatic.com/us/r30/Publication/20/ce/82/mzi.limbhqar.100x100-75.jpg\", + \"trackViewUrl\":\"http://itunes.apple.com/us/book/alices-adventures-in-wonderland/id382726515?mt=11&uo=4\", + \"averageUserRating\":1.5, \"userRatingCount\":2}, \n{\"kind\":\"ebook\", \"artistId\":2683818, + \"artistName\":\"Lewis Carroll\", \"price\":3.99, \n\"description\":\"CSF Publishing's + Classic Literature Collection includes title's carefully updated and corrected + from the original text, and features new enhancements such as the author's complete + biography and bibliography, story description, list of characters and their + role in the story. With over 80 original illustrations. ABOUT THE BOOKS: 1/ + Alice's Adventures in Wonderland is an 1865 novel written by English author + Lewis Carroll. It tells of a girl named Alice who falls down a rabbit hole into + a fantasy world (Wonderland) populated by peculiar, anthropomorphic creatures. + The tale plays with logic, giving the story lasting popularity with adults as + well as children. It is considered to be one of the best examples of the literary + nonsense genre, and its narrative course and structure have been enormously + influential, especially in the fantasy genre. 2/ Through the Looking-Glass is + the sequel to Alice's Adventures in Wonderland (1865). The themes and settings + of Through the Looking-Glass make it a kind of mirror image of Wonderland: the + first book begins outdoors, in the warm month of May (4 May), uses frequent + changes in size as a plot device, and draws on the imagery of playing cards; + the second opens indoors on a snowy, wintry night exactly six months later, + on 4 November (the day before Guy Fawkes Night), uses frequent changes in time + and spatial directions as a plot device, and draws on the imagery of chess. + In it, there are many mirror themes, including opposites, time running backwards, + and so on.\", \"genreIds\":[\"10081\", \"38\", \"9010\", \"9031\", \"10042\", + \"10049\"], \"releaseDate\":\"2011-08-22T07:00:00Z\", \"currency\":\"USD\", + \"genres\":[\"Children's Fiction\", \"Books\", \"Children & Teens\", \"Fiction + & Literature\", \"Classics\", \"Literary\"], \"trackId\":459366433, \"trackName\":\"Alice's + Adventures in Wonderland, Through the Looking-Glass\", \"artistIds\":[2683818], + \"artworkUrl60\":\"http://a3.mzstatic.com/us/r30/Publication/e3/f0/57/mzi.mjrvqwbw.60x60-50.jpg\", + \"artistViewUrl\":\"http://itunes.apple.com/us/artist/lewis-carroll/id2683818?mt=11&uo=4\", + \"trackCensoredName\":\"Alice's Adventures in Wonderland, Through the Looking-Glass\", + \"artworkUrl100\":\"http://a4.mzstatic.com/us/r30/Publication/e3/f0/57/mzi.mjrvqwbw.100x100-75.jpg\", + \"trackViewUrl\":\"http://itunes.apple.com/us/book/alices-adventures-in-wonderland/id459366433?mt=11&uo=4\"}, + \n{\"kind\":\"ebook\", \"artistId\":514956033, \"artistName\":\"Edward Wakeling + & Jenny Woolf\", \"price\":9.99, \n\"description\":\"

    A new biography + of Lewis Carroll, just in time for the release of Tim Burton’s all-star + <\\/I>Alice in Wonderland

    <\\/P><\\/B>Lewis Carroll was brilliant, secretive + and self contradictory. He reveled in double meanings and puzzles, in his fiction + and his life. Jenny Woolf’s The Mystery of Lewis Carroll <\\/I>shines + a new light on the creator of Alice In Wonderland <\\/I>and brings to life + this fascinating, but sometimes exasperating human being whom some have tried + to hide. Using rarely-seen and recently discovered sources, such as Carroll’s + accounts ledger and unpublished correspondence with the “real” Alice’s + family, Woolf sets Lewis Carroll firmly in the context of the English Victorian + age and answers many intriguing questions about the man who wrote the Alice + books, such as:

    <\\/P>• Was it Alice or her older sister that caused + him to break with the Liddell family?

    <\\/P>• How true is the gossip + about p********a and certain adult women that followed him?

    <\\/P>• + How true is the “romantic secret” which many think ruined Carroll’s + personal life?

    <\\/P>• Who caused Carroll major financial trouble and + why did Carroll successfully conceal that person’s identity and actions? +

    <\\/P>Woolf answers these and other questions to bring readers yet another + look at one of the most elusive English writers the world has known.

    <\\/P><\\/DIV><\\/DIV>\", + \"genreIds\":[\"9008\", \"38\"], \"releaseDate\":\"2010-02-02T08:00:00Z\", \"currency\":\"USD\", + \"genres\":[\"Biographies & Memoirs\", \"Books\"], \"trackId\":385982851, \"trackName\":\"The + Mystery of Lewis Carroll\", \"artistIds\":[514956033, 413463884], \"artworkUrl60\":\"http://a5.mzstatic.com/us/r30/Publication/17/eb/82/mzi.azrbqwxu.60x60-50.jpg\", + \"artistViewUrl\":\"http://itunes.apple.com/us/artist/edward-wakeling-jenny-woolf/id514956033?mt=11&uo=4\", + \"trackCensoredName\":\"The Mystery of Lewis Carroll\", \"artworkUrl100\":\"http://a2.mzstatic.com/us/r30/Publication/17/eb/82/mzi.azrbqwxu.100x100-75.jpg\", + \"trackViewUrl\":\"http://itunes.apple.com/us/book/the-mystery-of-lewis-carroll/id385982851?mt=11&uo=4\"}]\n}\n\n\n" + http_version: '1.1' diff --git a/spec/itunes/client_spec.rb b/spec/tunes/client_spec.rb similarity index 100% rename from spec/itunes/client_spec.rb rename to spec/tunes/client_spec.rb diff --git a/spec/itunes_spec.rb b/spec/tunes_spec.rb similarity index 87% rename from spec/itunes_spec.rb rename to spec/tunes_spec.rb index 4228739..8f43c66 100644 --- a/spec/itunes_spec.rb +++ b/spec/tunes_spec.rb @@ -14,7 +14,7 @@ end describe '.client' do - it 'should return and ITunes::Client' do + it 'should return and Tunes::Client' do Tunes.client.should be_a Tunes::Client end end @@ -26,14 +26,14 @@ end describe ".new" do - it "should return an ITunes::Client" do - Tunes.new.should be_a ITunes::Client + it "should return an Tunes::Client" do + Tunes.new.should be_a Tunes::Client end end describe ".limit" do it 'should return the default limit' do - Tunes.limit.should == ITunes::Configuration::DEFAULT_LIMIT + Tunes.limit.should == Tunes::Configuration::DEFAULT_LIMIT end end