onebox 1.0.1 → 1.1.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (153) hide show
  1. checksums.yaml +4 -4
  2. data/.rspec +4 -0
  3. data/.travis.yml +4 -0
  4. data/README.md +154 -113
  5. data/lib/onebox.rb +6 -3
  6. data/lib/onebox/engine.rb +28 -26
  7. data/lib/onebox/engine/amazon_onebox.rb +4 -2
  8. data/lib/onebox/engine/bliptv_onebox.rb +4 -2
  9. data/lib/onebox/engine/clikthrough_onebox.rb +4 -2
  10. data/lib/onebox/engine/college_humor_onebox.rb +3 -2
  11. data/lib/onebox/engine/dailymotion_onebox.rb +4 -2
  12. data/lib/onebox/engine/dotsub_onebox.rb +4 -2
  13. data/lib/onebox/engine/example_onebox.rb +4 -5
  14. data/lib/onebox/engine/flickr_onebox.rb +3 -2
  15. data/lib/onebox/engine/funny_or_die_onebox.rb +4 -2
  16. data/lib/onebox/engine/github_blob_onebox.rb +28 -0
  17. data/lib/onebox/engine/github_commit_onebox.rb +43 -0
  18. data/lib/onebox/engine/github_gist_onebox.rb +33 -0
  19. data/lib/onebox/engine/github_pullrequest_onebox.rb +43 -0
  20. data/lib/onebox/engine/html.rb +1 -1
  21. data/lib/onebox/engine/hulu_onebox.rb +5 -2
  22. data/lib/onebox/engine/imgur_image_onebox.rb +26 -0
  23. data/lib/onebox/engine/itunes_onebox.rb +28 -0
  24. data/lib/onebox/engine/json.rb +11 -0
  25. data/lib/onebox/engine/kinomap_onebox.rb +27 -0
  26. data/lib/onebox/engine/nfb_onebox.rb +5 -2
  27. data/lib/onebox/engine/open_graph.rb +1 -1
  28. data/lib/onebox/engine/qik_onebox.rb +4 -2
  29. data/lib/onebox/engine/revision3_onebox.rb +3 -2
  30. data/lib/onebox/engine/slideshare_onebox.rb +4 -2
  31. data/lib/onebox/engine/sound_cloud_onebox.rb +4 -2
  32. data/lib/onebox/engine/spotify_onebox.rb +27 -0
  33. data/lib/onebox/engine/stack_exchange_onebox.rb +4 -2
  34. data/lib/onebox/engine/ted_onebox.rb +5 -2
  35. data/lib/onebox/engine/twitter_onebox.rb +31 -0
  36. data/lib/onebox/engine/viddler_onebox.rb +5 -3
  37. data/lib/onebox/engine/vimeo_onebox.rb +3 -2
  38. data/lib/onebox/engine/wikipedia_onebox.rb +4 -2
  39. data/lib/onebox/engine/yfrog_onebox.rb +5 -2
  40. data/lib/onebox/version.rb +1 -1
  41. data/lib/onebox/view.rb +21 -0
  42. data/onebox.gemspec +1 -1
  43. data/spec/fixtures/githubblob.response +922 -0
  44. data/spec/fixtures/githubcommit.response +87 -0
  45. data/spec/fixtures/githubgist.response +468 -0
  46. data/spec/fixtures/githubpullrequest.response +216 -0
  47. data/spec/fixtures/imguralbum.response +941 -0
  48. data/spec/fixtures/{imgur.response → imgurimage.response} +870 -890
  49. data/spec/fixtures/itunes.response +402 -0
  50. data/spec/fixtures/{rottentomatoes_fresh.response → rottentomatoesfresh.response} +0 -0
  51. data/spec/fixtures/{rottentomatoes_incomplete.response → rottentomatoesincomplete.response} +0 -0
  52. data/spec/fixtures/{rottentomatoes_rotten.response → rottentomatoesrotten.response} +0 -0
  53. data/spec/fixtures/spotify.response +250 -0
  54. data/spec/fixtures/{wikipedia_redirected.response → wikipediaredirected.response} +0 -0
  55. data/spec/lib/onebox/engine/{amazon_spec.rb → amazon_onebox_spec.rb} +7 -4
  56. data/spec/lib/onebox/engine/{bliptv_spec.rb → bliptv_onebox_spec.rb} +7 -4
  57. data/spec/lib/onebox/engine/{clikthrough_spec.rb → clikthrough_onebox_spec.rb} +7 -4
  58. data/spec/lib/onebox/engine/{college_humor_spec.rb → college_humor_onebox_spec.rb} +7 -4
  59. data/spec/lib/onebox/engine/{dailymotion_spec.rb → dailymotion_onebox_spec.rb} +7 -4
  60. data/spec/lib/onebox/engine/{dotsub_spec.rb → dotsub_onebox_spec.rb} +7 -4
  61. data/spec/lib/onebox/engine/example_onebox_spec.rb +21 -0
  62. data/spec/lib/onebox/engine/{flickr_spec.rb → flickr_onebox_spec.rb} +7 -4
  63. data/spec/lib/onebox/engine/{funny_or_die_spec.rb → funny_or_die_onebox_spec.rb} +7 -4
  64. data/spec/lib/onebox/engine/github_blob_onebox_spec.rb +30 -0
  65. data/spec/lib/onebox/engine/github_commit_onebox_spec.rb +61 -0
  66. data/spec/lib/onebox/engine/github_gist_onebox_spec.rb +29 -0
  67. data/spec/lib/onebox/engine/github_pullrequest_onebox_spec.rb +58 -0
  68. data/spec/lib/onebox/engine/html_spec.rb +27 -0
  69. data/spec/lib/onebox/engine/{hulu_spec.rb → hulu_onebox_spec.rb} +7 -4
  70. data/spec/lib/onebox/engine/imgur_image_onebox_spec.rb +29 -0
  71. data/spec/lib/onebox/engine/itunes_onebox_spec.rb +29 -0
  72. data/spec/lib/onebox/engine/json_spec.rb +27 -0
  73. data/spec/lib/onebox/engine/kinomap_onebox_spec.rb +37 -0
  74. data/spec/lib/onebox/engine/{nfb_spec.rb → nfb_onebox_spec.rb} +7 -4
  75. data/spec/lib/onebox/engine/open_graph_spec.rb +27 -0
  76. data/spec/lib/onebox/engine/{qik_spec.rb → qik_onebox_spec.rb} +7 -4
  77. data/spec/lib/onebox/engine/{revision3_spec.rb → revision3_onebox_spec.rb} +7 -4
  78. data/spec/lib/onebox/engine/{slideshare_spec.rb → slideshare_onebox_spec.rb} +7 -4
  79. data/spec/lib/onebox/engine/{sound_cloud_spec.rb → sound_cloud_onebox_spec.rb} +7 -4
  80. data/spec/lib/onebox/engine/spotify_onebox_spec.rb +36 -0
  81. data/spec/lib/onebox/engine/{stack_exchange_spec.rb → stack_exchange_onebox_spec.rb} +7 -4
  82. data/spec/lib/onebox/engine/{ted_spec.rb → ted_onebox_spec.rb} +7 -4
  83. data/spec/lib/onebox/engine/twitter_onebox_spec.rb +47 -0
  84. data/spec/lib/onebox/engine/{viddler_spec.rb → viddler_onebox_spec.rb} +7 -4
  85. data/spec/lib/onebox/engine/{vimeo_spec.rb → vimeo_onebox_spec.rb} +7 -4
  86. data/spec/lib/onebox/engine/{wikipedia_spec.rb → wikipedia_onebox_spec.rb} +7 -4
  87. data/spec/lib/onebox/engine/{yfrog_spec.rb → yfrog_onebox_spec.rb} +7 -4
  88. data/spec/lib/onebox/engine_spec.rb +38 -27
  89. data/spec/lib/onebox/preview_spec.rb +3 -1
  90. data/spec/lib/onebox/view_spec.rb +16 -0
  91. data/spec/lib/onebox_spec.rb +1 -1
  92. data/spec/spec_helper.rb +8 -3
  93. data/spec/support/html_spec_helper.rb +1 -1
  94. data/templates/_layout.mustache +4 -0
  95. data/templates/amazon.mustache +5 -0
  96. data/templates/bliptv.mustache +5 -0
  97. data/templates/clikthrough.mustache +4 -0
  98. data/templates/collegehumor.mustache +5 -0
  99. data/templates/dailymotion.mustache +5 -0
  100. data/templates/dotsub.mustache +5 -0
  101. data/templates/example.mustache +2 -0
  102. data/templates/flickr.mustache +4 -0
  103. data/templates/funnyordie.mustache +6 -0
  104. data/templates/githubblob.mustache +5 -0
  105. data/templates/githubcommit.mustache +11 -0
  106. data/templates/githubgist.mustache +3 -0
  107. data/templates/githubpullrequest.mustache +14 -0
  108. data/templates/hulu.mustache +6 -0
  109. data/templates/imgurimage.mustache +3 -0
  110. data/templates/itunes.mustache +4 -0
  111. data/templates/kinomap.mustache +5 -0
  112. data/templates/nfb.mustache +5 -0
  113. data/templates/qik.mustache +4 -0
  114. data/templates/revision3.mustache +5 -0
  115. data/templates/slideshare.mustache +4 -0
  116. data/templates/soundcloud.mustache +5 -0
  117. data/templates/spotify.mustache +4 -0
  118. data/templates/stackexchange.mustache +3 -0
  119. data/templates/ted.mustache +5 -0
  120. data/templates/twitter.mustache +7 -0
  121. data/templates/viddler.mustache +5 -0
  122. data/templates/vimeo.mustache +5 -0
  123. data/templates/wikipedia.mustache +4 -0
  124. data/templates/yfrog.mustache +4 -0
  125. metadata +139 -90
  126. data/spec/fixtures/apple.response +0 -391
  127. data/spec/fixtures/clickthrough.response +0 -1472
  128. data/spec/fixtures/gist.response +0 -282
  129. data/spec/fixtures/github_blob.response +0 -706
  130. data/spec/fixtures/github_commit.response +0 -881
  131. data/spec/fixtures/github_pullrequest.response +0 -1619
  132. data/spec/lib/onebox/engine/example_spec.rb +0 -18
  133. data/templates/amazon.handlebars +0 -9
  134. data/templates/bliptv.handlebars +0 -10
  135. data/templates/clickthrough.handlebars +0 -8
  136. data/templates/clikthrough.handlebars +0 -8
  137. data/templates/collegehumor.handlebars +0 -9
  138. data/templates/dailymotion.handlebars +0 -9
  139. data/templates/dotsub.handlebars +0 -9
  140. data/templates/flickr.handlebars +0 -8
  141. data/templates/funnyordie.handlebars +0 -9
  142. data/templates/hulu.handlebars +0 -9
  143. data/templates/nfb.handlebars +0 -8
  144. data/templates/qik.handlebars +0 -7
  145. data/templates/revision3.handlebars +0 -9
  146. data/templates/slideshare.handlebars +0 -8
  147. data/templates/soundcloud.handlebars +0 -9
  148. data/templates/stackexchange.handlebars +0 -7
  149. data/templates/ted.handlebars +0 -8
  150. data/templates/viddler.handlebars +0 -9
  151. data/templates/vimeo.handlebars +0 -9
  152. data/templates/wikipedia.handlebars +0 -8
  153. data/templates/yfrog.handlebars +0 -8
@@ -0,0 +1,402 @@
1
+
2
+ <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
3
+ <html prefix="og: http://ogp.me/ns#" xmlns="http://www.apple.com/itms/" lang="en">
4
+ <head>
5
+ <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /><meta name="keywords" content="Minecraft – Pocket Edition, Mojang, Games, Simulation, ios apps, app, appstore, app store, iphone, ipad, ipod touch, itouch, itunes" /><meta name="description" content="Read reviews, get customer ratings, see screenshots, and learn more about Minecraft – Pocket Edition on the App Store. Download Minecraft – Pocket Edition and enjoy it on your iPhone, iPad, and iPod touch." /><meta name="platform-cache-id" content="8" /><meta content="Minecraft – Pocket Edition" property="og:title" /><meta content="Get Minecraft – Pocket Edition on the App Store. See screenshots and ratings, and read customer reviews." property="og:description" /><meta content="App Store" property="og:site_name" /><meta content="http://a5.mzstatic.com/us/r30/Purple/v4/92/72/c0/9272c08a-a972-08cc-ac0e-2e1d4c423d4b/mzl.bxerxqln.png" property="og:image" /><meta content="image/png" property="og:image:type" />
6
+ <link rel="canonical" href="https://itunes.apple.com/us/app/minecraft-pocket-edition/id479516143?mt=8" />
7
+ <title>Minecraft – Pocket Edition for iPhone, iPad, and iPod touch on the iTunes App Store</title>
8
+
9
+ <script>
10
+ if (!window.its) {
11
+ window.its = {};
12
+ }
13
+ its.markupLoadStartTime = new Date().getTime();
14
+ if (!window.onerror) window.onerror = function(message, url, lineNumber) {
15
+ if (!window._earlyOnerrorException) {
16
+ window._earlyOnerrorException = {message: message,
17
+ url: url,
18
+ lineNumber: lineNumber};
19
+ }
20
+ };
21
+ </script>
22
+ <link charset="utf-8" rel="stylesheet" type="text/css" href="https://s.mzstatic.com/htmlResources/A3E7/web-storefront-base.css" />
23
+ <link charset="utf-8" rel="stylesheet" type="text/css" href="https://s.mzstatic.com/htmlResources/A3E7/web-storefront-preview.css" />
24
+
25
+
26
+
27
+ <script type="text/javascript" charset="utf-8" src="/htmlResources/A3E7/frameworks-primaryinit01.js"></script>
28
+
29
+
30
+ <script type="text/javascript" charset="utf-8">its.serverData={"pageData": {"BUY_PARAM_PRICETYPE": "STDQ","basePrice": 6.99,"isFree": false,"volumePrice": 6.99,"basePriceForDisplay": "$6.99","inflectionValue": 1,"productAdamId": "479516143","productType": "C","BUY_PRODUCT_URL": "https://itunes.apple.com/WebObjects/MZFinance.woa/wa/volumeBuyProduct?cc=us","jsonSearchUrl": "https://itunes.apple.com/us/search","jsonLookupUrl": "https://itunes.apple.com/us/lookup"},"constants": {"Urls": {"upgradeITunesUrl": "http://www.apple.com/itunes/download/","upgradeSafariUrl": "http://www.apple.com/safari/download/"},"MZMediaType": {"Music": {"id": 1},"Podcasts": {"id": 2},"Audiobooks": {"id": 3},"TVShows": {"id": 4},"MusicVideos": {"id": 5},"Movies": {"id": 6},"ClassicSoftware": {"id": 7},"MobileSoftware": {"id": 8},"Ringtones": {"id": 9},"iTunesU": {"id": 10},"EBooks": {"id": 11},"MacSoftware": {"id": 12}},"SFSortOrder": {"Name": {"id": 0},"Featured": {"id": 1},"ReleaseDate": {"id": 2},"Popularity": {"id": 3},"PurchaseDate": {"id": 4},"TopRated": {"id": 5},"ExpirationDate": {"id": 6},"Price": {"id": 7},"ArtistName": {"id": 8},"PlaylistName": {"id": 9},"Duration": {"id": 11},"DiscNumber": {"id": 12},"TrackNumber": {"id": 13},"CmcRecommended": {"id": 10},"AllTimeBestSellers": {"id": 14},"DateAdded": {"id": 15}},"SFCustomComponentCountryCode": "usa","IXDisplayableKind": {"Song": {"id": 1,"cssClasses": ["song","music"],"name": "song","mtId": "1"},"Album": {"id": 2,"cssClasses": ["album","music"],"name": "album","mtId": "1"},"Book": {"id": 3,"cssClasses": ["audiobook"],"name": "book","mtId": "3"},"Podcast": {"id": 4,"cssClasses": ["podcast"],"name": "podcast","mtId": "2"},"MusicVideo": {"id": 5,"cssClasses": ["music-video","music","video"],"name": "musicVideo","mtId": "5"},"TVEpisode": {"id": 6,"cssClasses": ["tv-episode","tv","video"],"name": "tvEpisode","mtId": "4"},"TVSeason": {"id": 7,"cssClasses": ["tv-season","tv","video"],"name": "tvSeason","mtId": "4"},"ShortFilm": {"id": 8,"cssClasses": ["short-film","movie","video"],"name": "shortFilm","mtId": "6"},"Movie": {"id": 9,"cssClasses": ["movie","video"],"name": "movie","mtId": "6"},"ClassicSoftware": {"id": 10,"cssClasses": ["ipod-game"],"name": "ipodGame","mtId": "7"},"MobileSoftware": {"id": 11,"cssClasses": ["application"],"name": "iosSoftware","mtId": "8"},"MacSoftware": {"id": 30,"cssClasses": ["application","mac-application"],"name": "desktopApp","mtId": "12"},"iTunesPass": {"id": 12,"cssClasses": ["itunes-pass","album","music"],"name": "itunesPass","mtId": "1"},"Booklet": {"id": 13,"cssClasses": ["booklet","music"],"name": "booklet","mtId": "1"},"Mix": {"id": 14,"cssClasses": ["mix","music"],"name": "mix","mtId": "1"},"PodcastEpisode": {"id": 15,"cssClasses": ["podcast-episode"],"name": "podcastEpisode","mtId": "2"},"SoftwareAddOn": {"id": 16,"cssClasses": ["software-add-on","application"],"name": "softwareAddOn","mtId": "8"},"iMix": {"id": 17,"cssClasses": ["imix","music"],"name": "iMix","mtId": "1"},"ClassicSoftwarePackage": {"id": 18,"cssClasses": ["ipod-game"],"name": "gamePackage","mtId": "7"},"WeMix": {"id": 19,"cssClasses": ["wemix","music"],"name": "itunesMix","mtId": "1"},"Artist": {"id": 20,"cssClasses": [],"name": "artist"},"Ringtone": {"id": 21,"cssClasses": [],"name": "ringtone","mtId": "9"},"RingtoneAlbum": {"id": 22,"cssClasses": [],"name": "ringtoneAlbum","mtId": "9"},"PreorderAlbum": {"id": 23,"cssClasses": ["album","music"],"name": "preorderAlbum","mtId": "1"},"MovieBundle": {"id": 24,"cssClasses": ["bundle","movie","video"],"name": "movieBundle","mtId": "6"},"EBook": {"id": 25,"cssClasses": ["ebook"],"name": "epubBook","mtId": "11"},"Concert": {"id": 26,"cssClasses": [],"name": "concert","mtId": "1"},"RichPost": {"id": 29,"cssClasses": [],"name": "richPost"},"SocialPerson": {"id": 27,"cssClasses": [],"name": "socialPerson"},"SocialArtist": {"id": 28,"cssClasses": [],"name": "socialArtist"},"Tone": {"id": 31,"cssClasses": [],"name": "tone","mtId": "9"},"ToneAlbum": {"id": 32,"cssClasses": [],"name": "toneAlbum","mtId": "9"},"TheyMix": {"id": 33,"cssClasses": [],"name": "thirdPartyMix"},"Course": {"id": 34,"cssClasses": ["course","itunes-u"],"name": "course","mtId": "10"},"MetaEBook": {"id": 35,"cssClasses": ["ebook"],"name": "metaEbook","mtId": "13"},"ApplePubEBook": {"id": 36,"cssClasses": ["ebook"],"name": "ibook","mtId": "11"},"ApplePubTextbook": {"id": 37,"cssClasses": ["ebook"],"name": "ibookTextbook","mtId": "13"}}},"properties": {"clientStatsLoadTimeGroup": "4002","MZHtmlResourcesUtil.allowDeferJsLoad": true,"countryCodeIso2a": "us","currencyFormat": "$#,##0.00;$#,##0.00;-$#,##0.00","currencySymbol": "$","currencyThousandSeparator": ",","currencyDecimalSeparator": ".","iTunesUEnrollLink": "","ITSServerEnvironment": "prod","ITSServerInstance": "2125691","ITSResourceRevNum": "A3E7","resourceUrlPrefix": "https://s.mzstatic.com","ITSLogger.ServerReportingProtocol": "https","ITSLogger.ServerReportingDomain": "metrics.mzstatic.com","ITSLogger.ServerReportingApp": "MZUserXP","ITSLogger.RecordStatsAction": "recordStats","ITSLogger.SenderName": "ITSClient","DynaLoader.allowDynaLoading": true,"itsLoggerQueueProcessingInterval": 10000,"cobaltBundleId": "com.apple.itunesu","getCobaltAppLink": "https://itunes.apple.com/us/app/id490217893","cobaltLearnMore": "https://itunes.apple.com/WebObjects/MZStore.woa/wa/learnMore?about=iTunesUUpgradePage&cc=us&type=2","isCobaltEnabled": true,"isCobaltJavascriptRedirectEnabled": true,"isCobaltUpsellPageEnabled": true,"isRadioHistoryEnabled": true,"personalizedButtonsEnabled": true,"SF6.Personalization.isCMAEnabled": true,"SF6.Personalization.isCMSEnabled": true,"SF6.StorePlatform.whitelistParams": ["caller","dsid","id","p"],"vendLastSupportedVersionIfAvailable": true,"metrics": {"metricsUrl": "https://xp.apple.com/WebObjects/MZUserXP.woa/wa/recordMetrics","compoundSeparator": "_","tokenSeparator": "|","postFrequency": 60000,"disabled": false,"sendDisabled": false,"fieldsMap": {"single": {"targetId": ["id","adamId","type","fcId","station-hash"]},"multi": {},"custom": {"impressions": ["id","adamId","station-hash"],"location": ["id","adamId","dataSetId","name","fcKind","kindIds","type","station-hash","core-seed-name"]}},"metricsBase": {"storeFrontHeader": "","language": "1","platformId": "8","platformName": "ItunesPreview","storeFront": "143441","environmentDataCenter": "ST11","environmentType": "prod"}}}}</script>
31
+ <script type="text/javascript" charset="utf-8">
32
+ if(typeof(iTSLocalization) == "undefined") { iTSLocalization = new Object(); }
33
+ if(typeof(iTSLocalization._strings) == "undefined") { iTSLocalization._strings = new Object(); }
34
+ iTSLocalization._strings.base = {"_decimalSeparator":".", "_thousandsSeparator":",", "Js.iTunesStoreError.Message":"We could not complete your request.", "Js.iTunesStoreError.Explanation":"There was an error in the iTunes Store. Please try again later. (@@errorNum@@)", "Js.TextTruncation.More":"More", "More":"More", "Less":"Less", "Js.TextLimit.Remaining":"@@count@@ characters remaining", "Js.Showcase.Next":"Next Item", "Js.InlineReview.1":"hate it", "Js.InlineReview.2":"don't like it", "Js.InlineReview.3":"it's ok", "Js.InlineReview.4":"it's good", "Js.InlineReview.5":"it's great", "Js.CreateAccount":"Create Apple ID", "Js.InlineReview.SigninTitle":"Sign in to write a review.", "Js.InlineReview.SigninMessage":"Enter your Apple ID and password, then click Sign In.", "Js.InlineRating.SigninTitle":"Sign in to rate this item.", "Js.InlineRating.SigninMessage":"Sign in to continue.", "Js.ReportAConcern.SigninTitle":"Sign in to report a concern.", "Js.ReportAConcern.SigninMessage":"Enter your Apple ID and password, then click Sign In.", "Js.TellAFriend.SigninTitle":"Sign in to tell a friend.", "Js.TellAFriend.SigninMessage":"Enter your Apple ID and password, then click Sign In.", "Js.InlineReview.RateThis":"Rate this", "Js.InlineReview.ClickToRate":"Click to rate", "Js.InlineReview.Thanks":"Thanks!", "Js.InlineReview.Error":"Error", "Js.Pagination.PageNumber":"Page @@num@@", "Js.Pagination.PageNumberTitle":"page @@num@@", "Js.Pagination.PreviousPage":"Previous Page", "Js.Pagination.NextPage":"Next Page", "Js.Pagination.Next":"Next", "Js.Pagination.Back":"Back", "Js.Pagination.DisabledButtonText":"disabled @@button_text@@", "Js.QuickView.Unavailable.Title":"Quick View is currently unavailable for this item.", "Js.QuickView.Unavailable.Text":"Please try again later.", "Js.Search.HintsTitle":"Suggestions", "Js.Wishlist.RemoveTooltip":"Remove from Wish List", "Js.MyAlerts.ConfirmEmailSignUp.Message":"Are you sure you want to receive email alerts?", "Js.MyAlerts.ConfirmEmailSignUp.Explanation":"You can change this preference at any time from your My Alerts page.", "Js.MyAlerts.CancelEmailSignUp.Message":"Are you sure you want to stop receiving email alerts?", "Js.MyAlerts.CancelEmailSignUp.Explanation":"You can change this preference at any time from your My Alerts page.", "Js.MyAlerts.GeniusActivationNeeded.Message":"This requires Genius.", "Js.MyAlerts.GeniusActivationNeeded.Explanation":"Alerts based on your library content will not be enabled until you have turned on Genius. To learn more, click Go to Genius.", "Js.MyAlerts.GeniusActivationNeeded.Button":"Go to Genius", "Js.ManageArtistAlerts.UncheckAll.Artists":"Uncheck All Artists", "Js.ManageArtistAlerts.UncheckAll.Actors":"Uncheck All Actors", "Js.ManageArtistAlerts.UncheckAll":"Uncheck All", "Js.ManageArtistAlerts.CheckAll.Artists":"Check All Artists", "Js.ManageArtistAlerts.CheckAll.Actors":"Check All Actors", "Js.ManageArtistAlerts.CheckAll":"Check All", "Js.List.Item":"item", "Js.InlinePreview.PlayPreview":"Play preview of @@title@@", "Js.InlinePreview.StopPreview":"Stop preview of @@title@@", "Js.CNConnections.UserReview.YouLiked":"You Liked", "Js.CNConnections.PeoplePopupMore":"and @@count@@ other@@s@@...", "Js.CNConnections.Confirmed":"Confirmed", "Js.CNConnections.RequestSent":"Request sent", "Js.CNConnections.LoginRequired.Title":"Sign in to access Ping.",
35
+ "Js.CNConnections.LoginRequired.Message":"This requires Ping. Ping will no longer be available as of September 30, and we are not accepting new members. If you are already a Ping member, sign in below to continue.", "Js.CNConnections.OptInRequired.Title":"Ping",
36
+ "Js.CNConnections.OptInRequired.Message":"This requires Ping. Ping will no longer be available as of September 30, and we are not accepting new members. If you are already a Ping member, sign in below to continue.", "Js.CNConnections.Dialog.Cancel":"Cancel", "Js.CNConnections.Dialog.GetStarted":"Get Started", "CNConnections.Dialog.PrivateUser.IllegalAction.Title":"Private users may not perform this action.", "CNConnections.Dialog.PrivateUser.IllegalAction.Message":"If you would like to perform this action, please change your privacy settings.", "CNConnections.Dialog.PrivateUser.LeakyAction.Title":"Are you sure you want to perform this action?", "CNConnections.Dialog.PrivateUser.LeakyAction.Message":"This action will make your profile photo and name visible to others.", "CNConnections.Dialog.StopFollowing.Title":"Are you sure you want to stop following @@fullName@@?", "CNConnections.Dialog.StopFollowing.Message":"CNConnections.Dialog.StopFollowing.Message", "CNConnections.Dialog.Like.Review.SignIn.Title":"Sign in to like a review.", "CNConnections.Dialog.Like.Review.SignIn.Message":"Enter your Apple ID or AOL screen name and your password, then click Sign In.", "CNConnections.Dialog.Post.Review.SignIn.Title":"Sign in to post.", "CNConnections.Dialog.Post.Review.SignIn.Message":"Enter your Apple ID or AOL screen name and your password, then click Sign In.", "CNConnections.Dialog.OptIn.Title":"Ping Will No Longer Be Available as of September 30", "CNConnections.Dialog.OptIn.Message":"Liking a review requires Ping, and we are no longer accepting new members.", "CNConnections.Dialog.OptIn.ButtonSubmit":"Learn More", "CNConnections.Dialog.OptIn.ButtonCancel":"Cancel", "CNConnections.Dialog.OptIn.ButtonSignIn":"Sign In", "CNConnections.Upload.UploadErrorHeading":"There is a Problem With Your Upload", "CNConnections.Upload.UploadErrorMessage":"Sorry, there was an error during upload.", "CNConnections.Upload.MaxPhotosErrorMessage":"You can have no more than 20 photos in one post.", "JS.errors.requiredLite":"Please fill in all required fields."}
37
+ </script>
38
+ <script type="text/javascript" charset="utf-8" src="/htmlResources/A3E7/web-storefront-base.js"></script>
39
+ <script type="text/javascript" charset="utf-8" src="/htmlResources/A3E7/web-storefront-preview.js"></script>
40
+ <link charset="utf-8" href="https://ssl.apple.com/global/nav/styles/navigation.css" id="globalheader-stylesheet" rel="stylesheet" type="text/css" />
41
+
42
+ </head>
43
+ <body onload="detectAndOpenItunes();" class="software geo-us lang-en-us">
44
+
45
+ <script type="text/javascript">
46
+ var searchSection = 'ipoditunes';
47
+ var searchCountry = 'us';
48
+ var aiRequestsEnabled = true;
49
+ var aiDisplaySuggestions = true;
50
+ </script>
51
+ <script src="https://ssl.apple.com/global/nav/scripts/globalnav.js" type="text/javascript" charset="utf-8"></script>
52
+ <nav id="globalheader" class="itunes">
53
+ <!--googleoff: all-->
54
+ <ul id="globalnav" role="navigation">
55
+ <li id="gn-apple"><a href="http://www.apple.com/"><span>Apple</span></a></li>
56
+ <li id="gn-store"><a href="http://store.apple.com/"><span>Store</span></a></li>
57
+ <li id="gn-mac"><a href="http://www.apple.com/mac/"><span>Mac</span></a></li>
58
+ <li id="gn-ipod"><a href="http://www.apple.com/ipod/"><span>iPod</span></a></li>
59
+ <li id="gn-iphone"><a href="http://www.apple.com/iphone/"><span>iPhone</span></a></li>
60
+ <li id="gn-ipad"><a href="http://www.apple.com/ipad/"><span>iPad</span></a></li>
61
+ <li id="gn-itunes"><a href="http://www.apple.com/itunes/"><span>iTunes</span></a></li>
62
+ <li id="gn-support" class="gn-last"><a href="http://www.apple.com/support/"><span>Support</span></a></li>
63
+ </ul>
64
+ <!--googleon: all-->
65
+ <div id="globalsearch">
66
+ <form action="http://www.apple.com/search/" method="post" class="search" id="g-search"><div class="sp-label">
67
+ <label for="sp-searchtext">Search</label>
68
+ <input type="text" name="q" id="sp-searchtext" accesskey="s" />
69
+ </div></form>
70
+ <div id="sp-magnify"><div class="magnify-searchmode"></div><div class="magnify"></div></div>
71
+ <div id="sp-results"></div>
72
+ </div>
73
+ </nav>
74
+ <script type="text/javascript">
75
+ AC.GlobalNav.Instance = new AC.GlobalNav();
76
+ </script>
77
+ <div id="productheader" data-hires="true">
78
+ <h2><img src="https://s.mzstatic.com/images/web/itunes_preview/itunespreview_en.png" alt="iTunes" height="32" width="263"></h2>
79
+ <ul>
80
+ <li id="pn-whatsnew"><a href="http://www.apple.com/itunes/whats-new/">What’s New</a></li>
81
+ <li id="pn-whatis"><a href="http://www.apple.com/itunes/what-is/">What is iTunes</a></li>
82
+ <li id="pn-charts"><a href="http://www.apple.com/itunes/charts/">iTunes Charts</a></li>
83
+ </ul>
84
+ </div>
85
+ <div id="main">
86
+ <div id="itunes-detector">
87
+ <div id="launching-itunes">
88
+ <div id="status">
89
+ <div class="opening-itunes"><span>Opening the iTunes Store.</span><span>If iTunes doesn't open, click the iTunes application icon in your Dock or on your Windows desktop.</span><span class="spinner">Progress Indicator</span></div>
90
+ </div>
91
+ </div>
92
+ <div id="itunes-client-required">
93
+ <div class="callout">
94
+ <div class="left">iTunes</div>
95
+ <h2>iTunes is the world's easiest way to organize and add to your digital media collection.</h2>
96
+ <p preview-capable-text="We are unable to find iTunes on your computer. To buy and download Minecraft – Pocket Edition by Mojang, get iTunes now." class="intro has-preview-capable-text">
97
+ We are unable to find iTunes on your computer. To buy and download Minecraft – Pocket Edition by Mojang, get iTunes now.
98
+ </p>
99
+ <div class="download">
100
+ <p>Already have iTunes? Click I Have iTunes to open it now.</p>
101
+ <a class="i-have-itunes" onclick="its.detect.userOverrideSetItunesInstalled(); its.detect.openItunes(); return true;" href="#">
102
+ <img alt="I Have iTunes" src="/images/web/ihaveitunes.png" />
103
+ </a>
104
+ <a href="#" onclick="javascript:window.location='http://www.apple.com/itunes/affiliates/download/?id=479516143'; return true;"><img alt="Free Download" src="/images/web/freedownload.png" /></a>
105
+ </div>
106
+ <a class="macpc" href="#">iTunes for Mac + PC</a>
107
+ </div>
108
+ </div>
109
+ </div>
110
+
111
+ <script type="text/javascript">
112
+ deviceDetect();
113
+ </script>
114
+ <div id="desktopContentBlockId" class='platform-content-block display-block'>
115
+ <div id="content">
116
+ <div class="padder">
117
+ <div id="title" class="intro ">
118
+ <div class="left">
119
+ <h1>Minecraft – Pocket Edition</h1>
120
+ <h2>By Mojang</h2>
121
+ </div>
122
+ <div class="right">
123
+ <a href="https://itunes.apple.com/us/artist/mojang/id479516146" class="view-more">View More By This Developer</a>
124
+ </div>
125
+ <p>Open iTunes to buy and download apps.</p>
126
+ </div>
127
+ <div class="center-stack">
128
+ <div more-text="More" metrics-loc="Titledbox_Description" class="product-review">
129
+ <h4>
130
+ Description
131
+ </h4>
132
+ <p>Minecraft — Pocket Edition is a Universal App! Play on any iPhone and iPad. It’s constantly evolving thanks to our free updates.<br /><br />Minecraft is about placing blocks to build things and going on adventures!<br /><br />Pocket Edition includes randomly generated worlds, multiplayer over a local Wi-Fi network, and Survival and Creative modes. You can craft and create with your friends anywhere in the world so long as you have hands spare and battery to burn. <br /><br />Our most recent update added the iconic Creepers. They’re big, green, mean and explody. But it’s just one of many. Since Minecraft — Pocket Edition first appeared, we’re continuing to add loads of new features, including...<br /><br />- Support for the iPhone 5’s widescreen display<br />- Food! Now you can cook and go hungry<br />- Swords! Bows! TNT! Armor!<br />- Chests<br />- Skeletons<br />- Spiders<br />- Beds<br />- Paintings<br />- Lots more!<br /><br />But enough sales talk! Download it already! Have fun!</p>
133
+ </div>
134
+ <div class="app-links"><a rel="nofollow" target="_blank" href="http://help.mojang.com" class="see-all">Minecraft – Pocket Edition Support</a></div>
135
+ <div more-text="More" metrics-loc="Titledbox_What&#39;s New in Version 0.7.5" class="product-review">
136
+ <h4>
137
+ What's New in Version 0.7.5
138
+ </h4>
139
+ <p>Version 0.7.5 -- Lots of fixes!<br />- Creepers can be ignited by flint and steel<br />- Added support for connecting to external servers<br />- Fixed a lot of bugs</p>
140
+ </div>
141
+
142
+ <div metrics-loc="Swoosh_" rows="1" class="swoosh lockup-container application large screenshots">
143
+ <div class="title">
144
+ <h2>Screenshots</h2>
145
+
146
+ <div class="pill">
147
+ <a metrics-loc="Pill_" metrics-leaf="1" href="#">iPhone</a>
148
+ <a metrics-loc="Pill_" metrics-leaf="1" href="#">iPad</a>
149
+ </div>
150
+ <a metrics-loc="Seeall" href="" class="see-all"><span></span></a>
151
+ </div>
152
+ <div class="toggle">
153
+ <div metrics-loc="iPhone" num-items="4" class="content iphone-screen-shots mixed-orientation"><div><div class="lockup"><img alt="iPhone Screenshot 1" class="portrait" src="http://a5.mzstatic.com/us/r30/Purple2/v4/45/cd/fe/45cdfec1-acc5-639b-88cc-ef92267fd2b8/screen568x568.jpeg" /></div><div class="lockup"><img alt="iPhone Screenshot 2" class="landscape" src="http://a1.mzstatic.com/us/r30/Purple/v4/d8/43/0f/d8430f43-9b4a-34ef-9f2a-f5e7c49f922c/screen568x568.jpeg" /></div><div class="lockup"><img alt="iPhone Screenshot 3" class="landscape" src="http://a2.mzstatic.com/us/r30/Purple/v4/f2/e8/62/f2e86285-d289-d787-83bc-db8ce247fc58/screen568x568.jpeg" /></div><div class="lockup"><img alt="iPhone Screenshot 4" class="landscape" src="http://a1.mzstatic.com/us/r30/Purple2/v4/49/af/c2/49afc29e-b3ca-c165-c99b-6cbb084389b6/screen568x568.jpeg" /></div></div></div><div metrics-loc="iPad" num-items="4" class="content ipad-screen-shots mixed-orientation"><div><div class="lockup"><img alt="iPad Screenshot 1" class="portrait" src="http://a5.mzstatic.com/us/r30/Purple/v4/cd/43/24/cd4324d5-c15b-41aa-9f25-0bf52fff4846/screen480x480.jpeg" /></div><div class="lockup"><img alt="iPad Screenshot 2" class="landscape" src="http://a3.mzstatic.com/us/r30/Purple2/v4/56/79/47/567947ab-9bc2-337b-53f3-0700efd8d71a/screen480x480.jpeg" /></div><div class="lockup"><img alt="iPad Screenshot 3" class="landscape" src="http://a4.mzstatic.com/us/r30/Purple2/v4/60/bf/29/60bf2986-fb99-38db-1721-08b6bf157413/screen480x480.jpeg" /></div><div class="lockup"><img alt="iPad Screenshot 4" class="landscape" src="http://a1.mzstatic.com/us/r30/Purple2/v4/a5/a6/71/a5a671bd-ecd6-0c9d-2cdd-4e03604083cf/screen480x480.jpeg" /></div></div></div>
154
+ </div>
155
+ </div>
156
+ <div class="customer-reviews">
157
+ <h4>Customer Reviews</h4>
158
+ <div more-text="More" class="customer-review">
159
+
160
+ <h5>
161
+ <span class="customerReviewTitle">Minecraft PE</span>
162
+ <div class='rating' role='img' tabindex='-1' aria-label='1 star'><div><span class="rating-star">&nbsp;</span><span class="rating-star ghost">&nbsp;</span><span class="rating-star ghost">&nbsp;</span><span class="rating-star ghost">&nbsp;</span><span class="rating-star ghost">&nbsp;</span></div></div>
163
+ </h5>
164
+ <span class="user-info">by
165
+ Jordan codboz
166
+ </span>
167
+
168
+ <p class="content" will-truncate-max-height="0" data-text-truncate-lines="5">
169
+ If you guys add<br/>Fish<br/>Fishing pole<br/>Mine carts <br/>Rails<br/>Red stone<br/>Enchating table<br/>Villagers<br/>Villages<br/>Wolfs<br/>Squids<br/>Ender men<br/>Ender pearls<br/>Ender chests<br/>Carrots<br/>Golden apples<br/>Potions<br/>Brewer for potions<br/>Nether world<br/>Potatos<br/>Water bottles<br/>Pumpkins<br/>Steel doors<br/>Pressure plates<br/>Buttons<br/>Levers<br/>Red stone torches<br/>Mods<br/>Different texture pads<br/>Real crafting<br/>Reins<br/>Saddles<br/>Night time on creative<br/>Can explode tnt on creative<br/>Clock<br/>Boats<br/>Cookies<br/>Compass<br/>Pistons<br/>Sticky piston<br/>Iron bars<br/>Chain armor<br/>Jungles<br/>Blaze rods<br/>Zombie flesh<br/>Gold nuggets<br/>Records<br/>Music box<br/>Dispenser<br/>Vines<br/>Lillie pads<br/>Carpets<br/>Blazes<br/>Webs<br/>Ice<br/>Spider eye<br/>Caldron<br/>Glowstone lamp<br/>Hay<br/>Fireworks<br/>Emerald<br/>Lasso<br/>Mob heads<br/>Item frame<br/>And I will give you 5 stars you don't have to update all this stuff all in 1 update u can split it up but I want all of this to be updated on PE edition minecraft but I want it soon and you will<br/>Get my stars <br/>From a minecrafter
170
+ </p>
171
+ </div>
172
+ <div more-text="More" class="customer-review">
173
+
174
+ <h5>
175
+ <span class="customerReviewTitle">Best Game</span>
176
+ <div class='rating' role='img' tabindex='-1' aria-label='5 stars'><div><span class="rating-star">&nbsp;</span><span class="rating-star">&nbsp;</span><span class="rating-star">&nbsp;</span><span class="rating-star">&nbsp;</span><span class="rating-star">&nbsp;</span></div></div>
177
+ </h5>
178
+ <span class="user-info">by
179
+ Legit101 like in avatar fight
180
+ </span>
181
+
182
+ <p class="content" will-truncate-max-height="0" data-text-truncate-lines="5">
183
+ This is the best game ever reasons<br/>1.You can build whatever is in ur imagination<br/>2.You can play with ur friends<br/>3.It gets better everytime it gets updated by mojang<br/>4.And now fixes for external servers <br/><br/>You have to buy the game for if u dont have it<br/><br/>BEST GAME EVER!!!!
184
+ </p>
185
+ </div>
186
+ <div more-text="More" class="customer-review">
187
+
188
+ <h5>
189
+ <span class="customerReviewTitle">Inprovements</span>
190
+ <div class='rating' role='img' tabindex='-1' aria-label='5 stars'><div><span class="rating-star">&nbsp;</span><span class="rating-star">&nbsp;</span><span class="rating-star">&nbsp;</span><span class="rating-star">&nbsp;</span><span class="rating-star">&nbsp;</span></div></div>
191
+ </h5>
192
+ <span class="user-info">by
193
+ The professer
194
+ </span>
195
+
196
+ <p class="content" will-truncate-max-height="0" data-text-truncate-lines="5">
197
+ Add armor and all tools in all materals to creative all armor in all materals and add hostal mob spans eggs to creative mode please! Also could you add boats and mine carts to survival and creative and at night if you add this in creative mode have mobs spawn at night like normal! Could you also please put out the red stone update so I can use it in survival and creative mode! Skins and game modes inter changeable also aloe game commands like time set 0
198
+ </p>
199
+ </div>
200
+ </div>
201
+ <div metrics-loc="Swoosh_" rows="1" class="swoosh lockup-container application large">
202
+ <div class="title">
203
+ <h2>Customers Also Bought</h2>
204
+
205
+ </div>
206
+ <div num-items="5" class="content"><div>
207
+ <div rating-software="100,itunes-games" parental-rating="1" role="group" metrics-loc="Lockup_" adam-id="425652036" preview-artist="Geek Beach" aria-label="Dune Rider" preview-title="Dune Rider" class="lockup small application">
208
+ <a href="https://itunes.apple.com/us/app/dune-rider/id425652036?mt=8" class="artwork-link"><div class="artwork"><img width="100" height="100" alt="Dune Rider" class="artwork" src="http://a5.mzstatic.com/us/r30/Purple/v4/cd/91/bd/cd91bd60-1227-ce35-51fe-872d00b73b33/mzl.uthbtbmn.100x100-75.jpg" /><span class="mask"></span></div></a>
209
+ <div class="lockup-info">
210
+ <ul role="presentation" class="list"><li><a href="https://itunes.apple.com/us/app/dune-rider/id425652036?mt=8" class="name">Dune Rider</a></li><li><a href="https://itunes.apple.com/us/genre/ios-games/id6014?mt=8" class="genre">Games</a></li><li><a onclick="return its.detect.openItunes(&#39;https://itunes.apple.com/us/app/dune-rider/id425652036?mt=8&#39;);" href="#" class="action view-in-itunes"><span>View In iTunes</span></a></li></ul>
211
+ </div>
212
+ </div>
213
+ <div rating-software="100,itunes-games" parental-rating="1" role="group" metrics-loc="Lockup_" adam-id="408257810" preview-artist="Abraham Stolk" aria-label="the little crane that could" preview-title="the little crane that could" class="lockup small application">
214
+ <a href="https://itunes.apple.com/us/app/the-little-crane-that-could/id408257810?mt=8" class="artwork-link"><div class="artwork"><img width="100" height="100" alt="the little crane that could" class="artwork" src="http://a3.mzstatic.com/us/r30/Purple6/v4/85/2b/10/852b1039-91ba-0a0e-1c1c-b2260c2c29f2/mzl.oznggtvp.100x100-75.jpg" /><span class="mask"></span></div></a>
215
+ <div class="lockup-info">
216
+ <ul role="presentation" class="list"><li><a href="https://itunes.apple.com/us/app/the-little-crane-that-could/id408257810?mt=8" class="name">the little crane that could</a></li><li><a href="https://itunes.apple.com/us/genre/ios-games/id6014?mt=8" class="genre">Games</a></li><li><a onclick="return its.detect.openItunes(&#39;https://itunes.apple.com/us/app/the-little-crane-that-could/id408257810?mt=8&#39;);" href="#" class="action view-in-itunes"><span>View In iTunes</span></a></li></ul>
217
+ </div>
218
+ </div>
219
+ <div rating-software="100,itunes-games" parental-rating="1" role="group" metrics-loc="Lockup_" adam-id="390364604" preview-artist="Ratrod Studio Inc." aria-label="Drift Mania Championship Gold Lite" preview-title="Drift Mania Championship Gold Lite" class="lockup small application">
220
+ <a href="https://itunes.apple.com/us/app/drift-mania-championship-gold/id390364604?mt=8" class="artwork-link"><div class="artwork"><img width="100" height="100" alt="Drift Mania Championship Gold Lite" class="artwork" src="http://a2.mzstatic.com/us/r30/Purple/v4/c4/1d/0c/c41d0cbc-662e-5dc4-a401-e053e5360cfc/mzl.qnqeudpa.100x100-75.jpg" /><span class="mask"></span></div></a>
221
+ <div class="lockup-info">
222
+ <ul role="presentation" class="list"><li><a href="https://itunes.apple.com/us/app/drift-mania-championship-gold/id390364604?mt=8" class="name">Drift Mania Championship Gold Lite</a></li><li><a href="https://itunes.apple.com/us/genre/ios-games/id6014?mt=8" class="genre">Games</a></li><li><a onclick="return its.detect.openItunes(&#39;https://itunes.apple.com/us/app/drift-mania-championship-gold/id390364604?mt=8&#39;);" href="#" class="action view-in-itunes"><span>View In iTunes</span></a></li></ul>
223
+ </div>
224
+ </div>
225
+ <div rating-software="100,itunes-games" parental-rating="1" role="group" metrics-loc="Lockup_" adam-id="294919686" preview-artist="Ezone.com" aria-label="Crazy Snowboard" preview-title="Crazy Snowboard" class="lockup small application">
226
+ <a href="https://itunes.apple.com/us/app/crazy-snowboard/id294919686?mt=8" class="artwork-link"><div class="artwork"><img width="100" height="100" alt="Crazy Snowboard" class="artwork" src="http://a5.mzstatic.com/us/r30/Purple2/v4/b8/a2/45/b8a24557-ac43-bff3-fb31-539112bcaa8b/mzl.jrptqkzr.100x100-75.jpg" /><span class="mask"></span></div></a>
227
+ <div class="lockup-info">
228
+ <ul role="presentation" class="list"><li><a href="https://itunes.apple.com/us/app/crazy-snowboard/id294919686?mt=8" class="name">Crazy Snowboard</a></li><li><a href="https://itunes.apple.com/us/genre/ios-games/id6014?mt=8" class="genre">Games</a></li><li><a onclick="return its.detect.openItunes(&#39;https://itunes.apple.com/us/app/crazy-snowboard/id294919686?mt=8&#39;);" href="#" class="action view-in-itunes"><span>View In iTunes</span></a></li></ul>
229
+ </div>
230
+ </div>
231
+ <div rating-software="100,itunes-games" parental-rating="1" role="group" metrics-loc="Lockup_" adam-id="389941080" preview-artist="Logik State" aria-label="Sand Slides" preview-title="Sand Slides" class="lockup small application">
232
+ <a href="https://itunes.apple.com/us/app/sand-slides/id389941080?mt=8" class="artwork-link"><div class="artwork"><img width="100" height="100" alt="Sand Slides" class="artwork" src="http://a1.mzstatic.com/us/r30/Purple/v4/d4/fc/58/d4fc5869-4170-a47a-e6df-9891619b96a5/V4HttpAssetRepositoryClient-mzm.xqmhkley.png-1988064742115934236.100x100-75.jpg" /><span class="mask"></span></div></a>
233
+ <div class="lockup-info">
234
+ <ul role="presentation" class="list"><li><a href="https://itunes.apple.com/us/app/sand-slides/id389941080?mt=8" class="name">Sand Slides</a></li><li><a href="https://itunes.apple.com/us/genre/ios-games/id6014?mt=8" class="genre">Games</a></li><li><a onclick="return its.detect.openItunes(&#39;https://itunes.apple.com/us/app/sand-slides/id389941080?mt=8&#39;);" href="#" class="action view-in-itunes"><span>View In iTunes</span></a></li></ul>
235
+ </div>
236
+ </div>
237
+ </div></div>
238
+ </div>
239
+ </div>
240
+ <div id="left-stack">
241
+ <div rating-software="100,itunes-games" parental-rating="1" class="lockup product application">
242
+ <a href="https://itunes.apple.com/us/app/minecraft-pocket-edition/id479516143?mt=8"><div class="artwork"><img width="175" height="175" alt="Minecraft &amp;ndash; Pocket Edition" class="artwork" src="http://a2.mzstatic.com/us/r30/Purple/v4/92/72/c0/9272c08a-a972-08cc-ac0e-2e1d4c423d4b/mzl.bxerxqln.175x175-75.jpg" /><span class="mask"></span></div></a>
243
+ <a onclick="return its.detect.openItunes(&#39;https://itunes.apple.com/us/app/minecraft-pocket-edition/id479516143?mt=8&#39;);" href="#" class="action view-in-itunes"><span>View In iTunes</span></a>
244
+ <div class="fat-binary-blurb"><span class="fat-binary-badge"></span><span>This app is designed for both iPhone and iPad</span></div><ul class="list"><li><div class="price">$6.99</div></li><li class="genre"><span class="label">Category: </span><a href="https://itunes.apple.com/us/genre/ios-games/id6014?mt=8">Games</a></li><li class="release-date"><span class="label">Updated: </span>Sep 12, 2013</li><li><span class="label">Version: </span>0.7.5</li><li><span class="label">Size: </span>5.3 MB</li><li class="language"><span class="label">Language: </span>English</li><li><span class="label">Seller: </span>Mojang AB</li><li class="copyright">© Mojang AB</li></ul><div class="app-rating"><a href="https://itunes.apple.com/WebObjects/MZStore.woa/wa/appRatings">Rated 4+</a></div><p><span class="app-requirements">Compatibility: </span>Requires iOS 5.0 or later. Compatible with iPhone, iPad, and iPod touch. This app is optimized for iPhone 5.</p>
245
+ </div>
246
+ <div class='extra-list customer-ratings'>
247
+ <h4>Customer Ratings</h4>
248
+ <div>Current Version:</div>
249
+ <div class='rating' role='img' tabindex='-1' aria-label='4 and a half stars, 6954 Ratings'><div><span class="rating-star">&nbsp;</span><span class="rating-star">&nbsp;</span><span class="rating-star">&nbsp;</span><span class="rating-star">&nbsp;</span><span class="rating-star half">&nbsp;</span></div><span class="rating-count">6954 Ratings</span>
250
+ </div>
251
+
252
+ <div>All Versions:</div>
253
+ <div class='rating' role='img' tabindex='-1' aria-label='4 and a half stars, 199214 Ratings'><div><span class="rating-star">&nbsp;</span><span class="rating-star">&nbsp;</span><span class="rating-star">&nbsp;</span><span class="rating-star">&nbsp;</span><span class="rating-star half">&nbsp;</span></div><span class="rating-count">199214 Ratings</span>
254
+ </div>
255
+
256
+ </div>
257
+
258
+ </div>
259
+ </div>
260
+ </div>
261
+ </div>
262
+ </div>
263
+
264
+ <object classID="CLSID:D719897A-B07A-4C0C-AEA9-9B663A28DFCB" width="1" height="1" id="iTunesDetectorIE" ></object>
265
+ <script type="text/javascript">itms.PageData.itunesDownloadUrl='http://www.apple.com/itunes/affiliates/download/?id=479516143';</script>
266
+ <div id="facebook">
267
+ <div class="fbfan">
268
+ <iframe src="https://www.facebook.com/plugins/likebox.php?id=100484820802&amp;width=230&amp;connections=0&amp;stream=false&amp;header=false&amp;height=62" scrolling="no" frameborder="0" style="border:none; overflow:hidden; width:230px; height:63px;" allowTransparency="true"></iframe>
269
+ </div>
270
+ <div class="fbfan last">
271
+ <iframe src="https://www.facebook.com/plugins/likebox.php?id=286893159420&amp;width=250&amp;connections=0&amp;stream=false&amp;header=false&amp;height=62" scrolling="no" frameborder="0" style="border:none; overflow:hidden; width:250px; height:63px;" allowTransparency="true"></iframe>
272
+ </div>
273
+ <p>Become a fan of the iTunes and App Store pages on Facebook for exclusive offers, the inside scoop on new apps and more.</p>
274
+ </div>
275
+ <div id="globalfooter">
276
+ <div id="breadory">
277
+ <ol id="breadcrumbs">
278
+ <li class="home"><a href="http://www.apple.com/">Home</a></li>
279
+ <li>iTunes</li>
280
+ </ol>
281
+ <!--googleoff: all-->
282
+ <div id="directorynav" class="itunes">
283
+ <div id="dn-cola" class="column first">
284
+ <h3>iTunes</h3>
285
+ <ul>
286
+ <li><a href="http://www.apple.com/itunes/download/">Download iTunes</a></li>
287
+ <li><a href="http://www.apple.com/itunes/whats-new/">What’s New?</a></li>
288
+ <li><a href="http://www.apple.com/itunes/what-is/">What is iTunes?</a></li>
289
+ <li><a href="http://www.apple.com/itunes/charts/songs/">iTunes Charts</a></li>
290
+ </ul>
291
+ </div>
292
+ <div id="dn-colb" class="column">
293
+ <h3>More iTunes</h3>
294
+ <ul>
295
+ <li><a href="http://www.apple.com/itunes/digital-music-basics/">Digital Music Basics</a></li>
296
+ <li><a href="http://www.apple.com/itunes/gifts/">iTunes Gifts</a></li>
297
+ <li><a href="http://www.apple.com/education/itunes-u/">iTunes U</a></li>
298
+ <li><a href="http://www.apple.com/support/ipod/">iPod + iTunes Support</a></li>
299
+ <li><a href="http://www.apple.com/airplay/">AirPlay</a></li>
300
+ <li><a href="http://www.apple.com/accessibility/itunes/vision.html">Accessibility</a></li>
301
+ </ul>
302
+ </div>
303
+ <div id="dn-colc" class="column">
304
+ <h3>Working with iTunes</h3>
305
+ <ul>
306
+ <li><a href="http://www.apple.com/itunes/sellcontent/">Sell Your Content</a></li>
307
+ <li><a href="http://www.apple.com/itunes/content-providers/">Content Providers</a></li>
308
+ <li><a href="http://www.apple.com/itunes/companies/">Market with iTunes</a></li>
309
+ <li><a href="http://www.apple.com/itunes/affiliates/">Join the Affiliate Program</a></li>
310
+ <li><a href="http://www.apple.com/itunes/link/">Link to iTunes</a></li>
311
+ </ul>
312
+ </div>
313
+ <div id="dn-cold" class="column last">
314
+ <h3>iTunes Store</h3>
315
+ <ul>
316
+ <li><a href="http://itunes.apple.com/us/browse/">Browse iTunes Store</a></li>
317
+ <li><a href="http://itunes.apple.com/us/genre/mobile-software-applications/id36?mt=8">Browse App Store</a></li>
318
+ <li><a href="http://itunes.apple.com/us/store">Buy Music Now</a></li>
319
+ <li><a href="http://store.apple.com/us/browse/home/giftcards/itunes/gallery">Buy iTunes Gift Cards</a></li>
320
+ <li><a href="https://buy.itunes.apple.com/WebObjects/MZFinance.woa/wa/redeemLandingPage">Redeem iTunes Gift Cards</a></li>
321
+ <li><a href="http://www.apple.com/itunes/corporatesales/">iTunes Corporate Sales</a></li>
322
+ <li><a href="http://itunes.apple.com/WebObjects/MZStore.woa/wa/viewFeature?id=365729306">Free Single of the Week</a></li>
323
+ </ul>
324
+ </div>
325
+ <div class="capbottom"></div>
326
+ </div>
327
+ <!--googleon: all-->
328
+ </div><!--/breadory-->
329
+ <p class="gf-buy">Shop the <a href="http://store.apple.com/us">Apple Online Store</a> (1-800-MY-APPLE), visit an <a href="http://www.apple.com/retail/">Apple Retail Store</a>, or find a <a href="http://www.apple.com/buy/">reseller</a>.</p>
330
+ <ul class="gf-links piped">
331
+ <li><a href="http://www.apple.com/about/" class="first">Apple Info</a></li>
332
+ <li><a href="http://www.apple.com/sitemap/">Site Map</a></li>
333
+ <li><a href="http://www.apple.com/hotnews/">Hot News</a></li>
334
+ <li><a href="http://www.apple.com/rss/">RSS Feeds</a></li>
335
+ <li><a href="http://www.apple.com/contact/" class="contact_us">Contact Us</a></li>
336
+ <li><a href="http://www.apple.com/choose-your-country/" class="choose"><img src="http://images.apple.com/global/elements/flags/22x22/usa.png" alt="Choose your country or region" width="22" height="22" data-hires="true" /></a></li>
337
+ </ul>
338
+ <div class="gf-sosumi">
339
+ <p>Copyright &copy; 2013 Apple Inc. All rights reserved.</p>
340
+ <ul class="piped">
341
+ <li><a href="http://www.apple.com/legal/internet-services/terms/site.html" class="first">Terms of Use</a></li>
342
+ <li><a href="http://www.apple.com/privacy/">Privacy Policy</a></li>
343
+ </ul>
344
+ </div>
345
+ </div><!--/globalfooter-->
346
+ <script language="JavaScript" type="text/javascript"><!--
347
+ var iTSMetricsCallbackFunction = function() {
348
+ ITSMetrics.reportingSuite = "appleitmswww,appleitmsus";
349
+ ITSMetrics.omniture = ITSMetrics.createBaselineOmnitureObject();
350
+ ITSMetrics.isPageMetricsEnabled=true;
351
+
352
+ /* Page Metrics */
353
+ ITSMetrics.omniture.pageName="SEO-Software-US-Mojang-Minecraft \u2013 Pocket Edition-479516143";
354
+ ITSMetrics.omniture.channel="SEO";
355
+ ITSMetrics.omniture.prop22="HTML";
356
+ ITSMetrics.omniture.eVar22="HTML";
357
+ ITSMetrics.omniture.products="Mojang-Minecraft \u2013 Pocket Edition-479516143";
358
+
359
+ /* User Agent */
360
+ var userAgentForMetrics = ITSMetrics.userAgentForMetrics();
361
+ ITSMetrics.omniture.prop12 = userAgentForMetrics;
362
+ ITSMetrics.omniture.eVar12 = userAgentForMetrics;
363
+ // check if Game Center
364
+ var gcUserAgent = "GameCenter";
365
+ var isGameCenter = userAgentForMetrics.length >= gcUserAgent.length && userAgentForMetrics.substr(0, gcUserAgent.length) == gcUserAgent;
366
+ if (isGameCenter) {
367
+ // prepend "GameCenter" to page and channel name
368
+ if (ITSMetrics.omniture.pageName) ITSMetrics.omniture.pageName = "GameCenter-" + ITSMetrics.omniture.pageName;
369
+ if (ITSMetrics.omniture.channel) ITSMetrics.omniture.channel = "GameCenter-" + ITSMetrics.omniture.channel;
370
+ }
371
+ /* Browser Plugins */
372
+ ITSMetrics.shouldTrackBrowserPlugins = false;
373
+ /* Pass-thru query params */
374
+ ITSMetrics.processQueryParameterInfoInCurrentRequest(ITSMetrics.omniture);
375
+ if (ITSMetrics.isPageMetricsEnabled) {
376
+ ITSMetrics.emitPagePing = function() {
377
+ var s_code=ITSMetrics.omniture.t();
378
+ if (s_code) {
379
+ var containingDiv = document.createElement('div');
380
+ containingDiv.innerHTML = s_code;
381
+ document.body.appendChild(containingDiv);
382
+ }
383
+ };
384
+ its.x.addEventListener(window, 'load', function() { window.setTimeout(ITSMetrics.emitPagePing, 1) }, false );
385
+ }
386
+ };
387
+ if (!window["ITSMetrics"]){
388
+ iTSDefer.register(function() {
389
+ iTSMetricsCallbackFunction();
390
+ });
391
+ } else {
392
+ iTSMetricsCallbackFunction();
393
+ }
394
+ --></script>
395
+ <script>
396
+ if (!window.its) {
397
+ window.its = {};
398
+ }
399
+ window.its.markupLoadEndTime = new Date().getTime();
400
+ </script>
401
+ </body>
402
+ </html>
@@ -0,0 +1,250 @@
1
+ <!DOCTYPE html>
2
+ <!--[if lt IE 7 ]><html class="ie ie6" lang="en"> <![endif]-->
3
+ <!--[if IE 7 ]><html class="ie ie7" lang="en"> <![endif]-->
4
+ <!--[if IE 8 ]><html class="ie ie8" lang="en"> <![endif]-->
5
+ <!--[if IE 9 ]><html class="ie ie9" lang="en"> <![endif]-->
6
+ <!--[if (gt IE 9)|!(IE)]><!--><html lang="en"> <!--<![endif]-->
7
+ <head>
8
+ <meta charset="utf-8">
9
+ <script type="text/javascript">var NREUMQ=NREUMQ||[];NREUMQ.push(["mark","firstbyte",new Date().getTime()]);</script>
10
+ <title>Keep Moving Forward EP by Bubble on Spotify</title>
11
+ <meta http-equiv="X-UA-Compatible" content="IE=9">
12
+ <meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1">
13
+ <meta name="apple-itunes-app" content="app-id=324684580">
14
+
15
+ <meta property="og:site_name" content="Spotify">
16
+ <meta property="fb:app_id" content="174829003346">
17
+ <meta property="og:title" content="Keep Moving Forward EP">
18
+ <meta property="og:description" content="Keep Moving Forward EP, an album by Bubble on Spotify">
19
+ <meta property="og:url" content="http://open.spotify.com/album/3eEtlM70GU40OyHMotY15N">
20
+ <meta property="og:image" content="http://o.scdn.co/image/d2c3de070317af4aae4e03daa976690431f1849d">
21
+ <meta property="og:type" content="music.album">
22
+ <meta property="og:audio" content="spotify:album:3eEtlM70GU40OyHMotY15N">
23
+ <meta property="og:audio:type" content="audio/vnd.facebook.bridge">
24
+ <meta property="music:musician" content="http://open.spotify.com/artist/4nJkgSp4zPkT00RJF1tJge">
25
+ <meta property="music:release_date" content="2012-01-16">
26
+ <meta property="music:song" content="http://open.spotify.com/track/45X2qh1ft0HM3pMGZpJp8E">
27
+ <meta property="music:song:disc" content="1">
28
+ <meta property="music:song:track" content="1">
29
+
30
+ <meta property="music:song" content="http://open.spotify.com/track/5V4f70Q3E8o03U79xxqRVx">
31
+ <meta property="music:song:disc" content="1">
32
+ <meta property="music:song:track" content="2">
33
+
34
+ <meta property="music:song" content="http://open.spotify.com/track/7DH906k4dgBiSW2LWt8gKT">
35
+ <meta property="music:song:disc" content="1">
36
+ <meta property="music:song:track" content="3">
37
+
38
+ <meta property="music:song" content="http://open.spotify.com/track/37tHkkmwQTuvT7lieyK2bc">
39
+ <meta property="music:song:disc" content="1">
40
+ <meta property="music:song:track" content="4">
41
+
42
+ <meta property="music:song" content="http://open.spotify.com/track/0YhU1LFaDSWPIUSoFZhujS">
43
+ <meta property="music:song:disc" content="1">
44
+ <meta property="music:song:track" content="5">
45
+
46
+
47
+ <meta property="twitter:card" content="summary">
48
+ <meta property="twitter:url" content="http://open.spotify.com/album/3eEtlM70GU40OyHMotY15N">
49
+ <meta property="twitter:image" content="http://o.scdn.co/cover/d2c3de070317af4aae4e03daa976690431f1849d">
50
+ <meta property="twitter:description" content="An album by Bubble on Spotify">
51
+ <meta property="twitter:title" content="❂ Keep Moving Forward EP">
52
+ <meta property="twitter:site" content="@spotify">
53
+ <meta property="twitter:app:id:iphone" content="324684580">
54
+ <meta property="twitter:app:id:ipad" content="324684580">
55
+ <meta property="twitter:app:id:googleplay" content="com.spotify.mobile.android.ui">
56
+ <meta property="twitter:app:name:iphone" content="Spotify">
57
+ <meta property="twitter:app:name:ipad" content="Spotify">
58
+ <meta property="twitter:app:name:googleplay" content="Spotify">
59
+ <meta property="twitter:app:url:iphone" content="spotify:album:3eEtlM70GU40OyHMotY15N">
60
+ <meta property="twitter:app:url:ipad" content="spotify:album:3eEtlM70GU40OyHMotY15N">
61
+ <meta property="twitter:app:url:googleplay" content="spotify:album:3eEtlM70GU40OyHMotY15N">
62
+ <meta property="description" content="Keep Moving Forward EP, an album by Bubble on Spotify Don&#39;t have Spotify? Get it at Spotify.com – it&#39;s free!">
63
+
64
+ <link rel="stylesheet" media="screen" type="text/css" href="//open.spotify.com/static/m/style.4551664.css">
65
+ <!--[if lt IE 9]>
66
+ <script src="http://open.spotify.com/static/m/script.ie.65812f3.js"></script>
67
+ <![endif]-->
68
+ <link rel="icon" href="http://d2c87l0yth4zbw.cloudfront.net/i/_global/favicon.png">
69
+ <!--[if IE]><link rel="shortcut icon" href="http://d2c87l0yth4zbw.cloudfront.net/i/_global/favicon.ico"><![endif]-->
70
+
71
+ </head>
72
+ <body id="body" class="m-se ">
73
+ <!-- Google Tag Manager -->
74
+ <noscript><iframe src="//www.googletagmanager.com/ns.html?id=GTM-7BJJ"
75
+ height="0" width="0" style="display:none;visibility:hidden"></iframe></noscript>
76
+ <script>
77
+ dataLayer = [];
78
+ (function(w,d,s,l,i){w[l]=w[l]||[];w[l].push({'gtm.start':
79
+ new Date().getTime(),event:'gtm.js'});var f=d.getElementsByTagName(s)[0],
80
+ j=d.createElement(s),dl=l!='dataLayer'?'&l='+l:'';j.async=true;j.src=
81
+ '//www.googletagmanager.com/gtm.js?id='+i+dl;f.parentNode.insertBefore(j,f);
82
+ })(window,document,'script','dataLayer','GTM-7BJJ');
83
+ </script>
84
+ <!-- End Google Tag Manager -->
85
+
86
+ <header>
87
+ <div id="header">
88
+ <div class="container">
89
+ <div class="sixteen columns clearfix">
90
+ <div class="three columns alpha">
91
+ <a class="logo" href="http://spotify.com" target="_blank">
92
+ <div class="spotify-logo"></div>
93
+ </a>
94
+ </div>
95
+ <div class="ten columns empty"></div>
96
+ <div class="three columns omega">
97
+ <a href="http://www.spotify.com/download" class="button-download header-download download-link new-user">Get Spotify</a>
98
+ </div>
99
+ </div>
100
+ </div>
101
+ </div>
102
+ </header>
103
+ <div id="main">
104
+ <div class="container">
105
+ <div class="sixteen columns clearfix">
106
+ <div class="one-third column alpha large-image-column">
107
+ <div class="album-cover-art">
108
+ <img src="http://o.scdn.co/300/d2c3de070317af4aae4e03daa976690431f1849d" border="0" alt="Keep Moving Forward EP" id="big-cover"/>
109
+ <a class="play-pause-btn" href="spotify:album:3eEtlM70GU40OyHMotY15N">Play / Pause</a> </div>
110
+ <div class="new-user"><a id="confirm-spotified" class="button-open click-if-you-have" href="spotify:album:3eEtlM70GU40OyHMotY15N">I have Spotify</a></div>
111
+ </div>
112
+ <div class="two-thirds column omega" itemscope itemtype="http://schema.org/MusicGroup">
113
+ <div class="player-header">
114
+ <div class="album-cover-art mobile">
115
+ <img src="http://o.scdn.co/300/d2c3de070317af4aae4e03daa976690431f1849d" border="0" alt="Keep Moving Forward EP"/>
116
+ <a class="play-pause-btn" href="spotify:album:3eEtlM70GU40OyHMotY15N">Play / Pause</a>
117
+ </div>
118
+
119
+ <div class="page-icon" id="album-icon"></div>
120
+ <h1 itemprop="name">Keep Moving Forward EP</h1>
121
+ <h2>by <a href="/artist/4nJkgSp4zPkT00RJF1tJge">Bubble</a></h2> </div>
122
+ <div class="player">
123
+ <ul id="tracks" itemscope itemprop="tracks">
124
+ <li class="first single-track" data-id="45X2qh1ft0HM3pMGZpJp8E" itemscope itemtype="http://schema.org/MusicRecording">
125
+ <span class="order">01</span>
126
+ <a href="#" class="play-track" data-id="45X2qh1ft0HM3pMGZpJp8E"></a>
127
+ <a href="/track/45X2qh1ft0HM3pMGZpJp8E" itemprop="url">
128
+ <span class="track" itemprop="name">Sound of Samsara</span>
129
+ </a>
130
+ <span class="popularity_graph"><span class="full"></span><span class="full"></span><span class="full"></span><span class=""></span><span class=""></span><span class=""></span><span class=""></span><span class=""></span><span class=""></span><span class=""></span><span class=""></span><span class=""></span></span>
131
+ <a href="/track/45X2qh1ft0HM3pMGZpJp8E">
132
+ <span class="duration"><meta itemprop="duration" content="PT11M13S"/>11:13</span>
133
+ </a>
134
+ </li>
135
+ <li class="odd single-track" data-id="5V4f70Q3E8o03U79xxqRVx" itemscope itemtype="http://schema.org/MusicRecording">
136
+ <span class="order">02</span>
137
+ <a href="#" class="play-track" data-id="5V4f70Q3E8o03U79xxqRVx"></a>
138
+ <a href="/track/5V4f70Q3E8o03U79xxqRVx" itemprop="url">
139
+ <span class="track" itemprop="name">Np</span>
140
+ </a>
141
+ <span class="popularity_graph"><span class="full"></span><span class="full"></span><span class=""></span><span class=""></span><span class=""></span><span class=""></span><span class=""></span><span class=""></span><span class=""></span><span class=""></span><span class=""></span><span class=""></span></span>
142
+ <a href="/track/5V4f70Q3E8o03U79xxqRVx">
143
+ <span class="duration"><meta itemprop="duration" content="PT6M48S"/>06:48</span>
144
+ </a>
145
+ </li>
146
+ <li class=" single-track" data-id="7DH906k4dgBiSW2LWt8gKT" itemscope itemtype="http://schema.org/MusicRecording">
147
+ <span class="order">03</span>
148
+ <a href="#" class="play-track" data-id="7DH906k4dgBiSW2LWt8gKT"></a>
149
+ <a href="/track/7DH906k4dgBiSW2LWt8gKT" itemprop="url">
150
+ <span class="track" itemprop="name">Keep Moving</span>
151
+ </a>
152
+ <span class="popularity_graph"><span class="full"></span><span class="full"></span><span class=""></span><span class=""></span><span class=""></span><span class=""></span><span class=""></span><span class=""></span><span class=""></span><span class=""></span><span class=""></span><span class=""></span></span>
153
+ <a href="/track/7DH906k4dgBiSW2LWt8gKT">
154
+ <span class="duration"><meta itemprop="duration" content="PT6M42S"/>06:42</span>
155
+ </a>
156
+ </li>
157
+ <li class="odd single-track" data-id="37tHkkmwQTuvT7lieyK2bc" itemscope itemtype="http://schema.org/MusicRecording">
158
+ <span class="order">04</span>
159
+ <a href="#" class="play-track" data-id="37tHkkmwQTuvT7lieyK2bc"></a>
160
+ <a href="/track/37tHkkmwQTuvT7lieyK2bc" itemprop="url">
161
+ <span class="track" itemprop="name">Vertigo</span>
162
+ </a>
163
+ <span class="popularity_graph"><span class="full"></span><span class="full"></span><span class=""></span><span class=""></span><span class=""></span><span class=""></span><span class=""></span><span class=""></span><span class=""></span><span class=""></span><span class=""></span><span class=""></span></span>
164
+ <a href="/track/37tHkkmwQTuvT7lieyK2bc">
165
+ <span class="duration"><meta itemprop="duration" content="PT9M5S"/>09:05</span>
166
+ </a>
167
+ </li>
168
+ <li class=" single-track" data-id="0YhU1LFaDSWPIUSoFZhujS" itemscope itemtype="http://schema.org/MusicRecording">
169
+ <span class="order">05</span>
170
+ <a href="#" class="play-track" data-id="0YhU1LFaDSWPIUSoFZhujS"></a>
171
+ <a href="/track/0YhU1LFaDSWPIUSoFZhujS" itemprop="url">
172
+ <span class="track" itemprop="name">Prelude</span>
173
+ </a>
174
+ <span class="popularity_graph"><span class="full"></span><span class="full"></span><span class=""></span><span class=""></span><span class=""></span><span class=""></span><span class=""></span><span class=""></span><span class=""></span><span class=""></span><span class=""></span><span class=""></span></span>
175
+ <a href="/track/0YhU1LFaDSWPIUSoFZhujS">
176
+ <span class="duration"><meta itemprop="duration" content="PT13M10S"/>13:10</span>
177
+ </a>
178
+ </li>
179
+ </ul>
180
+ </div>
181
+ <div id="player-tools" class="player-tools clearfix">
182
+ <div class="social">
183
+ <ul class="list-social">
184
+ <li><a href="https://twitter.com/share" class="twitter-share-button" data-count="none" data-via="Spotify" data-lang="en">Tweet</a></li>
185
+ <li><div class="fb-like" data-send="false" data-width="280" data-show-faces="false" style="height:20px; vertical-align: top;"></div></li>
186
+ </ul>
187
+ </div>
188
+ </div>
189
+
190
+ <div class="two-thirds column clearfix alpha omega related-content-container" id="related_content">
191
+ <h3 class="related-content-header">Other albums by <a href="/artist/4nJkgSp4zPkT00RJF1tJge">Bubble</a></h3>
192
+ <div class="one-third column alpha center">
193
+ <div class="related-left-column one">
194
+ <a class="album-cover-art" href="/album/5KcH6pptA60bhJ6McJ1VHy"><img src="http://o.scdn.co/140/6fee6f0f1298e09fbe3f365554816809035085f5" border="0" alt="Coldsun"/></a>
195
+ <h3 class="related-content-album"><a href="/album/5KcH6pptA60bhJ6McJ1VHy">Coldsun</a></h3>
196
+ <span class="related-content-year">2011</span>
197
+ </div>
198
+ <div class="related-right-column two">
199
+ <a class="album-cover-art" href="/album/1ExbjDHdESW0Jzgvoiqlou"><img src="http://o.scdn.co/140/dc3409f42de7ddad11dc7d1e02433a1e623f480e" border="0" alt="Airless"/></a>
200
+ <h3 class="related-content-album"><a href="/album/1ExbjDHdESW0Jzgvoiqlou">Airless</a></h3>
201
+ <span class="related-content-year">2004</span>
202
+ </div>
203
+ </div>
204
+ <div class="one-third column omega center">
205
+ <div class="related-left-column three">
206
+ <a class="album-cover-art" href="/album/4HAeTP7QjuimMW5WKJiUZS"><img src="http://o.scdn.co/140/176fca1d2e34efba7d7bd071f277da2d2680ed0a" border="0" alt="Sound Of Silence"/></a>
207
+ <h3 class="related-content-album"><a href="/album/4HAeTP7QjuimMW5WKJiUZS">Sound Of Silence</a></h3>
208
+ <span class="related-content-year">2007</span>
209
+ </div>
210
+ </div>
211
+ </div>
212
+
213
+ </div>
214
+ </div>
215
+ </div>
216
+ </div>
217
+ <footer>
218
+ <div id="footer" class="new-user">
219
+ <div class="container">
220
+ <div class="sixteen columns clearfix">
221
+ <div id="pre-download" class="new-user">
222
+ <h2 class="world-of-music center">You're only one click away from <em>a world of music!</em></h2>
223
+ <a href="http://www.spotify.com/download" class="button-download footer-button new-user download-link">Get Spotify</a>
224
+ </div>
225
+ <p class="tos center new-user">By clicking the "Get Spotify" button you agree to Spotify's <a href="http://www.spotify.com/legal/end-user-agreement/" target="_blank">terms and conditions</a></p>
226
+ </div>
227
+ </div>
228
+ </div>
229
+ </footer>
230
+ <div id="fb-root"></div>
231
+ <iframe src="https://open.spotify.com/remote" style="width:0px; height:0px;" frameborder="0" hspace="0" id='remote'></iframe>
232
+
233
+ <script>
234
+ var downloadLinks = {"windows":"http:\/\/download.spotify.com\/Spotify Installer.exe","mac":"http:\/\/download.spotify.com\/SpotifyInstaller.zip","ios":"http:\/\/itunes.apple.com\/app\/spotify\/id324684580","android":"http:\/\/play.google.com\/store\/apps\/details?id=com.spotify.mobile.android.ui","kindlefire":"http:\/\/www.amazon.com\/Spotify-Kindle-Fire-Edition\/dp\/B008RBZA4A","blackberry":"http:\/\/appworld.blackberry.com\/webstore\/content\/118611","default":"http:\/\/www.spotify.com\/download"};
235
+ </script>
236
+ <script src="//open.spotify.com/static/m/script.http.f8558d8.js"></script>
237
+ <script>
238
+ var autoplay = false;
239
+
240
+ var social = new SocialHelper(174829003346);
241
+ social.init();
242
+
243
+ var client = new ClientCheck();
244
+ client.init();
245
+ var messenger = new Messenger(client)
246
+ </script>
247
+
248
+ <script type="text/javascript">if(!NREUMQ.f){NREUMQ.f=function(){NREUMQ.push(["load",new Date().getTime()]);var e=document.createElement("script");e.type="text/javascript";e.src=(("http:"===document.location.protocol)?"http:":"https:")+"//"+"js-agent.newrelic.com/nr-100.js";document.body.appendChild(e);if(NREUMQ.a)NREUMQ.a();};NREUMQ.a=window.onload;window.onload=NREUMQ.f;};NREUMQ.push(["nrfj","beacon-5.newrelic.com","74a85ac4f8","1037698","ZVZXNhFWDxFSVBZQDlwcYBAKGAgMV1IaFxFaQw==",0,22,new Date().getTime(),"","","","",""]);</script>
249
+ </body>
250
+ </html>