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,777 @@
1
+ <?xml version="1.0" encoding="utf-8"?>
2
+ <lfm status="ok">
3
+ <tracks user="xhochy" page="12" perPage="50" totalPages="34">
4
+ <track>
5
+ <name>Eleanor Put Your Boots On</name>
6
+ <playcount>6</playcount>
7
+ <tagcount></tagcount>
8
+ <mbid></mbid>
9
+ <url>http://www.last.fm/music/Franz+Ferdinand/_/Eleanor+Put+Your+Boots+On</url>
10
+ <streamable fulltrack="0">1</streamable>
11
+ <artist>
12
+ <name>Franz Ferdinand</name>
13
+ <mbid>aa7a2827-f74b-473c-bd79-03d065835cf7</mbid>
14
+ <url>http://www.last.fm/music/Franz+Ferdinand</url>
15
+ </artist>
16
+ <image size="small">http://userserve-ak.last.fm/serve/34s/19883723.jpg</image>
17
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/19883723.jpg</image>
18
+ <image size="large">http://userserve-ak.last.fm/serve/126/19883723.jpg</image>
19
+ </track>
20
+ <track>
21
+ <name>We Will Be Here</name>
22
+ <playcount>6</playcount>
23
+ <tagcount></tagcount>
24
+ <mbid></mbid>
25
+ <url>http://www.last.fm/music/Jack+Pe%C3%B1ate/_/We+Will+Be+Here</url>
26
+ <streamable fulltrack="0">0</streamable>
27
+ <artist>
28
+ <name>Jack Peñate</name>
29
+ <mbid>9b64cf5d-1f4a-45b5-a84a-5109a88f178f</mbid>
30
+ <url>http://www.last.fm/music/Jack+Pe%C3%B1ate</url>
31
+ </artist>
32
+ </track>
33
+ <track>
34
+ <name>Everything's Not Lost</name>
35
+ <playcount>6</playcount>
36
+ <tagcount></tagcount>
37
+ <mbid></mbid>
38
+ <url>http://www.last.fm/music/Coldplay/_/Everything%27s+Not+Lost</url>
39
+ <streamable fulltrack="0">0</streamable>
40
+ <artist>
41
+ <name>Coldplay</name>
42
+ <mbid>cc197bad-dc9c-440d-a5b5-d52ba2e14234</mbid>
43
+ <url>http://www.last.fm/music/Coldplay</url>
44
+ </artist>
45
+ <image size="small">http://cdn.last.fm/depth/catalogue/noimage/cover_med.gif</image>
46
+ <image size="medium">http://cdn.last.fm/depth/catalogue/noimage/cover_med.gif</image>
47
+ <image size="large">http://cdn.last.fm/depth/catalogue/noimage/cover_med.gif</image>
48
+ </track>
49
+ <track>
50
+ <name>On Top</name>
51
+ <playcount>6</playcount>
52
+ <tagcount></tagcount>
53
+ <mbid></mbid>
54
+ <url>http://www.last.fm/music/The+Killers/_/On+Top</url>
55
+ <streamable fulltrack="1">1</streamable>
56
+ <artist>
57
+ <name>The Killers</name>
58
+ <mbid>95e1ead9-4d31-4808-a7ac-32c3614c116b</mbid>
59
+ <url>http://www.last.fm/music/The+Killers</url>
60
+ </artist>
61
+ <image size="small">http://userserve-ak.last.fm/serve/34s/8634917.jpg</image>
62
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/8634917.jpg</image>
63
+ <image size="large">http://userserve-ak.last.fm/serve/126/8634917.jpg</image>
64
+ </track>
65
+ <track>
66
+ <name>Ist das so?</name>
67
+ <playcount>6</playcount>
68
+ <tagcount></tagcount>
69
+ <mbid></mbid>
70
+ <url>http://www.last.fm/music/Wir+sind+Helden/_/Ist+das+so%3F</url>
71
+ <streamable fulltrack="0">1</streamable>
72
+ <artist>
73
+ <name>Wir sind Helden</name>
74
+ <mbid>908fedf4-548a-430f-b806-38fca9507dc4</mbid>
75
+ <url>http://www.last.fm/music/Wir+sind+Helden</url>
76
+ </artist>
77
+ <image size="small">http://www.7digital.com/shops/assets/sleeveart/0094635454550_182.JPEG</image>
78
+ <image size="medium">http://www.7digital.com/shops/assets/sleeveart/0094635454550_182.JPEG</image>
79
+ <image size="large">http://www.7digital.com/shops/assets/sleeveart/0094635454550_182.JPEG</image>
80
+ </track>
81
+ <track>
82
+ <name>Jenny Was a Friend of Mine</name>
83
+ <playcount>6</playcount>
84
+ <tagcount></tagcount>
85
+ <mbid></mbid>
86
+ <url>http://www.last.fm/music/The+Killers/_/Jenny+Was+a+Friend+of+Mine</url>
87
+ <streamable fulltrack="0">0</streamable>
88
+ <artist>
89
+ <name>The Killers</name>
90
+ <mbid>95e1ead9-4d31-4808-a7ac-32c3614c116b</mbid>
91
+ <url>http://www.last.fm/music/The+Killers</url>
92
+ </artist>
93
+ <image size="small">http://userserve-ak.last.fm/serve/34s/8634917.jpg</image>
94
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/8634917.jpg</image>
95
+ <image size="large">http://userserve-ak.last.fm/serve/126/8634917.jpg</image>
96
+ </track>
97
+ <track>
98
+ <name>Hard Rock Hallelujah</name>
99
+ <playcount>6</playcount>
100
+ <tagcount></tagcount>
101
+ <mbid></mbid>
102
+ <url>http://www.last.fm/music/Lordi/_/Hard+Rock+Hallelujah</url>
103
+ <streamable fulltrack="0">1</streamable>
104
+ <artist>
105
+ <name>Lordi</name>
106
+ <mbid>b5b4ba6e-6e34-4669-a33b-0d813b4c3d83</mbid>
107
+ <url>http://www.last.fm/music/Lordi</url>
108
+ </artist>
109
+ <image size="small">http://userserve-ak.last.fm/serve/34s/22998149.jpg</image>
110
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/22998149.jpg</image>
111
+ <image size="large">http://userserve-ak.last.fm/serve/126/22998149.jpg</image>
112
+ </track>
113
+ <track>
114
+ <name>No Good</name>
115
+ <playcount>6</playcount>
116
+ <tagcount></tagcount>
117
+ <mbid></mbid>
118
+ <url>http://www.last.fm/music/The+Prodigy/_/No+Good</url>
119
+ <streamable fulltrack="0">0</streamable>
120
+ <artist>
121
+ <name>The Prodigy</name>
122
+ <mbid>4a4ee089-93b1-4470-af9a-6ff575d32704</mbid>
123
+ <url>http://www.last.fm/music/The+Prodigy</url>
124
+ </artist>
125
+ <image size="small">http://images.amazon.com/images/P/B00004USZE.01.MZZZZZZZ.jpg</image>
126
+ <image size="medium">http://images.amazon.com/images/P/B00004USZE.01.MZZZZZZZ.jpg</image>
127
+ <image size="large">http://images.amazon.com/images/P/B00004USZE.01.MZZZZZZZ.jpg</image>
128
+ </track>
129
+ <track>
130
+ <name>Das zweite Gesicht</name>
131
+ <playcount>6</playcount>
132
+ <tagcount></tagcount>
133
+ <mbid></mbid>
134
+ <url>http://www.last.fm/music/Peter+Fox/_/Das+zweite+Gesicht</url>
135
+ <streamable fulltrack="0">0</streamable>
136
+ <artist>
137
+ <name>Peter Fox</name>
138
+ <mbid></mbid>
139
+ <url>http://www.last.fm/music/Peter+Fox</url>
140
+ </artist>
141
+ </track>
142
+ <track>
143
+ <name>Shoppen gehen</name>
144
+ <playcount>6</playcount>
145
+ <tagcount></tagcount>
146
+ <mbid></mbid>
147
+ <url>http://www.last.fm/music/Madsen/_/Shoppen+gehen</url>
148
+ <streamable fulltrack="1">1</streamable>
149
+ <artist>
150
+ <name>Madsen</name>
151
+ <mbid>8a0c3b86-af55-42d2-85b9-6372e7430986</mbid>
152
+ <url>http://www.last.fm/music/Madsen</url>
153
+ </artist>
154
+ <image size="small">http://userserve-ak.last.fm/serve/34s/8729333.jpg</image>
155
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/8729333.jpg</image>
156
+ <image size="large">http://userserve-ak.last.fm/serve/126/8729333.jpg</image>
157
+ </track>
158
+ <track>
159
+ <name>What If</name>
160
+ <playcount>6</playcount>
161
+ <tagcount></tagcount>
162
+ <mbid></mbid>
163
+ <url>http://www.last.fm/music/Coldplay/_/What+If</url>
164
+ <streamable fulltrack="0">1</streamable>
165
+ <artist>
166
+ <name>Coldplay</name>
167
+ <mbid>cc197bad-dc9c-440d-a5b5-d52ba2e14234</mbid>
168
+ <url>http://www.last.fm/music/Coldplay</url>
169
+ </artist>
170
+ <image size="small">http://userserve-ak.last.fm/serve/34s/14215207.jpg</image>
171
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/14215207.jpg</image>
172
+ <image size="large">http://userserve-ak.last.fm/serve/126/14215207.jpg</image>
173
+ </track>
174
+ <track>
175
+ <name>The Irony of It All</name>
176
+ <playcount>6</playcount>
177
+ <tagcount></tagcount>
178
+ <mbid></mbid>
179
+ <url>http://www.last.fm/music/The+Streets/_/The+Irony+of+It+All</url>
180
+ <streamable fulltrack="0">1</streamable>
181
+ <artist>
182
+ <name>The Streets</name>
183
+ <mbid>6f607087-9c46-4bb2-a884-e4efc764554c</mbid>
184
+ <url>http://www.last.fm/music/The+Streets</url>
185
+ </artist>
186
+ <image size="small">http://userserve-ak.last.fm/serve/34s/8594953.jpg</image>
187
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/8594953.jpg</image>
188
+ <image size="large">http://userserve-ak.last.fm/serve/126/8594953.jpg</image>
189
+ </track>
190
+ <track>
191
+ <name>Du Nimmst Mir Die Sicht</name>
192
+ <playcount>6</playcount>
193
+ <tagcount></tagcount>
194
+ <mbid></mbid>
195
+ <url>http://www.last.fm/music/Juli/_/Du+Nimmst+Mir+Die+Sicht</url>
196
+ <streamable fulltrack="0">0</streamable>
197
+ <artist>
198
+ <name>Juli</name>
199
+ <mbid>9a593aff-62c9-40bd-9631-1697798adb63</mbid>
200
+ <url>http://www.last.fm/music/Juli</url>
201
+ </artist>
202
+ </track>
203
+ <track>
204
+ <name>The Hives - Introduce the Metric System in Time</name>
205
+ <playcount>6</playcount>
206
+ <tagcount></tagcount>
207
+ <mbid></mbid>
208
+ <url>http://www.last.fm/music/The+Hives/_/The+Hives+-+Introduce+the+Metric+System+in+Time</url>
209
+ <streamable fulltrack="0">1</streamable>
210
+ <artist>
211
+ <name>The Hives</name>
212
+ <mbid>487bfd74-71bf-46dd-b89c-80b7a0f06f2f</mbid>
213
+ <url>http://www.last.fm/music/The+Hives</url>
214
+ </artist>
215
+ <image size="small">http://images.amazon.com/images/P/B00004TQTZ.01.MZZZZZZZ.jpg</image>
216
+ <image size="medium">http://images.amazon.com/images/P/B00004TQTZ.01.MZZZZZZZ.jpg</image>
217
+ <image size="large">http://images.amazon.com/images/P/B00004TQTZ.01.MZZZZZZZ.jpg</image>
218
+ </track>
219
+ <track>
220
+ <name>Kiss You Better</name>
221
+ <playcount>6</playcount>
222
+ <tagcount></tagcount>
223
+ <mbid></mbid>
224
+ <url>http://www.last.fm/music/Max%C3%AFmo+Park/_/Kiss+You+Better</url>
225
+ <streamable fulltrack="0">1</streamable>
226
+ <artist>
227
+ <name>Maxïmo Park</name>
228
+ <mbid>92e634a7-6023-4be8-be15-ebba822f5b34</mbid>
229
+ <url>http://www.last.fm/music/Max%C3%AFmo+Park</url>
230
+ </artist>
231
+ <image size="small">http://images.amazon.com/images/P/B00094OBX4.01.MZZZZZZZ.jpg</image>
232
+ <image size="medium">http://images.amazon.com/images/P/B00094OBX4.01.MZZZZZZZ.jpg</image>
233
+ <image size="large">http://images.amazon.com/images/P/B00094OBX4.01.MZZZZZZZ.jpg</image>
234
+ </track>
235
+ <track>
236
+ <name>Papercut</name>
237
+ <playcount>6</playcount>
238
+ <tagcount></tagcount>
239
+ <mbid></mbid>
240
+ <url>http://www.last.fm/music/Linkin+Park/_/Papercut</url>
241
+ <streamable fulltrack="0">1</streamable>
242
+ <artist>
243
+ <name>Linkin Park</name>
244
+ <mbid>f59c5520-5f46-4d2c-b2c4-822eabf53419</mbid>
245
+ <url>http://www.last.fm/music/Linkin+Park</url>
246
+ </artist>
247
+ <image size="small">http://userserve-ak.last.fm/serve/34s/8591413.jpg</image>
248
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/8591413.jpg</image>
249
+ <image size="large">http://userserve-ak.last.fm/serve/126/8591413.jpg</image>
250
+ </track>
251
+ <track>
252
+ <name>Der Moment</name>
253
+ <playcount>6</playcount>
254
+ <tagcount></tagcount>
255
+ <mbid></mbid>
256
+ <url>http://www.last.fm/music/Madsen/_/Der+Moment</url>
257
+ <streamable fulltrack="1">1</streamable>
258
+ <artist>
259
+ <name>Madsen</name>
260
+ <mbid>8a0c3b86-af55-42d2-85b9-6372e7430986</mbid>
261
+ <url>http://www.last.fm/music/Madsen</url>
262
+ </artist>
263
+ <image size="small">http://userserve-ak.last.fm/serve/34s/9998507.jpg</image>
264
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/9998507.jpg</image>
265
+ <image size="large">http://userserve-ak.last.fm/serve/126/9998507.jpg</image>
266
+ </track>
267
+ <track>
268
+ <name>I Like Dirt</name>
269
+ <playcount>6</playcount>
270
+ <tagcount></tagcount>
271
+ <mbid></mbid>
272
+ <url>http://www.last.fm/music/Red+Hot+Chili+Peppers/_/I+Like+Dirt</url>
273
+ <streamable fulltrack="0">1</streamable>
274
+ <artist>
275
+ <name>Red Hot Chili Peppers</name>
276
+ <mbid>8bfac288-ccc5-448d-9573-c33ea2aa5c30</mbid>
277
+ <url>http://www.last.fm/music/Red+Hot+Chili+Peppers</url>
278
+ </artist>
279
+ <image size="small">http://userserve-ak.last.fm/serve/34s/8593509.jpg</image>
280
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/8593509.jpg</image>
281
+ <image size="large">http://userserve-ak.last.fm/serve/126/8593509.jpg</image>
282
+ </track>
283
+ <track>
284
+ <name>Ich Rette Die Welt</name>
285
+ <playcount>6</playcount>
286
+ <tagcount></tagcount>
287
+ <mbid></mbid>
288
+ <url>http://www.last.fm/music/Madsen/_/Ich+Rette+Die+Welt</url>
289
+ <streamable fulltrack="1">1</streamable>
290
+ <artist>
291
+ <name>Madsen</name>
292
+ <mbid>8a0c3b86-af55-42d2-85b9-6372e7430986</mbid>
293
+ <url>http://www.last.fm/music/Madsen</url>
294
+ </artist>
295
+ <image size="small">http://userserve-ak.last.fm/serve/34s/9998507.jpg</image>
296
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/9998507.jpg</image>
297
+ <image size="large">http://userserve-ak.last.fm/serve/126/9998507.jpg</image>
298
+ </track>
299
+ <track>
300
+ <name>Lauterbach</name>
301
+ <playcount>6</playcount>
302
+ <tagcount></tagcount>
303
+ <mbid></mbid>
304
+ <url>http://www.last.fm/music/Fettes+Brot/_/Lauterbach</url>
305
+ <streamable fulltrack="0">0</streamable>
306
+ <artist>
307
+ <name>Fettes Brot</name>
308
+ <mbid>733e7372-5400-4c79-9059-33e2b2262d01</mbid>
309
+ <url>http://www.last.fm/music/Fettes+Brot</url>
310
+ </artist>
311
+ <image size="small">http://images.amazon.com/images/P/B0007RA6Z0.01.MZZZZZZZ.jpg</image>
312
+ <image size="medium">http://images.amazon.com/images/P/B0007RA6Z0.01.MZZZZZZZ.jpg</image>
313
+ <image size="large">http://images.amazon.com/images/P/B0007RA6Z0.01.MZZZZZZZ.jpg</image>
314
+ </track>
315
+ <track>
316
+ <name>Who Dares Wins</name>
317
+ <playcount>6</playcount>
318
+ <tagcount></tagcount>
319
+ <mbid></mbid>
320
+ <url>http://www.last.fm/music/The+Streets/_/Who+Dares+Wins</url>
321
+ <streamable fulltrack="0">1</streamable>
322
+ <artist>
323
+ <name>The Streets</name>
324
+ <mbid>6f607087-9c46-4bb2-a884-e4efc764554c</mbid>
325
+ <url>http://www.last.fm/music/The+Streets</url>
326
+ </artist>
327
+ <image size="small">http://userserve-ak.last.fm/serve/34s/8594953.jpg</image>
328
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/8594953.jpg</image>
329
+ <image size="large">http://userserve-ak.last.fm/serve/126/8594953.jpg</image>
330
+ </track>
331
+ <track>
332
+ <name>Am Besten sein</name>
333
+ <playcount>6</playcount>
334
+ <tagcount></tagcount>
335
+ <mbid></mbid>
336
+ <url>http://www.last.fm/music/Juli/_/Am+Besten+sein</url>
337
+ <streamable fulltrack="0">0</streamable>
338
+ <artist>
339
+ <name>Juli</name>
340
+ <mbid>9a593aff-62c9-40bd-9631-1697798adb63</mbid>
341
+ <url>http://www.last.fm/music/Juli</url>
342
+ </artist>
343
+ </track>
344
+ <track>
345
+ <name>Second, Minute or Hour</name>
346
+ <playcount>6</playcount>
347
+ <tagcount></tagcount>
348
+ <mbid></mbid>
349
+ <url>http://www.last.fm/music/Jack+Pe%C3%B1ate/_/Second%2C+Minute+or+Hour</url>
350
+ <streamable fulltrack="0">0</streamable>
351
+ <artist>
352
+ <name>Jack Peñate</name>
353
+ <mbid>9b64cf5d-1f4a-45b5-a84a-5109a88f178f</mbid>
354
+ <url>http://www.last.fm/music/Jack+Pe%C3%B1ate</url>
355
+ </artist>
356
+ </track>
357
+ <track>
358
+ <name>Euphorie</name>
359
+ <playcount>6</playcount>
360
+ <tagcount></tagcount>
361
+ <mbid></mbid>
362
+ <url>http://www.last.fm/music/Madsen/_/Euphorie</url>
363
+ <streamable fulltrack="1">1</streamable>
364
+ <artist>
365
+ <name>Madsen</name>
366
+ <mbid>8a0c3b86-af55-42d2-85b9-6372e7430986</mbid>
367
+ <url>http://www.last.fm/music/Madsen</url>
368
+ </artist>
369
+ <image size="small">http://userserve-ak.last.fm/serve/34s/9998507.jpg</image>
370
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/9998507.jpg</image>
371
+ <image size="large">http://userserve-ak.last.fm/serve/126/9998507.jpg</image>
372
+ </track>
373
+ <track>
374
+ <name>City of Delusion</name>
375
+ <playcount>6</playcount>
376
+ <tagcount></tagcount>
377
+ <mbid></mbid>
378
+ <url>http://www.last.fm/music/Muse/_/City+of+Delusion</url>
379
+ <streamable fulltrack="0">1</streamable>
380
+ <artist>
381
+ <name>Muse</name>
382
+ <mbid>9c9f1380-2516-4fc9-a3e6-f9f61941d090</mbid>
383
+ <url>http://www.last.fm/music/Muse</url>
384
+ </artist>
385
+ <image size="small">http://userserve-ak.last.fm/serve/34s/8855843.jpg</image>
386
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/8855843.jpg</image>
387
+ <image size="large">http://userserve-ak.last.fm/serve/126/8855843.jpg</image>
388
+ </track>
389
+ <track>
390
+ <name>Once, a Glimpse</name>
391
+ <playcount>6</playcount>
392
+ <tagcount></tagcount>
393
+ <mbid></mbid>
394
+ <url>http://www.last.fm/music/Max%C3%AFmo+Park/_/Once%2C+a+Glimpse</url>
395
+ <streamable fulltrack="0">1</streamable>
396
+ <artist>
397
+ <name>Maxïmo Park</name>
398
+ <mbid>92e634a7-6023-4be8-be15-ebba822f5b34</mbid>
399
+ <url>http://www.last.fm/music/Max%C3%AFmo+Park</url>
400
+ </artist>
401
+ <image size="small">http://userserve-ak.last.fm/serve/34s/15267909.jpg</image>
402
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/15267909.jpg</image>
403
+ <image size="large">http://userserve-ak.last.fm/serve/126/15267909.jpg</image>
404
+ </track>
405
+ <track>
406
+ <name>Easier to Run</name>
407
+ <playcount>6</playcount>
408
+ <tagcount></tagcount>
409
+ <mbid></mbid>
410
+ <url>http://www.last.fm/music/Linkin+Park/_/Easier+to+Run</url>
411
+ <streamable fulltrack="0">1</streamable>
412
+ <artist>
413
+ <name>Linkin Park</name>
414
+ <mbid>f59c5520-5f46-4d2c-b2c4-822eabf53419</mbid>
415
+ <url>http://www.last.fm/music/Linkin+Park</url>
416
+ </artist>
417
+ <image size="small">http://userserve-ak.last.fm/serve/34s/8641895.jpg</image>
418
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/8641895.jpg</image>
419
+ <image size="large">http://userserve-ak.last.fm/serve/126/8641895.jpg</image>
420
+ </track>
421
+ <track>
422
+ <name>Exo-Politics</name>
423
+ <playcount>6</playcount>
424
+ <tagcount></tagcount>
425
+ <mbid></mbid>
426
+ <url>http://www.last.fm/music/Muse/_/Exo-Politics</url>
427
+ <streamable fulltrack="0">1</streamable>
428
+ <artist>
429
+ <name>Muse</name>
430
+ <mbid>9c9f1380-2516-4fc9-a3e6-f9f61941d090</mbid>
431
+ <url>http://www.last.fm/music/Muse</url>
432
+ </artist>
433
+ <image size="small">http://userserve-ak.last.fm/serve/34s/8855843.jpg</image>
434
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/8855843.jpg</image>
435
+ <image size="large">http://userserve-ak.last.fm/serve/126/8855843.jpg</image>
436
+ </track>
437
+ <track>
438
+ <name>2000 Miles</name>
439
+ <playcount>6</playcount>
440
+ <tagcount></tagcount>
441
+ <mbid></mbid>
442
+ <url>http://www.last.fm/music/Coldplay/_/2000+Miles</url>
443
+ <streamable fulltrack="0">0</streamable>
444
+ <artist>
445
+ <name>Coldplay</name>
446
+ <mbid>cc197bad-dc9c-440d-a5b5-d52ba2e14234</mbid>
447
+ <url>http://www.last.fm/music/Coldplay</url>
448
+ </artist>
449
+ <image size="small">http://userserve-ak.last.fm/serve/34s/3517657.jpg</image>
450
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/3517657.jpg</image>
451
+ <image size="large">http://userserve-ak.last.fm/serve/126/3517657.jpg</image>
452
+ </track>
453
+ <track>
454
+ <name>In This World</name>
455
+ <playcount>6</playcount>
456
+ <tagcount></tagcount>
457
+ <mbid></mbid>
458
+ <url>http://www.last.fm/music/Good+Charlotte/_/In+This+World</url>
459
+ <streamable fulltrack="0">0</streamable>
460
+ <artist>
461
+ <name>Good Charlotte</name>
462
+ <mbid>b267ca80-034e-4dc1-9ed4-ec45f1fed41d</mbid>
463
+ <url>http://www.last.fm/music/Good+Charlotte</url>
464
+ </artist>
465
+ </track>
466
+ <track>
467
+ <name>I Predict a Riot</name>
468
+ <playcount>6</playcount>
469
+ <tagcount></tagcount>
470
+ <mbid></mbid>
471
+ <url>http://www.last.fm/music/Kaiser+Chiefs/_/I+Predict+a+Riot</url>
472
+ <streamable fulltrack="0">1</streamable>
473
+ <artist>
474
+ <name>Kaiser Chiefs</name>
475
+ <mbid>90218af4-4d58-4821-8d41-2ee295ebbe21</mbid>
476
+ <url>http://www.last.fm/music/Kaiser+Chiefs</url>
477
+ </artist>
478
+ <image size="small">http://userserve-ak.last.fm/serve/34s/8674107.jpg</image>
479
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/8674107.jpg</image>
480
+ <image size="large">http://userserve-ak.last.fm/serve/126/8674107.jpg</image>
481
+ </track>
482
+ <track>
483
+ <name>State of Fear</name>
484
+ <playcount>6</playcount>
485
+ <tagcount></tagcount>
486
+ <mbid></mbid>
487
+ <url>http://www.last.fm/music/Useless+ID/_/State+of+Fear</url>
488
+ <streamable fulltrack="0">0</streamable>
489
+ <artist>
490
+ <name>Useless ID</name>
491
+ <mbid>3bb24e11-821a-4e4e-bd89-e0a2452474cf</mbid>
492
+ <url>http://www.last.fm/music/Useless+ID</url>
493
+ </artist>
494
+ <image size="small">http://images.amazon.com/images/P/B0009PCDQK.01.MZZZZZZZ.jpg</image>
495
+ <image size="medium">http://images.amazon.com/images/P/B0009PCDQK.01.MZZZZZZZ.jpg</image>
496
+ <image size="large">http://images.amazon.com/images/P/B0009PCDQK.01.MZZZZZZZ.jpg</image>
497
+ </track>
498
+ <track>
499
+ <name>Territorial Pissings</name>
500
+ <playcount>6</playcount>
501
+ <tagcount></tagcount>
502
+ <mbid></mbid>
503
+ <url>http://www.last.fm/music/Nirvana/_/Territorial+Pissings</url>
504
+ <streamable fulltrack="1">1</streamable>
505
+ <artist>
506
+ <name>Nirvana</name>
507
+ <mbid>5b11f4ce-a62d-471e-81fc-a69a8278c7da</mbid>
508
+ <url>http://www.last.fm/music/Nirvana</url>
509
+ </artist>
510
+ <image size="small">http://userserve-ak.last.fm/serve/34s/8590151.jpg</image>
511
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/8590151.jpg</image>
512
+ <image size="large">http://userserve-ak.last.fm/serve/126/8590151.jpg</image>
513
+ </track>
514
+ <track>
515
+ <name>Lounge Act</name>
516
+ <playcount>6</playcount>
517
+ <tagcount></tagcount>
518
+ <mbid></mbid>
519
+ <url>http://www.last.fm/music/Nirvana/_/Lounge+Act</url>
520
+ <streamable fulltrack="1">1</streamable>
521
+ <artist>
522
+ <name>Nirvana</name>
523
+ <mbid>5b11f4ce-a62d-471e-81fc-a69a8278c7da</mbid>
524
+ <url>http://www.last.fm/music/Nirvana</url>
525
+ </artist>
526
+ <image size="small">http://userserve-ak.last.fm/serve/34s/8590151.jpg</image>
527
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/8590151.jpg</image>
528
+ <image size="large">http://userserve-ak.last.fm/serve/126/8590151.jpg</image>
529
+ </track>
530
+ <track>
531
+ <name>Drain You</name>
532
+ <playcount>6</playcount>
533
+ <tagcount></tagcount>
534
+ <mbid></mbid>
535
+ <url>http://www.last.fm/music/Nirvana/_/Drain+You</url>
536
+ <streamable fulltrack="1">1</streamable>
537
+ <artist>
538
+ <name>Nirvana</name>
539
+ <mbid>5b11f4ce-a62d-471e-81fc-a69a8278c7da</mbid>
540
+ <url>http://www.last.fm/music/Nirvana</url>
541
+ </artist>
542
+ <image size="small">http://userserve-ak.last.fm/serve/34s/8590151.jpg</image>
543
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/8590151.jpg</image>
544
+ <image size="large">http://userserve-ak.last.fm/serve/126/8590151.jpg</image>
545
+ </track>
546
+ <track>
547
+ <name>Trouble</name>
548
+ <playcount>6</playcount>
549
+ <tagcount></tagcount>
550
+ <mbid></mbid>
551
+ <url>http://www.last.fm/music/Coldplay/_/Trouble</url>
552
+ <streamable fulltrack="0">1</streamable>
553
+ <artist>
554
+ <name>Coldplay</name>
555
+ <mbid>cc197bad-dc9c-440d-a5b5-d52ba2e14234</mbid>
556
+ <url>http://www.last.fm/music/Coldplay</url>
557
+ </artist>
558
+ <image size="small">http://userserve-ak.last.fm/serve/34s/14225619.jpg</image>
559
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/14225619.jpg</image>
560
+ <image size="large">http://userserve-ak.last.fm/serve/126/14225619.jpg</image>
561
+ </track>
562
+ <track>
563
+ <name>Langweilig</name>
564
+ <playcount>5</playcount>
565
+ <tagcount></tagcount>
566
+ <mbid></mbid>
567
+ <url>http://www.last.fm/music/Die+%C3%84rzte/_/Langweilig</url>
568
+ <streamable fulltrack="0">0</streamable>
569
+ <artist>
570
+ <name>Die Ärzte</name>
571
+ <mbid>f2fb0ff0-5679-42ec-a55c-15109ce6e320</mbid>
572
+ <url>http://www.last.fm/music/Die+%C3%84rzte</url>
573
+ </artist>
574
+ <image size="small">http://userserve-ak.last.fm/serve/34s/4541352.jpg</image>
575
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/4541352.jpg</image>
576
+ <image size="large">http://userserve-ak.last.fm/serve/126/4541352.jpg</image>
577
+ </track>
578
+ <track>
579
+ <name>Denkmal</name>
580
+ <playcount>5</playcount>
581
+ <tagcount></tagcount>
582
+ <mbid></mbid>
583
+ <url>http://www.last.fm/music/Wir+sind+Helden/_/Denkmal</url>
584
+ <streamable fulltrack="0">1</streamable>
585
+ <artist>
586
+ <name>Wir sind Helden</name>
587
+ <mbid>908fedf4-548a-430f-b806-38fca9507dc4</mbid>
588
+ <url>http://www.last.fm/music/Wir+sind+Helden</url>
589
+ </artist>
590
+ <image size="small">http://userserve-ak.last.fm/serve/34s/15183527.jpg</image>
591
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/15183527.jpg</image>
592
+ <image size="large">http://userserve-ak.last.fm/serve/126/15183527.jpg</image>
593
+ </track>
594
+ <track>
595
+ <name>Animals</name>
596
+ <playcount>5</playcount>
597
+ <tagcount></tagcount>
598
+ <mbid></mbid>
599
+ <url>http://www.last.fm/music/Coldplay/_/Animals</url>
600
+ <streamable fulltrack="0">1</streamable>
601
+ <artist>
602
+ <name>Coldplay</name>
603
+ <mbid>cc197bad-dc9c-440d-a5b5-d52ba2e14234</mbid>
604
+ <url>http://www.last.fm/music/Coldplay</url>
605
+ </artist>
606
+ <image size="small">http://cdn.last.fm/depth/catalogue/noimage/cover_med.gif</image>
607
+ <image size="medium">http://cdn.last.fm/depth/catalogue/noimage/cover_med.gif</image>
608
+ <image size="large">http://cdn.last.fm/depth/catalogue/noimage/cover_med.gif</image>
609
+ </track>
610
+ <track>
611
+ <name>Somebody told Me - Josh Harris Remix</name>
612
+ <playcount>5</playcount>
613
+ <tagcount></tagcount>
614
+ <mbid></mbid>
615
+ <url>http://www.last.fm/music/The+Killers/_/Somebody+told+Me+-+Josh+Harris+Remix</url>
616
+ <streamable fulltrack="0">0</streamable>
617
+ <artist>
618
+ <name>The Killers</name>
619
+ <mbid>95e1ead9-4d31-4808-a7ac-32c3614c116b</mbid>
620
+ <url>http://www.last.fm/music/The+Killers</url>
621
+ </artist>
622
+ </track>
623
+ <track>
624
+ <name>Paris 2004</name>
625
+ <playcount>5</playcount>
626
+ <tagcount></tagcount>
627
+ <mbid></mbid>
628
+ <url>http://www.last.fm/music/Peter+Bjorn+and+John/_/Paris+2004</url>
629
+ <streamable fulltrack="0">1</streamable>
630
+ <artist>
631
+ <name>Peter Bjorn and John</name>
632
+ <mbid>32a83250-7e26-422d-b9ac-f4564343e9ce</mbid>
633
+ <url>http://www.last.fm/music/Peter+Bjorn+and+John</url>
634
+ </artist>
635
+ <image size="small">http://userserve-ak.last.fm/serve/34s/19754455.jpg</image>
636
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/19754455.jpg</image>
637
+ <image size="large">http://userserve-ak.last.fm/serve/126/19754455.jpg</image>
638
+ </track>
639
+ <track>
640
+ <name>The Kids Aren't Alright</name>
641
+ <playcount>5</playcount>
642
+ <tagcount></tagcount>
643
+ <mbid></mbid>
644
+ <url>http://www.last.fm/music/The+Offspring/_/The+Kids+Aren%27t+Alright</url>
645
+ <streamable fulltrack="0">1</streamable>
646
+ <artist>
647
+ <name>The Offspring</name>
648
+ <mbid>23a03e33-a603-404e-bcbf-2c00159d7067</mbid>
649
+ <url>http://www.last.fm/music/The+Offspring</url>
650
+ </artist>
651
+ <image size="small">http://userserve-ak.last.fm/serve/34s/23714755.jpg</image>
652
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/23714755.jpg</image>
653
+ <image size="large">http://userserve-ak.last.fm/serve/126/23714755.jpg</image>
654
+ </track>
655
+ <track>
656
+ <name>Stuck With Me</name>
657
+ <playcount>5</playcount>
658
+ <tagcount></tagcount>
659
+ <mbid></mbid>
660
+ <url>http://www.last.fm/music/Green+Day/_/Stuck+With+Me</url>
661
+ <streamable fulltrack="0">1</streamable>
662
+ <artist>
663
+ <name>Green Day</name>
664
+ <mbid>084308bd-1654-436f-ba03-df6697104e19</mbid>
665
+ <url>http://www.last.fm/music/Green+Day</url>
666
+ </artist>
667
+ <image size="small">http://userserve-ak.last.fm/serve/34s/8674829.jpg</image>
668
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/8674829.jpg</image>
669
+ <image size="large">http://userserve-ak.last.fm/serve/126/8674829.jpg</image>
670
+ </track>
671
+ <track>
672
+ <name>Let's Call It Off</name>
673
+ <playcount>5</playcount>
674
+ <tagcount></tagcount>
675
+ <mbid></mbid>
676
+ <url>http://www.last.fm/music/Peter+Bjorn+and+John/_/Let%27s+Call+It+Off</url>
677
+ <streamable fulltrack="0">1</streamable>
678
+ <artist>
679
+ <name>Peter Bjorn and John</name>
680
+ <mbid>32a83250-7e26-422d-b9ac-f4564343e9ce</mbid>
681
+ <url>http://www.last.fm/music/Peter+Bjorn+and+John</url>
682
+ </artist>
683
+ </track>
684
+ <track>
685
+ <name>Run for Your Life</name>
686
+ <playcount>5</playcount>
687
+ <tagcount></tagcount>
688
+ <mbid></mbid>
689
+ <url>http://www.last.fm/music/Jack+Pe%C3%B1ate/_/Run+for+Your+Life</url>
690
+ <streamable fulltrack="0">0</streamable>
691
+ <artist>
692
+ <name>Jack Peñate</name>
693
+ <mbid>9b64cf5d-1f4a-45b5-a84a-5109a88f178f</mbid>
694
+ <url>http://www.last.fm/music/Jack+Pe%C3%B1ate</url>
695
+ </artist>
696
+ </track>
697
+ <track>
698
+ <name>With You</name>
699
+ <playcount>5</playcount>
700
+ <tagcount></tagcount>
701
+ <mbid></mbid>
702
+ <url>http://www.last.fm/music/Linkin+Park/_/With+You</url>
703
+ <streamable fulltrack="0">1</streamable>
704
+ <artist>
705
+ <name>Linkin Park</name>
706
+ <mbid>f59c5520-5f46-4d2c-b2c4-822eabf53419</mbid>
707
+ <url>http://www.last.fm/music/Linkin+Park</url>
708
+ </artist>
709
+ <image size="small">http://userserve-ak.last.fm/serve/34s/8591413.jpg</image>
710
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/8591413.jpg</image>
711
+ <image size="large">http://userserve-ak.last.fm/serve/126/8591413.jpg</image>
712
+ </track>
713
+ <track>
714
+ <name>Fake Palindromes</name>
715
+ <playcount>5</playcount>
716
+ <tagcount></tagcount>
717
+ <mbid></mbid>
718
+ <url>http://www.last.fm/music/Andrew+Bird/_/Fake+Palindromes</url>
719
+ <streamable fulltrack="1">1</streamable>
720
+ <artist>
721
+ <name>Andrew Bird</name>
722
+ <mbid>081b133e-ce74-42ba-92c1-c18234acb532</mbid>
723
+ <url>http://www.last.fm/music/Andrew+Bird</url>
724
+ </artist>
725
+ <image size="small">http://userserve-ak.last.fm/serve/34s/26648265.png</image>
726
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/26648265.png</image>
727
+ <image size="large">http://userserve-ak.last.fm/serve/126/26648265.png</image>
728
+ </track>
729
+ <track>
730
+ <name>Up Against the Wall</name>
731
+ <playcount>5</playcount>
732
+ <tagcount></tagcount>
733
+ <mbid></mbid>
734
+ <url>http://www.last.fm/music/Peter+Bjorn+and+John/_/Up+Against+the+Wall</url>
735
+ <streamable fulltrack="0">1</streamable>
736
+ <artist>
737
+ <name>Peter Bjorn and John</name>
738
+ <mbid>32a83250-7e26-422d-b9ac-f4564343e9ce</mbid>
739
+ <url>http://www.last.fm/music/Peter+Bjorn+and+John</url>
740
+ </artist>
741
+ <image size="small">http://userserve-ak.last.fm/serve/34s/19754455.jpg</image>
742
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/19754455.jpg</image>
743
+ <image size="large">http://userserve-ak.last.fm/serve/126/19754455.jpg</image>
744
+ </track>
745
+ <track>
746
+ <name>How Much Is the Fish</name>
747
+ <playcount>5</playcount>
748
+ <tagcount></tagcount>
749
+ <mbid></mbid>
750
+ <url>http://www.last.fm/music/Scooter/_/How+Much+Is+the+Fish</url>
751
+ <streamable fulltrack="0">0</streamable>
752
+ <artist>
753
+ <name>Scooter</name>
754
+ <mbid>83e59f23-3b0b-4304-834d-5bcafd5df6d2</mbid>
755
+ <url>http://www.last.fm/music/Scooter</url>
756
+ </artist>
757
+ <image size="small">http://images.amazon.com/images/P/B00005U5NA.01._SCMZZZZZZZ_.jpg</image>
758
+ <image size="medium">http://images.amazon.com/images/P/B00005U5NA.01._SCMZZZZZZZ_.jpg</image>
759
+ <image size="large">http://images.amazon.com/images/P/B00005U5NA.01._SCMZZZZZZZ_.jpg</image>
760
+ </track>
761
+ <track>
762
+ <name>Piraten</name>
763
+ <playcount>5</playcount>
764
+ <tagcount></tagcount>
765
+ <mbid></mbid>
766
+ <url>http://www.last.fm/music/Madsen/_/Piraten</url>
767
+ <streamable fulltrack="1">1</streamable>
768
+ <artist>
769
+ <name>Madsen</name>
770
+ <mbid>8a0c3b86-af55-42d2-85b9-6372e7430986</mbid>
771
+ <url>http://www.last.fm/music/Madsen</url>
772
+ </artist>
773
+ <image size="small">http://userserve-ak.last.fm/serve/34s/9998507.jpg</image>
774
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/9998507.jpg</image>
775
+ <image size="large">http://userserve-ak.last.fm/serve/126/9998507.jpg</image>
776
+ </track>
777
+ </tracks></lfm>