hornairs-scrobbler 0.2.3

Sign up to get free protection for your applications and to get access to all the features.
Files changed (161) hide show
  1. data/.gitignore +13 -0
  2. data/.loadpath +5 -0
  3. data/History.txt +5 -0
  4. data/MIT-LICENSE +19 -0
  5. data/Manifest +75 -0
  6. data/README.rdoc +104 -0
  7. data/Rakefile +10 -0
  8. data/VERSION.yml +5 -0
  9. data/examples/album.rb +20 -0
  10. data/examples/artist.rb +13 -0
  11. data/examples/playlist.rb +7 -0
  12. data/examples/scrobble.rb +31 -0
  13. data/examples/tag.rb +11 -0
  14. data/examples/track.rb +12 -0
  15. data/examples/user.rb +15 -0
  16. data/lib/scrobbler.rb +33 -0
  17. data/lib/scrobbler/album.rb +181 -0
  18. data/lib/scrobbler/artist.rb +165 -0
  19. data/lib/scrobbler/auth.rb +47 -0
  20. data/lib/scrobbler/base.rb +105 -0
  21. data/lib/scrobbler/event.rb +105 -0
  22. data/lib/scrobbler/geo.rb +27 -0
  23. data/lib/scrobbler/helper/image.rb +52 -0
  24. data/lib/scrobbler/helper/streamable.rb +40 -0
  25. data/lib/scrobbler/library.rb +112 -0
  26. data/lib/scrobbler/playing.rb +49 -0
  27. data/lib/scrobbler/playlist.rb +87 -0
  28. data/lib/scrobbler/radio.rb +12 -0
  29. data/lib/scrobbler/rest.rb +47 -0
  30. data/lib/scrobbler/scrobble.rb +116 -0
  31. data/lib/scrobbler/session.rb +9 -0
  32. data/lib/scrobbler/shout.rb +21 -0
  33. data/lib/scrobbler/simpleauth.rb +60 -0
  34. data/lib/scrobbler/tag.rb +113 -0
  35. data/lib/scrobbler/track.rb +152 -0
  36. data/lib/scrobbler/user.rb +222 -0
  37. data/lib/scrobbler/venue.rb +67 -0
  38. data/setup.rb +1585 -0
  39. data/tasks/jeweler.rake +15 -0
  40. data/tasks/rdoc.rake +7 -0
  41. data/tasks/tests.rake +13 -0
  42. data/tasks/yardoc.rake +8 -0
  43. data/test/fixtures/xml/album/info.xml +43 -0
  44. data/test/fixtures/xml/artist/fans.xml +52 -0
  45. data/test/fixtures/xml/artist/info.xml +58 -0
  46. data/test/fixtures/xml/artist/similar.xml +1004 -0
  47. data/test/fixtures/xml/artist/topalbums.xml +61 -0
  48. data/test/fixtures/xml/artist/toptags.xml +19 -0
  49. data/test/fixtures/xml/artist/toptracks.xml +62 -0
  50. data/test/fixtures/xml/auth/session.xml +7 -0
  51. data/test/fixtures/xml/auth/token.xml +3 -0
  52. data/test/fixtures/xml/event/attend.xml +3 -0
  53. data/test/fixtures/xml/event/attendees.xml +53 -0
  54. data/test/fixtures/xml/event/event.xml +35 -0
  55. data/test/fixtures/xml/event/shouts.xml +35 -0
  56. data/test/fixtures/xml/geo/events-distance-p1.xml +151 -0
  57. data/test/fixtures/xml/geo/events-lat-long.xml +167 -0
  58. data/test/fixtures/xml/geo/events-p1.xml +152 -0
  59. data/test/fixtures/xml/geo/events-p2.xml +380 -0
  60. data/test/fixtures/xml/geo/events-p3.xml +427 -0
  61. data/test/fixtures/xml/geo/top_artists-p1.xml +76 -0
  62. data/test/fixtures/xml/geo/top_tracks-p1.xml +77 -0
  63. data/test/fixtures/xml/library/albums-f30.xml +454 -0
  64. data/test/fixtures/xml/library/albums-p1.xml +754 -0
  65. data/test/fixtures/xml/library/albums-p2.xml +754 -0
  66. data/test/fixtures/xml/library/albums-p3.xml +754 -0
  67. data/test/fixtures/xml/library/albums-p4.xml +739 -0
  68. data/test/fixtures/xml/library/albums-p5.xml +754 -0
  69. data/test/fixtures/xml/library/albums-p6.xml +754 -0
  70. data/test/fixtures/xml/library/albums-p7.xml +739 -0
  71. data/test/fixtures/xml/library/albums-p8.xml +724 -0
  72. data/test/fixtures/xml/library/artists-f30.xml +334 -0
  73. data/test/fixtures/xml/library/artists-p1.xml +554 -0
  74. data/test/fixtures/xml/library/artists-p2.xml +554 -0
  75. data/test/fixtures/xml/library/artists-p3.xml +554 -0
  76. data/test/fixtures/xml/library/artists-p4.xml +554 -0
  77. data/test/fixtures/xml/library/artists-p5.xml +554 -0
  78. data/test/fixtures/xml/library/artists-p6.xml +554 -0
  79. data/test/fixtures/xml/library/artists-p7.xml +444 -0
  80. data/test/fixtures/xml/library/tracks-f30.xml +472 -0
  81. data/test/fixtures/xml/library/tracks-p1.xml +789 -0
  82. data/test/fixtures/xml/library/tracks-p10.xml +771 -0
  83. data/test/fixtures/xml/library/tracks-p11.xml +792 -0
  84. data/test/fixtures/xml/library/tracks-p12.xml +777 -0
  85. data/test/fixtures/xml/library/tracks-p13.xml +762 -0
  86. data/test/fixtures/xml/library/tracks-p14.xml +759 -0
  87. data/test/fixtures/xml/library/tracks-p15.xml +762 -0
  88. data/test/fixtures/xml/library/tracks-p16.xml +756 -0
  89. data/test/fixtures/xml/library/tracks-p17.xml +780 -0
  90. data/test/fixtures/xml/library/tracks-p18.xml +756 -0
  91. data/test/fixtures/xml/library/tracks-p19.xml +774 -0
  92. data/test/fixtures/xml/library/tracks-p2.xml +765 -0
  93. data/test/fixtures/xml/library/tracks-p20.xml +777 -0
  94. data/test/fixtures/xml/library/tracks-p21.xml +777 -0
  95. data/test/fixtures/xml/library/tracks-p22.xml +771 -0
  96. data/test/fixtures/xml/library/tracks-p23.xml +765 -0
  97. data/test/fixtures/xml/library/tracks-p24.xml +783 -0
  98. data/test/fixtures/xml/library/tracks-p25.xml +777 -0
  99. data/test/fixtures/xml/library/tracks-p26.xml +777 -0
  100. data/test/fixtures/xml/library/tracks-p27.xml +756 -0
  101. data/test/fixtures/xml/library/tracks-p28.xml +771 -0
  102. data/test/fixtures/xml/library/tracks-p29.xml +753 -0
  103. data/test/fixtures/xml/library/tracks-p3.xml +771 -0
  104. data/test/fixtures/xml/library/tracks-p30.xml +780 -0
  105. data/test/fixtures/xml/library/tracks-p31.xml +753 -0
  106. data/test/fixtures/xml/library/tracks-p32.xml +771 -0
  107. data/test/fixtures/xml/library/tracks-p33.xml +762 -0
  108. data/test/fixtures/xml/library/tracks-p34.xml +538 -0
  109. data/test/fixtures/xml/library/tracks-p4.xml +792 -0
  110. data/test/fixtures/xml/library/tracks-p5.xml +780 -0
  111. data/test/fixtures/xml/library/tracks-p6.xml +789 -0
  112. data/test/fixtures/xml/library/tracks-p7.xml +789 -0
  113. data/test/fixtures/xml/library/tracks-p8.xml +780 -0
  114. data/test/fixtures/xml/library/tracks-p9.xml +774 -0
  115. data/test/fixtures/xml/tag/similar.xml +254 -0
  116. data/test/fixtures/xml/tag/topalbums.xml +805 -0
  117. data/test/fixtures/xml/tag/topartists.xml +605 -0
  118. data/test/fixtures/xml/tag/toptags.xml +1254 -0
  119. data/test/fixtures/xml/tag/toptracks.xml +852 -0
  120. data/test/fixtures/xml/track/fans.xml +34 -0
  121. data/test/fixtures/xml/track/info.xml +53 -0
  122. data/test/fixtures/xml/track/toptags.xml +504 -0
  123. data/test/fixtures/xml/user/events.xml +401 -0
  124. data/test/fixtures/xml/user/friends.xml +30 -0
  125. data/test/fixtures/xml/user/lovedtracks.xml +678 -0
  126. data/test/fixtures/xml/user/neighbours.xml +23 -0
  127. data/test/fixtures/xml/user/playlists.xml +61 -0
  128. data/test/fixtures/xml/user/profile.xml +12 -0
  129. data/test/fixtures/xml/user/recentbannedtracks.xml +24 -0
  130. data/test/fixtures/xml/user/recentlovedtracks.xml +24 -0
  131. data/test/fixtures/xml/user/recenttracks.xml +124 -0
  132. data/test/fixtures/xml/user/systemrecs.xml +18 -0
  133. data/test/fixtures/xml/user/topalbums.xml +61 -0
  134. data/test/fixtures/xml/user/topartists.xml +41 -0
  135. data/test/fixtures/xml/user/toptags.xml +44 -0
  136. data/test/fixtures/xml/user/toptracks.xml +65 -0
  137. data/test/fixtures/xml/user/weeklyalbumchart.xml +256 -0
  138. data/test/fixtures/xml/user/weeklyartistchart.xml +220 -0
  139. data/test/fixtures/xml/user/weeklytrackchart.xml +746 -0
  140. data/test/fixtures/xml/venue/events.xml +151 -0
  141. data/test/fixtures/xml/venue/venue.xml +16 -0
  142. data/test/mocks/rest.rb +212 -0
  143. data/test/spec_helper.rb +7 -0
  144. data/test/test_helper.rb +20 -0
  145. data/test/unit/album_spec.rb +52 -0
  146. data/test/unit/artist_spec.rb +130 -0
  147. data/test/unit/auth_spec.rb +36 -0
  148. data/test/unit/event_spec.rb +109 -0
  149. data/test/unit/geo_spec.rb +148 -0
  150. data/test/unit/library_spec.rb +133 -0
  151. data/test/unit/playing_test.rb +53 -0
  152. data/test/unit/playlist_spec.rb +25 -0
  153. data/test/unit/radio_spec.rb +22 -0
  154. data/test/unit/scrobble_spec.rb +55 -0
  155. data/test/unit/scrobble_test.rb +69 -0
  156. data/test/unit/simpleauth_test.rb +45 -0
  157. data/test/unit/tag_spec.rb +101 -0
  158. data/test/unit/track_spec.rb +95 -0
  159. data/test/unit/user_spec.rb +264 -0
  160. data/test/unit/venue_spec.rb +104 -0
  161. metadata +265 -0
@@ -0,0 +1,789 @@
1
+ <?xml version="1.0" encoding="utf-8"?>
2
+ <lfm status="ok">
3
+ <tracks user="xhochy" page="7" perPage="50" totalPages="34">
4
+ <track>
5
+ <name>Electric Nights</name>
6
+ <playcount>15</playcount>
7
+ <tagcount></tagcount>
8
+ <mbid></mbid>
9
+ <url>http://www.last.fm/music/Guano+Apes/_/Electric+Nights</url>
10
+ <streamable fulltrack="0">1</streamable>
11
+ <artist>
12
+ <name>Guano Apes</name>
13
+ <mbid>66da25f9-1534-4dd1-b88c-718bc24e1ccd</mbid>
14
+ <url>http://www.last.fm/music/Guano+Apes</url>
15
+ </artist>
16
+ <image size="small">http://userserve-ak.last.fm/serve/34s/22670585.jpg</image>
17
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/22670585.jpg</image>
18
+ <image size="large">http://userserve-ak.last.fm/serve/126/22670585.jpg</image>
19
+ </track>
20
+ <track>
21
+ <name>After Hours</name>
22
+ <playcount>15</playcount>
23
+ <tagcount></tagcount>
24
+ <mbid></mbid>
25
+ <url>http://www.last.fm/music/We+Are+Scientists/_/After+Hours</url>
26
+ <streamable fulltrack="0">1</streamable>
27
+ <artist>
28
+ <name>We Are Scientists</name>
29
+ <mbid>9386b36e-87f3-4716-a219-79a07a4e29cc</mbid>
30
+ <url>http://www.last.fm/music/We+Are+Scientists</url>
31
+ </artist>
32
+ <image size="small">http://userserve-ak.last.fm/serve/34s/15219273.jpg</image>
33
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/15219273.jpg</image>
34
+ <image size="large">http://userserve-ak.last.fm/serve/126/15219273.jpg</image>
35
+ </track>
36
+ <track>
37
+ <name>Uncle Jonny</name>
38
+ <playcount>15</playcount>
39
+ <tagcount></tagcount>
40
+ <mbid></mbid>
41
+ <url>http://www.last.fm/music/The+Killers/_/Uncle+Jonny</url>
42
+ <streamable fulltrack="1">1</streamable>
43
+ <artist>
44
+ <name>The Killers</name>
45
+ <mbid>95e1ead9-4d31-4808-a7ac-32c3614c116b</mbid>
46
+ <url>http://www.last.fm/music/The+Killers</url>
47
+ </artist>
48
+ <image size="small">http://userserve-ak.last.fm/serve/34s/9192209.jpg</image>
49
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/9192209.jpg</image>
50
+ <image size="large">http://userserve-ak.last.fm/serve/126/9192209.jpg</image>
51
+ </track>
52
+ <track>
53
+ <name>Sam's Town</name>
54
+ <playcount>15</playcount>
55
+ <tagcount></tagcount>
56
+ <mbid></mbid>
57
+ <url>http://www.last.fm/music/The+Killers/_/Sam%27s+Town</url>
58
+ <streamable fulltrack="1">1</streamable>
59
+ <artist>
60
+ <name>The Killers</name>
61
+ <mbid>95e1ead9-4d31-4808-a7ac-32c3614c116b</mbid>
62
+ <url>http://www.last.fm/music/The+Killers</url>
63
+ </artist>
64
+ <image size="small">http://userserve-ak.last.fm/serve/34s/9192209.jpg</image>
65
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/9192209.jpg</image>
66
+ <image size="large">http://userserve-ak.last.fm/serve/126/9192209.jpg</image>
67
+ </track>
68
+ <track>
69
+ <name>Pins and Needles</name>
70
+ <playcount>15</playcount>
71
+ <tagcount></tagcount>
72
+ <mbid></mbid>
73
+ <url>http://www.last.fm/music/Billy+Talent/_/Pins+and+Needles</url>
74
+ <streamable fulltrack="0">0</streamable>
75
+ <artist>
76
+ <name>Billy Talent</name>
77
+ <mbid>fd429857-5ace-4609-ae54-1502c3bdac11</mbid>
78
+ <url>http://www.last.fm/music/Billy+Talent</url>
79
+ </artist>
80
+ <image size="small">http://userserve-ak.last.fm/serve/34s/28906727.jpg</image>
81
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/28906727.jpg</image>
82
+ <image size="large">http://userserve-ak.last.fm/serve/126/28906727.jpg</image>
83
+ </track>
84
+ <track>
85
+ <name>This House Is a Circus</name>
86
+ <playcount>14</playcount>
87
+ <tagcount></tagcount>
88
+ <mbid></mbid>
89
+ <url>http://www.last.fm/music/Arctic+Monkeys/_/This+House+Is+a+Circus</url>
90
+ <streamable fulltrack="0">0</streamable>
91
+ <artist>
92
+ <name>Arctic Monkeys</name>
93
+ <mbid>ada7a83c-e3e1-40f1-93f9-3e73dbc9298a</mbid>
94
+ <url>http://www.last.fm/music/Arctic+Monkeys</url>
95
+ </artist>
96
+ <image size="small">http://userserve-ak.last.fm/serve/34s/9131187.jpg</image>
97
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/9131187.jpg</image>
98
+ <image size="large">http://userserve-ak.last.fm/serve/126/9131187.jpg</image>
99
+ </track>
100
+ <track>
101
+ <name>Lord Anthony</name>
102
+ <playcount>14</playcount>
103
+ <tagcount></tagcount>
104
+ <mbid></mbid>
105
+ <url>http://www.last.fm/music/Belle+and+Sebastian/_/Lord+Anthony</url>
106
+ <streamable fulltrack="0">0</streamable>
107
+ <artist>
108
+ <name>Belle and Sebastian</name>
109
+ <mbid>e5c7b94f-e264-473c-bb0f-37c85d4d5c70</mbid>
110
+ <url>http://www.last.fm/music/Belle+and+Sebastian</url>
111
+ </artist>
112
+ <image size="small">http://images.amazon.com/images/P/B0000CBHQ1.01.THUMBZZZ.jpg</image>
113
+ <image size="medium">http://images.amazon.com/images/P/B0000CBHQ1.01.MZZZZZZZ.jpg</image>
114
+ <image size="large">http://images.amazon.com/images/P/B0000CBHQ1.01.LZZZZZZZ.jpg</image>
115
+ </track>
116
+ <track>
117
+ <name>Right on Time</name>
118
+ <playcount>14</playcount>
119
+ <tagcount></tagcount>
120
+ <mbid></mbid>
121
+ <url>http://www.last.fm/music/Red+Hot+Chili+Peppers/_/Right+on+Time</url>
122
+ <streamable fulltrack="0">1</streamable>
123
+ <artist>
124
+ <name>Red Hot Chili Peppers</name>
125
+ <mbid>8bfac288-ccc5-448d-9573-c33ea2aa5c30</mbid>
126
+ <url>http://www.last.fm/music/Red+Hot+Chili+Peppers</url>
127
+ </artist>
128
+ <image size="small">http://userserve-ak.last.fm/serve/34s/8593509.jpg</image>
129
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/8593509.jpg</image>
130
+ <image size="large">http://userserve-ak.last.fm/serve/126/8593509.jpg</image>
131
+ </track>
132
+ <track>
133
+ <name>Break the Line</name>
134
+ <playcount>14</playcount>
135
+ <tagcount></tagcount>
136
+ <mbid></mbid>
137
+ <url>http://www.last.fm/music/Guano+Apes/_/Break+the+Line</url>
138
+ <streamable fulltrack="0">1</streamable>
139
+ <artist>
140
+ <name>Guano Apes</name>
141
+ <mbid>66da25f9-1534-4dd1-b88c-718bc24e1ccd</mbid>
142
+ <url>http://www.last.fm/music/Guano+Apes</url>
143
+ </artist>
144
+ <image size="small">http://userserve-ak.last.fm/serve/34s/23051283.jpg</image>
145
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/23051283.jpg</image>
146
+ <image size="large">http://userserve-ak.last.fm/serve/126/23051283.jpg</image>
147
+ </track>
148
+ <track>
149
+ <name>Knock Knock</name>
150
+ <playcount>14</playcount>
151
+ <tagcount></tagcount>
152
+ <mbid></mbid>
153
+ <url>http://www.last.fm/music/The+Hives/_/Knock+Knock</url>
154
+ <streamable fulltrack="0">1</streamable>
155
+ <artist>
156
+ <name>The Hives</name>
157
+ <mbid>487bfd74-71bf-46dd-b89c-80b7a0f06f2f</mbid>
158
+ <url>http://www.last.fm/music/The+Hives</url>
159
+ </artist>
160
+ <image size="small">http://userserve-ak.last.fm/serve/34s/25888215.png</image>
161
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/25888215.png</image>
162
+ <image size="large">http://userserve-ak.last.fm/serve/126/25888215.png</image>
163
+ </track>
164
+ <track>
165
+ <name>Solldas alles sein</name>
166
+ <playcount>14</playcount>
167
+ <tagcount></tagcount>
168
+ <mbid></mbid>
169
+ <url>http://www.last.fm/music/Fettes+Brot/_/Solldas+alles+sein</url>
170
+ <streamable fulltrack="0">0</streamable>
171
+ <artist>
172
+ <name>Fettes Brot</name>
173
+ <mbid>733e7372-5400-4c79-9059-33e2b2262d01</mbid>
174
+ <url>http://www.last.fm/music/Fettes+Brot</url>
175
+ </artist>
176
+ </track>
177
+ <track>
178
+ <name>Doginabag</name>
179
+ <playcount>14</playcount>
180
+ <tagcount></tagcount>
181
+ <mbid></mbid>
182
+ <url>http://www.last.fm/music/The+Fratellis/_/Doginabag</url>
183
+ <streamable fulltrack="1">1</streamable>
184
+ <artist>
185
+ <name>The Fratellis</name>
186
+ <mbid></mbid>
187
+ <url>http://www.last.fm/music/The+Fratellis</url>
188
+ </artist>
189
+ <image size="small">http://userserve-ak.last.fm/serve/34s/9033529.jpg</image>
190
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/9033529.jpg</image>
191
+ <image size="large">http://userserve-ak.last.fm/serve/126/9033529.jpg</image>
192
+ </track>
193
+ <track>
194
+ <name>Auf der guten Seite</name>
195
+ <playcount>14</playcount>
196
+ <tagcount></tagcount>
197
+ <mbid></mbid>
198
+ <url>http://www.last.fm/music/Sportfreunde+Stiller/_/Auf+der+guten+Seite</url>
199
+ <streamable fulltrack="1">1</streamable>
200
+ <artist>
201
+ <name>Sportfreunde Stiller</name>
202
+ <mbid>35581de7-591f-424f-9c64-7b22fd45605e</mbid>
203
+ <url>http://www.last.fm/music/Sportfreunde+Stiller</url>
204
+ </artist>
205
+ <image size="small">http://userserve-ak.last.fm/serve/34s/8634899.jpg</image>
206
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/8634899.jpg</image>
207
+ <image size="large">http://userserve-ak.last.fm/serve/126/8634899.jpg</image>
208
+ </track>
209
+ <track>
210
+ <name>Genocide</name>
211
+ <playcount>14</playcount>
212
+ <tagcount></tagcount>
213
+ <mbid></mbid>
214
+ <url>http://www.last.fm/music/The+Offspring/_/Genocide</url>
215
+ <streamable fulltrack="0">1</streamable>
216
+ <artist>
217
+ <name>The Offspring</name>
218
+ <mbid>23a03e33-a603-404e-bcbf-2c00159d7067</mbid>
219
+ <url>http://www.last.fm/music/The+Offspring</url>
220
+ </artist>
221
+ <image size="small">http://userserve-ak.last.fm/serve/34s/8675575.jpg</image>
222
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/8675575.jpg</image>
223
+ <image size="large">http://userserve-ak.last.fm/serve/126/8675575.jpg</image>
224
+ </track>
225
+ <track>
226
+ <name>Why Pourquoi</name>
227
+ <playcount>14</playcount>
228
+ <tagcount></tagcount>
229
+ <mbid></mbid>
230
+ <url>http://www.last.fm/music/Slut/_/Why+Pourquoi</url>
231
+ <streamable fulltrack="0">1</streamable>
232
+ <artist>
233
+ <name>Slut</name>
234
+ <mbid>97ec4bef-d716-492a-83a1-4cfed3f7a049</mbid>
235
+ <url>http://www.last.fm/music/Slut</url>
236
+ </artist>
237
+ <image size="small">http://userserve-ak.last.fm/serve/34s/12914361.jpg</image>
238
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/12914361.jpg</image>
239
+ <image size="large">http://userserve-ak.last.fm/serve/126/12914361.jpg</image>
240
+ </track>
241
+ <track>
242
+ <name>If She Wants Me</name>
243
+ <playcount>14</playcount>
244
+ <tagcount></tagcount>
245
+ <mbid></mbid>
246
+ <url>http://www.last.fm/music/Belle+and+Sebastian/_/If+She+Wants+Me</url>
247
+ <streamable fulltrack="0">0</streamable>
248
+ <artist>
249
+ <name>Belle and Sebastian</name>
250
+ <mbid>e5c7b94f-e264-473c-bb0f-37c85d4d5c70</mbid>
251
+ <url>http://www.last.fm/music/Belle+and+Sebastian</url>
252
+ </artist>
253
+ <image size="small">http://images.amazon.com/images/P/B0000CBHQ1.01.THUMBZZZ.jpg</image>
254
+ <image size="medium">http://images.amazon.com/images/P/B0000CBHQ1.01.MZZZZZZZ.jpg</image>
255
+ <image size="large">http://images.amazon.com/images/P/B0000CBHQ1.01.LZZZZZZZ.jpg</image>
256
+ </track>
257
+ <track>
258
+ <name>(Can't Get My) Head Around You</name>
259
+ <playcount>14</playcount>
260
+ <tagcount></tagcount>
261
+ <mbid></mbid>
262
+ <url>http://www.last.fm/music/The+Offspring/_/%28Can%27t+Get+My%29+Head+Around+You</url>
263
+ <streamable fulltrack="0">1</streamable>
264
+ <artist>
265
+ <name>The Offspring</name>
266
+ <mbid>23a03e33-a603-404e-bcbf-2c00159d7067</mbid>
267
+ <url>http://www.last.fm/music/The+Offspring</url>
268
+ </artist>
269
+ <image size="small">http://userserve-ak.last.fm/serve/34s/23739571.jpg</image>
270
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/23739571.jpg</image>
271
+ <image size="large">http://userserve-ak.last.fm/serve/126/23739571.jpg</image>
272
+ </track>
273
+ <track>
274
+ <name>Spare Me the Details</name>
275
+ <playcount>14</playcount>
276
+ <tagcount></tagcount>
277
+ <mbid></mbid>
278
+ <url>http://www.last.fm/music/The+Offspring/_/Spare+Me+the+Details</url>
279
+ <streamable fulltrack="0">0</streamable>
280
+ <artist>
281
+ <name>The Offspring</name>
282
+ <mbid>23a03e33-a603-404e-bcbf-2c00159d7067</mbid>
283
+ <url>http://www.last.fm/music/The+Offspring</url>
284
+ </artist>
285
+ <image size="small">http://userserve-ak.last.fm/serve/34s/23739571.jpg</image>
286
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/23739571.jpg</image>
287
+ <image size="large">http://userserve-ak.last.fm/serve/126/23739571.jpg</image>
288
+ </track>
289
+ <track>
290
+ <name>Inspection Wise 1999</name>
291
+ <playcount>14</playcount>
292
+ <tagcount></tagcount>
293
+ <mbid></mbid>
294
+ <url>http://www.last.fm/music/The+Hives/_/Inspection+Wise+1999</url>
295
+ <streamable fulltrack="0">1</streamable>
296
+ <artist>
297
+ <name>The Hives</name>
298
+ <mbid>487bfd74-71bf-46dd-b89c-80b7a0f06f2f</mbid>
299
+ <url>http://www.last.fm/music/The+Hives</url>
300
+ </artist>
301
+ <image size="small">http://userserve-ak.last.fm/serve/34s/25888215.png</image>
302
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/25888215.png</image>
303
+ <image size="large">http://userserve-ak.last.fm/serve/126/25888215.png</image>
304
+ </track>
305
+ <track>
306
+ <name>Piazza, New York Catcher</name>
307
+ <playcount>14</playcount>
308
+ <tagcount></tagcount>
309
+ <mbid></mbid>
310
+ <url>http://www.last.fm/music/Belle+and+Sebastian/_/Piazza%2C+New+York+Catcher</url>
311
+ <streamable fulltrack="0">0</streamable>
312
+ <artist>
313
+ <name>Belle and Sebastian</name>
314
+ <mbid>e5c7b94f-e264-473c-bb0f-37c85d4d5c70</mbid>
315
+ <url>http://www.last.fm/music/Belle+and+Sebastian</url>
316
+ </artist>
317
+ <image size="small">http://images.amazon.com/images/P/B0000CBHQ1.01.THUMBZZZ.jpg</image>
318
+ <image size="medium">http://images.amazon.com/images/P/B0000CBHQ1.01.MZZZZZZZ.jpg</image>
319
+ <image size="large">http://images.amazon.com/images/P/B0000CBHQ1.01.LZZZZZZZ.jpg</image>
320
+ </track>
321
+ <track>
322
+ <name>Limit</name>
323
+ <playcount>14</playcount>
324
+ <tagcount></tagcount>
325
+ <mbid></mbid>
326
+ <url>http://www.last.fm/music/Deichkind/_/Limit</url>
327
+ <streamable fulltrack="0">1</streamable>
328
+ <artist>
329
+ <name>Deichkind</name>
330
+ <mbid>5de80871-f721-4c7c-b0c5-4ad0d350c232</mbid>
331
+ <url>http://www.last.fm/music/Deichkind</url>
332
+ </artist>
333
+ <image size="small">http://userserve-ak.last.fm/serve/34s/8621281.jpg</image>
334
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/8621281.jpg</image>
335
+ <image size="large">http://userserve-ak.last.fm/serve/126/8621281.jpg</image>
336
+ </track>
337
+ <track>
338
+ <name>Andere Mütter</name>
339
+ <playcount>14</playcount>
340
+ <tagcount></tagcount>
341
+ <mbid></mbid>
342
+ <url>http://www.last.fm/music/Sportfreunde+Stiller/_/Andere+M%C3%BCtter</url>
343
+ <streamable fulltrack="1">1</streamable>
344
+ <artist>
345
+ <name>Sportfreunde Stiller</name>
346
+ <mbid>35581de7-591f-424f-9c64-7b22fd45605e</mbid>
347
+ <url>http://www.last.fm/music/Sportfreunde+Stiller</url>
348
+ </artist>
349
+ <image size="small">http://userserve-ak.last.fm/serve/34s/8717053.jpg</image>
350
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/8717053.jpg</image>
351
+ <image size="large">http://userserve-ak.last.fm/serve/126/8717053.jpg</image>
352
+ </track>
353
+ <track>
354
+ <name>Independent</name>
355
+ <playcount>14</playcount>
356
+ <tagcount></tagcount>
357
+ <mbid></mbid>
358
+ <url>http://www.last.fm/music/Sportfreunde+Stiller/_/Independent</url>
359
+ <streamable fulltrack="1">1</streamable>
360
+ <artist>
361
+ <name>Sportfreunde Stiller</name>
362
+ <mbid>35581de7-591f-424f-9c64-7b22fd45605e</mbid>
363
+ <url>http://www.last.fm/music/Sportfreunde+Stiller</url>
364
+ </artist>
365
+ <image size="small">http://userserve-ak.last.fm/serve/34s/8634899.jpg</image>
366
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/8634899.jpg</image>
367
+ <image size="large">http://userserve-ak.last.fm/serve/126/8634899.jpg</image>
368
+ </track>
369
+ <track>
370
+ <name>Walla Walla</name>
371
+ <playcount>14</playcount>
372
+ <tagcount></tagcount>
373
+ <mbid></mbid>
374
+ <url>http://www.last.fm/music/The+Offspring/_/Walla+Walla</url>
375
+ <streamable fulltrack="0">1</streamable>
376
+ <artist>
377
+ <name>The Offspring</name>
378
+ <mbid>23a03e33-a603-404e-bcbf-2c00159d7067</mbid>
379
+ <url>http://www.last.fm/music/The+Offspring</url>
380
+ </artist>
381
+ <image size="small">http://userserve-ak.last.fm/serve/34s/23714755.jpg</image>
382
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/23714755.jpg</image>
383
+ <image size="large">http://userserve-ak.last.fm/serve/126/23714755.jpg</image>
384
+ </track>
385
+ <track>
386
+ <name>Another Girl Another Planet</name>
387
+ <playcount>14</playcount>
388
+ <tagcount></tagcount>
389
+ <mbid></mbid>
390
+ <url>http://www.last.fm/music/blink-182/_/Another+Girl+Another+Planet</url>
391
+ <streamable fulltrack="0">0</streamable>
392
+ <artist>
393
+ <name>blink-182</name>
394
+ <mbid>0743b15a-3c32-48c8-ad58-cb325350befa</mbid>
395
+ <url>http://www.last.fm/music/blink-182</url>
396
+ </artist>
397
+ <image size="small">http://userserve-ak.last.fm/serve/34s/8755549.jpg</image>
398
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/8755549.jpg</image>
399
+ <image size="large">http://userserve-ak.last.fm/serve/126/8755549.jpg</image>
400
+ </track>
401
+ <track>
402
+ <name>Waiting</name>
403
+ <playcount>14</playcount>
404
+ <tagcount></tagcount>
405
+ <mbid></mbid>
406
+ <url>http://www.last.fm/music/Green+Day/_/Waiting</url>
407
+ <streamable fulltrack="0">1</streamable>
408
+ <artist>
409
+ <name>Green Day</name>
410
+ <mbid>084308bd-1654-436f-ba03-df6697104e19</mbid>
411
+ <url>http://www.last.fm/music/Green+Day</url>
412
+ </artist>
413
+ <image size="small">http://userserve-ak.last.fm/serve/34s/8673063.jpg</image>
414
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/8673063.jpg</image>
415
+ <image size="large">http://userserve-ak.last.fm/serve/126/8673063.jpg</image>
416
+ </track>
417
+ <track>
418
+ <name>Ich verschwinde</name>
419
+ <playcount>14</playcount>
420
+ <tagcount></tagcount>
421
+ <mbid></mbid>
422
+ <url>http://www.last.fm/music/Juli/_/Ich+verschwinde</url>
423
+ <streamable fulltrack="1">1</streamable>
424
+ <artist>
425
+ <name>Juli</name>
426
+ <mbid>9a593aff-62c9-40bd-9631-1697798adb63</mbid>
427
+ <url>http://www.last.fm/music/Juli</url>
428
+ </artist>
429
+ <image size="small">http://userserve-ak.last.fm/serve/34s/8638773.jpg</image>
430
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/8638773.jpg</image>
431
+ <image size="large">http://userserve-ak.last.fm/serve/126/8638773.jpg</image>
432
+ </track>
433
+ <track>
434
+ <name>Invaders Must Die</name>
435
+ <playcount>14</playcount>
436
+ <tagcount></tagcount>
437
+ <mbid></mbid>
438
+ <url>http://www.last.fm/music/The+Prodigy/_/Invaders+Must+Die</url>
439
+ <streamable fulltrack="1">1</streamable>
440
+ <artist>
441
+ <name>The Prodigy</name>
442
+ <mbid>4a4ee089-93b1-4470-af9a-6ff575d32704</mbid>
443
+ <url>http://www.last.fm/music/The+Prodigy</url>
444
+ </artist>
445
+ </track>
446
+ <track>
447
+ <name>Man Overboard</name>
448
+ <playcount>14</playcount>
449
+ <tagcount></tagcount>
450
+ <mbid></mbid>
451
+ <url>http://www.last.fm/music/blink-182/_/Man+Overboard</url>
452
+ <streamable fulltrack="0">1</streamable>
453
+ <artist>
454
+ <name>blink-182</name>
455
+ <mbid>0743b15a-3c32-48c8-ad58-cb325350befa</mbid>
456
+ <url>http://www.last.fm/music/blink-182</url>
457
+ </artist>
458
+ <image size="small">http://userserve-ak.last.fm/serve/34s/8755549.jpg</image>
459
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/8755549.jpg</image>
460
+ <image size="large">http://userserve-ak.last.fm/serve/126/8755549.jpg</image>
461
+ </track>
462
+ <track>
463
+ <name>Supply and Demand</name>
464
+ <playcount>14</playcount>
465
+ <tagcount></tagcount>
466
+ <mbid></mbid>
467
+ <url>http://www.last.fm/music/The+Hives/_/Supply+and+Demand</url>
468
+ <streamable fulltrack="0">1</streamable>
469
+ <artist>
470
+ <name>The Hives</name>
471
+ <mbid>487bfd74-71bf-46dd-b89c-80b7a0f06f2f</mbid>
472
+ <url>http://www.last.fm/music/The+Hives</url>
473
+ </artist>
474
+ <image size="small">http://userserve-ak.last.fm/serve/34s/25888215.png</image>
475
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/25888215.png</image>
476
+ <image size="large">http://userserve-ak.last.fm/serve/126/25888215.png</image>
477
+ </track>
478
+ <track>
479
+ <name>You Can't Stop Me</name>
480
+ <playcount>14</playcount>
481
+ <tagcount></tagcount>
482
+ <mbid></mbid>
483
+ <url>http://www.last.fm/music/Guano+Apes/_/You+Can%27t+Stop+Me</url>
484
+ <streamable fulltrack="0">1</streamable>
485
+ <artist>
486
+ <name>Guano Apes</name>
487
+ <mbid>66da25f9-1534-4dd1-b88c-718bc24e1ccd</mbid>
488
+ <url>http://www.last.fm/music/Guano+Apes</url>
489
+ </artist>
490
+ <image size="small">http://userserve-ak.last.fm/serve/34s/22670585.jpg</image>
491
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/22670585.jpg</image>
492
+ <image size="large">http://userserve-ak.last.fm/serve/126/22670585.jpg</image>
493
+ </track>
494
+ <track>
495
+ <name>Kopf verloren</name>
496
+ <playcount>13</playcount>
497
+ <tagcount></tagcount>
498
+ <mbid></mbid>
499
+ <url>http://www.last.fm/music/Peter+Fox/_/Kopf+verloren</url>
500
+ <streamable fulltrack="0">0</streamable>
501
+ <artist>
502
+ <name>Peter Fox</name>
503
+ <mbid></mbid>
504
+ <url>http://www.last.fm/music/Peter+Fox</url>
505
+ </artist>
506
+ </track>
507
+ <track>
508
+ <name>Wie lange sollen wir noch warten?</name>
509
+ <playcount>13</playcount>
510
+ <tagcount></tagcount>
511
+ <mbid></mbid>
512
+ <url>http://www.last.fm/music/Sportfreunde+Stiller/_/Wie+lange+sollen+wir+noch+warten%3F</url>
513
+ <streamable fulltrack="0">0</streamable>
514
+ <artist>
515
+ <name>Sportfreunde Stiller</name>
516
+ <mbid>35581de7-591f-424f-9c64-7b22fd45605e</mbid>
517
+ <url>http://www.last.fm/music/Sportfreunde+Stiller</url>
518
+ </artist>
519
+ <image size="small">http://userserve-ak.last.fm/serve/34s/25205149.jpg</image>
520
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/25205149.jpg</image>
521
+ <image size="large">http://userserve-ak.last.fm/serve/126/25205149.jpg</image>
522
+ </track>
523
+ <track>
524
+ <name>No Hard Feelings</name>
525
+ <playcount>13</playcount>
526
+ <tagcount></tagcount>
527
+ <mbid></mbid>
528
+ <url>http://www.last.fm/music/Bloodhound+Gang/_/No+Hard+Feelings</url>
529
+ <streamable fulltrack="0">1</streamable>
530
+ <artist>
531
+ <name>Bloodhound Gang</name>
532
+ <mbid>b2dbfc09-b332-408b-a235-1850e41971c5</mbid>
533
+ <url>http://www.last.fm/music/Bloodhound+Gang</url>
534
+ </artist>
535
+ <image size="small">http://userserve-ak.last.fm/serve/34s/10218595.jpg</image>
536
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/10218595.jpg</image>
537
+ <image size="large">http://userserve-ak.last.fm/serve/126/10218595.jpg</image>
538
+ </track>
539
+ <track>
540
+ <name>The Hardest Part</name>
541
+ <playcount>13</playcount>
542
+ <tagcount></tagcount>
543
+ <mbid></mbid>
544
+ <url>http://www.last.fm/music/Coldplay/_/The+Hardest+Part</url>
545
+ <streamable fulltrack="0">1</streamable>
546
+ <artist>
547
+ <name>Coldplay</name>
548
+ <mbid>cc197bad-dc9c-440d-a5b5-d52ba2e14234</mbid>
549
+ <url>http://www.last.fm/music/Coldplay</url>
550
+ </artist>
551
+ <image size="small">http://images.amazon.com/images/P/B0006L16N8.01.MZZZZZZZ.jpg</image>
552
+ <image size="medium">http://images.amazon.com/images/P/B0006L16N8.01.MZZZZZZZ.jpg</image>
553
+ <image size="large">http://images.amazon.com/images/P/B0006L16N8.01.MZZZZZZZ.jpg</image>
554
+ </track>
555
+ <track>
556
+ <name>Lightning Rod</name>
557
+ <playcount>13</playcount>
558
+ <tagcount></tagcount>
559
+ <mbid></mbid>
560
+ <url>http://www.last.fm/music/The+Offspring/_/Lightning+Rod</url>
561
+ <streamable fulltrack="0">1</streamable>
562
+ <artist>
563
+ <name>The Offspring</name>
564
+ <mbid>23a03e33-a603-404e-bcbf-2c00159d7067</mbid>
565
+ <url>http://www.last.fm/music/The+Offspring</url>
566
+ </artist>
567
+ <image size="small">http://userserve-ak.last.fm/serve/34s/23739571.jpg</image>
568
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/23739571.jpg</image>
569
+ <image size="large">http://userserve-ak.last.fm/serve/126/23739571.jpg</image>
570
+ </track>
571
+ <track>
572
+ <name>M+M's</name>
573
+ <playcount>13</playcount>
574
+ <tagcount></tagcount>
575
+ <mbid></mbid>
576
+ <url>http://www.last.fm/music/blink-182/_/M%252BM%2527s</url>
577
+ <streamable fulltrack="0">1</streamable>
578
+ <artist>
579
+ <name>blink-182</name>
580
+ <mbid>0743b15a-3c32-48c8-ad58-cb325350befa</mbid>
581
+ <url>http://www.last.fm/music/blink-182</url>
582
+ </artist>
583
+ <image size="small">http://userserve-ak.last.fm/serve/34s/8639213.jpg</image>
584
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/8639213.jpg</image>
585
+ <image size="large">http://userserve-ak.last.fm/serve/126/8639213.jpg</image>
586
+ </track>
587
+ <track>
588
+ <name>Garouel</name>
589
+ <playcount>13</playcount>
590
+ <tagcount></tagcount>
591
+ <mbid></mbid>
592
+ <url>http://www.last.fm/music/blink-182/_/Garouel</url>
593
+ <streamable fulltrack="0">0</streamable>
594
+ <artist>
595
+ <name>blink-182</name>
596
+ <mbid>0743b15a-3c32-48c8-ad58-cb325350befa</mbid>
597
+ <url>http://www.last.fm/music/blink-182</url>
598
+ </artist>
599
+ </track>
600
+ <track>
601
+ <name>Why Don't You Get a Job?</name>
602
+ <playcount>13</playcount>
603
+ <tagcount></tagcount>
604
+ <mbid></mbid>
605
+ <url>http://www.last.fm/music/The+Offspring/_/Why+Don%27t+You+Get+a+Job%3F</url>
606
+ <streamable fulltrack="0">1</streamable>
607
+ <artist>
608
+ <name>The Offspring</name>
609
+ <mbid>23a03e33-a603-404e-bcbf-2c00159d7067</mbid>
610
+ <url>http://www.last.fm/music/The+Offspring</url>
611
+ </artist>
612
+ <image size="small">http://userserve-ak.last.fm/serve/34s/23714755.jpg</image>
613
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/23714755.jpg</image>
614
+ <image size="large">http://userserve-ak.last.fm/serve/126/23714755.jpg</image>
615
+ </track>
616
+ <track>
617
+ <name>Dancefloor</name>
618
+ <playcount>13</playcount>
619
+ <tagcount></tagcount>
620
+ <mbid></mbid>
621
+ <url>http://www.last.fm/music/The+Holloways/_/Dancefloor</url>
622
+ <streamable fulltrack="0">1</streamable>
623
+ <artist>
624
+ <name>The Holloways</name>
625
+ <mbid>ed0c90ee-4cc0-4928-8f61-93dbd7869eb9</mbid>
626
+ <url>http://www.last.fm/music/The+Holloways</url>
627
+ </artist>
628
+ <image size="small">http://userserve-ak.last.fm/serve/34s/4088497.jpg</image>
629
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/4088497.jpg</image>
630
+ <image size="large">http://userserve-ak.last.fm/serve/126/4088497.jpg</image>
631
+ </track>
632
+ <track>
633
+ <name>Step Into My Office, Baby</name>
634
+ <playcount>13</playcount>
635
+ <tagcount></tagcount>
636
+ <mbid></mbid>
637
+ <url>http://www.last.fm/music/Belle+and+Sebastian/_/Step+Into+My+Office%2C+Baby</url>
638
+ <streamable fulltrack="0">0</streamable>
639
+ <artist>
640
+ <name>Belle and Sebastian</name>
641
+ <mbid>e5c7b94f-e264-473c-bb0f-37c85d4d5c70</mbid>
642
+ <url>http://www.last.fm/music/Belle+and+Sebastian</url>
643
+ </artist>
644
+ <image size="small">http://images.amazon.com/images/P/B0000CBHQ1.01.THUMBZZZ.jpg</image>
645
+ <image size="medium">http://images.amazon.com/images/P/B0000CBHQ1.01.MZZZZZZZ.jpg</image>
646
+ <image size="large">http://images.amazon.com/images/P/B0000CBHQ1.01.LZZZZZZZ.jpg</image>
647
+ </track>
648
+ <track>
649
+ <name>Won't Be Long</name>
650
+ <playcount>13</playcount>
651
+ <tagcount></tagcount>
652
+ <mbid></mbid>
653
+ <url>http://www.last.fm/music/The+Hives/_/Won%27t+Be+Long</url>
654
+ <streamable fulltrack="1">1</streamable>
655
+ <artist>
656
+ <name>The Hives</name>
657
+ <mbid>487bfd74-71bf-46dd-b89c-80b7a0f06f2f</mbid>
658
+ <url>http://www.last.fm/music/The+Hives</url>
659
+ </artist>
660
+ <image size="small">http://userserve-ak.last.fm/serve/34s/9788079.jpg</image>
661
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/9788079.jpg</image>
662
+ <image size="large">http://userserve-ak.last.fm/serve/126/9788079.jpg</image>
663
+ </track>
664
+ <track>
665
+ <name>Low</name>
666
+ <playcount>13</playcount>
667
+ <tagcount></tagcount>
668
+ <mbid></mbid>
669
+ <url>http://www.last.fm/music/Coldplay/_/Low</url>
670
+ <streamable fulltrack="0">1</streamable>
671
+ <artist>
672
+ <name>Coldplay</name>
673
+ <mbid>cc197bad-dc9c-440d-a5b5-d52ba2e14234</mbid>
674
+ <url>http://www.last.fm/music/Coldplay</url>
675
+ </artist>
676
+ <image size="small">http://images.amazon.com/images/P/B0006L16N8.01.MZZZZZZZ.jpg</image>
677
+ <image size="medium">http://images.amazon.com/images/P/B0006L16N8.01.MZZZZZZZ.jpg</image>
678
+ <image size="large">http://images.amazon.com/images/P/B0006L16N8.01.MZZZZZZZ.jpg</image>
679
+ </track>
680
+ <track>
681
+ <name>Turncoat</name>
682
+ <playcount>13</playcount>
683
+ <tagcount></tagcount>
684
+ <mbid></mbid>
685
+ <url>http://www.last.fm/music/Anti-Flag/_/Turncoat</url>
686
+ <streamable fulltrack="0">1</streamable>
687
+ <artist>
688
+ <name>Anti-Flag</name>
689
+ <mbid>b88f21a7-a1b9-48fd-bbc4-ae758026f17f</mbid>
690
+ <url>http://www.last.fm/music/Anti-Flag</url>
691
+ </artist>
692
+ <image size="small">http://images.amazon.com/images/P/B0000DH29Y.01.THUMBZZZ.jpg</image>
693
+ <image size="medium">http://images.amazon.com/images/P/B0000DH29Y.01.MZZZZZZZ.jpg</image>
694
+ <image size="large">http://images.amazon.com/images/P/B0000DH29Y.01.LZZZZZZZ.jpg</image>
695
+ </track>
696
+ <track>
697
+ <name>BURMA</name>
698
+ <playcount>13</playcount>
699
+ <tagcount></tagcount>
700
+ <mbid></mbid>
701
+ <url>http://www.last.fm/music/Dirty+Pretty+Things/_/BURMA</url>
702
+ <streamable fulltrack="0">0</streamable>
703
+ <artist>
704
+ <name>Dirty Pretty Things</name>
705
+ <mbid>648615ca-ca74-460d-928a-2bae67ae6d14</mbid>
706
+ <url>http://www.last.fm/music/Dirty+Pretty+Things</url>
707
+ </artist>
708
+ </track>
709
+ <track>
710
+ <name>Power to the Peaceful</name>
711
+ <playcount>13</playcount>
712
+ <tagcount></tagcount>
713
+ <mbid></mbid>
714
+ <url>http://www.last.fm/music/Anti-Flag/_/Power+to+the+Peaceful</url>
715
+ <streamable fulltrack="0">1</streamable>
716
+ <artist>
717
+ <name>Anti-Flag</name>
718
+ <mbid>b88f21a7-a1b9-48fd-bbc4-ae758026f17f</mbid>
719
+ <url>http://www.last.fm/music/Anti-Flag</url>
720
+ </artist>
721
+ <image size="small">http://images.amazon.com/images/P/B0000DH29Y.01.THUMBZZZ.jpg</image>
722
+ <image size="medium">http://images.amazon.com/images/P/B0000DH29Y.01.MZZZZZZZ.jpg</image>
723
+ <image size="large">http://images.amazon.com/images/P/B0000DH29Y.01.LZZZZZZZ.jpg</image>
724
+ </track>
725
+ <track>
726
+ <name>Warning</name>
727
+ <playcount>13</playcount>
728
+ <tagcount></tagcount>
729
+ <mbid></mbid>
730
+ <url>http://www.last.fm/music/Green+Day/_/Warning</url>
731
+ <streamable fulltrack="0">1</streamable>
732
+ <artist>
733
+ <name>Green Day</name>
734
+ <mbid>084308bd-1654-436f-ba03-df6697104e19</mbid>
735
+ <url>http://www.last.fm/music/Green+Day</url>
736
+ </artist>
737
+ <image size="small">http://userserve-ak.last.fm/serve/34s/8673063.jpg</image>
738
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/8673063.jpg</image>
739
+ <image size="large">http://userserve-ak.last.fm/serve/126/8673063.jpg</image>
740
+ </track>
741
+ <track>
742
+ <name>Talk</name>
743
+ <playcount>13</playcount>
744
+ <tagcount></tagcount>
745
+ <mbid></mbid>
746
+ <url>http://www.last.fm/music/Coldplay/_/Talk</url>
747
+ <streamable fulltrack="0">1</streamable>
748
+ <artist>
749
+ <name>Coldplay</name>
750
+ <mbid>cc197bad-dc9c-440d-a5b5-d52ba2e14234</mbid>
751
+ <url>http://www.last.fm/music/Coldplay</url>
752
+ </artist>
753
+ <image size="small">http://images.amazon.com/images/P/B0006L16N8.01.MZZZZZZZ.jpg</image>
754
+ <image size="medium">http://images.amazon.com/images/P/B0006L16N8.01.MZZZZZZZ.jpg</image>
755
+ <image size="large">http://images.amazon.com/images/P/B0006L16N8.01.MZZZZZZZ.jpg</image>
756
+ </track>
757
+ <track>
758
+ <name>Welcome to Paradise</name>
759
+ <playcount>13</playcount>
760
+ <tagcount></tagcount>
761
+ <mbid></mbid>
762
+ <url>http://www.last.fm/music/Green+Day/_/Welcome+to+Paradise</url>
763
+ <streamable fulltrack="0">1</streamable>
764
+ <artist>
765
+ <name>Green Day</name>
766
+ <mbid>084308bd-1654-436f-ba03-df6697104e19</mbid>
767
+ <url>http://www.last.fm/music/Green+Day</url>
768
+ </artist>
769
+ <image size="small">http://userserve-ak.last.fm/serve/34s/8624469.jpg</image>
770
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/8624469.jpg</image>
771
+ <image size="large">http://userserve-ak.last.fm/serve/126/8624469.jpg</image>
772
+ </track>
773
+ <track>
774
+ <name>Polly</name>
775
+ <playcount>13</playcount>
776
+ <tagcount></tagcount>
777
+ <mbid></mbid>
778
+ <url>http://www.last.fm/music/Nirvana/_/Polly</url>
779
+ <streamable fulltrack="1">1</streamable>
780
+ <artist>
781
+ <name>Nirvana</name>
782
+ <mbid>5b11f4ce-a62d-471e-81fc-a69a8278c7da</mbid>
783
+ <url>http://www.last.fm/music/Nirvana</url>
784
+ </artist>
785
+ <image size="small">http://userserve-ak.last.fm/serve/34s/8590151.jpg</image>
786
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/8590151.jpg</image>
787
+ <image size="large">http://userserve-ak.last.fm/serve/126/8590151.jpg</image>
788
+ </track>
789
+ </tracks></lfm>