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,334 @@
1
+ <?xml version="1.0" encoding="utf-8"?>
2
+ <lfm status="ok">
3
+ <artists user="xhochy" page="1" perPage="30" totalPages="11">
4
+ <artist>
5
+ <name>Bloc Party</name>
6
+ <playcount>2314</playcount>
7
+ <tagcount></tagcount>
8
+ <mbid>8c538f11-c141-4588-8ecb-931083524186</mbid>
9
+ <url>http://www.last.fm/music/Bloc+Party</url>
10
+ <streamable>1</streamable>
11
+ <image size="small">http://userserve-ak.last.fm/serve/34/115908.jpg</image>
12
+ <image size="medium">http://userserve-ak.last.fm/serve/64/115908.jpg</image>
13
+ <image size="large">http://userserve-ak.last.fm/serve/126/115908.jpg</image>
14
+ </artist>
15
+ <artist>
16
+ <name>Arctic Monkeys</name>
17
+ <playcount>821</playcount>
18
+ <tagcount></tagcount>
19
+ <mbid>ada7a83c-e3e1-40f1-93f9-3e73dbc9298a</mbid>
20
+ <url>http://www.last.fm/music/Arctic+Monkeys</url>
21
+ <streamable>1</streamable>
22
+ <image size="small">http://userserve-ak.last.fm/serve/34/10452541.jpg</image>
23
+ <image size="medium">http://userserve-ak.last.fm/serve/64/10452541.jpg</image>
24
+ <image size="large">http://userserve-ak.last.fm/serve/126/10452541.jpg</image>
25
+ </artist>
26
+ <artist>
27
+ <name>The Offspring</name>
28
+ <playcount>696</playcount>
29
+ <tagcount></tagcount>
30
+ <mbid>23a03e33-a603-404e-bcbf-2c00159d7067</mbid>
31
+ <url>http://www.last.fm/music/The+Offspring</url>
32
+ <streamable>1</streamable>
33
+ <image size="small">http://userserve-ak.last.fm/serve/34/8155449.jpg</image>
34
+ <image size="medium">http://userserve-ak.last.fm/serve/64/8155449.jpg</image>
35
+ <image size="large">http://userserve-ak.last.fm/serve/126/8155449.jpg</image>
36
+ </artist>
37
+ <artist>
38
+ <name>Vampire Weekend</name>
39
+ <playcount>602</playcount>
40
+ <tagcount></tagcount>
41
+ <mbid>af37c51c-0790-4a29-b995-456f98a6b8c9</mbid>
42
+ <url>http://www.last.fm/music/Vampire+Weekend</url>
43
+ <streamable>1</streamable>
44
+ <image size="small">http://userserve-ak.last.fm/serve/34/19765431.jpg</image>
45
+ <image size="medium">http://userserve-ak.last.fm/serve/64/19765431.jpg</image>
46
+ <image size="large">http://userserve-ak.last.fm/serve/126/19765431.jpg</image>
47
+ </artist>
48
+ <artist>
49
+ <name>blink-182</name>
50
+ <playcount>597</playcount>
51
+ <tagcount></tagcount>
52
+ <mbid>0743b15a-3c32-48c8-ad58-cb325350befa</mbid>
53
+ <url>http://www.last.fm/music/blink-182</url>
54
+ <streamable>1</streamable>
55
+ <image size="small">http://userserve-ak.last.fm/serve/34/28749595.jpg</image>
56
+ <image size="medium">http://userserve-ak.last.fm/serve/64/28749595.jpg</image>
57
+ <image size="large">http://userserve-ak.last.fm/serve/126/28749595.jpg</image>
58
+ </artist>
59
+ <artist>
60
+ <name>The Wombats</name>
61
+ <playcount>566</playcount>
62
+ <tagcount></tagcount>
63
+ <mbid>e105c272-b5d7-4135-82ef-d60bded54345</mbid>
64
+ <url>http://www.last.fm/music/The+Wombats</url>
65
+ <streamable>1</streamable>
66
+ <image size="small">http://userserve-ak.last.fm/serve/34/6384751.jpg</image>
67
+ <image size="medium">http://userserve-ak.last.fm/serve/64/6384751.jpg</image>
68
+ <image size="large">http://userserve-ak.last.fm/serve/126/6384751.jpg</image>
69
+ </artist>
70
+ <artist>
71
+ <name>The Hives</name>
72
+ <playcount>508</playcount>
73
+ <tagcount></tagcount>
74
+ <mbid>487bfd74-71bf-46dd-b89c-80b7a0f06f2f</mbid>
75
+ <url>http://www.last.fm/music/The+Hives</url>
76
+ <streamable>1</streamable>
77
+ <image size="small">http://userserve-ak.last.fm/serve/34/20123001.jpg</image>
78
+ <image size="medium">http://userserve-ak.last.fm/serve/64/20123001.jpg</image>
79
+ <image size="large">http://userserve-ak.last.fm/serve/126/20123001.jpg</image>
80
+ </artist>
81
+ <artist>
82
+ <name>Franz Ferdinand</name>
83
+ <playcount>496</playcount>
84
+ <tagcount></tagcount>
85
+ <mbid>aa7a2827-f74b-473c-bd79-03d065835cf7</mbid>
86
+ <url>http://www.last.fm/music/Franz+Ferdinand</url>
87
+ <streamable>1</streamable>
88
+ <image size="small">http://userserve-ak.last.fm/serve/34/3882921.jpg</image>
89
+ <image size="medium">http://userserve-ak.last.fm/serve/64/3882921.jpg</image>
90
+ <image size="large">http://userserve-ak.last.fm/serve/126/3882921.jpg</image>
91
+ </artist>
92
+ <artist>
93
+ <name>The Streets</name>
94
+ <playcount>494</playcount>
95
+ <tagcount></tagcount>
96
+ <mbid>6f607087-9c46-4bb2-a884-e4efc764554c</mbid>
97
+ <url>http://www.last.fm/music/The+Streets</url>
98
+ <streamable>1</streamable>
99
+ <image size="small">http://userserve-ak.last.fm/serve/34/4817348.jpg</image>
100
+ <image size="medium">http://userserve-ak.last.fm/serve/64/4817348.jpg</image>
101
+ <image size="large">http://userserve-ak.last.fm/serve/126/4817348.jpg</image>
102
+ </artist>
103
+ <artist>
104
+ <name>Madsen</name>
105
+ <playcount>481</playcount>
106
+ <tagcount></tagcount>
107
+ <mbid>8a0c3b86-af55-42d2-85b9-6372e7430986</mbid>
108
+ <url>http://www.last.fm/music/Madsen</url>
109
+ <streamable>1</streamable>
110
+ <image size="small">http://userserve-ak.last.fm/serve/34/65686.jpg</image>
111
+ <image size="medium">http://userserve-ak.last.fm/serve/64/65686.jpg</image>
112
+ <image size="large">http://userserve-ak.last.fm/serve/126/65686.jpg</image>
113
+ </artist>
114
+ <artist>
115
+ <name>Coldplay</name>
116
+ <playcount>473</playcount>
117
+ <tagcount></tagcount>
118
+ <mbid>cc197bad-dc9c-440d-a5b5-d52ba2e14234</mbid>
119
+ <url>http://www.last.fm/music/Coldplay</url>
120
+ <streamable>1</streamable>
121
+ <image size="small">http://userserve-ak.last.fm/serve/34/2160376.jpg</image>
122
+ <image size="medium">http://userserve-ak.last.fm/serve/64/2160376.jpg</image>
123
+ <image size="large">http://userserve-ak.last.fm/serve/126/2160376.jpg</image>
124
+ </artist>
125
+ <artist>
126
+ <name>Sportfreunde Stiller</name>
127
+ <playcount>469</playcount>
128
+ <tagcount>3</tagcount>
129
+ <mbid>35581de7-591f-424f-9c64-7b22fd45605e</mbid>
130
+ <url>http://www.last.fm/music/Sportfreunde+Stiller</url>
131
+ <streamable>1</streamable>
132
+ <image size="small">http://userserve-ak.last.fm/serve/34/66204.jpg</image>
133
+ <image size="medium">http://userserve-ak.last.fm/serve/64/66204.jpg</image>
134
+ <image size="large">http://userserve-ak.last.fm/serve/126/66204.jpg</image>
135
+ </artist>
136
+ <artist>
137
+ <name>Blackmail</name>
138
+ <playcount>418</playcount>
139
+ <tagcount></tagcount>
140
+ <mbid>d415628d-8c84-453b-8a75-4816b088dbc9</mbid>
141
+ <url>http://www.last.fm/music/Blackmail</url>
142
+ <streamable>1</streamable>
143
+ <image size="small">http://userserve-ak.last.fm/serve/34/189664.jpg</image>
144
+ <image size="medium">http://userserve-ak.last.fm/serve/64/189664.jpg</image>
145
+ <image size="large">http://userserve-ak.last.fm/serve/126/189664.jpg</image>
146
+ </artist>
147
+ <artist>
148
+ <name>Dirty Pretty Things</name>
149
+ <playcount>416</playcount>
150
+ <tagcount></tagcount>
151
+ <mbid>648615ca-ca74-460d-928a-2bae67ae6d14</mbid>
152
+ <url>http://www.last.fm/music/Dirty+Pretty+Things</url>
153
+ <streamable>1</streamable>
154
+ <image size="small">http://userserve-ak.last.fm/serve/34/163453.jpg</image>
155
+ <image size="medium">http://userserve-ak.last.fm/serve/64/163453.jpg</image>
156
+ <image size="large">http://userserve-ak.last.fm/serve/126/163453.jpg</image>
157
+ </artist>
158
+ <artist>
159
+ <name>Green Day</name>
160
+ <playcount>370</playcount>
161
+ <tagcount></tagcount>
162
+ <mbid>084308bd-1654-436f-ba03-df6697104e19</mbid>
163
+ <url>http://www.last.fm/music/Green+Day</url>
164
+ <streamable>1</streamable>
165
+ <image size="small">http://userserve-ak.last.fm/serve/34/28313541.jpg</image>
166
+ <image size="medium">http://userserve-ak.last.fm/serve/64/28313541.jpg</image>
167
+ <image size="large">http://userserve-ak.last.fm/serve/126/28313541.jpg</image>
168
+ </artist>
169
+ <artist>
170
+ <name>MGMT</name>
171
+ <playcount>366</playcount>
172
+ <tagcount></tagcount>
173
+ <mbid>c485632c-b784-4ee9-8ea1-c5fb365681fc</mbid>
174
+ <url>http://www.last.fm/music/MGMT</url>
175
+ <streamable>1</streamable>
176
+ <image size="small">http://userserve-ak.last.fm/serve/34/13095315.jpg</image>
177
+ <image size="medium">http://userserve-ak.last.fm/serve/64/13095315.jpg</image>
178
+ <image size="large">http://userserve-ak.last.fm/serve/126/13095315.jpg</image>
179
+ </artist>
180
+ <artist>
181
+ <name>The Killers</name>
182
+ <playcount>360</playcount>
183
+ <tagcount></tagcount>
184
+ <mbid>95e1ead9-4d31-4808-a7ac-32c3614c116b</mbid>
185
+ <url>http://www.last.fm/music/The+Killers</url>
186
+ <streamable>1</streamable>
187
+ <image size="small">http://userserve-ak.last.fm/serve/34/4941130.png</image>
188
+ <image size="medium">http://userserve-ak.last.fm/serve/64/4941130.png</image>
189
+ <image size="large">http://userserve-ak.last.fm/serve/126/4941130.png</image>
190
+ </artist>
191
+ <artist>
192
+ <name>Juli</name>
193
+ <playcount>308</playcount>
194
+ <tagcount></tagcount>
195
+ <mbid>9a593aff-62c9-40bd-9631-1697798adb63</mbid>
196
+ <url>http://www.last.fm/music/Juli</url>
197
+ <streamable>1</streamable>
198
+ <image size="small">http://userserve-ak.last.fm/serve/34/4521004.jpg</image>
199
+ <image size="medium">http://userserve-ak.last.fm/serve/64/4521004.jpg</image>
200
+ <image size="large">http://userserve-ak.last.fm/serve/126/4521004.jpg</image>
201
+ </artist>
202
+ <artist>
203
+ <name>Peter Bjorn and John</name>
204
+ <playcount>305</playcount>
205
+ <tagcount></tagcount>
206
+ <mbid>32a83250-7e26-422d-b9ac-f4564343e9ce</mbid>
207
+ <url>http://www.last.fm/music/Peter+Bjorn+and+John</url>
208
+ <streamable>1</streamable>
209
+ <image size="small">http://userserve-ak.last.fm/serve/34/8366087.jpg</image>
210
+ <image size="medium">http://userserve-ak.last.fm/serve/64/8366087.jpg</image>
211
+ <image size="large">http://userserve-ak.last.fm/serve/126/8366087.jpg</image>
212
+ </artist>
213
+ <artist>
214
+ <name>Billy Talent</name>
215
+ <playcount>297</playcount>
216
+ <tagcount></tagcount>
217
+ <mbid>fd429857-5ace-4609-ae54-1502c3bdac11</mbid>
218
+ <url>http://www.last.fm/music/Billy+Talent</url>
219
+ <streamable>1</streamable>
220
+ <image size="small">http://userserve-ak.last.fm/serve/34/2309435.jpg</image>
221
+ <image size="medium">http://userserve-ak.last.fm/serve/64/2309435.jpg</image>
222
+ <image size="large">http://userserve-ak.last.fm/serve/126/2309435.jpg</image>
223
+ </artist>
224
+ <artist>
225
+ <name>Guano Apes</name>
226
+ <playcount>275</playcount>
227
+ <tagcount></tagcount>
228
+ <mbid>66da25f9-1534-4dd1-b88c-718bc24e1ccd</mbid>
229
+ <url>http://www.last.fm/music/Guano+Apes</url>
230
+ <streamable>1</streamable>
231
+ <image size="small">http://userserve-ak.last.fm/serve/34/184228.jpg</image>
232
+ <image size="medium">http://userserve-ak.last.fm/serve/64/184228.jpg</image>
233
+ <image size="large">http://userserve-ak.last.fm/serve/126/184228.jpg</image>
234
+ </artist>
235
+ <artist>
236
+ <name>The Fratellis</name>
237
+ <playcount>262</playcount>
238
+ <tagcount></tagcount>
239
+ <mbid></mbid>
240
+ <url>http://www.last.fm/music/The+Fratellis</url>
241
+ <streamable>1</streamable>
242
+ <image size="small">http://userserve-ak.last.fm/serve/34/88858.jpg</image>
243
+ <image size="medium">http://userserve-ak.last.fm/serve/64/88858.jpg</image>
244
+ <image size="large">http://userserve-ak.last.fm/serve/126/88858.jpg</image>
245
+ </artist>
246
+ <artist>
247
+ <name>Bloodhound Gang</name>
248
+ <playcount>200</playcount>
249
+ <tagcount></tagcount>
250
+ <mbid>b2dbfc09-b332-408b-a235-1850e41971c5</mbid>
251
+ <url>http://www.last.fm/music/Bloodhound+Gang</url>
252
+ <streamable>1</streamable>
253
+ <image size="small">http://userserve-ak.last.fm/serve/34/10961593.jpg</image>
254
+ <image size="medium">http://userserve-ak.last.fm/serve/64/10961593.jpg</image>
255
+ <image size="large">http://userserve-ak.last.fm/serve/126/10961593.jpg</image>
256
+ </artist>
257
+ <artist>
258
+ <name>Fettes Brot</name>
259
+ <playcount>193</playcount>
260
+ <tagcount></tagcount>
261
+ <mbid>733e7372-5400-4c79-9059-33e2b2262d01</mbid>
262
+ <url>http://www.last.fm/music/Fettes+Brot</url>
263
+ <streamable>1</streamable>
264
+ <image size="small">http://userserve-ak.last.fm/serve/34/5007393.jpg</image>
265
+ <image size="medium">http://userserve-ak.last.fm/serve/64/5007393.jpg</image>
266
+ <image size="large">http://userserve-ak.last.fm/serve/126/5007393.jpg</image>
267
+ </artist>
268
+ <artist>
269
+ <name>The Holloways</name>
270
+ <playcount>190</playcount>
271
+ <tagcount></tagcount>
272
+ <mbid>ed0c90ee-4cc0-4928-8f61-93dbd7869eb9</mbid>
273
+ <url>http://www.last.fm/music/The+Holloways</url>
274
+ <streamable>1</streamable>
275
+ <image size="small">http://userserve-ak.last.fm/serve/34/381406.jpg</image>
276
+ <image size="medium">http://userserve-ak.last.fm/serve/64/381406.jpg</image>
277
+ <image size="large">http://userserve-ak.last.fm/serve/126/381406.jpg</image>
278
+ </artist>
279
+ <artist>
280
+ <name>Metro Station</name>
281
+ <playcount>183</playcount>
282
+ <tagcount></tagcount>
283
+ <mbid>ab7ebf8c-059f-4071-93b1-dd3ae80d60b2</mbid>
284
+ <url>http://www.last.fm/music/Metro+Station</url>
285
+ <streamable>1</streamable>
286
+ <image size="small">http://userserve-ak.last.fm/serve/34/4267373.png</image>
287
+ <image size="medium">http://userserve-ak.last.fm/serve/64/4267373.png</image>
288
+ <image size="large">http://userserve-ak.last.fm/serve/126/4267373.png</image>
289
+ </artist>
290
+ <artist>
291
+ <name>Belle and Sebastian</name>
292
+ <playcount>160</playcount>
293
+ <tagcount></tagcount>
294
+ <mbid>e5c7b94f-e264-473c-bb0f-37c85d4d5c70</mbid>
295
+ <url>http://www.last.fm/music/Belle+and+Sebastian</url>
296
+ <streamable>1</streamable>
297
+ <image size="small">http://userserve-ak.last.fm/serve/34/4118632.jpg</image>
298
+ <image size="medium">http://userserve-ak.last.fm/serve/64/4118632.jpg</image>
299
+ <image size="large">http://userserve-ak.last.fm/serve/126/4118632.jpg</image>
300
+ </artist>
301
+ <artist>
302
+ <name>Linkin Park</name>
303
+ <playcount>148</playcount>
304
+ <tagcount></tagcount>
305
+ <mbid>f59c5520-5f46-4d2c-b2c4-822eabf53419</mbid>
306
+ <url>http://www.last.fm/music/Linkin+Park</url>
307
+ <streamable>1</streamable>
308
+ <image size="small">http://userserve-ak.last.fm/serve/34/28724065.jpg</image>
309
+ <image size="medium">http://userserve-ak.last.fm/serve/64/28724065.jpg</image>
310
+ <image size="large">http://userserve-ak.last.fm/serve/126/28724065.jpg</image>
311
+ </artist>
312
+ <artist>
313
+ <name>Anti-Flag</name>
314
+ <playcount>147</playcount>
315
+ <tagcount></tagcount>
316
+ <mbid>b88f21a7-a1b9-48fd-bbc4-ae758026f17f</mbid>
317
+ <url>http://www.last.fm/music/Anti-Flag</url>
318
+ <streamable>1</streamable>
319
+ <image size="small">http://userserve-ak.last.fm/serve/34/206840.jpg</image>
320
+ <image size="medium">http://userserve-ak.last.fm/serve/64/206840.jpg</image>
321
+ <image size="large">http://userserve-ak.last.fm/serve/126/206840.jpg</image>
322
+ </artist>
323
+ <artist>
324
+ <name>Jay-Z and Linkin Park</name>
325
+ <playcount>135</playcount>
326
+ <tagcount></tagcount>
327
+ <mbid>ae681605-2801-4120-9a48-e18752042306</mbid>
328
+ <url>http://www.last.fm/music/Jay-Z+and+Linkin+Park</url>
329
+ <streamable>1</streamable>
330
+ <image size="small">http://userserve-ak.last.fm/serve/34/3329669.jpg</image>
331
+ <image size="medium">http://userserve-ak.last.fm/serve/64/3329669.jpg</image>
332
+ <image size="large">http://userserve-ak.last.fm/serve/126/3329669.jpg</image>
333
+ </artist>
334
+ </artists></lfm>
@@ -0,0 +1,554 @@
1
+ <?xml version="1.0" encoding="utf-8"?>
2
+ <lfm status="ok">
3
+ <artists user="xhochy" page="1" perPage="50" totalPages="7">
4
+ <artist>
5
+ <name>Bloc Party</name>
6
+ <playcount>2314</playcount>
7
+ <tagcount></tagcount>
8
+ <mbid>8c538f11-c141-4588-8ecb-931083524186</mbid>
9
+ <url>http://www.last.fm/music/Bloc+Party</url>
10
+ <streamable>1</streamable>
11
+ <image size="small">http://userserve-ak.last.fm/serve/34/115908.jpg</image>
12
+ <image size="medium">http://userserve-ak.last.fm/serve/64/115908.jpg</image>
13
+ <image size="large">http://userserve-ak.last.fm/serve/126/115908.jpg</image>
14
+ </artist>
15
+ <artist>
16
+ <name>Arctic Monkeys</name>
17
+ <playcount>821</playcount>
18
+ <tagcount></tagcount>
19
+ <mbid>ada7a83c-e3e1-40f1-93f9-3e73dbc9298a</mbid>
20
+ <url>http://www.last.fm/music/Arctic+Monkeys</url>
21
+ <streamable>1</streamable>
22
+ <image size="small">http://userserve-ak.last.fm/serve/34/350602.jpg</image>
23
+ <image size="medium">http://userserve-ak.last.fm/serve/64/350602.jpg</image>
24
+ <image size="large">http://userserve-ak.last.fm/serve/126/350602.jpg</image>
25
+ </artist>
26
+ <artist>
27
+ <name>The Offspring</name>
28
+ <playcount>696</playcount>
29
+ <tagcount></tagcount>
30
+ <mbid>23a03e33-a603-404e-bcbf-2c00159d7067</mbid>
31
+ <url>http://www.last.fm/music/The+Offspring</url>
32
+ <streamable>1</streamable>
33
+ <image size="small">http://userserve-ak.last.fm/serve/34/8155449.jpg</image>
34
+ <image size="medium">http://userserve-ak.last.fm/serve/64/8155449.jpg</image>
35
+ <image size="large">http://userserve-ak.last.fm/serve/126/8155449.jpg</image>
36
+ </artist>
37
+ <artist>
38
+ <name>Vampire Weekend</name>
39
+ <playcount>602</playcount>
40
+ <tagcount></tagcount>
41
+ <mbid>af37c51c-0790-4a29-b995-456f98a6b8c9</mbid>
42
+ <url>http://www.last.fm/music/Vampire+Weekend</url>
43
+ <streamable>1</streamable>
44
+ <image size="small">http://userserve-ak.last.fm/serve/34/19765431.jpg</image>
45
+ <image size="medium">http://userserve-ak.last.fm/serve/64/19765431.jpg</image>
46
+ <image size="large">http://userserve-ak.last.fm/serve/126/19765431.jpg</image>
47
+ </artist>
48
+ <artist>
49
+ <name>blink-182</name>
50
+ <playcount>597</playcount>
51
+ <tagcount></tagcount>
52
+ <mbid>0743b15a-3c32-48c8-ad58-cb325350befa</mbid>
53
+ <url>http://www.last.fm/music/blink-182</url>
54
+ <streamable>1</streamable>
55
+ <image size="small">http://userserve-ak.last.fm/serve/34/28749595.jpg</image>
56
+ <image size="medium">http://userserve-ak.last.fm/serve/64/28749595.jpg</image>
57
+ <image size="large">http://userserve-ak.last.fm/serve/126/28749595.jpg</image>
58
+ </artist>
59
+ <artist>
60
+ <name>The Wombats</name>
61
+ <playcount>566</playcount>
62
+ <tagcount></tagcount>
63
+ <mbid>e105c272-b5d7-4135-82ef-d60bded54345</mbid>
64
+ <url>http://www.last.fm/music/The+Wombats</url>
65
+ <streamable>1</streamable>
66
+ <image size="small">http://userserve-ak.last.fm/serve/34/6384751.jpg</image>
67
+ <image size="medium">http://userserve-ak.last.fm/serve/64/6384751.jpg</image>
68
+ <image size="large">http://userserve-ak.last.fm/serve/126/6384751.jpg</image>
69
+ </artist>
70
+ <artist>
71
+ <name>The Hives</name>
72
+ <playcount>508</playcount>
73
+ <tagcount></tagcount>
74
+ <mbid>487bfd74-71bf-46dd-b89c-80b7a0f06f2f</mbid>
75
+ <url>http://www.last.fm/music/The+Hives</url>
76
+ <streamable>1</streamable>
77
+ <image size="small">http://userserve-ak.last.fm/serve/34/20123001.jpg</image>
78
+ <image size="medium">http://userserve-ak.last.fm/serve/64/20123001.jpg</image>
79
+ <image size="large">http://userserve-ak.last.fm/serve/126/20123001.jpg</image>
80
+ </artist>
81
+ <artist>
82
+ <name>Franz Ferdinand</name>
83
+ <playcount>496</playcount>
84
+ <tagcount></tagcount>
85
+ <mbid>aa7a2827-f74b-473c-bd79-03d065835cf7</mbid>
86
+ <url>http://www.last.fm/music/Franz+Ferdinand</url>
87
+ <streamable>1</streamable>
88
+ <image size="small">http://userserve-ak.last.fm/serve/34/3882921.jpg</image>
89
+ <image size="medium">http://userserve-ak.last.fm/serve/64/3882921.jpg</image>
90
+ <image size="large">http://userserve-ak.last.fm/serve/126/3882921.jpg</image>
91
+ </artist>
92
+ <artist>
93
+ <name>The Streets</name>
94
+ <playcount>494</playcount>
95
+ <tagcount></tagcount>
96
+ <mbid>6f607087-9c46-4bb2-a884-e4efc764554c</mbid>
97
+ <url>http://www.last.fm/music/The+Streets</url>
98
+ <streamable>1</streamable>
99
+ <image size="small">http://userserve-ak.last.fm/serve/34/4817348.jpg</image>
100
+ <image size="medium">http://userserve-ak.last.fm/serve/64/4817348.jpg</image>
101
+ <image size="large">http://userserve-ak.last.fm/serve/126/4817348.jpg</image>
102
+ </artist>
103
+ <artist>
104
+ <name>Madsen</name>
105
+ <playcount>481</playcount>
106
+ <tagcount></tagcount>
107
+ <mbid>8a0c3b86-af55-42d2-85b9-6372e7430986</mbid>
108
+ <url>http://www.last.fm/music/Madsen</url>
109
+ <streamable>1</streamable>
110
+ <image size="small">http://userserve-ak.last.fm/serve/34/65686.jpg</image>
111
+ <image size="medium">http://userserve-ak.last.fm/serve/64/65686.jpg</image>
112
+ <image size="large">http://userserve-ak.last.fm/serve/126/65686.jpg</image>
113
+ </artist>
114
+ <artist>
115
+ <name>Coldplay</name>
116
+ <playcount>473</playcount>
117
+ <tagcount></tagcount>
118
+ <mbid>cc197bad-dc9c-440d-a5b5-d52ba2e14234</mbid>
119
+ <url>http://www.last.fm/music/Coldplay</url>
120
+ <streamable>1</streamable>
121
+ <image size="small">http://userserve-ak.last.fm/serve/34/147320.jpg</image>
122
+ <image size="medium">http://userserve-ak.last.fm/serve/64/147320.jpg</image>
123
+ <image size="large">http://userserve-ak.last.fm/serve/126/147320.jpg</image>
124
+ </artist>
125
+ <artist>
126
+ <name>Sportfreunde Stiller</name>
127
+ <playcount>469</playcount>
128
+ <tagcount>3</tagcount>
129
+ <mbid>35581de7-591f-424f-9c64-7b22fd45605e</mbid>
130
+ <url>http://www.last.fm/music/Sportfreunde+Stiller</url>
131
+ <streamable>1</streamable>
132
+ <image size="small">http://userserve-ak.last.fm/serve/34/66204.jpg</image>
133
+ <image size="medium">http://userserve-ak.last.fm/serve/64/66204.jpg</image>
134
+ <image size="large">http://userserve-ak.last.fm/serve/126/66204.jpg</image>
135
+ </artist>
136
+ <artist>
137
+ <name>Blackmail</name>
138
+ <playcount>418</playcount>
139
+ <tagcount></tagcount>
140
+ <mbid>d415628d-8c84-453b-8a75-4816b088dbc9</mbid>
141
+ <url>http://www.last.fm/music/Blackmail</url>
142
+ <streamable>1</streamable>
143
+ <image size="small">http://userserve-ak.last.fm/serve/34/189664.jpg</image>
144
+ <image size="medium">http://userserve-ak.last.fm/serve/64/189664.jpg</image>
145
+ <image size="large">http://userserve-ak.last.fm/serve/126/189664.jpg</image>
146
+ </artist>
147
+ <artist>
148
+ <name>Dirty Pretty Things</name>
149
+ <playcount>416</playcount>
150
+ <tagcount></tagcount>
151
+ <mbid>648615ca-ca74-460d-928a-2bae67ae6d14</mbid>
152
+ <url>http://www.last.fm/music/Dirty+Pretty+Things</url>
153
+ <streamable>1</streamable>
154
+ <image size="small">http://userserve-ak.last.fm/serve/34/163453.jpg</image>
155
+ <image size="medium">http://userserve-ak.last.fm/serve/64/163453.jpg</image>
156
+ <image size="large">http://userserve-ak.last.fm/serve/126/163453.jpg</image>
157
+ </artist>
158
+ <artist>
159
+ <name>Green Day</name>
160
+ <playcount>370</playcount>
161
+ <tagcount></tagcount>
162
+ <mbid>084308bd-1654-436f-ba03-df6697104e19</mbid>
163
+ <url>http://www.last.fm/music/Green+Day</url>
164
+ <streamable>1</streamable>
165
+ <image size="small">http://userserve-ak.last.fm/serve/34/28313541.jpg</image>
166
+ <image size="medium">http://userserve-ak.last.fm/serve/64/28313541.jpg</image>
167
+ <image size="large">http://userserve-ak.last.fm/serve/126/28313541.jpg</image>
168
+ </artist>
169
+ <artist>
170
+ <name>MGMT</name>
171
+ <playcount>366</playcount>
172
+ <tagcount></tagcount>
173
+ <mbid>c485632c-b784-4ee9-8ea1-c5fb365681fc</mbid>
174
+ <url>http://www.last.fm/music/MGMT</url>
175
+ <streamable>1</streamable>
176
+ <image size="small">http://userserve-ak.last.fm/serve/34/13095315.jpg</image>
177
+ <image size="medium">http://userserve-ak.last.fm/serve/64/13095315.jpg</image>
178
+ <image size="large">http://userserve-ak.last.fm/serve/126/13095315.jpg</image>
179
+ </artist>
180
+ <artist>
181
+ <name>The Killers</name>
182
+ <playcount>360</playcount>
183
+ <tagcount></tagcount>
184
+ <mbid>95e1ead9-4d31-4808-a7ac-32c3614c116b</mbid>
185
+ <url>http://www.last.fm/music/The+Killers</url>
186
+ <streamable>1</streamable>
187
+ <image size="small">http://userserve-ak.last.fm/serve/34/4941130.png</image>
188
+ <image size="medium">http://userserve-ak.last.fm/serve/64/4941130.png</image>
189
+ <image size="large">http://userserve-ak.last.fm/serve/126/4941130.png</image>
190
+ </artist>
191
+ <artist>
192
+ <name>Juli</name>
193
+ <playcount>308</playcount>
194
+ <tagcount></tagcount>
195
+ <mbid>9a593aff-62c9-40bd-9631-1697798adb63</mbid>
196
+ <url>http://www.last.fm/music/Juli</url>
197
+ <streamable>1</streamable>
198
+ <image size="small">http://userserve-ak.last.fm/serve/34/4521004.jpg</image>
199
+ <image size="medium">http://userserve-ak.last.fm/serve/64/4521004.jpg</image>
200
+ <image size="large">http://userserve-ak.last.fm/serve/126/4521004.jpg</image>
201
+ </artist>
202
+ <artist>
203
+ <name>Peter Bjorn and John</name>
204
+ <playcount>305</playcount>
205
+ <tagcount></tagcount>
206
+ <mbid>32a83250-7e26-422d-b9ac-f4564343e9ce</mbid>
207
+ <url>http://www.last.fm/music/Peter+Bjorn+and+John</url>
208
+ <streamable>1</streamable>
209
+ <image size="small">http://userserve-ak.last.fm/serve/34/8366087.jpg</image>
210
+ <image size="medium">http://userserve-ak.last.fm/serve/64/8366087.jpg</image>
211
+ <image size="large">http://userserve-ak.last.fm/serve/126/8366087.jpg</image>
212
+ </artist>
213
+ <artist>
214
+ <name>Billy Talent</name>
215
+ <playcount>297</playcount>
216
+ <tagcount></tagcount>
217
+ <mbid>fd429857-5ace-4609-ae54-1502c3bdac11</mbid>
218
+ <url>http://www.last.fm/music/Billy+Talent</url>
219
+ <streamable>1</streamable>
220
+ <image size="small">http://userserve-ak.last.fm/serve/34/2309435.jpg</image>
221
+ <image size="medium">http://userserve-ak.last.fm/serve/64/2309435.jpg</image>
222
+ <image size="large">http://userserve-ak.last.fm/serve/126/2309435.jpg</image>
223
+ </artist>
224
+ <artist>
225
+ <name>Guano Apes</name>
226
+ <playcount>275</playcount>
227
+ <tagcount></tagcount>
228
+ <mbid>66da25f9-1534-4dd1-b88c-718bc24e1ccd</mbid>
229
+ <url>http://www.last.fm/music/Guano+Apes</url>
230
+ <streamable>1</streamable>
231
+ <image size="small">http://userserve-ak.last.fm/serve/34/184228.jpg</image>
232
+ <image size="medium">http://userserve-ak.last.fm/serve/64/184228.jpg</image>
233
+ <image size="large">http://userserve-ak.last.fm/serve/126/184228.jpg</image>
234
+ </artist>
235
+ <artist>
236
+ <name>The Fratellis</name>
237
+ <playcount>262</playcount>
238
+ <tagcount></tagcount>
239
+ <mbid></mbid>
240
+ <url>http://www.last.fm/music/The+Fratellis</url>
241
+ <streamable>1</streamable>
242
+ <image size="small">http://userserve-ak.last.fm/serve/34/88858.jpg</image>
243
+ <image size="medium">http://userserve-ak.last.fm/serve/64/88858.jpg</image>
244
+ <image size="large">http://userserve-ak.last.fm/serve/126/88858.jpg</image>
245
+ </artist>
246
+ <artist>
247
+ <name>Bloodhound Gang</name>
248
+ <playcount>200</playcount>
249
+ <tagcount></tagcount>
250
+ <mbid>b2dbfc09-b332-408b-a235-1850e41971c5</mbid>
251
+ <url>http://www.last.fm/music/Bloodhound+Gang</url>
252
+ <streamable>1</streamable>
253
+ <image size="small">http://userserve-ak.last.fm/serve/34/10961593.jpg</image>
254
+ <image size="medium">http://userserve-ak.last.fm/serve/64/10961593.jpg</image>
255
+ <image size="large">http://userserve-ak.last.fm/serve/126/10961593.jpg</image>
256
+ </artist>
257
+ <artist>
258
+ <name>Fettes Brot</name>
259
+ <playcount>193</playcount>
260
+ <tagcount></tagcount>
261
+ <mbid>733e7372-5400-4c79-9059-33e2b2262d01</mbid>
262
+ <url>http://www.last.fm/music/Fettes+Brot</url>
263
+ <streamable>1</streamable>
264
+ <image size="small">http://userserve-ak.last.fm/serve/34/5007393.jpg</image>
265
+ <image size="medium">http://userserve-ak.last.fm/serve/64/5007393.jpg</image>
266
+ <image size="large">http://userserve-ak.last.fm/serve/126/5007393.jpg</image>
267
+ </artist>
268
+ <artist>
269
+ <name>The Holloways</name>
270
+ <playcount>190</playcount>
271
+ <tagcount></tagcount>
272
+ <mbid>ed0c90ee-4cc0-4928-8f61-93dbd7869eb9</mbid>
273
+ <url>http://www.last.fm/music/The+Holloways</url>
274
+ <streamable>1</streamable>
275
+ <image size="small">http://userserve-ak.last.fm/serve/34/381406.jpg</image>
276
+ <image size="medium">http://userserve-ak.last.fm/serve/64/381406.jpg</image>
277
+ <image size="large">http://userserve-ak.last.fm/serve/126/381406.jpg</image>
278
+ </artist>
279
+ <artist>
280
+ <name>Metro Station</name>
281
+ <playcount>183</playcount>
282
+ <tagcount></tagcount>
283
+ <mbid>ab7ebf8c-059f-4071-93b1-dd3ae80d60b2</mbid>
284
+ <url>http://www.last.fm/music/Metro+Station</url>
285
+ <streamable>1</streamable>
286
+ <image size="small">http://userserve-ak.last.fm/serve/34/4267373.png</image>
287
+ <image size="medium">http://userserve-ak.last.fm/serve/64/4267373.png</image>
288
+ <image size="large">http://userserve-ak.last.fm/serve/126/4267373.png</image>
289
+ </artist>
290
+ <artist>
291
+ <name>Belle and Sebastian</name>
292
+ <playcount>160</playcount>
293
+ <tagcount></tagcount>
294
+ <mbid>e5c7b94f-e264-473c-bb0f-37c85d4d5c70</mbid>
295
+ <url>http://www.last.fm/music/Belle+and+Sebastian</url>
296
+ <streamable>1</streamable>
297
+ <image size="small">http://userserve-ak.last.fm/serve/34/4118632.jpg</image>
298
+ <image size="medium">http://userserve-ak.last.fm/serve/64/4118632.jpg</image>
299
+ <image size="large">http://userserve-ak.last.fm/serve/126/4118632.jpg</image>
300
+ </artist>
301
+ <artist>
302
+ <name>Linkin Park</name>
303
+ <playcount>148</playcount>
304
+ <tagcount></tagcount>
305
+ <mbid>f59c5520-5f46-4d2c-b2c4-822eabf53419</mbid>
306
+ <url>http://www.last.fm/music/Linkin+Park</url>
307
+ <streamable>1</streamable>
308
+ <image size="small">http://userserve-ak.last.fm/serve/34/28724065.jpg</image>
309
+ <image size="medium">http://userserve-ak.last.fm/serve/64/28724065.jpg</image>
310
+ <image size="large">http://userserve-ak.last.fm/serve/126/28724065.jpg</image>
311
+ </artist>
312
+ <artist>
313
+ <name>Anti-Flag</name>
314
+ <playcount>147</playcount>
315
+ <tagcount></tagcount>
316
+ <mbid>b88f21a7-a1b9-48fd-bbc4-ae758026f17f</mbid>
317
+ <url>http://www.last.fm/music/Anti-Flag</url>
318
+ <streamable>1</streamable>
319
+ <image size="small">http://userserve-ak.last.fm/serve/34/206840.jpg</image>
320
+ <image size="medium">http://userserve-ak.last.fm/serve/64/206840.jpg</image>
321
+ <image size="large">http://userserve-ak.last.fm/serve/126/206840.jpg</image>
322
+ </artist>
323
+ <artist>
324
+ <name>Jay-Z and Linkin Park</name>
325
+ <playcount>135</playcount>
326
+ <tagcount></tagcount>
327
+ <mbid>ae681605-2801-4120-9a48-e18752042306</mbid>
328
+ <url>http://www.last.fm/music/Jay-Z+and+Linkin+Park</url>
329
+ <streamable>1</streamable>
330
+ <image size="small">http://userserve-ak.last.fm/serve/34/3329669.jpg</image>
331
+ <image size="medium">http://userserve-ak.last.fm/serve/64/3329669.jpg</image>
332
+ <image size="large">http://userserve-ak.last.fm/serve/126/3329669.jpg</image>
333
+ </artist>
334
+ <artist>
335
+ <name>The Prodigy</name>
336
+ <playcount>134</playcount>
337
+ <tagcount></tagcount>
338
+ <mbid>4a4ee089-93b1-4470-af9a-6ff575d32704</mbid>
339
+ <url>http://www.last.fm/music/The+Prodigy</url>
340
+ <streamable>1</streamable>
341
+ <image size="small">http://userserve-ak.last.fm/serve/34/12803451.jpg</image>
342
+ <image size="medium">http://userserve-ak.last.fm/serve/64/12803451.jpg</image>
343
+ <image size="large">http://userserve-ak.last.fm/serve/126/12803451.jpg</image>
344
+ </artist>
345
+ <artist>
346
+ <name>Muse</name>
347
+ <playcount>133</playcount>
348
+ <tagcount></tagcount>
349
+ <mbid>9c9f1380-2516-4fc9-a3e6-f9f61941d090</mbid>
350
+ <url>http://www.last.fm/music/Muse</url>
351
+ <streamable>1</streamable>
352
+ <image size="small">http://userserve-ak.last.fm/serve/34/269753.jpg</image>
353
+ <image size="medium">http://userserve-ak.last.fm/serve/64/269753.jpg</image>
354
+ <image size="large">http://userserve-ak.last.fm/serve/126/269753.jpg</image>
355
+ </artist>
356
+ <artist>
357
+ <name>Red Hot Chili Peppers</name>
358
+ <playcount>125</playcount>
359
+ <tagcount></tagcount>
360
+ <mbid>8bfac288-ccc5-448d-9573-c33ea2aa5c30</mbid>
361
+ <url>http://www.last.fm/music/Red+Hot+Chili+Peppers</url>
362
+ <streamable>1</streamable>
363
+ <image size="small">http://userserve-ak.last.fm/serve/34/299779.jpg</image>
364
+ <image size="medium">http://userserve-ak.last.fm/serve/64/299779.jpg</image>
365
+ <image size="large">http://userserve-ak.last.fm/serve/126/299779.jpg</image>
366
+ </artist>
367
+ <artist>
368
+ <name>Trashmonkeys</name>
369
+ <playcount>125</playcount>
370
+ <tagcount></tagcount>
371
+ <mbid>e475f569-d662-45fc-be1e-2539ab60a094</mbid>
372
+ <url>http://www.last.fm/music/Trashmonkeys</url>
373
+ <streamable>1</streamable>
374
+ <image size="small">http://userserve-ak.last.fm/serve/34/25244819.jpg</image>
375
+ <image size="medium">http://userserve-ak.last.fm/serve/64/25244819.jpg</image>
376
+ <image size="large">http://userserve-ak.last.fm/serve/126/25244819.jpg</image>
377
+ </artist>
378
+ <artist>
379
+ <name>Black Kids</name>
380
+ <playcount>124</playcount>
381
+ <tagcount></tagcount>
382
+ <mbid></mbid>
383
+ <url>http://www.last.fm/music/Black+Kids</url>
384
+ <streamable>1</streamable>
385
+ <image size="small">http://userserve-ak.last.fm/serve/34/5481142.jpg</image>
386
+ <image size="medium">http://userserve-ak.last.fm/serve/64/5481142.jpg</image>
387
+ <image size="large">http://userserve-ak.last.fm/serve/126/5481142.jpg</image>
388
+ </artist>
389
+ <artist>
390
+ <name>Peter Fox</name>
391
+ <playcount>123</playcount>
392
+ <tagcount></tagcount>
393
+ <mbid></mbid>
394
+ <url>http://www.last.fm/music/Peter+Fox</url>
395
+ <streamable>1</streamable>
396
+ <image size="small">http://userserve-ak.last.fm/serve/34/12573435.jpg</image>
397
+ <image size="medium">http://userserve-ak.last.fm/serve/64/12573435.jpg</image>
398
+ <image size="large">http://userserve-ak.last.fm/serve/126/12573435.jpg</image>
399
+ </artist>
400
+ <artist>
401
+ <name>Maxïmo Park</name>
402
+ <playcount>108</playcount>
403
+ <tagcount></tagcount>
404
+ <mbid>92e634a7-6023-4be8-be15-ebba822f5b34</mbid>
405
+ <url>http://www.last.fm/music/Max%C3%AFmo+Park</url>
406
+ <streamable>1</streamable>
407
+ <image size="small">http://userserve-ak.last.fm/serve/34/269322.jpg</image>
408
+ <image size="medium">http://userserve-ak.last.fm/serve/64/269322.jpg</image>
409
+ <image size="large">http://userserve-ak.last.fm/serve/126/269322.jpg</image>
410
+ </artist>
411
+ <artist>
412
+ <name>Scooter</name>
413
+ <playcount>106</playcount>
414
+ <tagcount></tagcount>
415
+ <mbid>83e59f23-3b0b-4304-834d-5bcafd5df6d2</mbid>
416
+ <url>http://www.last.fm/music/Scooter</url>
417
+ <streamable>1</streamable>
418
+ <image size="small">http://userserve-ak.last.fm/serve/34/3594342.png</image>
419
+ <image size="medium">http://userserve-ak.last.fm/serve/64/3594342.png</image>
420
+ <image size="large">http://userserve-ak.last.fm/serve/126/3594342.png</image>
421
+ </artist>
422
+ <artist>
423
+ <name>Good Charlotte</name>
424
+ <playcount>86</playcount>
425
+ <tagcount></tagcount>
426
+ <mbid>b267ca80-034e-4dc1-9ed4-ec45f1fed41d</mbid>
427
+ <url>http://www.last.fm/music/Good+Charlotte</url>
428
+ <streamable>1</streamable>
429
+ <image size="small">http://userserve-ak.last.fm/serve/34/263628.jpg</image>
430
+ <image size="medium">http://userserve-ak.last.fm/serve/64/263628.jpg</image>
431
+ <image size="large">http://userserve-ak.last.fm/serve/126/263628.jpg</image>
432
+ </artist>
433
+ <artist>
434
+ <name>Nirvana</name>
435
+ <playcount>81</playcount>
436
+ <tagcount></tagcount>
437
+ <mbid>5b11f4ce-a62d-471e-81fc-a69a8278c7da</mbid>
438
+ <url>http://www.last.fm/music/Nirvana</url>
439
+ <streamable>1</streamable>
440
+ <image size="small">http://userserve-ak.last.fm/serve/34/21335.jpg</image>
441
+ <image size="medium">http://userserve-ak.last.fm/serve/64/21335.jpg</image>
442
+ <image size="large">http://userserve-ak.last.fm/serve/126/21335.jpg</image>
443
+ </artist>
444
+ <artist>
445
+ <name>Die Ärzte</name>
446
+ <playcount>78</playcount>
447
+ <tagcount></tagcount>
448
+ <mbid>f2fb0ff0-5679-42ec-a55c-15109ce6e320</mbid>
449
+ <url>http://www.last.fm/music/Die+%C3%84rzte</url>
450
+ <streamable>1</streamable>
451
+ <image size="small">http://userserve-ak.last.fm/serve/34/94287.jpg</image>
452
+ <image size="medium">http://userserve-ak.last.fm/serve/64/94287.jpg</image>
453
+ <image size="large">http://userserve-ak.last.fm/serve/126/94287.jpg</image>
454
+ </artist>
455
+ <artist>
456
+ <name>Wir sind Helden</name>
457
+ <playcount>59</playcount>
458
+ <tagcount></tagcount>
459
+ <mbid>908fedf4-548a-430f-b806-38fca9507dc4</mbid>
460
+ <url>http://www.last.fm/music/Wir+sind+Helden</url>
461
+ <streamable>1</streamable>
462
+ <image size="small">http://userserve-ak.last.fm/serve/34/355823.jpg</image>
463
+ <image size="medium">http://userserve-ak.last.fm/serve/64/355823.jpg</image>
464
+ <image size="large">http://userserve-ak.last.fm/serve/126/355823.jpg</image>
465
+ </artist>
466
+ <artist>
467
+ <name>Weezer</name>
468
+ <playcount>58</playcount>
469
+ <tagcount></tagcount>
470
+ <mbid>6fe07aa5-fec0-4eca-a456-f29bff451b04</mbid>
471
+ <url>http://www.last.fm/music/Weezer</url>
472
+ <streamable>1</streamable>
473
+ <image size="small">http://userserve-ak.last.fm/serve/34/6341969.jpg</image>
474
+ <image size="medium">http://userserve-ak.last.fm/serve/64/6341969.jpg</image>
475
+ <image size="large">http://userserve-ak.last.fm/serve/126/6341969.jpg</image>
476
+ </artist>
477
+ <artist>
478
+ <name>Dropkick Murphys</name>
479
+ <playcount>58</playcount>
480
+ <tagcount></tagcount>
481
+ <mbid>e8374874-4178-4869-b92e-fef6bf30dc04</mbid>
482
+ <url>http://www.last.fm/music/Dropkick+Murphys</url>
483
+ <streamable>1</streamable>
484
+ <image size="small">http://userserve-ak.last.fm/serve/34/8454935.jpg</image>
485
+ <image size="medium">http://userserve-ak.last.fm/serve/64/8454935.jpg</image>
486
+ <image size="large">http://userserve-ak.last.fm/serve/126/8454935.jpg</image>
487
+ </artist>
488
+ <artist>
489
+ <name>Foo Fighters</name>
490
+ <playcount>56</playcount>
491
+ <tagcount></tagcount>
492
+ <mbid>67f66c07-6e61-4026-ade5-7e782fad3a5d</mbid>
493
+ <url>http://www.last.fm/music/Foo+Fighters</url>
494
+ <streamable>1</streamable>
495
+ <image size="small">http://userserve-ak.last.fm/serve/34/330926.jpg</image>
496
+ <image size="medium">http://userserve-ak.last.fm/serve/64/330926.jpg</image>
497
+ <image size="large">http://userserve-ak.last.fm/serve/126/330926.jpg</image>
498
+ </artist>
499
+ <artist>
500
+ <name>Slut</name>
501
+ <playcount>52</playcount>
502
+ <tagcount></tagcount>
503
+ <mbid>97ec4bef-d716-492a-83a1-4cfed3f7a049</mbid>
504
+ <url>http://www.last.fm/music/Slut</url>
505
+ <streamable>1</streamable>
506
+ <image size="small">http://userserve-ak.last.fm/serve/34/4215348.jpg</image>
507
+ <image size="medium">http://userserve-ak.last.fm/serve/64/4215348.jpg</image>
508
+ <image size="large">http://userserve-ak.last.fm/serve/126/4215348.jpg</image>
509
+ </artist>
510
+ <artist>
511
+ <name>Flogging Molly</name>
512
+ <playcount>49</playcount>
513
+ <tagcount></tagcount>
514
+ <mbid>c3694ddc-f7e5-40dd-9fad-90d11a2c50fa</mbid>
515
+ <url>http://www.last.fm/music/Flogging+Molly</url>
516
+ <streamable>1</streamable>
517
+ <image size="small">http://userserve-ak.last.fm/serve/34/2775445.jpg</image>
518
+ <image size="medium">http://userserve-ak.last.fm/serve/64/2775445.jpg</image>
519
+ <image size="large">http://userserve-ak.last.fm/serve/126/2775445.jpg</image>
520
+ </artist>
521
+ <artist>
522
+ <name>Jack Peñate</name>
523
+ <playcount>46</playcount>
524
+ <tagcount></tagcount>
525
+ <mbid>9b64cf5d-1f4a-45b5-a84a-5109a88f178f</mbid>
526
+ <url>http://www.last.fm/music/Jack+Pe%C3%B1ate</url>
527
+ <streamable>0</streamable>
528
+ <image size="small">http://userserve-ak.last.fm/serve/34/16714343.jpg</image>
529
+ <image size="medium">http://userserve-ak.last.fm/serve/64/16714343.jpg</image>
530
+ <image size="large">http://userserve-ak.last.fm/serve/126/16714343.jpg</image>
531
+ </artist>
532
+ <artist>
533
+ <name>Mando Diao</name>
534
+ <playcount>44</playcount>
535
+ <tagcount></tagcount>
536
+ <mbid>ea854cc1-13fc-4fd0-86a5-d2c7dba06764</mbid>
537
+ <url>http://www.last.fm/music/Mando+Diao</url>
538
+ <streamable>1</streamable>
539
+ <image size="small">http://userserve-ak.last.fm/serve/34/248725.jpg</image>
540
+ <image size="medium">http://userserve-ak.last.fm/serve/64/248725.jpg</image>
541
+ <image size="large">http://userserve-ak.last.fm/serve/126/248725.jpg</image>
542
+ </artist>
543
+ <artist>
544
+ <name>t.A.T.u.</name>
545
+ <playcount>42</playcount>
546
+ <tagcount></tagcount>
547
+ <mbid>7c20f558-d664-42bd-b6f1-81acf9dbb72d</mbid>
548
+ <url>http://www.last.fm/music/t.A.T.u.</url>
549
+ <streamable>1</streamable>
550
+ <image size="small">http://userserve-ak.last.fm/serve/34/25060773.png</image>
551
+ <image size="medium">http://userserve-ak.last.fm/serve/64/25060773.png</image>
552
+ <image size="large">http://userserve-ak.last.fm/serve/126/25060773.png</image>
553
+ </artist>
554
+ </artists></lfm>