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,762 @@
1
+ <?xml version="1.0" encoding="utf-8"?>
2
+ <lfm status="ok">
3
+ <tracks user="xhochy" page="33" perPage="50" totalPages="34">
4
+ <track>
5
+ <name>Deichkind - Limit 2002 OK</name>
6
+ <playcount>1</playcount>
7
+ <tagcount></tagcount>
8
+ <mbid></mbid>
9
+ <url>http://www.last.fm/music/Deichkind/_/Deichkind+-+Limit+2002+++OK</url>
10
+ <streamable fulltrack="0">0</streamable>
11
+ <artist>
12
+ <name>Deichkind</name>
13
+ <mbid>5de80871-f721-4c7c-b0c5-4ad0d350c232</mbid>
14
+ <url>http://www.last.fm/music/Deichkind</url>
15
+ </artist>
16
+ </track>
17
+ <track>
18
+ <name>Die traurige Ballade von Susi Spakowski</name>
19
+ <playcount>1</playcount>
20
+ <tagcount></tagcount>
21
+ <mbid></mbid>
22
+ <url>http://www.last.fm/music/Die+%C3%84rzte/_/Die+traurige+Ballade+von+Susi+Spakowski</url>
23
+ <streamable fulltrack="0">0</streamable>
24
+ <artist>
25
+ <name>Die Ärzte</name>
26
+ <mbid>f2fb0ff0-5679-42ec-a55c-15109ce6e320</mbid>
27
+ <url>http://www.last.fm/music/Die+%C3%84rzte</url>
28
+ </artist>
29
+ <image size="small">http://userserve-ak.last.fm/serve/34s/4541352.jpg</image>
30
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/4541352.jpg</image>
31
+ <image size="large">http://userserve-ak.last.fm/serve/126/4541352.jpg</image>
32
+ </track>
33
+ <track>
34
+ <name>Wenn es passiert</name>
35
+ <playcount>1</playcount>
36
+ <tagcount></tagcount>
37
+ <mbid></mbid>
38
+ <url>http://www.last.fm/music/Wir+sind+Helden/_/Wenn+es+passiert</url>
39
+ <streamable fulltrack="0">1</streamable>
40
+ <artist>
41
+ <name>Wir sind Helden</name>
42
+ <mbid>908fedf4-548a-430f-b806-38fca9507dc4</mbid>
43
+ <url>http://www.last.fm/music/Wir+sind+Helden</url>
44
+ </artist>
45
+ <image size="small">http://userserve-ak.last.fm/serve/34s/14689581.jpg</image>
46
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/14689581.jpg</image>
47
+ <image size="large">http://userserve-ak.last.fm/serve/126/14689581.jpg</image>
48
+ </track>
49
+ <track>
50
+ <name>Books From Boxes</name>
51
+ <playcount>1</playcount>
52
+ <tagcount></tagcount>
53
+ <mbid></mbid>
54
+ <url>http://www.last.fm/music/Max%C3%AFmo+Park/_/Books+From+Boxes</url>
55
+ <streamable fulltrack="0">0</streamable>
56
+ <artist>
57
+ <name>Maxïmo Park</name>
58
+ <mbid>92e634a7-6023-4be8-be15-ebba822f5b34</mbid>
59
+ <url>http://www.last.fm/music/Max%C3%AFmo+Park</url>
60
+ </artist>
61
+ </track>
62
+ <track>
63
+ <name>Vermissen, Baby</name>
64
+ <playcount>1</playcount>
65
+ <tagcount></tagcount>
66
+ <mbid></mbid>
67
+ <url>http://www.last.fm/music/Die+%C3%84rzte/_/Vermissen%2C+Baby</url>
68
+ <streamable fulltrack="0">1</streamable>
69
+ <artist>
70
+ <name>Die Ärzte</name>
71
+ <mbid>f2fb0ff0-5679-42ec-a55c-15109ce6e320</mbid>
72
+ <url>http://www.last.fm/music/Die+%C3%84rzte</url>
73
+ </artist>
74
+ <image size="small">http://images.amazon.com/images/P/B000031X8H.01._SCMZZZZZZZ_.jpg</image>
75
+ <image size="medium">http://images.amazon.com/images/P/B000031X8H.01._SCMZZZZZZZ_.jpg</image>
76
+ <image size="large">http://images.amazon.com/images/P/B000031X8H.01._SCMZZZZZZZ_.jpg</image>
77
+ </track>
78
+ <track>
79
+ <name>So Seductive</name>
80
+ <playcount>1</playcount>
81
+ <tagcount></tagcount>
82
+ <mbid></mbid>
83
+ <url>http://www.last.fm/music/Tony+Yayo/_/So+Seductive</url>
84
+ <streamable fulltrack="1">1</streamable>
85
+ <artist>
86
+ <name>Tony Yayo</name>
87
+ <mbid>45d21b70-e139-4ff9-b487-3c003fa7af0b</mbid>
88
+ <url>http://www.last.fm/music/Tony+Yayo</url>
89
+ </artist>
90
+ <image size="small">http://userserve-ak.last.fm/serve/34s/8751439.jpg</image>
91
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/8751439.jpg</image>
92
+ <image size="large">http://userserve-ak.last.fm/serve/126/8751439.jpg</image>
93
+ </track>
94
+ <track>
95
+ <name>The Old Main Drag</name>
96
+ <playcount>1</playcount>
97
+ <tagcount></tagcount>
98
+ <mbid></mbid>
99
+ <url>http://www.last.fm/music/The+Pogues/_/The+Old+Main+Drag</url>
100
+ <streamable fulltrack="0">1</streamable>
101
+ <artist>
102
+ <name>The Pogues</name>
103
+ <mbid>d41a6875-b626-4c0f-89a1-aecb643d29ff</mbid>
104
+ <url>http://www.last.fm/music/The+Pogues</url>
105
+ </artist>
106
+ <image size="small">http://userserve-ak.last.fm/serve/34s/24315671.jpg</image>
107
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/24315671.jpg</image>
108
+ <image size="large">http://userserve-ak.last.fm/serve/126/24315671.jpg</image>
109
+ </track>
110
+ <track>
111
+ <name>Help Me Please</name>
112
+ <playcount>1</playcount>
113
+ <tagcount></tagcount>
114
+ <mbid></mbid>
115
+ <url>http://www.last.fm/music/Hard-Fi/_/Help+Me+Please</url>
116
+ <streamable fulltrack="0">1</streamable>
117
+ <artist>
118
+ <name>Hard-Fi</name>
119
+ <mbid>46d18823-6a15-49ee-8376-c5f7a49530a6</mbid>
120
+ <url>http://www.last.fm/music/Hard-Fi</url>
121
+ </artist>
122
+ <image size="small">http://userserve-ak.last.fm/serve/34s/10182419.jpg</image>
123
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/10182419.jpg</image>
124
+ <image size="large">http://userserve-ak.last.fm/serve/126/10182419.jpg</image>
125
+ </track>
126
+ <track>
127
+ <name>gustav gans</name>
128
+ <playcount>1</playcount>
129
+ <tagcount></tagcount>
130
+ <mbid></mbid>
131
+ <url>http://www.last.fm/music/Absolute+Beginner/_/gustav+gans</url>
132
+ <streamable fulltrack="0">0</streamable>
133
+ <artist>
134
+ <name>Absolute Beginner</name>
135
+ <mbid>897db291-e88a-49be-baaa-d12e300d971c</mbid>
136
+ <url>http://www.last.fm/music/Absolute+Beginner</url>
137
+ </artist>
138
+ </track>
139
+ <track>
140
+ <name>She's Electric</name>
141
+ <playcount>1</playcount>
142
+ <tagcount></tagcount>
143
+ <mbid></mbid>
144
+ <url>http://www.last.fm/music/Oasis/_/She%27s+Electric</url>
145
+ <streamable fulltrack="0">1</streamable>
146
+ <artist>
147
+ <name>Oasis</name>
148
+ <mbid>39ab1aed-75e0-4140-bd47-540276886b60</mbid>
149
+ <url>http://www.last.fm/music/Oasis</url>
150
+ </artist>
151
+ <image size="small">http://userserve-ak.last.fm/serve/34s/23722513.jpg</image>
152
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/23722513.jpg</image>
153
+ <image size="large">http://userserve-ak.last.fm/serve/126/23722513.jpg</image>
154
+ </track>
155
+ <track>
156
+ <name>Die Sci Fi</name>
157
+ <playcount>1</playcount>
158
+ <tagcount></tagcount>
159
+ <mbid></mbid>
160
+ <url>http://www.last.fm/music/Wednesday+13/_/Die+Sci+Fi</url>
161
+ <streamable fulltrack="0">0</streamable>
162
+ <artist>
163
+ <name>Wednesday 13</name>
164
+ <mbid>f4d306f3-e82b-4186-9cca-4e8806db21f8</mbid>
165
+ <url>http://www.last.fm/music/Wednesday+13</url>
166
+ </artist>
167
+ </track>
168
+ <track>
169
+ <name>Drahtseilakt</name>
170
+ <playcount>1</playcount>
171
+ <tagcount></tagcount>
172
+ <mbid></mbid>
173
+ <url>http://www.last.fm/music/Jennifer+Rostock/_/Drahtseilakt</url>
174
+ <streamable fulltrack="0">0</streamable>
175
+ <artist>
176
+ <name>Jennifer Rostock</name>
177
+ <mbid></mbid>
178
+ <url>http://www.last.fm/music/Jennifer+Rostock</url>
179
+ </artist>
180
+ </track>
181
+ <track>
182
+ <name>Born to Be a Dancer</name>
183
+ <playcount>1</playcount>
184
+ <tagcount></tagcount>
185
+ <mbid></mbid>
186
+ <url>http://www.last.fm/music/Kaiser+Chiefs/_/Born+to+Be+a+Dancer</url>
187
+ <streamable fulltrack="0">0</streamable>
188
+ <artist>
189
+ <name>Kaiser Chiefs</name>
190
+ <mbid>90218af4-4d58-4821-8d41-2ee295ebbe21</mbid>
191
+ <url>http://www.last.fm/music/Kaiser+Chiefs</url>
192
+ </artist>
193
+ <image size="small">http://userserve-ak.last.fm/serve/34s/8674107.jpg</image>
194
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/8674107.jpg</image>
195
+ <image size="large">http://userserve-ak.last.fm/serve/126/8674107.jpg</image>
196
+ </track>
197
+ <track>
198
+ <name>Kopfüber in die Hölle / Revolution</name>
199
+ <playcount>1</playcount>
200
+ <tagcount></tagcount>
201
+ <mbid></mbid>
202
+ <url>http://www.last.fm/music/Die+%C3%84rzte/_/Kopf%25C3%25BCber%2Bin%2Bdie%2BH%25C3%25B6lle%2B%252F%2BRevolution</url>
203
+ <streamable fulltrack="0">0</streamable>
204
+ <artist>
205
+ <name>Die Ärzte</name>
206
+ <mbid>f2fb0ff0-5679-42ec-a55c-15109ce6e320</mbid>
207
+ <url>http://www.last.fm/music/Die+%C3%84rzte</url>
208
+ </artist>
209
+ <image size="small">http://userserve-ak.last.fm/serve/34s/11281187.jpg</image>
210
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/11281187.jpg</image>
211
+ <image size="large">http://userserve-ak.last.fm/serve/126/11281187.jpg</image>
212
+ </track>
213
+ <track>
214
+ <name>Bottle of Smoke</name>
215
+ <playcount>1</playcount>
216
+ <tagcount></tagcount>
217
+ <mbid></mbid>
218
+ <url>http://www.last.fm/music/The+Pogues/_/Bottle+of+Smoke</url>
219
+ <streamable fulltrack="0">1</streamable>
220
+ <artist>
221
+ <name>The Pogues</name>
222
+ <mbid>d41a6875-b626-4c0f-89a1-aecb643d29ff</mbid>
223
+ <url>http://www.last.fm/music/The+Pogues</url>
224
+ </artist>
225
+ <image size="small">http://images.amazon.com/images/P/B0006957SA.01.MZZZZZZZ.jpg</image>
226
+ <image size="medium">http://images.amazon.com/images/P/B0006957SA.01.MZZZZZZZ.jpg</image>
227
+ <image size="large">http://images.amazon.com/images/P/B0006957SA.01.MZZZZZZZ.jpg</image>
228
+ </track>
229
+ <track>
230
+ <name>Mockingbird</name>
231
+ <playcount>1</playcount>
232
+ <tagcount></tagcount>
233
+ <mbid></mbid>
234
+ <url>http://www.last.fm/music/Eminem/_/Mockingbird</url>
235
+ <streamable fulltrack="0">1</streamable>
236
+ <artist>
237
+ <name>Eminem</name>
238
+ <mbid>b95ce3ff-3d05-4e87-9e01-c97b66af13d4</mbid>
239
+ <url>http://www.last.fm/music/Eminem</url>
240
+ </artist>
241
+ <image size="small">http://userserve-ak.last.fm/serve/34s/8674217.jpg</image>
242
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/8674217.jpg</image>
243
+ <image size="large">http://userserve-ak.last.fm/serve/126/8674217.jpg</image>
244
+ </track>
245
+ <track>
246
+ <name>Let's Get Loud</name>
247
+ <playcount>1</playcount>
248
+ <tagcount></tagcount>
249
+ <mbid></mbid>
250
+ <url>http://www.last.fm/music/Jennifer+Lopez/_/Let%27s+Get+Loud</url>
251
+ <streamable fulltrack="0">1</streamable>
252
+ <artist>
253
+ <name>Jennifer Lopez</name>
254
+ <mbid>f0602f55-1770-483d-89bd-4bae0d0ac086</mbid>
255
+ <url>http://www.last.fm/music/Jennifer+Lopez</url>
256
+ </artist>
257
+ <image size="small">http://userserve-ak.last.fm/serve/34s/18915265.jpg</image>
258
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/18915265.jpg</image>
259
+ <image size="large">http://userserve-ak.last.fm/serve/126/18915265.jpg</image>
260
+ </track>
261
+ <track>
262
+ <name>Nothing To Do With You</name>
263
+ <playcount>1</playcount>
264
+ <tagcount></tagcount>
265
+ <mbid></mbid>
266
+ <url>http://www.last.fm/music/The+Pigeon+Detectives/_/Nothing+To+Do+With+You</url>
267
+ <streamable fulltrack="1">1</streamable>
268
+ <artist>
269
+ <name>The Pigeon Detectives</name>
270
+ <mbid>2e04a82f-9118-43b1-a918-bf84f122f7fc</mbid>
271
+ <url>http://www.last.fm/music/The+Pigeon+Detectives</url>
272
+ </artist>
273
+ <image size="small">http://userserve-ak.last.fm/serve/34s/6076980.jpg</image>
274
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/6076980.jpg</image>
275
+ <image size="large">http://userserve-ak.last.fm/serve/126/6076980.jpg</image>
276
+ </track>
277
+ <track>
278
+ <name>Mal sehen</name>
279
+ <playcount>1</playcount>
280
+ <tagcount></tagcount>
281
+ <mbid></mbid>
282
+ <url>http://www.last.fm/music/Fettes+Brot/_/Mal+sehen</url>
283
+ <streamable fulltrack="0">1</streamable>
284
+ <artist>
285
+ <name>Fettes Brot</name>
286
+ <mbid>733e7372-5400-4c79-9059-33e2b2262d01</mbid>
287
+ <url>http://www.last.fm/music/Fettes+Brot</url>
288
+ </artist>
289
+ <image size="small">http://userserve-ak.last.fm/serve/34s/12621867.jpg</image>
290
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/12621867.jpg</image>
291
+ <image size="large">http://userserve-ak.last.fm/serve/126/12621867.jpg</image>
292
+ </track>
293
+ <track>
294
+ <name>Fuck Police Brutality</name>
295
+ <playcount>1</playcount>
296
+ <tagcount></tagcount>
297
+ <mbid></mbid>
298
+ <url>http://www.last.fm/music/Anti-Flag/_/Fuck+Police+Brutality</url>
299
+ <streamable fulltrack="0">1</streamable>
300
+ <artist>
301
+ <name>Anti-Flag</name>
302
+ <mbid>b88f21a7-a1b9-48fd-bbc4-ae758026f17f</mbid>
303
+ <url>http://www.last.fm/music/Anti-Flag</url>
304
+ </artist>
305
+ <image size="small">http://images.amazon.com/images/P/B0000005XM.01.MZZZZZZZ.jpg</image>
306
+ <image size="medium">http://images.amazon.com/images/P/B0000005XM.01.MZZZZZZZ.jpg</image>
307
+ <image size="large">http://images.amazon.com/images/P/B0000005XM.01.MZZZZZZZ.jpg</image>
308
+ </track>
309
+ <track>
310
+ <name>We Need Love</name>
311
+ <playcount>1</playcount>
312
+ <tagcount></tagcount>
313
+ <mbid></mbid>
314
+ <url>http://www.last.fm/music/Hard-Fi/_/We+Need+Love</url>
315
+ <streamable fulltrack="0">1</streamable>
316
+ <artist>
317
+ <name>Hard-Fi</name>
318
+ <mbid>46d18823-6a15-49ee-8376-c5f7a49530a6</mbid>
319
+ <url>http://www.last.fm/music/Hard-Fi</url>
320
+ </artist>
321
+ <image size="small">http://userserve-ak.last.fm/serve/34s/10182419.jpg</image>
322
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/10182419.jpg</image>
323
+ <image size="large">http://userserve-ak.last.fm/serve/126/10182419.jpg</image>
324
+ </track>
325
+ <track>
326
+ <name>Back in Town</name>
327
+ <playcount>1</playcount>
328
+ <tagcount></tagcount>
329
+ <mbid></mbid>
330
+ <url>http://www.last.fm/music/Absolute+Beginner/_/Back+in+Town</url>
331
+ <streamable fulltrack="0">0</streamable>
332
+ <artist>
333
+ <name>Absolute Beginner</name>
334
+ <mbid>897db291-e88a-49be-baaa-d12e300d971c</mbid>
335
+ <url>http://www.last.fm/music/Absolute+Beginner</url>
336
+ </artist>
337
+ </track>
338
+ <track>
339
+ <name>Protest Song '68</name>
340
+ <playcount>1</playcount>
341
+ <tagcount></tagcount>
342
+ <mbid></mbid>
343
+ <url>http://www.last.fm/music/Refused/_/Protest+Song+%2768</url>
344
+ <streamable fulltrack="0">1</streamable>
345
+ <artist>
346
+ <name>Refused</name>
347
+ <mbid>42884e27-dfb8-453d-990f-2ffd90bc2d1a</mbid>
348
+ <url>http://www.last.fm/music/Refused</url>
349
+ </artist>
350
+ <image size="small">http://userserve-ak.last.fm/serve/34s/12622239.jpg</image>
351
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/12622239.jpg</image>
352
+ <image size="large">http://userserve-ak.last.fm/serve/126/12622239.jpg</image>
353
+ </track>
354
+ <track>
355
+ <name>See Dem Coming (Live)</name>
356
+ <playcount>1</playcount>
357
+ <tagcount></tagcount>
358
+ <mbid></mbid>
359
+ <url>http://www.last.fm/music/Gentleman/_/See+Dem+Coming+%28Live%29</url>
360
+ <streamable fulltrack="0">0</streamable>
361
+ <artist>
362
+ <name>Gentleman</name>
363
+ <mbid>8de4a831-7c25-4d34-90cf-254de0c36e49</mbid>
364
+ <url>http://www.last.fm/music/Gentleman</url>
365
+ </artist>
366
+ </track>
367
+ <track>
368
+ <name>Ruby</name>
369
+ <playcount>1</playcount>
370
+ <tagcount></tagcount>
371
+ <mbid></mbid>
372
+ <url>http://www.last.fm/music/Kaiser+Chiefs/_/Ruby</url>
373
+ <streamable fulltrack="1">1</streamable>
374
+ <artist>
375
+ <name>Kaiser Chiefs</name>
376
+ <mbid>90218af4-4d58-4821-8d41-2ee295ebbe21</mbid>
377
+ <url>http://www.last.fm/music/Kaiser+Chiefs</url>
378
+ </artist>
379
+ <image size="small">http://userserve-ak.last.fm/serve/34s/9218885.gif</image>
380
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/9218885.gif</image>
381
+ <image size="large">http://userserve-ak.last.fm/serve/126/9218885.gif</image>
382
+ </track>
383
+ <track>
384
+ <name>Restless</name>
385
+ <playcount>1</playcount>
386
+ <tagcount></tagcount>
387
+ <mbid></mbid>
388
+ <url>http://www.last.fm/music/Evil+Nine/_/Restless</url>
389
+ <streamable fulltrack="1">1</streamable>
390
+ <artist>
391
+ <name>Evil Nine</name>
392
+ <mbid>250b7089-69e4-43b2-bae3-a83d9f6d71bb</mbid>
393
+ <url>http://www.last.fm/music/Evil+Nine</url>
394
+ </artist>
395
+ <image size="small">http://userserve-ak.last.fm/serve/34s/15765657.jpg</image>
396
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/15765657.jpg</image>
397
+ <image size="large">http://userserve-ak.last.fm/serve/126/15765657.jpg</image>
398
+ </track>
399
+ <track>
400
+ <name>Hör weg</name>
401
+ <playcount>1</playcount>
402
+ <tagcount></tagcount>
403
+ <mbid></mbid>
404
+ <url>http://www.last.fm/music/Beginner/_/H%C3%B6r+weg</url>
405
+ <streamable fulltrack="1">1</streamable>
406
+ <artist>
407
+ <name>Beginner</name>
408
+ <mbid>709b55e5-0286-4fda-bf7e-3aff1894554d</mbid>
409
+ <url>http://www.last.fm/music/Beginner</url>
410
+ </artist>
411
+ <image size="small">http://userserve-ak.last.fm/serve/34s/12639629.jpg</image>
412
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/12639629.jpg</image>
413
+ <image size="large">http://userserve-ak.last.fm/serve/126/12639629.jpg</image>
414
+ </track>
415
+ <track>
416
+ <name>See the World</name>
417
+ <playcount>1</playcount>
418
+ <tagcount></tagcount>
419
+ <mbid></mbid>
420
+ <url>http://www.last.fm/music/The+Kooks/_/See+the+World</url>
421
+ <streamable fulltrack="0">1</streamable>
422
+ <artist>
423
+ <name>The Kooks</name>
424
+ <mbid>f82f3a3e-29c2-42ca-b589-bc5dc210fa9e</mbid>
425
+ <url>http://www.last.fm/music/The+Kooks</url>
426
+ </artist>
427
+ <image size="small">http://userserve-ak.last.fm/serve/34s/27156255.png</image>
428
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/27156255.png</image>
429
+ <image size="large">http://userserve-ak.last.fm/serve/126/27156255.png</image>
430
+ </track>
431
+ <track>
432
+ <name>Breakfast at Tiffany's</name>
433
+ <playcount>1</playcount>
434
+ <tagcount></tagcount>
435
+ <mbid></mbid>
436
+ <url>http://www.last.fm/music/Deep+Blue+Something/_/Breakfast+at+Tiffany%27s</url>
437
+ <streamable fulltrack="0">1</streamable>
438
+ <artist>
439
+ <name>Deep Blue Something</name>
440
+ <mbid>ae3f6a8a-c465-4707-8667-8ce0172bc417</mbid>
441
+ <url>http://www.last.fm/music/Deep+Blue+Something</url>
442
+ </artist>
443
+ <image size="small">http://userserve-ak.last.fm/serve/34s/8674417.jpg</image>
444
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/8674417.jpg</image>
445
+ <image size="large">http://userserve-ak.last.fm/serve/126/8674417.jpg</image>
446
+ </track>
447
+ <track>
448
+ <name>Sofa Song</name>
449
+ <playcount>1</playcount>
450
+ <tagcount></tagcount>
451
+ <mbid></mbid>
452
+ <url>http://www.last.fm/music/The+Kooks/_/Sofa+Song</url>
453
+ <streamable fulltrack="0">1</streamable>
454
+ <artist>
455
+ <name>The Kooks</name>
456
+ <mbid>f82f3a3e-29c2-42ca-b589-bc5dc210fa9e</mbid>
457
+ <url>http://www.last.fm/music/The+Kooks</url>
458
+ </artist>
459
+ <image size="small">http://userserve-ak.last.fm/serve/34s/27156255.png</image>
460
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/27156255.png</image>
461
+ <image size="large">http://userserve-ak.last.fm/serve/126/27156255.png</image>
462
+ </track>
463
+ <track>
464
+ <name>Wer bistn du</name>
465
+ <playcount>1</playcount>
466
+ <tagcount></tagcount>
467
+ <mbid></mbid>
468
+ <url>http://www.last.fm/music/Absolute+Beginner/_/Wer+bistn+du</url>
469
+ <streamable fulltrack="0">0</streamable>
470
+ <artist>
471
+ <name>Absolute Beginner</name>
472
+ <mbid>897db291-e88a-49be-baaa-d12e300d971c</mbid>
473
+ <url>http://www.last.fm/music/Absolute+Beginner</url>
474
+ </artist>
475
+ </track>
476
+ <track>
477
+ <name>Culo (DJ XL Remix)</name>
478
+ <playcount>1</playcount>
479
+ <tagcount></tagcount>
480
+ <mbid></mbid>
481
+ <url>http://www.last.fm/music/Pitbull/_/Culo+%28DJ+XL+Remix%29</url>
482
+ <streamable fulltrack="0">0</streamable>
483
+ <artist>
484
+ <name>Pitbull</name>
485
+ <mbid>d262ea27-3ffe-40f7-b922-85c42d625e67</mbid>
486
+ <url>http://www.last.fm/music/Pitbull</url>
487
+ </artist>
488
+ </track>
489
+ <track>
490
+ <name>Friedenspanzer</name>
491
+ <playcount>1</playcount>
492
+ <tagcount></tagcount>
493
+ <mbid></mbid>
494
+ <url>http://www.last.fm/music/Die+%C3%84rzte/_/Friedenspanzer</url>
495
+ <streamable fulltrack="0">1</streamable>
496
+ <artist>
497
+ <name>Die Ärzte</name>
498
+ <mbid>f2fb0ff0-5679-42ec-a55c-15109ce6e320</mbid>
499
+ <url>http://www.last.fm/music/Die+%C3%84rzte</url>
500
+ </artist>
501
+ <image size="small">http://images-eu.amazon.com/images/P/B00000AR9A.03.MZZZZZZZ.jpg</image>
502
+ <image size="medium">http://images-eu.amazon.com/images/P/B00000AR9A.03.MZZZZZZZ.jpg</image>
503
+ <image size="large">http://images-eu.amazon.com/images/P/B00000AR9A.03.MZZZZZZZ.jpg</image>
504
+ </track>
505
+ <track>
506
+ <name>The Horse (is Coming)</name>
507
+ <playcount>1</playcount>
508
+ <tagcount></tagcount>
509
+ <mbid></mbid>
510
+ <url>http://www.last.fm/music/Marshall+Jefferson/_/The+Horse+%28is+Coming%29</url>
511
+ <streamable fulltrack="0">0</streamable>
512
+ <artist>
513
+ <name>Marshall Jefferson</name>
514
+ <mbid>93938558-9a84-4a7f-a15c-6f145100ff5c</mbid>
515
+ <url>http://www.last.fm/music/Marshall+Jefferson</url>
516
+ </artist>
517
+ <image size="small">http://images.amazon.com/images/P/B00004XNSP.01.MZZZZZZZ.jpg</image>
518
+ <image size="medium">http://images.amazon.com/images/P/B00004XNSP.01.MZZZZZZZ.jpg</image>
519
+ <image size="large">http://images.amazon.com/images/P/B00004XNSP.01.MZZZZZZZ.jpg</image>
520
+ </track>
521
+ <track>
522
+ <name>You Blew Me Off</name>
523
+ <playcount>1</playcount>
524
+ <tagcount></tagcount>
525
+ <mbid></mbid>
526
+ <url>http://www.last.fm/music/Bare+Jr./_/You+Blew+Me+Off</url>
527
+ <streamable fulltrack="0">1</streamable>
528
+ <artist>
529
+ <name>Bare Jr.</name>
530
+ <mbid>7463fbd2-60fb-471a-a5cd-d42b75d72dad</mbid>
531
+ <url>http://www.last.fm/music/Bare+Jr.</url>
532
+ </artist>
533
+ <image size="small">http://userserve-ak.last.fm/serve/34s/23022601.jpg</image>
534
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/23022601.jpg</image>
535
+ <image size="large">http://userserve-ak.last.fm/serve/126/23022601.jpg</image>
536
+ </track>
537
+ <track>
538
+ <name>To Lose My Life (Album Version)</name>
539
+ <playcount>1</playcount>
540
+ <tagcount></tagcount>
541
+ <mbid></mbid>
542
+ <url>http://www.last.fm/music/White+Lies/_/To+Lose+My+Life+%28Album+Version%29</url>
543
+ <streamable fulltrack="0">1</streamable>
544
+ <artist>
545
+ <name>White Lies</name>
546
+ <mbid></mbid>
547
+ <url>http://www.last.fm/music/White+Lies</url>
548
+ </artist>
549
+ </track>
550
+ <track>
551
+ <name>London Loves</name>
552
+ <playcount>1</playcount>
553
+ <tagcount></tagcount>
554
+ <mbid></mbid>
555
+ <url>http://www.last.fm/music/Blur/_/London+Loves</url>
556
+ <streamable fulltrack="0">1</streamable>
557
+ <artist>
558
+ <name>Blur</name>
559
+ <mbid>ba853904-ae25-4ebb-89d6-c44cfbd71bd2</mbid>
560
+ <url>http://www.last.fm/music/Blur</url>
561
+ </artist>
562
+ <image size="small">http://userserve-ak.last.fm/serve/34s/14257389.jpg</image>
563
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/14257389.jpg</image>
564
+ <image size="large">http://userserve-ak.last.fm/serve/126/14257389.jpg</image>
565
+ </track>
566
+ <track>
567
+ <name>(Coffee's for Closers)</name>
568
+ <playcount>1</playcount>
569
+ <tagcount></tagcount>
570
+ <mbid></mbid>
571
+ <url>http://www.last.fm/music/Fall+Out+Boy/_/%28Coffee%27s+for+Closers%29</url>
572
+ <streamable fulltrack="1">1</streamable>
573
+ <artist>
574
+ <name>Fall Out Boy</name>
575
+ <mbid>516cef4d-0718-4007-9939-f9b38af3f784</mbid>
576
+ <url>http://www.last.fm/music/Fall+Out+Boy</url>
577
+ </artist>
578
+ </track>
579
+ <track>
580
+ <name>You've Got A Friend In Me</name>
581
+ <playcount>1</playcount>
582
+ <tagcount></tagcount>
583
+ <mbid></mbid>
584
+ <url>http://www.last.fm/music/The+Zutons/_/You%27ve+Got+A+Friend+In+Me</url>
585
+ <streamable fulltrack="0">1</streamable>
586
+ <artist>
587
+ <name>The Zutons</name>
588
+ <mbid>6290b769-173d-49d1-990e-660a4e333877</mbid>
589
+ <url>http://www.last.fm/music/The+Zutons</url>
590
+ </artist>
591
+ <image size="small">http://userserve-ak.last.fm/serve/34s/17459225.jpg</image>
592
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/17459225.jpg</image>
593
+ <image size="large">http://userserve-ak.last.fm/serve/126/17459225.jpg</image>
594
+ </track>
595
+ <track>
596
+ <name>Extended Version</name>
597
+ <playcount>1</playcount>
598
+ <tagcount></tagcount>
599
+ <mbid></mbid>
600
+ <url>http://www.last.fm/music/Stefan+Raab/_/Extended+Version</url>
601
+ <streamable fulltrack="0">0</streamable>
602
+ <artist>
603
+ <name>Stefan Raab</name>
604
+ <mbid>db1943f7-1741-46cd-aa4a-494ea3f753c4</mbid>
605
+ <url>http://www.last.fm/music/Stefan+Raab</url>
606
+ </artist>
607
+ </track>
608
+ <track>
609
+ <name>Court Report</name>
610
+ <playcount>1</playcount>
611
+ <tagcount></tagcount>
612
+ <mbid></mbid>
613
+ <url>http://www.last.fm/music/Little+Man+Tate/_/Court+Report</url>
614
+ <streamable fulltrack="0">1</streamable>
615
+ <artist>
616
+ <name>Little Man Tate</name>
617
+ <mbid>e7cf7ff9-ed2f-4315-aca8-bcbd3b2bfa71</mbid>
618
+ <url>http://www.last.fm/music/Little+Man+Tate</url>
619
+ </artist>
620
+ <image size="small">http://userserve-ak.last.fm/serve/34s/11290697.jpg</image>
621
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/11290697.jpg</image>
622
+ <image size="large">http://userserve-ak.last.fm/serve/126/11290697.jpg</image>
623
+ </track>
624
+ <track>
625
+ <name>Unity</name>
626
+ <playcount>1</playcount>
627
+ <tagcount></tagcount>
628
+ <mbid></mbid>
629
+ <url>http://www.last.fm/music/Operation+Ivy/_/Unity</url>
630
+ <streamable fulltrack="0">1</streamable>
631
+ <artist>
632
+ <name>Operation Ivy</name>
633
+ <mbid>931e1d1f-6b2f-4ff8-9f70-aa537210cd46</mbid>
634
+ <url>http://www.last.fm/music/Operation+Ivy</url>
635
+ </artist>
636
+ <image size="small">http://userserve-ak.last.fm/serve/34s/13888371.jpg</image>
637
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/13888371.jpg</image>
638
+ <image size="large">http://userserve-ak.last.fm/serve/126/13888371.jpg</image>
639
+ </track>
640
+ <track>
641
+ <name>Motown Blood</name>
642
+ <playcount>1</playcount>
643
+ <tagcount></tagcount>
644
+ <mbid></mbid>
645
+ <url>http://www.last.fm/music/Mando+Diao/_/Motown+Blood</url>
646
+ <streamable fulltrack="0">1</streamable>
647
+ <artist>
648
+ <name>Mando Diao</name>
649
+ <mbid>ea854cc1-13fc-4fd0-86a5-d2c7dba06764</mbid>
650
+ <url>http://www.last.fm/music/Mando+Diao</url>
651
+ </artist>
652
+ <image size="small">http://userserve-ak.last.fm/serve/34s/11406701.jpg</image>
653
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/11406701.jpg</image>
654
+ <image size="large">http://userserve-ak.last.fm/serve/126/11406701.jpg</image>
655
+ </track>
656
+ <track>
657
+ <name>Hart aber Izzo</name>
658
+ <playcount>1</playcount>
659
+ <tagcount></tagcount>
660
+ <mbid></mbid>
661
+ <url>http://www.last.fm/music/Denyo/_/Hart+aber+Izzo</url>
662
+ <streamable fulltrack="1">1</streamable>
663
+ <artist>
664
+ <name>Denyo</name>
665
+ <mbid>8bb50f73-dd8b-4b43-b667-bc5c0ec4057a</mbid>
666
+ <url>http://www.last.fm/music/Denyo</url>
667
+ </artist>
668
+ <image size="small">http://userserve-ak.last.fm/serve/34s/8723187.jpg</image>
669
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/8723187.jpg</image>
670
+ <image size="large">http://userserve-ak.last.fm/serve/126/8723187.jpg</image>
671
+ </track>
672
+ <track>
673
+ <name>Country House</name>
674
+ <playcount>1</playcount>
675
+ <tagcount></tagcount>
676
+ <mbid></mbid>
677
+ <url>http://www.last.fm/music/Blur/_/Country+House</url>
678
+ <streamable fulltrack="0">1</streamable>
679
+ <artist>
680
+ <name>Blur</name>
681
+ <mbid>ba853904-ae25-4ebb-89d6-c44cfbd71bd2</mbid>
682
+ <url>http://www.last.fm/music/Blur</url>
683
+ </artist>
684
+ <image size="small">http://userserve-ak.last.fm/serve/34s/14401319.jpg</image>
685
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/14401319.jpg</image>
686
+ <image size="large">http://userserve-ak.last.fm/serve/126/14401319.jpg</image>
687
+ </track>
688
+ <track>
689
+ <name>Meet My Maker / Wounded</name>
690
+ <playcount>1</playcount>
691
+ <tagcount></tagcount>
692
+ <mbid></mbid>
693
+ <url>http://www.last.fm/music/Good+Charlotte/_/Meet%2BMy%2BMaker%2B%252F%2BWounded</url>
694
+ <streamable fulltrack="0">0</streamable>
695
+ <artist>
696
+ <name>Good Charlotte</name>
697
+ <mbid>b267ca80-034e-4dc1-9ed4-ec45f1fed41d</mbid>
698
+ <url>http://www.last.fm/music/Good+Charlotte</url>
699
+ </artist>
700
+ <image size="small">http://userserve-ak.last.fm/serve/34s/19691425.jpg</image>
701
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/19691425.jpg</image>
702
+ <image size="large">http://userserve-ak.last.fm/serve/126/19691425.jpg</image>
703
+ </track>
704
+ <track>
705
+ <name>Enter Faith</name>
706
+ <playcount>1</playcount>
707
+ <tagcount></tagcount>
708
+ <mbid></mbid>
709
+ <url>http://www.last.fm/music/Soulfly/_/Enter+Faith</url>
710
+ <streamable fulltrack="0">0</streamable>
711
+ <artist>
712
+ <name>Soulfly</name>
713
+ <mbid>832a43c7-aa7d-439b-a6b4-4f1afa671c24</mbid>
714
+ <url>http://www.last.fm/music/Soulfly</url>
715
+ </artist>
716
+ </track>
717
+ <track>
718
+ <name>Denyo &amp; Mad</name>
719
+ <playcount>1</playcount>
720
+ <tagcount></tagcount>
721
+ <mbid></mbid>
722
+ <url>http://www.last.fm/music/Denyo/_/Denyo%2B%2526%2BMad</url>
723
+ <streamable fulltrack="1">1</streamable>
724
+ <artist>
725
+ <name>Denyo</name>
726
+ <mbid>8bb50f73-dd8b-4b43-b667-bc5c0ec4057a</mbid>
727
+ <url>http://www.last.fm/music/Denyo</url>
728
+ </artist>
729
+ <image size="small">http://userserve-ak.last.fm/serve/34s/8723187.jpg</image>
730
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/8723187.jpg</image>
731
+ <image size="large">http://userserve-ak.last.fm/serve/126/8723187.jpg</image>
732
+ </track>
733
+ <track>
734
+ <name>Hands Tied Eyes Closed</name>
735
+ <playcount>1</playcount>
736
+ <tagcount></tagcount>
737
+ <mbid></mbid>
738
+ <url>http://www.last.fm/music/Sick+of+It+All/_/Hands+Tied+Eyes+Closed</url>
739
+ <streamable fulltrack="0">1</streamable>
740
+ <artist>
741
+ <name>Sick of It All</name>
742
+ <mbid>e204ed91-3684-4561-b29b-d0b53f8459a7</mbid>
743
+ <url>http://www.last.fm/music/Sick+of+It+All</url>
744
+ </artist>
745
+ <image size="small">http://userserve-ak.last.fm/serve/34s/19879251.jpg</image>
746
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/19879251.jpg</image>
747
+ <image size="large">http://userserve-ak.last.fm/serve/126/19879251.jpg</image>
748
+ </track>
749
+ <track>
750
+ <name>Hoppípolla</name>
751
+ <playcount>1</playcount>
752
+ <tagcount></tagcount>
753
+ <mbid></mbid>
754
+ <url>http://www.last.fm/music/We+Are+Scientists/_/Hopp%C3%ADpolla</url>
755
+ <streamable fulltrack="0">0</streamable>
756
+ <artist>
757
+ <name>We Are Scientists</name>
758
+ <mbid>9386b36e-87f3-4716-a219-79a07a4e29cc</mbid>
759
+ <url>http://www.last.fm/music/We+Are+Scientists</url>
760
+ </artist>
761
+ </track>
762
+ </tracks></lfm>