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,771 @@
1
+ <?xml version="1.0" encoding="utf-8"?>
2
+ <lfm status="ok">
3
+ <tracks user="xhochy" page="32" perPage="50" totalPages="34">
4
+ <track>
5
+ <name>Leave Us Alone (Live)</name>
6
+ <playcount>1</playcount>
7
+ <tagcount></tagcount>
8
+ <mbid></mbid>
9
+ <url>http://www.last.fm/music/Gentleman/_/Leave+Us+Alone+%28Live%29</url>
10
+ <streamable fulltrack="0">0</streamable>
11
+ <artist>
12
+ <name>Gentleman</name>
13
+ <mbid>8de4a831-7c25-4d34-90cf-254de0c36e49</mbid>
14
+ <url>http://www.last.fm/music/Gentleman</url>
15
+ </artist>
16
+ </track>
17
+ <track>
18
+ <name>Last Train Home</name>
19
+ <playcount>1</playcount>
20
+ <tagcount></tagcount>
21
+ <mbid></mbid>
22
+ <url>http://www.last.fm/music/Lostprophets/_/Last+Train+Home</url>
23
+ <streamable fulltrack="0">1</streamable>
24
+ <artist>
25
+ <name>Lostprophets</name>
26
+ <mbid>ef6e2e49-aa93-41bd-89b0-8c7d2f260a83</mbid>
27
+ <url>http://www.last.fm/music/Lostprophets</url>
28
+ </artist>
29
+ <image size="small">http://userserve-ak.last.fm/serve/34s/8633507.jpg</image>
30
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/8633507.jpg</image>
31
+ <image size="large">http://userserve-ak.last.fm/serve/126/8633507.jpg</image>
32
+ </track>
33
+ <track>
34
+ <name>All in Love Is Fair</name>
35
+ <playcount>1</playcount>
36
+ <tagcount></tagcount>
37
+ <mbid></mbid>
38
+ <url>http://www.last.fm/music/S+Club+7/_/All+in+Love+Is+Fair</url>
39
+ <streamable fulltrack="1">1</streamable>
40
+ <artist>
41
+ <name>S Club 7</name>
42
+ <mbid>bd5cf3e9-cb6c-41f3-8c7d-e9bda3c4e721</mbid>
43
+ <url>http://www.last.fm/music/S+Club+7</url>
44
+ </artist>
45
+ <image size="small">http://userserve-ak.last.fm/serve/34s/8726677.jpg</image>
46
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/8726677.jpg</image>
47
+ <image size="large">http://userserve-ak.last.fm/serve/126/8726677.jpg</image>
48
+ </track>
49
+ <track>
50
+ <name>What a Catch, Donnie</name>
51
+ <playcount>1</playcount>
52
+ <tagcount></tagcount>
53
+ <mbid></mbid>
54
+ <url>http://www.last.fm/music/Fall+Out+Boy/_/What+a+Catch%2C+Donnie</url>
55
+ <streamable fulltrack="1">1</streamable>
56
+ <artist>
57
+ <name>Fall Out Boy</name>
58
+ <mbid>516cef4d-0718-4007-9939-f9b38af3f784</mbid>
59
+ <url>http://www.last.fm/music/Fall+Out+Boy</url>
60
+ </artist>
61
+ </track>
62
+ <track>
63
+ <name>I Just Don't Know What to Do With Myself</name>
64
+ <playcount>1</playcount>
65
+ <tagcount></tagcount>
66
+ <mbid></mbid>
67
+ <url>http://www.last.fm/music/The+White+Stripes/_/I+Just+Don%27t+Know+What+to+Do+With+Myself</url>
68
+ <streamable fulltrack="0">0</streamable>
69
+ <artist>
70
+ <name>The White Stripes</name>
71
+ <mbid>11ae9fbb-f3d7-4a47-936f-4c0a04d3b3b5</mbid>
72
+ <url>http://www.last.fm/music/The+White+Stripes</url>
73
+ </artist>
74
+ <image size="small">http://userserve-ak.last.fm/serve/34s/8594965.jpg</image>
75
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/8594965.jpg</image>
76
+ <image size="large">http://userserve-ak.last.fm/serve/126/8594965.jpg</image>
77
+ </track>
78
+ <track>
79
+ <name>Darf ich das behalten</name>
80
+ <playcount>1</playcount>
81
+ <tagcount></tagcount>
82
+ <mbid></mbid>
83
+ <url>http://www.last.fm/music/Wir+sind+Helden/_/Darf+ich+das+behalten</url>
84
+ <streamable fulltrack="0">1</streamable>
85
+ <artist>
86
+ <name>Wir sind Helden</name>
87
+ <mbid>908fedf4-548a-430f-b806-38fca9507dc4</mbid>
88
+ <url>http://www.last.fm/music/Wir+sind+Helden</url>
89
+ </artist>
90
+ <image size="small">http://userserve-ak.last.fm/serve/34s/14689581.jpg</image>
91
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/14689581.jpg</image>
92
+ <image size="large">http://userserve-ak.last.fm/serve/126/14689581.jpg</image>
93
+ </track>
94
+ <track>
95
+ <name>I Got Money Now</name>
96
+ <playcount>1</playcount>
97
+ <tagcount></tagcount>
98
+ <mbid></mbid>
99
+ <url>http://www.last.fm/music/P%21nk/_/I+Got+Money+Now</url>
100
+ <streamable fulltrack="0">0</streamable>
101
+ <artist>
102
+ <name>P!nk</name>
103
+ <mbid></mbid>
104
+ <url>http://www.last.fm/music/P%21nk</url>
105
+ </artist>
106
+ </track>
107
+ <track>
108
+ <name>Acid 8000</name>
109
+ <playcount>1</playcount>
110
+ <tagcount></tagcount>
111
+ <mbid></mbid>
112
+ <url>http://www.last.fm/music/Fatboy+Slim/_/Acid+8000</url>
113
+ <streamable fulltrack="0">1</streamable>
114
+ <artist>
115
+ <name>Fatboy Slim</name>
116
+ <mbid>34c63966-445c-4613-afe1-4f0e1e53ae9a</mbid>
117
+ <url>http://www.last.fm/music/Fatboy+Slim</url>
118
+ </artist>
119
+ <image size="small">http://userserve-ak.last.fm/serve/34s/16811455.jpg</image>
120
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/16811455.jpg</image>
121
+ <image size="large">http://userserve-ak.last.fm/serve/126/16811455.jpg</image>
122
+ </track>
123
+ <track>
124
+ <name>There She Goes</name>
125
+ <playcount>1</playcount>
126
+ <tagcount></tagcount>
127
+ <mbid></mbid>
128
+ <url>http://www.last.fm/music/Babyshambles/_/There+She+Goes</url>
129
+ <streamable fulltrack="0">1</streamable>
130
+ <artist>
131
+ <name>Babyshambles</name>
132
+ <mbid>8e1e03fe-ebbc-467a-b541-857144db10fb</mbid>
133
+ <url>http://www.last.fm/music/Babyshambles</url>
134
+ </artist>
135
+ <image size="small">http://userserve-ak.last.fm/serve/34s/14070721.jpg</image>
136
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/14070721.jpg</image>
137
+ <image size="large">http://userserve-ak.last.fm/serve/126/14070721.jpg</image>
138
+ </track>
139
+ <track>
140
+ <name>Upside Down</name>
141
+ <playcount>1</playcount>
142
+ <tagcount></tagcount>
143
+ <mbid></mbid>
144
+ <url>http://www.last.fm/music/Jack+Johnson/_/Upside+Down</url>
145
+ <streamable fulltrack="1">1</streamable>
146
+ <artist>
147
+ <name>Jack Johnson</name>
148
+ <mbid>ff6e677f-91dd-4986-a174-8db0474b1799</mbid>
149
+ <url>http://www.last.fm/music/Jack+Johnson</url>
150
+ </artist>
151
+ <image size="small">http://www.7digital.com/shops/assets/sleeveart/00602498509678_182.JPEG</image>
152
+ <image size="medium">http://www.7digital.com/shops/assets/sleeveart/00602498509678_182.JPEG</image>
153
+ <image size="large">http://www.7digital.com/shops/assets/sleeveart/00602498509678_182.JPEG</image>
154
+ </track>
155
+ <track>
156
+ <name>boy for today</name>
157
+ <playcount>1</playcount>
158
+ <tagcount></tagcount>
159
+ <mbid></mbid>
160
+ <url>http://www.last.fm/music/3+Doors+Down/_/boy+for+today</url>
161
+ <streamable fulltrack="0">0</streamable>
162
+ <artist>
163
+ <name>3 Doors Down</name>
164
+ <mbid>2386cd66-e923-4e8e-bf14-2eebe2e9b973</mbid>
165
+ <url>http://www.last.fm/music/3+Doors+Down</url>
166
+ </artist>
167
+ </track>
168
+ <track>
169
+ <name>Like Sprewells on a Wheelchair</name>
170
+ <playcount>1</playcount>
171
+ <tagcount></tagcount>
172
+ <mbid></mbid>
173
+ <url>http://www.last.fm/music/Dillinger+Four/_/Like+Sprewells+on+a+Wheelchair</url>
174
+ <streamable fulltrack="0">0</streamable>
175
+ <artist>
176
+ <name>Dillinger Four</name>
177
+ <mbid>fc6a16d9-5dfd-43b1-be98-ba49366d9f27</mbid>
178
+ <url>http://www.last.fm/music/Dillinger+Four</url>
179
+ </artist>
180
+ <image size="small">http://userserve-ak.last.fm/serve/34s/24063621.jpg</image>
181
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/24063621.jpg</image>
182
+ <image size="large">http://userserve-ak.last.fm/serve/126/24063621.jpg</image>
183
+ </track>
184
+ <track>
185
+ <name>Mona Lisa</name>
186
+ <playcount>1</playcount>
187
+ <tagcount></tagcount>
188
+ <mbid></mbid>
189
+ <url>http://www.last.fm/music/Jennifer+Rostock/_/Mona+Lisa</url>
190
+ <streamable fulltrack="0">1</streamable>
191
+ <artist>
192
+ <name>Jennifer Rostock</name>
193
+ <mbid></mbid>
194
+ <url>http://www.last.fm/music/Jennifer+Rostock</url>
195
+ </artist>
196
+ <image size="small">http://userserve-ak.last.fm/serve/34s/4393040.jpg</image>
197
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/4393040.jpg</image>
198
+ <image size="large">http://userserve-ak.last.fm/serve/126/4393040.jpg</image>
199
+ </track>
200
+ <track>
201
+ <name>Leichenhalle</name>
202
+ <playcount>1</playcount>
203
+ <tagcount></tagcount>
204
+ <mbid></mbid>
205
+ <url>http://www.last.fm/music/Die+%C3%84rzte/_/Leichenhalle</url>
206
+ <streamable fulltrack="0">0</streamable>
207
+ <artist>
208
+ <name>Die Ärzte</name>
209
+ <mbid>f2fb0ff0-5679-42ec-a55c-15109ce6e320</mbid>
210
+ <url>http://www.last.fm/music/Die+%C3%84rzte</url>
211
+ </artist>
212
+ <image size="small">http://images-eu.amazon.com/images/P/B00004ZC4S.03.MZZZZZZZ.jpg</image>
213
+ <image size="medium">http://images-eu.amazon.com/images/P/B00004ZC4S.03.MZZZZZZZ.jpg</image>
214
+ <image size="large">http://images-eu.amazon.com/images/P/B00004ZC4S.03.MZZZZZZZ.jpg</image>
215
+ </track>
216
+ <track>
217
+ <name>P.U.S.A.</name>
218
+ <playcount>1</playcount>
219
+ <tagcount></tagcount>
220
+ <mbid></mbid>
221
+ <url>http://www.last.fm/music/Mando+Diao/_/P.U.S.A.</url>
222
+ <streamable fulltrack="0">1</streamable>
223
+ <artist>
224
+ <name>Mando Diao</name>
225
+ <mbid>ea854cc1-13fc-4fd0-86a5-d2c7dba06764</mbid>
226
+ <url>http://www.last.fm/music/Mando+Diao</url>
227
+ </artist>
228
+ <image size="small">http://userserve-ak.last.fm/serve/34s/11406701.jpg</image>
229
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/11406701.jpg</image>
230
+ <image size="large">http://userserve-ak.last.fm/serve/126/11406701.jpg</image>
231
+ </track>
232
+ <track>
233
+ <name>Jane Became Insane</name>
234
+ <playcount>1</playcount>
235
+ <tagcount></tagcount>
236
+ <mbid></mbid>
237
+ <url>http://www.last.fm/music/Beatsteaks/_/Jane+Became+Insane</url>
238
+ <streamable fulltrack="0">1</streamable>
239
+ <artist>
240
+ <name>Beatsteaks</name>
241
+ <mbid>a9b88ebb-83aa-4ef7-b674-fabeb572c14e</mbid>
242
+ <url>http://www.last.fm/music/Beatsteaks</url>
243
+ </artist>
244
+ <image size="small">http://userserve-ak.last.fm/serve/34s/9114845.jpg</image>
245
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/9114845.jpg</image>
246
+ <image size="large">http://userserve-ak.last.fm/serve/126/9114845.jpg</image>
247
+ </track>
248
+ <track>
249
+ <name>Good Morning, Herr Horst</name>
250
+ <playcount>1</playcount>
251
+ <tagcount></tagcount>
252
+ <mbid></mbid>
253
+ <url>http://www.last.fm/music/Mando+Diao/_/Good+Morning%2C+Herr+Horst</url>
254
+ <streamable fulltrack="0">0</streamable>
255
+ <artist>
256
+ <name>Mando Diao</name>
257
+ <mbid>ea854cc1-13fc-4fd0-86a5-d2c7dba06764</mbid>
258
+ <url>http://www.last.fm/music/Mando+Diao</url>
259
+ </artist>
260
+ </track>
261
+ <track>
262
+ <name>Next Ex-Girlfriend</name>
263
+ <playcount>1</playcount>
264
+ <tagcount></tagcount>
265
+ <mbid></mbid>
266
+ <url>http://www.last.fm/music/Bowling+for+Soup/_/Next+Ex-Girlfriend</url>
267
+ <streamable fulltrack="0">0</streamable>
268
+ <artist>
269
+ <name>Bowling for Soup</name>
270
+ <mbid>bcb95908-5c6e-453a-97fc-d69003d250ff</mbid>
271
+ <url>http://www.last.fm/music/Bowling+for+Soup</url>
272
+ </artist>
273
+ <image size="small">http://userserve-ak.last.fm/serve/34s/15937155.jpg</image>
274
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/15937155.jpg</image>
275
+ <image size="large">http://userserve-ak.last.fm/serve/126/15937155.jpg</image>
276
+ </track>
277
+ <track>
278
+ <name>Believe</name>
279
+ <playcount>1</playcount>
280
+ <tagcount></tagcount>
281
+ <mbid></mbid>
282
+ <url>http://www.last.fm/music/The+Chemical+Brothers/_/Believe</url>
283
+ <streamable fulltrack="0">1</streamable>
284
+ <artist>
285
+ <name>The Chemical Brothers</name>
286
+ <mbid>1946a82a-f927-40c2-8235-38d64f50d043</mbid>
287
+ <url>http://www.last.fm/music/The+Chemical+Brothers</url>
288
+ </artist>
289
+ <image size="small">http://userserve-ak.last.fm/serve/34s/14451887.jpg</image>
290
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/14451887.jpg</image>
291
+ <image size="large">http://userserve-ak.last.fm/serve/126/14451887.jpg</image>
292
+ </track>
293
+ <track>
294
+ <name>Radio Song</name>
295
+ <playcount>1</playcount>
296
+ <tagcount></tagcount>
297
+ <mbid></mbid>
298
+ <url>http://www.last.fm/music/Jet/_/Radio+Song</url>
299
+ <streamable fulltrack="0">1</streamable>
300
+ <artist>
301
+ <name>Jet</name>
302
+ <mbid>4efa55ba-93cf-497f-baf3-2ca9da7e193e</mbid>
303
+ <url>http://www.last.fm/music/Jet</url>
304
+ </artist>
305
+ <image size="small">http://userserve-ak.last.fm/serve/34s/8630939.jpg</image>
306
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/8630939.jpg</image>
307
+ <image size="large">http://userserve-ak.last.fm/serve/126/8630939.jpg</image>
308
+ </track>
309
+ <track>
310
+ <name>Boys From the County Hell</name>
311
+ <playcount>1</playcount>
312
+ <tagcount></tagcount>
313
+ <mbid></mbid>
314
+ <url>http://www.last.fm/music/The+Pogues/_/Boys+From+the+County+Hell</url>
315
+ <streamable fulltrack="0">1</streamable>
316
+ <artist>
317
+ <name>The Pogues</name>
318
+ <mbid>d41a6875-b626-4c0f-89a1-aecb643d29ff</mbid>
319
+ <url>http://www.last.fm/music/The+Pogues</url>
320
+ </artist>
321
+ <image size="small">http://userserve-ak.last.fm/serve/34s/24315671.jpg</image>
322
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/24315671.jpg</image>
323
+ <image size="large">http://userserve-ak.last.fm/serve/126/24315671.jpg</image>
324
+ </track>
325
+ <track>
326
+ <name>Ordinary Life</name>
327
+ <playcount>1</playcount>
328
+ <tagcount></tagcount>
329
+ <mbid></mbid>
330
+ <url>http://www.last.fm/music/Kristen+Barry/_/Ordinary+Life</url>
331
+ <streamable fulltrack="0">0</streamable>
332
+ <artist>
333
+ <name>Kristen Barry</name>
334
+ <mbid>54c71cd4-6b8a-4c0a-971b-6788819a117e</mbid>
335
+ <url>http://www.last.fm/music/Kristen+Barry</url>
336
+ </artist>
337
+ <image size="small">http://images.amazon.com/images/P/B00000I7JR.01._SCMZZZZZZZ_.jpg</image>
338
+ <image size="medium">http://images.amazon.com/images/P/B00000I7JR.01._SCMZZZZZZZ_.jpg</image>
339
+ <image size="large">http://images.amazon.com/images/P/B00000I7JR.01._SCMZZZZZZZ_.jpg</image>
340
+ </track>
341
+ <track>
342
+ <name>Mmm Mmm Mmm Mmm</name>
343
+ <playcount>1</playcount>
344
+ <tagcount></tagcount>
345
+ <mbid></mbid>
346
+ <url>http://www.last.fm/music/Crash+Test+Dummies/_/Mmm+Mmm+Mmm+Mmm</url>
347
+ <streamable fulltrack="0">1</streamable>
348
+ <artist>
349
+ <name>Crash Test Dummies</name>
350
+ <mbid>afb8f901-d846-4c70-a898-59bc183d1da7</mbid>
351
+ <url>http://www.last.fm/music/Crash+Test+Dummies</url>
352
+ </artist>
353
+ <image size="small">http://userserve-ak.last.fm/serve/34s/21551859.jpg</image>
354
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/21551859.jpg</image>
355
+ <image size="large">http://userserve-ak.last.fm/serve/126/21551859.jpg</image>
356
+ </track>
357
+ <track>
358
+ <name>Dinosaurs Will Die</name>
359
+ <playcount>1</playcount>
360
+ <tagcount></tagcount>
361
+ <mbid></mbid>
362
+ <url>http://www.last.fm/music/NOFX/_/Dinosaurs+Will+Die</url>
363
+ <streamable fulltrack="0">1</streamable>
364
+ <artist>
365
+ <name>NOFX</name>
366
+ <mbid>dcaa4f81-bfb7-44eb-8594-4e74f004b6e4</mbid>
367
+ <url>http://www.last.fm/music/NOFX</url>
368
+ </artist>
369
+ <image size="small">http://images.amazon.com/images/P/B00004TCPF.01.THUMBZZZ.jpg</image>
370
+ <image size="medium">http://images.amazon.com/images/P/B00004TCPF.01.MZZZZZZZ.jpg</image>
371
+ <image size="large">http://images.amazon.com/images/P/B00004TCPF.01.LZZZZZZZ.jpg</image>
372
+ </track>
373
+ <track>
374
+ <name>Fade In-Out</name>
375
+ <playcount>1</playcount>
376
+ <tagcount></tagcount>
377
+ <mbid></mbid>
378
+ <url>http://www.last.fm/music/Oasis/_/Fade+In-Out</url>
379
+ <streamable fulltrack="0">1</streamable>
380
+ <artist>
381
+ <name>Oasis</name>
382
+ <mbid>39ab1aed-75e0-4140-bd47-540276886b60</mbid>
383
+ <url>http://www.last.fm/music/Oasis</url>
384
+ </artist>
385
+ <image size="small">http://userserve-ak.last.fm/serve/34s/23745807.jpg</image>
386
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/23745807.jpg</image>
387
+ <image size="large">http://userserve-ak.last.fm/serve/126/23745807.jpg</image>
388
+ </track>
389
+ <track>
390
+ <name>Medley</name>
391
+ <playcount>1</playcount>
392
+ <tagcount></tagcount>
393
+ <mbid></mbid>
394
+ <url>http://www.last.fm/music/Die+%C3%84rzte/_/Medley</url>
395
+ <streamable fulltrack="0">1</streamable>
396
+ <artist>
397
+ <name>Die Ärzte</name>
398
+ <mbid>f2fb0ff0-5679-42ec-a55c-15109ce6e320</mbid>
399
+ <url>http://www.last.fm/music/Die+%C3%84rzte</url>
400
+ </artist>
401
+ <image size="small">http://images-eu.amazon.com/images/P/B00006ZY7R.03.MZZZZZZZ.jpg</image>
402
+ <image size="medium">http://images-eu.amazon.com/images/P/B00006ZY7R.03.MZZZZZZZ.jpg</image>
403
+ <image size="large">http://images-eu.amazon.com/images/P/B00006ZY7R.03.MZZZZZZZ.jpg</image>
404
+ </track>
405
+ <track>
406
+ <name>Intro</name>
407
+ <playcount>1</playcount>
408
+ <tagcount></tagcount>
409
+ <mbid></mbid>
410
+ <url>http://www.last.fm/music/Gentleman+and+the+Far+East+Band/_/Intro</url>
411
+ <streamable fulltrack="0">0</streamable>
412
+ <artist>
413
+ <name>Gentleman and the Far East Band</name>
414
+ <mbid>0bd01dff-a351-4405-bdf0-7ee4ad7bc02e</mbid>
415
+ <url>http://www.last.fm/music/Gentleman+and+the+Far+East+Band</url>
416
+ </artist>
417
+ <image size="small">http://userserve-ak.last.fm/serve/34s/7847571.jpg</image>
418
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/7847571.jpg</image>
419
+ <image size="large">http://userserve-ak.last.fm/serve/126/7847571.jpg</image>
420
+ </track>
421
+ <track>
422
+ <name>Intoxication</name>
423
+ <playcount>1</playcount>
424
+ <tagcount></tagcount>
425
+ <mbid></mbid>
426
+ <url>http://www.last.fm/music/%28Drop+Leaf+Riddim%29+Gentleman/_/Intoxication</url>
427
+ <streamable fulltrack="0">0</streamable>
428
+ <artist>
429
+ <name>(Drop Leaf Riddim) Gentleman</name>
430
+ <mbid></mbid>
431
+ <url>http://www.last.fm/music/%28Drop+Leaf+Riddim%29+Gentleman</url>
432
+ </artist>
433
+ </track>
434
+ <track>
435
+ <name>You're Not Alone</name>
436
+ <playcount>1</playcount>
437
+ <tagcount></tagcount>
438
+ <mbid></mbid>
439
+ <url>http://www.last.fm/music/The+Enemy/_/You%27re+Not+Alone</url>
440
+ <streamable fulltrack="0">0</streamable>
441
+ <artist>
442
+ <name>The Enemy</name>
443
+ <mbid></mbid>
444
+ <url>http://www.last.fm/music/The+Enemy</url>
445
+ </artist>
446
+ </track>
447
+ <track>
448
+ <name>Fire Ago Bun Dem (Short)</name>
449
+ <playcount>1</playcount>
450
+ <tagcount></tagcount>
451
+ <mbid></mbid>
452
+ <url>http://www.last.fm/music/Gentleman+and+the+Far+East+Band/_/Fire+Ago+Bun+Dem+%28Short%29</url>
453
+ <streamable fulltrack="0">0</streamable>
454
+ <artist>
455
+ <name>Gentleman and the Far East Band</name>
456
+ <mbid>0bd01dff-a351-4405-bdf0-7ee4ad7bc02e</mbid>
457
+ <url>http://www.last.fm/music/Gentleman+and+the+Far+East+Band</url>
458
+ </artist>
459
+ <image size="small">http://userserve-ak.last.fm/serve/34s/7847571.jpg</image>
460
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/7847571.jpg</image>
461
+ <image size="large">http://userserve-ak.last.fm/serve/126/7847571.jpg</image>
462
+ </track>
463
+ <track>
464
+ <name>Gegen den Strich</name>
465
+ <playcount>1</playcount>
466
+ <tagcount></tagcount>
467
+ <mbid></mbid>
468
+ <url>http://www.last.fm/music/Tocotronic/_/Gegen+den+Strich</url>
469
+ <streamable fulltrack="0">0</streamable>
470
+ <artist>
471
+ <name>Tocotronic</name>
472
+ <mbid>7717539b-33aa-45d5-b88d-9e627172db19</mbid>
473
+ <url>http://www.last.fm/music/Tocotronic</url>
474
+ </artist>
475
+ <image size="small">http://userserve-ak.last.fm/serve/34s/3906388.jpg</image>
476
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/3906388.jpg</image>
477
+ <image size="large">http://userserve-ak.last.fm/serve/126/3906388.jpg</image>
478
+ </track>
479
+ <track>
480
+ <name>Matinee 2004</name>
481
+ <playcount>1</playcount>
482
+ <tagcount></tagcount>
483
+ <mbid></mbid>
484
+ <url>http://www.last.fm/music/Franz+Ferdinand/_/Matinee+2004</url>
485
+ <streamable fulltrack="0">0</streamable>
486
+ <artist>
487
+ <name>Franz Ferdinand</name>
488
+ <mbid>aa7a2827-f74b-473c-bd79-03d065835cf7</mbid>
489
+ <url>http://www.last.fm/music/Franz+Ferdinand</url>
490
+ </artist>
491
+ </track>
492
+ <track>
493
+ <name>In the Cold, Cold Night</name>
494
+ <playcount>1</playcount>
495
+ <tagcount></tagcount>
496
+ <mbid></mbid>
497
+ <url>http://www.last.fm/music/The+White+Stripes/_/In+the+Cold%2C+Cold+Night</url>
498
+ <streamable fulltrack="0">0</streamable>
499
+ <artist>
500
+ <name>The White Stripes</name>
501
+ <mbid>11ae9fbb-f3d7-4a47-936f-4c0a04d3b3b5</mbid>
502
+ <url>http://www.last.fm/music/The+White+Stripes</url>
503
+ </artist>
504
+ <image size="small">http://userserve-ak.last.fm/serve/34s/8594965.jpg</image>
505
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/8594965.jpg</image>
506
+ <image size="large">http://userserve-ak.last.fm/serve/126/8594965.jpg</image>
507
+ </track>
508
+ <track>
509
+ <name>Duell bei Hanau 1420 (Original-Aufnahme)</name>
510
+ <playcount>1</playcount>
511
+ <tagcount></tagcount>
512
+ <mbid></mbid>
513
+ <url>http://www.last.fm/music/Badesalz/_/Duell+bei+Hanau+1420+%28Original-Aufnahme%29</url>
514
+ <streamable fulltrack="0">0</streamable>
515
+ <artist>
516
+ <name>Badesalz</name>
517
+ <mbid>533d4015-a55b-4f2a-b968-b5a43f08b381</mbid>
518
+ <url>http://www.last.fm/music/Badesalz</url>
519
+ </artist>
520
+ </track>
521
+ <track>
522
+ <name>Tanzverbot (Schill to Hell) (feat. Bela B.)</name>
523
+ <playcount>1</playcount>
524
+ <tagcount></tagcount>
525
+ <mbid></mbid>
526
+ <url>http://www.last.fm/music/Fettes+Brot/_/Tanzverbot+%28Schill+to+Hell%29+%28feat.+Bela+B.%29</url>
527
+ <streamable fulltrack="0">0</streamable>
528
+ <artist>
529
+ <name>Fettes Brot</name>
530
+ <mbid>733e7372-5400-4c79-9059-33e2b2262d01</mbid>
531
+ <url>http://www.last.fm/music/Fettes+Brot</url>
532
+ </artist>
533
+ <image size="small">http://userserve-ak.last.fm/serve/34s/4811472.jpg</image>
534
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/4811472.jpg</image>
535
+ <image size="large">http://userserve-ak.last.fm/serve/126/4811472.jpg</image>
536
+ </track>
537
+ <track>
538
+ <name>All Alone</name>
539
+ <playcount>1</playcount>
540
+ <tagcount></tagcount>
541
+ <mbid></mbid>
542
+ <url>http://www.last.fm/music/Gorillaz/_/All+Alone</url>
543
+ <streamable fulltrack="0">1</streamable>
544
+ <artist>
545
+ <name>Gorillaz</name>
546
+ <mbid>e21857d5-3256-4547-afb3-4b6ded592596</mbid>
547
+ <url>http://www.last.fm/music/Gorillaz</url>
548
+ </artist>
549
+ <image size="small">http://userserve-ak.last.fm/serve/34s/11453045.jpg</image>
550
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/11453045.jpg</image>
551
+ <image size="large">http://userserve-ak.last.fm/serve/126/11453045.jpg</image>
552
+ </track>
553
+ <track>
554
+ <name>The Deepest Blues Are Black</name>
555
+ <playcount>1</playcount>
556
+ <tagcount></tagcount>
557
+ <mbid></mbid>
558
+ <url>http://www.last.fm/music/Foo+Fighters/_/The+Deepest+Blues+Are+Black</url>
559
+ <streamable fulltrack="0">1</streamable>
560
+ <artist>
561
+ <name>Foo Fighters</name>
562
+ <mbid>67f66c07-6e61-4026-ade5-7e782fad3a5d</mbid>
563
+ <url>http://www.last.fm/music/Foo+Fighters</url>
564
+ </artist>
565
+ <image size="small">http://userserve-ak.last.fm/serve/34s/23752293.jpg</image>
566
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/23752293.jpg</image>
567
+ <image size="large">http://userserve-ak.last.fm/serve/126/23752293.jpg</image>
568
+ </track>
569
+ <track>
570
+ <name>The Great Escape (The Silence Remix)</name>
571
+ <playcount>1</playcount>
572
+ <tagcount></tagcount>
573
+ <mbid></mbid>
574
+ <url>http://www.last.fm/music/We+Are+Scientists/_/The+Great+Escape+%28The+Silence+Remix%29</url>
575
+ <streamable fulltrack="0">0</streamable>
576
+ <artist>
577
+ <name>We Are Scientists</name>
578
+ <mbid>9386b36e-87f3-4716-a219-79a07a4e29cc</mbid>
579
+ <url>http://www.last.fm/music/We+Are+Scientists</url>
580
+ </artist>
581
+ </track>
582
+ <track>
583
+ <name>Need More Time</name>
584
+ <playcount>1</playcount>
585
+ <tagcount></tagcount>
586
+ <mbid></mbid>
587
+ <url>http://www.last.fm/music/The+Epoxies/_/Need+More+Time</url>
588
+ <streamable fulltrack="0">0</streamable>
589
+ <artist>
590
+ <name>The Epoxies</name>
591
+ <mbid>e3d2dca1-9773-469b-8e17-91812f2669c0</mbid>
592
+ <url>http://www.last.fm/music/The+Epoxies</url>
593
+ </artist>
594
+ <image size="small">http://images.amazon.com/images/P/B000063VEE.01.MZZZZZZZ.jpg</image>
595
+ <image size="medium">http://images.amazon.com/images/P/B000063VEE.01.MZZZZZZZ.jpg</image>
596
+ <image size="large">http://images.amazon.com/images/P/B000063VEE.01.MZZZZZZZ.jpg</image>
597
+ </track>
598
+ <track>
599
+ <name>The Broad Majestic Shannon</name>
600
+ <playcount>1</playcount>
601
+ <tagcount></tagcount>
602
+ <mbid></mbid>
603
+ <url>http://www.last.fm/music/The+Pogues/_/The+Broad+Majestic+Shannon</url>
604
+ <streamable fulltrack="0">1</streamable>
605
+ <artist>
606
+ <name>The Pogues</name>
607
+ <mbid>d41a6875-b626-4c0f-89a1-aecb643d29ff</mbid>
608
+ <url>http://www.last.fm/music/The+Pogues</url>
609
+ </artist>
610
+ <image size="small">http://images.amazon.com/images/P/B0006957SA.01.MZZZZZZZ.jpg</image>
611
+ <image size="medium">http://images.amazon.com/images/P/B0006957SA.01.MZZZZZZZ.jpg</image>
612
+ <image size="large">http://images.amazon.com/images/P/B0006957SA.01.MZZZZZZZ.jpg</image>
613
+ </track>
614
+ <track>
615
+ <name>Titel 19</name>
616
+ <playcount>1</playcount>
617
+ <tagcount></tagcount>
618
+ <mbid></mbid>
619
+ <url>http://www.last.fm/music/%5Bunknown%5D/_/Titel+19</url>
620
+ <streamable fulltrack="0">0</streamable>
621
+ <artist>
622
+ <name>[unknown]</name>
623
+ <mbid>125ec42a-7229-4250-afc5-e057484327fe</mbid>
624
+ <url>http://www.last.fm/music/%5Bunknown%5D</url>
625
+ </artist>
626
+ </track>
627
+ <track>
628
+ <name>Tell me Why</name>
629
+ <playcount>1</playcount>
630
+ <tagcount></tagcount>
631
+ <mbid></mbid>
632
+ <url>http://www.last.fm/music/Paul+van+Dyk/_/Tell+me+Why</url>
633
+ <streamable fulltrack="0">0</streamable>
634
+ <artist>
635
+ <name>Paul van Dyk</name>
636
+ <mbid>092ca127-2e07-4cbd-9cba-e412b4ddddd9</mbid>
637
+ <url>http://www.last.fm/music/Paul+van+Dyk</url>
638
+ </artist>
639
+ <image size="small">http://images.amazon.com/images/P/B00004Z43X.01.MZZZZZZZ.jpg</image>
640
+ <image size="medium">http://images.amazon.com/images/P/B00004Z43X.01.MZZZZZZZ.jpg</image>
641
+ <image size="large">http://images.amazon.com/images/P/B00004Z43X.01.MZZZZZZZ.jpg</image>
642
+ </track>
643
+ <track>
644
+ <name>She Wants to Move</name>
645
+ <playcount>1</playcount>
646
+ <tagcount></tagcount>
647
+ <mbid></mbid>
648
+ <url>http://www.last.fm/music/N%2AE%2AR%2AD/_/She+Wants+to+Move</url>
649
+ <streamable fulltrack="0">1</streamable>
650
+ <artist>
651
+ <name>N*E*R*D</name>
652
+ <mbid></mbid>
653
+ <url>http://www.last.fm/music/N%2AE%2AR%2AD</url>
654
+ </artist>
655
+ <image size="small">http://images.amazon.com/images/P/B0001LYEFA.01._SCMZZZZZZZ_.jpg</image>
656
+ <image size="medium">http://images.amazon.com/images/P/B0001LYEFA.01._SCMZZZZZZZ_.jpg</image>
657
+ <image size="large">http://images.amazon.com/images/P/B0001LYEFA.01._SCMZZZZZZZ_.jpg</image>
658
+ </track>
659
+ <track>
660
+ <name>The Taming of Sméagol</name>
661
+ <playcount>1</playcount>
662
+ <tagcount></tagcount>
663
+ <mbid></mbid>
664
+ <url>http://www.last.fm/music/Howard+Shore/_/The+Taming+of+Sm%C3%A9agol</url>
665
+ <streamable fulltrack="0">0</streamable>
666
+ <artist>
667
+ <name>Howard Shore</name>
668
+ <mbid>9b58672a-e68e-4972-956e-a8985a165a1f</mbid>
669
+ <url>http://www.last.fm/music/Howard+Shore</url>
670
+ </artist>
671
+ <image size="small">http://userserve-ak.last.fm/serve/34s/13142565.jpg</image>
672
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/13142565.jpg</image>
673
+ <image size="large">http://userserve-ak.last.fm/serve/126/13142565.jpg</image>
674
+ </track>
675
+ <track>
676
+ <name>Wenn der Regen</name>
677
+ <playcount>1</playcount>
678
+ <tagcount></tagcount>
679
+ <mbid></mbid>
680
+ <url>http://www.last.fm/music/Madsen/_/Wenn+der+Regen</url>
681
+ <streamable fulltrack="1">1</streamable>
682
+ <artist>
683
+ <name>Madsen</name>
684
+ <mbid>8a0c3b86-af55-42d2-85b9-6372e7430986</mbid>
685
+ <url>http://www.last.fm/music/Madsen</url>
686
+ </artist>
687
+ <image size="small">http://userserve-ak.last.fm/serve/34s/5548067.jpg</image>
688
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/5548067.jpg</image>
689
+ <image size="large">http://userserve-ak.last.fm/serve/126/5548067.jpg</image>
690
+ </track>
691
+ <track>
692
+ <name>Weichei - Das Musical 3. Akt</name>
693
+ <playcount>1</playcount>
694
+ <tagcount></tagcount>
695
+ <mbid></mbid>
696
+ <url>http://www.last.fm/music/Badesalz/_/Weichei+-+Das+Musical+3.+Akt</url>
697
+ <streamable fulltrack="0">0</streamable>
698
+ <artist>
699
+ <name>Badesalz</name>
700
+ <mbid>533d4015-a55b-4f2a-b968-b5a43f08b381</mbid>
701
+ <url>http://www.last.fm/music/Badesalz</url>
702
+ </artist>
703
+ <image size="small">http://userserve-ak.last.fm/serve/34s/19583447.jpg</image>
704
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/19583447.jpg</image>
705
+ <image size="large">http://userserve-ak.last.fm/serve/126/19583447.jpg</image>
706
+ </track>
707
+ <track>
708
+ <name>Body of an American</name>
709
+ <playcount>1</playcount>
710
+ <tagcount></tagcount>
711
+ <mbid></mbid>
712
+ <url>http://www.last.fm/music/The+Pogues/_/Body+of+an+American</url>
713
+ <streamable fulltrack="0">0</streamable>
714
+ <artist>
715
+ <name>The Pogues</name>
716
+ <mbid>d41a6875-b626-4c0f-89a1-aecb643d29ff</mbid>
717
+ <url>http://www.last.fm/music/The+Pogues</url>
718
+ </artist>
719
+ <image size="small">http://images.amazon.com/images/P/B0006957S0.01.MZZZZZZZ.jpg</image>
720
+ <image size="medium">http://images.amazon.com/images/P/B0006957S0.01.MZZZZZZZ.jpg</image>
721
+ <image size="large">http://images.amazon.com/images/P/B0006957S0.01.MZZZZZZZ.jpg</image>
722
+ </track>
723
+ <track>
724
+ <name>Christmas Day</name>
725
+ <playcount>1</playcount>
726
+ <tagcount></tagcount>
727
+ <mbid></mbid>
728
+ <url>http://www.last.fm/music/Dido/_/Christmas+Day</url>
729
+ <streamable fulltrack="0">1</streamable>
730
+ <artist>
731
+ <name>Dido</name>
732
+ <mbid>d1353a0c-26fb-4318-a116-defde9c7c9ad</mbid>
733
+ <url>http://www.last.fm/music/Dido</url>
734
+ </artist>
735
+ <image size="small">http://userserve-ak.last.fm/serve/34s/19882785.jpg</image>
736
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/19882785.jpg</image>
737
+ <image size="large">http://userserve-ak.last.fm/serve/126/19882785.jpg</image>
738
+ </track>
739
+ <track>
740
+ <name>Introduction</name>
741
+ <playcount>1</playcount>
742
+ <tagcount></tagcount>
743
+ <mbid></mbid>
744
+ <url>http://www.last.fm/music/Panic+at+the+Disco/_/Introduction</url>
745
+ <streamable fulltrack="0">0</streamable>
746
+ <artist>
747
+ <name>Panic at the Disco</name>
748
+ <mbid>b9472588-93f3-4922-a1a2-74082cdf9ce8</mbid>
749
+ <url>http://www.last.fm/music/Panic+at+the+Disco</url>
750
+ </artist>
751
+ <image size="small">http://userserve-ak.last.fm/serve/34s/10705407.jpg</image>
752
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/10705407.jpg</image>
753
+ <image size="large">http://userserve-ak.last.fm/serve/126/10705407.jpg</image>
754
+ </track>
755
+ <track>
756
+ <name>I Like to Move It</name>
757
+ <playcount>1</playcount>
758
+ <tagcount></tagcount>
759
+ <mbid></mbid>
760
+ <url>http://www.last.fm/music/Erick+Morillo/_/I+Like+to+Move+It</url>
761
+ <streamable fulltrack="0">1</streamable>
762
+ <artist>
763
+ <name>Erick Morillo</name>
764
+ <mbid>9e983d4f-9436-44f4-a936-ef76396cb73a</mbid>
765
+ <url>http://www.last.fm/music/Erick+Morillo</url>
766
+ </artist>
767
+ <image size="small">http://userserve-ak.last.fm/serve/34s/8758237.jpg</image>
768
+ <image size="medium">http://userserve-ak.last.fm/serve/64s/8758237.jpg</image>
769
+ <image size="large">http://userserve-ak.last.fm/serve/126/8758237.jpg</image>
770
+ </track>
771
+ </tracks></lfm>